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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since fa09449 was fa09449, checked in by Jiri Svoboda <jirik.svoboda@…>, 17 years ago

Keycodes, keyboard events, kbd_event_get(). Keyboard driver now (formally) produces kbd events (press/release, keycode, mods, char) instead of just characters. In reality, the driver and client are only hacked to work with the new interface atm.

  • Property mode set to 100644
File size: 3.7 KB
Line 
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 <async.h>
46#include <errno.h>
47#include <libadt/fifo.h>
48#include <kbd/kbd.h>
49
50#include <arch/kbd.h>
51#include <kbd.h>
52#include <key_buffer.h>
53#include <keys.h>
54
55#define NAME "kbd"
56
57int cons_connected = 0;
58int phone2cons = -1;
59keybuffer_t keybuffer;
60
61static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
62{
63 kbd_event_t ev;
64
65#ifdef MOUSE_ENABLED
66 if (mouse_arch_process(phone2cons, call))
67 return;
68#endif
69
70 kbd_arch_process(&keybuffer, call);
71
72 if (cons_connected && phone2cons != -1) {
73 /*
74 * One interrupt can produce more than one event so the result
75 * is stored in a FIFO.
76 */
77 while (!keybuffer_empty(&keybuffer)) {
78 if (!keybuffer_pop(&keybuffer, &ev))
79 break;
80
81 async_msg_4(phone2cons, KBD_EVENT, ev.type, ev.key,
82 ev.mods, ev.c);
83 }
84 }
85}
86
87static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
88{
89 ipc_callid_t callid;
90 ipc_call_t call;
91 int retval;
92
93 if (cons_connected) {
94 ipc_answer_0(iid, ELIMIT);
95 return;
96 }
97 cons_connected = 1;
98 ipc_answer_0(iid, EOK);
99
100 while (1) {
101 callid = async_get_call(&call);
102 switch (IPC_GET_METHOD(call)) {
103 case IPC_M_PHONE_HUNGUP:
104 cons_connected = 0;
105 ipc_hangup(phone2cons);
106 phone2cons = -1;
107 ipc_answer_0(callid, EOK);
108 return;
109 case IPC_M_CONNECT_TO_ME:
110 if (phone2cons != -1) {
111 retval = ELIMIT;
112 break;
113 }
114 phone2cons = IPC_GET_ARG5(call);
115 retval = 0;
116 break;
117 default:
118 retval = EINVAL;
119 }
120 ipc_answer_0(callid, retval);
121 }
122}
123
124
125int main(int argc, char **argv)
126{
127 printf(NAME ": HelenOS Keyboard service\n");
128
129 ipcarg_t phonead;
130
131 /* Initialize arch dependent parts */
132 if (kbd_arch_init())
133 return -1;
134
135 /* Initialize key buffer */
136 keybuffer_init(&keybuffer);
137
138 async_set_client_connection(console_connection);
139 async_set_interrupt_received(irq_handler);
140 /* Register service at nameserver */
141 if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, 0, &phonead) != 0)
142 return -1;
143
144 printf(NAME ": Accepting connections\n");
145 async_manager();
146
147 /* Never reached */
148 return 0;
149}
150
151/**
152 * @}
153 */
Note: See TracBrowser for help on using the repository browser.