Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 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. #include "kinetis.h"
  31. #include "core_pins.h"
  32. #include "HardwareSerial.h"
  33. ////////////////////////////////////////////////////////////////
  34. // Tunable parameters (relatively safe to edit these numbers)
  35. ////////////////////////////////////////////////////////////////
  36. #define TX_BUFFER_SIZE 40 // number of outgoing bytes to buffer
  37. #define RX_BUFFER_SIZE 64 // number of incoming bytes to buffer
  38. #define RTS_HIGH_WATERMARK 40 // RTS requests sender to pause
  39. #define RTS_LOW_WATERMARK 26 // RTS allows sender to resume
  40. #define IRQ_PRIORITY 64 // 0 = highest priority, 255 = lowest
  41. ////////////////////////////////////////////////////////////////
  42. // changes not recommended below this point....
  43. ////////////////////////////////////////////////////////////////
  44. #ifdef SERIAL_9BIT_SUPPORT
  45. static uint8_t use9Bits = 0;
  46. #define BUFTYPE uint16_t
  47. #else
  48. #define BUFTYPE uint8_t
  49. #define use9Bits 0
  50. #endif
  51. static volatile BUFTYPE tx_buffer[TX_BUFFER_SIZE];
  52. static volatile BUFTYPE rx_buffer[RX_BUFFER_SIZE];
  53. static volatile uint8_t transmitting = 0;
  54. #if defined(KINETISK)
  55. static volatile uint8_t *transmit_pin=NULL;
  56. #define transmit_assert() *transmit_pin = 1
  57. #define transmit_deassert() *transmit_pin = 0
  58. static volatile uint8_t *rts_pin=NULL;
  59. #define rts_assert() *rts_pin = 0
  60. #define rts_deassert() *rts_pin = 1
  61. #elif defined(KINETISL)
  62. static volatile uint8_t *transmit_pin=NULL;
  63. static uint8_t transmit_mask=0;
  64. #define transmit_assert() *(transmit_pin+4) = transmit_mask;
  65. #define transmit_deassert() *(transmit_pin+8) = transmit_mask;
  66. static volatile uint8_t *rts_pin=NULL;
  67. static uint8_t rts_mask=0;
  68. #define rts_assert() *(rts_pin+8) = rts_mask;
  69. #define rts_deassert() *(rts_pin+4) = rts_mask;
  70. #endif
  71. #if TX_BUFFER_SIZE > 255
  72. static volatile uint16_t tx_buffer_head = 0;
  73. static volatile uint16_t tx_buffer_tail = 0;
  74. #else
  75. static volatile uint8_t tx_buffer_head = 0;
  76. static volatile uint8_t tx_buffer_tail = 0;
  77. #endif
  78. #if RX_BUFFER_SIZE > 255
  79. static volatile uint16_t rx_buffer_head = 0;
  80. static volatile uint16_t rx_buffer_tail = 0;
  81. #else
  82. static volatile uint8_t rx_buffer_head = 0;
  83. static volatile uint8_t rx_buffer_tail = 0;
  84. #endif
  85. #if defined(KINETISL)
  86. static uint8_t rx_pin_num = 7;
  87. #endif
  88. static uint8_t tx_pin_num = 8;
  89. // UART0 and UART1 are clocked by F_CPU, UART2 is clocked by F_BUS
  90. // UART0 has 8 byte fifo, UART1 and UART2 have 1 byte buffer
  91. #define C2_ENABLE UART_C2_TE | UART_C2_RE | UART_C2_RIE
  92. #define C2_TX_ACTIVE C2_ENABLE | UART_C2_TIE
  93. #define C2_TX_COMPLETING C2_ENABLE | UART_C2_TCIE
  94. #define C2_TX_INACTIVE C2_ENABLE
  95. void serial3_begin(uint32_t divisor)
  96. {
  97. SIM_SCGC4 |= SIM_SCGC4_UART2; // turn on clock, TODO: use bitband
  98. rx_buffer_head = 0;
  99. rx_buffer_tail = 0;
  100. tx_buffer_head = 0;
  101. tx_buffer_tail = 0;
  102. transmitting = 0;
  103. #if defined(KINETISK)
  104. CORE_PIN7_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3);
  105. CORE_PIN8_CONFIG = PORT_PCR_DSE | PORT_PCR_SRE | PORT_PCR_MUX(3);
  106. #elif defined(KINETISL)
  107. switch (rx_pin_num) {
  108. case 7: CORE_PIN7_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  109. case 6: CORE_PIN6_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  110. }
  111. switch (tx_pin_num) {
  112. case 8: CORE_PIN8_CONFIG = PORT_PCR_DSE | PORT_PCR_SRE | PORT_PCR_MUX(3); break;
  113. case 20: CORE_PIN20_CONFIG = PORT_PCR_DSE | PORT_PCR_SRE | PORT_PCR_MUX(3); break;
  114. }
  115. #endif
  116. #if defined(HAS_KINETISK_UART2)
  117. UART2_BDH = (divisor >> 13) & 0x1F;
  118. UART2_BDL = (divisor >> 5) & 0xFF;
  119. UART2_C4 = divisor & 0x1F;
  120. UART2_C1 = 0;
  121. UART2_PFIFO = 0;
  122. #elif defined(HAS_KINETISL_UART2)
  123. UART2_BDH = (divisor >> 8) & 0x1F;
  124. UART2_BDL = divisor & 0xFF;
  125. UART2_C1 = 0;
  126. #endif
  127. UART2_C2 = C2_TX_INACTIVE;
  128. NVIC_SET_PRIORITY(IRQ_UART2_STATUS, IRQ_PRIORITY);
  129. NVIC_ENABLE_IRQ(IRQ_UART2_STATUS);
  130. }
  131. void serial3_format(uint32_t format)
  132. {
  133. uint8_t c;
  134. c = UART2_C1;
  135. c = (c & ~0x13) | (format & 0x03); // configure parity
  136. if (format & 0x04) c |= 0x10; // 9 bits (might include parity)
  137. UART2_C1 = c;
  138. if ((format & 0x0F) == 0x04) UART2_C3 |= 0x40; // 8N2 is 9 bit with 9th bit always 1
  139. c = UART2_S2 & ~0x10;
  140. if (format & 0x10) c |= 0x10; // rx invert
  141. UART2_S2 = c;
  142. c = UART2_C3 & ~0x10;
  143. if (format & 0x20) c |= 0x10; // tx invert
  144. UART2_C3 = c;
  145. #ifdef SERIAL_9BIT_SUPPORT
  146. c = UART2_C4 & 0x1F;
  147. if (format & 0x08) c |= 0x20; // 9 bit mode with parity (requires 10 bits)
  148. UART2_C4 = c;
  149. use9Bits = format & 0x80;
  150. #endif
  151. #if defined(__MK64FX512__) || defined(__MK66FX1M0__) || defined(KINETISL)
  152. // For T3.5/T3.6/TLC See about turning on 2 stop bit mode
  153. if ( format & 0x100) {
  154. uint8_t bdl = UART2_BDL;
  155. UART2_BDH |= UART_BDH_SBNS; // Turn on 2 stop bits - was turned off by set baud
  156. UART2_BDL = bdl; // Says BDH not acted on until BDL is written
  157. }
  158. #endif
  159. }
  160. void serial3_end(void)
  161. {
  162. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return;
  163. while (transmitting) yield(); // wait for buffered data to send
  164. NVIC_DISABLE_IRQ(IRQ_UART2_STATUS);
  165. UART2_C2 = 0;
  166. CORE_PIN7_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_MUX(1);
  167. CORE_PIN8_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_MUX(1);
  168. rx_buffer_head = 0;
  169. rx_buffer_tail = 0;
  170. if (rts_pin) rts_deassert();
  171. }
  172. void serial3_set_transmit_pin(uint8_t pin)
  173. {
  174. while (transmitting) ;
  175. pinMode(pin, OUTPUT);
  176. digitalWrite(pin, LOW);
  177. transmit_pin = portOutputRegister(pin);
  178. #if defined(KINETISL)
  179. transmit_mask = digitalPinToBitMask(pin);
  180. #endif
  181. }
  182. void serial3_set_tx(uint8_t pin, uint8_t opendrain)
  183. {
  184. uint32_t cfg;
  185. if (opendrain) pin |= 128;
  186. if (pin == tx_pin_num) return;
  187. if ((SIM_SCGC4 & SIM_SCGC4_UART2)) {
  188. switch (tx_pin_num & 127) {
  189. case 8: CORE_PIN8_CONFIG = 0; break; // PTD3
  190. #if defined(KINETISL)
  191. case 20: CORE_PIN20_CONFIG = 0; break; // PTD5
  192. #endif
  193. }
  194. if (opendrain) {
  195. cfg = PORT_PCR_DSE | PORT_PCR_ODE;
  196. } else {
  197. cfg = PORT_PCR_DSE | PORT_PCR_SRE;
  198. }
  199. switch (pin & 127) {
  200. case 8: CORE_PIN8_CONFIG = cfg | PORT_PCR_MUX(3); break;
  201. #if defined(KINETISL)
  202. case 20: CORE_PIN20_CONFIG = cfg | PORT_PCR_MUX(3); break;
  203. #endif
  204. }
  205. }
  206. tx_pin_num = pin;
  207. }
  208. void serial3_set_rx(uint8_t pin)
  209. {
  210. #if defined(KINETISL)
  211. if (pin == rx_pin_num) return;
  212. if ((SIM_SCGC4 & SIM_SCGC4_UART2)) {
  213. switch (rx_pin_num) {
  214. case 7: CORE_PIN7_CONFIG = 0; break; // PTD2
  215. case 6: CORE_PIN6_CONFIG = 0; break; // PTD4
  216. }
  217. switch (pin) {
  218. case 7: CORE_PIN7_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  219. case 6: CORE_PIN6_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  220. }
  221. }
  222. rx_pin_num = pin;
  223. #endif
  224. }
  225. int serial3_set_rts(uint8_t pin)
  226. {
  227. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return 0;
  228. if (pin < CORE_NUM_DIGITAL) {
  229. rts_pin = portOutputRegister(pin);
  230. #if defined(KINETISL)
  231. rts_mask = digitalPinToBitMask(pin);
  232. #endif
  233. pinMode(pin, OUTPUT);
  234. rts_assert();
  235. } else {
  236. rts_pin = NULL;
  237. return 0;
  238. }
  239. /*
  240. if (pin == 2) {
  241. CORE_PIN2_CONFIG = PORT_PCR_MUX(3);
  242. } else {
  243. UART2_MODEM &= ~UART_MODEM_RXRTSE;
  244. return 0;
  245. }
  246. UART2_MODEM |= UART_MODEM_RXRTSE;
  247. */
  248. return 1;
  249. }
  250. int serial3_set_cts(uint8_t pin)
  251. {
  252. #if defined(KINETISK)
  253. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return 0;
  254. if (pin == 14) {
  255. CORE_PIN14_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_PE; // weak pulldown
  256. } else {
  257. UART2_MODEM &= ~UART_MODEM_TXCTSE;
  258. return 0;
  259. }
  260. UART2_MODEM |= UART_MODEM_TXCTSE;
  261. return 1;
  262. #else
  263. return 0;
  264. #endif
  265. }
  266. void serial3_putchar(uint32_t c)
  267. {
  268. uint32_t head, n;
  269. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return;
  270. if (transmit_pin) transmit_assert();
  271. head = tx_buffer_head;
  272. if (++head >= TX_BUFFER_SIZE) head = 0;
  273. while (tx_buffer_tail == head) {
  274. int priority = nvic_execution_priority();
  275. if (priority <= IRQ_PRIORITY) {
  276. if ((UART2_S1 & UART_S1_TDRE)) {
  277. uint32_t tail = tx_buffer_tail;
  278. if (++tail >= TX_BUFFER_SIZE) tail = 0;
  279. n = tx_buffer[tail];
  280. if (use9Bits) UART2_C3 = (UART2_C3 & ~0x40) | ((n & 0x100) >> 2);
  281. UART2_D = n;
  282. tx_buffer_tail = tail;
  283. }
  284. } else if (priority >= 256) {
  285. yield(); // wait
  286. }
  287. }
  288. tx_buffer[head] = c;
  289. transmitting = 1;
  290. tx_buffer_head = head;
  291. UART2_C2 = C2_TX_ACTIVE;
  292. }
  293. void serial3_write(const void *buf, unsigned int count)
  294. {
  295. const uint8_t *p = (const uint8_t *)buf;
  296. while (count-- > 0) serial3_putchar(*p++);
  297. }
  298. void serial3_flush(void)
  299. {
  300. while (transmitting) yield(); // wait
  301. }
  302. int serial3_write_buffer_free(void)
  303. {
  304. uint32_t head, tail;
  305. head = tx_buffer_head;
  306. tail = tx_buffer_tail;
  307. if (head >= tail) return TX_BUFFER_SIZE - 1 - head + tail;
  308. return tail - head - 1;
  309. }
  310. int serial3_available(void)
  311. {
  312. uint32_t head, tail;
  313. head = rx_buffer_head;
  314. tail = rx_buffer_tail;
  315. if (head >= tail) return head - tail;
  316. return RX_BUFFER_SIZE + head - tail;
  317. }
  318. int serial3_getchar(void)
  319. {
  320. uint32_t head, tail;
  321. int c;
  322. head = rx_buffer_head;
  323. tail = rx_buffer_tail;
  324. if (head == tail) return -1;
  325. if (++tail >= RX_BUFFER_SIZE) tail = 0;
  326. c = rx_buffer[tail];
  327. rx_buffer_tail = tail;
  328. if (rts_pin) {
  329. int avail;
  330. if (head >= tail) avail = head - tail;
  331. else avail = RX_BUFFER_SIZE + head - tail;
  332. if (avail <= RTS_LOW_WATERMARK) rts_assert();
  333. }
  334. return c;
  335. }
  336. int serial3_peek(void)
  337. {
  338. uint32_t head, tail;
  339. head = rx_buffer_head;
  340. tail = rx_buffer_tail;
  341. if (head == tail) return -1;
  342. if (++tail >= RX_BUFFER_SIZE) tail = 0;
  343. return rx_buffer[tail];
  344. }
  345. void serial3_clear(void)
  346. {
  347. rx_buffer_head = rx_buffer_tail;
  348. if (rts_pin) rts_assert();
  349. }
  350. // status interrupt combines
  351. // Transmit data below watermark UART_S1_TDRE
  352. // Transmit complete UART_S1_TC
  353. // Idle line UART_S1_IDLE
  354. // Receive data above watermark UART_S1_RDRF
  355. // LIN break detect UART_S2_LBKDIF
  356. // RxD pin active edge UART_S2_RXEDGIF
  357. void uart2_status_isr(void)
  358. {
  359. uint32_t head, tail, n;
  360. uint8_t c;
  361. if (UART2_S1 & UART_S1_RDRF) {
  362. if (use9Bits && (UART2_C3 & 0x80)) {
  363. n = UART2_D | 0x100;
  364. } else {
  365. n = UART2_D;
  366. }
  367. head = rx_buffer_head + 1;
  368. if (head >= RX_BUFFER_SIZE) head = 0;
  369. if (head != rx_buffer_tail) {
  370. rx_buffer[head] = n;
  371. rx_buffer_head = head;
  372. }
  373. if (rts_pin) {
  374. int avail;
  375. tail = tx_buffer_tail;
  376. if (head >= tail) avail = head - tail;
  377. else avail = RX_BUFFER_SIZE + head - tail;
  378. if (avail >= RTS_HIGH_WATERMARK) rts_deassert();
  379. }
  380. }
  381. c = UART2_C2;
  382. if ((c & UART_C2_TIE) && (UART2_S1 & UART_S1_TDRE)) {
  383. head = tx_buffer_head;
  384. tail = tx_buffer_tail;
  385. if (head == tail) {
  386. UART2_C2 = C2_TX_COMPLETING;
  387. } else {
  388. if (++tail >= TX_BUFFER_SIZE) tail = 0;
  389. n = tx_buffer[tail];
  390. if (use9Bits) UART2_C3 = (UART2_C3 & ~0x40) | ((n & 0x100) >> 2);
  391. UART2_D = n;
  392. tx_buffer_tail = tail;
  393. }
  394. }
  395. if ((c & UART_C2_TCIE) && (UART2_S1 & UART_S1_TC)) {
  396. transmitting = 0;
  397. if (transmit_pin) transmit_deassert();
  398. UART2_C2 = C2_TX_INACTIVE;
  399. }
  400. }