tty.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /*
  2. * Copyright (c) 2018 Linaro Limited.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <drivers/uart.h>
  8. #include <sys/printk.h>
  9. #include <console/tty.h>
  10. static int tty_irq_input_hook(struct tty_serial *tty, uint8_t c);
  11. static int tty_putchar(struct tty_serial *tty, uint8_t c);
  12. static void tty_uart_isr(const struct device *dev, void *user_data)
  13. {
  14. struct tty_serial *tty = user_data;
  15. uart_irq_update(dev);
  16. if (uart_irq_rx_ready(dev)) {
  17. uint8_t c;
  18. while (1) {
  19. if (uart_fifo_read(dev, &c, 1) == 0) {
  20. break;
  21. }
  22. tty_irq_input_hook(tty, c);
  23. }
  24. }
  25. if (uart_irq_tx_ready(dev)) {
  26. if (tty->tx_get == tty->tx_put) {
  27. /* Output buffer empty, don't bother
  28. * us with tx interrupts
  29. */
  30. uart_irq_tx_disable(dev);
  31. } else {
  32. uart_fifo_fill(dev, &tty->tx_ringbuf[tty->tx_get++], 1);
  33. if (tty->tx_get >= tty->tx_ringbuf_sz) {
  34. tty->tx_get = 0U;
  35. }
  36. k_sem_give(&tty->tx_sem);
  37. }
  38. }
  39. }
  40. static int tty_irq_input_hook(struct tty_serial *tty, uint8_t c)
  41. {
  42. int rx_next = tty->rx_put + 1;
  43. if (rx_next >= tty->rx_ringbuf_sz) {
  44. rx_next = 0;
  45. }
  46. if (rx_next == tty->rx_get) {
  47. /* Try to give a clue to user that some input was lost */
  48. tty_putchar(tty, '~');
  49. return 1;
  50. }
  51. tty->rx_ringbuf[tty->rx_put] = c;
  52. tty->rx_put = rx_next;
  53. k_sem_give(&tty->rx_sem);
  54. return 1;
  55. }
  56. static int tty_putchar(struct tty_serial *tty, uint8_t c)
  57. {
  58. unsigned int key;
  59. int tx_next;
  60. int res;
  61. res = k_sem_take(&tty->tx_sem,
  62. k_is_in_isr() ? K_NO_WAIT :
  63. SYS_TIMEOUT_MS(tty->tx_timeout));
  64. if (res < 0) {
  65. return res;
  66. }
  67. key = irq_lock();
  68. tx_next = tty->tx_put + 1;
  69. if (tx_next >= tty->tx_ringbuf_sz) {
  70. tx_next = 0;
  71. }
  72. if (tx_next == tty->tx_get) {
  73. irq_unlock(key);
  74. return -ENOSPC;
  75. }
  76. tty->tx_ringbuf[tty->tx_put] = c;
  77. tty->tx_put = tx_next;
  78. irq_unlock(key);
  79. uart_irq_tx_enable(tty->uart_dev);
  80. return 0;
  81. }
  82. ssize_t tty_write(struct tty_serial *tty, const void *buf, size_t size)
  83. {
  84. const uint8_t *p = buf;
  85. size_t out_size = 0;
  86. int res = 0;
  87. if (tty->tx_ringbuf_sz == 0U) {
  88. /* Unbuffered operation, implicitly blocking. */
  89. out_size = size;
  90. while (size--) {
  91. uart_poll_out(tty->uart_dev, *p++);
  92. }
  93. return out_size;
  94. }
  95. while (size--) {
  96. res = tty_putchar(tty, *p++);
  97. if (res < 0) {
  98. /* If we didn't transmit anything, return the error. */
  99. if (out_size == 0) {
  100. errno = -res;
  101. return res;
  102. }
  103. /*
  104. * Otherwise, return how much we transmitted. If error
  105. * was transient (like EAGAIN), on next call user might
  106. * not even get it. And if it's non-transient, they'll
  107. * get it on the next call.
  108. */
  109. return out_size;
  110. }
  111. out_size++;
  112. }
  113. return out_size;
  114. }
  115. static int tty_getchar(struct tty_serial *tty)
  116. {
  117. unsigned int key;
  118. uint8_t c;
  119. int res;
  120. res = k_sem_take(&tty->rx_sem, SYS_TIMEOUT_MS(tty->rx_timeout));
  121. if (res < 0) {
  122. return res;
  123. }
  124. key = irq_lock();
  125. c = tty->rx_ringbuf[tty->rx_get++];
  126. if (tty->rx_get >= tty->rx_ringbuf_sz) {
  127. tty->rx_get = 0U;
  128. }
  129. irq_unlock(key);
  130. return c;
  131. }
  132. static ssize_t tty_read_unbuf(struct tty_serial *tty, void *buf, size_t size)
  133. {
  134. uint8_t *p = buf;
  135. size_t out_size = 0;
  136. int res = 0;
  137. uint32_t timeout = tty->rx_timeout;
  138. while (size) {
  139. uint8_t c;
  140. res = uart_poll_in(tty->uart_dev, &c);
  141. if (res <= -2) {
  142. /* Error occurred, best we can do is to return
  143. * accumulated data w/o error, or return error
  144. * directly if none.
  145. */
  146. if (out_size == 0) {
  147. errno = res;
  148. return -1;
  149. }
  150. break;
  151. }
  152. if (res == 0) {
  153. *p++ = c;
  154. out_size++;
  155. size--;
  156. }
  157. if (size == 0 ||
  158. ((timeout != SYS_FOREVER_MS) && timeout-- == 0U)) {
  159. break;
  160. }
  161. /* Avoid 100% busy-polling, and yet try to process bursts
  162. * of data without extra delays.
  163. */
  164. if (res == -1) {
  165. k_sleep(K_MSEC(1));
  166. }
  167. }
  168. return out_size;
  169. }
  170. ssize_t tty_read(struct tty_serial *tty, void *buf, size_t size)
  171. {
  172. uint8_t *p = buf;
  173. size_t out_size = 0;
  174. int res = 0;
  175. if (tty->rx_ringbuf_sz == 0U) {
  176. return tty_read_unbuf(tty, buf, size);
  177. }
  178. while (size--) {
  179. res = tty_getchar(tty);
  180. if (res < 0) {
  181. /* If we didn't transmit anything, return the error. */
  182. if (out_size == 0) {
  183. errno = -res;
  184. return res;
  185. }
  186. /*
  187. * Otherwise, return how much we transmitted. If error
  188. * was transient (like EAGAIN), on next call user might
  189. * not even get it. And if it's non-transient, they'll
  190. * get it on the next call.
  191. */
  192. return out_size;
  193. }
  194. *p++ = (uint8_t)res;
  195. out_size++;
  196. }
  197. return out_size;
  198. }
  199. int tty_init(struct tty_serial *tty, const struct device *uart_dev)
  200. {
  201. if (!uart_dev) {
  202. return -ENODEV;
  203. }
  204. tty->uart_dev = uart_dev;
  205. /* We start in unbuffer mode. */
  206. tty->rx_ringbuf = NULL;
  207. tty->rx_ringbuf_sz = 0U;
  208. tty->tx_ringbuf = NULL;
  209. tty->tx_ringbuf_sz = 0U;
  210. tty->rx_get = tty->rx_put = tty->tx_get = tty->tx_put = 0U;
  211. tty->rx_timeout = SYS_FOREVER_MS;
  212. tty->tx_timeout = SYS_FOREVER_MS;
  213. uart_irq_callback_user_data_set(uart_dev, tty_uart_isr, tty);
  214. return 0;
  215. }
  216. int tty_set_rx_buf(struct tty_serial *tty, void *buf, size_t size)
  217. {
  218. uart_irq_rx_disable(tty->uart_dev);
  219. tty->rx_ringbuf = buf;
  220. tty->rx_ringbuf_sz = size;
  221. if (size > 0) {
  222. k_sem_init(&tty->rx_sem, 0, K_SEM_MAX_LIMIT);
  223. uart_irq_rx_enable(tty->uart_dev);
  224. }
  225. return 0;
  226. }
  227. int tty_set_tx_buf(struct tty_serial *tty, void *buf, size_t size)
  228. {
  229. uart_irq_tx_disable(tty->uart_dev);
  230. tty->tx_ringbuf = buf;
  231. tty->tx_ringbuf_sz = size;
  232. k_sem_init(&tty->tx_sem, size - 1, K_SEM_MAX_LIMIT);
  233. /* New buffer is initially empty, no need to re-enable interrupts,
  234. * it will be done when needed (on first output char).
  235. */
  236. return 0;
  237. }