emul.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. * Copyright 2020 Google LLC
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DRIVERS_EMUL_H_
  8. #define ZEPHYR_INCLUDE_DRIVERS_EMUL_H_
  9. /**
  10. * @brief Emulators used to test drivers and higher-level code that uses them
  11. * @defgroup io_emulators Emulator interface
  12. * @{
  13. */
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif /* __cplusplus */
  17. struct device;
  18. struct emul;
  19. /**
  20. * Structure uniquely identifying a device to be emulated
  21. *
  22. * Currently this uses the device node label, but that will go away by 2.5.
  23. */
  24. struct emul_link_for_bus {
  25. const char *label;
  26. };
  27. /** List of emulators attached to a bus */
  28. struct emul_list_for_bus {
  29. /** Identifiers for children of the node */
  30. const struct emul_link_for_bus *children;
  31. /** Number of children of the node */
  32. unsigned int num_children;
  33. };
  34. /**
  35. * Standard callback for emulator initialisation providing the initialiser
  36. * record and the device that calls the emulator functions.
  37. *
  38. * @param emul Emulator to init
  39. * @param parent Parent device that is using the emulator
  40. */
  41. typedef int (*emul_init_t)(const struct emul *emul,
  42. const struct device *parent);
  43. /** An emulator instance */
  44. struct emul {
  45. /** function used to initialise the emulator state */
  46. emul_init_t init;
  47. /** handle to the device for which this provides low-level emulation */
  48. const char *dev_label;
  49. /** Emulator-specific configuration data */
  50. const void *cfg;
  51. };
  52. /**
  53. * Emulators are aggregated into an array at link time, from which emulating
  54. * devices can find the emulators that they are to use.
  55. */
  56. extern const struct emul __emul_list_start[];
  57. extern const struct emul __emul_list_end[];
  58. /* Use the devicetree node identifier as a unique name. */
  59. #define EMUL_REG_NAME(node_id) (_CONCAT(__emulreg_, node_id))
  60. /**
  61. * Define a new emulator
  62. *
  63. * This adds a new struct emul to the linker list of emulations. This is
  64. * typically used in your emulator's DT_INST_FOREACH_STATUS_OKAY() clause.
  65. *
  66. * @param init_ptr function to call to initialise the emulator (see emul_init
  67. * typedef)
  68. * @param node_id Node ID of the driver to emulate (e.g. DT_DRV_INST(n))
  69. * @param cfg_ptr emulator-specific configuration data
  70. */
  71. #define EMUL_DEFINE(init_ptr, node_id, cfg_ptr) \
  72. static struct emul EMUL_REG_NAME(node_id) \
  73. __attribute__((__section__(".emulators"))) __used = { \
  74. .init = (init_ptr), \
  75. .dev_label = DT_LABEL(node_id), \
  76. .cfg = (cfg_ptr), \
  77. };
  78. /**
  79. * Set up a list of emulators
  80. *
  81. * @param dev Device the emulators are attached to (e.g. an I2C controller)
  82. * @param list List of devices to set up
  83. * @return 0 if OK
  84. * @return negative value on error
  85. */
  86. int emul_init_for_bus_from_list(const struct device *dev,
  87. const struct emul_list_for_bus *list);
  88. #ifdef __cplusplus
  89. }
  90. #endif /* __cplusplus */
  91. /**
  92. * @}
  93. */
  94. #endif /* ZEPHYR_INCLUDE_DRIVERS_EMUL_H_ */