source: mainline/uspace/srv/kbd/generic/kbd.c@ e32b65a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e32b65a was e00938c, checked in by Martin Decky <martin@…>, 17 years ago

service banner

  • Property mode set to 100644
File size: 3.6 KB
RevLine 
[51d6f80]1/*
[df4ed85]2 * Copyright (c) 2006 Josef Cejka
[51d6f80]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
[231a60a]29/**
30 * @addtogroup kbdgen generic
[ce5bcb4]31 * @brief HelenOS generic uspace keyboard handler.
32 * @ingroup kbd
33 * @{
34 */
35/** @file
36 */
37
[7ee6aff]38#include <ipc/ipc.h>
39#include <ipc/services.h>
[51d6f80]40#include <stdio.h>
41#include <unistd.h>
42#include <stdlib.h>
[37458472]43#include <stdio.h>
[7ee6aff]44#include <ipc/ns.h>
[51d6f80]45#include <errno.h>
46#include <arch/kbd.h>
47#include <kbd.h>
[80649a91]48#include <libadt/fifo.h>
[51c1b003]49#include <key_buffer.h>
[085bd54]50#include <async.h>
[15039b67]51#include <keys.h>
[51d6f80]52
[e00938c]53#define NAME "kbd"
[854387b]54
[085bd54]55int cons_connected = 0;
56int phone2cons = -1;
57keybuffer_t keybuffer;
58
59static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
60{
61 int chr;
[15039b67]62
[830ac99]63#ifdef MOUSE_ENABLED
64 if (mouse_arch_process(phone2cons, call))
65 return;
66#endif
67
68 kbd_arch_process(&keybuffer, call);
69
[085bd54]70 if (cons_connected && phone2cons != -1) {
[b74959bd]71 /*
72 * recode to ASCII - one interrupt can produce more than one
73 * code so result is stored in fifo
74 */
[085bd54]75 while (!keybuffer_empty(&keybuffer)) {
76 if (!keybuffer_pop(&keybuffer, (int *)&chr))
77 break;
78
[0cc4313]79 async_msg_1(phone2cons, KBD_PUSHCHAR, chr);
[085bd54]80 }
81 }
82}
83
84static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
85{
86 ipc_callid_t callid;
87 ipc_call_t call;
88 int retval;
89
90 if (cons_connected) {
[b74959bd]91 ipc_answer_0(iid, ELIMIT);
[085bd54]92 return;
93 }
94 cons_connected = 1;
[b74959bd]95 ipc_answer_0(iid, EOK);
[085bd54]96
97 while (1) {
98 callid = async_get_call(&call);
99 switch (IPC_GET_METHOD(call)) {
100 case IPC_M_PHONE_HUNGUP:
101 cons_connected = 0;
102 ipc_hangup(phone2cons);
103 phone2cons = -1;
[b74959bd]104 ipc_answer_0(callid, EOK);
[085bd54]105 return;
106 case IPC_M_CONNECT_TO_ME:
107 if (phone2cons != -1) {
108 retval = ELIMIT;
109 break;
110 }
[38c706cc]111 phone2cons = IPC_GET_ARG5(call);
[085bd54]112 retval = 0;
113 break;
[153a209]114 default:
115 retval = EINVAL;
[085bd54]116 }
[b74959bd]117 ipc_answer_0(callid, retval);
[085bd54]118 }
119}
120
121
[51d6f80]122int main(int argc, char **argv)
123{
[e00938c]124 printf(NAME ": HelenOS Keyboard service\n");
125
[51d6f80]126 ipcarg_t phonead;
[37458472]127
[51d6f80]128 /* Initialize arch dependent parts */
[15039b67]129 if (kbd_arch_init())
130 return -1;
[51d6f80]131
132 /* Initialize key buffer */
[79460ae]133 keybuffer_init(&keybuffer);
[51d6f80]134
[d3f2cad]135 async_set_client_connection(console_connection);
136 async_set_interrupt_received(irq_handler);
[51d6f80]137 /* Register service at nameserver */
[38c706cc]138 if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, 0, &phonead) != 0)
[51d6f80]139 return -1;
[e00938c]140
141 printf(NAME ": Accepting connections\n");
[085bd54]142 async_manager();
[51c1b003]143
[153a209]144 /* Never reached */
145 return 0;
[51d6f80]146}
[ce5bcb4]147
148/**
149 * @}
150 */
Note: See TracBrowser for help on using the repository browser.