Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
gpio.h
Go to the documentation of this file.
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
15#ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_H_
16#define ZEPHYR_INCLUDE_DRIVERS_GPIO_H_
17
18#include <errno.h>
19
20#include <zephyr/sys/__assert.h>
21#include <zephyr/sys/slist.h>
22
23#include <zephyr/types.h>
24#include <stddef.h>
25#include <zephyr/device.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
45#define GPIO_INPUT (1U << 16)
46
48#define GPIO_OUTPUT (1U << 17)
49
51#define GPIO_DISCONNECTED 0
52
55/* Initializes output to a low state. */
56#define GPIO_OUTPUT_INIT_LOW (1U << 18)
57
58/* Initializes output to a high state. */
59#define GPIO_OUTPUT_INIT_HIGH (1U << 19)
60
61/* Initializes output based on logic level */
62#define GPIO_OUTPUT_INIT_LOGICAL (1U << 20)
63
67#define GPIO_OUTPUT_LOW (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW)
69#define GPIO_OUTPUT_HIGH (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH)
71#define GPIO_OUTPUT_INACTIVE (GPIO_OUTPUT | \
72 GPIO_OUTPUT_INIT_LOW | \
73 GPIO_OUTPUT_INIT_LOGICAL)
75#define GPIO_OUTPUT_ACTIVE (GPIO_OUTPUT | \
76 GPIO_OUTPUT_INIT_HIGH | \
77 GPIO_OUTPUT_INIT_LOGICAL)
78
98#define GPIO_INT_DISABLE (1U << 21)
99
102/* Enables GPIO pin interrupt. */
103#define GPIO_INT_ENABLE (1U << 22)
104
105/* GPIO interrupt is sensitive to logical levels.
106 *
107 * This is a component flag that should be combined with other
108 * `GPIO_INT_*` flags to produce a meaningful configuration.
109 */
110#define GPIO_INT_LEVELS_LOGICAL (1U << 23)
111
112/* GPIO interrupt is edge sensitive.
113 *
114 * Note: by default interrupts are level sensitive.
115 *
116 * This is a component flag that should be combined with other
117 * `GPIO_INT_*` flags to produce a meaningful configuration.
118 */
119#define GPIO_INT_EDGE (1U << 24)
120
121/* Trigger detection when input state is (or transitions to) physical low or
122 * logical 0 level.
123 *
124 * This is a component flag that should be combined with other
125 * `GPIO_INT_*` flags to produce a meaningful configuration.
126 */
127#define GPIO_INT_LOW_0 (1U << 25)
128
129/* Trigger detection on input state is (or transitions to) physical high or
130 * logical 1 level.
131 *
132 * This is a component flag that should be combined with other
133 * `GPIO_INT_*` flags to produce a meaningful configuration.
134 */
135#define GPIO_INT_HIGH_1 (1U << 26)
136
137#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
138/* Disable/Enable interrupt functionality without changing other interrupt
139 * related register, such as clearing the pending register.
140 *
141 * This is a component flag that should be combined with `GPIO_INT_ENABLE` or
142 * `GPIO_INT_DISABLE` flags to produce a meaningful configuration.
143 */
144#define GPIO_INT_ENABLE_DISABLE_ONLY (1u << 27)
145#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
146
147#define GPIO_INT_MASK (GPIO_INT_DISABLE | \
148 GPIO_INT_ENABLE | \
149 GPIO_INT_LEVELS_LOGICAL | \
150 GPIO_INT_EDGE | \
151 GPIO_INT_LOW_0 | \
152 GPIO_INT_HIGH_1)
153
158#define GPIO_INT_EDGE_RISING (GPIO_INT_ENABLE | \
159 GPIO_INT_EDGE | \
160 GPIO_INT_HIGH_1)
161
165#define GPIO_INT_EDGE_FALLING (GPIO_INT_ENABLE | \
166 GPIO_INT_EDGE | \
167 GPIO_INT_LOW_0)
168
172#define GPIO_INT_EDGE_BOTH (GPIO_INT_ENABLE | \
173 GPIO_INT_EDGE | \
174 GPIO_INT_LOW_0 | \
175 GPIO_INT_HIGH_1)
176
180#define GPIO_INT_LEVEL_LOW (GPIO_INT_ENABLE | \
181 GPIO_INT_LOW_0)
182
186#define GPIO_INT_LEVEL_HIGH (GPIO_INT_ENABLE | \
187 GPIO_INT_HIGH_1)
188
192#define GPIO_INT_EDGE_TO_INACTIVE (GPIO_INT_ENABLE | \
193 GPIO_INT_LEVELS_LOGICAL | \
194 GPIO_INT_EDGE | \
195 GPIO_INT_LOW_0)
196
200#define GPIO_INT_EDGE_TO_ACTIVE (GPIO_INT_ENABLE | \
201 GPIO_INT_LEVELS_LOGICAL | \
202 GPIO_INT_EDGE | \
203 GPIO_INT_HIGH_1)
204
208#define GPIO_INT_LEVEL_INACTIVE (GPIO_INT_ENABLE | \
209 GPIO_INT_LEVELS_LOGICAL | \
210 GPIO_INT_LOW_0)
211
215#define GPIO_INT_LEVEL_ACTIVE (GPIO_INT_ENABLE | \
216 GPIO_INT_LEVELS_LOGICAL | \
217 GPIO_INT_HIGH_1)
218
222#define GPIO_DIR_MASK (GPIO_INPUT | GPIO_OUTPUT)
232
245
253
265
273
288 const struct device *port;
293};
294
329#define GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx) \
330 { \
331 .port = DEVICE_DT_GET(DT_GPIO_CTLR_BY_IDX(node_id, prop, idx)),\
332 .pin = DT_GPIO_PIN_BY_IDX(node_id, prop, idx), \
333 .dt_flags = DT_GPIO_FLAGS_BY_IDX(node_id, prop, idx), \
334 }
335
353#define GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, idx, default_value) \
354 COND_CODE_1(DT_NODE_HAS_PROP(node_id, prop), \
355 (GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx)), \
356 (default_value))
357
366#define GPIO_DT_SPEC_GET(node_id, prop) \
367 GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, 0)
368
379#define GPIO_DT_SPEC_GET_OR(node_id, prop, default_value) \
380 GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, 0, default_value)
381
392#define GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, idx) \
393 GPIO_DT_SPEC_GET_BY_IDX(DT_DRV_INST(inst), prop, idx)
394
406#define GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, idx, default_value) \
407 COND_CODE_1(DT_PROP_HAS_IDX(DT_DRV_INST(inst), prop, idx), \
408 (GPIO_DT_SPEC_GET_BY_IDX(DT_DRV_INST(inst), prop, idx)), \
409 (default_value))
410
419#define GPIO_DT_SPEC_INST_GET(inst, prop) \
420 GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, 0)
421
432#define GPIO_DT_SPEC_INST_GET_OR(inst, prop, default_value) \
433 GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, 0, default_value)
434
435/*
436 * @cond INTERNAL_HIDDEN
437 */
438
449#define Z_GPIO_GEN_BITMASK_COND(node_id, prop, off_idx, sz_idx) \
450 COND_CODE_1(DT_PROP_HAS_IDX(node_id, prop, off_idx), \
451 (COND_CODE_0(DT_PROP_BY_IDX(node_id, prop, sz_idx), \
452 (0), \
453 (GENMASK64(DT_PROP_BY_IDX(node_id, prop, off_idx) + \
454 DT_PROP_BY_IDX(node_id, prop, sz_idx) - 1, \
455 DT_PROP_BY_IDX(node_id, prop, off_idx)))) \
456 ), (0))
457
465#define Z_GPIO_GEN_RESERVED_RANGES_COND(odd_it, node_id) \
466 COND_CODE_1(DT_PROP_HAS_IDX(node_id, gpio_reserved_ranges, odd_it), \
467 (Z_GPIO_GEN_BITMASK_COND(node_id, \
468 gpio_reserved_ranges, \
469 GET_ARG_N(odd_it, Z_SPARSE_LIST_EVEN_NUMBERS), \
470 odd_it)), \
471 (0))
472
564#define GPIO_DT_RESERVED_RANGES_NGPIOS(node_id, ngpios) \
565 ((gpio_port_pins_t) \
566 COND_CODE_1(DT_NODE_HAS_PROP(node_id, gpio_reserved_ranges), \
567 (GENMASK64(BITS_PER_LONG_LONG - 1, ngpios) \
568 | FOR_EACH_FIXED_ARG(Z_GPIO_GEN_RESERVED_RANGES_COND, \
569 (|), \
570 node_id, \
571 LIST_DROP_EMPTY(Z_SPARSE_LIST_ODD_NUMBERS))), \
572 (0)))
573
581#define GPIO_DT_RESERVED_RANGES(node_id) \
582 GPIO_DT_RESERVED_RANGES_NGPIOS(node_id, DT_PROP(node_id, ngpios))
583
593#define GPIO_DT_INST_RESERVED_RANGES_NGPIOS(inst, ngpios) \
594 GPIO_DT_RESERVED_RANGES_NGPIOS(DT_DRV_INST(inst), ngpios)
595
604#define GPIO_DT_INST_RESERVED_RANGES(inst) \
605 GPIO_DT_RESERVED_RANGES(DT_DRV_INST(inst))
606
655#define GPIO_DT_PORT_PIN_MASK_NGPIOS_EXC(node_id, ngpios) \
656 ((gpio_port_pins_t) \
657 COND_CODE_0(ngpios, \
658 (0), \
659 (COND_CODE_1(DT_NODE_HAS_PROP(node_id, gpio_reserved_ranges), \
660 ((GENMASK64(ngpios - 1, 0) & \
661 ~GPIO_DT_RESERVED_RANGES_NGPIOS(node_id, ngpios))), \
662 (GENMASK64(ngpios - 1, 0))) \
663 ) \
664 ))
665
675#define GPIO_DT_INST_PORT_PIN_MASK_NGPIOS_EXC(inst, ngpios) \
676 GPIO_DT_PORT_PIN_MASK_NGPIOS_EXC(DT_DRV_INST(inst), ngpios)
677
681#define GPIO_MAX_PINS_PER_PORT (sizeof(gpio_port_pins_t) * __CHAR_BIT__)
682
695};
696
708};
709
710struct gpio_callback;
711
724typedef void (*gpio_callback_handler_t)(const struct device *port,
725 struct gpio_callback *cb,
726 gpio_port_pins_t pins);
727
743
746
754};
755
762/* Used by driver api function pin_interrupt_configure, these are defined
763 * in terms of the public flags so we can just mask and pass them
764 * through to the driver api
765 */
766enum gpio_int_mode {
767 GPIO_INT_MODE_DISABLED = GPIO_INT_DISABLE,
768 GPIO_INT_MODE_LEVEL = GPIO_INT_ENABLE,
769 GPIO_INT_MODE_EDGE = GPIO_INT_ENABLE | GPIO_INT_EDGE,
770#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
771 GPIO_INT_MODE_DISABLE_ONLY = GPIO_INT_DISABLE | GPIO_INT_ENABLE_DISABLE_ONLY,
772 GPIO_INT_MODE_ENABLE_ONLY = GPIO_INT_ENABLE | GPIO_INT_ENABLE_DISABLE_ONLY,
773#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
774};
775
776enum gpio_int_trig {
777 /* Trigger detection when input state is (or transitions to)
778 * physical low. (Edge Falling or Active Low)
779 */
780 GPIO_INT_TRIG_LOW = GPIO_INT_LOW_0,
781 /* Trigger detection when input state is (or transitions to)
782 * physical high. (Edge Rising or Active High) */
783 GPIO_INT_TRIG_HIGH = GPIO_INT_HIGH_1,
784 /* Trigger detection on pin rising or falling edge. */
785 GPIO_INT_TRIG_BOTH = GPIO_INT_LOW_0 | GPIO_INT_HIGH_1,
786};
787
788__subsystem struct gpio_driver_api {
789 int (*pin_configure)(const struct device *port, gpio_pin_t pin,
791#ifdef CONFIG_GPIO_GET_CONFIG
792 int (*pin_get_config)(const struct device *port, gpio_pin_t pin,
794#endif
795 int (*port_get_raw)(const struct device *port,
796 gpio_port_value_t *value);
797 int (*port_set_masked_raw)(const struct device *port,
798 gpio_port_pins_t mask,
799 gpio_port_value_t value);
800 int (*port_set_bits_raw)(const struct device *port,
801 gpio_port_pins_t pins);
802 int (*port_clear_bits_raw)(const struct device *port,
803 gpio_port_pins_t pins);
804 int (*port_toggle_bits)(const struct device *port,
805 gpio_port_pins_t pins);
806 int (*pin_interrupt_configure)(const struct device *port,
807 gpio_pin_t pin,
808 enum gpio_int_mode, enum gpio_int_trig);
809 int (*manage_callback)(const struct device *port,
810 struct gpio_callback *cb,
811 bool set);
812 uint32_t (*get_pending_int)(const struct device *dev);
813#ifdef CONFIG_GPIO_GET_DIRECTION
814 int (*port_get_direction)(const struct device *port, gpio_port_pins_t map,
815 gpio_port_pins_t *inputs, gpio_port_pins_t *outputs);
816#endif /* CONFIG_GPIO_GET_DIRECTION */
817};
818
831static inline bool gpio_is_ready_dt(const struct gpio_dt_spec *spec)
832{
833 /* Validate port is ready */
834 return device_is_ready(spec->port);
835}
836
858__syscall int gpio_pin_interrupt_configure(const struct device *port,
859 gpio_pin_t pin,
861
862static inline int z_impl_gpio_pin_interrupt_configure(const struct device *port,
863 gpio_pin_t pin,
865{
866 const struct gpio_driver_api *api =
867 (const struct gpio_driver_api *)port->api;
868 __unused const struct gpio_driver_config *const cfg =
869 (const struct gpio_driver_config *)port->config;
870 const struct gpio_driver_data *const data =
871 (const struct gpio_driver_data *)port->data;
872 enum gpio_int_trig trig;
873 enum gpio_int_mode mode;
874
875 if (api->pin_interrupt_configure == NULL) {
876 return -ENOSYS;
877 }
878
879 __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE))
880 != (GPIO_INT_DISABLE | GPIO_INT_ENABLE),
881 "Cannot both enable and disable interrupts");
882
883 __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE)) != 0U,
884 "Must either enable or disable interrupts");
885
886 __ASSERT(((flags & GPIO_INT_ENABLE) == 0) ||
887 ((flags & GPIO_INT_EDGE) != 0) ||
888 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) !=
889 (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)),
890 "Only one of GPIO_INT_LOW_0, GPIO_INT_HIGH_1 can be "
891 "enabled for a level interrupt.");
892
893 __ASSERT(((flags & GPIO_INT_ENABLE) == 0) ||
894#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
895 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) != 0) ||
896 (flags & GPIO_INT_ENABLE_DISABLE_ONLY) != 0,
897#else
898 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) != 0),
899#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
900 "At least one of GPIO_INT_LOW_0, GPIO_INT_HIGH_1 has to be "
901 "enabled.");
902
903 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
904 "Unsupported pin");
905
906 if (((flags & GPIO_INT_LEVELS_LOGICAL) != 0) &&
907 ((data->invert & (gpio_port_pins_t)BIT(pin)) != 0)) {
908 /* Invert signal bits */
909 flags ^= (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1);
910 }
911
912 trig = (enum gpio_int_trig)(flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1));
913#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
914 mode = (enum gpio_int_mode)(flags & (GPIO_INT_EDGE | GPIO_INT_DISABLE | GPIO_INT_ENABLE |
915 GPIO_INT_ENABLE_DISABLE_ONLY));
916#else
917 mode = (enum gpio_int_mode)(flags & (GPIO_INT_EDGE | GPIO_INT_DISABLE | GPIO_INT_ENABLE));
918#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
919
920 return api->pin_interrupt_configure(port, pin, mode, trig);
921}
922
936static inline int gpio_pin_interrupt_configure_dt(const struct gpio_dt_spec *spec,
938{
939 return gpio_pin_interrupt_configure(spec->port, spec->pin, flags);
940}
941
957__syscall int gpio_pin_configure(const struct device *port,
958 gpio_pin_t pin,
960
961static inline int z_impl_gpio_pin_configure(const struct device *port,
962 gpio_pin_t pin,
964{
965 const struct gpio_driver_api *api =
966 (const struct gpio_driver_api *)port->api;
967 __unused const struct gpio_driver_config *const cfg =
968 (const struct gpio_driver_config *)port->config;
969 struct gpio_driver_data *data =
970 (struct gpio_driver_data *)port->data;
971
972 __ASSERT((flags & GPIO_INT_MASK) == 0,
973 "Interrupt flags are not supported");
974
975 __ASSERT((flags & (GPIO_PULL_UP | GPIO_PULL_DOWN)) !=
977 "Pull Up and Pull Down should not be enabled simultaneously");
978
979 __ASSERT(!((flags & GPIO_INPUT) && !(flags & GPIO_OUTPUT) && (flags & GPIO_SINGLE_ENDED)),
980 "Input cannot be enabled for 'Open Drain', 'Open Source' modes without Output");
981
982 __ASSERT_NO_MSG((flags & GPIO_SINGLE_ENDED) != 0 ||
983 (flags & GPIO_LINE_OPEN_DRAIN) == 0);
984
985 __ASSERT((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) == 0
986 || (flags & GPIO_OUTPUT) != 0,
987 "Output needs to be enabled to be initialized low or high");
988
989 __ASSERT((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH))
990 != (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH),
991 "Output cannot be initialized low and high");
992
993 if (((flags & GPIO_OUTPUT_INIT_LOGICAL) != 0)
994 && ((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) != 0)
995 && ((flags & GPIO_ACTIVE_LOW) != 0)) {
996 flags ^= GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH;
997 }
998
999 flags &= ~GPIO_OUTPUT_INIT_LOGICAL;
1000
1001 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1002 "Unsupported pin");
1003
1004 if ((flags & GPIO_ACTIVE_LOW) != 0) {
1005 data->invert |= (gpio_port_pins_t)BIT(pin);
1006 } else {
1007 data->invert &= ~(gpio_port_pins_t)BIT(pin);
1008 }
1009
1010 return api->pin_configure(port, pin, flags);
1011}
1012
1024static inline int gpio_pin_configure_dt(const struct gpio_dt_spec *spec,
1025 gpio_flags_t extra_flags)
1026{
1027 return gpio_pin_configure(spec->port,
1028 spec->pin,
1029 spec->dt_flags | extra_flags);
1030}
1031
1050__syscall int gpio_port_get_direction(const struct device *port, gpio_port_pins_t map,
1051 gpio_port_pins_t *inputs, gpio_port_pins_t *outputs);
1052
1053#ifdef CONFIG_GPIO_GET_DIRECTION
1054static inline int z_impl_gpio_port_get_direction(const struct device *port, gpio_port_pins_t map,
1055 gpio_port_pins_t *inputs,
1056 gpio_port_pins_t *outputs)
1057{
1058 const struct gpio_driver_api *api = (const struct gpio_driver_api *)port->api;
1059
1060 if (api->port_get_direction == NULL) {
1061 return -ENOSYS;
1062 }
1063
1064 return api->port_get_direction(port, map, inputs, outputs);
1065}
1066#endif /* CONFIG_GPIO_GET_DIRECTION */
1067
1080static inline int gpio_pin_is_input(const struct device *port, gpio_pin_t pin)
1081{
1082 int rv;
1083 gpio_port_pins_t pins;
1084 __unused const struct gpio_driver_config *cfg =
1085 (const struct gpio_driver_config *)port->config;
1086
1087 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U, "Unsupported pin");
1088
1089 rv = gpio_port_get_direction(port, BIT(pin), &pins, NULL);
1090 if (rv < 0) {
1091 return rv;
1092 }
1093
1094 return (int)!!((gpio_port_pins_t)BIT(pin) & pins);
1095}
1096
1108static inline int gpio_pin_is_input_dt(const struct gpio_dt_spec *spec)
1109{
1110 return gpio_pin_is_input(spec->port, spec->pin);
1111}
1112
1125static inline int gpio_pin_is_output(const struct device *port, gpio_pin_t pin)
1126{
1127 int rv;
1128 gpio_port_pins_t pins;
1129 __unused const struct gpio_driver_config *cfg =
1130 (const struct gpio_driver_config *)port->config;
1131
1132 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U, "Unsupported pin");
1133
1134 rv = gpio_port_get_direction(port, BIT(pin), NULL, &pins);
1135 if (rv < 0) {
1136 return rv;
1137 }
1138
1139 return (int)!!((gpio_port_pins_t)BIT(pin) & pins);
1140}
1141
1153static inline int gpio_pin_is_output_dt(const struct gpio_dt_spec *spec)
1154{
1155 return gpio_pin_is_output(spec->port, spec->pin);
1156}
1157
1173__syscall int gpio_pin_get_config(const struct device *port, gpio_pin_t pin,
1175
1176#ifdef CONFIG_GPIO_GET_CONFIG
1177static inline int z_impl_gpio_pin_get_config(const struct device *port,
1178 gpio_pin_t pin,
1180{
1181 const struct gpio_driver_api *api =
1182 (const struct gpio_driver_api *)port->api;
1183
1184 if (api->pin_get_config == NULL)
1185 return -ENOSYS;
1186
1187 return api->pin_get_config(port, pin, flags);
1188}
1189#endif
1190
1203static inline int gpio_pin_get_config_dt(const struct gpio_dt_spec *spec,
1205{
1206 return gpio_pin_get_config(spec->port, spec->pin, flags);
1207}
1208
1226__syscall int gpio_port_get_raw(const struct device *port,
1227 gpio_port_value_t *value);
1228
1229static inline int z_impl_gpio_port_get_raw(const struct device *port,
1230 gpio_port_value_t *value)
1231{
1232 const struct gpio_driver_api *api =
1233 (const struct gpio_driver_api *)port->api;
1234
1235 return api->port_get_raw(port, value);
1236}
1237
1256static inline int gpio_port_get(const struct device *port,
1257 gpio_port_value_t *value)
1258{
1259 const struct gpio_driver_data *const data =
1260 (const struct gpio_driver_data *)port->data;
1261 int ret;
1262
1263 ret = gpio_port_get_raw(port, value);
1264 if (ret == 0) {
1265 *value ^= data->invert;
1266 }
1267
1268 return ret;
1269}
1270
1288__syscall int gpio_port_set_masked_raw(const struct device *port,
1289 gpio_port_pins_t mask,
1290 gpio_port_value_t value);
1291
1292static inline int z_impl_gpio_port_set_masked_raw(const struct device *port,
1293 gpio_port_pins_t mask,
1294 gpio_port_value_t value)
1295{
1296 const struct gpio_driver_api *api =
1297 (const struct gpio_driver_api *)port->api;
1298
1299 return api->port_set_masked_raw(port, mask, value);
1300}
1301
1322static inline int gpio_port_set_masked(const struct device *port,
1323 gpio_port_pins_t mask,
1324 gpio_port_value_t value)
1325{
1326 const struct gpio_driver_data *const data =
1327 (const struct gpio_driver_data *)port->data;
1328
1329 value ^= data->invert;
1330
1331 return gpio_port_set_masked_raw(port, mask, value);
1332}
1333
1344__syscall int gpio_port_set_bits_raw(const struct device *port,
1345 gpio_port_pins_t pins);
1346
1347static inline int z_impl_gpio_port_set_bits_raw(const struct device *port,
1348 gpio_port_pins_t pins)
1349{
1350 const struct gpio_driver_api *api =
1351 (const struct gpio_driver_api *)port->api;
1352
1353 return api->port_set_bits_raw(port, pins);
1354}
1355
1366static inline int gpio_port_set_bits(const struct device *port,
1367 gpio_port_pins_t pins)
1368{
1369 return gpio_port_set_masked(port, pins, pins);
1370}
1371
1382__syscall int gpio_port_clear_bits_raw(const struct device *port,
1383 gpio_port_pins_t pins);
1384
1385static inline int z_impl_gpio_port_clear_bits_raw(const struct device *port,
1386 gpio_port_pins_t pins)
1387{
1388 const struct gpio_driver_api *api =
1389 (const struct gpio_driver_api *)port->api;
1390
1391 return api->port_clear_bits_raw(port, pins);
1392}
1393
1404static inline int gpio_port_clear_bits(const struct device *port,
1405 gpio_port_pins_t pins)
1406{
1407 return gpio_port_set_masked(port, pins, 0);
1408}
1409
1420__syscall int gpio_port_toggle_bits(const struct device *port,
1421 gpio_port_pins_t pins);
1422
1423static inline int z_impl_gpio_port_toggle_bits(const struct device *port,
1424 gpio_port_pins_t pins)
1425{
1426 const struct gpio_driver_api *api =
1427 (const struct gpio_driver_api *)port->api;
1428
1429 return api->port_toggle_bits(port, pins);
1430}
1431
1443static inline int gpio_port_set_clr_bits_raw(const struct device *port,
1444 gpio_port_pins_t set_pins,
1445 gpio_port_pins_t clear_pins)
1446{
1447 __ASSERT((set_pins & clear_pins) == 0, "Set and Clear pins overlap");
1448
1449 return gpio_port_set_masked_raw(port, set_pins | clear_pins, set_pins);
1450}
1451
1463static inline int gpio_port_set_clr_bits(const struct device *port,
1464 gpio_port_pins_t set_pins,
1465 gpio_port_pins_t clear_pins)
1466{
1467 __ASSERT((set_pins & clear_pins) == 0, "Set and Clear pins overlap");
1468
1469 return gpio_port_set_masked(port, set_pins | clear_pins, set_pins);
1470}
1471
1487static inline int gpio_pin_get_raw(const struct device *port, gpio_pin_t pin)
1488{
1489 __unused const struct gpio_driver_config *const cfg =
1490 (const struct gpio_driver_config *)port->config;
1491 gpio_port_value_t value;
1492 int ret;
1493
1494 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1495 "Unsupported pin");
1496
1497 ret = gpio_port_get_raw(port, &value);
1498 if (ret == 0) {
1499 ret = (value & (gpio_port_pins_t)BIT(pin)) != 0 ? 1 : 0;
1500 }
1501
1502 return ret;
1503}
1504
1524static inline int gpio_pin_get(const struct device *port, gpio_pin_t pin)
1525{
1526 __unused const struct gpio_driver_config *const cfg =
1527 (const struct gpio_driver_config *)port->config;
1528 gpio_port_value_t value;
1529 int ret;
1530
1531 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1532 "Unsupported pin");
1533
1534 ret = gpio_port_get(port, &value);
1535 if (ret == 0) {
1536 ret = (value & (gpio_port_pins_t)BIT(pin)) != 0 ? 1 : 0;
1537 }
1538
1539 return ret;
1540}
1541
1552static inline int gpio_pin_get_dt(const struct gpio_dt_spec *spec)
1553{
1554 return gpio_pin_get(spec->port, spec->pin);
1555}
1556
1572static inline int gpio_pin_set_raw(const struct device *port, gpio_pin_t pin,
1573 int value)
1574{
1575 __unused const struct gpio_driver_config *const cfg =
1576 (const struct gpio_driver_config *)port->config;
1577 int ret;
1578
1579 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1580 "Unsupported pin");
1581
1582 if (value != 0) {
1583 ret = gpio_port_set_bits_raw(port, (gpio_port_pins_t)BIT(pin));
1584 } else {
1586 }
1587
1588 return ret;
1589}
1590
1612static inline int gpio_pin_set(const struct device *port, gpio_pin_t pin,
1613 int value)
1614{
1615 __unused const struct gpio_driver_config *const cfg =
1616 (const struct gpio_driver_config *)port->config;
1617 const struct gpio_driver_data *const data =
1618 (const struct gpio_driver_data *)port->data;
1619
1620 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1621 "Unsupported pin");
1622
1623 if (data->invert & (gpio_port_pins_t)BIT(pin)) {
1624 value = (value != 0) ? 0 : 1;
1625 }
1626
1627 return gpio_pin_set_raw(port, pin, value);
1628}
1629
1641static inline int gpio_pin_set_dt(const struct gpio_dt_spec *spec, int value)
1642{
1643 return gpio_pin_set(spec->port, spec->pin, value);
1644}
1645
1656static inline int gpio_pin_toggle(const struct device *port, gpio_pin_t pin)
1657{
1658 __unused const struct gpio_driver_config *const cfg =
1659 (const struct gpio_driver_config *)port->config;
1660
1661 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1662 "Unsupported pin");
1663
1664 return gpio_port_toggle_bits(port, (gpio_port_pins_t)BIT(pin));
1665}
1666
1677static inline int gpio_pin_toggle_dt(const struct gpio_dt_spec *spec)
1678{
1679 return gpio_pin_toggle(spec->port, spec->pin);
1680}
1681
1688static inline void gpio_init_callback(struct gpio_callback *callback,
1690 gpio_port_pins_t pin_mask)
1691{
1692 __ASSERT(callback, "Callback pointer should not be NULL");
1693 __ASSERT(handler, "Callback handler pointer should not be NULL");
1694
1695 callback->handler = handler;
1696 callback->pin_mask = pin_mask;
1697}
1698
1713static inline int gpio_add_callback(const struct device *port,
1714 struct gpio_callback *callback)
1715{
1716 const struct gpio_driver_api *api =
1717 (const struct gpio_driver_api *)port->api;
1718
1719 if (api->manage_callback == NULL) {
1720 return -ENOSYS;
1721 }
1722
1723 return api->manage_callback(port, callback, true);
1724}
1725
1737static inline int gpio_add_callback_dt(const struct gpio_dt_spec *spec,
1738 struct gpio_callback *callback)
1739{
1740 return gpio_add_callback(spec->port, callback);
1741}
1742
1761static inline int gpio_remove_callback(const struct device *port,
1762 struct gpio_callback *callback)
1763{
1764 const struct gpio_driver_api *api =
1765 (const struct gpio_driver_api *)port->api;
1766
1767 if (api->manage_callback == NULL) {
1768 return -ENOSYS;
1769 }
1770
1771 return api->manage_callback(port, callback, false);
1772}
1773
1785static inline int gpio_remove_callback_dt(const struct gpio_dt_spec *spec,
1786 struct gpio_callback *callback)
1787{
1788 return gpio_remove_callback(spec->port, callback);
1789}
1790
1805__syscall int gpio_get_pending_int(const struct device *dev);
1806
1807static inline int z_impl_gpio_get_pending_int(const struct device *dev)
1808{
1809 const struct gpio_driver_api *api =
1810 (const struct gpio_driver_api *)dev->api;
1811
1812 if (api->get_pending_int == NULL) {
1813 return -ENOSYS;
1814 }
1815
1816 return api->get_pending_int(dev);
1817}
1818
1823#ifdef __cplusplus
1824}
1825#endif
1826
1827#include <syscalls/gpio.h>
1828
1829#endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_H_ */
System error numbers.
bool device_is_ready(const struct device *dev)
Verify that a device is ready for use.
static int gpio_add_callback(const struct device *port, struct gpio_callback *callback)
Add an application callback.
Definition: gpio.h:1713
#define GPIO_OUTPUT
Enables pin as output, no change to the output state.
Definition: gpio.h:48
static int gpio_pin_get_raw(const struct device *port, gpio_pin_t pin)
Get physical level of an input pin.
Definition: gpio.h:1487
int gpio_pin_get_config(const struct device *port, gpio_pin_t pin, gpio_flags_t *flags)
Get a configuration of a single pin.
static int gpio_pin_is_input(const struct device *port, gpio_pin_t pin)
Check if pin is configured for input.
Definition: gpio.h:1080
static int gpio_pin_get(const struct device *port, gpio_pin_t pin)
Get logical level of an input pin.
Definition: gpio.h:1524
int gpio_port_set_bits_raw(const struct device *port, gpio_port_pins_t pins)
Set physical level of selected output pins to high.
static int gpio_pin_is_output_dt(const struct gpio_dt_spec *spec)
Check if a single pin from gpio_dt_spec is configured for output.
Definition: gpio.h:1153
static int gpio_pin_interrupt_configure_dt(const struct gpio_dt_spec *spec, gpio_flags_t flags)
Configure pin interrupts from a gpio_dt_spec.
Definition: gpio.h:936
void(* gpio_callback_handler_t)(const struct device *port, struct gpio_callback *cb, gpio_port_pins_t pins)
Define the application callback handler function signature.
Definition: gpio.h:724
static int gpio_remove_callback_dt(const struct gpio_dt_spec *spec, struct gpio_callback *callback)
Remove an application callback.
Definition: gpio.h:1785
static int gpio_pin_toggle_dt(const struct gpio_dt_spec *spec)
Toggle pin level from a gpio_dt_spec.
Definition: gpio.h:1677
uint8_t gpio_pin_t
Provides a type to hold a GPIO pin index.
Definition: gpio.h:252
static int gpio_pin_is_output(const struct device *port, gpio_pin_t pin)
Check if pin is configured for output.
Definition: gpio.h:1125
int gpio_get_pending_int(const struct device *dev)
Function to get pending interrupts.
static int gpio_pin_configure_dt(const struct gpio_dt_spec *spec, gpio_flags_t extra_flags)
Configure a single pin from a gpio_dt_spec and some extra flags.
Definition: gpio.h:1024
static int gpio_pin_set_dt(const struct gpio_dt_spec *spec, int value)
Set logical level of a output pin from a gpio_dt_spec.
Definition: gpio.h:1641
static int gpio_add_callback_dt(const struct gpio_dt_spec *spec, struct gpio_callback *callback)
Add an application callback.
Definition: gpio.h:1737
static int gpio_port_set_bits(const struct device *port, gpio_port_pins_t pins)
Set logical level of selected output pins to active.
Definition: gpio.h:1366
uint32_t gpio_flags_t
Provides a type to hold GPIO configuration flags.
Definition: gpio.h:272
#define GPIO_ACTIVE_LOW
GPIO pin is active (has logical value '1') in low state.
Definition: gpio.h:26
static int gpio_port_set_clr_bits_raw(const struct device *port, gpio_port_pins_t set_pins, gpio_port_pins_t clear_pins)
Set physical level of selected output pins.
Definition: gpio.h:1443
static int gpio_port_set_clr_bits(const struct device *port, gpio_port_pins_t set_pins, gpio_port_pins_t clear_pins)
Set logical level of selected output pins.
Definition: gpio.h:1463
static void gpio_init_callback(struct gpio_callback *callback, gpio_callback_handler_t handler, gpio_port_pins_t pin_mask)
Helper to initialize a struct gpio_callback properly.
Definition: gpio.h:1688
static int gpio_pin_is_input_dt(const struct gpio_dt_spec *spec)
Check if a single pin from gpio_dt_spec is configured for input.
Definition: gpio.h:1108
#define GPIO_INPUT
Enables pin as input.
Definition: gpio.h:45
uint32_t gpio_port_pins_t
Identifies a set of pins associated with a port.
Definition: gpio.h:231
static int gpio_pin_get_config_dt(const struct gpio_dt_spec *spec, gpio_flags_t *flags)
Get a configuration of a single pin from a gpio_dt_spec.
Definition: gpio.h:1203
int gpio_port_toggle_bits(const struct device *port, gpio_port_pins_t pins)
Toggle level of selected output pins.
#define GPIO_INT_DISABLE
Disables GPIO pin interrupt.
Definition: gpio.h:98
int gpio_pin_interrupt_configure(const struct device *port, gpio_pin_t pin, gpio_flags_t flags)
Configure pin interrupt.
int gpio_port_clear_bits_raw(const struct device *port, gpio_port_pins_t pins)
Set physical level of selected output pins to low.
int gpio_port_set_masked_raw(const struct device *port, gpio_port_pins_t mask, gpio_port_value_t value)
Set physical level of output pins in a port.
#define GPIO_PULL_UP
Enables GPIO pin pull-up.
Definition: gpio.h:75
static int gpio_pin_get_dt(const struct gpio_dt_spec *spec)
Get logical level of an input pin from a gpio_dt_spec.
Definition: gpio.h:1552
static int gpio_pin_toggle(const struct device *port, gpio_pin_t pin)
Toggle pin level.
Definition: gpio.h:1656
static bool gpio_is_ready_dt(const struct gpio_dt_spec *spec)
Validate that GPIO port is ready.
Definition: gpio.h:831
uint32_t gpio_port_value_t
Provides values for a set of pins associated with a port.
Definition: gpio.h:244
static int gpio_pin_set(const struct device *port, gpio_pin_t pin, int value)
Set logical level of an output pin.
Definition: gpio.h:1612
static int gpio_port_clear_bits(const struct device *port, gpio_port_pins_t pins)
Set logical level of selected output pins to inactive.
Definition: gpio.h:1404
static int gpio_remove_callback(const struct device *port, struct gpio_callback *callback)
Remove an application callback.
Definition: gpio.h:1761
static int gpio_port_set_masked(const struct device *port, gpio_port_pins_t mask, gpio_port_value_t value)
Set logical level of output pins in a port.
Definition: gpio.h:1322
int gpio_port_get_direction(const struct device *port, gpio_port_pins_t map, gpio_port_pins_t *inputs, gpio_port_pins_t *outputs)
Get direction of select pins in a port.
uint16_t gpio_dt_flags_t
Provides a type to hold GPIO devicetree flags.
Definition: gpio.h:264
#define GPIO_PULL_DOWN
Enable GPIO pin pull-down.
Definition: gpio.h:78
static int gpio_pin_set_raw(const struct device *port, gpio_pin_t pin, int value)
Set physical level of an output pin.
Definition: gpio.h:1572
int gpio_port_get_raw(const struct device *port, gpio_port_value_t *value)
Get physical level of all input pins in a port.
static int gpio_port_get(const struct device *port, gpio_port_value_t *value)
Get logical level of all input pins in a port.
Definition: gpio.h:1256
int gpio_pin_configure(const struct device *port, gpio_pin_t pin, gpio_flags_t flags)
Configure a single pin.
struct _snode sys_snode_t
Single-linked list node structure.
Definition: slist.h:39
#define BIT(n)
Unsigned integer with bit position n set (signed in assembly language).
Definition: util_macro.h:44
#define ENOSYS
Function not implemented.
Definition: errno.h:83
flags
Definition: parser.h:96
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition: device.h:387
void * data
Address of the device instance private data.
Definition: device.h:397
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:393
const void * config
Address of device instance config information.
Definition: device.h:391
GPIO callback structure.
Definition: gpio.h:738
sys_snode_t node
This is meant to be used in the driver and the user should not mess with it (see drivers/gpio/gpio_ut...
Definition: gpio.h:742
gpio_port_pins_t pin_mask
A mask of pins the callback is interested in, if 0 the callback will never be called.
Definition: gpio.h:753
gpio_callback_handler_t handler
Actual callback function being called when relevant.
Definition: gpio.h:745
This structure is common to all GPIO drivers and is expected to be the first element in the object po...
Definition: gpio.h:688
gpio_port_pins_t port_pin_mask
Mask identifying pins supported by the controller.
Definition: gpio.h:694
This structure is common to all GPIO drivers and is expected to be the first element in the driver's ...
Definition: gpio.h:701
gpio_port_pins_t invert
Mask identifying pins that are configured as active low.
Definition: gpio.h:707
Container for GPIO pin information specified in devicetree.
Definition: gpio.h:286
const struct device * port
GPIO device controlling the pin.
Definition: gpio.h:288
gpio_pin_t pin
The pin's number on the device.
Definition: gpio.h:290
gpio_dt_flags_t dt_flags
The pin's configuration flags as specified in devicetree.
Definition: gpio.h:292