Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

359 lines
10KB

  1. /* USB EHCI Host for Teensy 3.6
  2. * Copyright 2017 Paul Stoffregen (paul@pjrc.com)
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the
  6. * "Software"), to deal in the Software without restriction, including
  7. * without limitation the rights to use, copy, modify, merge, publish,
  8. * distribute, sublicense, and/or sell copies of the Software, and to
  9. * permit persons to whom the Software is furnished to do so, subject to
  10. * the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included
  13. * in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  18. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  19. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  20. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  21. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. */
  23. #include <Arduino.h>
  24. #include "USBHost_t36.h" // Read this header first for key info
  25. #include "keylayouts.h" // from Teensyduino core library
  26. typedef struct {
  27. KEYCODE_TYPE code;
  28. uint8_t ascii;
  29. } keycode_extra_t;
  30. typedef struct {
  31. KEYCODE_TYPE code;
  32. KEYCODE_TYPE codeNumlockOff;
  33. uint8_t charNumlockOn; // We will assume when num lock is on we have all characters...
  34. } keycode_numlock_t;
  35. #ifdef M
  36. #undef M
  37. #endif
  38. #define M(n) ((n) & KEYCODE_MASK)
  39. keycode_extra_t keycode_extras[] = {
  40. {M(KEY_ENTER), '\n'},
  41. {M(KEY_ESC), 0x1b},
  42. {M(KEY_TAB), 0x9 },
  43. {M(KEY_UP), KEYD_UP },
  44. {M(KEY_DOWN), KEYD_DOWN },
  45. {M(KEY_LEFT), KEYD_LEFT },
  46. {M(KEY_RIGHT), KEYD_RIGHT },
  47. {M(KEY_INSERT), KEYD_INSERT },
  48. {M(KEY_DELETE), KEYD_DELETE },
  49. {M(KEY_PAGE_UP), KEYD_PAGE_UP },
  50. {M(KEY_PAGE_DOWN), KEYD_PAGE_DOWN },
  51. {M(KEY_HOME), KEYD_HOME },
  52. {M(KEY_END), KEYD_END },
  53. {M(KEY_F1), KEYD_F1 },
  54. {M(KEY_F2), KEYD_F2 },
  55. {M(KEY_F3), KEYD_F3 },
  56. {M(KEY_F4), KEYD_F4 },
  57. {M(KEY_F5), KEYD_F5 },
  58. {M(KEY_F6), KEYD_F6 },
  59. {M(KEY_F7), KEYD_F7 },
  60. {M(KEY_F8), KEYD_F8 },
  61. {M(KEY_F9), KEYD_F9 },
  62. {M(KEY_F10), KEYD_F10 },
  63. {M(KEY_F11), KEYD_F11 },
  64. {M(KEY_F12), KEYD_F12 }
  65. };
  66. // Some of these mapped to key + shift.
  67. keycode_numlock_t keycode_numlock[] = {
  68. {M(KEYPAD_SLASH), '/', '/'},
  69. {M(KEYPAD_ASTERIX), '*', '*'},
  70. {M(KEYPAD_MINUS), '-', '-'},
  71. {M(KEYPAD_PLUS), '+', '+'},
  72. {M(KEYPAD_ENTER), '\n', '\n'},
  73. {M(KEYPAD_1), 0x80 | M(KEY_END), '1'},
  74. {M(KEYPAD_2), 0x80 | M(KEY_DOWN), '2'},
  75. {M(KEYPAD_3), 0x80 | M(KEY_PAGE_DOWN), '3'},
  76. {M(KEYPAD_4), 0x80 | M(KEY_LEFT), '4'},
  77. {M(KEYPAD_5), 0x00, '5'},
  78. {M(KEYPAD_6), 0x80 | M(KEY_RIGHT), '6'},
  79. {M(KEYPAD_7), 0x80 | M(KEY_HOME), '7'},
  80. {M(KEYPAD_8), 0x80 | M(KEY_UP), '8'},
  81. {M(KEYPAD_9), 0x80 | M(KEY_PAGE_UP), '9'},
  82. {M(KEYPAD_0), 0x80 | M(KEY_INSERT), '0'},
  83. {M(KEYPAD_PERIOD), 0x80 | M(KEY_DELETE), '.'}
  84. };
  85. #define print USBHost::print_
  86. #define println USBHost::println_
  87. void KeyboardController::init()
  88. {
  89. contribute_Pipes(mypipes, sizeof(mypipes)/sizeof(Pipe_t));
  90. contribute_Transfers(mytransfers, sizeof(mytransfers)/sizeof(Transfer_t));
  91. contribute_String_Buffers(mystring_bufs, sizeof(mystring_bufs)/sizeof(strbuf_t));
  92. driver_ready_for_device(this);
  93. }
  94. bool KeyboardController::claim(Device_t *dev, int type, const uint8_t *descriptors, uint32_t len)
  95. {
  96. println("KeyboardController claim this=", (uint32_t)this, HEX);
  97. // only claim at interface level
  98. if (type != 1) return false;
  99. if (len < 9+9+7) return false;
  100. uint32_t numendpoint = descriptors[4];
  101. if (numendpoint < 1) return false;
  102. if (descriptors[5] != 3) return false; // bInterfaceClass, 3 = HID
  103. if (descriptors[6] != 1) return false; // bInterfaceSubClass, 1 = Boot Device
  104. if (descriptors[7] != 1) return false; // bInterfaceProtocol, 1 = Keyboard
  105. if (descriptors[9] != 9) return false;
  106. if (descriptors[10] != 33) return false; // HID descriptor (ignored, Boot Protocol)
  107. if (descriptors[18] != 7) return false;
  108. if (descriptors[19] != 5) return false; // endpoint descriptor
  109. uint32_t endpoint = descriptors[20];
  110. println("ep = ", endpoint, HEX);
  111. if ((endpoint & 0xF0) != 0x80) return false; // must be IN direction
  112. endpoint &= 0x0F;
  113. if (endpoint == 0) return false;
  114. if (descriptors[21] != 3) return false; // must be interrupt type
  115. uint32_t size = descriptors[22] | (descriptors[23] << 8);
  116. println("packet size = ", size);
  117. if ((size < 8) || (size > 64)) {
  118. return false; // Keyboard Boot Protocol is 8 bytes, but maybe others have longer...
  119. }
  120. #ifdef USBHS_KEYBOARD_INTERVAL
  121. uint32_t interval = USBHS_KEYBOARD_INTERVAL;
  122. #else
  123. uint32_t interval = descriptors[24];
  124. #endif
  125. println("polling interval = ", interval);
  126. datapipe = new_Pipe(dev, 3, endpoint, 1, 8, interval);
  127. datapipe->callback_function = callback;
  128. queue_Data_Transfer(datapipe, report, 8, this);
  129. mk_setup(setup, 0x21, 10, 0, 0, 0); // 10=SET_IDLE
  130. queue_Control_Transfer(dev, &setup, NULL, this);
  131. return true;
  132. }
  133. void KeyboardController::control(const Transfer_t *transfer)
  134. {
  135. }
  136. void KeyboardController::callback(const Transfer_t *transfer)
  137. {
  138. //println("KeyboardController Callback (static)");
  139. if (transfer->driver) {
  140. ((KeyboardController *)(transfer->driver))->new_data(transfer);
  141. }
  142. }
  143. void KeyboardController::disconnect()
  144. {
  145. // TODO: free resources
  146. }
  147. // Arduino defined this static weak symbol callback, and their
  148. // examples use it as the only way to detect new key presses,
  149. // so unfortunate as static weak callbacks are, it probably
  150. // needs to be supported for compatibility
  151. extern "C" {
  152. void __keyboardControllerEmptyCallback() { }
  153. }
  154. void keyPressed() __attribute__ ((weak, alias("__keyboardControllerEmptyCallback")));
  155. void keyReleased() __attribute__ ((weak, alias("__keyboardControllerEmptyCallback")));
  156. static bool contains(uint8_t b, const uint8_t *data)
  157. {
  158. if (data[2] == b || data[3] == b || data[4] == b) return true;
  159. if (data[5] == b || data[6] == b || data[7] == b) return true;
  160. return false;
  161. }
  162. void KeyboardController::new_data(const Transfer_t *transfer)
  163. {
  164. processing_new_data_ = true;
  165. println("KeyboardController Callback (member)");
  166. print(" KB Data: ");
  167. print_hexbytes(transfer->buffer, 8);
  168. for (int i=2; i < 8; i++) {
  169. uint32_t key = prev_report[i];
  170. if (key >= 4 && !contains(key, report)) {
  171. key_release(prev_report[0], key);
  172. }
  173. }
  174. for (int i=2; i < 8; i++) {
  175. uint32_t key = report[i];
  176. if (key >= 4 && !contains(key, prev_report)) {
  177. key_press(report[0], key);
  178. }
  179. }
  180. memcpy(prev_report, report, 8);
  181. queue_Data_Transfer(datapipe, report, 8, this);
  182. processing_new_data_ = false;
  183. // See if we have any outstanding leds to update
  184. if (update_leds_) {
  185. updateLEDS();
  186. }
  187. }
  188. void KeyboardController::numLock(bool f) {
  189. if (leds_.numLock != f) {
  190. leds_.numLock = f;
  191. updateLEDS();
  192. }
  193. }
  194. void KeyboardController::capsLock(bool f) {
  195. if (leds_.capsLock != f) {
  196. leds_.capsLock = f;
  197. updateLEDS();
  198. }
  199. }
  200. void KeyboardController::scrollLock(bool f) {
  201. if (leds_.scrollLock != f) {
  202. leds_.scrollLock = f;
  203. updateLEDS();
  204. }
  205. }
  206. void KeyboardController::key_press(uint32_t mod, uint32_t key)
  207. {
  208. // TODO: queue events, perform callback from Task
  209. println(" press, key=", key);
  210. modifiers = mod;
  211. keyOEM = key;
  212. keyCode = convert_to_unicode(mod, key);
  213. println(" unicode = ", keyCode);
  214. if (keyPressedFunction) {
  215. keyPressedFunction(keyCode);
  216. } else {
  217. keyPressed();
  218. }
  219. }
  220. void KeyboardController::key_release(uint32_t mod, uint32_t key)
  221. {
  222. // TODO: queue events, perform callback from Task
  223. println(" release, key=", key);
  224. modifiers = mod;
  225. keyOEM = key;
  226. // Look for modifier keys
  227. if (key == M(KEY_NUM_LOCK)) {
  228. numLock(!leds_.numLock);
  229. // Lets toggle Numlock
  230. } else if (key == M(KEY_CAPS_LOCK)) {
  231. capsLock(!leds_.capsLock);
  232. } else if (key == M(KEY_SCROLL_LOCK)) {
  233. scrollLock(!leds_.scrollLock);
  234. } else {
  235. keyCode = convert_to_unicode(mod, key);
  236. if (keyReleasedFunction) {
  237. keyReleasedFunction(keyCode);
  238. } else {
  239. keyReleased();
  240. }
  241. }
  242. }
  243. uint16_t KeyboardController::convert_to_unicode(uint32_t mod, uint32_t key)
  244. {
  245. // WIP: special keys
  246. // TODO: dead key sequences
  247. if (key & SHIFT_MASK) {
  248. // Many of these keys will look like they are other keys with shift mask...
  249. // Check for any of our mapped extra keys
  250. for (uint8_t i = 0; i < (sizeof(keycode_numlock)/sizeof(keycode_numlock[0])); i++) {
  251. if (keycode_numlock[i].code == key) {
  252. // See if the user is using numlock or not...
  253. if (leds_.numLock) {
  254. return keycode_numlock[i].charNumlockOn;
  255. } else {
  256. key = keycode_numlock[i].codeNumlockOff;
  257. if (!(key & 0x80)) return key; // we have hard coded value
  258. key &= 0x7f; // mask off the extra and break out to process as other characters...
  259. break;
  260. }
  261. }
  262. }
  263. }
  264. // Check for any of our mapped extra keys - Done early as some of these keys are
  265. // above and some below the SHIFT_MASK value
  266. for (uint8_t i = 0; i < (sizeof(keycode_extras)/sizeof(keycode_extras[0])); i++) {
  267. if (keycode_extras[i].code == key) {
  268. return keycode_extras[i].ascii;
  269. }
  270. }
  271. // If we made it here without doing something then return 0;
  272. if (key & SHIFT_MASK) return 0;
  273. if ((mod & 0x02) || (mod & 0x20)) key |= SHIFT_MASK;
  274. if (leds_.capsLock) key ^= SHIFT_MASK; // Caps lock will switch the Shift;
  275. for (int i=0; i < 96; i++) {
  276. if (keycodes_ascii[i] == key) {
  277. if ((mod & 1) || (mod & 0x10)) return (i+32) & 0x1f; // Control key is down
  278. return i + 32;
  279. }
  280. }
  281. #ifdef ISO_8859_1_A0
  282. for (int i=0; i < 96; i++) {
  283. if (keycodes_iso_8859_1[i] == key) return i + 160;
  284. }
  285. #endif
  286. return 0;
  287. }
  288. void KeyboardController::LEDS(uint8_t leds) {
  289. println("Keyboard setLEDS ", leds, HEX);
  290. leds_.byte = leds;
  291. updateLEDS();
  292. }
  293. void KeyboardController::updateLEDS() {
  294. println("KBD: Update LEDS", leds_.byte, HEX);
  295. if (processing_new_data_) {
  296. println(" Update defered");
  297. update_leds_ = true;
  298. return; // defer until later
  299. }
  300. // Now lets tell keyboard new state.
  301. static uint8_t keyboard_keys_report[1] = {0};
  302. setup_t keys_setup;
  303. keyboard_keys_report[0] = leds_.byte;
  304. queue_Data_Transfer(datapipe, report, 8, this);
  305. mk_setup(keys_setup, 0x21, 9, 0x200, 0, sizeof(keyboard_keys_report)); // hopefully this sets leds
  306. queue_Control_Transfer(device, &keys_setup, keyboard_keys_report, this);
  307. update_leds_ = false;
  308. }