i2cmt.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_I2CMT_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_I2CMT_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/i2c.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /******************************************************************************/
  22. //constants
  23. /******************************************************************************/
  24. //transfer status
  25. enum i2c_xfer_stat {
  26. I2C_XFER_OK = 0, // no error
  27. I2C_XFER_BUS_ERR = -1, // bus error
  28. I2C_XFER_NACK = -2, // NACK
  29. I2C_XFER_NO_TCB = -3, // transfer not completed
  30. I2C_XFER_START_FAILED = -4,// start failed
  31. I2C_XFER_STOP_FAILED = -5, // stop failed
  32. };
  33. //i2c task num
  34. #define I2C_TASK_NUM (4)
  35. //i2c task DMA irq type
  36. enum i2c_task_irq_type {
  37. I2C_TASK_IRQ_CMPLT = (1 << 0),
  38. I2C_TASK_IRQ_HALF_CMPLT = (1 << 1),
  39. I2C_TASK_IRQ_NACK = (1 << 2),
  40. I2C_TASK_IRQ_BUS_ERROR = (1 << 3),
  41. };
  42. /******************************************************************************/
  43. //typedef
  44. /******************************************************************************/
  45. typedef struct i2c_xfer_s {
  46. unsigned short dev;
  47. unsigned short flag;
  48. unsigned char *cmd_buf;
  49. unsigned char *dat_buf;
  50. unsigned short cmd_len;
  51. unsigned short dat_len;
  52. } i2c_xfer_t;
  53. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  54. typedef struct i2c_task_ctl {
  55. unsigned int sdataddr_sel : 1; //
  56. unsigned int ctlrsv : 15; // reserve
  57. unsigned int rdlen_wsdat : 12; // read byte length or write single-byte data
  58. unsigned int tdataddr : 1; // ignore data address
  59. unsigned int swen : 1; // single write enable
  60. unsigned int abort : 1; // abort task
  61. unsigned int soft : 1; // software start
  62. } i2c_task_ctl_t;
  63. typedef struct i2c_task_slaveaddr {
  64. unsigned int rwsel : 1; // dma start/stop
  65. unsigned int sdevaddr : 7; // dma reload mode
  66. unsigned int sdataddr : 16; // transfer address
  67. } i2c_task_slaveaddr_t;
  68. #else
  69. typedef struct i2c_task_ctl {
  70. unsigned int rwsel : 1; //
  71. unsigned int sdevaddr : 7; // reserve
  72. unsigned int sdataddr : 8;
  73. unsigned int rdlen_wsdat : 12; // read byte length or write single-byte data
  74. unsigned int tdataddr : 1; // ignore data address
  75. unsigned int swen : 1; // single write enable
  76. unsigned int abort : 1; // abort task
  77. unsigned int soft : 1; // software start
  78. } i2c_task_ctl_t;
  79. #endif
  80. typedef struct i2c_task_dma {
  81. unsigned int start : 1; // dma start/stop
  82. unsigned int reload : 1; // dma reload mode
  83. unsigned int addr; // transfer address
  84. unsigned int len; // transfer length
  85. } i2c_task_dma_t;
  86. typedef struct i2c_task {
  87. task_trig_t trig; // task trig
  88. unsigned int irq_type; // irq enable
  89. i2c_task_ctl_t ctl; // task ctl
  90. i2c_task_dma_t dma; // task dma
  91. #if defined(CONFIG_SOC_SERIES_LEOPARD)
  92. i2c_task_slaveaddr_t slavedev;
  93. #endif
  94. } i2c_task_t;
  95. /******************************************************************************/
  96. //functions
  97. /******************************************************************************/
  98. /**
  99. * @typedef i2c_task_callback_t
  100. * @brief Callback API to handle spimt irq.
  101. */
  102. typedef void (*i2c_task_callback_t) (unsigned char *buf, int len, void *context);
  103. /**
  104. * @typedef i2c_register_callback_t
  105. * @brief Callback API upon registration
  106. *
  107. * See @a ipmsg_register_callback() for argument definitions.
  108. */
  109. typedef void (*i2c_register_callback_t)(struct device *dev,
  110. int task_id, i2c_task_callback_t cb, void *cb_context);
  111. /**
  112. * @typedef i2c_task_start_t
  113. * @brief Callback API to start spimt task.
  114. */
  115. typedef int (*i2c_task_start_t) (struct device *dev, int task_id,
  116. const i2c_task_t *attr);
  117. /**
  118. * @typedef i2c_task_stop_t
  119. * @brief Callback API to stop spimt task.
  120. */
  121. typedef int (*i2c_task_stop_t) (struct device *dev, int task_id);
  122. /**
  123. * @typedef i2c_ctl_reset_t
  124. * @brief Callback API to reset i2cmt ctl.
  125. */
  126. typedef int (*i2c_ctl_reset_t) (const struct device *dev);
  127. struct i2cmt_driver_api {
  128. struct i2c_driver_api i2c_api;
  129. i2c_register_callback_t register_callback;
  130. i2c_task_start_t task_start;
  131. i2c_task_stop_t task_stop;
  132. i2c_ctl_reset_t ctl_reset;
  133. };
  134. /**
  135. * @brief Register a callback function for incoming messages.
  136. *
  137. * @param dev Driver instance pointer.
  138. * @param id Message queue id.
  139. * @param cb Callback function to execute on incoming message interrupts.
  140. * @param context Application-specific context pointer which will be passed
  141. * to the callback function when executed.
  142. */
  143. static inline void i2c_register_callback(struct device *dev,
  144. int task_id, i2c_task_callback_t cb, void *context)
  145. {
  146. const struct i2cmt_driver_api *api =
  147. (const struct i2cmt_driver_api *)dev->api;
  148. api->register_callback(dev, task_id, cb, context);
  149. }
  150. /**
  151. * @brief Start task for spimt.
  152. *
  153. * @param dev Driver instance
  154. * @param task_id Task number.
  155. * @param attr Task attribute.
  156. * @param hdl Task handler.
  157. *
  158. */
  159. static inline int i2c_task_start(struct device *dev, int task_id,
  160. const i2c_task_t *attr)
  161. {
  162. const struct i2cmt_driver_api *api =
  163. (const struct i2cmt_driver_api *)dev->api;
  164. return api->task_start(dev, task_id, attr);
  165. }
  166. /**
  167. * @brief Stop task for i2cmt.
  168. *
  169. * @param dev Driver instance
  170. * @param task_id Task number.
  171. *
  172. */
  173. static inline int i2c_task_stop(struct device *dev, int task_id)
  174. {
  175. const struct i2cmt_driver_api *api =
  176. (const struct i2cmt_driver_api *)dev->api;
  177. return api->task_stop(dev, task_id);
  178. }
  179. /**
  180. * @brief Reset i2cmt ctl.
  181. *
  182. * @param dev Driver instance
  183. *
  184. */
  185. static inline int i2c_ctl_reset(const struct device *dev)
  186. {
  187. const struct i2cmt_driver_api *api =
  188. (const struct i2cmt_driver_api *)dev->api;
  189. return api->ctl_reset(dev);
  190. }
  191. /**
  192. * @brief Get task data for i2cmt.
  193. *
  194. * @param bus_id Bus No.
  195. * @param task_id Task number.
  196. * @param trig trigger source.
  197. * @param plen Data length pointer.
  198. *
  199. */
  200. uint8_t* i2c_task_get_data(int bus_id, int task_id, int trig, int *plen);
  201. #ifdef __cplusplus
  202. }
  203. #endif
  204. /**
  205. * @}
  206. */
  207. #endif /* ZEPHYR_INCLUDE_DRIVERS_I2CMT_H_ */