i2c_emul.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the I2C emulation drivers.
  5. */
  6. /*
  7. * Copyright 2020 Google LLC
  8. * Copyright (c) 2020 Nordic Semiconductor ASA
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef ZEPHYR_INCLUDE_DRIVERS_I2C_I2C_EMUL_H_
  13. #define ZEPHYR_INCLUDE_DRIVERS_I2C_I2C_EMUL_H_
  14. /**
  15. * @brief I2C Emulation Interface
  16. * @defgroup i2c_emul_interface I2C Emulation Interface
  17. * @ingroup io_emulators
  18. * @{
  19. */
  20. #include <zephyr/types.h>
  21. #include <device.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. struct i2c_msg;
  26. struct i2c_emul_api;
  27. /** Node in a linked list of emulators for I2C devices */
  28. struct i2c_emul {
  29. sys_snode_t node;
  30. /* API provided for this device */
  31. const struct i2c_emul_api *api;
  32. /* I2C address of the emulated device */
  33. uint16_t addr;
  34. };
  35. /**
  36. * Passes I2C messages to the emulator. The emulator updates the data with what
  37. * was read back.
  38. *
  39. * @param emul Emulator instance
  40. * @param msgs Array of messages to transfer. For 'read' messages, this function
  41. * updates the 'buf' member with the data that was read
  42. * @param num_msgs Number of messages to transfer.
  43. * @param addr Address of the I2C target device.
  44. *
  45. * @retval 0 If successful.
  46. * @retval -EIO General input / output error.
  47. */
  48. typedef int (*i2c_emul_transfer_t)(struct i2c_emul *emul, struct i2c_msg *msgs,
  49. int num_msgs, int addr);
  50. /**
  51. * Register an emulated device on the controller
  52. *
  53. * @param dev Device that will use the emulator
  54. * @param name User-friendly name for this emulator
  55. * @param emul I2C emulator to use
  56. * @return 0 indicating success (always)
  57. */
  58. int i2c_emul_register(const struct device *dev, const char *name,
  59. struct i2c_emul *emul);
  60. /** Definition of the emulator API */
  61. struct i2c_emul_api {
  62. i2c_emul_transfer_t transfer;
  63. };
  64. /**
  65. * Back door to allow an emulator to retrieve the host configuration.
  66. *
  67. * @param dev I2C device associated with the emulator
  68. * @return Bit-packed 32-bit value containing the device's runtime configuration
  69. */
  70. uint32_t i2c_emul_get_config(const struct device *dev);
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74. /**
  75. * @}
  76. */
  77. #endif /* ZEPHYR_INCLUDE_DRIVERS_I2C_I2C_EMUL_H_ */