spimt.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_
  8. /**
  9. * @brief inter-processor message communication API.
  10. * @defgroup ipmsg_interface IPMSG Interface
  11. * @ingroup io_interfaces
  12. * @{
  13. */
  14. #include <kernel.h>
  15. #include <device.h>
  16. #include <drivers/ppi.h>
  17. #include <drivers/spi.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /******************************************************************************/
  22. //constants
  23. /******************************************************************************/
  24. //spi task num
  25. #define SPI_TASK_NUM (8)
  26. //spi task DMA irq type
  27. enum spi_task_irq_type {
  28. SPI_TASK_IRQ_CMPLT = (1 << 0),
  29. SPI_TASK_IRQ_HALF_CMPLT = (1 << 1),
  30. };
  31. /******************************************************************************/
  32. //typedef
  33. /******************************************************************************/
  34. typedef struct spi_task_ctl {
  35. unsigned int wsdat : 16; // write data (single byte or half-word)
  36. unsigned int sbsh : 1; // length selection (single byte or half-word)
  37. unsigned int rwsel : 1; // read / write selection
  38. unsigned int rdlen : 12; // read byte length
  39. unsigned int rsvd : 1; // reserved
  40. unsigned int soft : 1; // software enable
  41. } spi_task_ctl_t;
  42. typedef struct spi_task_dma {
  43. unsigned int start : 1; // dma start/stop
  44. unsigned int reload : 1; // dma reload mode
  45. unsigned int addr; // transfer address
  46. unsigned int len; // transfer length
  47. } spi_task_dma_t;
  48. typedef struct spi_task {
  49. unsigned int irq_type; // irq enable
  50. spi_task_ctl_t ctl; // task ctl
  51. spi_task_dma_t dma; // task dma
  52. task_trig_t trig; // task trig
  53. } spi_task_t;
  54. /******************************************************************************/
  55. //functions
  56. /******************************************************************************/
  57. /**
  58. * @typedef spi_task_callback_t
  59. * @brief Callback API to handle spimt irq.
  60. */
  61. typedef void (*spi_task_callback_t) (unsigned char *buf, int len, void *context);
  62. /**
  63. * @typedef spi_register_callback_t
  64. * @brief Callback API upon registration
  65. *
  66. * See @a ipmsg_register_callback() for argument definitions.
  67. */
  68. typedef void (*spi_register_callback_t)(const struct device *dev,
  69. int task_id, spi_task_callback_t cb, void *cb_context);
  70. /**
  71. * @typedef spi_task_start_t
  72. * @brief Callback API to start spimt task.
  73. */
  74. typedef int (*spi_task_start_t) (const struct device *dev, int task_id,
  75. const spi_task_t *attr);
  76. /**
  77. * @typedef spi_task_stop_t
  78. * @brief Callback API to stop spimt task.
  79. */
  80. typedef int (*spi_task_stop_t) (const struct device *dev, int task_id);
  81. /**
  82. * @typedef spi_cs_select_t
  83. * @brief Callback API to select spimt cs.
  84. */
  85. typedef int (*spi_cs_select_t) (const struct device *dev, int cs_num);
  86. struct spimt_driver_api {
  87. struct spi_driver_api spi_api;
  88. spi_register_callback_t register_callback;
  89. spi_task_start_t task_start;
  90. spi_task_stop_t task_stop;
  91. spi_cs_select_t cs_select;
  92. };
  93. /**
  94. * @brief Register a callback function for incoming messages.
  95. *
  96. * @param dev Driver instance pointer.
  97. * @param id Message queue id.
  98. * @param cb Callback function to execute on incoming message interrupts.
  99. * @param context Application-specific context pointer which will be passed
  100. * to the callback function when executed.
  101. */
  102. static inline void spi_register_callback(const struct device *dev,
  103. int task_id, spi_task_callback_t cb, void *context)
  104. {
  105. const struct spimt_driver_api *api =
  106. (const struct spimt_driver_api *)dev->api;
  107. api->register_callback(dev, task_id, cb, context);
  108. }
  109. /**
  110. * @brief Start task for spimt.
  111. *
  112. * @param dev Driver instance
  113. * @param task_id Task number.
  114. * @param attr Task attribute.
  115. * @param hdl Task handler.
  116. *
  117. */
  118. static inline int spi_task_start(const struct device *dev, int task_id,
  119. const spi_task_t *attr)
  120. {
  121. const struct spimt_driver_api *api =
  122. (const struct spimt_driver_api *)dev->api;
  123. return api->task_start(dev, task_id, attr);
  124. }
  125. /**
  126. * @brief Stop task for spimt.
  127. *
  128. * @param dev Driver instance
  129. * @param task_id Task number.
  130. *
  131. */
  132. static inline int spi_task_stop(const struct device *dev, int task_id)
  133. {
  134. const struct spimt_driver_api *api =
  135. (const struct spimt_driver_api *)dev->api;
  136. return api->task_stop(dev, task_id);
  137. }
  138. /**
  139. * @brief Select cs for spimt.
  140. *
  141. * @param dev Driver instance
  142. * @param cs_num Cs number.
  143. *
  144. */
  145. static inline int spi_cs_select(const struct device *dev, int cs_num)
  146. {
  147. const struct spimt_driver_api *api =
  148. (const struct spimt_driver_api *)dev->api;
  149. return api->cs_select(dev, cs_num);
  150. }
  151. /**
  152. * @brief Get task data for spimt.
  153. *
  154. * @param bus_id Bus No.
  155. * @param task_id Task number.
  156. * @param trig trigger source.
  157. * @param plen Data length pointer.
  158. *
  159. */
  160. uint8_t* spi_task_get_data(int bus_id, int task_id, int trig, int *plen);
  161. #ifdef __cplusplus
  162. }
  163. #endif
  164. /**
  165. * @}
  166. */
  167. #endif /* ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_ */