Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
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>
23
24#include <zephyr/types.h>
25#include <stddef.h>
26#include <zephyr/device.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
48#define GPIO_INPUT (1U << 16)
49
51#define GPIO_OUTPUT (1U << 17)
52
54#define GPIO_DISCONNECTED 0
55
58/* Initializes output to a low state. */
59#define GPIO_OUTPUT_INIT_LOW (1U << 18)
60
61/* Initializes output to a high state. */
62#define GPIO_OUTPUT_INIT_HIGH (1U << 19)
63
64/* Initializes output based on logic level */
65#define GPIO_OUTPUT_INIT_LOGICAL (1U << 20)
66
70#define GPIO_OUTPUT_LOW (GPIO_OUTPUT | GPIO_OUTPUT_INIT_LOW)
72#define GPIO_OUTPUT_HIGH (GPIO_OUTPUT | GPIO_OUTPUT_INIT_HIGH)
74#define GPIO_OUTPUT_INACTIVE (GPIO_OUTPUT | \
75 GPIO_OUTPUT_INIT_LOW | \
76 GPIO_OUTPUT_INIT_LOGICAL)
78#define GPIO_OUTPUT_ACTIVE (GPIO_OUTPUT | \
79 GPIO_OUTPUT_INIT_HIGH | \
80 GPIO_OUTPUT_INIT_LOGICAL)
81
101#define GPIO_INT_DISABLE (1U << 21)
102
105/* Enables GPIO pin interrupt. */
106#define GPIO_INT_ENABLE (1U << 22)
107
108/* GPIO interrupt is sensitive to logical levels.
109 *
110 * This is a component flag that should be combined with other
111 * `GPIO_INT_*` flags to produce a meaningful configuration.
112 */
113#define GPIO_INT_LEVELS_LOGICAL (1U << 23)
114
115/* GPIO interrupt is edge sensitive.
116 *
117 * Note: by default interrupts are level sensitive.
118 *
119 * This is a component flag that should be combined with other
120 * `GPIO_INT_*` flags to produce a meaningful configuration.
121 */
122#define GPIO_INT_EDGE (1U << 24)
123
124/* Trigger detection when input state is (or transitions to) physical low or
125 * logical 0 level.
126 *
127 * This is a component flag that should be combined with other
128 * `GPIO_INT_*` flags to produce a meaningful configuration.
129 */
130#define GPIO_INT_LOW_0 (1U << 25)
131
132/* Trigger detection on input state is (or transitions to) physical high or
133 * logical 1 level.
134 *
135 * This is a component flag that should be combined with other
136 * `GPIO_INT_*` flags to produce a meaningful configuration.
137 */
138#define GPIO_INT_HIGH_1 (1U << 26)
139
140#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
141/* Disable/Enable interrupt functionality without changing other interrupt
142 * related register, such as clearing the pending register.
143 *
144 * This is a component flag that should be combined with `GPIO_INT_ENABLE` or
145 * `GPIO_INT_DISABLE` flags to produce a meaningful configuration.
146 */
147#define GPIO_INT_ENABLE_DISABLE_ONLY (1u << 27)
148#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
149
150#define GPIO_INT_MASK (GPIO_INT_DISABLE | \
151 GPIO_INT_ENABLE | \
152 GPIO_INT_LEVELS_LOGICAL | \
153 GPIO_INT_EDGE | \
154 GPIO_INT_LOW_0 | \
155 GPIO_INT_HIGH_1)
156
161#define GPIO_INT_EDGE_RISING (GPIO_INT_ENABLE | \
162 GPIO_INT_EDGE | \
163 GPIO_INT_HIGH_1)
164
168#define GPIO_INT_EDGE_FALLING (GPIO_INT_ENABLE | \
169 GPIO_INT_EDGE | \
170 GPIO_INT_LOW_0)
171
175#define GPIO_INT_EDGE_BOTH (GPIO_INT_ENABLE | \
176 GPIO_INT_EDGE | \
177 GPIO_INT_LOW_0 | \
178 GPIO_INT_HIGH_1)
179
183#define GPIO_INT_LEVEL_LOW (GPIO_INT_ENABLE | \
184 GPIO_INT_LOW_0)
185
189#define GPIO_INT_LEVEL_HIGH (GPIO_INT_ENABLE | \
190 GPIO_INT_HIGH_1)
191
195#define GPIO_INT_EDGE_TO_INACTIVE (GPIO_INT_ENABLE | \
196 GPIO_INT_LEVELS_LOGICAL | \
197 GPIO_INT_EDGE | \
198 GPIO_INT_LOW_0)
199
203#define GPIO_INT_EDGE_TO_ACTIVE (GPIO_INT_ENABLE | \
204 GPIO_INT_LEVELS_LOGICAL | \
205 GPIO_INT_EDGE | \
206 GPIO_INT_HIGH_1)
207
211#define GPIO_INT_LEVEL_INACTIVE (GPIO_INT_ENABLE | \
212 GPIO_INT_LEVELS_LOGICAL | \
213 GPIO_INT_LOW_0)
214
218#define GPIO_INT_LEVEL_ACTIVE (GPIO_INT_ENABLE | \
219 GPIO_INT_LEVELS_LOGICAL | \
220 GPIO_INT_HIGH_1)
221
225#define GPIO_DIR_MASK (GPIO_INPUT | GPIO_OUTPUT)
235
248
256
268
276
297
332#define GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx) \
333 { \
334 .port = DEVICE_DT_GET(DT_GPIO_CTLR_BY_IDX(node_id, prop, idx)),\
335 .pin = DT_GPIO_PIN_BY_IDX(node_id, prop, idx), \
336 .dt_flags = DT_GPIO_FLAGS_BY_IDX(node_id, prop, idx), \
337 }
338
356#define GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, idx, default_value) \
357 COND_CODE_1(DT_PROP_HAS_IDX(node_id, prop, idx), \
358 (GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, idx)), \
359 (default_value))
360
369#define GPIO_DT_SPEC_GET(node_id, prop) \
370 GPIO_DT_SPEC_GET_BY_IDX(node_id, prop, 0)
371
382#define GPIO_DT_SPEC_GET_OR(node_id, prop, default_value) \
383 GPIO_DT_SPEC_GET_BY_IDX_OR(node_id, prop, 0, default_value)
384
395#define GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, idx) \
396 GPIO_DT_SPEC_GET_BY_IDX(DT_DRV_INST(inst), prop, idx)
397
409#define GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, idx, default_value) \
410 COND_CODE_1(DT_PROP_HAS_IDX(DT_DRV_INST(inst), prop, idx), \
411 (GPIO_DT_SPEC_GET_BY_IDX(DT_DRV_INST(inst), prop, idx)), \
412 (default_value))
413
422#define GPIO_DT_SPEC_INST_GET(inst, prop) \
423 GPIO_DT_SPEC_INST_GET_BY_IDX(inst, prop, 0)
424
435#define GPIO_DT_SPEC_INST_GET_OR(inst, prop, default_value) \
436 GPIO_DT_SPEC_INST_GET_BY_IDX_OR(inst, prop, 0, default_value)
437
438/*
439 * @cond INTERNAL_HIDDEN
440 */
441
452#define Z_GPIO_GEN_BITMASK_COND(node_id, prop, off_idx, sz_idx) \
453 COND_CODE_1(DT_PROP_HAS_IDX(node_id, prop, off_idx), \
454 (COND_CODE_0(DT_PROP_BY_IDX(node_id, prop, sz_idx), \
455 (0), \
456 (GENMASK64(DT_PROP_BY_IDX(node_id, prop, off_idx) + \
457 DT_PROP_BY_IDX(node_id, prop, sz_idx) - 1, \
458 DT_PROP_BY_IDX(node_id, prop, off_idx)))) \
459 ), (0))
460
468#define Z_GPIO_GEN_RESERVED_RANGES_COND(odd_it, node_id) \
469 COND_CODE_1(DT_PROP_HAS_IDX(node_id, gpio_reserved_ranges, odd_it), \
470 (Z_GPIO_GEN_BITMASK_COND(node_id, \
471 gpio_reserved_ranges, \
472 GET_ARG_N(odd_it, Z_SPARSE_LIST_EVEN_NUMBERS), \
473 odd_it)), \
474 (0))
475
567#define GPIO_DT_RESERVED_RANGES_NGPIOS(node_id, ngpios) \
568 ((gpio_port_pins_t) \
569 COND_CODE_1(DT_NODE_HAS_PROP(node_id, gpio_reserved_ranges), \
570 (GENMASK64(BITS_PER_LONG_LONG - 1, ngpios) \
571 | FOR_EACH_FIXED_ARG(Z_GPIO_GEN_RESERVED_RANGES_COND, \
572 (|), \
573 node_id, \
574 LIST_DROP_EMPTY(Z_SPARSE_LIST_ODD_NUMBERS))), \
575 (0)))
576
584#define GPIO_DT_RESERVED_RANGES(node_id) \
585 GPIO_DT_RESERVED_RANGES_NGPIOS(node_id, DT_PROP(node_id, ngpios))
586
596#define GPIO_DT_INST_RESERVED_RANGES_NGPIOS(inst, ngpios) \
597 GPIO_DT_RESERVED_RANGES_NGPIOS(DT_DRV_INST(inst), ngpios)
598
607#define GPIO_DT_INST_RESERVED_RANGES(inst) \
608 GPIO_DT_RESERVED_RANGES(DT_DRV_INST(inst))
609
658#define GPIO_DT_PORT_PIN_MASK_NGPIOS_EXC(node_id, ngpios) \
659 ((gpio_port_pins_t) \
660 COND_CODE_0(ngpios, \
661 (0), \
662 (COND_CODE_1(DT_NODE_HAS_PROP(node_id, gpio_reserved_ranges), \
663 ((GENMASK64(ngpios - 1, 0) & \
664 ~GPIO_DT_RESERVED_RANGES_NGPIOS(node_id, ngpios))), \
665 (GENMASK64(ngpios - 1, 0))) \
666 ) \
667 ))
668
678#define GPIO_DT_INST_PORT_PIN_MASK_NGPIOS_EXC(inst, ngpios) \
679 GPIO_DT_PORT_PIN_MASK_NGPIOS_EXC(DT_DRV_INST(inst), ngpios)
680
684#define GPIO_MAX_PINS_PER_PORT (sizeof(gpio_port_pins_t) * __CHAR_BIT__)
685
699
712
713struct gpio_callback;
714
727typedef void (*gpio_callback_handler_t)(const struct device *port,
728 struct gpio_callback *cb,
729 gpio_port_pins_t pins);
730
758
765/* Used by driver api function pin_interrupt_configure, these are defined
766 * in terms of the public flags so we can just mask and pass them
767 * through to the driver api
768 */
769enum gpio_int_mode {
770 GPIO_INT_MODE_DISABLED = GPIO_INT_DISABLE,
771 GPIO_INT_MODE_LEVEL = GPIO_INT_ENABLE,
772 GPIO_INT_MODE_EDGE = GPIO_INT_ENABLE | GPIO_INT_EDGE,
773#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
774 GPIO_INT_MODE_DISABLE_ONLY = GPIO_INT_DISABLE | GPIO_INT_ENABLE_DISABLE_ONLY,
775 GPIO_INT_MODE_ENABLE_ONLY = GPIO_INT_ENABLE | GPIO_INT_ENABLE_DISABLE_ONLY,
776#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
777};
778
779enum gpio_int_trig {
780 /* Trigger detection when input state is (or transitions to)
781 * physical low. (Edge Falling or Active Low)
782 */
783 GPIO_INT_TRIG_LOW = GPIO_INT_LOW_0,
784 /* Trigger detection when input state is (or transitions to)
785 * physical high. (Edge Rising or Active High) */
786 GPIO_INT_TRIG_HIGH = GPIO_INT_HIGH_1,
787 /* Trigger detection on pin rising or falling edge. */
788 GPIO_INT_TRIG_BOTH = GPIO_INT_LOW_0 | GPIO_INT_HIGH_1,
789 /* Trigger a system wakeup. */
790 GPIO_INT_TRIG_WAKE = GPIO_INT_WAKEUP,
791};
792
793__subsystem struct gpio_driver_api {
794 int (*pin_configure)(const struct device *port, gpio_pin_t pin,
796#ifdef CONFIG_GPIO_GET_CONFIG
797 int (*pin_get_config)(const struct device *port, gpio_pin_t pin,
799#endif
800 int (*port_get_raw)(const struct device *port,
801 gpio_port_value_t *value);
802 int (*port_set_masked_raw)(const struct device *port,
803 gpio_port_pins_t mask,
804 gpio_port_value_t value);
805 int (*port_set_bits_raw)(const struct device *port,
806 gpio_port_pins_t pins);
807 int (*port_clear_bits_raw)(const struct device *port,
808 gpio_port_pins_t pins);
809 int (*port_toggle_bits)(const struct device *port,
810 gpio_port_pins_t pins);
811 int (*pin_interrupt_configure)(const struct device *port,
812 gpio_pin_t pin,
813 enum gpio_int_mode mode,
814 enum gpio_int_trig trig);
815 int (*manage_callback)(const struct device *port,
816 struct gpio_callback *cb,
817 bool set);
818 uint32_t (*get_pending_int)(const struct device *dev);
819#ifdef CONFIG_GPIO_GET_DIRECTION
820 int (*port_get_direction)(const struct device *port, gpio_port_pins_t map,
821 gpio_port_pins_t *inputs, gpio_port_pins_t *outputs);
822#endif /* CONFIG_GPIO_GET_DIRECTION */
823};
824
837static inline bool gpio_is_ready_dt(const struct gpio_dt_spec *spec)
838{
839 /* Validate port is ready */
840 return device_is_ready(spec->port);
841}
842
866__syscall int gpio_pin_interrupt_configure(const struct device *port,
867 gpio_pin_t pin,
869
870static inline int z_impl_gpio_pin_interrupt_configure(const struct device *port,
871 gpio_pin_t pin,
873{
874 const struct gpio_driver_api *api =
875 (const struct gpio_driver_api *)port->api;
876 __unused const struct gpio_driver_config *const cfg =
877 (const struct gpio_driver_config *)port->config;
878 const struct gpio_driver_data *const data =
879 (const struct gpio_driver_data *)port->data;
880 enum gpio_int_trig trig;
881 enum gpio_int_mode mode;
882 int ret;
883
884 SYS_PORT_TRACING_FUNC_ENTER(gpio_pin, interrupt_configure, port, pin, flags);
885
886 if (api->pin_interrupt_configure == NULL) {
887 SYS_PORT_TRACING_FUNC_EXIT(gpio_pin, interrupt_configure, port, pin, -ENOSYS);
888 return -ENOSYS;
889 }
890
891 __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE))
892 != (GPIO_INT_DISABLE | GPIO_INT_ENABLE),
893 "Cannot both enable and disable interrupts");
894
895 __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE)) != 0U,
896 "Must either enable or disable interrupts");
897
898 __ASSERT(((flags & GPIO_INT_ENABLE) == 0) ||
899 ((flags & GPIO_INT_EDGE) != 0) ||
900 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) !=
901 (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)),
902 "Only one of GPIO_INT_LOW_0, GPIO_INT_HIGH_1 can be "
903 "enabled for a level interrupt.");
904
905 __ASSERT(((flags & GPIO_INT_ENABLE) == 0) ||
906#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
907 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) != 0) ||
908 (flags & GPIO_INT_ENABLE_DISABLE_ONLY) != 0,
909#else
910 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) != 0),
911#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
912 "At least one of GPIO_INT_LOW_0, GPIO_INT_HIGH_1 has to be "
913 "enabled.");
914
915 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
916 "Unsupported pin");
917
918 if (((flags & GPIO_INT_LEVELS_LOGICAL) != 0) &&
919 ((data->invert & (gpio_port_pins_t)BIT(pin)) != 0)) {
920 /* Invert signal bits */
921 flags ^= (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1);
922 }
923
924 trig = (enum gpio_int_trig)(flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1 | GPIO_INT_WAKEUP));
925#ifdef CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT
926 mode = (enum gpio_int_mode)(flags & (GPIO_INT_EDGE | GPIO_INT_DISABLE | GPIO_INT_ENABLE |
927 GPIO_INT_ENABLE_DISABLE_ONLY));
928#else
929 mode = (enum gpio_int_mode)(flags & (GPIO_INT_EDGE | GPIO_INT_DISABLE | GPIO_INT_ENABLE));
930#endif /* CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT */
931
932 ret = api->pin_interrupt_configure(port, pin, mode, trig);
933 SYS_PORT_TRACING_FUNC_EXIT(gpio_pin, interrupt_configure, port, pin, ret);
934 return ret;
935}
936
952static inline int gpio_pin_interrupt_configure_dt(const struct gpio_dt_spec *spec,
954{
955 return gpio_pin_interrupt_configure(spec->port, spec->pin, flags);
956}
957
973__syscall int gpio_pin_configure(const struct device *port,
974 gpio_pin_t pin,
976
977static inline int z_impl_gpio_pin_configure(const struct device *port,
978 gpio_pin_t pin,
980{
981 const struct gpio_driver_api *api =
982 (const struct gpio_driver_api *)port->api;
983 __unused const struct gpio_driver_config *const cfg =
984 (const struct gpio_driver_config *)port->config;
985 struct gpio_driver_data *data =
986 (struct gpio_driver_data *)port->data;
987 int ret;
988
989 SYS_PORT_TRACING_FUNC_ENTER(gpio_pin, configure, port, pin, flags);
990
991 __ASSERT((flags & GPIO_INT_MASK) == 0,
992 "Interrupt flags are not supported");
993
994 __ASSERT((flags & (GPIO_PULL_UP | GPIO_PULL_DOWN)) !=
996 "Pull Up and Pull Down should not be enabled simultaneously");
997
998 __ASSERT(!((flags & GPIO_INPUT) && !(flags & GPIO_OUTPUT) && (flags & GPIO_SINGLE_ENDED)),
999 "Input cannot be enabled for 'Open Drain', 'Open Source' modes without Output");
1000
1001 __ASSERT_NO_MSG((flags & GPIO_SINGLE_ENDED) != 0 ||
1002 (flags & GPIO_LINE_OPEN_DRAIN) == 0);
1003
1004 __ASSERT((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) == 0
1005 || (flags & GPIO_OUTPUT) != 0,
1006 "Output needs to be enabled to be initialized low or high");
1007
1008 __ASSERT((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH))
1009 != (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH),
1010 "Output cannot be initialized low and high");
1011
1012 if (((flags & GPIO_OUTPUT_INIT_LOGICAL) != 0)
1013 && ((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) != 0)
1014 && ((flags & GPIO_ACTIVE_LOW) != 0)) {
1015 flags ^= GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH;
1016 }
1017
1018 flags &= ~GPIO_OUTPUT_INIT_LOGICAL;
1019
1020 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1021 "Unsupported pin");
1022
1023 if ((flags & GPIO_ACTIVE_LOW) != 0) {
1024 data->invert |= (gpio_port_pins_t)BIT(pin);
1025 } else {
1026 data->invert &= ~(gpio_port_pins_t)BIT(pin);
1027 }
1028
1029 ret = api->pin_configure(port, pin, flags);
1030 SYS_PORT_TRACING_FUNC_EXIT(gpio_pin, configure, port, pin, ret);
1031 return ret;
1032}
1033
1045static inline int gpio_pin_configure_dt(const struct gpio_dt_spec *spec,
1046 gpio_flags_t extra_flags)
1047{
1048 return gpio_pin_configure(spec->port,
1049 spec->pin,
1050 spec->dt_flags | extra_flags);
1051}
1052
1071__syscall int gpio_port_get_direction(const struct device *port, gpio_port_pins_t map,
1072 gpio_port_pins_t *inputs, gpio_port_pins_t *outputs);
1073
1074#ifdef CONFIG_GPIO_GET_DIRECTION
1075static inline int z_impl_gpio_port_get_direction(const struct device *port, gpio_port_pins_t map,
1076 gpio_port_pins_t *inputs,
1077 gpio_port_pins_t *outputs)
1078{
1079 const struct gpio_driver_api *api = (const struct gpio_driver_api *)port->api;
1080 int ret;
1081
1082 SYS_PORT_TRACING_FUNC_ENTER(gpio_port, get_direction, port, map, inputs, outputs);
1083
1084 if (api->port_get_direction == NULL) {
1085 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, get_direction, port, -ENOSYS);
1086 return -ENOSYS;
1087 }
1088
1089 ret = api->port_get_direction(port, map, inputs, outputs);
1090 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, get_direction, port, ret);
1091 return ret;
1092}
1093#endif /* CONFIG_GPIO_GET_DIRECTION */
1094
1107static inline int gpio_pin_is_input(const struct device *port, gpio_pin_t pin)
1108{
1109 int rv;
1110 gpio_port_pins_t pins;
1111 __unused const struct gpio_driver_config *cfg =
1112 (const struct gpio_driver_config *)port->config;
1113
1114 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U, "Unsupported pin");
1115
1116 rv = gpio_port_get_direction(port, BIT(pin), &pins, NULL);
1117 if (rv < 0) {
1118 return rv;
1119 }
1120
1121 return (int)!!((gpio_port_pins_t)BIT(pin) & pins);
1122}
1123
1135static inline int gpio_pin_is_input_dt(const struct gpio_dt_spec *spec)
1136{
1137 return gpio_pin_is_input(spec->port, spec->pin);
1138}
1139
1152static inline int gpio_pin_is_output(const struct device *port, gpio_pin_t pin)
1153{
1154 int rv;
1155 gpio_port_pins_t pins;
1156 __unused const struct gpio_driver_config *cfg =
1157 (const struct gpio_driver_config *)port->config;
1158
1159 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U, "Unsupported pin");
1160
1161 rv = gpio_port_get_direction(port, BIT(pin), NULL, &pins);
1162 if (rv < 0) {
1163 return rv;
1164 }
1165
1166 return (int)!!((gpio_port_pins_t)BIT(pin) & pins);
1167}
1168
1180static inline int gpio_pin_is_output_dt(const struct gpio_dt_spec *spec)
1181{
1182 return gpio_pin_is_output(spec->port, spec->pin);
1183}
1184
1200__syscall int gpio_pin_get_config(const struct device *port, gpio_pin_t pin,
1202
1203#ifdef CONFIG_GPIO_GET_CONFIG
1204static inline int z_impl_gpio_pin_get_config(const struct device *port,
1205 gpio_pin_t pin,
1207{
1208 const struct gpio_driver_api *api =
1209 (const struct gpio_driver_api *)port->api;
1210 int ret;
1211
1212 SYS_PORT_TRACING_FUNC_ENTER(gpio_pin, get_config, port, pin, *flags);
1213
1214 if (api->pin_get_config == NULL) {
1215 SYS_PORT_TRACING_FUNC_EXIT(gpio_pin, get_config, port, pin, -ENOSYS);
1216 return -ENOSYS;
1217 }
1218
1219 ret = api->pin_get_config(port, pin, flags);
1220 SYS_PORT_TRACING_FUNC_EXIT(gpio_pin, get_config, port, pin, ret);
1221 return ret;
1222}
1223#endif
1224
1237static inline int gpio_pin_get_config_dt(const struct gpio_dt_spec *spec,
1239{
1240 return gpio_pin_get_config(spec->port, spec->pin, flags);
1241}
1242
1260__syscall int gpio_port_get_raw(const struct device *port,
1261 gpio_port_value_t *value);
1262
1263static inline int z_impl_gpio_port_get_raw(const struct device *port, gpio_port_value_t *value)
1264{
1265 const struct gpio_driver_api *api = (const struct gpio_driver_api *)port->api;
1266 int ret;
1267
1268 SYS_PORT_TRACING_FUNC_ENTER(gpio_port, get_raw, port, value);
1269
1270 ret = api->port_get_raw(port, value);
1271 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, get_raw, port, ret);
1272 return ret;
1273}
1274
1293static inline int gpio_port_get(const struct device *port,
1294 gpio_port_value_t *value)
1295{
1296 const struct gpio_driver_data *const data =
1297 (const struct gpio_driver_data *)port->data;
1298 int ret;
1299
1300 ret = gpio_port_get_raw(port, value);
1301 if (ret == 0) {
1302 *value ^= data->invert;
1303 }
1304
1305 return ret;
1306}
1307
1325__syscall int gpio_port_set_masked_raw(const struct device *port,
1326 gpio_port_pins_t mask,
1327 gpio_port_value_t value);
1328
1329static inline int z_impl_gpio_port_set_masked_raw(const struct device *port,
1330 gpio_port_pins_t mask,
1331 gpio_port_value_t value)
1332{
1333 const struct gpio_driver_api *api =
1334 (const struct gpio_driver_api *)port->api;
1335 int ret;
1336
1337 SYS_PORT_TRACING_FUNC_ENTER(gpio_port, set_masked_raw, port, mask, value);
1338
1339 ret = api->port_set_masked_raw(port, mask, value);
1340 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, set_masked_raw, port, ret);
1341 return ret;
1342}
1343
1364static inline int gpio_port_set_masked(const struct device *port,
1365 gpio_port_pins_t mask,
1366 gpio_port_value_t value)
1367{
1368 const struct gpio_driver_data *const data =
1369 (const struct gpio_driver_data *)port->data;
1370
1371 value ^= data->invert;
1372
1373 return gpio_port_set_masked_raw(port, mask, value);
1374}
1375
1386__syscall int gpio_port_set_bits_raw(const struct device *port,
1387 gpio_port_pins_t pins);
1388
1389static inline int z_impl_gpio_port_set_bits_raw(const struct device *port,
1390 gpio_port_pins_t pins)
1391{
1392 const struct gpio_driver_api *api =
1393 (const struct gpio_driver_api *)port->api;
1394 int ret;
1395
1396 SYS_PORT_TRACING_FUNC_ENTER(gpio_port, set_bits_raw, port, pins);
1397
1398 ret = api->port_set_bits_raw(port, pins);
1399 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, set_bits_raw, port, ret);
1400 return ret;
1401}
1402
1413static inline int gpio_port_set_bits(const struct device *port,
1414 gpio_port_pins_t pins)
1415{
1416 return gpio_port_set_masked(port, pins, pins);
1417}
1418
1429__syscall int gpio_port_clear_bits_raw(const struct device *port,
1430 gpio_port_pins_t pins);
1431
1432static inline int z_impl_gpio_port_clear_bits_raw(const struct device *port,
1433 gpio_port_pins_t pins)
1434{
1435 const struct gpio_driver_api *api =
1436 (const struct gpio_driver_api *)port->api;
1437 int ret;
1438
1439 SYS_PORT_TRACING_FUNC_ENTER(gpio_port, clear_bits_raw, port, pins);
1440
1441 ret = api->port_clear_bits_raw(port, pins);
1442 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, clear_bits_raw, port, ret);
1443 return ret;
1444}
1445
1456static inline int gpio_port_clear_bits(const struct device *port,
1457 gpio_port_pins_t pins)
1458{
1459 return gpio_port_set_masked(port, pins, 0);
1460}
1461
1472__syscall int gpio_port_toggle_bits(const struct device *port,
1473 gpio_port_pins_t pins);
1474
1475static inline int z_impl_gpio_port_toggle_bits(const struct device *port,
1476 gpio_port_pins_t pins)
1477{
1478 const struct gpio_driver_api *api =
1479 (const struct gpio_driver_api *)port->api;
1480 int ret;
1481
1482 SYS_PORT_TRACING_FUNC_ENTER(gpio_port, toggle_bits, port, pins);
1483
1484 ret = api->port_toggle_bits(port, pins);
1485 SYS_PORT_TRACING_FUNC_EXIT(gpio_port, toggle_bits, port, ret);
1486 return ret;
1487}
1488
1500static inline int gpio_port_set_clr_bits_raw(const struct device *port,
1501 gpio_port_pins_t set_pins,
1502 gpio_port_pins_t clear_pins)
1503{
1504 __ASSERT((set_pins & clear_pins) == 0, "Set and Clear pins overlap");
1505
1506 return gpio_port_set_masked_raw(port, set_pins | clear_pins, set_pins);
1507}
1508
1520static inline int gpio_port_set_clr_bits(const struct device *port,
1521 gpio_port_pins_t set_pins,
1522 gpio_port_pins_t clear_pins)
1523{
1524 __ASSERT((set_pins & clear_pins) == 0, "Set and Clear pins overlap");
1525
1526 return gpio_port_set_masked(port, set_pins | clear_pins, set_pins);
1527}
1528
1544static inline int gpio_pin_get_raw(const struct device *port, gpio_pin_t pin)
1545{
1546 __unused const struct gpio_driver_config *const cfg =
1547 (const struct gpio_driver_config *)port->config;
1548 gpio_port_value_t value;
1549 int ret;
1550
1551 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1552 "Unsupported pin");
1553
1554 ret = gpio_port_get_raw(port, &value);
1555 if (ret == 0) {
1556 ret = (value & (gpio_port_pins_t)BIT(pin)) != 0 ? 1 : 0;
1557 }
1558
1559 return ret;
1560}
1561
1581static inline int gpio_pin_get(const struct device *port, gpio_pin_t pin)
1582{
1583 __unused const struct gpio_driver_config *const cfg =
1584 (const struct gpio_driver_config *)port->config;
1585 gpio_port_value_t value;
1586 int ret;
1587
1588 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1589 "Unsupported pin");
1590
1591 ret = gpio_port_get(port, &value);
1592 if (ret == 0) {
1593 ret = (value & (gpio_port_pins_t)BIT(pin)) != 0 ? 1 : 0;
1594 }
1595
1596 return ret;
1597}
1598
1609static inline int gpio_pin_get_dt(const struct gpio_dt_spec *spec)
1610{
1611 return gpio_pin_get(spec->port, spec->pin);
1612}
1613
1629static inline int gpio_pin_set_raw(const struct device *port, gpio_pin_t pin,
1630 int value)
1631{
1632 __unused const struct gpio_driver_config *const cfg =
1633 (const struct gpio_driver_config *)port->config;
1634 int ret;
1635
1636 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1637 "Unsupported pin");
1638
1639 if (value != 0) {
1640 ret = gpio_port_set_bits_raw(port, (gpio_port_pins_t)BIT(pin));
1641 } else {
1643 }
1644
1645 return ret;
1646}
1647
1669static inline int gpio_pin_set(const struct device *port, gpio_pin_t pin,
1670 int value)
1671{
1672 __unused const struct gpio_driver_config *const cfg =
1673 (const struct gpio_driver_config *)port->config;
1674 const struct gpio_driver_data *const data =
1675 (const struct gpio_driver_data *)port->data;
1676
1677 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1678 "Unsupported pin");
1679
1680 if (data->invert & (gpio_port_pins_t)BIT(pin)) {
1681 value = (value != 0) ? 0 : 1;
1682 }
1683
1684 return gpio_pin_set_raw(port, pin, value);
1685}
1686
1698static inline int gpio_pin_set_dt(const struct gpio_dt_spec *spec, int value)
1699{
1700 return gpio_pin_set(spec->port, spec->pin, value);
1701}
1702
1713static inline int gpio_pin_toggle(const struct device *port, gpio_pin_t pin)
1714{
1715 __unused const struct gpio_driver_config *const cfg =
1716 (const struct gpio_driver_config *)port->config;
1717
1718 __ASSERT((cfg->port_pin_mask & (gpio_port_pins_t)BIT(pin)) != 0U,
1719 "Unsupported pin");
1720
1721 return gpio_port_toggle_bits(port, (gpio_port_pins_t)BIT(pin));
1722}
1723
1734static inline int gpio_pin_toggle_dt(const struct gpio_dt_spec *spec)
1735{
1736 return gpio_pin_toggle(spec->port, spec->pin);
1737}
1738
1745static inline void gpio_init_callback(struct gpio_callback *callback,
1747 gpio_port_pins_t pin_mask)
1748{
1749 SYS_PORT_TRACING_FUNC_ENTER(gpio, init_callback, callback, handler, pin_mask);
1750
1751 __ASSERT(callback, "Callback pointer should not be NULL");
1752 __ASSERT(handler, "Callback handler pointer should not be NULL");
1753
1754 callback->handler = handler;
1755 callback->pin_mask = pin_mask;
1756
1757 SYS_PORT_TRACING_FUNC_EXIT(gpio, init_callback, callback);
1758}
1759
1774static inline int gpio_add_callback(const struct device *port,
1775 struct gpio_callback *callback)
1776{
1777 const struct gpio_driver_api *api =
1778 (const struct gpio_driver_api *)port->api;
1779 int ret;
1780
1781 SYS_PORT_TRACING_FUNC_ENTER(gpio, add_callback, port, callback);
1782
1783 if (api->manage_callback == NULL) {
1784 SYS_PORT_TRACING_FUNC_EXIT(gpio, add_callback, port, -ENOSYS);
1785 return -ENOSYS;
1786 }
1787
1788 ret = api->manage_callback(port, callback, true);
1789 SYS_PORT_TRACING_FUNC_EXIT(gpio, add_callback, port, ret);
1790 return ret;
1791}
1792
1804static inline int gpio_add_callback_dt(const struct gpio_dt_spec *spec,
1805 struct gpio_callback *callback)
1806{
1807 return gpio_add_callback(spec->port, callback);
1808}
1809
1828static inline int gpio_remove_callback(const struct device *port,
1829 struct gpio_callback *callback)
1830{
1831 const struct gpio_driver_api *api =
1832 (const struct gpio_driver_api *)port->api;
1833 int ret;
1834
1835 SYS_PORT_TRACING_FUNC_ENTER(gpio, remove_callback, port, callback);
1836
1837 if (api->manage_callback == NULL) {
1838 SYS_PORT_TRACING_FUNC_EXIT(gpio, remove_callback, port, -ENOSYS);
1839 return -ENOSYS;
1840 }
1841
1842 ret = api->manage_callback(port, callback, false);
1843 SYS_PORT_TRACING_FUNC_EXIT(gpio, remove_callback, port, ret);
1844 return ret;
1845}
1846
1858static inline int gpio_remove_callback_dt(const struct gpio_dt_spec *spec,
1859 struct gpio_callback *callback)
1860{
1861 return gpio_remove_callback(spec->port, callback);
1862}
1863
1878__syscall int gpio_get_pending_int(const struct device *dev);
1879
1880static inline int z_impl_gpio_get_pending_int(const struct device *dev)
1881{
1882 const struct gpio_driver_api *api =
1883 (const struct gpio_driver_api *)dev->api;
1884 int ret;
1885
1886 SYS_PORT_TRACING_FUNC_ENTER(gpio, get_pending_int, dev);
1887
1888 if (api->get_pending_int == NULL) {
1889 SYS_PORT_TRACING_FUNC_EXIT(gpio, get_pending_int, dev, -ENOSYS);
1890 return -ENOSYS;
1891 }
1892
1893 ret = api->get_pending_int(dev);
1894 SYS_PORT_TRACING_FUNC_EXIT(gpio, get_pending_int, dev, ret);
1895 return ret;
1896}
1897
1902#ifdef __cplusplus
1903}
1904#endif
1905
1906#include <zephyr/syscalls/gpio.h>
1907
1908#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:1774
#define GPIO_OUTPUT
Enables pin as output, no change to the output state.
Definition gpio.h:51
static int gpio_pin_get_raw(const struct device *port, gpio_pin_t pin)
Get physical level of an input pin.
Definition gpio.h:1544
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:1107
static int gpio_pin_get(const struct device *port, gpio_pin_t pin)
Get logical level of an input pin.
Definition gpio.h:1581
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:1180
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:952
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:727
static int gpio_remove_callback_dt(const struct gpio_dt_spec *spec, struct gpio_callback *callback)
Remove an application callback.
Definition gpio.h:1858
static int gpio_pin_toggle_dt(const struct gpio_dt_spec *spec)
Toggle pin level from a gpio_dt_spec.
Definition gpio.h:1734
uint8_t gpio_pin_t
Provides a type to hold a GPIO pin index.
Definition gpio.h:255
static int gpio_pin_is_output(const struct device *port, gpio_pin_t pin)
Check if pin is configured for output.
Definition gpio.h:1152
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:1045
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:1698
static int gpio_add_callback_dt(const struct gpio_dt_spec *spec, struct gpio_callback *callback)
Add an application callback.
Definition gpio.h:1804
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:1413
uint32_t gpio_flags_t
Provides a type to hold GPIO configuration flags.
Definition gpio.h:275
#define GPIO_ACTIVE_LOW
GPIO pin is active (has logical value '1') in low state.
Definition gpio.h:26
#define GPIO_INT_WAKEUP
Configures GPIO interrupt to wakeup the system from low power mode.
Definition gpio.h:85
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:1500
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:1520
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:1745
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:1135
#define GPIO_INPUT
Enables pin as input.
Definition gpio.h:48
uint32_t gpio_port_pins_t
Identifies a set of pins associated with a port.
Definition gpio.h:234
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:1237
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:101
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:1609
static int gpio_pin_toggle(const struct device *port, gpio_pin_t pin)
Toggle pin level.
Definition gpio.h:1713
static bool gpio_is_ready_dt(const struct gpio_dt_spec *spec)
Validate that GPIO port is ready.
Definition gpio.h:837
uint32_t gpio_port_value_t
Provides values for a set of pins associated with a port.
Definition gpio.h:247
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:1669
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:1456
static int gpio_remove_callback(const struct device *port, struct gpio_callback *callback)
Remove an application callback.
Definition gpio.h:1828
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:1364
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:267
#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:1629
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:1293
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 SYS_PORT_TRACING_FUNC_ENTER(type, func,...)
Tracing macro for the entry into a function that might or might not return a value.
Definition tracing_macros.h:248
#define SYS_PORT_TRACING_FUNC_EXIT(type, func,...)
Tracing macro for when a function ends its execution.
Definition tracing_macros.h:274
#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:82
#define NULL
Definition iar_missing_defs.h:20
flags
Definition parser.h:97
__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:453
void * data
Address of the device instance private data.
Definition device.h:463
const void * api
Address of the API structure exposed by the device instance.
Definition device.h:459
const void * config
Address of device instance config information.
Definition device.h:457
GPIO callback structure.
Definition gpio.h:741
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:745
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:756
gpio_callback_handler_t handler
Actual callback function being called when relevant.
Definition gpio.h:748
This structure is common to all GPIO drivers and is expected to be the first element in the object po...
Definition gpio.h:691
gpio_port_pins_t port_pin_mask
Mask identifying pins supported by the controller.
Definition gpio.h:697
This structure is common to all GPIO drivers and is expected to be the first element in the driver's ...
Definition gpio.h:704
gpio_port_pins_t invert
Mask identifying pins that are configured as active low.
Definition gpio.h:710
Container for GPIO pin information specified in devicetree.
Definition gpio.h:289
const struct device * port
GPIO device controlling the pin.
Definition gpio.h:291
gpio_pin_t pin
The pin's number on the device.
Definition gpio.h:293
gpio_dt_flags_t dt_flags
The pin's configuration flags as specified in devicetree.
Definition gpio.h:295