Teensy 4.1 core updated for C++20
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.

1112 lines
29KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2016 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * 2. If the Software is incorporated into a build system that allows
  17. * selection among a list of target devices, then similar target
  18. * devices manufactured by PJRC.COM must be included in the list of
  19. * target devices and selectable in the same manner.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. * SOFTWARE.
  29. *
  30. * Trying to understand this rather complex code?
  31. *
  32. * Kevin Cuzner wrote a simpler version, and a great blog article:
  33. * http://kevincuzner.com/2014/12/12/teensy-3-1-bare-metal-writing-a-usb-driver/
  34. * https://github.com/kcuzner/teensy-oscilloscope/blob/master/scope-teensy/src/usb.c
  35. *
  36. * Andy Payne wrote another relatively simple USB example for Freescale Kinetis
  37. * https://github.com/payne92/bare-metal-arm
  38. */
  39. #include "usb_dev.h"
  40. #if F_CPU >= 20000000 && defined(NUM_ENDPOINTS)
  41. #include "kinetis.h"
  42. //#include "HardwareSerial.h"
  43. #include "usb_mem.h"
  44. // buffer descriptor table
  45. typedef struct {
  46. uint32_t desc;
  47. void * addr;
  48. } bdt_t;
  49. __attribute__ ((section(".usbdescriptortable"), used))
  50. static bdt_t table[(NUM_ENDPOINTS+1)*4];
  51. static usb_packet_t *rx_first[NUM_ENDPOINTS];
  52. static usb_packet_t *rx_last[NUM_ENDPOINTS];
  53. static usb_packet_t *tx_first[NUM_ENDPOINTS];
  54. static usb_packet_t *tx_last[NUM_ENDPOINTS];
  55. uint16_t usb_rx_byte_count_data[NUM_ENDPOINTS];
  56. static uint8_t tx_state[NUM_ENDPOINTS];
  57. #define TX_STATE_BOTH_FREE_EVEN_FIRST 0
  58. #define TX_STATE_BOTH_FREE_ODD_FIRST 1
  59. #define TX_STATE_EVEN_FREE 2
  60. #define TX_STATE_ODD_FREE 3
  61. #define TX_STATE_NONE_FREE_EVEN_FIRST 4
  62. #define TX_STATE_NONE_FREE_ODD_FIRST 5
  63. #define BDT_OWN 0x80
  64. #define BDT_DATA1 0x40
  65. #define BDT_DATA0 0x00
  66. #define BDT_DTS 0x08
  67. #define BDT_STALL 0x04
  68. #define BDT_PID(n) (((n) >> 2) & 15)
  69. #define BDT_DESC(count, data) (BDT_OWN | BDT_DTS \
  70. | ((data) ? BDT_DATA1 : BDT_DATA0) \
  71. | ((count) << 16))
  72. #define TX 1
  73. #define RX 0
  74. #define ODD 1
  75. #define EVEN 0
  76. #define DATA0 0
  77. #define DATA1 1
  78. #define index(endpoint, tx, odd) (((endpoint) << 2) | ((tx) << 1) | (odd))
  79. #define stat2bufferdescriptor(stat) (table + ((stat) >> 2))
  80. static union {
  81. struct {
  82. union {
  83. struct {
  84. uint8_t bmRequestType;
  85. uint8_t bRequest;
  86. };
  87. uint16_t wRequestAndType;
  88. };
  89. uint16_t wValue;
  90. uint16_t wIndex;
  91. uint16_t wLength;
  92. };
  93. struct {
  94. uint32_t word1;
  95. uint32_t word2;
  96. };
  97. } setup;
  98. #define GET_STATUS 0
  99. #define CLEAR_FEATURE 1
  100. #define SET_FEATURE 3
  101. #define SET_ADDRESS 5
  102. #define GET_DESCRIPTOR 6
  103. #define SET_DESCRIPTOR 7
  104. #define GET_CONFIGURATION 8
  105. #define SET_CONFIGURATION 9
  106. #define GET_INTERFACE 10
  107. #define SET_INTERFACE 11
  108. #define SYNCH_FRAME 12
  109. // SETUP always uses a DATA0 PID for the data field of the SETUP transaction.
  110. // transactions in the data phase start with DATA1 and toggle (figure 8-12, USB1.1)
  111. // Status stage uses a DATA1 PID.
  112. static uint8_t ep0_rx0_buf[EP0_SIZE] __attribute__ ((aligned (4)));
  113. static uint8_t ep0_rx1_buf[EP0_SIZE] __attribute__ ((aligned (4)));
  114. static const uint8_t *ep0_tx_ptr = NULL;
  115. static uint16_t ep0_tx_len;
  116. static uint8_t ep0_tx_bdt_bank = 0;
  117. static uint8_t ep0_tx_data_toggle = 0;
  118. uint8_t usb_rx_memory_needed = 0;
  119. volatile uint8_t usb_configuration = 0;
  120. volatile uint8_t usb_reboot_timer = 0;
  121. static void endpoint0_stall(void)
  122. {
  123. USB0_ENDPT0 = USB_ENDPT_EPSTALL | USB_ENDPT_EPRXEN | USB_ENDPT_EPTXEN | USB_ENDPT_EPHSHK;
  124. }
  125. static void endpoint0_transmit(const void *data, uint32_t len)
  126. {
  127. #if 0
  128. serial_print("tx0:");
  129. serial_phex32((uint32_t)data);
  130. serial_print(",");
  131. serial_phex16(len);
  132. serial_print(ep0_tx_bdt_bank ? ", odd" : ", even");
  133. serial_print(ep0_tx_data_toggle ? ", d1\n" : ", d0\n");
  134. #endif
  135. table[index(0, TX, ep0_tx_bdt_bank)].addr = (void *)data;
  136. table[index(0, TX, ep0_tx_bdt_bank)].desc = BDT_DESC(len, ep0_tx_data_toggle);
  137. ep0_tx_data_toggle ^= 1;
  138. ep0_tx_bdt_bank ^= 1;
  139. }
  140. static uint8_t reply_buffer[8];
  141. static void usb_setup(void)
  142. {
  143. const uint8_t *data = NULL;
  144. uint32_t datalen = 0;
  145. const usb_descriptor_list_t *list;
  146. uint32_t size;
  147. volatile uint8_t *reg;
  148. uint8_t epconf;
  149. const uint8_t *cfg;
  150. int i;
  151. switch (setup.wRequestAndType) {
  152. case 0x0500: // SET_ADDRESS
  153. break;
  154. case 0x0900: // SET_CONFIGURATION
  155. //serial_print("configure\n");
  156. usb_configuration = setup.wValue;
  157. reg = &USB0_ENDPT1;
  158. cfg = usb_endpoint_config_table;
  159. // clear all BDT entries, free any allocated memory...
  160. for (i=4; i < (NUM_ENDPOINTS+1)*4; i++) {
  161. if (table[i].desc & BDT_OWN) {
  162. usb_free((usb_packet_t *)((uint8_t *)(table[i].addr) - 8));
  163. }
  164. }
  165. // free all queued packets
  166. for (i=0; i < NUM_ENDPOINTS; i++) {
  167. usb_packet_t *p, *n;
  168. p = rx_first[i];
  169. while (p) {
  170. n = p->next;
  171. usb_free(p);
  172. p = n;
  173. }
  174. rx_first[i] = NULL;
  175. rx_last[i] = NULL;
  176. p = tx_first[i];
  177. while (p) {
  178. n = p->next;
  179. usb_free(p);
  180. p = n;
  181. }
  182. tx_first[i] = NULL;
  183. tx_last[i] = NULL;
  184. usb_rx_byte_count_data[i] = 0;
  185. switch (tx_state[i]) {
  186. case TX_STATE_EVEN_FREE:
  187. case TX_STATE_NONE_FREE_EVEN_FIRST:
  188. tx_state[i] = TX_STATE_BOTH_FREE_EVEN_FIRST;
  189. break;
  190. case TX_STATE_ODD_FREE:
  191. case TX_STATE_NONE_FREE_ODD_FIRST:
  192. tx_state[i] = TX_STATE_BOTH_FREE_ODD_FIRST;
  193. break;
  194. default:
  195. break;
  196. }
  197. }
  198. usb_rx_memory_needed = 0;
  199. for (i=1; i <= NUM_ENDPOINTS; i++) {
  200. epconf = *cfg++;
  201. *reg = epconf;
  202. reg += 4;
  203. #ifdef AUDIO_INTERFACE
  204. if (i == AUDIO_RX_ENDPOINT) {
  205. table[index(i, RX, EVEN)].addr = usb_audio_receive_buffer;
  206. table[index(i, RX, EVEN)].desc = (AUDIO_RX_SIZE<<16) | BDT_OWN;
  207. table[index(i, RX, ODD)].addr = usb_audio_receive_buffer;
  208. table[index(i, RX, ODD)].desc = (AUDIO_RX_SIZE<<16) | BDT_OWN;
  209. } else
  210. #endif
  211. if (epconf & USB_ENDPT_EPRXEN) {
  212. usb_packet_t *p;
  213. p = usb_malloc();
  214. if (p) {
  215. table[index(i, RX, EVEN)].addr = p->buf;
  216. table[index(i, RX, EVEN)].desc = BDT_DESC(64, 0);
  217. } else {
  218. table[index(i, RX, EVEN)].desc = 0;
  219. usb_rx_memory_needed++;
  220. }
  221. p = usb_malloc();
  222. if (p) {
  223. table[index(i, RX, ODD)].addr = p->buf;
  224. table[index(i, RX, ODD)].desc = BDT_DESC(64, 1);
  225. } else {
  226. table[index(i, RX, ODD)].desc = 0;
  227. usb_rx_memory_needed++;
  228. }
  229. }
  230. table[index(i, TX, EVEN)].desc = 0;
  231. table[index(i, TX, ODD)].desc = 0;
  232. #ifdef AUDIO_INTERFACE
  233. if (i == AUDIO_SYNC_ENDPOINT) {
  234. table[index(i, TX, EVEN)].addr = &usb_audio_sync_feedback;
  235. table[index(i, TX, EVEN)].desc = (3<<16) | BDT_OWN;
  236. }
  237. #endif
  238. }
  239. break;
  240. case 0x0880: // GET_CONFIGURATION
  241. reply_buffer[0] = usb_configuration;
  242. datalen = 1;
  243. data = reply_buffer;
  244. break;
  245. case 0x0080: // GET_STATUS (device)
  246. reply_buffer[0] = 0;
  247. reply_buffer[1] = 0;
  248. datalen = 2;
  249. data = reply_buffer;
  250. break;
  251. case 0x0082: // GET_STATUS (endpoint)
  252. if (setup.wIndex > NUM_ENDPOINTS) {
  253. // TODO: do we need to handle IN vs OUT here?
  254. endpoint0_stall();
  255. return;
  256. }
  257. reply_buffer[0] = 0;
  258. reply_buffer[1] = 0;
  259. if (*(uint8_t *)(&USB0_ENDPT0 + setup.wIndex * 4) & 0x02) reply_buffer[0] = 1;
  260. data = reply_buffer;
  261. datalen = 2;
  262. break;
  263. case 0x0102: // CLEAR_FEATURE (endpoint)
  264. i = setup.wIndex & 0x7F;
  265. if (i > NUM_ENDPOINTS || setup.wValue != 0) {
  266. // TODO: do we need to handle IN vs OUT here?
  267. endpoint0_stall();
  268. return;
  269. }
  270. (*(uint8_t *)(&USB0_ENDPT0 + i * 4)) &= ~0x02;
  271. // TODO: do we need to clear the data toggle here?
  272. break;
  273. case 0x0302: // SET_FEATURE (endpoint)
  274. i = setup.wIndex & 0x7F;
  275. if (i > NUM_ENDPOINTS || setup.wValue != 0) {
  276. // TODO: do we need to handle IN vs OUT here?
  277. endpoint0_stall();
  278. return;
  279. }
  280. (*(uint8_t *)(&USB0_ENDPT0 + i * 4)) |= 0x02;
  281. // TODO: do we need to clear the data toggle here?
  282. break;
  283. case 0x0680: // GET_DESCRIPTOR
  284. case 0x0681:
  285. //serial_print("desc:");
  286. //serial_phex16(setup.wValue);
  287. //serial_print("\n");
  288. for (list = usb_descriptor_list; 1; list++) {
  289. if (list->addr == NULL) break;
  290. //if (setup.wValue == list->wValue &&
  291. //(setup.wIndex == list->wIndex) || ((setup.wValue >> 8) == 3)) {
  292. if (setup.wValue == list->wValue && setup.wIndex == list->wIndex) {
  293. data = list->addr;
  294. if ((setup.wValue >> 8) == 3) {
  295. // for string descriptors, use the descriptor's
  296. // length field, allowing runtime configured
  297. // length.
  298. datalen = *(list->addr);
  299. } else {
  300. datalen = list->length;
  301. }
  302. #if 0
  303. serial_print("Desc found, ");
  304. serial_phex32((uint32_t)data);
  305. serial_print(",");
  306. serial_phex16(datalen);
  307. serial_print(",");
  308. serial_phex(data[0]);
  309. serial_phex(data[1]);
  310. serial_phex(data[2]);
  311. serial_phex(data[3]);
  312. serial_phex(data[4]);
  313. serial_phex(data[5]);
  314. serial_print("\n");
  315. #endif
  316. goto send;
  317. }
  318. }
  319. //serial_print("desc: not found\n");
  320. endpoint0_stall();
  321. return;
  322. #if defined(CDC_STATUS_INTERFACE)
  323. case 0x2221: // CDC_SET_CONTROL_LINE_STATE
  324. usb_cdc_line_rtsdtr_millis = systick_millis_count;
  325. usb_cdc_line_rtsdtr = setup.wValue;
  326. //serial_print("set control line state\n");
  327. break;
  328. case 0x2321: // CDC_SEND_BREAK
  329. break;
  330. case 0x2021: // CDC_SET_LINE_CODING
  331. //serial_print("set coding, waiting...\n");
  332. return;
  333. #endif
  334. #if defined(MTP_INTERFACE)
  335. case 0x2164: // Cancel Request (PTP spec, 5.2.1, page 8)
  336. // TODO: required by PTP spec
  337. endpoint0_stall();
  338. return;
  339. case 0x2166: // Device Reset (PTP spec, 5.2.3, page 10)
  340. // TODO: required by PTP spec
  341. endpoint0_stall();
  342. return;
  343. case 0x2167: // Get Device Statis (PTP spec, 5.2.4, page 10)
  344. // TODO: required by PTP spec
  345. endpoint0_stall();
  346. return;
  347. #endif
  348. // TODO: this does not work... why?
  349. #if defined(SEREMU_INTERFACE) || defined(KEYBOARD_INTERFACE)
  350. case 0x0921: // HID SET_REPORT
  351. //serial_print(":)\n");
  352. return;
  353. case 0x0A21: // HID SET_IDLE
  354. break;
  355. // case 0xC940:
  356. #endif
  357. #if defined(AUDIO_INTERFACE)
  358. case 0x0B01: // SET_INTERFACE (alternate setting)
  359. if (setup.wIndex == AUDIO_INTERFACE+1) {
  360. //audio_tx_alternate_setting = setup.wValue;
  361. } else if (setup.wIndex == AUDIO_INTERFACE+2) {
  362. //audio_rx_alternate_setting = setup.wValue;
  363. } else {
  364. endpoint0_stall();
  365. return;
  366. }
  367. break;
  368. case 0x0A81: // GET_INTERFACE (alternate setting)
  369. datalen = 1;
  370. data = reply_buffer;
  371. if (setup.wIndex == AUDIO_INTERFACE+1) {
  372. reply_buffer[0] = 0;
  373. //reply_buffer[0] = audio_tx_alternate_setting;
  374. } else if (setup.wIndex == AUDIO_INTERFACE+2) {
  375. reply_buffer[0] = 0;
  376. //reply_buffer[0] = audio_rx_alternate_setting;
  377. } else {
  378. endpoint0_stall();
  379. return;
  380. }
  381. break;
  382. case 0x0122: // SET_CUR (wValue=0, wIndex=interface, wLength=len)
  383. return;
  384. case 0x81A2: // GET_CUR (wValue=0, wIndex=interface, wLength=len)
  385. if (setup.wLength >= 3) {
  386. reply_buffer[0] = 44100 & 255;
  387. reply_buffer[1] = 44100 >> 8;
  388. reply_buffer[2] = 0;
  389. datalen = 3;
  390. data = reply_buffer;
  391. } else {
  392. endpoint0_stall();
  393. return;
  394. }
  395. break;
  396. #endif
  397. default:
  398. endpoint0_stall();
  399. return;
  400. }
  401. send:
  402. //serial_print("setup send ");
  403. //serial_phex32(data);
  404. //serial_print(",");
  405. //serial_phex16(datalen);
  406. //serial_print("\n");
  407. if (datalen > setup.wLength) datalen = setup.wLength;
  408. size = datalen;
  409. if (size > EP0_SIZE) size = EP0_SIZE;
  410. endpoint0_transmit(data, size);
  411. data += size;
  412. datalen -= size;
  413. if (datalen == 0 && size < EP0_SIZE) return;
  414. size = datalen;
  415. if (size > EP0_SIZE) size = EP0_SIZE;
  416. endpoint0_transmit(data, size);
  417. data += size;
  418. datalen -= size;
  419. if (datalen == 0 && size < EP0_SIZE) return;
  420. ep0_tx_ptr = data;
  421. ep0_tx_len = datalen;
  422. }
  423. //A bulk endpoint's toggle sequence is initialized to DATA0 when the endpoint
  424. //experiences any configuration event (configuration events are explained in
  425. //Sections 9.1.1.5 and 9.4.5).
  426. //Configuring a device or changing an alternate setting causes all of the status
  427. //and configuration values associated with endpoints in the affected interfaces
  428. //to be set to their default values. This includes setting the data toggle of
  429. //any endpoint using data toggles to the value DATA0.
  430. //For endpoints using data toggle, regardless of whether an endpoint has the
  431. //Halt feature set, a ClearFeature(ENDPOINT_HALT) request always results in the
  432. //data toggle being reinitialized to DATA0.
  433. // #define stat2bufferdescriptor(stat) (table + ((stat) >> 2))
  434. static void usb_control(uint32_t stat)
  435. {
  436. bdt_t *b;
  437. uint32_t pid, size;
  438. uint8_t *buf;
  439. const uint8_t *data;
  440. b = stat2bufferdescriptor(stat);
  441. pid = BDT_PID(b->desc);
  442. //count = b->desc >> 16;
  443. buf = b->addr;
  444. //serial_print("pid:");
  445. //serial_phex(pid);
  446. //serial_print(", count:");
  447. //serial_phex(count);
  448. //serial_print("\n");
  449. switch (pid) {
  450. case 0x0D: // Setup received from host
  451. //serial_print("PID=Setup\n");
  452. //if (count != 8) ; // panic?
  453. // grab the 8 byte setup info
  454. setup.word1 = *(uint32_t *)(buf);
  455. setup.word2 = *(uint32_t *)(buf + 4);
  456. // give the buffer back
  457. b->desc = BDT_DESC(EP0_SIZE, DATA1);
  458. //table[index(0, RX, EVEN)].desc = BDT_DESC(EP0_SIZE, 1);
  459. //table[index(0, RX, ODD)].desc = BDT_DESC(EP0_SIZE, 1);
  460. // clear any leftover pending IN transactions
  461. ep0_tx_ptr = NULL;
  462. if (ep0_tx_data_toggle) {
  463. }
  464. //if (table[index(0, TX, EVEN)].desc & 0x80) {
  465. //serial_print("leftover tx even\n");
  466. //}
  467. //if (table[index(0, TX, ODD)].desc & 0x80) {
  468. //serial_print("leftover tx odd\n");
  469. //}
  470. table[index(0, TX, EVEN)].desc = 0;
  471. table[index(0, TX, ODD)].desc = 0;
  472. // first IN after Setup is always DATA1
  473. ep0_tx_data_toggle = 1;
  474. #if 0
  475. serial_print("bmRequestType:");
  476. serial_phex(setup.bmRequestType);
  477. serial_print(", bRequest:");
  478. serial_phex(setup.bRequest);
  479. serial_print(", wValue:");
  480. serial_phex16(setup.wValue);
  481. serial_print(", wIndex:");
  482. serial_phex16(setup.wIndex);
  483. serial_print(", len:");
  484. serial_phex16(setup.wLength);
  485. serial_print("\n");
  486. #endif
  487. // actually "do" the setup request
  488. usb_setup();
  489. // unfreeze the USB, now that we're ready
  490. USB0_CTL = USB_CTL_USBENSOFEN; // clear TXSUSPENDTOKENBUSY bit
  491. break;
  492. case 0x01: // OUT transaction received from host
  493. case 0x02:
  494. //serial_print("PID=OUT\n");
  495. #ifdef CDC_STATUS_INTERFACE
  496. if (setup.wRequestAndType == 0x2021 /*CDC_SET_LINE_CODING*/) {
  497. int i;
  498. uint8_t *dst = (uint8_t *)usb_cdc_line_coding;
  499. //serial_print("set line coding ");
  500. for (i=0; i<7; i++) {
  501. //serial_phex(*buf);
  502. *dst++ = *buf++;
  503. }
  504. //serial_phex32(usb_cdc_line_coding[0]);
  505. //serial_print("\n");
  506. if (usb_cdc_line_coding[0] == 134) usb_reboot_timer = 15;
  507. endpoint0_transmit(NULL, 0);
  508. }
  509. #endif
  510. #ifdef KEYBOARD_INTERFACE
  511. if (setup.word1 == 0x02000921 && setup.word2 == ((1<<16)|KEYBOARD_INTERFACE)) {
  512. keyboard_leds = buf[0];
  513. endpoint0_transmit(NULL, 0);
  514. }
  515. #endif
  516. #ifdef SEREMU_INTERFACE
  517. if (setup.word1 == 0x03000921 && setup.word2 == ((4<<16)|SEREMU_INTERFACE)
  518. && buf[0] == 0xA9 && buf[1] == 0x45 && buf[2] == 0xC2 && buf[3] == 0x6B) {
  519. usb_reboot_timer = 5;
  520. endpoint0_transmit(NULL, 0);
  521. }
  522. #endif
  523. #ifdef AUDIO_INTERFACE
  524. if (setup.wRequestAndType == 0x0122 /* SET_CUR */) {
  525. // TODO: actually check data, do something with it?
  526. endpoint0_transmit(NULL, 0);
  527. }
  528. #endif
  529. // give the buffer back
  530. b->desc = BDT_DESC(EP0_SIZE, DATA1);
  531. break;
  532. case 0x09: // IN transaction completed to host
  533. //serial_print("PID=IN:");
  534. //serial_phex(stat);
  535. //serial_print("\n");
  536. // send remaining data, if any...
  537. data = ep0_tx_ptr;
  538. if (data) {
  539. size = ep0_tx_len;
  540. if (size > EP0_SIZE) size = EP0_SIZE;
  541. endpoint0_transmit(data, size);
  542. data += size;
  543. ep0_tx_len -= size;
  544. ep0_tx_ptr = (ep0_tx_len > 0 || size == EP0_SIZE) ? data : NULL;
  545. }
  546. if (setup.bRequest == 5 && setup.bmRequestType == 0) {
  547. setup.bRequest = 0;
  548. //serial_print("set address: ");
  549. //serial_phex16(setup.wValue);
  550. //serial_print("\n");
  551. USB0_ADDR = setup.wValue;
  552. }
  553. break;
  554. //default:
  555. //serial_print("PID=unknown:");
  556. //serial_phex(pid);
  557. //serial_print("\n");
  558. }
  559. USB0_CTL = USB_CTL_USBENSOFEN; // clear TXSUSPENDTOKENBUSY bit
  560. }
  561. usb_packet_t *usb_rx(uint32_t endpoint)
  562. {
  563. usb_packet_t *ret;
  564. endpoint--;
  565. if (endpoint >= NUM_ENDPOINTS) return NULL;
  566. __disable_irq();
  567. ret = rx_first[endpoint];
  568. if (ret) {
  569. rx_first[endpoint] = ret->next;
  570. usb_rx_byte_count_data[endpoint] -= ret->len;
  571. }
  572. __enable_irq();
  573. //serial_print("rx, epidx=");
  574. //serial_phex(endpoint);
  575. //serial_print(", packet=");
  576. //serial_phex32(ret);
  577. //serial_print("\n");
  578. return ret;
  579. }
  580. static uint32_t usb_queue_byte_count(const usb_packet_t *p)
  581. {
  582. uint32_t count=0;
  583. __disable_irq();
  584. for ( ; p; p = p->next) {
  585. count += p->len;
  586. }
  587. __enable_irq();
  588. return count;
  589. }
  590. // TODO: make this an inline function...
  591. /*
  592. uint32_t usb_rx_byte_count(uint32_t endpoint)
  593. {
  594. endpoint--;
  595. if (endpoint >= NUM_ENDPOINTS) return 0;
  596. return usb_rx_byte_count_data[endpoint];
  597. //return usb_queue_byte_count(rx_first[endpoint]);
  598. }
  599. */
  600. uint32_t usb_tx_byte_count(uint32_t endpoint)
  601. {
  602. endpoint--;
  603. if (endpoint >= NUM_ENDPOINTS) return 0;
  604. return usb_queue_byte_count(tx_first[endpoint]);
  605. }
  606. uint32_t usb_tx_packet_count(uint32_t endpoint)
  607. {
  608. const usb_packet_t *p;
  609. uint32_t count=0;
  610. endpoint--;
  611. if (endpoint >= NUM_ENDPOINTS) return 0;
  612. __disable_irq();
  613. for (p = tx_first[endpoint]; p; p = p->next) count++;
  614. __enable_irq();
  615. return count;
  616. }
  617. // Called from usb_free, but only when usb_rx_memory_needed > 0, indicating
  618. // receive endpoints are starving for memory. The intention is to give
  619. // endpoints needing receive memory priority over the user's code, which is
  620. // likely calling usb_malloc to obtain memory for transmitting. When the
  621. // user is creating data very quickly, their consumption could starve reception
  622. // without this prioritization. The packet buffer (input) is assigned to the
  623. // first endpoint needing memory.
  624. //
  625. void usb_rx_memory(usb_packet_t *packet)
  626. {
  627. unsigned int i;
  628. const uint8_t *cfg;
  629. cfg = usb_endpoint_config_table;
  630. //serial_print("rx_mem:");
  631. __disable_irq();
  632. for (i=1; i <= NUM_ENDPOINTS; i++) {
  633. #ifdef AUDIO_INTERFACE
  634. if (i == AUDIO_RX_ENDPOINT) continue;
  635. #endif
  636. if (*cfg++ & USB_ENDPT_EPRXEN) {
  637. if (table[index(i, RX, EVEN)].desc == 0) {
  638. table[index(i, RX, EVEN)].addr = packet->buf;
  639. table[index(i, RX, EVEN)].desc = BDT_DESC(64, 0);
  640. usb_rx_memory_needed--;
  641. __enable_irq();
  642. //serial_phex(i);
  643. //serial_print(",even\n");
  644. return;
  645. }
  646. if (table[index(i, RX, ODD)].desc == 0) {
  647. table[index(i, RX, ODD)].addr = packet->buf;
  648. table[index(i, RX, ODD)].desc = BDT_DESC(64, 1);
  649. usb_rx_memory_needed--;
  650. __enable_irq();
  651. //serial_phex(i);
  652. //serial_print(",odd\n");
  653. return;
  654. }
  655. }
  656. }
  657. __enable_irq();
  658. // we should never reach this point. If we get here, it means
  659. // usb_rx_memory_needed was set greater than zero, but no memory
  660. // was actually needed.
  661. usb_rx_memory_needed = 0;
  662. usb_free(packet);
  663. return;
  664. }
  665. //#define index(endpoint, tx, odd) (((endpoint) << 2) | ((tx) << 1) | (odd))
  666. //#define stat2bufferdescriptor(stat) (table + ((stat) >> 2))
  667. void usb_tx(uint32_t endpoint, usb_packet_t *packet)
  668. {
  669. bdt_t *b = &table[index(endpoint, TX, EVEN)];
  670. uint8_t next;
  671. endpoint--;
  672. if (endpoint >= NUM_ENDPOINTS) return;
  673. __disable_irq();
  674. //serial_print("txstate=");
  675. //serial_phex(tx_state[endpoint]);
  676. //serial_print("\n");
  677. switch (tx_state[endpoint]) {
  678. case TX_STATE_BOTH_FREE_EVEN_FIRST:
  679. next = TX_STATE_ODD_FREE;
  680. break;
  681. case TX_STATE_BOTH_FREE_ODD_FIRST:
  682. b++;
  683. next = TX_STATE_EVEN_FREE;
  684. break;
  685. case TX_STATE_EVEN_FREE:
  686. next = TX_STATE_NONE_FREE_ODD_FIRST;
  687. break;
  688. case TX_STATE_ODD_FREE:
  689. b++;
  690. next = TX_STATE_NONE_FREE_EVEN_FIRST;
  691. break;
  692. default:
  693. if (tx_first[endpoint] == NULL) {
  694. tx_first[endpoint] = packet;
  695. } else {
  696. tx_last[endpoint]->next = packet;
  697. }
  698. tx_last[endpoint] = packet;
  699. __enable_irq();
  700. return;
  701. }
  702. tx_state[endpoint] = next;
  703. b->addr = packet->buf;
  704. b->desc = BDT_DESC(packet->len, ((uint32_t)b & 8) ? DATA1 : DATA0);
  705. __enable_irq();
  706. }
  707. void usb_tx_isochronous(uint32_t endpoint, void *data, uint32_t len)
  708. {
  709. bdt_t *b = &table[index(endpoint, TX, EVEN)];
  710. uint8_t next, state;
  711. endpoint--;
  712. if (endpoint >= NUM_ENDPOINTS) return;
  713. __disable_irq();
  714. state = tx_state[endpoint];
  715. if (state == 0) {
  716. next = 1;
  717. } else {
  718. b++;
  719. next = 0;
  720. }
  721. tx_state[endpoint] = next;
  722. b->addr = data;
  723. b->desc = (len << 16) | BDT_OWN;
  724. __enable_irq();
  725. }
  726. void _reboot_Teensyduino_(void)
  727. {
  728. // TODO: initialize R0 with a code....
  729. __asm__ volatile("bkpt");
  730. }
  731. void usb_isr(void)
  732. {
  733. uint8_t status, stat, t;
  734. //serial_print("isr");
  735. //status = USB0_ISTAT;
  736. //serial_phex(status);
  737. //serial_print("\n");
  738. restart:
  739. status = USB0_ISTAT;
  740. if ((status & USB_ISTAT_SOFTOK /* 04 */ )) {
  741. if (usb_configuration) {
  742. t = usb_reboot_timer;
  743. if (t) {
  744. usb_reboot_timer = --t;
  745. if (!t) _reboot_Teensyduino_();
  746. }
  747. #ifdef CDC_DATA_INTERFACE
  748. t = usb_cdc_transmit_flush_timer;
  749. if (t) {
  750. usb_cdc_transmit_flush_timer = --t;
  751. if (t == 0) usb_serial_flush_callback();
  752. }
  753. #endif
  754. #ifdef SEREMU_INTERFACE
  755. t = usb_seremu_transmit_flush_timer;
  756. if (t) {
  757. usb_seremu_transmit_flush_timer = --t;
  758. if (t == 0) usb_seremu_flush_callback();
  759. }
  760. #endif
  761. #ifdef MIDI_INTERFACE
  762. usb_midi_flush_output();
  763. #endif
  764. #ifdef FLIGHTSIM_INTERFACE
  765. usb_flightsim_flush_callback();
  766. #endif
  767. }
  768. USB0_ISTAT = USB_ISTAT_SOFTOK;
  769. }
  770. if ((status & USB_ISTAT_TOKDNE /* 08 */ )) {
  771. uint8_t endpoint;
  772. stat = USB0_STAT;
  773. //serial_print("token: ep=");
  774. //serial_phex(stat >> 4);
  775. //serial_print(stat & 0x08 ? ",tx" : ",rx");
  776. //serial_print(stat & 0x04 ? ",odd\n" : ",even\n");
  777. endpoint = stat >> 4;
  778. if (endpoint == 0) {
  779. usb_control(stat);
  780. } else {
  781. bdt_t *b = stat2bufferdescriptor(stat);
  782. usb_packet_t *packet = (usb_packet_t *)((uint8_t *)(b->addr) - 8);
  783. #if 0
  784. serial_print("ep:");
  785. serial_phex(endpoint);
  786. serial_print(", pid:");
  787. serial_phex(BDT_PID(b->desc));
  788. serial_print(((uint32_t)b & 8) ? ", odd" : ", even");
  789. serial_print(", count:");
  790. serial_phex(b->desc >> 16);
  791. serial_print("\n");
  792. #endif
  793. endpoint--; // endpoint is index to zero-based arrays
  794. #ifdef AUDIO_INTERFACE
  795. if ((endpoint == AUDIO_TX_ENDPOINT-1) && (stat & 0x08)) {
  796. unsigned int len;
  797. len = usb_audio_transmit_callback();
  798. if (len > 0) {
  799. b = (bdt_t *)((uint32_t)b ^ 8);
  800. b->addr = usb_audio_transmit_buffer;
  801. b->desc = (len << 16) | BDT_OWN;
  802. tx_state[endpoint] ^= 1;
  803. }
  804. } else if ((endpoint == AUDIO_RX_ENDPOINT-1) && !(stat & 0x08)) {
  805. usb_audio_receive_callback(b->desc >> 16);
  806. b->addr = usb_audio_receive_buffer;
  807. b->desc = (AUDIO_RX_SIZE << 16) | BDT_OWN;
  808. } else if ((endpoint == AUDIO_SYNC_ENDPOINT-1) && (stat & 0x08)) {
  809. b = (bdt_t *)((uint32_t)b ^ 8);
  810. b->addr = &usb_audio_sync_feedback;
  811. b->desc = (3 << 16) | BDT_OWN;
  812. tx_state[endpoint] ^= 1;
  813. } else
  814. #endif
  815. if (stat & 0x08) { // transmit
  816. usb_free(packet);
  817. packet = tx_first[endpoint];
  818. if (packet) {
  819. //serial_print("tx packet\n");
  820. tx_first[endpoint] = packet->next;
  821. b->addr = packet->buf;
  822. switch (tx_state[endpoint]) {
  823. case TX_STATE_BOTH_FREE_EVEN_FIRST:
  824. tx_state[endpoint] = TX_STATE_ODD_FREE;
  825. break;
  826. case TX_STATE_BOTH_FREE_ODD_FIRST:
  827. tx_state[endpoint] = TX_STATE_EVEN_FREE;
  828. break;
  829. case TX_STATE_EVEN_FREE:
  830. tx_state[endpoint] = TX_STATE_NONE_FREE_ODD_FIRST;
  831. break;
  832. case TX_STATE_ODD_FREE:
  833. tx_state[endpoint] = TX_STATE_NONE_FREE_EVEN_FIRST;
  834. break;
  835. default:
  836. break;
  837. }
  838. b->desc = BDT_DESC(packet->len,
  839. ((uint32_t)b & 8) ? DATA1 : DATA0);
  840. } else {
  841. //serial_print("tx no packet\n");
  842. switch (tx_state[endpoint]) {
  843. case TX_STATE_BOTH_FREE_EVEN_FIRST:
  844. case TX_STATE_BOTH_FREE_ODD_FIRST:
  845. break;
  846. case TX_STATE_EVEN_FREE:
  847. tx_state[endpoint] = TX_STATE_BOTH_FREE_EVEN_FIRST;
  848. break;
  849. case TX_STATE_ODD_FREE:
  850. tx_state[endpoint] = TX_STATE_BOTH_FREE_ODD_FIRST;
  851. break;
  852. default:
  853. tx_state[endpoint] = ((uint32_t)b & 8) ?
  854. TX_STATE_ODD_FREE : TX_STATE_EVEN_FREE;
  855. break;
  856. }
  857. }
  858. } else { // receive
  859. packet->len = b->desc >> 16;
  860. if (packet->len > 0) {
  861. packet->index = 0;
  862. packet->next = NULL;
  863. if (rx_first[endpoint] == NULL) {
  864. //serial_print("rx 1st, epidx=");
  865. //serial_phex(endpoint);
  866. //serial_print(", packet=");
  867. //serial_phex32((uint32_t)packet);
  868. //serial_print("\n");
  869. rx_first[endpoint] = packet;
  870. } else {
  871. //serial_print("rx Nth, epidx=");
  872. //serial_phex(endpoint);
  873. //serial_print(", packet=");
  874. //serial_phex32((uint32_t)packet);
  875. //serial_print("\n");
  876. rx_last[endpoint]->next = packet;
  877. }
  878. rx_last[endpoint] = packet;
  879. usb_rx_byte_count_data[endpoint] += packet->len;
  880. // TODO: implement a per-endpoint maximum # of allocated
  881. // packets, so a flood of incoming data on 1 endpoint
  882. // doesn't starve the others if the user isn't reading
  883. // it regularly
  884. packet = usb_malloc();
  885. if (packet) {
  886. b->addr = packet->buf;
  887. b->desc = BDT_DESC(64,
  888. ((uint32_t)b & 8) ? DATA1 : DATA0);
  889. } else {
  890. //serial_print("starving ");
  891. //serial_phex(endpoint + 1);
  892. b->desc = 0;
  893. usb_rx_memory_needed++;
  894. }
  895. } else {
  896. b->desc = BDT_DESC(64, ((uint32_t)b & 8) ? DATA1 : DATA0);
  897. }
  898. }
  899. }
  900. USB0_ISTAT = USB_ISTAT_TOKDNE;
  901. goto restart;
  902. }
  903. if (status & USB_ISTAT_USBRST /* 01 */ ) {
  904. //serial_print("reset\n");
  905. // initialize BDT toggle bits
  906. USB0_CTL = USB_CTL_ODDRST;
  907. ep0_tx_bdt_bank = 0;
  908. // set up buffers to receive Setup and OUT packets
  909. table[index(0, RX, EVEN)].desc = BDT_DESC(EP0_SIZE, 0);
  910. table[index(0, RX, EVEN)].addr = ep0_rx0_buf;
  911. table[index(0, RX, ODD)].desc = BDT_DESC(EP0_SIZE, 0);
  912. table[index(0, RX, ODD)].addr = ep0_rx1_buf;
  913. table[index(0, TX, EVEN)].desc = 0;
  914. table[index(0, TX, ODD)].desc = 0;
  915. // activate endpoint 0
  916. USB0_ENDPT0 = USB_ENDPT_EPRXEN | USB_ENDPT_EPTXEN | USB_ENDPT_EPHSHK;
  917. // clear all ending interrupts
  918. USB0_ERRSTAT = 0xFF;
  919. USB0_ISTAT = 0xFF;
  920. // set the address to zero during enumeration
  921. USB0_ADDR = 0;
  922. // enable other interrupts
  923. USB0_ERREN = 0xFF;
  924. USB0_INTEN = USB_INTEN_TOKDNEEN |
  925. USB_INTEN_SOFTOKEN |
  926. USB_INTEN_STALLEN |
  927. USB_INTEN_ERROREN |
  928. USB_INTEN_USBRSTEN |
  929. USB_INTEN_SLEEPEN;
  930. // is this necessary?
  931. USB0_CTL = USB_CTL_USBENSOFEN;
  932. return;
  933. }
  934. if ((status & USB_ISTAT_STALL /* 80 */ )) {
  935. //serial_print("stall:\n");
  936. USB0_ENDPT0 = USB_ENDPT_EPRXEN | USB_ENDPT_EPTXEN | USB_ENDPT_EPHSHK;
  937. USB0_ISTAT = USB_ISTAT_STALL;
  938. }
  939. if ((status & USB_ISTAT_ERROR /* 02 */ )) {
  940. uint8_t err = USB0_ERRSTAT;
  941. USB0_ERRSTAT = err;
  942. //serial_print("err:");
  943. //serial_phex(err);
  944. //serial_print("\n");
  945. USB0_ISTAT = USB_ISTAT_ERROR;
  946. }
  947. if ((status & USB_ISTAT_SLEEP /* 10 */ )) {
  948. //serial_print("sleep\n");
  949. USB0_ISTAT = USB_ISTAT_SLEEP;
  950. }
  951. }
  952. void usb_init(void)
  953. {
  954. int i;
  955. //serial_begin(BAUD2DIV(115200));
  956. //serial_print("usb_init\n");
  957. usb_init_serialnumber();
  958. for (i=0; i <= NUM_ENDPOINTS*4; i++) {
  959. table[i].desc = 0;
  960. table[i].addr = 0;
  961. }
  962. // this basically follows the flowchart in the Kinetis
  963. // Quick Reference User Guide, Rev. 1, 03/2012, page 141
  964. // assume 48 MHz clock already running
  965. // SIM - enable clock
  966. SIM_SCGC4 |= SIM_SCGC4_USBOTG;
  967. #ifdef HAS_KINETIS_MPU
  968. MPU_RGDAAC0 |= 0x03000000;
  969. #endif
  970. // reset USB module
  971. //USB0_USBTRC0 = USB_USBTRC_USBRESET;
  972. //while ((USB0_USBTRC0 & USB_USBTRC_USBRESET) != 0) ; // wait for reset to end
  973. // set desc table base addr
  974. USB0_BDTPAGE1 = ((uint32_t)table) >> 8;
  975. USB0_BDTPAGE2 = ((uint32_t)table) >> 16;
  976. USB0_BDTPAGE3 = ((uint32_t)table) >> 24;
  977. // clear all ISR flags
  978. USB0_ISTAT = 0xFF;
  979. USB0_ERRSTAT = 0xFF;
  980. USB0_OTGISTAT = 0xFF;
  981. //USB0_USBTRC0 |= 0x40; // undocumented bit
  982. // enable USB
  983. USB0_CTL = USB_CTL_USBENSOFEN;
  984. USB0_USBCTRL = 0;
  985. // enable reset interrupt
  986. USB0_INTEN = USB_INTEN_USBRSTEN;
  987. // enable interrupt in NVIC...
  988. NVIC_SET_PRIORITY(IRQ_USBOTG, 112);
  989. NVIC_ENABLE_IRQ(IRQ_USBOTG);
  990. // enable d+ pullup
  991. USB0_CONTROL = USB_CONTROL_DPPULLUPNONOTG;
  992. }
  993. #else // F_CPU < 20 MHz && defined(NUM_ENDPOINTS)
  994. void usb_init(void)
  995. {
  996. }
  997. #endif // F_CPU >= 20 MHz && defined(NUM_ENDPOINTS)