espi_emul.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. * Copyright 2020 Google LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_ESPI_SPI_EMUL_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_ESPI_SPI_EMUL_H_
  8. /**
  9. * @file
  10. *
  11. * @brief Public APIs for the eSPI emulation drivers.
  12. */
  13. #include <zephyr/types.h>
  14. #include <device.h>
  15. /**
  16. * @brief eSPI Emulation Interface
  17. * @defgroup espi_emul_interface eSPI Emulation Interface
  18. * @ingroup io_emulators
  19. * @{
  20. */
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #define EMUL_ESPI_HOST_CHIPSEL 0
  25. struct espi_emul;
  26. /**
  27. * Passes eSPI virtual wires set request (virtual wire packet) to the emulator.
  28. * The emulator updates the state (level) of its virtual wire.
  29. *
  30. * @param emul Emulator instance
  31. * @param vw The signal to be set.
  32. * @param level The level of signal requested LOW(0) or HIGH(1).
  33. *
  34. * @retval 0 If successful.
  35. * @retval -EIO General input / output error.
  36. */
  37. typedef int (*emul_espi_api_set_vw)(struct espi_emul *emul,
  38. enum espi_vwire_signal vw,
  39. uint8_t level);
  40. /**
  41. * Passes eSPI virtual wires get request (virtual wire packet) to the emulator.
  42. * The emulator returns the state (level) of its virtual wire.
  43. *
  44. * @param emul Emulator instance
  45. * @param vw The signal to be get.
  46. * @param level The level of the signal to be get.
  47. *
  48. * @retval 0 If successful.
  49. * @retval -EIO General input / output error.
  50. */
  51. typedef int (*emul_espi_api_get_vw)(struct espi_emul *emul,
  52. enum espi_vwire_signal vw,
  53. uint8_t *level);
  54. #ifdef CONFIG_ESPI_PERIPHERAL_ACPI_SHM_REGION
  55. /**
  56. * Get the ACPI shared memory address owned by the emulator.
  57. *
  58. * @param emul Emulator instance.
  59. *
  60. * @retval The address of the memory.
  61. */
  62. typedef uintptr_t (*emul_espi_api_get_acpi_shm)(struct espi_emul *emul);
  63. #endif
  64. /**
  65. * Find an emulator present on a eSPI bus
  66. *
  67. * At present the function is used only to find an emulator of the host
  68. * device. It may be useful in systems with the SPI flash chips.
  69. *
  70. * @param dev eSPI emulation controller device
  71. * @param chipsel Chip-select value
  72. * @return emulator to use
  73. * @return NULL if not found
  74. */
  75. typedef struct espi_emul *(*emul_find_emul)(const struct device *dev,
  76. unsigned int chipsel);
  77. /**
  78. * Triggers an event on the emulator of eSPI controller side which causes
  79. * calling specific callbacks.
  80. *
  81. * @param dev Device instance of emulated eSPI controller
  82. * @param evt Event to be triggered
  83. *
  84. * @retval 0 If successful.
  85. * @retval -EIO General input / output error.
  86. */
  87. typedef int (*emul_trigger_event)(const struct device *dev,
  88. struct espi_event *evt);
  89. /** Definition of the eSPI device emulator API */
  90. struct emul_espi_device_api {
  91. emul_espi_api_set_vw set_vw;
  92. emul_espi_api_get_vw get_vw;
  93. #ifdef CONFIG_ESPI_PERIPHERAL_ACPI_SHM_REGION
  94. emul_espi_api_get_acpi_shm get_acpi_shm;
  95. #endif
  96. };
  97. /** Node in a linked list of emulators for eSPI devices */
  98. struct espi_emul {
  99. sys_snode_t node;
  100. /* API provided for this device */
  101. const struct emul_espi_device_api *api;
  102. /* eSPI chip-select of the emulated device */
  103. uint16_t chipsel;
  104. };
  105. /** Definition of the eSPI controller emulator API */
  106. struct emul_espi_driver_api {
  107. /* The struct espi_driver_api has to be first in
  108. * struct emul_espi_driver_api to make pointer casting working
  109. */
  110. struct espi_driver_api espi_api;
  111. /* The rest, emulator specific functions */
  112. emul_trigger_event trigger_event;
  113. emul_find_emul find_emul;
  114. };
  115. /**
  116. * Register an emulated device on the controller
  117. *
  118. * @param dev Device that will use the emulator
  119. * @param name User-friendly name for this emulator
  120. * @param emul eSPI emulator to use
  121. * @return 0 indicating success (always)
  122. */
  123. int espi_emul_register(const struct device *dev, const char *name,
  124. struct espi_emul *emul);
  125. /**
  126. * Sets the eSPI virtual wire on the host side, which will
  127. * trigger a proper event(and callbacks) on the emulated eSPI controller
  128. *
  129. * @param espi_dev eSPI emulation controller device
  130. * @param vw The signal to be set.
  131. * @param level The level of the signal to be set.
  132. *
  133. * @retval 0 If successful.
  134. * @retval -EIO General input / output error.
  135. */
  136. int emul_espi_host_send_vw(const struct device *espi_dev,
  137. enum espi_vwire_signal vw, uint8_t level);
  138. /**
  139. * Perform port80 write on the emulated host side, which will
  140. * trigger a proper event(and callbacks) on the emulated eSPI controller
  141. *
  142. * @param espi_dev eSPI emulation controller device
  143. * @param data The date to be written.
  144. *
  145. * @retval 0 If successful.
  146. * @retval -EIO General input / output error.
  147. */
  148. int emul_espi_host_port80_write(const struct device *espi_dev, uint32_t data);
  149. #ifdef CONFIG_ESPI_PERIPHERAL_ACPI_SHM_REGION
  150. /**
  151. * Get the host device's ACPI shared memory start address. The size of the region is
  152. * CONFIG_EMUL_ESPI_HOST_ACPI_SHM_REGION_SIZE.
  153. *
  154. * @param espi_dev eSPI emulation controller device.
  155. * @return Address of the start of the ACPI shared memory.
  156. */
  157. uintptr_t emul_espi_host_get_acpi_shm(const struct device *espi_dev);
  158. #endif
  159. #ifdef __cplusplus
  160. }
  161. #endif
  162. /**
  163. * @}
  164. */
  165. #endif /* ZEPHYR_INCLUDE_DRIVERS_ESPI_SPI_EMUL_H_ */