Subversion Repositories HelenOS-historic

Rev

Rev 1720 | 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. /**
  30.  * @addtogroup kbdgen generic
  31.  * @brief   HelenOS generic uspace keyboard handler.
  32.  * @ingroup  kbd
  33.  * @{
  34.  */
  35. /** @file
  36.  */
  37.  
  38. #include <ipc/ipc.h>
  39. #include <ipc/services.h>
  40. #include <stdio.h>
  41. #include <unistd.h>
  42. #include <stdlib.h>
  43. #include <stdio.h>
  44. #include <ipc/ns.h>
  45. #include <errno.h>
  46. #include <arch/kbd.h>
  47. #include <kbd.h>
  48. #include <libadt/fifo.h>
  49. #include <key_buffer.h>
  50. #include <async.h>
  51. #include <keys.h>
  52.  
  53. #define NAME "KBD"
  54.  
  55. int cons_connected = 0;
  56. int phone2cons = -1;
  57. keybuffer_t keybuffer; 
  58.  
  59. static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
  60. {
  61.     int chr;
  62.  
  63. #ifdef MOUSE_ENABLED
  64.     if (mouse_arch_process(phone2cons, call))
  65.         return;
  66. #endif
  67.    
  68.     kbd_arch_process(&keybuffer, call);
  69.  
  70.     if (cons_connected && phone2cons != -1) {
  71.         /* recode to ASCII - one interrupt can produce more than one code so result is stored in fifo */
  72.         while (!keybuffer_empty(&keybuffer)) {
  73.             if (!keybuffer_pop(&keybuffer, (int *)&chr))
  74.                 break;
  75.  
  76.             async_msg(phone2cons, KBD_PUSHCHAR, chr);
  77.         }
  78.     }
  79. }
  80.  
  81. static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
  82. {
  83.     ipc_callid_t callid;
  84.     ipc_call_t call;
  85.     int retval;
  86.  
  87.     if (cons_connected) {
  88.         ipc_answer_fast(iid, ELIMIT, 0, 0);
  89.         return;
  90.     }
  91.     cons_connected = 1;
  92.     ipc_answer_fast(iid, 0, 0, 0);
  93.  
  94.     while (1) {
  95.         callid = async_get_call(&call);
  96.         switch (IPC_GET_METHOD(call)) {
  97.         case IPC_M_PHONE_HUNGUP:
  98.             cons_connected = 0;
  99.             ipc_hangup(phone2cons);
  100.             phone2cons = -1;
  101.             ipc_answer_fast(callid, 0,0,0);
  102.             return;
  103.         case IPC_M_CONNECT_TO_ME:
  104.             if (phone2cons != -1) {
  105.                 retval = ELIMIT;
  106.                 break;
  107.             }
  108.             phone2cons = IPC_GET_ARG3(call);
  109.             retval = 0;
  110.             break;
  111.         default:
  112.             retval = EINVAL;
  113.         }
  114.         ipc_answer_fast(callid, retval, 0, 0);
  115.     }  
  116. }
  117.  
  118.  
  119. int main(int argc, char **argv)
  120. {
  121.     ipcarg_t phonead;
  122.    
  123.     /* Initialize arch dependent parts */
  124.     if (kbd_arch_init())
  125.         return -1;
  126.    
  127.     /* Initialize key buffer */
  128.     keybuffer_init(&keybuffer);
  129.    
  130.     async_set_client_connection(console_connection);
  131.     async_set_interrupt_received(irq_handler);
  132.     /* Register service at nameserver */
  133.     if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, &phonead) != 0)
  134.         return -1;
  135.  
  136.     async_manager();
  137.  
  138.     /* Never reached */
  139.     return 0;
  140. }
  141.  
  142. /**
  143.  * @}
  144.  */
  145.  
  146.