ipm_console.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* ipm_console.c - Console messages to/from another processor */
  2. /*
  3. * Copyright (c) 2015 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_IPM_CONSOLE_H_
  8. #define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_IPM_CONSOLE_H_
  9. #include <kernel.h>
  10. #include <device.h>
  11. #include <sys/ring_buffer.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #define IPM_CONSOLE_STDOUT (BIT(0))
  16. #define IPM_CONSOLE_PRINTK (BIT(1))
  17. /*
  18. * Good way to determine these numbers other than trial-and-error?
  19. * using printf() in the thread seems to require a lot more stack space
  20. */
  21. #define IPM_CONSOLE_STACK_SIZE CONFIG_IPM_CONSOLE_STACK_SIZE
  22. #define IPM_CONSOLE_PRI 2
  23. struct ipm_console_receiver_config_info {
  24. /** Name of the low-level IPM driver to bind to */
  25. char *bind_to;
  26. /**
  27. * Stack for the receiver's thread, which prints out messages as
  28. * they come in. Should be sized CONFIG_IPM_CONSOLE_STACK_SIZE
  29. */
  30. k_thread_stack_t *thread_stack;
  31. /**
  32. * Ring buffer data area for stashing characters from the interrupt
  33. * callback
  34. */
  35. uint32_t *ring_buf_data;
  36. /** Size of ring_buf_data in 32-bit chunks */
  37. unsigned int rb_size32;
  38. /**
  39. * Line buffer for incoming messages, characters accumulate here
  40. * and then are sent to printk() once full (including a trailing NULL)
  41. * or a carriage return seen
  42. */
  43. char *line_buf;
  44. /** Size in bytes of the line buffer. Must be at least 2 */
  45. unsigned int lb_size;
  46. /**
  47. * Destination for received console messages, one of
  48. * IPM_CONSOLE_STDOUT or IPM_CONSOLE_PRINTK
  49. */
  50. unsigned int flags;
  51. };
  52. struct ipm_console_receiver_runtime_data {
  53. /** Buffer for received bytes from the low-level IPM device */
  54. struct ring_buf rb;
  55. /** Semaphore to wake up the thread to print out messages */
  56. struct k_sem sem;
  57. /** pointer to the bound low-level IPM device */
  58. const struct device *ipm_device;
  59. /** Indicator that the channel is temporarily disabled due to
  60. * full buffer
  61. */
  62. int channel_disabled;
  63. /** Receiver worker thread */
  64. struct k_thread rx_thread;
  65. };
  66. struct ipm_console_sender_config_info {
  67. /** Name of the low-level driver to bind to */
  68. char *bind_to;
  69. /**
  70. * Source of messages to forward, hooks will be installed.
  71. * Can be IPM_CONSOLE_STDOUT, IPM_CONSOLE_PRINTK, or both
  72. */
  73. int flags;
  74. };
  75. #if CONFIG_IPM_CONSOLE_RECEIVER
  76. int ipm_console_receiver_init(const struct device *d);
  77. #endif
  78. #if CONFIG_IPM_CONSOLE_SENDER
  79. int ipm_console_sender_init(const struct device *d);
  80. #endif
  81. #ifdef __cplusplus
  82. }
  83. #endif
  84. #endif /* ZEPHYR_INCLUDE_DRIVERS_CONSOLE_IPM_CONSOLE_H_ */