source: mainline/uspace/srv/hid/kbd/generic/kbd.c@ 827d73f

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

restructure servers into a more well-arranged hierarchy

  • Property mode set to 100644
File size: 6.1 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
[215abc1]31 * @brief HelenOS generic uspace keyboard handler.
32 * @ingroup kbd
[ce5bcb4]33 * @{
[215abc1]34 */
[ce5bcb4]35/** @file
36 */
37
[7ee6aff]38#include <ipc/ipc.h>
39#include <ipc/services.h>
[e795203]40#include <ipc/kbd.h>
[3e5a814]41#include <sysinfo.h>
[51d6f80]42#include <stdio.h>
43#include <unistd.h>
44#include <stdlib.h>
[37458472]45#include <stdio.h>
[7ee6aff]46#include <ipc/ns.h>
[fa09449]47#include <async.h>
[51d6f80]48#include <errno.h>
[d9c8c81]49#include <adt/fifo.h>
[215abc1]50#include <io/console.h>
51#include <io/keycode.h>
[47a350f]52#include <devmap.h>
[fa09449]53
[51d6f80]54#include <kbd.h>
[f89979b]55#include <kbd_port.h>
56#include <kbd_ctl.h>
57#include <layout.h>
[51d6f80]58
[47a350f]59#define NAME "kbd"
60#define NAMESPACE "hid_in"
[854387b]61
[3f29834]62int client_phone = -1;
[d1eece6]63
64/** Currently active modifiers. */
[90e3d6a]65static unsigned mods = KM_NUM_LOCK;
[085bd54]66
[12b6796]67/** Currently pressed lock keys. We track these to tackle autorepeat. */
68static unsigned lock_keys;
69
[3e5a814]70int cir_service = 0;
71int cir_phone = -1;
72
[0175246]73#define NUM_LAYOUTS 3
74
75static layout_op_t *layout[NUM_LAYOUTS] = {
76 &us_qwerty_op,
77 &us_dvorak_op,
78 &cz_op
79};
80
81static int active_layout = 0;
82
[f89979b]83void kbd_push_scancode(int scancode)
84{
[5ad8661]85/* printf("scancode: 0x%x\n", scancode);*/
[f89979b]86 kbd_ctl_parse_scancode(scancode);
87}
88
[d1eece6]89void kbd_push_ev(int type, unsigned int key)
[085bd54]90{
[215abc1]91 console_event_t ev;
[d1eece6]92 unsigned mod_mask;
93
94 switch (key) {
95 case KC_LCTRL: mod_mask = KM_LCTRL; break;
96 case KC_RCTRL: mod_mask = KM_RCTRL; break;
97 case KC_LSHIFT: mod_mask = KM_LSHIFT; break;
98 case KC_RSHIFT: mod_mask = KM_RSHIFT; break;
99 case KC_LALT: mod_mask = KM_LALT; break;
100 case KC_RALT: mod_mask = KM_RALT; break;
101 default: mod_mask = 0; break;
102 }
103
104 if (mod_mask != 0) {
[215abc1]105 if (type == KEY_PRESS)
[d1eece6]106 mods = mods | mod_mask;
107 else
108 mods = mods & ~mod_mask;
109 }
110
111 switch (key) {
112 case KC_CAPS_LOCK: mod_mask = KM_CAPS_LOCK; break;
113 case KC_NUM_LOCK: mod_mask = KM_NUM_LOCK; break;
114 case KC_SCROLL_LOCK: mod_mask = KM_SCROLL_LOCK; break;
115 default: mod_mask = 0; break;
116 }
117
[12b6796]118 if (mod_mask != 0) {
[215abc1]119 if (type == KEY_PRESS) {
[12b6796]120 /*
121 * Only change lock state on transition from released
122 * to pressed. This prevents autorepeat from messing
123 * up the lock state.
124 */
125 mods = mods ^ (mod_mask & ~lock_keys);
126 lock_keys = lock_keys | mod_mask;
[c145bc2]127
128 /* Update keyboard lock indicator lights. */
129 kbd_ctl_set_ind(mods);
[12b6796]130 } else {
131 lock_keys = lock_keys & ~mod_mask;
132 }
133 }
[5ad8661]134/*
[f89979b]135 printf("type: %d\n", type);
136 printf("mods: 0x%x\n", mods);
137 printf("keycode: %u\n", key);
[5ad8661]138*/
[215abc1]139 if (type == KEY_PRESS && (mods & KM_LCTRL) &&
[0175246]140 key == KC_F1) {
141 active_layout = 0;
[d15815e2]142 layout[active_layout]->reset();
[0175246]143 return;
144 }
145
[215abc1]146 if (type == KEY_PRESS && (mods & KM_LCTRL) &&
[0175246]147 key == KC_F2) {
148 active_layout = 1;
[d15815e2]149 layout[active_layout]->reset();
[0175246]150 return;
151 }
152
[215abc1]153 if (type == KEY_PRESS && (mods & KM_LCTRL) &&
[0175246]154 key == KC_F3) {
155 active_layout = 2;
[d15815e2]156 layout[active_layout]->reset();
[0175246]157 return;
158 }
159
[f89979b]160 ev.type = type;
161 ev.key = key;
162 ev.mods = mods;
163
[0175246]164 ev.c = layout[active_layout]->parse_ev(&ev);
[f89979b]165
[3f29834]166 async_msg_4(client_phone, KBD_EVENT, ev.type, ev.key, ev.mods, ev.c);
[085bd54]167}
168
[3f29834]169static void client_connection(ipc_callid_t iid, ipc_call_t *icall)
[085bd54]170{
171 ipc_callid_t callid;
172 ipc_call_t call;
173 int retval;
174
[b74959bd]175 ipc_answer_0(iid, EOK);
[085bd54]176
177 while (1) {
178 callid = async_get_call(&call);
179 switch (IPC_GET_METHOD(call)) {
180 case IPC_M_PHONE_HUNGUP:
[3f29834]181 if (client_phone != -1) {
182 ipc_hangup(client_phone);
183 client_phone = -1;
[47a350f]184 }
185
[b74959bd]186 ipc_answer_0(callid, EOK);
[085bd54]187 return;
188 case IPC_M_CONNECT_TO_ME:
[3f29834]189 if (client_phone != -1) {
[085bd54]190 retval = ELIMIT;
191 break;
192 }
[3f29834]193 client_phone = IPC_GET_ARG5(call);
[085bd54]194 retval = 0;
195 break;
[ccd1a14]196 case KBD_YIELD:
197 kbd_port_yield();
198 retval = 0;
199 break;
200 case KBD_RECLAIM:
201 kbd_port_reclaim();
202 retval = 0;
203 break;
[153a209]204 default:
205 retval = EINVAL;
[085bd54]206 }
[b74959bd]207 ipc_answer_0(callid, retval);
[085bd54]208 }
209}
210
211
[51d6f80]212int main(int argc, char **argv)
213{
[e00938c]214 printf(NAME ": HelenOS Keyboard service\n");
215
[3e5a814]216 if (sysinfo_value("kbd.cir.fhc") == 1)
217 cir_service = SERVICE_FHC;
[42742c5a]218 else if (sysinfo_value("kbd.cir.obio") == 1)
219 cir_service = SERVICE_OBIO;
[3e5a814]220
221 if (cir_service) {
222 while (cir_phone < 0) {
[8026731]223 cir_phone = ipc_connect_me_to_blocking(PHONE_NS, cir_service,
[3e5a814]224 0, 0);
225 }
226 }
227
[f89979b]228 /* Initialize port driver. */
[b0b5628]229 if (kbd_port_init() != 0)
230 return -1;
231
232 /* Initialize controller driver. */
233 if (kbd_ctl_init() != 0)
[15039b67]234 return -1;
[d15815e2]235
236 /* Initialize (reset) layout. */
237 layout[active_layout]->reset();
[51d6f80]238
[47a350f]239 /* Register driver */
[3f29834]240 int rc = devmap_driver_register(NAME, client_connection);
[47a350f]241 if (rc < 0) {
242 printf(NAME ": Unable to register driver (%d)\n", rc);
[51d6f80]243 return -1;
[47a350f]244 }
245
246 char kbd[DEVMAP_NAME_MAXLEN + 1];
247 snprintf(kbd, DEVMAP_NAME_MAXLEN, "%s/%s", NAMESPACE, NAME);
[e00938c]248
[47a350f]249 dev_handle_t dev_handle;
250 if (devmap_device_register(kbd, &dev_handle) != EOK) {
251 printf(NAME ": Unable to register device %s\n", kbd);
252 return -1;
253 }
254
[e00938c]255 printf(NAME ": Accepting connections\n");
[085bd54]256 async_manager();
[51c1b003]257
[f89979b]258 /* Not reached. */
[153a209]259 return 0;
[51d6f80]260}
[ce5bcb4]261
262/**
263 * @}
264 */
Note: See TracBrowser for help on using the repository browser.