Subversion Repositories HelenOS-historic

Rev

Rev 1649 | Rev 1707 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (C) 2006 Josef Cejka
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  *
  9.  * - Redistributions of source code must retain the above copyright
  10.  *   notice, this list of conditions and the following disclaimer.
  11.  * - Redistributions in binary form must reproduce the above copyright
  12.  *   notice, this list of conditions and the following disclaimer in the
  13.  *   documentation and/or other materials provided with the distribution.
  14.  * - The name of the author may not be used to endorse or promote products
  15.  *   derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  */
  28.  
  29. /** @defgroup kbd Keyboard handler
  30.  * @brief   HelenOS uspace keyboard handler.
  31.  * @{
  32.  * @}
  33.  */
  34. /** @addtogroup kbdgen generic
  35.  * @brief   HelenOS generic uspace keyboard handler.
  36.  * @ingroup  kbd
  37.  * @{
  38.  */
  39. /** @file
  40.  */
  41.  
  42. #include <ipc/ipc.h>
  43. #include <ipc/services.h>
  44. #include <stdio.h>
  45. #include <unistd.h>
  46. #include <stdlib.h>
  47. #include <stdio.h>
  48. #include <ipc/ns.h>
  49. #include <errno.h>
  50. #include <arch/kbd.h>
  51. #include <kbd.h>
  52. #include <libadt/fifo.h>
  53. #include <key_buffer.h>
  54. #include <async.h>
  55. #include <keys.h>
  56.  
  57. #define NAME "KBD"
  58.  
  59. int cons_connected = 0;
  60. int phone2cons = -1;
  61. keybuffer_t keybuffer; 
  62.  
  63. static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
  64. {
  65.     int chr;
  66.  
  67.     if (cons_connected && phone2cons != -1) {
  68.         /* recode to ASCII - one interrupt can produce more than one code so result is stored in fifo */
  69.         kbd_arch_process(&keybuffer, call);
  70.        
  71.         while (!keybuffer_empty(&keybuffer)) {
  72.             if (!keybuffer_pop(&keybuffer, (int *)&chr))
  73.                 break;
  74.  
  75.             async_msg(phone2cons, KBD_PUSHCHAR, chr);
  76.         }
  77.     }
  78. }
  79.  
  80. static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
  81. {
  82.     ipc_callid_t callid;
  83.     ipc_call_t call;
  84.     int retval;
  85.  
  86.     if (cons_connected) {
  87.         ipc_answer_fast(iid, ELIMIT, 0, 0);
  88.         return;
  89.     }
  90.     cons_connected = 1;
  91.     ipc_answer_fast(iid, 0, 0, 0);
  92.  
  93.     while (1) {
  94.         callid = async_get_call(&call);
  95.         switch (IPC_GET_METHOD(call)) {
  96.         case IPC_M_PHONE_HUNGUP:
  97.             cons_connected = 0;
  98.             ipc_hangup(phone2cons);
  99.             phone2cons = -1;
  100.             ipc_answer_fast(callid, 0,0,0);
  101.             return;
  102.         case IPC_M_CONNECT_TO_ME:
  103.             if (phone2cons != -1) {
  104.                 retval = ELIMIT;
  105.                 break;
  106.             }
  107.             phone2cons = IPC_GET_ARG3(call);
  108.             retval = 0;
  109.             break;
  110.         }
  111.         ipc_answer_fast(callid, retval, 0, 0);
  112.     }  
  113. }
  114.  
  115.  
  116. int main(int argc, char **argv)
  117. {
  118.     ipc_call_t call;
  119.     ipc_callid_t callid;
  120.     int res;
  121.     ipcarg_t phonead;
  122.     ipcarg_t phoneid;
  123.     char connected = 0;
  124.     ipcarg_t retval, arg1, arg2;
  125.    
  126.     /* Initialize arch dependent parts */
  127.     if (kbd_arch_init())
  128.         return -1;
  129.    
  130.     /* Initialize key buffer */
  131.     keybuffer_init(&keybuffer);
  132.    
  133.     async_set_client_connection(console_connection);
  134.     async_set_interrupt_received(irq_handler);
  135.     /* Register service at nameserver */
  136.     if ((res = ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, &phonead)) != 0) {
  137.         return -1;
  138.     }
  139.  
  140.     async_manager();
  141.  
  142. }
  143.  
  144. /**
  145.  * @}
  146.  */
  147.  
  148.