[61257f4] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Lubos Slovak
|
---|
| 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 | /** @addtogroup drvusbhid
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * USB HID keyboard device structure and API.
|
---|
| 34 | */
|
---|
| 35 |
|
---|
[ba358ed] | 36 | #ifndef USB_HID_KBDDEV_H_
|
---|
| 37 | #define USB_HID_KBDDEV_H_
|
---|
[61257f4] | 38 |
|
---|
| 39 | #include <stdint.h>
|
---|
| 40 |
|
---|
| 41 | #include <fibril_synch.h>
|
---|
| 42 |
|
---|
| 43 | #include <usb/classes/hid.h>
|
---|
| 44 | #include <usb/classes/hidparser.h>
|
---|
| 45 | #include <ddf/driver.h>
|
---|
| 46 | #include <usb/pipes.h>
|
---|
| 47 | #include <usb/devdrv.h>
|
---|
| 48 |
|
---|
| 49 | #include "kbdrepeat.h"
|
---|
| 50 |
|
---|
[60c0573] | 51 | struct usb_hid_dev;
|
---|
[61257f4] | 52 |
|
---|
| 53 | /*----------------------------------------------------------------------------*/
|
---|
| 54 | /**
|
---|
| 55 | * USB/HID keyboard device type.
|
---|
| 56 | *
|
---|
| 57 | * Holds a reference to generic USB/HID device structure and keyboard-specific
|
---|
| 58 | * data, such as currently pressed keys, modifiers and lock keys.
|
---|
| 59 | *
|
---|
| 60 | * Also holds a IPC phone to the console (since there is now no other way to
|
---|
| 61 | * communicate with it).
|
---|
| 62 | *
|
---|
| 63 | * @note Storing active lock keys in this structure results in their setting
|
---|
| 64 | * being device-specific.
|
---|
| 65 | */
|
---|
| 66 | typedef struct usb_kbd_t {
|
---|
[e60436b] | 67 | /** Previously pressed keys (not translated to key codes). */
|
---|
| 68 | int32_t *keys_old;
|
---|
[61257f4] | 69 | /** Currently pressed keys (not translated to key codes). */
|
---|
[e60436b] | 70 | int32_t *keys;
|
---|
[61257f4] | 71 | /** Count of stored keys (i.e. number of keys in the report). */
|
---|
| 72 | size_t key_count;
|
---|
| 73 | /** Currently pressed modifiers (bitmap). */
|
---|
| 74 | uint8_t modifiers;
|
---|
| 75 |
|
---|
| 76 | /** Currently active modifiers including locks. Sent to the console. */
|
---|
| 77 | unsigned mods;
|
---|
| 78 |
|
---|
| 79 | /** Currently active lock keys. */
|
---|
| 80 | unsigned lock_keys;
|
---|
| 81 |
|
---|
| 82 | /** IPC phone to the console device (for sending key events). */
|
---|
| 83 | int console_phone;
|
---|
| 84 |
|
---|
| 85 | /** Information for auto-repeat of keys. */
|
---|
| 86 | usb_kbd_repeat_t repeat;
|
---|
| 87 |
|
---|
| 88 | /** Mutex for accessing the information about auto-repeat. */
|
---|
| 89 | fibril_mutex_t *repeat_mtx;
|
---|
| 90 |
|
---|
| 91 | uint8_t *output_buffer;
|
---|
| 92 |
|
---|
| 93 | size_t output_size;
|
---|
| 94 |
|
---|
| 95 | size_t led_output_size;
|
---|
| 96 |
|
---|
| 97 | usb_hid_report_path_t *led_path;
|
---|
| 98 |
|
---|
| 99 | int32_t *led_data;
|
---|
| 100 |
|
---|
| 101 | /** State of the structure (for checking before use).
|
---|
| 102 | *
|
---|
| 103 | * 0 - not initialized
|
---|
| 104 | * 1 - initialized
|
---|
| 105 | * -1 - ready for destroying
|
---|
| 106 | */
|
---|
| 107 | int initialized;
|
---|
| 108 | } usb_kbd_t;
|
---|
| 109 |
|
---|
| 110 | /*----------------------------------------------------------------------------*/
|
---|
| 111 |
|
---|
[73ae3373] | 112 | usb_endpoint_description_t usb_hid_kbd_poll_endpoint_description;
|
---|
[61257f4] | 113 |
|
---|
| 114 | const char *HID_KBD_FUN_NAME;
|
---|
| 115 | const char *HID_KBD_CLASS_NAME;
|
---|
| 116 |
|
---|
| 117 | /*----------------------------------------------------------------------------*/
|
---|
| 118 |
|
---|
[60c0573] | 119 | int usb_kbd_init(struct usb_hid_dev *hid_dev);
|
---|
[61257f4] | 120 |
|
---|
[60c0573] | 121 | bool usb_kbd_polling_callback(struct usb_hid_dev *hid_dev, uint8_t *buffer,
|
---|
| 122 | size_t buffer_size);
|
---|
[61257f4] | 123 |
|
---|
| 124 | int usb_kbd_is_initialized(const usb_kbd_t *kbd_dev);
|
---|
| 125 |
|
---|
| 126 | int usb_kbd_is_ready_to_destroy(const usb_kbd_t *kbd_dev);
|
---|
| 127 |
|
---|
| 128 | void usb_kbd_free(usb_kbd_t **kbd_dev);
|
---|
| 129 |
|
---|
[60c0573] | 130 | void usb_kbd_push_ev(struct usb_hid_dev *hid_dev, usb_kbd_t *kbd_dev,
|
---|
[61257f4] | 131 | int type, unsigned int key);
|
---|
| 132 |
|
---|
[60c0573] | 133 | void usb_kbd_deinit(struct usb_hid_dev *hid_dev);
|
---|
[61257f4] | 134 |
|
---|
[60c0573] | 135 | int usb_kbd_set_boot_protocol(struct usb_hid_dev *hid_dev);
|
---|
[61257f4] | 136 |
|
---|
[ba358ed] | 137 | #endif /* USB_HID_KBDDEV_H_ */
|
---|
[61257f4] | 138 |
|
---|
| 139 | /**
|
---|
| 140 | * @}
|
---|
| 141 | */
|
---|