tracing_backend_uart.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (c) 2019 Intel corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <errno.h>
  7. #include <ctype.h>
  8. #include <kernel.h>
  9. #include <device.h>
  10. #include <drivers/uart.h>
  11. #include <sys/__assert.h>
  12. #include <tracing_core.h>
  13. #include <tracing_buffer.h>
  14. #include <tracing_backend.h>
  15. static const struct device *tracing_uart_dev;
  16. #ifdef CONFIG_TRACING_HANDLE_HOST_CMD
  17. static void uart_isr(const struct device *dev, void *user_data)
  18. {
  19. int rx;
  20. uint8_t byte;
  21. static uint8_t *cmd;
  22. static uint32_t length, cur;
  23. ARG_UNUSED(user_data);
  24. while (uart_irq_update(dev) && uart_irq_is_pending(dev)) {
  25. if (!uart_irq_rx_ready(dev)) {
  26. continue;
  27. }
  28. rx = uart_fifo_read(dev, &byte, 1);
  29. if (rx < 0) {
  30. uart_irq_rx_disable(dev);
  31. return;
  32. }
  33. if (!cmd) {
  34. length = tracing_cmd_buffer_alloc(&cmd);
  35. }
  36. if (!isprint(byte)) {
  37. if (byte == '\r') {
  38. cmd[cur] = '\0';
  39. tracing_cmd_handle(cmd, cur);
  40. cmd = NULL;
  41. cur = 0U;
  42. }
  43. continue;
  44. }
  45. if (cur < length - 1) {
  46. cmd[cur++] = byte;
  47. }
  48. }
  49. }
  50. #endif
  51. static void tracing_backend_uart_output(
  52. const struct tracing_backend *backend,
  53. uint8_t *data, uint32_t length)
  54. {
  55. for (uint32_t i = 0; i < length; i++) {
  56. uart_poll_out(tracing_uart_dev, data[i]);
  57. }
  58. }
  59. static void tracing_backend_uart_init(void)
  60. {
  61. tracing_uart_dev =
  62. device_get_binding(CONFIG_TRACING_BACKEND_UART_NAME);
  63. __ASSERT(tracing_uart_dev, "uart backend binding failed");
  64. #ifdef CONFIG_TRACING_HANDLE_HOST_CMD
  65. uart_irq_rx_disable(tracing_uart_dev);
  66. uart_irq_tx_disable(tracing_uart_dev);
  67. uart_irq_callback_set(tracing_uart_dev, uart_isr);
  68. while (uart_irq_rx_ready(tracing_uart_dev)) {
  69. uint8_t c;
  70. uart_fifo_read(tracing_uart_dev, &c, 1);
  71. }
  72. uart_irq_rx_enable(tracing_uart_dev);
  73. #endif
  74. }
  75. const struct tracing_backend_api tracing_backend_uart_api = {
  76. .init = tracing_backend_uart_init,
  77. .output = tracing_backend_uart_output
  78. };
  79. TRACING_BACKEND_DEFINE(tracing_backend_uart, tracing_backend_uart_api);