i2cmt.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. typedef struct i2c_task_ctl {
  54. unsigned int rwsel : 1; // read / write selection
  55. unsigned int sdevaddr : 7; // device address
  56. unsigned int sdataddr : 8; // data address
  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_dma {
  64. unsigned int start : 1; // dma start/stop
  65. unsigned int reload : 1; // dma reload mode
  66. unsigned int addr; // transfer address
  67. unsigned int len; // transfer length
  68. } i2c_task_dma_t;
  69. typedef struct i2c_task {
  70. unsigned int irq_type; // irq enable
  71. i2c_task_ctl_t ctl; // task ctl
  72. i2c_task_dma_t dma; // task dma
  73. task_trig_t trig; // task trig
  74. } i2c_task_t;
  75. /******************************************************************************/
  76. //functions
  77. /******************************************************************************/
  78. /**
  79. * @typedef i2c_task_callback_t
  80. * @brief Callback API to handle spimt irq.
  81. */
  82. typedef void (*i2c_task_callback_t) (unsigned char *buf, int len, void *context);
  83. /**
  84. * @typedef i2c_register_callback_t
  85. * @brief Callback API upon registration
  86. *
  87. * See @a ipmsg_register_callback() for argument definitions.
  88. */
  89. typedef void (*i2c_register_callback_t)(struct device *dev,
  90. int task_id, i2c_task_callback_t cb, void *cb_context);
  91. /**
  92. * @typedef i2c_task_start_t
  93. * @brief Callback API to start spimt task.
  94. */
  95. typedef int (*i2c_task_start_t) (struct device *dev, int task_id,
  96. const i2c_task_t *attr);
  97. /**
  98. * @typedef i2c_task_stop_t
  99. * @brief Callback API to stop spimt task.
  100. */
  101. typedef int (*i2c_task_stop_t) (struct device *dev, int task_id);
  102. struct i2cmt_driver_api {
  103. struct i2c_driver_api i2c_api;
  104. i2c_register_callback_t register_callback;
  105. i2c_task_start_t task_start;
  106. i2c_task_stop_t task_stop;
  107. };
  108. /**
  109. * @brief Register a callback function for incoming messages.
  110. *
  111. * @param dev Driver instance pointer.
  112. * @param id Message queue id.
  113. * @param cb Callback function to execute on incoming message interrupts.
  114. * @param context Application-specific context pointer which will be passed
  115. * to the callback function when executed.
  116. */
  117. static inline void i2c_register_callback(struct device *dev,
  118. int task_id, i2c_task_callback_t cb, void *context)
  119. {
  120. const struct i2cmt_driver_api *api =
  121. (const struct i2cmt_driver_api *)dev->api;
  122. api->register_callback(dev, task_id, cb, context);
  123. }
  124. /**
  125. * @brief Start task for spimt.
  126. *
  127. * @param dev Driver instance
  128. * @param task_id Task number.
  129. * @param attr Task attribute.
  130. * @param hdl Task handler.
  131. *
  132. */
  133. static inline int i2c_task_start(struct device *dev, int task_id,
  134. const i2c_task_t *attr)
  135. {
  136. const struct i2cmt_driver_api *api =
  137. (const struct i2cmt_driver_api *)dev->api;
  138. return api->task_start(dev, task_id, attr);
  139. }
  140. /**
  141. * @brief Stop task for i2cmt.
  142. *
  143. * @param dev Driver instance
  144. * @param task_id Task number.
  145. *
  146. */
  147. static inline int i2c_task_stop(struct device *dev, int task_id)
  148. {
  149. const struct i2cmt_driver_api *api =
  150. (const struct i2cmt_driver_api *)dev->api;
  151. return api->task_stop(dev, task_id);
  152. }
  153. /**
  154. * @brief Get task data for i2cmt.
  155. *
  156. * @param bus_id Bus No.
  157. * @param task_id Task number.
  158. * @param trig trigger source.
  159. * @param plen Data length pointer.
  160. *
  161. */
  162. uint8_t* i2c_task_get_data(int bus_id, int task_id, int trig, int *plen);
  163. #ifdef __cplusplus
  164. }
  165. #endif
  166. /**
  167. * @}
  168. */
  169. #endif /* ZEPHYR_INCLUDE_DRIVERS_I2CMT_H_ */