spimt.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  40. unsigned int softst : 1; // soft start
  41. #else
  42. unsigned int rsvd : 1; // reserved
  43. #endif
  44. unsigned int soft : 1; // software enable
  45. } spi_task_ctl_t;
  46. typedef struct spi_task_dma {
  47. unsigned int start : 1; // dma start/stop
  48. unsigned int reload : 1; // dma reload mode
  49. unsigned int addr; // transfer address
  50. unsigned int len; // transfer length
  51. } spi_task_dma_t;
  52. typedef struct spi_task {
  53. task_trig_t trig; // task trig
  54. unsigned int irq_type; // irq enable
  55. spi_task_ctl_t ctl; // task ctl
  56. spi_task_dma_t dma; // task dma
  57. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  58. unsigned int task_cs; //task cs id
  59. #endif
  60. } spi_task_t;
  61. /******************************************************************************/
  62. //functions
  63. /******************************************************************************/
  64. /**
  65. * @typedef spi_task_callback_t
  66. * @brief Callback API to handle spimt irq.
  67. */
  68. typedef void (*spi_task_callback_t) (unsigned char *buf, int len, void *context);
  69. /**
  70. * @typedef spi_register_callback_t
  71. * @brief Callback API upon registration
  72. *
  73. * See @a ipmsg_register_callback() for argument definitions.
  74. */
  75. typedef void (*spi_register_callback_t)(const struct device *dev,
  76. int task_id, spi_task_callback_t cb, void *cb_context);
  77. /**
  78. * @typedef spi_task_start_t
  79. * @brief Callback API to start spimt task.
  80. */
  81. typedef int (*spi_task_start_t) (const struct device *dev, int task_id,
  82. const spi_task_t *attr);
  83. /**
  84. * @typedef spi_task_stop_t
  85. * @brief Callback API to stop spimt task.
  86. */
  87. typedef int (*spi_task_stop_t) (const struct device *dev, int task_id);
  88. /**
  89. * @typedef spi_cs_select_t
  90. * @brief Callback API to select spimt cs.
  91. */
  92. typedef int (*spi_cs_select_t) (const struct device *dev, int cs_num);
  93. /**
  94. * @typedef spi_ctl_reset_t
  95. * @brief Callback API to reset spimt ctl.
  96. */
  97. typedef int (*spi_ctl_reset_t) (const struct device *dev);
  98. struct spimt_driver_api {
  99. struct spi_driver_api spi_api;
  100. spi_register_callback_t register_callback;
  101. spi_task_start_t task_start;
  102. spi_task_stop_t task_stop;
  103. spi_cs_select_t cs_select;
  104. spi_ctl_reset_t ctl_reset;
  105. };
  106. /**
  107. * @brief Register a callback function for incoming messages.
  108. *
  109. * @param dev Driver instance pointer.
  110. * @param id Message queue id.
  111. * @param cb Callback function to execute on incoming message interrupts.
  112. * @param context Application-specific context pointer which will be passed
  113. * to the callback function when executed.
  114. */
  115. static inline void spi_register_callback(const struct device *dev,
  116. int task_id, spi_task_callback_t cb, void *context)
  117. {
  118. const struct spimt_driver_api *api =
  119. (const struct spimt_driver_api *)dev->api;
  120. api->register_callback(dev, task_id, cb, context);
  121. }
  122. /**
  123. * @brief Start task for spimt.
  124. *
  125. * @param dev Driver instance
  126. * @param task_id Task number.
  127. * @param attr Task attribute.
  128. * @param hdl Task handler.
  129. *
  130. */
  131. static inline int spi_task_start(const struct device *dev, int task_id,
  132. const spi_task_t *attr)
  133. {
  134. const struct spimt_driver_api *api =
  135. (const struct spimt_driver_api *)dev->api;
  136. return api->task_start(dev, task_id, attr);
  137. }
  138. /**
  139. * @brief Stop task for spimt.
  140. *
  141. * @param dev Driver instance
  142. * @param task_id Task number.
  143. *
  144. */
  145. static inline int spi_task_stop(const struct device *dev, int task_id)
  146. {
  147. const struct spimt_driver_api *api =
  148. (const struct spimt_driver_api *)dev->api;
  149. return api->task_stop(dev, task_id);
  150. }
  151. /**
  152. * @brief Select cs for spimt.
  153. *
  154. * @param dev Driver instance
  155. * @param cs_num Cs number.
  156. *
  157. */
  158. static inline int spi_cs_select(const struct device *dev, int cs_num)
  159. {
  160. const struct spimt_driver_api *api =
  161. (const struct spimt_driver_api *)dev->api;
  162. return api->cs_select(dev, cs_num);
  163. }
  164. /**
  165. * @brief Reset spimt ctl.
  166. *
  167. * @param dev Driver instance
  168. *
  169. */
  170. static inline int spi_ctl_reset(const struct device *dev)
  171. {
  172. const struct spimt_driver_api *api =
  173. (const struct spimt_driver_api *)dev->api;
  174. return api->ctl_reset(dev);
  175. }
  176. /**
  177. * @brief Get task data for spimt.
  178. *
  179. * @param bus_id Bus No.
  180. * @param task_id Task number.
  181. * @param trig trigger source.
  182. * @param plen Data length pointer.
  183. *
  184. */
  185. uint8_t* spi_task_get_data(int bus_id, int task_id, int trig, int *plen);
  186. #ifdef __cplusplus
  187. }
  188. #endif
  189. /**
  190. * @}
  191. */
  192. #endif /* ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_ */