peci.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public Platform Environment Control Interface driver APIs
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_PECI_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_PECI_H_
  12. /**
  13. * @brief PECI Interface 3.0
  14. * @defgroup peci_interface PECI Interface
  15. * @ingroup io_interfaces
  16. * @{
  17. */
  18. #include <errno.h>
  19. #include <zephyr/types.h>
  20. #include <stddef.h>
  21. #include <device.h>
  22. #include <dt-bindings/pwm/pwm.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /**
  27. * @brief PECI error codes.
  28. */
  29. enum peci_error_code {
  30. PECI_GENERAL_SENSOR_ERROR = 0x8000,
  31. PECI_UNDERFLOW_SENSOR_ERROR = 0x8002,
  32. PECI_OVERFLOW_SENSOR_ERROR = 0x8003,
  33. };
  34. /**
  35. * @brief PECI commands.
  36. */
  37. enum peci_command_code {
  38. PECI_CMD_PING = 0x00,
  39. PECI_CMD_GET_TEMP0 = 0x01,
  40. PECI_CMD_GET_TEMP1 = 0x02,
  41. PECI_CMD_RD_PCI_CFG0 = 0x61,
  42. PECI_CMD_RD_PCI_CFG1 = 0x62,
  43. PECI_CMD_WR_PCI_CFG0 = 0x65,
  44. PECI_CMD_WR_PCI_CFG1 = 0x66,
  45. PECI_CMD_RD_PKG_CFG0 = 0xA1,
  46. PECI_CMD_RD_PKG_CFG1 = 0xA,
  47. PECI_CMD_WR_PKG_CFG0 = 0xA5,
  48. PECI_CMD_WR_PKG_CFG1 = 0xA6,
  49. PECI_CMD_RD_IAMSR0 = 0xB1,
  50. PECI_CMD_RD_IAMSR1 = 0xB2,
  51. PECI_CMD_WR_IAMSR0 = 0xB5,
  52. PECI_CMD_WR_IAMSR1 = 0xB6,
  53. PECI_CMD_RD_PCI_CFG_LOCAL0 = 0xE1,
  54. PECI_CMD_RD_PCI_CFG_LOCAL1 = 0xE2,
  55. PECI_CMD_WR_PCI_CFG_LOCAL0 = 0xE5,
  56. PECI_CMD_WR_PCI_CFG_LOCAL1 = 0xE6,
  57. PECI_CMD_GET_DIB = 0xF7,
  58. };
  59. /** PECI read/write supported responses */
  60. #define PECI_CC_RSP_SUCCESS (0x40U)
  61. #define PECI_CC_RSP_TIMEOUT (0x80U)
  62. #define PECI_CC_OUT_OF_RESOURCES_TIMEOUT (0x81U)
  63. #define PECI_CC_RESOURCES_LOWPWR_TIMEOUT (0x82U)
  64. #define PECI_CC_ILLEGAL_REQUEST (0x90U)
  65. /** Ping command format. */
  66. #define PECI_PING_WR_LEN (0U)
  67. #define PECI_PING_RD_LEN (0U)
  68. #define PECI_PING_LEN (3U)
  69. /** GetDIB command format. */
  70. #define PECI_GET_DIB_WR_LEN (1U)
  71. #define PECI_GET_DIB_RD_LEN (8U)
  72. #define PECI_GET_DIB_CMD_LEN (4U)
  73. #define PECI_GET_DIB_DEVINFO (0U)
  74. #define PECI_GET_DIB_REVNUM (1U)
  75. #define PECI_GET_DIB_DOMAIN_BIT_MASK (0x4U)
  76. #define PECI_GET_DIB_MAJOR_REV_MASK 0xF0
  77. #define PECI_GET_DIB_MINOR_REV_MASK 0x0F
  78. /** GetTemp command format. */
  79. #define PECI_GET_TEMP_WR_LEN (1U)
  80. #define PECI_GET_TEMP_RD_LEN (2U)
  81. #define PECI_GET_TEMP_CMD_LEN (4U)
  82. #define PECI_GET_TEMP_LSB (0U)
  83. #define PECI_GET_TEMP_MSB (1U)
  84. #define PECI_GET_TEMP_ERR_MSB (0x80U)
  85. #define PECI_GET_TEMP_ERR_LSB_GENERAL (0x0U)
  86. #define PECI_GET_TEMP_ERR_LSB_RES (0x1U)
  87. #define PECI_GET_TEMP_ERR_LSB_TEMP_LO (0x2U)
  88. #define PECI_GET_TEMP_ERR_LSB_TEMP_HI (0x3U)
  89. /** RdPkgConfig command format. */
  90. #define PECI_RD_PKG_WR_LEN (5U)
  91. #define PECI_RD_PKG_LEN_BYTE (2U)
  92. #define PECI_RD_PKG_LEN_WORD (3U)
  93. #define PECI_RD_PKG_LEN_DWORD (5U)
  94. #define PECI_RD_PKG_CMD_LEN (8U)
  95. /** WrPkgConfig command format */
  96. #define PECI_WR_PKG_RD_LEN (1U)
  97. #define PECI_WR_PKG_LEN_BYTE (7U)
  98. #define PECI_WR_PKG_LEN_WORD (8U)
  99. #define PECI_WR_PKG_LEN_DWORD (10U)
  100. #define PECI_WR_PKG_CMD_LEN (9U)
  101. /** RdIAMSR command format */
  102. #define PECI_RD_IAMSR_WR_LEN (5U)
  103. #define PECI_RD_IAMSR_LEN_BYTE (2U)
  104. #define PECI_RD_IAMSR_LEN_WORD (3U)
  105. #define PECI_RD_IAMSR_LEN_DWORD (5U)
  106. #define PECI_RD_IAMSR_LEN_QWORD (9U)
  107. #define PECI_RD_IAMSR_CMD_LEN (8U)
  108. /** WrIAMSR command format */
  109. #define PECI_WR_IAMSR_RD_LEN (1U)
  110. #define PECI_WR_IAMSR_LEN_BYTE (7U)
  111. #define PECI_WR_IAMSR_LEN_WORD (8U)
  112. #define PECI_WR_IAMSR_LEN_DWORD (10U)
  113. #define PECI_WR_IAMSR_LEN_QWORD (14U)
  114. #define PECI_WR_IAMSR_CMD_LEN (9U)
  115. /** RdPCIConfig command format */
  116. #define PECI_RD_PCICFG_WR_LEN (6U)
  117. #define PECI_RD_PCICFG_LEN_BYTE (2U)
  118. #define PECI_RD_PCICFG_LEN_WORD (3U)
  119. #define PECI_RD_PCICFG_LEN_DWORD (5U)
  120. #define PECI_RD_PCICFG_CMD_LEN (9U)
  121. /** WrPCIConfig command format */
  122. #define PECI_WR_PCICFG_RD_LEN (1U)
  123. #define PECI_WR_PCICFG_LEN_BYTE (8U)
  124. #define PECI_WR_PCICFG_LEN_WORD (9U)
  125. #define PECI_WR_PCICFG_LEN_DWORD (11U)
  126. #define PECI_WR_PCICFG_CMD_LEN (10U)
  127. /** RdPCIConfigLocal command format */
  128. #define PECI_RD_PCICFGL_WR_LEN (5U)
  129. #define PECI_RD_PCICFGL_RD_LEN_BYTE (2U)
  130. #define PECI_RD_PCICFGL_RD_LEN_WORD (3U)
  131. #define PECI_RD_PCICFGL_RD_LEN_DWORD (5U)
  132. #define PECI_RD_PCICFGL_CMD_LEN (8U)
  133. /** WrPCIConfigLocal command format */
  134. #define PECI_WR_PCICFGL_RD_LEN (1U)
  135. #define PECI_WR_PCICFGL_WR_LEN_BYTE (7U)
  136. #define PECI_WR_PCICFGL_WR_LEN_WORD (8U)
  137. #define PECI_WR_PCICFGL_WR_LEN_DWORD (10U)
  138. #define PECI_WR_PCICFGL_CMD_LEN (9U)
  139. /**
  140. * @brief PECI buffer structure
  141. *
  142. * @param buf is a valid pointer on a data buffer, or NULL otherwise.
  143. * @param len is the length of the data buffer expected to received without
  144. * considering the frame check sequence byte.
  145. *
  146. * Note: Frame check sequence byte is added into rx buffer, need to allocate
  147. * an additional byte for this in rx buffer.
  148. */
  149. struct peci_buf {
  150. uint8_t *buf;
  151. size_t len;
  152. };
  153. /**
  154. * @brief PECI transaction packet format.
  155. */
  156. struct peci_msg {
  157. /** Client address */
  158. uint8_t addr;
  159. /** Command code */
  160. enum peci_command_code cmd_code;
  161. /** Pointer to buffer of write data */
  162. struct peci_buf tx_buffer;
  163. /** Pointer to buffer of read data */
  164. struct peci_buf rx_buffer;
  165. /** PECI msg flags */
  166. uint8_t flags;
  167. };
  168. /**
  169. * @cond INTERNAL_HIDDEN
  170. *
  171. * PECI driver API definition and system call entry points
  172. *
  173. * (Internal use only.)
  174. */
  175. typedef int (*peci_config_t)(const struct device *dev, uint32_t bitrate);
  176. typedef int (*peci_transfer_t)(const struct device *dev, struct peci_msg *msg);
  177. typedef int (*peci_disable_t)(const struct device *dev);
  178. typedef int (*peci_enable_t)(const struct device *dev);
  179. struct peci_driver_api {
  180. peci_config_t config;
  181. peci_disable_t disable;
  182. peci_enable_t enable;
  183. peci_transfer_t transfer;
  184. };
  185. /**
  186. * @endcond
  187. */
  188. /**
  189. * @brief Configures the PECI interface.
  190. *
  191. * @param dev Pointer to the device structure for the driver instance.
  192. * @param bitrate the selected expressed in Kbps.
  193. * command or when an event needs to be sent to the client application.
  194. *
  195. * @retval 0 If successful.
  196. * @retval Negative errno code if failure.
  197. */
  198. __syscall int peci_config(const struct device *dev, uint32_t bitrate);
  199. static inline int z_impl_peci_config(const struct device *dev,
  200. uint32_t bitrate)
  201. {
  202. struct peci_driver_api *api;
  203. api = (struct peci_driver_api *)dev->api;
  204. return api->config(dev, bitrate);
  205. }
  206. /**
  207. * @brief Enable PECI interface.
  208. *
  209. * @param dev Pointer to the device structure for the driver instance.
  210. *
  211. * @retval 0 If successful.
  212. * @retval Negative errno code if failure.
  213. */
  214. __syscall int peci_enable(const struct device *dev);
  215. static inline int z_impl_peci_enable(const struct device *dev)
  216. {
  217. struct peci_driver_api *api;
  218. api = (struct peci_driver_api *)dev->api;
  219. return api->enable(dev);
  220. }
  221. /**
  222. * @brief Disable PECI interface.
  223. *
  224. * @param dev Pointer to the device structure for the driver instance.
  225. *
  226. * @retval 0 If successful.
  227. * @retval Negative errno code if failure.
  228. */
  229. __syscall int peci_disable(const struct device *dev);
  230. static inline int z_impl_peci_disable(const struct device *dev)
  231. {
  232. struct peci_driver_api *api;
  233. api = (struct peci_driver_api *)dev->api;
  234. return api->disable(dev);
  235. }
  236. /**
  237. * @brief Performs a PECI transaction.
  238. *
  239. * @param dev Pointer to the device structure for the driver instance.
  240. * @param msg Structure representing a PECI transaction.
  241. *
  242. * @retval 0 If successful.
  243. * @retval Negative errno code if failure.
  244. */
  245. __syscall int peci_transfer(const struct device *dev, struct peci_msg *msg);
  246. static inline int z_impl_peci_transfer(const struct device *dev,
  247. struct peci_msg *msg)
  248. {
  249. struct peci_driver_api *api;
  250. api = (struct peci_driver_api *)dev->api;
  251. return api->transfer(dev, msg);
  252. }
  253. #ifdef __cplusplus
  254. }
  255. #endif
  256. /**
  257. * @}
  258. */
  259. #include <syscalls/peci.h>
  260. #endif /* ZEPHYR_INCLUDE_DRIVERS_PECI_H_ */