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ů.

369 lines
9.9KB

  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. // UART0 and UART1 are clocked by F_CPU, UART2 is clocked by F_BUS
  86. // UART0 has 8 byte fifo, UART1 and UART2 have 1 byte buffer
  87. #define C2_ENABLE UART_C2_TE | UART_C2_RE | UART_C2_RIE
  88. #define C2_TX_ACTIVE C2_ENABLE | UART_C2_TIE
  89. #define C2_TX_COMPLETING C2_ENABLE | UART_C2_TCIE
  90. #define C2_TX_INACTIVE C2_ENABLE
  91. void serial3_begin(uint32_t divisor)
  92. {
  93. SIM_SCGC4 |= SIM_SCGC4_UART2; // turn on clock, TODO: use bitband
  94. rx_buffer_head = 0;
  95. rx_buffer_tail = 0;
  96. tx_buffer_head = 0;
  97. tx_buffer_tail = 0;
  98. transmitting = 0;
  99. CORE_PIN7_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_PFE | PORT_PCR_MUX(3);
  100. CORE_PIN8_CONFIG = PORT_PCR_DSE | PORT_PCR_SRE | PORT_PCR_MUX(3);
  101. #if defined(HAS_KINETISK_UART2)
  102. UART2_BDH = (divisor >> 13) & 0x1F;
  103. UART2_BDL = (divisor >> 5) & 0xFF;
  104. UART2_C4 = divisor & 0x1F;
  105. UART2_C1 = 0;
  106. UART2_PFIFO = 0;
  107. #elif defined(HAS_KINETISL_UART2)
  108. UART2_BDH = (divisor >> 8) & 0x1F;
  109. UART2_BDL = divisor & 0xFF;
  110. UART2_C1 = 0;
  111. #endif
  112. UART2_C2 = C2_TX_INACTIVE;
  113. NVIC_SET_PRIORITY(IRQ_UART2_STATUS, IRQ_PRIORITY);
  114. NVIC_ENABLE_IRQ(IRQ_UART2_STATUS);
  115. }
  116. void serial3_format(uint32_t format)
  117. {
  118. uint8_t c;
  119. c = UART2_C1;
  120. c = (c & ~0x13) | (format & 0x03); // configure parity
  121. if (format & 0x04) c |= 0x10; // 9 bits (might include parity)
  122. UART2_C1 = c;
  123. if ((format & 0x0F) == 0x04) UART2_C3 |= 0x40; // 8N2 is 9 bit with 9th bit always 1
  124. c = UART2_S2 & ~0x10;
  125. if (format & 0x10) c |= 0x10; // rx invert
  126. UART2_S2 = c;
  127. c = UART2_C3 & ~0x10;
  128. if (format & 0x20) c |= 0x10; // tx invert
  129. UART2_C3 = c;
  130. #ifdef SERIAL_9BIT_SUPPORT
  131. c = UART2_C4 & 0x1F;
  132. if (format & 0x08) c |= 0x20; // 9 bit mode with parity (requires 10 bits)
  133. UART2_C4 = c;
  134. use9Bits = format & 0x80;
  135. #endif
  136. }
  137. void serial3_end(void)
  138. {
  139. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return;
  140. while (transmitting) yield(); // wait for buffered data to send
  141. NVIC_DISABLE_IRQ(IRQ_UART2_STATUS);
  142. UART2_C2 = 0;
  143. CORE_PIN7_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_MUX(1);
  144. CORE_PIN8_CONFIG = PORT_PCR_PE | PORT_PCR_PS | PORT_PCR_MUX(1);
  145. rx_buffer_head = 0;
  146. rx_buffer_tail = 0;
  147. if (rts_pin) rts_deassert();
  148. }
  149. void serial3_set_transmit_pin(uint8_t pin)
  150. {
  151. while (transmitting) ;
  152. pinMode(pin, OUTPUT);
  153. digitalWrite(pin, LOW);
  154. transmit_pin = portOutputRegister(pin);
  155. #if defined(KINETISL)
  156. transmit_mask = digitalPinToBitMask(pin);
  157. #endif
  158. }
  159. int serial3_set_rts(uint8_t pin)
  160. {
  161. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return 0;
  162. if (pin < CORE_NUM_DIGITAL) {
  163. rts_pin = portOutputRegister(pin);
  164. #if defined(KINETISL)
  165. rts_mask = digitalPinToBitMask(pin);
  166. #endif
  167. pinMode(pin, OUTPUT);
  168. rts_assert();
  169. } else {
  170. rts_pin = NULL;
  171. return 0;
  172. }
  173. /*
  174. if (pin == 2) {
  175. CORE_PIN2_CONFIG = PORT_PCR_MUX(3);
  176. } else {
  177. UART2_MODEM &= ~UART_MODEM_RXRTSE;
  178. return 0;
  179. }
  180. UART2_MODEM |= UART_MODEM_RXRTSE;
  181. */
  182. return 1;
  183. }
  184. int serial3_set_cts(uint8_t pin)
  185. {
  186. #if defined(KINETISK)
  187. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return 0;
  188. if (pin == 14) {
  189. CORE_PIN14_CONFIG = PORT_PCR_MUX(3) | PORT_PCR_PE; // weak pulldown
  190. } else {
  191. UART2_MODEM &= ~UART_MODEM_TXCTSE;
  192. return 0;
  193. }
  194. UART2_MODEM |= UART_MODEM_TXCTSE;
  195. return 1;
  196. #else
  197. return 0;
  198. #endif
  199. }
  200. void serial3_putchar(uint32_t c)
  201. {
  202. uint32_t head, n;
  203. if (!(SIM_SCGC4 & SIM_SCGC4_UART2)) return;
  204. if (transmit_pin) transmit_assert();
  205. head = tx_buffer_head;
  206. if (++head >= TX_BUFFER_SIZE) head = 0;
  207. while (tx_buffer_tail == head) {
  208. int priority = nvic_execution_priority();
  209. if (priority <= IRQ_PRIORITY) {
  210. if ((UART2_S1 & UART_S1_TDRE)) {
  211. uint32_t tail = tx_buffer_tail;
  212. if (++tail >= TX_BUFFER_SIZE) tail = 0;
  213. n = tx_buffer[tail];
  214. if (use9Bits) UART2_C3 = (UART2_C3 & ~0x40) | ((n & 0x100) >> 2);
  215. UART2_D = n;
  216. tx_buffer_tail = tail;
  217. }
  218. } else if (priority >= 256) {
  219. yield(); // wait
  220. }
  221. }
  222. tx_buffer[head] = c;
  223. transmitting = 1;
  224. tx_buffer_head = head;
  225. UART2_C2 = C2_TX_ACTIVE;
  226. }
  227. void serial3_write(const void *buf, unsigned int count)
  228. {
  229. const uint8_t *p = (const uint8_t *)buf;
  230. while (count-- > 0) serial3_putchar(*p++);
  231. }
  232. void serial3_flush(void)
  233. {
  234. while (transmitting) yield(); // wait
  235. }
  236. int serial3_write_buffer_free(void)
  237. {
  238. uint32_t head, tail;
  239. head = tx_buffer_head;
  240. tail = tx_buffer_tail;
  241. if (head >= tail) return TX_BUFFER_SIZE - 1 - head + tail;
  242. return tail - head - 1;
  243. }
  244. int serial3_available(void)
  245. {
  246. uint32_t head, tail;
  247. head = rx_buffer_head;
  248. tail = rx_buffer_tail;
  249. if (head >= tail) return head - tail;
  250. return RX_BUFFER_SIZE + head - tail;
  251. }
  252. int serial3_getchar(void)
  253. {
  254. uint32_t head, tail;
  255. int c;
  256. head = rx_buffer_head;
  257. tail = rx_buffer_tail;
  258. if (head == tail) return -1;
  259. if (++tail >= RX_BUFFER_SIZE) tail = 0;
  260. c = rx_buffer[tail];
  261. rx_buffer_tail = tail;
  262. if (rts_pin) {
  263. int avail;
  264. if (head >= tail) avail = head - tail;
  265. else avail = RX_BUFFER_SIZE + head - tail;
  266. if (avail <= RTS_LOW_WATERMARK) rts_assert();
  267. }
  268. return c;
  269. }
  270. int serial3_peek(void)
  271. {
  272. uint32_t head, tail;
  273. head = rx_buffer_head;
  274. tail = rx_buffer_tail;
  275. if (head == tail) return -1;
  276. if (++tail >= RX_BUFFER_SIZE) tail = 0;
  277. return rx_buffer[tail];
  278. }
  279. void serial3_clear(void)
  280. {
  281. rx_buffer_head = rx_buffer_tail;
  282. if (rts_pin) rts_assert();
  283. }
  284. // status interrupt combines
  285. // Transmit data below watermark UART_S1_TDRE
  286. // Transmit complete UART_S1_TC
  287. // Idle line UART_S1_IDLE
  288. // Receive data above watermark UART_S1_RDRF
  289. // LIN break detect UART_S2_LBKDIF
  290. // RxD pin active edge UART_S2_RXEDGIF
  291. void uart2_status_isr(void)
  292. {
  293. uint32_t head, tail, n;
  294. uint8_t c;
  295. if (UART2_S1 & UART_S1_RDRF) {
  296. if (use9Bits && (UART2_C3 & 0x80)) {
  297. n = UART2_D | 0x100;
  298. } else {
  299. n = UART2_D;
  300. }
  301. head = rx_buffer_head + 1;
  302. if (head >= RX_BUFFER_SIZE) head = 0;
  303. if (head != rx_buffer_tail) {
  304. rx_buffer[head] = n;
  305. rx_buffer_head = head;
  306. }
  307. if (rts_pin) {
  308. int avail;
  309. tail = tx_buffer_tail;
  310. if (head >= tail) avail = head - tail;
  311. else avail = RX_BUFFER_SIZE + head - tail;
  312. if (avail >= RTS_HIGH_WATERMARK) rts_deassert();
  313. }
  314. }
  315. c = UART2_C2;
  316. if ((c & UART_C2_TIE) && (UART2_S1 & UART_S1_TDRE)) {
  317. head = tx_buffer_head;
  318. tail = tx_buffer_tail;
  319. if (head == tail) {
  320. UART2_C2 = C2_TX_COMPLETING;
  321. } else {
  322. if (++tail >= TX_BUFFER_SIZE) tail = 0;
  323. n = tx_buffer[tail];
  324. if (use9Bits) UART2_C3 = (UART2_C3 & ~0x40) | ((n & 0x100) >> 2);
  325. UART2_D = n;
  326. tx_buffer_tail = tail;
  327. }
  328. }
  329. if ((c & UART_C2_TCIE) && (UART2_S1 & UART_S1_TC)) {
  330. transmitting = 0;
  331. if (transmit_pin) transmit_deassert();
  332. UART2_C2 = C2_TX_INACTIVE;
  333. }
  334. }