Changes in / [ec6bee4:bda06a3] in mainline
- Files:
-
- 5 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
rec6bee4 rbda06a3 50 50 usbhub \ 51 51 usbkbd \ 52 usbhid \53 52 usbmid \ 54 53 usbmouse \ -
uspace/Makefile
rec6bee4 rbda06a3 123 123 drv/usbflbk \ 124 124 drv/usbkbd \ 125 drv/usbhid \126 125 drv/usbhub \ 127 126 drv/usbmid \ … … 144 143 drv/usbflbk \ 145 144 drv/usbkbd \ 146 drv/usbhid \147 145 drv/usbhub \ 148 146 drv/usbmid \ -
uspace/drv/usbkbd/kbddev.c
rec6bee4 rbda06a3 70 70 static const unsigned DEFAULT_ACTIVE_MODS = KM_NUM_LOCK; 71 71 72 ///** Boot protocol report size (key part). */ 73 //static const size_t BOOTP_REPORT_SIZE = 6; 74 75 ///** Boot protocol total report size. */ 76 //static const size_t BOOTP_BUFFER_SIZE = 8; 77 78 ///** Boot protocol output report size. */ 79 //static const size_t BOOTP_BUFFER_OUT_SIZE = 1; 80 81 ///** Boot protocol error key code. */ 82 //static const uint8_t BOOTP_ERROR_ROLLOVER = 1; 83 static const uint8_t ERROR_ROLLOVER = 1; 72 /** Boot protocol report size (key part). */ 73 static const size_t BOOTP_REPORT_SIZE = 6; 74 75 /** Boot protocol total report size. */ 76 static const size_t BOOTP_BUFFER_SIZE = 8; 77 78 /** Boot protocol output report size. */ 79 static const size_t BOOTP_BUFFER_OUT_SIZE = 1; 80 81 /** Boot protocol error key code. */ 82 static const uint8_t BOOTP_ERROR_ROLLOVER = 1; 84 83 85 84 /** Default idle rate for keyboards. */ … … 265 264 static void usb_kbd_set_led(usb_kbd_t *kbd_dev) 266 265 { 266 // uint8_t buffer[BOOTP_BUFFER_OUT_SIZE]; 267 // int rc= 0; 268 269 // memset(buffer, 0, BOOTP_BUFFER_OUT_SIZE); 270 // uint8_t leds = 0; 271 267 272 unsigned i = 0; 268 269 /* Reset the LED data. */270 memset(kbd_dev->led_data, 0, kbd_dev->led_output_size * sizeof(int32_t));271 273 272 274 if ((kbd_dev->mods & KM_NUM_LOCK) && (i < kbd_dev->led_output_size)) { 273 275 kbd_dev->led_data[i++] = USB_HID_LED_NUM_LOCK; 276 // leds |= USB_HID_LED_NUM_LOCK; 277 } 278 else { 279 kbd_dev->led_data[i++] = 0; 274 280 } 275 281 276 282 if ((kbd_dev->mods & KM_CAPS_LOCK) && (i < kbd_dev->led_output_size)) { 277 283 kbd_dev->led_data[i++] = USB_HID_LED_CAPS_LOCK; 284 // leds |= USB_HID_LED_CAPS_LOCK; 285 } 286 else { 287 kbd_dev->led_data[i++] = 0; 278 288 } 279 289 … … 281 291 && (i < kbd_dev->led_output_size)) { 282 292 kbd_dev->led_data[i++] = USB_HID_LED_SCROLL_LOCK; 293 // leds |= USB_HID_LED_SCROLL_LOCK; 294 } 295 else { 296 kbd_dev->led_data[i++] = 0; 297 } 298 299 usb_log_debug("Output report data: "); 300 for (i = 0; i < kbd_dev->led_output_size; ++i) { 301 usb_log_debug("%u: %d", i, kbd_dev->led_data[i]); 283 302 } 284 303 … … 296 315 return; 297 316 } 317 318 // if ((rc = usb_hid_boot_keyboard_output_report( 319 // leds, buffer, BOOTP_BUFFER_OUT_SIZE)) != EOK) { 320 // usb_log_warning("Error composing output report to the keyboard:" 321 // "%s.\n", str_error(rc)); 322 // return; 323 // } 298 324 299 325 usb_log_debug("Output report buffer: %s\n", … … 454 480 * First of all, check if the kbd have reported phantom state. 455 481 * 456 * As there is no way to distinguish keys from modifiers, we do not have 457 * a way to check that 'all keys report Error Rollover'. We thus check 458 * if there is at least one such error and in such case we ignore the 459 * whole input report. 482 * this must be changed as we don't know which keys are modifiers 483 * and which are regular keys. 460 484 */ 461 485 i = 0; 462 while (i < count && key_codes[i] != ERROR_ROLLOVER) { 486 // all fields should report Error Rollover 487 while (i < count && 488 key_codes[i] == BOOTP_ERROR_ROLLOVER) { 463 489 ++i; 464 490 } 465 if (i != count) {491 if (i == count) { 466 492 usb_log_debug("Phantom state occured.\n"); 467 493 // phantom state, do nothing -
uspace/drv/usbkbd/main.c
rec6bee4 rbda06a3 33 33 /** 34 34 * @file 35 * Main routines of USB KBD driver.35 * Main routines of USB HID driver. 36 36 */ 37 37 … … 75 75 * @sa usb_kbd_fibril(), usb_kbd_repeat_fibril() 76 76 */ 77 static int usb _kbd_try_add_device(usb_device_t *dev)77 static int usbhid_try_add_device(usb_device_t *dev) 78 78 { 79 79 /* Create the function exposed under /dev/devices. */ … … 195 195 * @retval EREFUSED if the device is not supported. 196 196 */ 197 static int usb _kbd_add_device(usb_device_t *dev)197 static int usbhid_add_device(usb_device_t *dev) 198 198 { 199 usb_log_debug("usb _kbd_add_device()\n");199 usb_log_debug("usbhid_add_device()\n"); 200 200 201 201 if (dev->interface_no < 0) { 202 202 usb_log_warning("Device is not a supported keyboard.\n"); 203 usb_log_error("Failed to add USB KBD device: endpoint not found."203 usb_log_error("Failed to add HID device: endpoint not found." 204 204 "\n"); 205 205 return ENOTSUP; 206 206 } 207 207 208 int rc = usb _kbd_try_add_device(dev);208 int rc = usbhid_try_add_device(dev); 209 209 210 210 if (rc != EOK) { 211 211 usb_log_warning("Device is not a supported keyboard.\n"); 212 usb_log_error("Failed to add KBD device: %s.\n",212 usb_log_error("Failed to add HID device: %s.\n", 213 213 str_error(rc)); 214 214 return rc; … … 224 224 /* Currently, the framework supports only device adding. Once the framework 225 225 * supports unplug, more callbacks will be added. */ 226 static usb_driver_ops_t usb _kbd_driver_ops = {227 .add_device = usb _kbd_add_device,226 static usb_driver_ops_t usbhid_driver_ops = { 227 .add_device = usbhid_add_device, 228 228 }; 229 229 230 230 231 231 /* The driver itself. */ 232 static usb_driver_t usb _kbd_driver = {232 static usb_driver_t usbhid_driver = { 233 233 .name = NAME, 234 .ops = &usb _kbd_driver_ops,234 .ops = &usbhid_driver_ops, 235 235 .endpoints = usb_kbd_endpoints 236 236 }; … … 238 238 /*----------------------------------------------------------------------------*/ 239 239 240 //static driver_ops_t kbd_driver_ops = { 241 // .add_device = usbhid_add_device, 242 //}; 243 244 ///*----------------------------------------------------------------------------*/ 245 246 //static driver_t kbd_driver = { 247 // .name = NAME, 248 // .driver_ops = &kbd_driver_ops 249 //}; 250 251 /*----------------------------------------------------------------------------*/ 252 240 253 int main(int argc, char *argv[]) 241 254 { 242 printf(NAME ": HelenOS USB KBD driver.\n");255 printf(NAME ": HelenOS USB HID driver.\n"); 243 256 244 257 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME); 245 258 246 return usb_driver_main(&usb _kbd_driver);259 return usb_driver_main(&usbhid_driver); 247 260 } 248 261
Note:
See TracChangeset
for help on using the changeset viewer.