gpio_emul.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (c) 2020 Friedt Professional Engineering Services, Inc
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Backend API for emulated GPIO
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_EMUL_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_EMUL_H_
  12. #include <zephyr/types.h>
  13. #include <drivers/gpio.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @brief Emulated GPIO backend API
  19. * @defgroup gpio_emul Emulated GPIO
  20. * @ingroup gpio_interface
  21. * @{
  22. *
  23. * Behaviour of emulated GPIO is application-defined. As-such, each
  24. * application may
  25. *
  26. * - define a Device Tree overlay file to indicate the number of GPIO
  27. * controllers as well as the number of pins for each controller
  28. * - register a callback with the GPIO controller using
  29. * @ref gpio_add_callback to emulate "wiring"
  30. * - asynchronously call @ref gpio_emul_input_set and / or
  31. * @ref gpio_emul_input_set_masked in order to emulate GPIO events
  32. *
  33. * An example of an appropriate Device Tree overlay file is in
  34. * tests/drivers/gpio/gpio_basic_api/boards/native_posix_64.overlay.
  35. *
  36. * An example of registering a callback to emulate "wiring" as well as
  37. * an example of calling @ref gpio_emul_input_set is in the file
  38. * tests/drivers/gpio/gpio_basic_api/src/main.c .
  39. */
  40. /**
  41. * @brief Modify the values of one or more emulated GPIO input @p pins
  42. *
  43. * @param port The emulated GPIO port
  44. * @param pins The mask of pins that have changed
  45. * @param values New values to assign to @p pins
  46. *
  47. * @return 0 on success
  48. * @return -EINVAL if an invalid argument is provided
  49. */
  50. int gpio_emul_input_set_masked(const struct device *port, gpio_port_pins_t pins,
  51. gpio_port_value_t values);
  52. /**
  53. * @brief Modify the value of one emulated GPIO input @p pin
  54. *
  55. * @param port The emulated GPIO port
  56. * @param pin The pin to modify
  57. * @param value New values to assign to @p pin
  58. *
  59. * @return 0 on success
  60. * @return -EINVAL if an invalid argument is provided
  61. */
  62. static inline int gpio_emul_input_set(const struct device *port, gpio_pin_t pin,
  63. int value)
  64. {
  65. return gpio_emul_input_set_masked(port, BIT(pin), value ? BIT(pin) : 0);
  66. }
  67. /**
  68. * @brief Read the value of one or more emulated GPIO output @p pins
  69. *
  70. * @param port The emulated GPIO port
  71. * @param pins The mask of pins that have changed
  72. * @param values A pointer to where the value of @p pins will be stored
  73. *
  74. * @return 0 on success
  75. * @return -EINVAL if an invalid argument is provided
  76. */
  77. int gpio_emul_output_get_masked(const struct device *port, gpio_port_pins_t pins,
  78. gpio_port_value_t *values);
  79. /**
  80. * @brief Read the value of one emulated GPIO output @p pin
  81. *
  82. * @param port The emulated GPIO port
  83. * @param pin The pin to read
  84. *
  85. * @return 0 or 1 on success
  86. * @return -EINVAL if an invalid argument is provided
  87. */
  88. static inline int gpio_emul_output_get(const struct device *port, gpio_pin_t pin)
  89. {
  90. int ret;
  91. gpio_port_value_t values;
  92. ret = gpio_emul_output_get_masked(port, BIT(pin), &values);
  93. if (ret == 0) {
  94. ret = (values & BIT(pin)) ? 1 : 0;
  95. }
  96. return ret;
  97. }
  98. /**
  99. * @brief Get @p flags for a given emulated GPIO @p pin
  100. *
  101. * For more information on available flags, see @ref gpio_interface.
  102. *
  103. * @param port The emulated GPIO port
  104. * @param pin The pin to retrieve @p flags for
  105. * @param flags a pointer to where the flags for @p pin will be stored
  106. *
  107. * @return 0 on success
  108. * @return -EINVAL if an invalid argument is provided
  109. */
  110. int gpio_emul_flags_get(const struct device *port, gpio_pin_t pin, gpio_flags_t *flags);
  111. /**
  112. * @}
  113. */
  114. #ifdef __cplusplus
  115. }
  116. #endif
  117. #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_EMUL_H_ */