Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

353 lines
10.0KB

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