No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

354 líneas
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. driver_ready_for_device(this);
  92. }
  93. bool KeyboardController::claim(Device_t *dev, int type, const uint8_t *descriptors, uint32_t len)
  94. {
  95. println("KeyboardController claim this=", (uint32_t)this, HEX);
  96. // only claim at interface level
  97. if (type != 1) return false;
  98. if (len < 9+9+7) return false;
  99. uint32_t numendpoint = descriptors[4];
  100. if (numendpoint < 1) return false;
  101. if (descriptors[5] != 3) return false; // bInterfaceClass, 3 = HID
  102. if (descriptors[6] != 1) return false; // bInterfaceSubClass, 1 = Boot Device
  103. if (descriptors[7] != 1) return false; // bInterfaceProtocol, 1 = Keyboard
  104. if (descriptors[9] != 9) return false;
  105. if (descriptors[10] != 33) return false; // HID descriptor (ignored, Boot Protocol)
  106. if (descriptors[18] != 7) return false;
  107. if (descriptors[19] != 5) return false; // endpoint descriptor
  108. uint32_t endpoint = descriptors[20];
  109. println("ep = ", endpoint, HEX);
  110. if ((endpoint & 0xF0) != 0x80) return false; // must be IN direction
  111. endpoint &= 0x0F;
  112. if (endpoint == 0) return false;
  113. if (descriptors[21] != 3) return false; // must be interrupt type
  114. uint32_t size = descriptors[22] | (descriptors[23] << 8);
  115. println("packet size = ", size);
  116. if (size != 8) {
  117. return false; // must be 8 bytes for Keyboard Boot Protocol
  118. }
  119. uint32_t interval = descriptors[24];
  120. println("polling interval = ", interval);
  121. datapipe = new_Pipe(dev, 3, endpoint, 1, 8, interval);
  122. datapipe->callback_function = callback;
  123. queue_Data_Transfer(datapipe, report, 8, this);
  124. mk_setup(setup, 0x21, 10, 0, 0, 0); // 10=SET_IDLE
  125. queue_Control_Transfer(dev, &setup, NULL, this);
  126. return true;
  127. }
  128. void KeyboardController::control(const Transfer_t *transfer)
  129. {
  130. }
  131. void KeyboardController::callback(const Transfer_t *transfer)
  132. {
  133. //println("KeyboardController Callback (static)");
  134. if (transfer->driver) {
  135. ((KeyboardController *)(transfer->driver))->new_data(transfer);
  136. }
  137. }
  138. void KeyboardController::disconnect()
  139. {
  140. // TODO: free resources
  141. }
  142. // Arduino defined this static weak symbol callback, and their
  143. // examples use it as the only way to detect new key presses,
  144. // so unfortunate as static weak callbacks are, it probably
  145. // needs to be supported for compatibility
  146. extern "C" {
  147. void __keyboardControllerEmptyCallback() { }
  148. }
  149. void keyPressed() __attribute__ ((weak, alias("__keyboardControllerEmptyCallback")));
  150. void keyReleased() __attribute__ ((weak, alias("__keyboardControllerEmptyCallback")));
  151. static bool contains(uint8_t b, const uint8_t *data)
  152. {
  153. if (data[2] == b || data[3] == b || data[4] == b) return true;
  154. if (data[5] == b || data[6] == b || data[7] == b) return true;
  155. return false;
  156. }
  157. void KeyboardController::new_data(const Transfer_t *transfer)
  158. {
  159. processing_new_data_ = true;
  160. println("KeyboardController Callback (member)");
  161. print(" KB Data: ");
  162. print_hexbytes(transfer->buffer, 8);
  163. for (int i=2; i < 8; i++) {
  164. uint32_t key = prev_report[i];
  165. if (key >= 4 && !contains(key, report)) {
  166. key_release(prev_report[0], key);
  167. }
  168. }
  169. for (int i=2; i < 8; i++) {
  170. uint32_t key = report[i];
  171. if (key >= 4 && !contains(key, prev_report)) {
  172. key_press(report[0], key);
  173. }
  174. }
  175. memcpy(prev_report, report, 8);
  176. queue_Data_Transfer(datapipe, report, 8, this);
  177. processing_new_data_ = false;
  178. // See if we have any outstanding leds to update
  179. if (update_leds_) {
  180. updateLEDS();
  181. }
  182. }
  183. void KeyboardController::numLock(bool f) {
  184. if (leds_.numLock != f) {
  185. leds_.numLock = f;
  186. updateLEDS();
  187. }
  188. }
  189. void KeyboardController::capsLock(bool f) {
  190. if (leds_.capsLock != f) {
  191. leds_.capsLock = f;
  192. updateLEDS();
  193. }
  194. }
  195. void KeyboardController::scrollLock(bool f) {
  196. if (leds_.scrollLock != f) {
  197. leds_.scrollLock = f;
  198. updateLEDS();
  199. }
  200. }
  201. void KeyboardController::key_press(uint32_t mod, uint32_t key)
  202. {
  203. // TODO: queue events, perform callback from Task
  204. println(" press, key=", key);
  205. modifiers = mod;
  206. keyOEM = key;
  207. keyCode = convert_to_unicode(mod, key);
  208. println(" unicode = ", keyCode);
  209. if (keyPressedFunction) {
  210. keyPressedFunction(keyCode);
  211. } else {
  212. keyPressed();
  213. }
  214. }
  215. void KeyboardController::key_release(uint32_t mod, uint32_t key)
  216. {
  217. // TODO: queue events, perform callback from Task
  218. println(" release, key=", key);
  219. modifiers = mod;
  220. keyOEM = key;
  221. // Look for modifier keys
  222. if (key == M(KEY_NUM_LOCK)) {
  223. numLock(!leds_.numLock);
  224. // Lets toggle Numlock
  225. } else if (key == M(KEY_CAPS_LOCK)) {
  226. capsLock(!leds_.capsLock);
  227. } else if (key == M(KEY_SCROLL_LOCK)) {
  228. scrollLock(!leds_.scrollLock);
  229. } else {
  230. keyCode = convert_to_unicode(mod, key);
  231. if (keyReleasedFunction) {
  232. keyReleasedFunction(keyCode);
  233. } else {
  234. keyReleased();
  235. }
  236. }
  237. }
  238. uint16_t KeyboardController::convert_to_unicode(uint32_t mod, uint32_t key)
  239. {
  240. // WIP: special keys
  241. // TODO: dead key sequences
  242. if (key & SHIFT_MASK) {
  243. // Many of these keys will look like they are other keys with shift mask...
  244. // Check for any of our mapped extra keys
  245. for (uint8_t i = 0; i < (sizeof(keycode_numlock)/sizeof(keycode_numlock[0])); i++) {
  246. if (keycode_numlock[i].code == key) {
  247. // See if the user is using numlock or not...
  248. if (leds_.numLock) {
  249. return keycode_numlock[i].charNumlockOn;
  250. } else {
  251. key = keycode_numlock[i].codeNumlockOff;
  252. if (!(key & 0x80)) return key; // we have hard coded value
  253. key &= 0x7f; // mask off the extra and break out to process as other characters...
  254. break;
  255. }
  256. }
  257. }
  258. }
  259. // Check for any of our mapped extra keys - Done early as some of these keys are
  260. // above and some below the SHIFT_MASK value
  261. for (uint8_t i = 0; i < (sizeof(keycode_extras)/sizeof(keycode_extras[0])); i++) {
  262. if (keycode_extras[i].code == key) {
  263. return keycode_extras[i].ascii;
  264. }
  265. }
  266. // If we made it here without doing something then return 0;
  267. if (key & SHIFT_MASK) return 0;
  268. if ((mod & 0x02) || (mod & 0x20)) key |= SHIFT_MASK;
  269. if (leds_.capsLock) key ^= SHIFT_MASK; // Caps lock will switch the Shift;
  270. for (int i=0; i < 96; i++) {
  271. if (keycodes_ascii[i] == key) {
  272. if ((mod & 1) || (mod & 0x10)) return (i+32) & 0x1f; // Control key is down
  273. return i + 32;
  274. }
  275. }
  276. #ifdef ISO_8859_1_A0
  277. for (int i=0; i < 96; i++) {
  278. if (keycodes_iso_8859_1[i] == key) return i + 160;
  279. }
  280. #endif
  281. return 0;
  282. }
  283. void KeyboardController::LEDS(uint8_t leds) {
  284. println("Keyboard setLEDS ", leds, HEX);
  285. leds_.byte = leds;
  286. updateLEDS();
  287. }
  288. void KeyboardController::updateLEDS() {
  289. println("KBD: Update LEDS", leds_.byte, HEX);
  290. if (processing_new_data_) {
  291. println(" Update defered");
  292. update_leds_ = true;
  293. return; // defer until later
  294. }
  295. // Now lets tell keyboard new state.
  296. static uint8_t keyboard_keys_report[1] = {0};
  297. setup_t keys_setup;
  298. keyboard_keys_report[0] = leds_.byte;
  299. queue_Data_Transfer(datapipe, report, 8, this);
  300. mk_setup(keys_setup, 0x21, 9, 0x200, 0, sizeof(keyboard_keys_report)); // hopefully this sets leds
  301. queue_Control_Transfer(device, &keys_setup, keyboard_keys_report, this);
  302. update_leds_ = false;
  303. }