gpio.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * Copyright (c) 2019 Piotr Mienkowski
  3. * Copyright (c) 2018 Linaro Limited
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_GPIO_GPIO_H_
  8. #define ZEPHYR_INCLUDE_DT_BINDINGS_GPIO_GPIO_H_
  9. /**
  10. * @brief GPIO Driver APIs
  11. * @defgroup gpio_interface GPIO Driver APIs
  12. * @ingroup io_interfaces
  13. * @{
  14. */
  15. /**
  16. * @name GPIO pin active level flags
  17. * @{
  18. */
  19. /** GPIO pin is active (has logical value '1') in low state. */
  20. #define GPIO_ACTIVE_LOW (1 << 0)
  21. /** GPIO pin is active (has logical value '1') in high state. */
  22. #define GPIO_ACTIVE_HIGH (0 << 0)
  23. /** @} */
  24. /**
  25. * @name GPIO pin drive flags
  26. * @{
  27. */
  28. /** @cond INTERNAL_HIDDEN */
  29. /* Configures GPIO output in single-ended mode (open drain or open source). */
  30. #define GPIO_SINGLE_ENDED (1 << 1)
  31. /* Configures GPIO output in push-pull mode */
  32. #define GPIO_PUSH_PULL (0 << 1)
  33. /* Indicates single ended open drain mode (wired AND). */
  34. #define GPIO_LINE_OPEN_DRAIN (1 << 2)
  35. /* Indicates single ended open source mode (wired OR). */
  36. #define GPIO_LINE_OPEN_SOURCE (0 << 2)
  37. /** @endcond */
  38. /** Configures GPIO output in open drain mode (wired AND).
  39. *
  40. * @note 'Open Drain' mode also known as 'Open Collector' is an output
  41. * configuration which behaves like a switch that is either connected to ground
  42. * or disconnected.
  43. */
  44. #define GPIO_OPEN_DRAIN (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_DRAIN)
  45. /** Configures GPIO output in open source mode (wired OR).
  46. *
  47. * @note 'Open Source' is a term used by software engineers to describe output
  48. * mode opposite to 'Open Drain'. It behaves like a switch that is either
  49. * connected to power supply or disconnected. There exist no corresponding
  50. * hardware schematic and the term is generally unknown to hardware engineers.
  51. */
  52. #define GPIO_OPEN_SOURCE (GPIO_SINGLE_ENDED | GPIO_LINE_OPEN_SOURCE)
  53. /** @} */
  54. /**
  55. * @name GPIO pin bias flags
  56. * @{
  57. */
  58. /** Enables GPIO pin pull-up. */
  59. #define GPIO_PULL_UP (1 << 4)
  60. /** Enable GPIO pin pull-down. */
  61. #define GPIO_PULL_DOWN (1 << 5)
  62. /** @} */
  63. /**
  64. * @name GPIO pin voltage flags
  65. *
  66. * The voltage flags are a Zephyr specific extension of the standard GPIO
  67. * flags specified by the Linux GPIO binding. Only applicable if SoC allows
  68. * to configure pin voltage per individual pin.
  69. *
  70. * @{
  71. */
  72. /** @cond INTERNAL_HIDDEN */
  73. #define GPIO_VOLTAGE_POS 6
  74. #define GPIO_VOLTAGE_MASK (3U << GPIO_VOLTAGE_POS)
  75. /** @endcond */
  76. /** Set pin at the default voltage level */
  77. #define GPIO_VOLTAGE_DEFAULT (0U << GPIO_VOLTAGE_POS)
  78. /** Set pin voltage level at 1.8 V */
  79. #define GPIO_VOLTAGE_1P8 (1U << GPIO_VOLTAGE_POS)
  80. /** Set pin voltage level at 3.3 V */
  81. #define GPIO_VOLTAGE_3P3 (2U << GPIO_VOLTAGE_POS)
  82. /** Set pin voltage level at 5.0 V */
  83. #define GPIO_VOLTAGE_5P0 (3U << GPIO_VOLTAGE_POS)
  84. /** @} */
  85. /**
  86. * @}
  87. */
  88. #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_GPIO_GPIO_H_ */