spi_emul.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright 2020 Google LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_SPI_SPI_EMUL_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_SPI_SPI_EMUL_H_
  8. /**
  9. * @file
  10. *
  11. * @brief Public APIs for the SPI emulation drivers.
  12. */
  13. #include <zephyr/types.h>
  14. #include <device.h>
  15. /**
  16. * @brief SPI Emulation Interface
  17. * @defgroup spi_emul_interface SPI Emulation Interface
  18. * @ingroup io_emulators
  19. * @{
  20. */
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. struct spi_msg;
  25. struct spi_emul_api;
  26. /** Node in a linked list of emulators for SPI devices */
  27. struct spi_emul {
  28. sys_snode_t node;
  29. /* API provided for this device */
  30. const struct spi_emul_api *api;
  31. /* SPI chip-slect of the emulated device */
  32. uint16_t chipsel;
  33. };
  34. /**
  35. * Passes SPI messages to the emulator. The emulator updates the data with what
  36. * was read back.
  37. *
  38. * @param emul Emulator instance
  39. * @param config Pointer to a valid spi_config structure instance.
  40. * Pointer-comparison may be used to detect changes from
  41. * previous operations.
  42. * @param tx_bufs Buffer array where data to be sent originates from,
  43. * or NULL if none.
  44. * @param rx_bufs Buffer array where data to be read will be written to,
  45. * or NULL if none.
  46. *
  47. * @retval 0 If successful.
  48. * @retval -EIO General input / output error.
  49. */
  50. typedef int (*spi_emul_io_t)(struct spi_emul *emul,
  51. const struct spi_config *config,
  52. const struct spi_buf_set *tx_bufs,
  53. const struct spi_buf_set *rx_bufs);
  54. /**
  55. * Register an emulated device on the controller
  56. *
  57. * @param dev Device that will use the emulator
  58. * @param name User-friendly name for this emulator
  59. * @param emul SPI emulator to use
  60. * @return 0 indicating success (always)
  61. */
  62. int spi_emul_register(const struct device *dev, const char *name,
  63. struct spi_emul *emul);
  64. /** Definition of the emulator API */
  65. struct spi_emul_api {
  66. spi_emul_io_t io;
  67. };
  68. /**
  69. * Back door to allow an emulator to retrieve the host configuration.
  70. *
  71. * @param dev SPI device associated with the emulator
  72. * @return Bit-packed 32-bit value containing the device's runtime configuration
  73. */
  74. uint32_t spi_emul_get_config(const struct device *dev);
  75. #ifdef __cplusplus
  76. }
  77. #endif
  78. /**
  79. * @}
  80. */
  81. #endif /* ZEPHYR_INCLUDE_DRIVERS_SPI_SPI_EMUL_H_ */