Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/console/console.c

    r15f3c3f rb366a6f4  
    5353#include <sysinfo.h>
    5454#include <event.h>
    55 #include <loc.h>
     55#include <devmap.h>
    5656#include <fcntl.h>
    5757#include <vfs/vfs.h>
     
    8181        size_t index;             /**< Console index */
    8282        size_t refcount;          /**< Connection reference count */
    83         service_id_t service_id;  /**< Service ID */
     83        devmap_handle_t devmap_handle;  /**< Device handle */
    8484        keybuffer_t keybuffer;    /**< Buffer for incoming keys. */
    8585        screenbuffer_t scr;       /**< Screenbuffer for saving screen
     
    357357                console_serialize_end();
    358358               
    359                 if (__SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE)) {
     359                if (console_kcon()) {
    360360                        prev_console = active_console;
    361361                        active_console = kernel_console;
     
    582582                        continue;
    583583               
    584                 if (consoles[i].service_id == (service_id_t) IPC_GET_ARG1(*icall)) {
     584                if (consoles[i].devmap_handle == (devmap_handle_t) IPC_GET_ARG1(*icall)) {
    585585                        cons = &consoles[i];
    586586                        break;
     
    711711                        console_serialize_start();
    712712                        continue;
    713                 case CONSOLE_KCON_ENABLE:
    714                         change_console(kernel_console);
    715                         break;
    716713                }
    717714                async_answer_3(callid, EOK, arg1, arg2, arg3);
     
    724721}
    725722
    726 static async_sess_t *connect_input(const char *svc_path)
     723static async_sess_t *connect_input(const char *dev_path)
    727724{
    728725        async_sess_t *sess;
    729726        async_exch_t *exch;
    730         service_id_t service_id;
    731        
    732         int rc = loc_service_get_id(svc_path, &service_id, 0);
     727        devmap_handle_t handle;
     728       
     729        int rc = devmap_device_get_handle(dev_path, &handle, 0);
    733730        if (rc == EOK) {
    734                 sess = loc_service_connect(EXCHANGE_ATOMIC, service_id, 0);
     731                sess = devmap_device_connect(EXCHANGE_ATOMIC, handle, 0);
    735732                if (sess == NULL) {
    736733                        printf("%s: Failed to connect to input server\n", NAME);
     
    776773        }
    777774       
    778         /* Register server */
    779         int rc = loc_server_register(NAME, client_connection);
     775        /* Register driver */
     776        int rc = devmap_driver_register(NAME, client_connection);
    780777        if (rc < 0) {
    781                 printf("%s: Unable to register server (%d)\n", NAME, rc);
     778                printf("%s: Unable to register driver (%d)\n", NAME, rc);
    782779                return false;
    783780        }
     
    823820                        consoles[i].refcount = 0;
    824821                       
    825                         char vc[LOC_NAME_MAXLEN + 1];
    826                         snprintf(vc, LOC_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i);
     822                        char vc[DEVMAP_NAME_MAXLEN + 1];
     823                        snprintf(vc, DEVMAP_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i);
    827824                       
    828                         if (loc_service_register(vc, &consoles[i].service_id) != EOK) {
    829                                 printf("%s: Unable to register service %s\n", NAME, vc);
     825                        if (devmap_device_register(vc, &consoles[i].devmap_handle) != EOK) {
     826                                printf("%s: Unable to register device %s\n", NAME, vc);
    830827                                return false;
    831828                        }
    832829                }
    833830        }
    834        
    835         /* Disable kernel output to the console */
    836         __SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE);
    837831       
    838832        /* Initialize the screen */
Note: See TracChangeset for help on using the changeset viewer.