uart_dma.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright (c) 2018-2019 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public APIs for UART dma drivers
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_UART_DMA_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_UART_DMA_H_
  13. /**
  14. * @brief UART Interface
  15. * @defgroup uart_interface UART Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <errno.h>
  20. #include <stddef.h>
  21. #include <device.h>
  22. #include <drivers/dma.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #ifdef CONFIG_UART_DMA_DRIVEN
  27. #define UART_FIFO_TYPE_CPU 0
  28. #define UART_FIFO_TYPE_DMA 1
  29. int uart_acts_dma_send_init(struct device *dev, dma_callback_t callback, void *arg);
  30. int uart_acts_dma_send(struct device *dev, char *s, int len);
  31. int uart_acts_dma_send_complete(struct device *dev);
  32. int uart_acts_dma_send_stop(struct device *dev);
  33. int uart_acts_fifo_switch(struct device *dev, uint32_t is_tx, uint32_t fifo_type);
  34. int uart_acts_dma_receive_init(struct device *dev, dma_callback_t callback, void *arg);
  35. int uart_acts_dma_receive(struct device *dev, char *d, int len);
  36. int uart_acts_dma_receive_complete(struct device *dev);
  37. int uart_acts_dma_receive_stop(struct device *dev);
  38. int uart_acts_dma_receive_drq_switch(struct device *dev, bool drq_enable);
  39. static inline int uart_dma_send_init(struct device *dev, dma_callback_t stream_handler, void *stream_data)
  40. {
  41. return uart_acts_dma_send_init(dev, stream_handler, stream_data);
  42. }
  43. static inline int uart_dma_send(struct device *dev, char *s, int len)
  44. {
  45. return uart_acts_dma_send(dev, s, len);
  46. }
  47. static inline int uart_dma_send_complete(struct device *dev)
  48. {
  49. return uart_acts_dma_send_complete(dev);
  50. }
  51. static inline int uart_dma_send_stop(struct device *dev)
  52. {
  53. return uart_acts_dma_send_stop(dev);
  54. }
  55. static inline int uart_fifo_switch(struct device *dev, uint32_t is_tx, uint32_t fifo_type)
  56. {
  57. return uart_acts_fifo_switch(dev, is_tx, fifo_type);
  58. }
  59. static inline int uart_dma_receive_init(struct device *dev, dma_callback_t stream_handler, void *stream_data)
  60. {
  61. return uart_acts_dma_receive_init(dev, stream_handler, stream_data);
  62. }
  63. static inline int uart_dma_receive(struct device *dev, char *d, int len)
  64. {
  65. return uart_acts_dma_receive(dev, d, len);
  66. }
  67. static inline int uart_dma_receive_complete(struct device *dev)
  68. {
  69. return uart_acts_dma_receive_complete(dev);
  70. }
  71. static inline int uart_dma_receive_stop(struct device *dev)
  72. {
  73. return uart_acts_dma_receive_stop(dev);
  74. }
  75. static inline int uart_dma_receive_drq_switch(struct device *dev, bool drq_enable)
  76. {
  77. return uart_acts_dma_receive_drq_switch(dev, drq_enable);
  78. }
  79. static inline int uart_rx_dma_switch(struct device *dev, bool use_dma, dma_callback_t callback, void *arg)
  80. {
  81. if(use_dma)
  82. {
  83. uart_fifo_switch(dev, 0, UART_FIFO_TYPE_DMA);
  84. }
  85. else
  86. {
  87. uart_fifo_switch(dev, 0, UART_FIFO_TYPE_CPU);
  88. }
  89. return 0;
  90. }
  91. static inline int uart_tx_dma_switch(struct device *dev, bool use_dma, dma_callback_t callback, void *arg)
  92. {
  93. if(use_dma)
  94. {
  95. uart_fifo_switch(dev, 1, UART_FIFO_TYPE_DMA);
  96. }
  97. else
  98. {
  99. uart_fifo_switch(dev, 1, UART_FIFO_TYPE_CPU);
  100. }
  101. return 0;
  102. }
  103. #endif
  104. #ifdef __cplusplus
  105. }
  106. #endif
  107. /**
  108. * @}
  109. */
  110. #endif /* ZEPHYR_INCLUDE_DRIVERS_UART_DMA_H_ */