Changeset 99de22b in mainline for uspace/srv/hid/kbd
- Timestamp:
- 2010-01-15T18:30:25Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eeb643d
- Parents:
- 387416b (diff), 563d6077 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/srv/hid/kbd
- Files:
-
- 2 added
- 30 moved
-
Makefile (added)
-
Makefile.build (moved) (moved from uspace/srv/kbd/Makefile.build ) (4 diffs)
-
Makefile.common (moved) (moved from uspace/srv/cir/fhc/Makefile.common ) (1 diff)
-
ctl/gxe_fb.c (moved) (moved from uspace/srv/kbd/ctl/gxe_fb.c )
-
ctl/pc.c (moved) (moved from uspace/srv/kbd/ctl/pc.c )
-
ctl/pl050.c (moved) (moved from uspace/srv/kbd/ctl/pl050.c )
-
ctl/stty.c (moved) (moved from uspace/srv/kbd/ctl/stty.c )
-
ctl/sun.c (moved) (moved from uspace/srv/kbd/ctl/sun.c )
-
genarch/gsp.c (moved) (moved from uspace/srv/kbd/genarch/gsp.c )
-
genarch/stroke.c (moved) (moved from uspace/srv/kbd/genarch/stroke.c )
-
generic/kbd.c (moved) (moved from uspace/srv/kbd/generic/kbd.c ) (7 diffs)
-
include/gsp.h (moved) (moved from uspace/srv/kbd/include/gsp.h )
-
include/kbd.h (moved) (moved from uspace/srv/kbd/include/kbd.h )
-
include/kbd_ctl.h (moved) (moved from uspace/srv/kbd/include/kbd_ctl.h )
-
include/kbd_port.h (moved) (moved from uspace/srv/kbd/include/kbd_port.h )
-
include/layout.h (moved) (moved from uspace/srv/kbd/include/layout.h )
-
include/stroke.h (moved) (moved from uspace/srv/kbd/include/stroke.h )
-
include/sun.h (moved) (moved from uspace/srv/kbd/include/sun.h )
-
layout/cz.c (moved) (moved from uspace/srv/kbd/layout/cz.c )
-
layout/us_dvorak.c (moved) (moved from uspace/srv/kbd/layout/us_dvorak.c )
-
layout/us_qwerty.c (moved) (moved from uspace/srv/kbd/layout/us_qwerty.c )
-
port/chardev.c (added)
-
port/dummy.c (moved) (moved from uspace/srv/kbd/port/dummy.c )
-
port/gxemul.c (moved) (moved from uspace/srv/kbd/port/gxemul.c )
-
port/i8042.h (moved) (moved from uspace/srv/kbd/port/i8042.h )
-
port/msim.c (moved) (moved from uspace/srv/kbd/port/msim.c )
-
port/ns16550.c (moved) (moved from uspace/srv/kbd/port/ns16550.c )
-
port/pl050.c (moved) (moved from uspace/srv/kbd/port/pl050.c )
-
port/sgcn.c (moved) (moved from uspace/srv/kbd/port/sgcn.c )
-
port/ski.c (moved) (moved from uspace/srv/kbd/port/ski.c )
-
port/sun.c (moved) (moved from uspace/srv/kbd/port/sun.c )
-
port/z8530.c (moved) (moved from uspace/srv/kbd/port/z8530.c )
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/kbd/Makefile.build
r387416b r99de22b 49 49 ifeq ($(UARCH),amd64) 50 50 SOURCES += \ 51 port/ i8042.c \51 port/chardev.c \ 52 52 ctl/pc.c 53 53 endif … … 75 75 ifeq ($(UARCH),ia32) 76 76 SOURCES += \ 77 port/ i8042.c \77 port/chardev.c \ 78 78 ctl/pc.c 79 79 endif … … 81 81 ifeq ($(MACHINE),i460GX) 82 82 SOURCES += \ 83 port/ i8042.c \83 port/chardev.c \ 84 84 ctl/pc.c 85 85 endif … … 159 159 %.o: %.c $(DEPEND) 160 160 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 161 ifeq ($(PRECHECK),y) 162 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 163 endif 161 164 162 165 $(DEPEND): -
uspace/srv/hid/kbd/Makefile.common
r387416b r99de22b 37 37 DEPEND = Makefile.depend 38 38 DEPEND_PREV = $(DEPEND).prev 39 OUTPUT = fhc 39 JOB = kbd.job 40 OUTPUT = kbd -
uspace/srv/hid/kbd/generic/kbd.c
r387416b r99de22b 50 50 #include <io/console.h> 51 51 #include <io/keycode.h> 52 #include <devmap.h> 52 53 53 54 #include <kbd.h> … … 56 57 #include <layout.h> 57 58 58 #define NAME "kbd"59 60 int cons_connected = 0; 61 int phone2cons= -1;59 #define NAME "kbd" 60 #define NAMESPACE "hid_in" 61 62 int client_phone = -1; 62 63 63 64 /** Currently active modifiers. */ … … 163 164 ev.c = layout[active_layout]->parse_ev(&ev); 164 165 165 async_msg_4( phone2cons, KBD_EVENT, ev.type, ev.key, ev.mods, ev.c);166 } 167 168 static void c onsole_connection(ipc_callid_t iid, ipc_call_t *icall)166 async_msg_4(client_phone, KBD_EVENT, ev.type, ev.key, ev.mods, ev.c); 167 } 168 169 static void client_connection(ipc_callid_t iid, ipc_call_t *icall) 169 170 { 170 171 ipc_callid_t callid; … … 172 173 int retval; 173 174 174 if (cons_connected) {175 ipc_answer_0(iid, ELIMIT);176 return;177 }178 cons_connected = 1;179 175 ipc_answer_0(iid, EOK); 180 176 … … 183 179 switch (IPC_GET_METHOD(call)) { 184 180 case IPC_M_PHONE_HUNGUP: 185 cons_connected = 0; 186 ipc_hangup(phone2cons); 187 phone2cons = -1; 181 if (client_phone != -1) { 182 ipc_hangup(client_phone); 183 client_phone = -1; 184 } 185 188 186 ipc_answer_0(callid, EOK); 189 187 return; 190 188 case IPC_M_CONNECT_TO_ME: 191 if ( phone2cons!= -1) {189 if (client_phone != -1) { 192 190 retval = ELIMIT; 193 191 break; 194 192 } 195 phone2cons= IPC_GET_ARG5(call);193 client_phone = IPC_GET_ARG5(call); 196 194 retval = 0; 197 195 break; … … 216 214 printf(NAME ": HelenOS Keyboard service\n"); 217 215 218 ipcarg_t phonead;219 220 216 if (sysinfo_value("kbd.cir.fhc") == 1) 221 217 cir_service = SERVICE_FHC; … … 241 237 layout[active_layout]->reset(); 242 238 243 async_set_client_connection(console_connection); 244 245 /* Register service at nameserver. */ 246 if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, 0, &phonead) != 0) 247 return -1; 248 239 /* Register driver */ 240 int rc = devmap_driver_register(NAME, client_connection); 241 if (rc < 0) { 242 printf(NAME ": Unable to register driver (%d)\n", rc); 243 return -1; 244 } 245 246 char kbd[DEVMAP_NAME_MAXLEN + 1]; 247 snprintf(kbd, DEVMAP_NAME_MAXLEN, "%s/%s", NAMESPACE, NAME); 248 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 249 255 printf(NAME ": Accepting connections\n"); 250 256 async_manager();
Note:
See TracChangeset
for help on using the changeset viewer.
