uart_console.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  1. /*
  2. * Copyright (c) 2011-2012, 2014-2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief UART-driven console
  9. *
  10. *
  11. * Serial console driver.
  12. * Hooks into the printk and fputc (for printf) modules. Poll driven.
  13. */
  14. #include <kernel.h>
  15. #include <stdio.h>
  16. #include <zephyr/types.h>
  17. #include <sys/__assert.h>
  18. #include <errno.h>
  19. #include <ctype.h>
  20. #include <device.h>
  21. #include <init.h>
  22. #include <drivers/uart.h>
  23. #include <drivers/console/console.h>
  24. #include <drivers/console/uart_console.h>
  25. #include <toolchain.h>
  26. #include <linker/sections.h>
  27. #include <sys/atomic.h>
  28. #include <sys/printk.h>
  29. #ifdef CONFIG_UART_CONSOLE_MCUMGR
  30. #include "mgmt/mcumgr/serial.h"
  31. #endif
  32. static const struct device *uart_console_dev;
  33. #ifdef CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS
  34. static uart_console_in_debug_hook_t debug_hook_in;
  35. void uart_console_in_debug_hook_install(uart_console_in_debug_hook_t hook)
  36. {
  37. debug_hook_in = hook;
  38. }
  39. static UART_CONSOLE_OUT_DEBUG_HOOK_SIG(debug_hook_out_nop) {
  40. ARG_UNUSED(c);
  41. return !UART_CONSOLE_DEBUG_HOOK_HANDLED;
  42. }
  43. static uart_console_out_debug_hook_t *debug_hook_out = debug_hook_out_nop;
  44. void uart_console_out_debug_hook_install(uart_console_out_debug_hook_t *hook)
  45. {
  46. debug_hook_out = hook;
  47. }
  48. #define HANDLE_DEBUG_HOOK_OUT(c) \
  49. (debug_hook_out(c) == UART_CONSOLE_DEBUG_HOOK_HANDLED)
  50. #endif /* CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS */
  51. #if defined(CONFIG_PRINTK) || defined(CONFIG_STDOUT_CONSOLE)
  52. /**
  53. *
  54. * @brief Output one character to UART
  55. *
  56. * Outputs both line feed and carriage return in the case of a '\n'.
  57. *
  58. * @param c Character to output
  59. *
  60. * @return The character passed as input.
  61. */
  62. static int console_out(int c)
  63. {
  64. #ifdef CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS
  65. int handled_by_debug_server = HANDLE_DEBUG_HOOK_OUT(c);
  66. if (handled_by_debug_server) {
  67. return c;
  68. }
  69. #endif /* CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS */
  70. if ('\n' == c) {
  71. uart_poll_out(uart_console_dev, '\r');
  72. }
  73. uart_poll_out(uart_console_dev, c);
  74. return c;
  75. }
  76. #endif
  77. #if defined(CONFIG_STDOUT_CONSOLE)
  78. extern void __stdout_hook_install(int (*hook)(int));
  79. #else
  80. #define __stdout_hook_install(x) \
  81. do { /* nothing */ \
  82. } while ((0))
  83. #endif
  84. #if defined(CONFIG_PRINTK)
  85. extern void __printk_hook_install(int (*fn)(int));
  86. #else
  87. #define __printk_hook_install(x) \
  88. do { /* nothing */ \
  89. } while ((0))
  90. #endif
  91. #if defined(CONFIG_CONSOLE_HANDLER)
  92. static struct k_fifo *avail_queue;
  93. static struct k_fifo *lines_queue;
  94. static uint8_t (*completion_cb)(char *line, uint8_t len);
  95. /* Control characters */
  96. #define BS 0x08
  97. #define ESC 0x1b
  98. #define DEL 0x7f
  99. /* ANSI escape sequences */
  100. #define ANSI_ESC '['
  101. #define ANSI_UP 'A'
  102. #define ANSI_DOWN 'B'
  103. #define ANSI_FORWARD 'C'
  104. #define ANSI_BACKWARD 'D'
  105. #define ANSI_END 'F'
  106. #define ANSI_HOME 'H'
  107. #define ANSI_DEL '~'
  108. static int read_uart(const struct device *uart, uint8_t *buf,
  109. unsigned int size)
  110. {
  111. int rx;
  112. rx = uart_fifo_read(uart, buf, size);
  113. if (rx < 0) {
  114. /* Overrun issue. Stop the UART */
  115. uart_irq_rx_disable(uart);
  116. return -EIO;
  117. }
  118. return rx;
  119. }
  120. static inline void cursor_forward(unsigned int count)
  121. {
  122. printk("\x1b[%uC", count);
  123. }
  124. static inline void cursor_backward(unsigned int count)
  125. {
  126. printk("\x1b[%uD", count);
  127. }
  128. static inline void cursor_save(void)
  129. {
  130. printk("\x1b[s");
  131. }
  132. static inline void cursor_restore(void)
  133. {
  134. printk("\x1b[u");
  135. }
  136. static void insert_char(char *pos, char c, uint8_t end)
  137. {
  138. char tmp;
  139. /* Echo back to console */
  140. uart_poll_out(uart_console_dev, c);
  141. if (end == 0U) {
  142. *pos = c;
  143. return;
  144. }
  145. tmp = *pos;
  146. *(pos++) = c;
  147. cursor_save();
  148. while (end-- > 0) {
  149. uart_poll_out(uart_console_dev, tmp);
  150. c = *pos;
  151. *(pos++) = tmp;
  152. tmp = c;
  153. }
  154. /* Move cursor back to right place */
  155. cursor_restore();
  156. }
  157. static void del_char(char *pos, uint8_t end)
  158. {
  159. uart_poll_out(uart_console_dev, '\b');
  160. if (end == 0U) {
  161. uart_poll_out(uart_console_dev, ' ');
  162. uart_poll_out(uart_console_dev, '\b');
  163. return;
  164. }
  165. cursor_save();
  166. while (end-- > 0) {
  167. *pos = *(pos + 1);
  168. uart_poll_out(uart_console_dev, *(pos++));
  169. }
  170. uart_poll_out(uart_console_dev, ' ');
  171. /* Move cursor back to right place */
  172. cursor_restore();
  173. }
  174. enum {
  175. ESC_ESC,
  176. ESC_ANSI,
  177. ESC_ANSI_FIRST,
  178. ESC_ANSI_VAL,
  179. ESC_ANSI_VAL_2,
  180. #ifdef CONFIG_UART_CONSOLE_MCUMGR
  181. ESC_MCUMGR_PKT_1,
  182. ESC_MCUMGR_PKT_2,
  183. ESC_MCUMGR_FRAG_1,
  184. ESC_MCUMGR_FRAG_2,
  185. #endif
  186. };
  187. static atomic_t esc_state;
  188. static unsigned int ansi_val, ansi_val_2;
  189. static uint8_t cur, end;
  190. static void handle_ansi(uint8_t byte, char *line)
  191. {
  192. if (atomic_test_and_clear_bit(&esc_state, ESC_ANSI_FIRST)) {
  193. if (!isdigit(byte)) {
  194. ansi_val = 1U;
  195. goto ansi_cmd;
  196. }
  197. atomic_set_bit(&esc_state, ESC_ANSI_VAL);
  198. ansi_val = byte - '0';
  199. ansi_val_2 = 0U;
  200. return;
  201. }
  202. if (atomic_test_bit(&esc_state, ESC_ANSI_VAL)) {
  203. if (isdigit(byte)) {
  204. if (atomic_test_bit(&esc_state, ESC_ANSI_VAL_2)) {
  205. ansi_val_2 *= 10U;
  206. ansi_val_2 += byte - '0';
  207. } else {
  208. ansi_val *= 10U;
  209. ansi_val += byte - '0';
  210. }
  211. return;
  212. }
  213. /* Multi value sequence, e.g. Esc[Line;ColumnH */
  214. if (byte == ';' &&
  215. !atomic_test_and_set_bit(&esc_state, ESC_ANSI_VAL_2)) {
  216. return;
  217. }
  218. atomic_clear_bit(&esc_state, ESC_ANSI_VAL);
  219. atomic_clear_bit(&esc_state, ESC_ANSI_VAL_2);
  220. }
  221. ansi_cmd:
  222. switch (byte) {
  223. case ANSI_BACKWARD:
  224. if (ansi_val > cur) {
  225. break;
  226. }
  227. end += ansi_val;
  228. cur -= ansi_val;
  229. cursor_backward(ansi_val);
  230. break;
  231. case ANSI_FORWARD:
  232. if (ansi_val > end) {
  233. break;
  234. }
  235. end -= ansi_val;
  236. cur += ansi_val;
  237. cursor_forward(ansi_val);
  238. break;
  239. case ANSI_HOME:
  240. if (!cur) {
  241. break;
  242. }
  243. cursor_backward(cur);
  244. end += cur;
  245. cur = 0U;
  246. break;
  247. case ANSI_END:
  248. if (!end) {
  249. break;
  250. }
  251. cursor_forward(end);
  252. cur += end;
  253. end = 0U;
  254. break;
  255. case ANSI_DEL:
  256. if (!end) {
  257. break;
  258. }
  259. cursor_forward(1);
  260. del_char(&line[cur], --end);
  261. break;
  262. default:
  263. break;
  264. }
  265. atomic_clear_bit(&esc_state, ESC_ANSI);
  266. }
  267. #ifdef CONFIG_UART_CONSOLE_MCUMGR
  268. static void clear_mcumgr(void)
  269. {
  270. atomic_clear_bit(&esc_state, ESC_MCUMGR_PKT_1);
  271. atomic_clear_bit(&esc_state, ESC_MCUMGR_PKT_2);
  272. atomic_clear_bit(&esc_state, ESC_MCUMGR_FRAG_1);
  273. atomic_clear_bit(&esc_state, ESC_MCUMGR_FRAG_2);
  274. }
  275. /**
  276. * These states indicate whether an mcumgr frame is being received.
  277. */
  278. #define CONSOLE_MCUMGR_STATE_NONE 1
  279. #define CONSOLE_MCUMGR_STATE_HEADER 2
  280. #define CONSOLE_MCUMGR_STATE_PAYLOAD 3
  281. static int read_mcumgr_byte(uint8_t byte)
  282. {
  283. bool frag_1;
  284. bool frag_2;
  285. bool pkt_1;
  286. bool pkt_2;
  287. pkt_1 = atomic_test_bit(&esc_state, ESC_MCUMGR_PKT_1);
  288. pkt_2 = atomic_test_bit(&esc_state, ESC_MCUMGR_PKT_2);
  289. frag_1 = atomic_test_bit(&esc_state, ESC_MCUMGR_FRAG_1);
  290. frag_2 = atomic_test_bit(&esc_state, ESC_MCUMGR_FRAG_2);
  291. if (pkt_2 || frag_2) {
  292. /* Already fully framed. */
  293. return CONSOLE_MCUMGR_STATE_PAYLOAD;
  294. }
  295. if (pkt_1) {
  296. if (byte == MCUMGR_SERIAL_HDR_PKT_2) {
  297. /* Final framing byte received. */
  298. atomic_set_bit(&esc_state, ESC_MCUMGR_PKT_2);
  299. return CONSOLE_MCUMGR_STATE_PAYLOAD;
  300. }
  301. } else if (frag_1) {
  302. if (byte == MCUMGR_SERIAL_HDR_FRAG_2) {
  303. /* Final framing byte received. */
  304. atomic_set_bit(&esc_state, ESC_MCUMGR_FRAG_2);
  305. return CONSOLE_MCUMGR_STATE_PAYLOAD;
  306. }
  307. } else {
  308. if (byte == MCUMGR_SERIAL_HDR_PKT_1) {
  309. /* First framing byte received. */
  310. atomic_set_bit(&esc_state, ESC_MCUMGR_PKT_1);
  311. return CONSOLE_MCUMGR_STATE_HEADER;
  312. } else if (byte == MCUMGR_SERIAL_HDR_FRAG_1) {
  313. /* First framing byte received. */
  314. atomic_set_bit(&esc_state, ESC_MCUMGR_FRAG_1);
  315. return CONSOLE_MCUMGR_STATE_HEADER;
  316. }
  317. }
  318. /* Non-mcumgr byte received. */
  319. return CONSOLE_MCUMGR_STATE_NONE;
  320. }
  321. /**
  322. * @brief Attempts to process a received byte as part of an mcumgr frame.
  323. *
  324. * @param cmd The console command currently being received.
  325. * @param byte The byte just received.
  326. *
  327. * @return true if the command being received is an mcumgr frame; false if it
  328. * is a plain console command.
  329. */
  330. static bool handle_mcumgr(struct console_input *cmd, uint8_t byte)
  331. {
  332. int mcumgr_state;
  333. mcumgr_state = read_mcumgr_byte(byte);
  334. if (mcumgr_state == CONSOLE_MCUMGR_STATE_NONE) {
  335. /* Not an mcumgr command; let the normal console handling
  336. * process the byte.
  337. */
  338. cmd->is_mcumgr = 0;
  339. return false;
  340. }
  341. /* The received byte is part of an mcumgr command. Process the byte
  342. * and return true to indicate that normal console handling should
  343. * ignore it.
  344. */
  345. if (cur + end < sizeof(cmd->line) - 1) {
  346. cmd->line[cur++] = byte;
  347. }
  348. if (mcumgr_state == CONSOLE_MCUMGR_STATE_PAYLOAD && byte == '\n') {
  349. cmd->line[cur + end] = '\0';
  350. cmd->is_mcumgr = 1;
  351. k_fifo_put(lines_queue, cmd);
  352. clear_mcumgr();
  353. cmd = NULL;
  354. cur = 0U;
  355. end = 0U;
  356. }
  357. return true;
  358. }
  359. #endif /* CONFIG_UART_CONSOLE_MCUMGR */
  360. static void uart_console_isr(const struct device *unused, void *user_data)
  361. {
  362. ARG_UNUSED(unused);
  363. ARG_UNUSED(user_data);
  364. while (uart_irq_update(uart_console_dev) &&
  365. uart_irq_is_pending(uart_console_dev)) {
  366. static struct console_input *cmd;
  367. uint8_t byte;
  368. int rx;
  369. if (!uart_irq_rx_ready(uart_console_dev)) {
  370. continue;
  371. }
  372. /* Character(s) have been received */
  373. rx = read_uart(uart_console_dev, &byte, 1);
  374. if (rx < 0) {
  375. return;
  376. }
  377. #ifdef CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS
  378. if (debug_hook_in != NULL && debug_hook_in(byte) != 0) {
  379. /*
  380. * The input hook indicates that no further processing
  381. * should be done by this handler.
  382. */
  383. return;
  384. }
  385. #endif
  386. if (!cmd) {
  387. cmd = k_fifo_get(avail_queue, K_NO_WAIT);
  388. if (!cmd) {
  389. return;
  390. }
  391. }
  392. #ifdef CONFIG_UART_CONSOLE_MCUMGR
  393. /* Divert this byte from normal console handling if it is part
  394. * of an mcumgr frame.
  395. */
  396. if (handle_mcumgr(cmd, byte)) {
  397. continue;
  398. }
  399. #endif /* CONFIG_UART_CONSOLE_MCUMGR */
  400. /* Handle ANSI escape mode */
  401. if (atomic_test_bit(&esc_state, ESC_ANSI)) {
  402. handle_ansi(byte, cmd->line);
  403. continue;
  404. }
  405. /* Handle escape mode */
  406. if (atomic_test_and_clear_bit(&esc_state, ESC_ESC)) {
  407. if (byte == ANSI_ESC) {
  408. atomic_set_bit(&esc_state, ESC_ANSI);
  409. atomic_set_bit(&esc_state, ESC_ANSI_FIRST);
  410. }
  411. continue;
  412. }
  413. /* Handle special control characters */
  414. if (!isprint(byte)) {
  415. switch (byte) {
  416. case BS:
  417. case DEL:
  418. if (cur > 0) {
  419. del_char(&cmd->line[--cur], end);
  420. }
  421. break;
  422. case ESC:
  423. atomic_set_bit(&esc_state, ESC_ESC);
  424. break;
  425. case '\r':
  426. cmd->line[cur + end] = '\0';
  427. uart_poll_out(uart_console_dev, '\r');
  428. uart_poll_out(uart_console_dev, '\n');
  429. cur = 0U;
  430. end = 0U;
  431. k_fifo_put(lines_queue, cmd);
  432. cmd = NULL;
  433. break;
  434. case '\t':
  435. if (completion_cb && !end) {
  436. cur += completion_cb(cmd->line, cur);
  437. }
  438. break;
  439. default:
  440. break;
  441. }
  442. continue;
  443. }
  444. /* Ignore characters if there's no more buffer space */
  445. if (cur + end < sizeof(cmd->line) - 1) {
  446. insert_char(&cmd->line[cur++], byte, end);
  447. }
  448. }
  449. }
  450. static void console_input_init(void)
  451. {
  452. uint8_t c;
  453. uart_irq_rx_disable(uart_console_dev);
  454. uart_irq_tx_disable(uart_console_dev);
  455. uart_irq_callback_set(uart_console_dev, uart_console_isr);
  456. /* Drain the fifo */
  457. while (uart_irq_rx_ready(uart_console_dev)) {
  458. uart_fifo_read(uart_console_dev, &c, 1);
  459. }
  460. uart_irq_rx_enable(uart_console_dev);
  461. }
  462. void uart_register_input(struct k_fifo *avail, struct k_fifo *lines,
  463. uint8_t (*completion)(char *str, uint8_t len))
  464. {
  465. avail_queue = avail;
  466. lines_queue = lines;
  467. completion_cb = completion;
  468. console_input_init();
  469. }
  470. #else
  471. #define console_input_init(x) \
  472. do { /* nothing */ \
  473. } while ((0))
  474. #define uart_register_input(x) \
  475. do { /* nothing */ \
  476. } while ((0))
  477. #endif
  478. /**
  479. *
  480. * @brief Install printk/stdout hook for UART console output
  481. *
  482. * @return N/A
  483. */
  484. static void uart_console_hook_install(void)
  485. {
  486. __stdout_hook_install(console_out);
  487. __printk_hook_install(console_out);
  488. }
  489. /**
  490. *
  491. * @brief Initialize one UART as the console/debug port
  492. *
  493. * @return 0 if successful, otherwise failed.
  494. */
  495. static int uart_console_init(const struct device *arg)
  496. {
  497. ARG_UNUSED(arg);
  498. /* Claim console device */
  499. uart_console_dev = device_get_binding(CONFIG_UART_CONSOLE_ON_DEV_NAME);
  500. uart_console_hook_install();
  501. return 0;
  502. }
  503. /* UART console initializes after the UART device itself */
  504. SYS_INIT(uart_console_init,
  505. #if defined(CONFIG_USB_UART_CONSOLE)
  506. POST_KERNEL,
  507. #elif defined(CONFIG_EARLY_CONSOLE)
  508. PRE_KERNEL_1,
  509. #else
  510. POST_KERNEL,
  511. #endif
  512. CONFIG_UART_CONSOLE_INIT_PRIORITY);