uart_dma.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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_exit(struct device *dev);
  31. int uart_acts_dma_send(struct device *dev, char *s, int len);
  32. int uart_acts_dma_send_complete(struct device *dev);
  33. int uart_acts_dma_send_stop(struct device *dev);
  34. int uart_acts_fifo_switch(struct device *dev, uint32_t is_tx, uint32_t fifo_type);
  35. int uart_acts_dma_receive_init(struct device *dev, dma_callback_t callback, void *arg);
  36. int uart_acts_dma_receive_exit(struct device *dev);
  37. int uart_acts_dma_receive(struct device *dev, char *d, int len);
  38. int uart_acts_dma_receive_complete(struct device *dev);
  39. int uart_acts_dma_receive_remain(struct device *dev);
  40. int uart_acts_dma_receive_stop(struct device *dev);
  41. int uart_acts_dma_receive_drq_switch(struct device *dev, bool drq_enable);
  42. static inline int uart_dma_send_init(struct device *dev, dma_callback_t stream_handler, void *stream_data)
  43. {
  44. return uart_acts_dma_send_init(dev, stream_handler, stream_data);
  45. }
  46. static inline int uart_dma_send_exit(struct device *dev)
  47. {
  48. return uart_acts_dma_send_exit(dev);
  49. }
  50. static inline int uart_dma_send(struct device *dev, char *s, int len)
  51. {
  52. return uart_acts_dma_send(dev, s, len);
  53. }
  54. static inline int uart_dma_send_complete(struct device *dev)
  55. {
  56. return uart_acts_dma_send_complete(dev);
  57. }
  58. static inline int uart_dma_send_stop(struct device *dev)
  59. {
  60. return uart_acts_dma_send_stop(dev);
  61. }
  62. static inline int uart_fifo_switch(struct device *dev, uint32_t is_tx, uint32_t fifo_type)
  63. {
  64. return uart_acts_fifo_switch(dev, is_tx, fifo_type);
  65. }
  66. static inline int uart_dma_receive_init(struct device *dev, dma_callback_t stream_handler, void *stream_data)
  67. {
  68. return uart_acts_dma_receive_init(dev, stream_handler, stream_data);
  69. }
  70. static inline int uart_dma_receive_exit(struct device *dev)
  71. {
  72. return uart_acts_dma_receive_exit(dev);
  73. }
  74. static inline int uart_dma_receive(struct device *dev, char *d, int len)
  75. {
  76. return uart_acts_dma_receive(dev, d, len);
  77. }
  78. static inline int uart_dma_receive_complete(struct device *dev)
  79. {
  80. return uart_acts_dma_receive_complete(dev);
  81. }
  82. static inline int uart_dma_receive_remain(struct device *dev)
  83. {
  84. return uart_acts_dma_receive_remain(dev);
  85. //return 0;
  86. }
  87. static inline int uart_dma_receive_stop(struct device *dev)
  88. {
  89. return uart_acts_dma_receive_stop(dev);
  90. }
  91. static inline int uart_dma_receive_drq_switch(struct device *dev, bool drq_enable)
  92. {
  93. return uart_acts_dma_receive_drq_switch(dev, drq_enable);
  94. }
  95. static inline int uart_rx_dma_switch(struct device *dev, bool use_dma, dma_callback_t callback, void *arg)
  96. {
  97. if(use_dma)
  98. {
  99. uart_fifo_switch(dev, 0, UART_FIFO_TYPE_DMA);
  100. }
  101. else
  102. {
  103. uart_fifo_switch(dev, 0, UART_FIFO_TYPE_CPU);
  104. }
  105. return 0;
  106. }
  107. static inline int uart_tx_dma_switch(struct device *dev, bool use_dma, dma_callback_t callback, void *arg)
  108. {
  109. if(use_dma)
  110. {
  111. uart_fifo_switch(dev, 1, UART_FIFO_TYPE_DMA);
  112. }
  113. else
  114. {
  115. uart_fifo_switch(dev, 1, UART_FIFO_TYPE_CPU);
  116. }
  117. return 0;
  118. }
  119. #endif
  120. #ifdef __cplusplus
  121. }
  122. #endif
  123. /**
  124. * @}
  125. */
  126. #endif /* ZEPHYR_INCLUDE_DRIVERS_UART_DMA_H_ */