Changes in uspace/srv/hid/input/generic/input.c [5da7199:10a5479d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/generic/input.c
r5da7199 r10a5479d 39 39 #include <adt/list.h> 40 40 #include <bool.h> 41 #include <fibril_synch.h> 41 42 #include <ipc/services.h> 42 43 #include <ipc/input.h> … … 83 84 async_sess_t *irc_sess = NULL; 84 85 86 static FIBRIL_MUTEX_INITIALIZE(discovery_lock); 87 85 88 void kbd_push_data(kbd_dev_t *kdev, sysarg_t data) 86 89 { … … 172 175 173 176 /** Mouse pointer has moved. */ 174 void mouse_push_event_move(mouse_dev_t *mdev, int dx, int dy )177 void mouse_push_event_move(mouse_dev_t *mdev, int dx, int dy, int dz) 175 178 { 176 179 async_exch_t *exch = async_exchange_begin(client_sess); 177 async_msg_2(exch, INPUT_EVENT_MOVE, dx, dy); 180 if (dx || dy) 181 async_msg_2(exch, INPUT_EVENT_MOVE, dx, dy); 182 if (dz) { 183 // TODO: Implement proper wheel support 184 keycode_t code = dz > 0 ? KC_UP : KC_DOWN; 185 for (int i = 0; i < 3; ++i) { 186 async_msg_4(exch, INPUT_EVENT_KEY, KEY_PRESS, code, 0, 0); 187 } 188 async_msg_4(exch, INPUT_EVENT_KEY, KEY_RELEASE, code, 0, 0); 189 } 178 190 async_exchange_end(exch); 179 191 } … … 397 409 * them automatically. 398 410 */ 399 #if defined(UARCH_amd64)400 kbd_add_dev(&chardev_port, &pc_ctl);401 #endif402 411 #if defined(UARCH_arm32) && defined(MACHINE_gta02) 403 412 kbd_add_dev(&chardev_port, &stty_ctl); … … 411 420 #if defined(UARCH_arm32) && defined(MACHINE_integratorcp) 412 421 kbd_add_dev(&pl050_port, &pc_ctl); 413 #endif414 #if defined(UARCH_ia32)415 kbd_add_dev(&chardev_port, &pc_ctl);416 #endif417 #if defined(MACHINE_i460GX)418 kbd_add_dev(&chardev_port, &pc_ctl);419 422 #endif 420 423 #if defined(MACHINE_ski) … … 450 453 * them automatically. 451 454 */ 452 #if defined(UARCH_amd64)453 mouse_add_dev(&chardev_mouse_port, &ps2_proto);454 #endif455 #if defined(UARCH_ia32)456 mouse_add_dev(&chardev_mouse_port, &ps2_proto);457 #endif458 #if defined(MACHINE_i460GX)459 mouse_add_dev(&chardev_mouse_port, &ps2_proto);460 #endif461 455 #if defined(UARCH_ppc32) 462 456 mouse_add_dev(&adb_mouse_port, &adb_proto); … … 602 596 int rc; 603 597 598 fibril_mutex_lock(&discovery_lock); 599 604 600 rc = dev_check_new_kbdevs(); 605 if (rc != EOK) 601 if (rc != EOK) { 602 fibril_mutex_unlock(&discovery_lock); 606 603 return rc; 604 } 607 605 608 606 rc = dev_check_new_mousedevs(); 609 if (rc != EOK) 607 if (rc != EOK) { 608 fibril_mutex_unlock(&discovery_lock); 610 609 return rc; 611 610 } 611 612 fibril_mutex_unlock(&discovery_lock); 613 612 614 return EOK; 613 615 } … … 658 660 659 661 /* Register driver */ 660 int rc = loc_server_register(NAME, client_connection); 662 async_set_client_connection(client_connection); 663 int rc = loc_server_register(NAME); 661 664 if (rc < 0) { 662 665 printf("%s: Unable to register server (%d)\n", NAME, rc);
Note:
See TracChangeset
for help on using the changeset viewer.