gpio.h 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461
  1. /*
  2. * Copyright (c) 2019-2020 Nordic Semiconductor ASA
  3. * Copyright (c) 2019 Piotr Mienkowski
  4. * Copyright (c) 2017 ARM Ltd
  5. * Copyright (c) 2015-2016 Intel Corporation.
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. /**
  10. * @file
  11. * @brief Public APIs for GPIO drivers
  12. */
  13. #ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_H_
  14. #define ZEPHYR_INCLUDE_DRIVERS_GPIO_H_
  15. #include <sys/__assert.h>
  16. #include <sys/slist.h>
  17. #include <zephyr/types.h>
  18. #include <stddef.h>
  19. #include <device.h>
  20. #include <dt-bindings/gpio/gpio.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @defgroup gpio_apis GPIO API
  26. * @ingroup driver_apis
  27. * @{
  28. */
  29. /**
  30. * @brief GPIO Examples
  31. *
  32. * If GPIO PIN number > 32, the binding device name is CONFIG_GPIO_A_NAME.
  33. * If GPIO PIN number > 32 and < 64, the binding device name is CONFIG_GPIO_B_NAME.
  34. * If GPIO PIN number >64 and < GPIO_MAX_PIN_NUM, the binding device name is CONFIG_GPIO_C_NAME.
  35. *
  36. * @code
  37. *
  38. * #include <drivers/gpio.h>
  39. *
  40. * // 1. GPIO output function example
  41. * uint8_t gpio_out_pin = 6, gpio_out_level = 1;
  42. * const char *gpio_dev_name = CONFIG_GPIO_A_NAME;
  43. * int ret;
  44. *
  45. * // If gpio_flags_t masks with GPIO_PULL_UP/GPIO_PULL_DOWN, the GPIO pin state will be pulled up/down.
  46. * // If gpio_flags_t masks with GPIO_INT_DEBOUNCE, the GPIO pin will enable schmitt function.
  47. * // If gpio_flags_t masks with GPIO_OUTPUT | (GPIO_OUTPUT_INIT_HIGH/GPIO_OUTPUT_INIT_LOW), the GPIO pin will output
  48. * // high/low state at initialization.
  49. * gpio_flags_t = GPIO_OUTPUT;
  50. *
  51. * const struct device *gpio_dev = device_get_binding(gpio_dev_name);
  52. * if (!gpio_dev) {
  53. * printk("failed to bind device %s\n", gpio_dev_name);
  54. * return -ENODEV;
  55. * }
  56. *
  57. * ret = gpio_pin_configure(gpio_dev, gpio_out_pin, GPIO_OUTPUT);
  58. * if (ret) {
  59. * printk("failed to configure gpio:%d output\n", gpio_out_pin);
  60. * return ret;
  61. * }
  62. *
  63. * // If gpio_out_level = 1 GPIO will output high level, and when gpio_out_level = 0 will output low level.
  64. * gpio_pin_set(gpio_dev, gpio_out_pin, gpio_out_level);
  65. *
  66. * // 2. GPIO input function example
  67. * uint8_t gpio_in_pin = 6;
  68. * const char *gpio_dev_name = CONFIG_GPIO_A_NAME;
  69. * gpio_pin_t gpio_in_level;
  70. *
  71. * const struct device *gpio_dev = device_get_binding(gpio_dev_name);
  72. * if (!gpio_dev) {
  73. * printk("failed to bind device %s\n", gpio_dev_name);
  74. * return -ENODEV;
  75. * }
  76. *
  77. * ret = gpio_pin_configure(gpio_dev, gpio_in_pin, GPIO_INPUT);
  78. * if (ret) {
  79. * printk("failed to configure gpio:%d input\n", gpio_in_pin);
  80. * return ret;
  81. * }
  82. *
  83. * // Get GPIO input voltage level.
  84. * gpio_pin_get(gpio_dev, gpio_in_pin, &gpio_in_level);
  85. *
  86. * // 3. GPIO interrupt function example
  87. * uint8_t gpio_irq_pin = 6;
  88. * const char *gpio_dev_name = CONFIG_GPIO_A_NAME;
  89. * struct gpio_callback gpio_irq_cb;
  90. *
  91. * static void gpio_irq_callback(const struct device *port,
  92. * struct gpio_callback *cb,
  93. * uint32_t pins) {
  94. * printk("GPIO IRQ callback\n");
  95. * }
  96. *
  97. * const struct device *gpio_dev = device_get_binding(gpio_dev_name);
  98. * if (!gpio_dev) {
  99. * printk("failed to bind device %s\n", gpio_dev_name);
  100. * return -ENODEV;
  101. * }
  102. *
  103. * gpio_pin_configure(gpio_dev, gpio_irq_pin,
  104. * GPIO_INPUT | GPIO_INT_EDGE_TO_INACTIVE | GPIO_ACTIVE_HIGH);
  105. *
  106. * gpio_init_callback(&gpio_irq_cb, gpio_irq_callback, BIT(gpio_irq_pin));
  107. *
  108. * gpio_add_callback(gpio_dev, &gpio_irq_cb);
  109. *
  110. * @endcode
  111. */
  112. /**
  113. * @} end defgroup gpio_apis
  114. */
  115. /**
  116. * @brief GPIO Driver APIs
  117. * @defgroup gpio_interface GPIO Driver APIs
  118. * @ingroup io_interfaces
  119. * @{
  120. */
  121. /**
  122. * @name GPIO input/output configuration flags
  123. * @{
  124. */
  125. /** Enables pin as input. */
  126. #define GPIO_INPUT (1U << 8)
  127. /** Enables pin as output, no change to the output state. */
  128. #define GPIO_OUTPUT (1U << 9)
  129. /** Disables pin for both input and output. */
  130. #define GPIO_DISCONNECTED 0
  131. /** @cond INTERNAL_HIDDEN */
  132. /* Initializes output to a low state. */
  133. #define GPIO_OUTPUT_INIT_LOW (1U << 10)
  134. /* Initializes output to a high state. */
  135. #define GPIO_OUTPUT_INIT_HIGH (1U << 11)
  136. /* Initializes output based on logic level */
  137. #define GPIO_OUTPUT_INIT_LOGICAL (1U << 12)
  138. /** @endcond */
  139. /** Configures GPIO pin as output and initializes it to a low state. */
  140. #define GPIO_OUTPUT_LOW (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW)
  141. /** Configures GPIO pin as output and initializes it to a high state. */
  142. #define GPIO_OUTPUT_HIGH (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH)
  143. /** Configures GPIO pin as output and initializes it to a logic 0. */
  144. #define GPIO_OUTPUT_INACTIVE (GPIO_OUTPUT | \
  145. GPIO_OUTPUT_INIT_LOW | \
  146. GPIO_OUTPUT_INIT_LOGICAL)
  147. /** Configures GPIO pin as output and initializes it to a logic 1. */
  148. #define GPIO_OUTPUT_ACTIVE (GPIO_OUTPUT | \
  149. GPIO_OUTPUT_INIT_HIGH | \
  150. GPIO_OUTPUT_INIT_LOGICAL)
  151. /** @} */
  152. /**
  153. * @name GPIO interrupt configuration flags
  154. * The `GPIO_INT_*` flags are used to specify how input GPIO pins will trigger
  155. * interrupts. The interrupts can be sensitive to pin physical or logical level.
  156. * Interrupts sensitive to pin logical level take into account GPIO_ACTIVE_LOW
  157. * flag. If a pin was configured as Active Low, physical level low will be
  158. * considered as logical level 1 (an active state), physical level high will
  159. * be considered as logical level 0 (an inactive state).
  160. * @{
  161. */
  162. /** Disables GPIO pin interrupt. */
  163. #define GPIO_INT_DISABLE (1U << 13)
  164. /** @cond INTERNAL_HIDDEN */
  165. /* Enables GPIO pin interrupt. */
  166. #define GPIO_INT_ENABLE (1U << 14)
  167. /* GPIO interrupt is sensitive to logical levels.
  168. *
  169. * This is a component flag that should be combined with other
  170. * `GPIO_INT_*` flags to produce a meaningful configuration.
  171. */
  172. #define GPIO_INT_LEVELS_LOGICAL (1U << 15)
  173. /* GPIO interrupt is edge sensitive.
  174. *
  175. * Note: by default interrupts are level sensitive.
  176. *
  177. * This is a component flag that should be combined with other
  178. * `GPIO_INT_*` flags to produce a meaningful configuration.
  179. */
  180. #define GPIO_INT_EDGE (1U << 16)
  181. /* Trigger detection when input state is (or transitions to) physical low or
  182. * logical 0 level.
  183. *
  184. * This is a component flag that should be combined with other
  185. * `GPIO_INT_*` flags to produce a meaningful configuration.
  186. */
  187. #define GPIO_INT_LOW_0 (1U << 17)
  188. /* Trigger detection on input state is (or transitions to) physical high or
  189. * logical 1 level.
  190. *
  191. * This is a component flag that should be combined with other
  192. * `GPIO_INT_*` flags to produce a meaningful configuration.
  193. */
  194. #define GPIO_INT_HIGH_1 (1U << 18)
  195. #define GPIO_INT_MASK (GPIO_INT_DISABLE | \
  196. GPIO_INT_ENABLE | \
  197. GPIO_INT_LEVELS_LOGICAL | \
  198. GPIO_INT_EDGE | \
  199. GPIO_INT_LOW_0 | \
  200. GPIO_INT_HIGH_1)
  201. /** @endcond */
  202. /** Configures GPIO interrupt to be triggered on pin rising edge and enables it.
  203. */
  204. #define GPIO_INT_EDGE_RISING (GPIO_INT_ENABLE | \
  205. GPIO_INT_EDGE | \
  206. GPIO_INT_HIGH_1)
  207. /** Configures GPIO interrupt to be triggered on pin falling edge and enables
  208. * it.
  209. */
  210. #define GPIO_INT_EDGE_FALLING (GPIO_INT_ENABLE | \
  211. GPIO_INT_EDGE | \
  212. GPIO_INT_LOW_0)
  213. /** Configures GPIO interrupt to be triggered on pin rising or falling edge and
  214. * enables it.
  215. */
  216. #define GPIO_INT_EDGE_BOTH (GPIO_INT_ENABLE | \
  217. GPIO_INT_EDGE | \
  218. GPIO_INT_LOW_0 | \
  219. GPIO_INT_HIGH_1)
  220. /** Configures GPIO interrupt to be triggered on pin physical level low and
  221. * enables it.
  222. */
  223. #define GPIO_INT_LEVEL_LOW (GPIO_INT_ENABLE | \
  224. GPIO_INT_LOW_0)
  225. /** Configures GPIO interrupt to be triggered on pin physical level high and
  226. * enables it.
  227. */
  228. #define GPIO_INT_LEVEL_HIGH (GPIO_INT_ENABLE | \
  229. GPIO_INT_HIGH_1)
  230. /** Configures GPIO interrupt to be triggered on pin state change to logical
  231. * level 0 and enables it.
  232. */
  233. #define GPIO_INT_EDGE_TO_INACTIVE (GPIO_INT_ENABLE | \
  234. GPIO_INT_LEVELS_LOGICAL | \
  235. GPIO_INT_EDGE | \
  236. GPIO_INT_LOW_0)
  237. /** Configures GPIO interrupt to be triggered on pin state change to logical
  238. * level 1 and enables it.
  239. */
  240. #define GPIO_INT_EDGE_TO_ACTIVE (GPIO_INT_ENABLE | \
  241. GPIO_INT_LEVELS_LOGICAL | \
  242. GPIO_INT_EDGE | \
  243. GPIO_INT_HIGH_1)
  244. /** Configures GPIO interrupt to be triggered on pin logical level 0 and enables
  245. * it.
  246. */
  247. #define GPIO_INT_LEVEL_INACTIVE (GPIO_INT_ENABLE | \
  248. GPIO_INT_LEVELS_LOGICAL | \
  249. GPIO_INT_LOW_0)
  250. /** Configures GPIO interrupt to be triggered on pin logical level 1 and enables
  251. * it.
  252. */
  253. #define GPIO_INT_LEVEL_ACTIVE (GPIO_INT_ENABLE | \
  254. GPIO_INT_LEVELS_LOGICAL | \
  255. GPIO_INT_HIGH_1)
  256. /** @} */
  257. /** Enable GPIO pin debounce.
  258. *
  259. * @note Drivers that do not support a debounce feature should ignore
  260. * this flag rather than rejecting the configuration with -ENOTSUP.
  261. */
  262. #define GPIO_INT_DEBOUNCE (1U << 19)
  263. /**
  264. * @name GPIO drive strength flags
  265. * The `GPIO_DS_*` flags are used with `gpio_pin_configure` to specify the drive
  266. * strength configuration of a GPIO pin.
  267. *
  268. * The drive strength of individual pins can be configured
  269. * independently for when the pin output is low and high.
  270. *
  271. * The `GPIO_DS_*_LOW` enumerations define the drive strength of a pin
  272. * when output is low.
  273. * The `GPIO_DS_*_HIGH` enumerations define the drive strength of a pin
  274. * when output is high.
  275. *
  276. * The interface supports two different drive strengths:
  277. * `DFLT` - The lowest drive strength supported by the HW
  278. * `ALT` - The highest drive strength supported by the HW
  279. *
  280. * On hardware that supports only one standard drive strength, both
  281. * `DFLT` and `ALT` have the same behavior.
  282. * @{
  283. */
  284. /** @cond INTERNAL_HIDDEN */
  285. #define GPIO_DS_LOW_POS 20
  286. #define GPIO_DS_LOW_MASK (0x3U << GPIO_DS_LOW_POS)
  287. /** @endcond */
  288. /** Default drive strength standard when GPIO pin output is low.
  289. */
  290. #define GPIO_DS_DFLT_LOW (0x0U << GPIO_DS_LOW_POS)
  291. /** Alternative drive strength when GPIO pin output is low.
  292. * For hardware that does not support configurable drive strength
  293. * use the default drive strength.
  294. */
  295. #define GPIO_DS_ALT_LOW (0x1U << GPIO_DS_LOW_POS)
  296. /** @cond INTERNAL_HIDDEN */
  297. #define GPIO_DS_HIGH_POS 22
  298. #define GPIO_DS_HIGH_MASK (0x3U << GPIO_DS_HIGH_POS)
  299. /** @endcond */
  300. /** Default drive strength when GPIO pin output is high.
  301. */
  302. #define GPIO_DS_DFLT_HIGH (0x0U << GPIO_DS_HIGH_POS)
  303. /** Alternative drive strength when GPIO pin output is high.
  304. * For hardware that does not support configurable drive strengths
  305. * use the default drive strength.
  306. */
  307. #define GPIO_DS_ALT_HIGH (0x1U << GPIO_DS_HIGH_POS)
  308. /** @} */
  309. /** @cond INTERNAL_HIDDEN */
  310. #define GPIO_DIR_MASK (GPIO_INPUT | GPIO_OUTPUT)
  311. /** @endcond */
  312. /**
  313. * @brief Identifies a set of pins associated with a port.
  314. *
  315. * The pin with index n is present in the set if and only if the bit
  316. * identified by (1U << n) is set.
  317. */
  318. typedef uint32_t gpio_port_pins_t;
  319. /**
  320. * @brief Provides values for a set of pins associated with a port.
  321. *
  322. * The value for a pin with index n is high (physical mode) or active
  323. * (logical mode) if and only if the bit identified by (1U << n) is set.
  324. * Otherwise the value for the pin is low (physical mode) or inactive
  325. * (logical mode).
  326. *
  327. * Values of this type are often paired with a `gpio_port_pins_t` value
  328. * that specifies which encoded pin values are valid for the operation.
  329. */
  330. typedef uint32_t gpio_port_value_t;
  331. /**
  332. * @brief Provides a type to hold a GPIO pin index.
  333. *
  334. * This reduced-size type is sufficient to record a pin number,
  335. * e.g. from a devicetree GPIOS property.
  336. */
  337. typedef uint8_t gpio_pin_t;
  338. /**
  339. * @brief Provides a type to hold GPIO devicetree flags.
  340. *
  341. * All GPIO flags that can be expressed in devicetree fit in the low 8
  342. * bits of the full flags field, so use a reduced-size type to record
  343. * that part of a GPIOS property.
  344. */
  345. typedef uint8_t gpio_dt_flags_t;
  346. /**
  347. * @brief Provides a type to hold GPIO configuration flags.
  348. *
  349. * This type is sufficient to hold all flags used to control GPIO
  350. * configuration, whether pin or interrupt.
  351. */
  352. typedef uint32_t gpio_flags_t;
  353. /**
  354. * @brief Provides a type to hold GPIO information specified in devicetree
  355. *
  356. * This type is sufficient to hold a GPIO device pointer, pin number,
  357. * and the subset of the flags used to control GPIO configuration
  358. * which may be given in devicetree.
  359. */
  360. struct gpio_dt_spec {
  361. const struct device *port;
  362. gpio_pin_t pin;
  363. gpio_dt_flags_t dt_flags;
  364. };
  365. /**
  366. * @brief Static initializer for a @p gpio_dt_spec
  367. *
  368. * This returns a static initializer for a @p gpio_dt_spec structure given a
  369. * devicetree node identifier, a property specifying a GPIO and an index.
  370. *
  371. * Example devicetree fragment:
  372. *
  373. * n: node {
  374. * foo-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>,
  375. * <&gpio1 2 GPIO_ACTIVE_LOW>;
  376. * }
  377. *
  378. * Example usage:
  379. *
  380. * const struct gpio_dt_spec spec = GPIO_DT_SPEC_GET_BY_IDX(DT_NODELABEL(n),
  381. * foo_gpios, 1);
  382. * // Initializes 'spec' to:
  383. * // {
  384. * // .port = DEVICE_DT_GET(DT_NODELABEL(gpio1)),
  385. * // .pin = 2,
  386. * // .dt_flags = GPIO_ACTIVE_LOW
  387. * // }
  388. *
  389. * The 'gpio' field must still be checked for readiness, e.g. using
  390. * device_is_ready(). It is an error to use this macro unless the node
  391. * exists, has the given property, and that property specifies a GPIO
  392. * controller, pin number, and flags as shown above.
  393. *
  394. * @param node_id devicetree node identifier
  395. * @param prop lowercase-and-underscores property name
  396. * @param idx logical index into "prop"
  397. * @return static initializer for a struct gpio_dt_spec for the property
  398. */
  399. #define GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx) \
  400. { \
  401. .port = DEVICE_DT_GET(DT_GPIO_CTLR_BY_IDX(node_id, prop, idx)),\
  402. .pin = DT_GPIO_PIN_BY_IDX(node_id, prop, idx), \
  403. .dt_flags = DT_GPIO_FLAGS_BY_IDX(node_id, prop, idx), \
  404. }
  405. /**
  406. * @brief Like GPIO_DT_SPEC_GET_BY_IDX(), with a fallback to a default value
  407. *
  408. * If the devicetree node identifier 'node_id' refers to a node with a
  409. * property 'prop', this expands to
  410. * <tt>GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx)</tt>. The @p
  411. * default_value parameter is not expanded in this case.
  412. *
  413. * Otherwise, this expands to @p default_value.
  414. *
  415. * @param node_id devicetree node identifier
  416. * @param prop lowercase-and-underscores property name
  417. * @param idx logical index into "prop"
  418. * @param default_value fallback value to expand to
  419. * @return static initializer for a struct gpio_dt_spec for the property,
  420. * or default_value if the node or property do not exist
  421. */
  422. #define GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, idx, default_value) \
  423. COND_CODE_1(DT_NODE_HAS_PROP(node_id, prop), \
  424. (GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx)), \
  425. (default_value))
  426. /**
  427. * @brief Equivalent to GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, 0).
  428. *
  429. * @param node_id devicetree node identifier
  430. * @param prop lowercase-and-underscores property name
  431. * @return static initializer for a struct gpio_dt_spec for the property
  432. * @see GPIO_DT_SPEC_GET_BY_IDX()
  433. */
  434. #define GPIO_DT_SPEC_GET(node_id, prop) \
  435. GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, 0)
  436. /**
  437. * @brief Equivalent to
  438. * GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, 0, default_value).
  439. *
  440. * @param node_id devicetree node identifier
  441. * @param prop lowercase-and-underscores property name
  442. * @param default_value fallback value to expand to
  443. * @return static initializer for a struct gpio_dt_spec for the property
  444. * @see GPIO_DT_SPEC_GET_BY_IDX_OR()
  445. */
  446. #define GPIO_DT_SPEC_GET_OR(node_id, prop, default_value) \
  447. GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, 0, default_value)
  448. /**
  449. * @brief Static initializer for a @p gpio_dt_spec from a DT_DRV_COMPAT
  450. * instance's GPIO property at an index.
  451. *
  452. * @param inst DT_DRV_COMPAT instance number
  453. * @param prop lowercase-and-underscores property name
  454. * @param idx logical index into "prop"
  455. * @return static initializer for a struct gpio_dt_spec for the property
  456. * @see GPIO_DT_SPEC_GET_BY_IDX()
  457. */
  458. #define GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, idx) \
  459. GPIO_DT_SPEC_GET_BY_IDX(DT_DRV_INST(inst), prop, idx)
  460. /**
  461. * @brief Static initializer for a @p gpio_dt_spec from a DT_DRV_COMPAT
  462. * instance's GPIO property at an index, with fallback
  463. *
  464. * @param inst DT_DRV_COMPAT instance number
  465. * @param prop lowercase-and-underscores property name
  466. * @param idx logical index into "prop"
  467. * @param default_value fallback value to expand to
  468. * @return static initializer for a struct gpio_dt_spec for the property
  469. * @see GPIO_DT_SPEC_GET_BY_IDX()
  470. */
  471. #define GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, idx, default_value) \
  472. GPIO_DT_SPEC_GET_BY_IDX_OR(DT_DRV_INST(inst), prop, idx, default_value)
  473. /**
  474. * @brief Equivalent to GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, 0).
  475. *
  476. * @param inst DT_DRV_COMPAT instance number
  477. * @param prop lowercase-and-underscores property name
  478. * @return static initializer for a struct gpio_dt_spec for the property
  479. * @see GPIO_DT_SPEC_INST_GET_BY_IDX()
  480. */
  481. #define GPIO_DT_SPEC_INST_GET(inst, prop) \
  482. GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, 0)
  483. /**
  484. * @brief Equivalent to
  485. * GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, 0, default_value).
  486. *
  487. * @param inst DT_DRV_COMPAT instance number
  488. * @param prop lowercase-and-underscores property name
  489. * @param default_value fallback value to expand to
  490. * @return static initializer for a struct gpio_dt_spec for the property
  491. * @see GPIO_DT_SPEC_INST_GET_BY_IDX()
  492. */
  493. #define GPIO_DT_SPEC_INST_GET_OR(inst, prop, default_value) \
  494. GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, 0, default_value)
  495. /**
  496. * @brief Maximum number of pins that are supported by `gpio_port_pins_t`.
  497. */
  498. #define GPIO_MAX_PINS_PER_PORT (sizeof(gpio_port_pins_t) * __CHAR_BIT__)
  499. /**
  500. * This structure is common to all GPIO drivers and is expected to be
  501. * the first element in the object pointed to by the config field
  502. * in the device structure.
  503. */
  504. struct gpio_driver_config {
  505. /* Mask identifying pins supported by the controller.
  506. *
  507. * Initialization of this mask is the responsibility of device
  508. * instance generation in the driver.
  509. */
  510. gpio_port_pins_t port_pin_mask;
  511. };
  512. /**
  513. * This structure is common to all GPIO drivers and is expected to be the first
  514. * element in the driver's struct driver_data declaration.
  515. */
  516. struct gpio_driver_data {
  517. /* Mask identifying pins that are configured as active low.
  518. *
  519. * Management of this mask is the responsibility of the
  520. * wrapper functions in this header.
  521. */
  522. gpio_port_pins_t invert;
  523. };
  524. struct gpio_callback;
  525. /**
  526. * @typedef gpio_callback_handler_t
  527. * @brief Define the application callback handler function signature
  528. *
  529. * @param port Device struct for the GPIO device.
  530. * @param cb Original struct gpio_callback owning this handler
  531. * @param pins Mask of pins that triggers the callback handler
  532. *
  533. * Note: cb pointer can be used to retrieve private data through
  534. * CONTAINER_OF() if original struct gpio_callback is stored in
  535. * another private structure.
  536. */
  537. typedef void (*gpio_callback_handler_t)(const struct device *port,
  538. struct gpio_callback *cb,
  539. gpio_port_pins_t pins);
  540. /**
  541. * @brief GPIO callback structure
  542. *
  543. * Used to register a callback in the driver instance callback list.
  544. * As many callbacks as needed can be added as long as each of them
  545. * are unique pointers of struct gpio_callback.
  546. * Beware such structure should not be allocated on stack.
  547. *
  548. * Note: To help setting it, see gpio_init_callback() below
  549. */
  550. struct gpio_callback {
  551. /** This is meant to be used in the driver and the user should not
  552. * mess with it (see drivers/gpio/gpio_utils.h)
  553. */
  554. sys_snode_t node;
  555. /** Actual callback function being called when relevant. */
  556. gpio_callback_handler_t handler;
  557. /** A mask of pins the callback is interested in, if 0 the callback
  558. * will never be called. Such pin_mask can be modified whenever
  559. * necessary by the owner, and thus will affect the handler being
  560. * called or not. The selected pins must be configured to trigger
  561. * an interrupt.
  562. */
  563. gpio_port_pins_t pin_mask;
  564. };
  565. /**
  566. * @cond INTERNAL_HIDDEN
  567. *
  568. * For internal use only, skip these in public documentation.
  569. */
  570. /* Used by driver api function pin_interrupt_configure, these are defined
  571. * in terms of the public flags so we can just mask and pass them
  572. * through to the driver api
  573. */
  574. enum gpio_int_mode {
  575. GPIO_INT_MODE_DISABLED = GPIO_INT_DISABLE,
  576. GPIO_INT_MODE_LEVEL = GPIO_INT_ENABLE,
  577. GPIO_INT_MODE_EDGE = GPIO_INT_ENABLE | GPIO_INT_EDGE,
  578. };
  579. enum gpio_int_trig {
  580. /* Trigger detection when input state is (or transitions to)
  581. * physical low. (Edge Failing or Active Low) */
  582. GPIO_INT_TRIG_LOW = GPIO_INT_LOW_0,
  583. /* Trigger detection when input state is (or transitions to)
  584. * physical high. (Edge Rising or Active High) */
  585. GPIO_INT_TRIG_HIGH = GPIO_INT_HIGH_1,
  586. /* Trigger detection on pin rising or falling edge. */
  587. GPIO_INT_TRIG_BOTH = GPIO_INT_LOW_0 | GPIO_INT_HIGH_1,
  588. };
  589. __subsystem struct gpio_driver_api {
  590. int (*pin_configure)(const struct device *port, gpio_pin_t pin,
  591. gpio_flags_t flags);
  592. int (*port_get_raw)(const struct device *port,
  593. gpio_port_value_t *value);
  594. int (*port_set_masked_raw)(const struct device *port,
  595. gpio_port_pins_t mask,
  596. gpio_port_value_t value);
  597. int (*port_set_bits_raw)(const struct device *port,
  598. gpio_port_pins_t pins);
  599. int (*port_clear_bits_raw)(const struct device *port,
  600. gpio_port_pins_t pins);
  601. int (*port_toggle_bits)(const struct device *port,
  602. gpio_port_pins_t pins);
  603. int (*pin_interrupt_configure)(const struct device *port,
  604. gpio_pin_t pin,
  605. enum gpio_int_mode, enum gpio_int_trig);
  606. int (*manage_callback)(const struct device *port,
  607. struct gpio_callback *cb,
  608. bool set);
  609. uint32_t (*get_pending_int)(const struct device *dev);
  610. };
  611. /**
  612. * @endcond
  613. */
  614. /**
  615. * @brief Configure pin interrupt.
  616. *
  617. * @note This function can also be used to configure interrupts on pins
  618. * not controlled directly by the GPIO module. That is, pins which are
  619. * routed to other modules such as I2C, SPI, UART.
  620. *
  621. * @param port Pointer to device structure for the driver instance.
  622. * @param pin Pin number.
  623. * @param flags Interrupt configuration flags as defined by GPIO_INT_*.
  624. *
  625. * @retval 0 If successful.
  626. * @retval -ENOTSUP If any of the configuration options is not supported
  627. * (unless otherwise directed by flag documentation).
  628. * @retval -EINVAL Invalid argument.
  629. * @retval -EBUSY Interrupt line required to configure pin interrupt is
  630. * already in use.
  631. * @retval -EIO I/O error when accessing an external GPIO chip.
  632. * @retval -EWOULDBLOCK if operation would block.
  633. */
  634. __syscall int gpio_pin_interrupt_configure(const struct device *port,
  635. gpio_pin_t pin,
  636. gpio_flags_t flags);
  637. static inline int z_impl_gpio_pin_interrupt_configure(const struct device *port,
  638. gpio_pin_t pin,
  639. gpio_flags_t flags)
  640. {
  641. const struct gpio_driver_api *api =
  642. (const struct gpio_driver_api *)port->api;
  643. const struct gpio_driver_config *const cfg =
  644. (const struct gpio_driver_config *)port->config;
  645. const struct gpio_driver_data *const data =
  646. (const struct gpio_driver_data *)port->data;
  647. enum gpio_int_trig trig;
  648. enum gpio_int_mode mode;
  649. __ASSERT_NO_MSG((flags & GPIO_INT_DEBOUNCE) == 0);
  650. __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE))
  651. != (GPIO_INT_DISABLE | GPIO_INT_ENABLE),
  652. "Cannot both enable and disable interrupts");
  653. __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE)) != 0U,
  654. "Must either enable or disable interrupts");
  655. __ASSERT(((flags & GPIO_INT_ENABLE) == 0) ||
  656. ((flags & GPIO_INT_EDGE) != 0) ||
  657. ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) !=
  658. (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)),
  659. "Only one of GPIO_INT_LOW_0, GPIO_INT_HIGH_1 can be "
  660. "enabled for a level interrupt.");
  661. __ASSERT(((flags & GPIO_INT_ENABLE) == 0) ||
  662. ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) != 0),
  663. "At least one of GPIO_INT_LOW_0, GPIO_INT_HIGH_1 has to be "
  664. "enabled.");
  665. (void)cfg;
  666. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  667. "Unsupported pin");
  668. if (((flags & GPIO_INT_LEVELS_LOGICAL) != 0) &&
  669. ((data->invert & (gpio_port_pins_t)BIT(pin)) != 0)) {
  670. /* Invert signal bits */
  671. flags ^= (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1);
  672. }
  673. trig = (enum gpio_int_trig)(flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1));
  674. mode = (enum gpio_int_mode)(flags & (GPIO_INT_EDGE | GPIO_INT_DISABLE | GPIO_INT_ENABLE));
  675. return api->pin_interrupt_configure(port, pin, mode, trig);
  676. }
  677. /**
  678. * @brief Configure pin interrupts from a @p gpio_dt_spec.
  679. *
  680. * This is equivalent to:
  681. *
  682. * gpio_pin_interrupt_configure(spec->port, spec->pin, flags);
  683. *
  684. * The <tt>spec->dt_flags</tt> value is not used.
  685. *
  686. * @param spec GPIO specification from devicetree
  687. * @param flags interrupt configuration flags
  688. * @return a value from gpio_pin_interrupt_configure()
  689. */
  690. static inline int gpio_pin_interrupt_configure_dt(const struct gpio_dt_spec *spec,
  691. gpio_flags_t flags)
  692. {
  693. return gpio_pin_interrupt_configure(spec->port, spec->pin, flags);
  694. }
  695. /**
  696. * @brief Configure a single pin.
  697. *
  698. * @param port Pointer to device structure for the driver instance.
  699. * @param pin Pin number to configure.
  700. * @param flags Flags for pin configuration: 'GPIO input/output configuration
  701. * flags', 'GPIO drive strength flags', 'GPIO pin drive flags', 'GPIO pin
  702. * bias flags', GPIO_INT_DEBOUNCE.
  703. *
  704. * @retval 0 If successful.
  705. * @retval -ENOTSUP if any of the configuration options is not supported
  706. * (unless otherwise directed by flag documentation).
  707. * @retval -EINVAL Invalid argument.
  708. * @retval -EIO I/O error when accessing an external GPIO chip.
  709. * @retval -EWOULDBLOCK if operation would block.
  710. */
  711. __syscall int gpio_pin_configure(const struct device *port,
  712. gpio_pin_t pin,
  713. gpio_flags_t flags);
  714. static inline int z_impl_gpio_pin_configure(const struct device *port,
  715. gpio_pin_t pin,
  716. gpio_flags_t flags)
  717. {
  718. const struct gpio_driver_api *api =
  719. (const struct gpio_driver_api *)port->api;
  720. const struct gpio_driver_config *const cfg =
  721. (const struct gpio_driver_config *)port->config;
  722. struct gpio_driver_data *data =
  723. (struct gpio_driver_data *)port->data;
  724. __ASSERT((flags & GPIO_INT_MASK) == 0,
  725. "Interrupt flags are not supported");
  726. __ASSERT((flags & (GPIO_PULL_UP | GPIO_PULL_DOWN)) !=
  727. (GPIO_PULL_UP | GPIO_PULL_DOWN),
  728. "Pull Up and Pull Down should not be enabled simultaneously");
  729. __ASSERT((flags & GPIO_OUTPUT) != 0 || (flags & GPIO_SINGLE_ENDED) == 0,
  730. "Output needs to be enabled for 'Open Drain', 'Open Source' "
  731. "mode to be supported");
  732. __ASSERT_NO_MSG((flags & GPIO_SINGLE_ENDED) != 0 ||
  733. (flags & GPIO_LINE_OPEN_DRAIN) == 0);
  734. __ASSERT((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) == 0
  735. || (flags & GPIO_OUTPUT) != 0,
  736. "Output needs to be enabled to be initialized low or high");
  737. __ASSERT((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH))
  738. != (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH),
  739. "Output cannot be initialized low and high");
  740. if (((flags & GPIO_OUTPUT_INIT_LOGICAL) != 0)
  741. && ((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) != 0)
  742. && ((flags & GPIO_ACTIVE_LOW) != 0)) {
  743. flags ^= GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH;
  744. }
  745. flags &= ~GPIO_OUTPUT_INIT_LOGICAL;
  746. (void)cfg;
  747. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  748. "Unsupported pin");
  749. if ((flags & GPIO_ACTIVE_LOW) != 0) {
  750. data->invert |= (gpio_port_pins_t)BIT(pin);
  751. } else {
  752. data->invert &= ~(gpio_port_pins_t)BIT(pin);
  753. }
  754. return api->pin_configure(port, pin, flags);
  755. }
  756. /**
  757. * @brief Configure a single pin from a @p gpio_dt_spec and some extra flags.
  758. *
  759. * This is equivalent to:
  760. *
  761. * gpio_pin_configure(spec->port, spec->pin, spec->dt_flags | extra_flags);
  762. *
  763. * @param spec GPIO specification from devicetree
  764. * @param extra_flags additional flags
  765. * @return a value from gpio_pin_configure()
  766. */
  767. static inline int gpio_pin_configure_dt(const struct gpio_dt_spec *spec,
  768. gpio_flags_t extra_flags)
  769. {
  770. return gpio_pin_configure(spec->port,
  771. spec->pin,
  772. spec->dt_flags | extra_flags);
  773. }
  774. /**
  775. * @brief Get physical level of all input pins in a port.
  776. *
  777. * A low physical level on the pin will be interpreted as value 0. A high
  778. * physical level will be interpreted as value 1. This function ignores
  779. * GPIO_ACTIVE_LOW flag.
  780. *
  781. * Value of a pin with index n will be represented by bit n in the returned
  782. * port value.
  783. *
  784. * @param port Pointer to the device structure for the driver instance.
  785. * @param value Pointer to a variable where pin values will be stored.
  786. *
  787. * @retval 0 If successful.
  788. * @retval -EIO I/O error when accessing an external GPIO chip.
  789. * @retval -EWOULDBLOCK if operation would block.
  790. */
  791. __syscall int gpio_port_get_raw(const struct device *port,
  792. gpio_port_value_t *value);
  793. static inline int z_impl_gpio_port_get_raw(const struct device *port,
  794. gpio_port_value_t *value)
  795. {
  796. const struct gpio_driver_api *api =
  797. (const struct gpio_driver_api *)port->api;
  798. return api->port_get_raw(port, value);
  799. }
  800. /**
  801. * @brief Get logical level of all input pins in a port.
  802. *
  803. * Get logical level of an input pin taking into account GPIO_ACTIVE_LOW flag.
  804. * If pin is configured as Active High, a low physical level will be interpreted
  805. * as logical value 0. If pin is configured as Active Low, a low physical level
  806. * will be interpreted as logical value 1.
  807. *
  808. * Value of a pin with index n will be represented by bit n in the returned
  809. * port value.
  810. *
  811. * @param port Pointer to the device structure for the driver instance.
  812. * @param value Pointer to a variable where pin values will be stored.
  813. *
  814. * @retval 0 If successful.
  815. * @retval -EIO I/O error when accessing an external GPIO chip.
  816. * @retval -EWOULDBLOCK if operation would block.
  817. */
  818. static inline int gpio_port_get(const struct device *port,
  819. gpio_port_value_t *value)
  820. {
  821. const struct gpio_driver_data *const data =
  822. (const struct gpio_driver_data *)port->data;
  823. int ret;
  824. ret = gpio_port_get_raw(port, value);
  825. if (ret == 0) {
  826. *value ^= data->invert;
  827. }
  828. return ret;
  829. }
  830. /**
  831. * @brief Set physical level of output pins in a port.
  832. *
  833. * Writing value 0 to the pin will set it to a low physical level. Writing
  834. * value 1 will set it to a high physical level. This function ignores
  835. * GPIO_ACTIVE_LOW flag.
  836. *
  837. * Pin with index n is represented by bit n in mask and value parameter.
  838. *
  839. * @param port Pointer to the device structure for the driver instance.
  840. * @param mask Mask indicating which pins will be modified.
  841. * @param value Value assigned to the output pins.
  842. *
  843. * @retval 0 If successful.
  844. * @retval -EIO I/O error when accessing an external GPIO chip.
  845. * @retval -EWOULDBLOCK if operation would block.
  846. */
  847. __syscall int gpio_port_set_masked_raw(const struct device *port,
  848. gpio_port_pins_t mask,
  849. gpio_port_value_t value);
  850. static inline int z_impl_gpio_port_set_masked_raw(const struct device *port,
  851. gpio_port_pins_t mask,
  852. gpio_port_value_t value)
  853. {
  854. const struct gpio_driver_api *api =
  855. (const struct gpio_driver_api *)port->api;
  856. return api->port_set_masked_raw(port, mask, value);
  857. }
  858. /**
  859. * @brief Set logical level of output pins in a port.
  860. *
  861. * Set logical level of an output pin taking into account GPIO_ACTIVE_LOW flag.
  862. * Value 0 sets the pin in logical 0 / inactive state. Value 1 sets the pin in
  863. * logical 1 / active state. If pin is configured as Active High, the default,
  864. * setting it in inactive state will force the pin to a low physical level. If
  865. * pin is configured as Active Low, setting it in inactive state will force the
  866. * pin to a high physical level.
  867. *
  868. * Pin with index n is represented by bit n in mask and value parameter.
  869. *
  870. * @param port Pointer to the device structure for the driver instance.
  871. * @param mask Mask indicating which pins will be modified.
  872. * @param value Value assigned to the output pins.
  873. *
  874. * @retval 0 If successful.
  875. * @retval -EIO I/O error when accessing an external GPIO chip.
  876. * @retval -EWOULDBLOCK if operation would block.
  877. */
  878. static inline int gpio_port_set_masked(const struct device *port,
  879. gpio_port_pins_t mask,
  880. gpio_port_value_t value)
  881. {
  882. const struct gpio_driver_data *const data =
  883. (const struct gpio_driver_data *)port->data;
  884. value ^= data->invert;
  885. return gpio_port_set_masked_raw(port, mask, value);
  886. }
  887. /**
  888. * @brief Set physical level of selected output pins to high.
  889. *
  890. * @param port Pointer to the device structure for the driver instance.
  891. * @param pins Value indicating which pins will be modified.
  892. *
  893. * @retval 0 If successful.
  894. * @retval -EIO I/O error when accessing an external GPIO chip.
  895. * @retval -EWOULDBLOCK if operation would block.
  896. */
  897. __syscall int gpio_port_set_bits_raw(const struct device *port,
  898. gpio_port_pins_t pins);
  899. static inline int z_impl_gpio_port_set_bits_raw(const struct device *port,
  900. gpio_port_pins_t pins)
  901. {
  902. const struct gpio_driver_api *api =
  903. (const struct gpio_driver_api *)port->api;
  904. return api->port_set_bits_raw(port, pins);
  905. }
  906. /**
  907. * @brief Set logical level of selected output pins to active.
  908. *
  909. * @param port Pointer to the device structure for the driver instance.
  910. * @param pins Value indicating which pins will be modified.
  911. *
  912. * @retval 0 If successful.
  913. * @retval -EIO I/O error when accessing an external GPIO chip.
  914. * @retval -EWOULDBLOCK if operation would block.
  915. */
  916. static inline int gpio_port_set_bits(const struct device *port,
  917. gpio_port_pins_t pins)
  918. {
  919. return gpio_port_set_masked(port, pins, pins);
  920. }
  921. /**
  922. * @brief Set physical level of selected output pins to low.
  923. *
  924. * @param port Pointer to the device structure for the driver instance.
  925. * @param pins Value indicating which pins will be modified.
  926. *
  927. * @retval 0 If successful.
  928. * @retval -EIO I/O error when accessing an external GPIO chip.
  929. * @retval -EWOULDBLOCK if operation would block.
  930. */
  931. __syscall int gpio_port_clear_bits_raw(const struct device *port,
  932. gpio_port_pins_t pins);
  933. static inline int z_impl_gpio_port_clear_bits_raw(const struct device *port,
  934. gpio_port_pins_t pins)
  935. {
  936. const struct gpio_driver_api *api =
  937. (const struct gpio_driver_api *)port->api;
  938. return api->port_clear_bits_raw(port, pins);
  939. }
  940. /**
  941. * @brief Set logical level of selected output pins to inactive.
  942. *
  943. * @param port Pointer to the device structure for the driver instance.
  944. * @param pins Value indicating which pins will be modified.
  945. *
  946. * @retval 0 If successful.
  947. * @retval -EIO I/O error when accessing an external GPIO chip.
  948. * @retval -EWOULDBLOCK if operation would block.
  949. */
  950. static inline int gpio_port_clear_bits(const struct device *port,
  951. gpio_port_pins_t pins)
  952. {
  953. return gpio_port_set_masked(port, pins, 0);
  954. }
  955. /**
  956. * @brief Toggle level of selected output pins.
  957. *
  958. * @param port Pointer to the device structure for the driver instance.
  959. * @param pins Value indicating which pins will be modified.
  960. *
  961. * @retval 0 If successful.
  962. * @retval -EIO I/O error when accessing an external GPIO chip.
  963. * @retval -EWOULDBLOCK if operation would block.
  964. */
  965. __syscall int gpio_port_toggle_bits(const struct device *port,
  966. gpio_port_pins_t pins);
  967. static inline int z_impl_gpio_port_toggle_bits(const struct device *port,
  968. gpio_port_pins_t pins)
  969. {
  970. const struct gpio_driver_api *api =
  971. (const struct gpio_driver_api *)port->api;
  972. return api->port_toggle_bits(port, pins);
  973. }
  974. /**
  975. * @brief Set physical level of selected output pins.
  976. *
  977. * @param port Pointer to the device structure for the driver instance.
  978. * @param set_pins Value indicating which pins will be set to high.
  979. * @param clear_pins Value indicating which pins will be set to low.
  980. *
  981. * @retval 0 If successful.
  982. * @retval -EIO I/O error when accessing an external GPIO chip.
  983. * @retval -EWOULDBLOCK if operation would block.
  984. */
  985. static inline int gpio_port_set_clr_bits_raw(const struct device *port,
  986. gpio_port_pins_t set_pins,
  987. gpio_port_pins_t clear_pins)
  988. {
  989. __ASSERT((set_pins & clear_pins) == 0, "Set and Clear pins overlap");
  990. return gpio_port_set_masked_raw(port, set_pins | clear_pins, set_pins);
  991. }
  992. /**
  993. * @brief Set logical level of selected output pins.
  994. *
  995. * @param port Pointer to the device structure for the driver instance.
  996. * @param set_pins Value indicating which pins will be set to active.
  997. * @param clear_pins Value indicating which pins will be set to inactive.
  998. *
  999. * @retval 0 If successful.
  1000. * @retval -EIO I/O error when accessing an external GPIO chip.
  1001. * @retval -EWOULDBLOCK if operation would block.
  1002. */
  1003. static inline int gpio_port_set_clr_bits(const struct device *port,
  1004. gpio_port_pins_t set_pins,
  1005. gpio_port_pins_t clear_pins)
  1006. {
  1007. __ASSERT((set_pins & clear_pins) == 0, "Set and Clear pins overlap");
  1008. return gpio_port_set_masked(port, set_pins | clear_pins, set_pins);
  1009. }
  1010. /**
  1011. * @brief Get physical level of an input pin.
  1012. *
  1013. * A low physical level on the pin will be interpreted as value 0. A high
  1014. * physical level will be interpreted as value 1. This function ignores
  1015. * GPIO_ACTIVE_LOW flag.
  1016. *
  1017. * @param port Pointer to the device structure for the driver instance.
  1018. * @param pin Pin number.
  1019. *
  1020. * @retval 1 If pin physical level is high.
  1021. * @retval 0 If pin physical level is low.
  1022. * @retval -EIO I/O error when accessing an external GPIO chip.
  1023. * @retval -EWOULDBLOCK if operation would block.
  1024. */
  1025. static inline int gpio_pin_get_raw(const struct device *port, gpio_pin_t pin)
  1026. {
  1027. const struct gpio_driver_config *const cfg =
  1028. (const struct gpio_driver_config *)port->config;
  1029. gpio_port_value_t value;
  1030. int ret;
  1031. (void)cfg;
  1032. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  1033. "Unsupported pin");
  1034. ret = gpio_port_get_raw(port, &value);
  1035. if (ret == 0) {
  1036. ret = (value & (gpio_port_pins_t)BIT(pin)) != 0 ? 1 : 0;
  1037. }
  1038. return ret;
  1039. }
  1040. /**
  1041. * @brief Get logical level of an input pin.
  1042. *
  1043. * Get logical level of an input pin taking into account GPIO_ACTIVE_LOW flag.
  1044. * If pin is configured as Active High, a low physical level will be interpreted
  1045. * as logical value 0. If pin is configured as Active Low, a low physical level
  1046. * will be interpreted as logical value 1.
  1047. *
  1048. * Note: If pin is configured as Active High, the default, gpio_pin_get()
  1049. * function is equivalent to gpio_pin_get_raw().
  1050. *
  1051. * @param port Pointer to the device structure for the driver instance.
  1052. * @param pin Pin number.
  1053. *
  1054. * @retval 1 If pin logical value is 1 / active.
  1055. * @retval 0 If pin logical value is 0 / inactive.
  1056. * @retval -EIO I/O error when accessing an external GPIO chip.
  1057. * @retval -EWOULDBLOCK if operation would block.
  1058. */
  1059. static inline int gpio_pin_get(const struct device *port, gpio_pin_t pin)
  1060. {
  1061. const struct gpio_driver_config *const cfg =
  1062. (const struct gpio_driver_config *)port->config;
  1063. gpio_port_value_t value;
  1064. int ret;
  1065. (void)cfg;
  1066. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  1067. "Unsupported pin");
  1068. ret = gpio_port_get(port, &value);
  1069. if (ret == 0) {
  1070. ret = (value & (gpio_port_pins_t)BIT(pin)) != 0 ? 1 : 0;
  1071. }
  1072. return ret;
  1073. }
  1074. /**
  1075. * @brief Get logical level of an input pin from a @p gpio_dt_spec.
  1076. *
  1077. * This is equivalent to:
  1078. *
  1079. * gpio_pin_get(spec->port, spec->pin);
  1080. *
  1081. * @param spec GPIO specification from devicetree
  1082. * @return a value from gpio_pin_get()
  1083. */
  1084. static inline int gpio_pin_get_dt(const struct gpio_dt_spec *spec)
  1085. {
  1086. return gpio_pin_get(spec->port, spec->pin);
  1087. }
  1088. /**
  1089. * @brief Set physical level of an output pin.
  1090. *
  1091. * Writing value 0 to the pin will set it to a low physical level. Writing any
  1092. * value other than 0 will set it to a high physical level. This function
  1093. * ignores GPIO_ACTIVE_LOW flag.
  1094. *
  1095. * @param port Pointer to the device structure for the driver instance.
  1096. * @param pin Pin number.
  1097. * @param value Value assigned to the pin.
  1098. *
  1099. * @retval 0 If successful.
  1100. * @retval -EIO I/O error when accessing an external GPIO chip.
  1101. * @retval -EWOULDBLOCK if operation would block.
  1102. */
  1103. static inline int gpio_pin_set_raw(const struct device *port, gpio_pin_t pin,
  1104. int value)
  1105. {
  1106. const struct gpio_driver_config *const cfg =
  1107. (const struct gpio_driver_config *)port->config;
  1108. int ret;
  1109. (void)cfg;
  1110. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  1111. "Unsupported pin");
  1112. if (value != 0) {
  1113. ret = gpio_port_set_bits_raw(port, (gpio_port_pins_t)BIT(pin));
  1114. } else {
  1115. ret = gpio_port_clear_bits_raw(port, (gpio_port_pins_t)BIT(pin));
  1116. }
  1117. return ret;
  1118. }
  1119. /**
  1120. * @brief Set logical level of an output pin.
  1121. *
  1122. * Set logical level of an output pin taking into account GPIO_ACTIVE_LOW flag.
  1123. * Value 0 sets the pin in logical 0 / inactive state. Any value other than 0
  1124. * sets the pin in logical 1 / active state. If pin is configured as Active
  1125. * High, the default, setting it in inactive state will force the pin to a low
  1126. * physical level. If pin is configured as Active Low, setting it in inactive
  1127. * state will force the pin to a high physical level.
  1128. *
  1129. * Note: If pin is configured as Active High, gpio_pin_set() function is
  1130. * equivalent to gpio_pin_set_raw().
  1131. *
  1132. * @param port Pointer to the device structure for the driver instance.
  1133. * @param pin Pin number.
  1134. * @param value Value assigned to the pin.
  1135. *
  1136. * @retval 0 If successful.
  1137. * @retval -EIO I/O error when accessing an external GPIO chip.
  1138. * @retval -EWOULDBLOCK if operation would block.
  1139. */
  1140. static inline int gpio_pin_set(const struct device *port, gpio_pin_t pin,
  1141. int value)
  1142. {
  1143. const struct gpio_driver_config *const cfg =
  1144. (const struct gpio_driver_config *)port->config;
  1145. const struct gpio_driver_data *const data =
  1146. (const struct gpio_driver_data *)port->data;
  1147. (void)cfg;
  1148. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  1149. "Unsupported pin");
  1150. if (data->invert & (gpio_port_pins_t)BIT(pin)) {
  1151. value = (value != 0) ? 0 : 1;
  1152. }
  1153. return gpio_pin_set_raw(port, pin, value);
  1154. }
  1155. /**
  1156. * @brief Set logical level of a output pin from a @p gpio_dt_spec.
  1157. *
  1158. * This is equivalent to:
  1159. *
  1160. * gpio_pin_set(spec->port, spec->pin, value);
  1161. *
  1162. * @param spec GPIO specification from devicetree
  1163. * @param value Value assigned to the pin.
  1164. * @return a value from gpio_pin_set()
  1165. */
  1166. static inline int gpio_pin_set_dt(const struct gpio_dt_spec *spec, int value)
  1167. {
  1168. return gpio_pin_set(spec->port, spec->pin, value);
  1169. }
  1170. /**
  1171. * @brief Toggle pin level.
  1172. *
  1173. * @param port Pointer to the device structure for the driver instance.
  1174. * @param pin Pin number.
  1175. *
  1176. * @retval 0 If successful.
  1177. * @retval -EIO I/O error when accessing an external GPIO chip.
  1178. * @retval -EWOULDBLOCK if operation would block.
  1179. */
  1180. static inline int gpio_pin_toggle(const struct device *port, gpio_pin_t pin)
  1181. {
  1182. const struct gpio_driver_config *const cfg =
  1183. (const struct gpio_driver_config *)port->config;
  1184. (void)cfg;
  1185. __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
  1186. "Unsupported pin");
  1187. return gpio_port_toggle_bits(port, (gpio_port_pins_t)BIT(pin));
  1188. }
  1189. /**
  1190. * @brief Toggle pin level from a @p gpio_dt_spec.
  1191. *
  1192. * This is equivalent to:
  1193. *
  1194. * gpio_pin_toggle(spec->port, spec->pin);
  1195. *
  1196. * @param spec GPIO specification from devicetree
  1197. * @return a value from gpio_pin_toggle()
  1198. */
  1199. static inline int gpio_pin_toggle_dt(const struct gpio_dt_spec *spec)
  1200. {
  1201. return gpio_pin_toggle(spec->port, spec->pin);
  1202. }
  1203. /**
  1204. * @brief Helper to initialize a struct gpio_callback properly
  1205. * @param callback A valid Application's callback structure pointer.
  1206. * @param handler A valid handler function pointer.
  1207. * @param pin_mask A bit mask of relevant pins for the handler
  1208. */
  1209. static inline void gpio_init_callback(struct gpio_callback *callback,
  1210. gpio_callback_handler_t handler,
  1211. gpio_port_pins_t pin_mask)
  1212. {
  1213. __ASSERT(callback, "Callback pointer should not be NULL");
  1214. __ASSERT(handler, "Callback handler pointer should not be NULL");
  1215. callback->handler = handler;
  1216. callback->pin_mask = pin_mask;
  1217. }
  1218. /**
  1219. * @brief Add an application callback.
  1220. * @param port Pointer to the device structure for the driver instance.
  1221. * @param callback A valid Application's callback structure pointer.
  1222. * @return 0 if successful, negative errno code on failure.
  1223. *
  1224. * @note Callbacks may be added to the device from within a callback
  1225. * handler invocation, but whether they are invoked for the current
  1226. * GPIO event is not specified.
  1227. *
  1228. * Note: enables to add as many callback as needed on the same port.
  1229. */
  1230. static inline int gpio_add_callback(const struct device *port,
  1231. struct gpio_callback *callback)
  1232. {
  1233. const struct gpio_driver_api *api =
  1234. (const struct gpio_driver_api *)port->api;
  1235. if (api->manage_callback == NULL) {
  1236. return -ENOTSUP;
  1237. }
  1238. return api->manage_callback(port, callback, true);
  1239. }
  1240. /**
  1241. * @brief Remove an application callback.
  1242. * @param port Pointer to the device structure for the driver instance.
  1243. * @param callback A valid application's callback structure pointer.
  1244. * @return 0 if successful, negative errno code on failure.
  1245. *
  1246. * @warning It is explicitly permitted, within a callback handler, to
  1247. * remove the registration for the callback that is running, i.e. @p
  1248. * callback. Attempts to remove other registrations on the same
  1249. * device may result in undefined behavior, including failure to
  1250. * invoke callbacks that remain registered and unintended invocation
  1251. * of removed callbacks.
  1252. *
  1253. * Note: enables to remove as many callbacks as added through
  1254. * gpio_add_callback().
  1255. */
  1256. static inline int gpio_remove_callback(const struct device *port,
  1257. struct gpio_callback *callback)
  1258. {
  1259. const struct gpio_driver_api *api =
  1260. (const struct gpio_driver_api *)port->api;
  1261. if (api->manage_callback == NULL) {
  1262. return -ENOTSUP;
  1263. }
  1264. return api->manage_callback(port, callback, false);
  1265. }
  1266. /**
  1267. * @brief Function to get pending interrupts
  1268. *
  1269. * The purpose of this function is to return the interrupt
  1270. * status register for the device.
  1271. * This is especially useful when waking up from
  1272. * low power states to check the wake up source.
  1273. *
  1274. * @param dev Pointer to the device structure for the driver instance.
  1275. *
  1276. * @retval status != 0 if at least one gpio interrupt is pending.
  1277. * @retval 0 if no gpio interrupt is pending.
  1278. */
  1279. __syscall int gpio_get_pending_int(const struct device *dev);
  1280. static inline int z_impl_gpio_get_pending_int(const struct device *dev)
  1281. {
  1282. const struct gpio_driver_api *api =
  1283. (const struct gpio_driver_api *)dev->api;
  1284. if (api->get_pending_int == NULL) {
  1285. return -ENOTSUP;
  1286. }
  1287. return api->get_pending_int(dev);
  1288. }
  1289. /**
  1290. * @}
  1291. */
  1292. #ifdef __cplusplus
  1293. }
  1294. #endif
  1295. #include <syscalls/gpio.h>
  1296. #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_H_ */