Changes in / [103db908:04c35fca] in mainline


Ignore:
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/drivers/ski.c

    r103db908 r04c35fca  
    3737#include <console/console.h>
    3838#include <console/chardev.h>
     39#include <ddi/ddi.h>
    3940#include <sysinfo/sysinfo.h>
    4041#include <stdint.h>
     
    6970
    7071static ski_instance_t *instance = NULL;
     72static parea_t ski_parea;
    7173
    7274/** Ask debug console if a key was pressed.
     
    105107        int count = POLL_LIMIT;
    106108
     109        if (ski_parea.mapped)
     110                return;
     111
    107112        while (count > 0) {
    108113                wchar_t ch = ski_getchar();
     
    122127
    123128        while (true) {
    124                 // TODO FIXME:
    125                 // This currently breaks the kernel console
    126                 // before we get the override from uspace.
    127                 if (console_override)
    128                         poll_keyboard(instance);
    129 
     129                poll_keyboard(instance);
    130130                thread_usleep(POLL_INTERVAL);
    131131        }
     
    140140static void ski_init(void)
    141141{
     142        uintptr_t faddr;
     143
    142144        if (instance)
    143145                return;
     
    150152            : "r15", "r8"
    151153        );
     154
     155        faddr = frame_alloc(1, FRAME_LOWMEM | FRAME_ATOMIC, 0);
     156        if (faddr == 0)
     157                panic("Cannot allocate page for ski console.");
     158
     159        ddi_parea_init(&ski_parea);
     160        ski_parea.pbase = faddr;
     161        ski_parea.frames = 1;
     162        ski_parea.unpriv = false;
     163        ski_parea.mapped = false;
     164        ddi_parea_register(&ski_parea);
     165
     166        sysinfo_set_item_val("ski.paddr", NULL, (sysarg_t) faddr);
    152167
    153168        instance = malloc(sizeof(ski_instance_t));
     
    190205static void ski_putwchar(outdev_t *dev, wchar_t ch)
    191206{
    192         // TODO FIXME:
    193         // This currently breaks the kernel console
    194         // before we get the override from uspace.
    195         if (console_override) {
    196                 if (ascii_check(ch)) {
    197                         if (ch == '\n')
    198                                 ski_do_putchar('\r');
    199 
    200                         ski_do_putchar(ch);
    201                 } else {
    202                         ski_do_putchar('?');
    203                 }
     207        if (ski_parea.mapped)
     208                return;
     209
     210        if (ascii_check(ch)) {
     211                if (ch == '\n')
     212                        ski_do_putchar('\r');
     213
     214                ski_do_putchar(ch);
     215        } else {
     216                ski_do_putchar('?');
    204217        }
    205218}
  • kernel/generic/include/mm/as.h

    r103db908 r04c35fca  
    268268
    269269extern as_t *as_create(unsigned int);
    270 extern void as_destroy(as_t *);
    271270extern void as_hold(as_t *);
    272271extern void as_release(as_t *);
  • kernel/generic/src/console/console.c

    r103db908 r04c35fca  
    209209void grab_console(void)
    210210{
     211        sysinfo_set_item_val("kconsole", NULL, true);
    211212        event_notify_1(EVENT_KCONSOLE, false, true);
    212213        bool prev = console_override;
     
    226227void release_console(void)
    227228{
     229        sysinfo_set_item_val("kconsole", NULL, false);
    228230        console_override = false;
    229231        event_notify_1(EVENT_KCONSOLE, false, false);
  • kernel/generic/src/mm/as.c

    r103db908 r04c35fca  
    187187 *
    188188 */
    189 void as_destroy(as_t *as)
     189static void as_destroy(as_t *as)
    190190{
    191191        DEADLOCK_PROBE_INIT(p_asidlock);
  • kernel/generic/src/proc/program.c

    r103db908 r04c35fca  
    150150        prg->loader_status = elf_load((elf_header_t *) image_addr, as);
    151151        if (prg->loader_status != EE_OK) {
    152                 as_destroy(as);
     152                as_release(as);
    153153                prg->task = NULL;
    154154                prg->main_thread = NULL;
     
    176176        void *loader = program_loader;
    177177        if (!loader) {
    178                 as_destroy(as);
     178                as_release(as);
    179179                log(LF_OTHER, LVL_ERROR,
    180180                    "Cannot spawn loader as none was registered");
     
    184184        prg->loader_status = elf_load((elf_header_t *) program_loader, as);
    185185        if (prg->loader_status != EE_OK) {
    186                 as_destroy(as);
     186                as_release(as);
    187187                log(LF_OTHER, LVL_ERROR, "Cannot spawn loader (%s)",
    188188                    elf_error(prg->loader_status));
  • uspace/drv/char/ski-con/ski-con.c

    r103db908 r04c35fca  
    11/*
    22 * Copyright (c) 2005 Jakub Jermar
    3  * Copyright (c) 2017 Jiri Svoboda
     3 * Copyright (c) 2018 Jiri Svoboda
    44 * All rights reserved.
    55 *
     
    3131 */
    3232
     33#include <as.h>
    3334#include <async.h>
    3435#include <ddf/driver.h>
    3536#include <ddf/log.h>
     37#include <ddi.h>
    3638#include <errno.h>
    3739#include <fibril.h>
     
    4042#include <stdlib.h>
    4143#include <stdbool.h>
     44#include <sysinfo.h>
    4245
    4346#include "ski-con.h"
     
    6871        ddf_fun_t *fun = NULL;
    6972        bool bound = false;
     73        uintptr_t faddr;
     74        void *addr = AS_AREA_ANY;
    7075        errno_t rc;
    7176
     
    8792        con->cds.sarg = con;
    8893
     94        rc = sysinfo_get_value("ski.paddr", &faddr);
     95        if (rc != EOK)
     96                faddr = 0; /* No kernel driver to arbitrate with */
     97
     98        if (faddr != 0) {
     99                addr = AS_AREA_ANY;
     100                rc = physmem_map(faddr, 1, AS_AREA_READ | AS_AREA_CACHEABLE,
     101                    &addr);
     102                if (rc != EOK) {
     103                        ddf_msg(LVL_ERROR, "Cannot map kernel driver arbitration area.");
     104                        goto error;
     105                }
     106        }
     107
    89108        rc = ddf_fun_bind(fun);
    90109        if (rc != EOK) {
     
    107126        return EOK;
    108127error:
     128        if (addr != AS_AREA_ANY)
     129                as_area_destroy(addr);
    109130        if (bound)
    110131                ddf_fun_unbind(fun);
     
    127148}
    128149
     150/** Detect if SKI console is in use by the kernel.
     151 *
     152 * This is needed since the kernel has no way of fencing off the user-space
     153 * driver.
     154 *
     155 * @return @c true if in use by the kernel.
     156 */
     157static bool ski_con_disabled(void)
     158{
     159        sysarg_t kconsole;
     160
     161        /*
     162         * XXX Ideally we should get information from our kernel counterpart
     163         * driver. But there needs to be a mechanism for the kernel console
     164         * to inform the kernel driver.
     165         */
     166        if (sysinfo_get_value("kconsole", &kconsole) != EOK)
     167                return false;
     168
     169        return kconsole != false;
     170}
     171
    129172/** Poll Ski for keypresses. */
    130173static errno_t ski_con_fibril(void *arg)
     
    135178
    136179        while (true) {
    137                 while (true) {
     180                while (!ski_con_disabled()) {
    138181                        c = ski_con_getchar();
    139182                        if (c == 0)
     
    246289        uint8_t *dp = (uint8_t *) data;
    247290
    248         for (i = 0; i < size; i++)
    249                 ski_con_putchar(con, dp[i]);
     291        if (!ski_con_disabled()) {
     292                for (i = 0; i < size; i++) {
     293                        ski_con_putchar(con, dp[i]);
     294                }
     295        }
    250296
    251297        *nwr = size;
  • uspace/drv/char/ski-con/ski-con.h

    r103db908 r04c35fca  
    5656        fibril_mutex_t buf_lock;
    5757        fibril_condvar_t buf_cv;
     58        /** Memory area mapped to arbitrate with the kernel driver */
     59        void *mem_area;
    5860} ski_con_t;
    5961
  • uspace/lib/c/generic/loader.c

    r103db908 r04c35fca  
    200200        }
    201201
    202         rc = loader_set_program(ldr, path, fd);
     202        rc = loader_set_program(ldr, abspath, fd);
    203203        vfs_put(fd);
    204204        return rc;
Note: See TracChangeset for help on using the changeset viewer.