espi_saf.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. /*
  2. * Copyright (c) 2019 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public APIs for eSPI driver
  9. */
  10. #ifndef ZEPHYR_INCLUDE_ESPI_SAF_H_
  11. #define ZEPHYR_INCLUDE_ESPI_SAF_H_
  12. #include <sys/__assert.h>
  13. #include <zephyr/types.h>
  14. #include <device.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief eSPI SAF Driver APIs
  20. * @defgroup espi_interface ESPI Driver APIs
  21. * @ingroup io_interfaces
  22. * @{
  23. */
  24. /**
  25. *+----------------------------------------------------------------------+
  26. *| |
  27. *| eSPI host +-------------+ |
  28. *| +-----------+ | Power | +----------+ |
  29. *| |Out of band| | management | | GPIO | |
  30. *| ------------ |processor | | controller | | sources | |
  31. *| +-----------+ +-------------+ +----------+ |
  32. *| | | | |
  33. *| ------------ | | | |
  34. *| +--------+ +---------------+ |
  35. *| | | |
  36. *| -----+ +--------+ +----------+ +----v-----+ |
  37. *| | | LPC | | Tunneled | | Tunneled | |
  38. *| | | bridge | | SMBus | | GPIO | |
  39. *| | +--------+ +----------+ +----------+ |
  40. *| | | | | |
  41. *| | ------+ | | |
  42. *| | | | | |
  43. *| +------v-----+ +---v-------v-------------v----+ |
  44. *| | eSPI Flash | | eSPI protocol block | |
  45. *| | access +--->+ | |
  46. *| +------------+ +------------------------------+ |
  47. *| | |
  48. *| ----------- | |
  49. *| v |
  50. *| XXXXXXXXXXXXXXXXXXXXXXX |
  51. *| XXXXXXXXXXXXXXXXXXXXX |
  52. *| XXXXXXXXXXXXXXXXXXX |
  53. *+----------------------------------------------------------------------+
  54. * |
  55. * +-----------------+
  56. * --------- | | | | | |
  57. * | | | | | |
  58. * --------- | + + + + | eSPI bus
  59. * | CH0 CH1 CH2 CH3 | (logical channels)
  60. * | + + + + |
  61. * | | | | | |
  62. * +-----------------+
  63. * |
  64. *+-----------------------------------------------------------------------+
  65. *| eSPI slave |
  66. *| |
  67. *| CH0 | CH1 | CH2 | CH3 |
  68. *| eSPI endpoint | VWIRE | OOB | Flash |
  69. *+-----------------------------------------------------------------------+
  70. * | |
  71. * v |
  72. * +---------+ |
  73. * | Flash | Slave Attached Flash |
  74. * +---------+ |
  75. * |
  76. */
  77. /**
  78. * @cond INTERNAL_HIDDEN
  79. *
  80. */
  81. /** @endcond */
  82. struct espi_saf_hw_cfg;
  83. struct espi_saf_flash_cfg;
  84. struct espi_saf_pr;
  85. /**
  86. * @brief eSPI SAF configuration parameters
  87. */
  88. struct espi_saf_cfg {
  89. uint8_t nflash_devices;
  90. struct espi_saf_hw_cfg hwcfg;
  91. struct espi_saf_flash_cfg *flash_cfgs;
  92. };
  93. /**
  94. * @brief eSPI SAF transaction packet format
  95. */
  96. struct espi_saf_packet {
  97. uint32_t flash_addr;
  98. uint8_t *buf;
  99. uint32_t len;
  100. };
  101. /*
  102. *defined in espi.h
  103. * struct espi_callback
  104. * typedef void (*espi_callback_handler_t)()
  105. */
  106. /**
  107. * @cond INTERNAL_HIDDEN
  108. *
  109. * eSPI driver API definition and system call entry points
  110. *
  111. * (Internal use only.)
  112. */
  113. typedef int (*espi_saf_api_config)(const struct device *dev,
  114. const struct espi_saf_cfg *cfg);
  115. typedef int (*espi_saf_api_set_protection_regions)(
  116. const struct device *dev,
  117. const struct espi_saf_protection *pr);
  118. typedef int (*espi_saf_api_activate)(const struct device *dev);
  119. typedef bool (*espi_saf_api_get_channel_status)(const struct device *dev);
  120. typedef int (*espi_saf_api_flash_read)(const struct device *dev,
  121. struct espi_saf_packet *pckt);
  122. typedef int (*espi_saf_api_flash_write)(const struct device *dev,
  123. struct espi_saf_packet *pckt);
  124. typedef int (*espi_saf_api_flash_erase)(const struct device *dev,
  125. struct espi_saf_packet *pckt);
  126. /* Callbacks and traffic intercept */
  127. typedef int (*espi_saf_api_manage_callback)(const struct device *dev,
  128. struct espi_callback *callback,
  129. bool set);
  130. __subsystem struct espi_saf_driver_api {
  131. espi_saf_api_config config;
  132. espi_saf_api_set_protection_regions set_protection_regions;
  133. espi_saf_api_activate activate;
  134. espi_saf_api_get_channel_status get_channel_status;
  135. espi_saf_api_flash_read flash_read;
  136. espi_saf_api_flash_write flash_write;
  137. espi_saf_api_flash_erase flash_erase;
  138. espi_saf_api_manage_callback manage_callback;
  139. };
  140. /**
  141. * @endcond
  142. */
  143. /**
  144. * @brief Configure operation of a eSPI controller.
  145. *
  146. * This routine provides a generic interface to override eSPI controller
  147. * capabilities.
  148. *
  149. * If this eSPI controller is acting as slave, the values set here
  150. * will be discovered as part through the GET_CONFIGURATION command
  151. * issued by the eSPI master during initialization.
  152. *
  153. * If this eSPI controller is acting as master, the values set here
  154. * will be used by eSPI master to determine minimum common capabilities with
  155. * eSPI slave then send via SET_CONFIGURATION command.
  156. *
  157. * +--------+ +---------+ +------+ +---------+ +---------+
  158. * | eSPI | | eSPI | | eSPI | | eSPI | | eSPI |
  159. * | slave | | driver | | bus | | driver | | host |
  160. * +--------+ +---------+ +------+ +---------+ +---------+
  161. * | | | | |
  162. * | espi_config | Set eSPI | Set eSPI | espi_config |
  163. * +--------------+ ctrl regs | cap ctrl reg| +-----------+
  164. * | +-------+ | +--------+ |
  165. * | |<------+ | +------->| |
  166. * | | | | |
  167. * | | | | |
  168. * | | | GET_CONFIGURATION | |
  169. * | | +<------------------+ |
  170. * | |<-----------| | |
  171. * | | eSPI caps | | |
  172. * | |----------->+ response | |
  173. * | | |------------------>+ |
  174. * | | | | |
  175. * | | | SET_CONFIGURATION | |
  176. * | | +<------------------+ |
  177. * | | | accept | |
  178. * | | +------------------>+ |
  179. * + + + + +
  180. *
  181. * @param dev Pointer to the device structure for the driver instance.
  182. * @param cfg the device runtime configuration for the eSPI controller.
  183. *
  184. * @retval 0 If successful.
  185. * @retval -EIO General input / output error, failed to configure device.
  186. * @retval -EINVAL invalid capabilities, failed to configure device.
  187. * @retval -ENOTSUP capability not supported by eSPI slave.
  188. */
  189. __syscall int espi_saf_config(const struct device *dev,
  190. const struct espi_saf_cfg *cfg);
  191. static inline int z_impl_espi_saf_config(const struct device *dev,
  192. const struct espi_saf_cfg *cfg)
  193. {
  194. const struct espi_saf_driver_api *api =
  195. (const struct espi_saf_driver_api *)dev->api;
  196. return api->config(dev, cfg);
  197. }
  198. /**
  199. * @brief Set one or more SAF protection regions
  200. *
  201. * This routine provides an interface to override the default flash
  202. * protection regions of the SAF controller.
  203. *
  204. * @param dev Pointer to the device structure for the driver instance.
  205. * @param pr Pointer to the SAF protection region structure.
  206. *
  207. * @retval 0 If successful.
  208. * @retval -EIO General input / output error, failed to configure device.
  209. * @retval -EINVAL invalid capabilities, failed to configure device.
  210. * @retval -ENOTSUP capability not supported by eSPI slave.
  211. */
  212. __syscall int espi_saf_set_protection_regions(
  213. const struct device *dev,
  214. const struct espi_saf_protection *pr);
  215. static inline int z_impl_espi_saf_set_protection_regions(
  216. const struct device *dev,
  217. const struct espi_saf_protection *pr)
  218. {
  219. const struct espi_saf_driver_api *api =
  220. (const struct espi_saf_driver_api *)dev->api;
  221. return api->set_protection_regions(dev, pr);
  222. }
  223. /**
  224. * @brief Activate SAF block
  225. *
  226. * This routine activates the SAF block and should only be
  227. * called after SAF has been configured and the eSPI Master
  228. * has enabled the Flash Channel.
  229. *
  230. * @param dev Pointer to the device structure for the driver instance.
  231. *
  232. * @retval 0 If successful
  233. * @retval -EINVAL if failed to activate SAF.
  234. */
  235. __syscall int espi_saf_activate(const struct device *dev);
  236. static inline int z_impl_espi_saf_activate(const struct device *dev)
  237. {
  238. const struct espi_saf_driver_api *api =
  239. (const struct espi_saf_driver_api *)dev->api;
  240. return api->activate(dev);
  241. }
  242. /**
  243. * @brief Query to see if SAF is ready
  244. *
  245. * This routine allows to check if SAF is ready before use.
  246. *
  247. * @param dev Pointer to the device structure for the driver instance.
  248. *
  249. * @retval true If eSPI SAF is ready.
  250. * @retval false otherwise.
  251. */
  252. __syscall bool espi_saf_get_channel_status(const struct device *dev);
  253. static inline bool z_impl_espi_saf_get_channel_status(
  254. const struct device *dev)
  255. {
  256. const struct espi_saf_driver_api *api =
  257. (const struct espi_saf_driver_api *)dev->api;
  258. return api->get_channel_status(dev);
  259. }
  260. /**
  261. * @brief Sends a read request packet for slave attached flash.
  262. *
  263. * This routines provides an interface to send a request to read the flash
  264. * component shared between the eSPI master and eSPI slaves.
  265. *
  266. * @param dev Pointer to the device structure for the driver instance.
  267. * @param pckt Adddress of the representation of read flash transaction.
  268. *
  269. * @retval -ENOTSUP eSPI flash logical channel transactions not supported.
  270. * @retval -EBUSY eSPI flash channel is not ready or disabled by master.
  271. * @retval -EIO General input / output error, failed request to master.
  272. */
  273. __syscall int espi_saf_flash_read(const struct device *dev,
  274. struct espi_saf_packet *pckt);
  275. static inline int z_impl_espi_saf_flash_read(const struct device *dev,
  276. struct espi_saf_packet *pckt)
  277. {
  278. const struct espi_saf_driver_api *api =
  279. (const struct espi_saf_driver_api *)dev->api;
  280. if (!api->flash_read) {
  281. return -ENOTSUP;
  282. }
  283. return api->flash_read(dev, pckt);
  284. }
  285. /**
  286. * @brief Sends a write request packet for slave attached flash.
  287. *
  288. * This routines provides an interface to send a request to write to the flash
  289. * components shared between the eSPI master and eSPI slaves.
  290. *
  291. * @param dev Pointer to the device structure for the driver instance.
  292. * @param pckt Address of the representation of write flash transaction.
  293. *
  294. * @retval -ENOTSUP eSPI flash logical channel transactions not supported.
  295. * @retval -EBUSY eSPI flash channel is not ready or disabled by master.
  296. * @retval -EIO General input / output error, failed request to master.
  297. */
  298. __syscall int espi_saf_flash_write(const struct device *dev,
  299. struct espi_saf_packet *pckt);
  300. static inline int z_impl_espi_saf_flash_write(const struct device *dev,
  301. struct espi_saf_packet *pckt)
  302. {
  303. const struct espi_saf_driver_api *api =
  304. (const struct espi_saf_driver_api *)dev->api;
  305. if (!api->flash_write) {
  306. return -ENOTSUP;
  307. }
  308. return api->flash_write(dev, pckt);
  309. }
  310. /**
  311. * @brief Sends a write request packet for slave attached flash.
  312. *
  313. * This routines provides an interface to send a request to write to the flash
  314. * components shared between the eSPI master and eSPI slaves.
  315. *
  316. * @param dev Pointer to the device structure for the driver instance.
  317. * @param pckt Address of the representation of erase flash transaction.
  318. *
  319. * @retval -ENOTSUP eSPI flash logical channel transactions not supported.
  320. * @retval -EBUSY eSPI flash channel is not ready or disabled by master.
  321. * @retval -EIO General input / output error, failed request to master.
  322. */
  323. __syscall int espi_saf_flash_erase(const struct device *dev,
  324. struct espi_saf_packet *pckt);
  325. static inline int z_impl_espi_saf_flash_erase(const struct device *dev,
  326. struct espi_saf_packet *pckt)
  327. {
  328. const struct espi_saf_driver_api *api =
  329. (const struct espi_saf_driver_api *)dev->api;
  330. if (!api->flash_erase) {
  331. return -ENOTSUP;
  332. }
  333. return api->flash_erase(dev, pckt);
  334. }
  335. /**
  336. * Callback model
  337. *
  338. *+-------+ +-------------+ +------+ +---------+
  339. *| App | | eSPI driver | | HW | |eSPI Host|
  340. *+---+---+ +-------+-----+ +---+--+ +----+----+
  341. * | | | |
  342. * | espi_init_callback | | |
  343. * +----------------------------> | | |
  344. * | espi_add_callback | |
  345. * +----------------------------->+ |
  346. * | | | eSPI reset | eSPI host
  347. * | | IRQ +<------------+ resets the
  348. * | | <-----------+ | bus
  349. * | | | |
  350. * | | Processed | |
  351. * | | within the | |
  352. * | | driver | |
  353. * | | | |
  354. * | | | VW CH ready| eSPI host
  355. * | | IRQ +<------------+ enables VW
  356. * | | <-----------+ | channel
  357. * | | | |
  358. * | | Processed | |
  359. * | | within the | |
  360. * | | driver | |
  361. * | | | |
  362. * | | | Memory I/O | Peripheral
  363. * | | <-------------+ event
  364. * | +<------------+ |
  365. * +<-----------------------------+ callback | |
  366. * | Report peripheral event | | |
  367. * | and data for the event | | |
  368. * | | | |
  369. * | | | SLP_S5 | eSPI host
  370. * | | <-------------+ send VWire
  371. * | +<------------+ |
  372. * +<-----------------------------+ callback | |
  373. * | App enables/configures | | |
  374. * | discrete regulator | | |
  375. * | | | |
  376. * | espi_send_vwire_signal | | |
  377. * +------------------------------>------------>|------------>|
  378. * | | | |
  379. * | | | HOST_RST | eSPI host
  380. * | | <-------------+ send VWire
  381. * | +<------------+ |
  382. * +<-----------------------------+ callback | |
  383. * | App reset host-related | | |
  384. * | data structures | | |
  385. * | | | |
  386. * | | | C10 | eSPI host
  387. * | | +<------------+ send VWire
  388. * | <-------------+ |
  389. * <------------------------------+ | |
  390. * | App executes | | |
  391. * + power mgmt policy | | |
  392. */
  393. /**
  394. * @brief Helper to initialize a struct espi_callback properly.
  395. *
  396. * @param callback A valid Application's callback structure pointer.
  397. * @param handler A valid handler function pointer.
  398. * @param evt_type indicates the eSPI event relevant for the handler.
  399. * for VWIRE_RECEIVED event the data will indicate the new level asserted
  400. */
  401. static inline void espi_saf_init_callback(struct espi_callback *callback,
  402. espi_callback_handler_t handler,
  403. enum espi_bus_event evt_type)
  404. {
  405. __ASSERT(callback, "Callback pointer should not be NULL");
  406. __ASSERT(handler, "Callback handler pointer should not be NULL");
  407. callback->handler = handler;
  408. callback->evt_type = evt_type;
  409. }
  410. /**
  411. * @brief Add an application callback.
  412. * @param dev Pointer to the device structure for the driver instance.
  413. * @param callback A valid Application's callback structure pointer.
  414. * @return 0 if successful, negative errno code on failure.
  415. *
  416. * @note Callbacks may be added to the device from within a callback
  417. * handler invocation, but whether they are invoked for the current
  418. * eSPI event is not specified.
  419. *
  420. * Note: enables to add as many callback as needed on the same device.
  421. */
  422. static inline int espi_saf_add_callback(const struct device *dev,
  423. struct espi_callback *callback)
  424. {
  425. const struct espi_saf_driver_api *api =
  426. (const struct espi_saf_driver_api *)dev->api;
  427. if (!api->manage_callback) {
  428. return -ENOTSUP;
  429. }
  430. return api->manage_callback(dev, callback, true);
  431. }
  432. /**
  433. * @brief Remove an application callback.
  434. * @param dev Pointer to the device structure for the driver instance.
  435. * @param callback A valid application's callback structure pointer.
  436. * @return 0 if successful, negative errno code on failure.
  437. *
  438. * @warning It is explicitly permitted, within a callback handler, to
  439. * remove the registration for the callback that is running, i.e. @p
  440. * callback. Attempts to remove other registrations on the same
  441. * device may result in undefined behavior, including failure to
  442. * invoke callbacks that remain registered and unintended invocation
  443. * of removed callbacks.
  444. *
  445. * Note: enables to remove as many callbacks as added through
  446. * espi_add_callback().
  447. */
  448. static inline int espi_saf_remove_callback(const struct device *dev,
  449. struct espi_callback *callback)
  450. {
  451. const struct espi_saf_driver_api *api =
  452. (const struct espi_saf_driver_api *)dev->api;
  453. if (!api->manage_callback) {
  454. return -ENOTSUP;
  455. }
  456. return api->manage_callback(dev, callback, false);
  457. }
  458. #ifdef __cplusplus
  459. }
  460. #endif
  461. /**
  462. * @}
  463. */
  464. #include <syscalls/espi_saf.h>
  465. #endif /* ZEPHYR_INCLUDE_ESPI_SAF_H_ */