Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

398 lines
11KB

  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2017 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. #ifdef HAS_KINETISK_UART3
  34. ////////////////////////////////////////////////////////////////
  35. // Tunable parameters (relatively safe to edit these numbers)
  36. ////////////////////////////////////////////////////////////////
  37. #ifndef SERIAL4_TX_BUFFER_SIZE
  38. #define SERIAL4_TX_BUFFER_SIZE 40 // number of outgoing bytes to buffer
  39. #endif
  40. #ifndef SERIAL4_RX_BUFFER_SIZE
  41. #define SERIAL4_RX_BUFFER_SIZE 64 // number of incoming bytes to buffer
  42. #endif
  43. #define RTS_HIGH_WATERMARK (SERIAL4_RX_BUFFER_SIZE-24) // RTS requests sender to pause
  44. #define RTS_LOW_WATERMARK (SERIAL4_RX_BUFFER_SIZE-38) // RTS allows sender to resume
  45. #define IRQ_PRIORITY 64 // 0 = highest priority, 255 = lowest
  46. ////////////////////////////////////////////////////////////////
  47. // changes not recommended below this point....
  48. ////////////////////////////////////////////////////////////////
  49. #ifdef SERIAL_9BIT_SUPPORT
  50. static uint8_t use9Bits = 0;
  51. #define BUFTYPE uint16_t
  52. #else
  53. #define BUFTYPE uint8_t
  54. #define use9Bits 0
  55. #endif
  56. static volatile BUFTYPE tx_buffer[SERIAL4_TX_BUFFER_SIZE];
  57. static volatile BUFTYPE rx_buffer[SERIAL4_RX_BUFFER_SIZE];
  58. static volatile uint8_t transmitting = 0;
  59. static volatile uint8_t *transmit_pin=NULL;
  60. #define transmit_assert() *transmit_pin = 1
  61. #define transmit_deassert() *transmit_pin = 0
  62. static volatile uint8_t *rts_pin=NULL;
  63. #define rts_assert() *rts_pin = 0
  64. #define rts_deassert() *rts_pin = 1
  65. #if SERIAL4_TX_BUFFER_SIZE > 255
  66. static volatile uint16_t tx_buffer_head = 0;
  67. static volatile uint16_t tx_buffer_tail = 0;
  68. #else
  69. static volatile uint8_t tx_buffer_head = 0;
  70. static volatile uint8_t tx_buffer_tail = 0;
  71. #endif
  72. #if SERIAL4_RX_BUFFER_SIZE > 255
  73. static volatile uint16_t rx_buffer_head = 0;
  74. static volatile uint16_t rx_buffer_tail = 0;
  75. #else
  76. static volatile uint8_t rx_buffer_head = 0;
  77. static volatile uint8_t rx_buffer_tail = 0;
  78. #endif
  79. static uint8_t rx_pin_num = 31;
  80. static uint8_t tx_pin_num = 32;
  81. // UART0 and UART1 are clocked by F_CPU, UART2 is clocked by F_BUS
  82. // UART0 has 8 byte fifo, UART1 and UART2 have 1 byte buffer
  83. #define C2_ENABLE UART_C2_TE | UART_C2_RE | UART_C2_RIE
  84. #define C2_TX_ACTIVE C2_ENABLE | UART_C2_TIE
  85. #define C2_TX_COMPLETING C2_ENABLE | UART_C2_TCIE
  86. #define C2_TX_INACTIVE C2_ENABLE
  87. void serial4_begin(uint32_t divisor)
  88. {
  89. SIM_SCGC4 |= SIM_SCGC4_UART3; // turn on clock, TODO: use bitband
  90. rx_buffer_head = 0;
  91. rx_buffer_tail = 0;
  92. tx_buffer_head = 0;
  93. tx_buffer_tail = 0;
  94. transmitting = 0;
  95. switch (rx_pin_num) {
  96. case 31: CORE_PIN31_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  97. case 63: CORE_PIN63_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  98. }
  99. switch (tx_pin_num) {
  100. case 32: CORE_PIN32_CONFIG = PORT_PCR_DSE | PORT_PCR_SRE | PORT_PCR_MUX(3); break;
  101. case 62: CORE_PIN62_CONFIG = PORT_PCR_DSE | PORT_PCR_SRE | PORT_PCR_MUX(3); break;
  102. }
  103. if (divisor < 32) divisor = 32;
  104. UART3_BDH = (divisor >> 13) & 0x1F;
  105. UART3_BDL = (divisor >> 5) & 0xFF;
  106. UART3_C4 = divisor & 0x1F;
  107. UART3_C1 = 0;
  108. UART3_PFIFO = 0;
  109. UART3_C2 = C2_TX_INACTIVE;
  110. NVIC_SET_PRIORITY(IRQ_UART3_STATUS, IRQ_PRIORITY);
  111. NVIC_ENABLE_IRQ(IRQ_UART3_STATUS);
  112. }
  113. void serial4_format(uint32_t format)
  114. {
  115. uint8_t c;
  116. c = UART3_C1;
  117. c = (c & ~0x13) | (format & 0x03); // configure parity
  118. if (format & 0x04) c |= 0x10; // 9 bits (might include parity)
  119. UART3_C1 = c;
  120. if ((format & 0x0F) == 0x04) UART3_C3 |= 0x40; // 8N2 is 9 bit with 9th bit always 1
  121. c = UART3_S2 & ~0x10;
  122. if (format & 0x10) c |= 0x10; // rx invert
  123. UART3_S2 = c;
  124. c = UART3_C3 & ~0x10;
  125. if (format & 0x20) c |= 0x10; // tx invert
  126. UART3_C3 = c;
  127. #ifdef SERIAL_9BIT_SUPPORT
  128. c = UART3_C4 & 0x1F;
  129. if (format & 0x08) c |= 0x20; // 9 bit mode with parity (requires 10 bits)
  130. UART3_C4 = c;
  131. use9Bits = format & 0x80;
  132. #endif
  133. #if defined(__MK64FX512__) || defined(__MK66FX1M0__) || defined(KINETISL)
  134. // For T3.5/T3.6/TLC See about turning on 2 stop bit mode
  135. if ( format & 0x100) {
  136. uint8_t bdl = UART3_BDL;
  137. UART3_BDH |= UART_BDH_SBNS; // Turn on 2 stop bits - was turned off by set baud
  138. UART3_BDL = bdl; // Says BDH not acted on until BDL is written
  139. }
  140. #endif
  141. }
  142. void serial4_end(void)
  143. {
  144. if (!(SIM_SCGC4 & SIM_SCGC4_UART3)) return;
  145. while (transmitting) yield(); // wait for buffered data to send
  146. NVIC_DISABLE_IRQ(IRQ_UART3_STATUS);
  147. UART3_C2 = 0;
  148. switch (rx_pin_num) {
  149. case 31: CORE_PIN31_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_MUX(1); break; // PTC3
  150. case 63: CORE_PIN63_CONFIG = 0; break;
  151. }
  152. switch (tx_pin_num & 127) {
  153. case 32: CORE_PIN32_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_MUX(1); break; // PTC4
  154. case 62: CORE_PIN62_CONFIG = 0; break;
  155. }
  156. UART3_S1;
  157. UART3_D; // clear leftover error status
  158. rx_buffer_head = 0;
  159. rx_buffer_tail = 0;
  160. if (rts_pin) rts_deassert();
  161. }
  162. void serial4_set_transmit_pin(uint8_t pin)
  163. {
  164. while (transmitting) ;
  165. pinMode(pin, OUTPUT);
  166. digitalWrite(pin, LOW);
  167. transmit_pin = portOutputRegister(pin);
  168. }
  169. void serial4_set_tx(uint8_t pin, uint8_t opendrain)
  170. {
  171. uint32_t cfg;
  172. if (opendrain) pin |= 128;
  173. if (pin == tx_pin_num) return;
  174. if ((SIM_SCGC4 & SIM_SCGC4_UART3)) {
  175. switch (tx_pin_num & 127) {
  176. case 32: CORE_PIN32_CONFIG = 0; break; // PTB11
  177. case 62: CORE_PIN62_CONFIG = 0; break;
  178. }
  179. if (opendrain) {
  180. cfg = PORT_PCR_DSE | PORT_PCR_ODE;
  181. } else {
  182. cfg = PORT_PCR_DSE | PORT_PCR_SRE;
  183. }
  184. switch (pin & 127) {
  185. case 32: CORE_PIN32_CONFIG = cfg | PORT_PCR_MUX(3); break;
  186. case 62: CORE_PIN62_CONFIG = cfg | PORT_PCR_MUX(3); break;
  187. }
  188. }
  189. tx_pin_num = pin;
  190. }
  191. void serial4_set_rx(uint8_t pin)
  192. {
  193. if (pin == rx_pin_num) return;
  194. if ((SIM_SCGC4 & SIM_SCGC4_UART3)) {
  195. switch (rx_pin_num) {
  196. case 31: CORE_PIN31_CONFIG = 0; break; // PTC3
  197. case 63: CORE_PIN63_CONFIG = 0; break;
  198. }
  199. switch (pin) {
  200. case 31: CORE_PIN31_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  201. case 63: CORE_PIN63_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3); break;
  202. }
  203. }
  204. rx_pin_num = pin;
  205. }
  206. int serial4_set_rts(uint8_t pin)
  207. {
  208. if (!(SIM_SCGC4 & SIM_SCGC4_UART3)) return 0;
  209. if (pin < CORE_NUM_DIGITAL) {
  210. rts_pin = portOutputRegister(pin);
  211. pinMode(pin, OUTPUT);
  212. rts_assert();
  213. } else {
  214. rts_pin = NULL;
  215. return 0;
  216. }
  217. return 1;
  218. }
  219. int serial4_set_cts(uint8_t pin)
  220. {
  221. return 0;
  222. }
  223. void serial4_putchar(uint32_t c)
  224. {
  225. uint32_t head, n;
  226. if (!(SIM_SCGC4 & SIM_SCGC4_UART3)) return;
  227. if (transmit_pin) transmit_assert();
  228. head = tx_buffer_head;
  229. if (++head >= SERIAL4_TX_BUFFER_SIZE) head = 0;
  230. while (tx_buffer_tail == head) {
  231. int priority = nvic_execution_priority();
  232. if (priority <= IRQ_PRIORITY) {
  233. if ((UART3_S1 & UART_S1_TDRE)) {
  234. uint32_t tail = tx_buffer_tail;
  235. if (++tail >= SERIAL4_TX_BUFFER_SIZE) tail = 0;
  236. n = tx_buffer[tail];
  237. if (use9Bits) UART3_C3 = (UART3_C3 & ~0x40) | ((n & 0x100) >> 2);
  238. UART3_D = n;
  239. tx_buffer_tail = tail;
  240. }
  241. } else if (priority >= 256) {
  242. yield(); // wait
  243. }
  244. }
  245. tx_buffer[head] = c;
  246. transmitting = 1;
  247. tx_buffer_head = head;
  248. UART3_C2 = C2_TX_ACTIVE;
  249. }
  250. void serial4_write(const void *buf, unsigned int count)
  251. {
  252. const uint8_t *p = (const uint8_t *)buf;
  253. while (count-- > 0) serial4_putchar(*p++);
  254. }
  255. void serial4_flush(void)
  256. {
  257. while (transmitting) yield(); // wait
  258. }
  259. int serial4_write_buffer_free(void)
  260. {
  261. uint32_t head, tail;
  262. head = tx_buffer_head;
  263. tail = tx_buffer_tail;
  264. if (head >= tail) return SERIAL4_TX_BUFFER_SIZE - 1 - head + tail;
  265. return tail - head - 1;
  266. }
  267. int serial4_available(void)
  268. {
  269. uint32_t head, tail;
  270. head = rx_buffer_head;
  271. tail = rx_buffer_tail;
  272. if (head >= tail) return head - tail;
  273. return SERIAL4_RX_BUFFER_SIZE + head - tail;
  274. }
  275. int serial4_getchar(void)
  276. {
  277. uint32_t head, tail;
  278. int c;
  279. head = rx_buffer_head;
  280. tail = rx_buffer_tail;
  281. if (head == tail) return -1;
  282. if (++tail >= SERIAL4_RX_BUFFER_SIZE) tail = 0;
  283. c = rx_buffer[tail];
  284. rx_buffer_tail = tail;
  285. if (rts_pin) {
  286. int avail;
  287. if (head >= tail) avail = head - tail;
  288. else avail = SERIAL4_RX_BUFFER_SIZE + head - tail;
  289. if (avail <= RTS_LOW_WATERMARK) rts_assert();
  290. }
  291. return c;
  292. }
  293. int serial4_peek(void)
  294. {
  295. uint32_t head, tail;
  296. head = rx_buffer_head;
  297. tail = rx_buffer_tail;
  298. if (head == tail) return -1;
  299. if (++tail >= SERIAL4_RX_BUFFER_SIZE) tail = 0;
  300. return rx_buffer[tail];
  301. }
  302. void serial4_clear(void)
  303. {
  304. rx_buffer_head = rx_buffer_tail;
  305. if (rts_pin) rts_assert();
  306. }
  307. // status interrupt combines
  308. // Transmit data below watermark UART_S1_TDRE
  309. // Transmit complete UART_S1_TC
  310. // Idle line UART_S1_IDLE
  311. // Receive data above watermark UART_S1_RDRF
  312. // LIN break detect UART_S2_LBKDIF
  313. // RxD pin active edge UART_S2_RXEDGIF
  314. void uart3_status_isr(void)
  315. {
  316. uint32_t head, tail, n;
  317. uint8_t c;
  318. if (UART3_S1 & UART_S1_RDRF) {
  319. if (use9Bits && (UART3_C3 & 0x80)) {
  320. n = UART3_D | 0x100;
  321. } else {
  322. n = UART3_D;
  323. }
  324. head = rx_buffer_head + 1;
  325. if (head >= SERIAL4_RX_BUFFER_SIZE) head = 0;
  326. if (head != rx_buffer_tail) {
  327. rx_buffer[head] = n;
  328. rx_buffer_head = head;
  329. }
  330. if (rts_pin) {
  331. int avail;
  332. tail = tx_buffer_tail;
  333. if (head >= tail) avail = head - tail;
  334. else avail = SERIAL4_RX_BUFFER_SIZE + head - tail;
  335. if (avail >= RTS_HIGH_WATERMARK) rts_deassert();
  336. }
  337. }
  338. c = UART3_C2;
  339. if ((c & UART_C2_TIE) && (UART3_S1 & UART_S1_TDRE)) {
  340. head = tx_buffer_head;
  341. tail = tx_buffer_tail;
  342. if (head == tail) {
  343. UART3_C2 = C2_TX_COMPLETING;
  344. } else {
  345. if (++tail >= SERIAL4_TX_BUFFER_SIZE) tail = 0;
  346. n = tx_buffer[tail];
  347. if (use9Bits) UART3_C3 = (UART3_C3 & ~0x40) | ((n & 0x100) >> 2);
  348. UART3_D = n;
  349. tx_buffer_tail = tail;
  350. }
  351. }
  352. if ((c & UART_C2_TCIE) && (UART3_S1 & UART_S1_TC)) {
  353. transmitting = 0;
  354. if (transmit_pin) transmit_deassert();
  355. UART3_C2 = C2_TX_INACTIVE;
  356. }
  357. }
  358. #endif // HAS_KINETISK_UART3