You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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. #ifndef USB_HOST_TEENSY36_
  24. #define USB_HOST_TEENSY36_
  25. #include <stdint.h>
  26. /************************************************/
  27. /* Data Structure Definitions */
  28. /************************************************/
  29. class USBHost;
  30. class USBDriver;
  31. typedef struct Device_struct Device_t;
  32. typedef struct Pipe_struct Pipe_t;
  33. typedef struct Transfer_struct Transfer_t;
  34. // setup_t holds the 8 byte USB SETUP packet data.
  35. // These unions & structs allow convenient access to
  36. // the setup fields.
  37. typedef union {
  38. struct {
  39. union {
  40. struct {
  41. uint8_t bmRequestType;
  42. uint8_t bRequest;
  43. };
  44. uint16_t wRequestAndType;
  45. };
  46. uint16_t wValue;
  47. uint16_t wIndex;
  48. uint16_t wLength;
  49. };
  50. struct {
  51. uint32_t word1;
  52. uint32_t word2;
  53. };
  54. } setup_t;
  55. // Device_t holds all the information about a USB device
  56. struct Device_struct {
  57. Pipe_t *control_pipe;
  58. Pipe_t *data_pipes;
  59. Device_t *next;
  60. USBDriver *drivers;
  61. uint8_t speed; // 0=12, 1=1.5, 2=480 Mbit/sec
  62. uint8_t address;
  63. uint8_t hub_address;
  64. uint8_t hub_port;
  65. uint8_t enum_state;
  66. uint8_t bDeviceClass;
  67. uint8_t bDeviceSubClass;
  68. uint8_t bDeviceProtocol;
  69. uint8_t bmAttributes;
  70. uint8_t bMaxPower;
  71. uint16_t idVendor;
  72. uint16_t idProduct;
  73. uint16_t LanguageID;
  74. };
  75. // Pipe_t holes all information about each USB endpoint/pipe
  76. // The first half is an EHCI QH structure for the pipe.
  77. struct Pipe_struct {
  78. // Queue Head (QH), EHCI page 46-50
  79. struct { // must be aligned to 32 byte boundary
  80. volatile uint32_t horizontal_link;
  81. volatile uint32_t capabilities[2];
  82. volatile uint32_t current;
  83. volatile uint32_t next;
  84. volatile uint32_t alt_next;
  85. volatile uint32_t token;
  86. volatile uint32_t buffer[5];
  87. } qh;
  88. Device_t *device;
  89. uint8_t type; // 0=control, 1=isochronous, 2=bulk, 3=interrupt
  90. uint8_t direction; // 0=out, 1=in (changes for control, others fixed)
  91. uint8_t unusedbyte[2];
  92. Pipe_t *next;
  93. void (*callback_function)(const Transfer_t *);
  94. };
  95. // Transfer_t represents a single transaction on the USB bus.
  96. // The first portion is an EHCI qTD structure. Transfer_t are
  97. // allocated as-needed from a memory pool, loaded with pointers
  98. // to the actual data buffers, linked into a followup list,
  99. // and placed on ECHI Queue Heads. When the ECHI interrupt
  100. // occurs, the followup lists are used to find the Transfer_t
  101. // in memory. Callbacks are made, and then the Transfer_t are
  102. // returned to the memory pool.
  103. struct Transfer_struct {
  104. // Queue Element Transfer Descriptor (qTD), EHCI pg 40-45
  105. struct { // must be aligned to 32 byte boundary
  106. volatile uint32_t next;
  107. volatile uint32_t alt_next;
  108. volatile uint32_t token;
  109. volatile uint32_t buffer[5];
  110. } qtd;
  111. // Linked list of queued, not-yet-completed transfers
  112. Transfer_t *next_followup;
  113. Transfer_t *prev_followup;
  114. // Data to be used by callback function. When a group
  115. // of Transfer_t are created, these fields and the
  116. // interrupt-on-complete bit in the qTD token are only
  117. // set in the last Transfer_t of the list.
  118. Pipe_t *pipe;
  119. void *buffer;
  120. uint32_t length;
  121. setup_t *setup;
  122. USBDriver *driver;
  123. uint32_t unused;
  124. };
  125. /************************************************/
  126. /* Main USB EHCI Controller */
  127. /************************************************/
  128. class USBHost {
  129. public:
  130. static void begin();
  131. protected:
  132. static Pipe_t * new_Pipe(Device_t *dev, uint32_t type, uint32_t endpoint,
  133. uint32_t direction, uint32_t maxlen, uint32_t interval=0);
  134. static bool queue_Control_Transfer(Device_t *dev, setup_t *setup,
  135. void *buf, USBDriver *driver);
  136. static bool queue_Data_Transfer(Pipe_t *pipe, void *buffer,
  137. uint32_t len, USBDriver *driver);
  138. static Device_t * new_Device(uint32_t speed, uint32_t hub_addr, uint32_t hub_port);
  139. static void disconnect_Device(Device_t *dev);
  140. static void enumeration(const Transfer_t *transfer);
  141. static void driver_ready_for_device(USBDriver *driver);
  142. private:
  143. static void isr();
  144. static void claim_drivers(Device_t *dev);
  145. static uint32_t assign_address(void);
  146. static bool queue_Transfer(Pipe_t *pipe, Transfer_t *transfer);
  147. static void init_Device_Pipe_Transfer_memory(void);
  148. static Device_t * allocate_Device(void);
  149. static void delete_Pipe(Pipe_t *pipe);
  150. static void free_Device(Device_t *q);
  151. static Pipe_t * allocate_Pipe(void);
  152. static void free_Pipe(Pipe_t *q);
  153. static Transfer_t * allocate_Transfer(void);
  154. static void free_Transfer(Transfer_t *q);
  155. static bool allocate_interrupt_pipe_bandwidth(uint32_t speed, uint32_t maxlen,
  156. uint32_t interval, uint32_t direction, uint32_t *offset_out,
  157. uint32_t *smask_out, uint32_t *cmask_out);
  158. protected:
  159. static void print(const Transfer_t *transfer);
  160. static void print(const Transfer_t *first, const Transfer_t *last);
  161. static void print_token(uint32_t token);
  162. static void print(const Pipe_t *pipe);
  163. static void print_driverlist(const char *name, const USBDriver *driver);
  164. static void print_hexbytes(const void *ptr, uint32_t len);
  165. static void print(const char *s) { Serial.print(s); }
  166. static void print(int n) { Serial.print(n); }
  167. static void print(unsigned int n) { Serial.print(n); }
  168. static void print(long n) { Serial.print(n); }
  169. static void print(unsigned long n) { Serial.print(n); }
  170. static void println(const char *s) { Serial.println(s); }
  171. static void println(int n) { Serial.println(n); }
  172. static void println(unsigned int n) { Serial.println(n); }
  173. static void println(long n) { Serial.println(n); }
  174. static void println(unsigned long n) { Serial.println(n); }
  175. static void println() { Serial.println(); }
  176. static void print(uint32_t n, uint8_t b) { Serial.print(n, b); }
  177. static void println(uint32_t n, uint8_t b) { Serial.print(n, b); }
  178. static void println(const char *s, int n) {
  179. Serial.print(s); Serial.println(n); }
  180. static void println(const char *s, unsigned int n) {
  181. Serial.print(s); Serial.println(n); }
  182. static void println(const char *s, long n) {
  183. Serial.print(s); Serial.println(n); }
  184. static void println(const char *s, unsigned long n) {
  185. Serial.print(s); Serial.println(n); }
  186. static void println(const char *s, int n, uint8_t b) {
  187. Serial.print(s); Serial.println(n, b); }
  188. static void println(const char *s, unsigned int n, uint8_t b) {
  189. Serial.print(s); Serial.println(n, b); }
  190. static void println(const char *s, long n, uint8_t b) {
  191. Serial.print(s); Serial.println(n, b); }
  192. static void println(const char *s, unsigned long n, uint8_t b) {
  193. Serial.print(s); Serial.println(n, b); }
  194. static void mk_setup(setup_t &s, uint32_t bmRequestType, uint32_t bRequest,
  195. uint32_t wValue, uint32_t wIndex, uint32_t wLength) {
  196. s.word1 = bmRequestType | (bRequest << 8) | (wValue << 16);
  197. s.word2 = wIndex | (wLength << 16);
  198. }
  199. };
  200. /************************************************/
  201. /* USB Device Driver Common Base Class */
  202. /************************************************/
  203. // All USB device drivers inherit from this base class.
  204. class USBDriver : public USBHost {
  205. protected:
  206. USBDriver() : next(NULL), device(NULL) {}
  207. // Check if a driver wishes to claim a device or interface or group
  208. // of interfaces within a device. When this function returns true,
  209. // the driver is considered bound or loaded for that device. When
  210. // new devices are detected, enumeration.cpp calls this function on
  211. // all unbound driver objects, to give them an opportunity to bind
  212. // to the new device.
  213. // device has its vid&pid, class/subclass fields initialized
  214. // type is 0 for device level, 1 for interface level, 2 for IAD
  215. // descriptors points to the specific descriptor data
  216. virtual bool claim(Device_t *device, int type, const uint8_t *descriptors, uint32_t len);
  217. // When an unknown (not chapter 9) control transfer completes, this
  218. // function is called for all drivers bound to the device. Return
  219. // true means this driver originated this control transfer, so no
  220. // more drivers need to be offered an opportunity to process it.
  221. // This function is optional, only needed if the driver uses control
  222. // transfers and wishes to be notified when they complete.
  223. virtual void control(const Transfer_t *transfer) { }
  224. // When a device disconnects from the USB, this function is called.
  225. // The driver must free all resources it allocated and update any
  226. // internal state necessary to deal with the possibility of user
  227. // code continuing to call its API. However, pipes and transfers
  228. // are the handled by lower layers, so device drivers do not free
  229. // pipes they created or cancel transfers they had in progress.
  230. virtual void disconnect();
  231. // Drivers are managed by this single-linked list. All inactive
  232. // (not bound to any device) drivers are linked from
  233. // available_drivers in enumeration.cpp. When bound to a device,
  234. // drivers are linked from that Device_t drivers list.
  235. USBDriver *next;
  236. // The device this object instance is bound to. In words, this
  237. // is the specific device this driver is using. When not bound
  238. // to any device, this must be NULL.
  239. Device_t *device;
  240. friend class USBHost;
  241. public:
  242. // TODO: user-level functions
  243. // check if device is bound/active/online
  244. // query vid, pid
  245. // query string: manufacturer, product, serial number
  246. };
  247. /************************************************/
  248. /* USB Device Drivers */
  249. /************************************************/
  250. class USBHub : public USBDriver {
  251. public:
  252. USBHub();
  253. protected:
  254. virtual bool claim(Device_t *device, int type, const uint8_t *descriptors, uint32_t len);
  255. virtual void control(const Transfer_t *transfer);
  256. virtual void disconnect();
  257. void poweron(uint32_t port);
  258. void getstatus(uint32_t port);
  259. void clearstatus(uint32_t port);
  260. void reset(uint32_t port);
  261. static void callback(const Transfer_t *transfer);
  262. void status_change(const Transfer_t *transfer);
  263. void new_port_status(uint32_t port, uint32_t status);
  264. void update_status();
  265. setup_t setup;
  266. uint8_t hub_desc[16];
  267. uint8_t endpoint;
  268. uint8_t numports;
  269. uint8_t characteristics;
  270. uint8_t powertime;
  271. uint8_t state;
  272. Pipe_t *changepipe;
  273. uint32_t changebits;
  274. uint32_t statusbits;
  275. uint16_t portstatus[7];
  276. uint8_t portstate[7];
  277. };
  278. class KeyboardController : public USBDriver {
  279. public:
  280. KeyboardController();
  281. int available();
  282. int read();
  283. uint8_t getKey();
  284. uint8_t getModifiers();
  285. uint8_t getOemKey();
  286. void attachPress(void (*keyPressed)());
  287. void attachRelease(void (*keyReleased)());
  288. protected:
  289. virtual bool claim(Device_t *device, int type, const uint8_t *descriptors, uint32_t len);
  290. virtual void disconnect();
  291. static void callback(const Transfer_t *transfer);
  292. void new_data(const Transfer_t *transfer);
  293. private:
  294. void (*keyPressedFunction)();
  295. void (*keyReleasedFunction)();
  296. Pipe_t *datapipe;
  297. uint8_t report[8];
  298. };
  299. class MIDIDevice : public USBDriver {
  300. public:
  301. MIDIDevice();
  302. protected:
  303. virtual bool claim(Device_t *device, int type, const uint8_t *descriptors, uint32_t len);
  304. virtual void disconnect();
  305. static void rx_callback(const Transfer_t *transfer);
  306. static void tx_callback(const Transfer_t *transfer);
  307. void rx_data(const Transfer_t *transfer);
  308. void tx_data(const Transfer_t *transfer);
  309. private:
  310. Pipe_t *rxpipe;
  311. Pipe_t *txpipe;
  312. enum { BUFFERSIZE = 64 };
  313. uint8_t buffer[BUFFERSIZE * 2];
  314. uint8_t rx_ep;
  315. uint8_t tx_ep;
  316. uint16_t rx_size;
  317. uint16_t tx_size;
  318. };
  319. #endif