tty.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * Copyright (c) 2018 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_CONSOLE_TTY_H_
  7. #define ZEPHYR_INCLUDE_CONSOLE_TTY_H_
  8. #include <sys/types.h>
  9. #include <zephyr/types.h>
  10. #include <kernel.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. struct tty_serial {
  15. const struct device *uart_dev;
  16. struct k_sem rx_sem;
  17. uint8_t *rx_ringbuf;
  18. uint32_t rx_ringbuf_sz;
  19. uint16_t rx_get, rx_put;
  20. int32_t rx_timeout;
  21. struct k_sem tx_sem;
  22. uint8_t *tx_ringbuf;
  23. uint32_t tx_ringbuf_sz;
  24. uint16_t tx_get, tx_put;
  25. int32_t tx_timeout;
  26. };
  27. /**
  28. * @brief Initialize serial port object (classically known as tty).
  29. *
  30. * "tty" device provides support for buffered, interrupt-driven,
  31. * timeout-controlled access to an underlying UART device. For
  32. * completeness, it also support non-interrupt-driven, busy-polling
  33. * access mode. After initialization, tty is in the "most conservative"
  34. * unbuffered mode with infinite timeouts (this is guaranteed to work
  35. * on any hardware). Users should configure buffers and timeouts as
  36. * they need using functions tty_set_rx_buf(), tty_set_tx_buf(),
  37. * tty_set_rx_timeout(), tty_set_tx_timeout().
  38. *
  39. * @param tty tty device structure to initialize
  40. * @param uart_dev underlying UART device to use (should support
  41. * interrupt-driven operation)
  42. *
  43. * @return 0 on success, error code (<0) otherwise
  44. */
  45. int tty_init(struct tty_serial *tty, const struct device *uart_dev);
  46. /**
  47. * @brief Set receive timeout for tty device.
  48. *
  49. * Set timeout for getchar() operation. Default timeout after
  50. * device initialization is SYS_FOREVER_MS.
  51. *
  52. * @param tty tty device structure
  53. * @param timeout timeout in milliseconds, or 0, or SYS_FOREVER_MS.
  54. */
  55. static inline void tty_set_rx_timeout(struct tty_serial *tty, int32_t timeout)
  56. {
  57. tty->rx_timeout = timeout;
  58. }
  59. /**
  60. * @brief Set transmit timeout for tty device.
  61. *
  62. * Set timeout for putchar() operation, for a case when output buffer is full.
  63. * Default timeout after device initialization is SYS_FOREVER_MS.
  64. *
  65. * @param tty tty device structure
  66. * @param timeout timeout in milliseconds, or 0, or SYS_FOREVER_MS.
  67. */
  68. static inline void tty_set_tx_timeout(struct tty_serial *tty, int32_t timeout)
  69. {
  70. tty->tx_timeout = timeout;
  71. }
  72. /**
  73. * @brief Set receive buffer for tty device.
  74. *
  75. * Set receive buffer or switch to unbuffered operation for receive.
  76. *
  77. * @param tty tty device structure
  78. * @param buf buffer, or NULL for unbuffered operation
  79. * @param size buffer buffer size, 0 for unbuffered operation
  80. * @return 0 on success, error code (<0) otherwise:
  81. * EINVAL: unsupported buffer (size)
  82. */
  83. int tty_set_rx_buf(struct tty_serial *tty, void *buf, size_t size);
  84. /**
  85. * @brief Set transmit buffer for tty device.
  86. *
  87. * Set transmit buffer or switch to unbuffered operation for transmit.
  88. * Note that unbuffered mode is implicitly blocking, i.e. behaves as
  89. * if tty_set_tx_timeout(SYS_FOREVER_MS) was set.
  90. *
  91. * @param tty tty device structure
  92. * @param buf buffer, or NULL for unbuffered operation
  93. * @param size buffer buffer size, 0 for unbuffered operation
  94. * @return 0 on success, error code (<0) otherwise:
  95. * EINVAL: unsupported buffer (size)
  96. */
  97. int tty_set_tx_buf(struct tty_serial *tty, void *buf, size_t size);
  98. /**
  99. * @brief Read data from a tty device.
  100. *
  101. * @param tty tty device structure
  102. * @param buf buffer to read data to
  103. * @param size maximum number of bytes to read
  104. * @return >0, number of actually read bytes (can be less than size param)
  105. * =0, for EOF-like condition (e.g., break signaled)
  106. * <0, in case of error (e.g. -EAGAIN if timeout expired). errno
  107. * variable is also set.
  108. */
  109. ssize_t tty_read(struct tty_serial *tty, void *buf, size_t size);
  110. /**
  111. * @brief Write data to tty device.
  112. *
  113. * @param tty tty device structure
  114. * @param buf buffer containing data
  115. * @param size maximum number of bytes to write
  116. * @return =>0, number of actually written bytes (can be less than size param)
  117. * <0, in case of error (e.g. -EAGAIN if timeout expired). errno
  118. * variable is also set.
  119. */
  120. ssize_t tty_write(struct tty_serial *tty, const void *buf, size_t size);
  121. #ifdef __cplusplus
  122. }
  123. #endif
  124. #endif /* ZEPHYR_INCLUDE_CONSOLE_TTY_H_ */