1 #ifndef _ASM_GENERIC_GPIO_H
2 #define _ASM_GENERIC_GPIO_H
4 #include <linux/kernel.h>
5 #include <linux/types.h>
6 #include <linux/errno.h>
11 #include <linux/compiler.h>
12 #include <linux/gpio/driver.h>
13 #include <linux/gpio/consumer.h>
15 /* Platforms may implement their GPIO interface with library code,
16 * at a small performance cost for non-inlined operations and some
17 * extra memory (for code and for per-GPIO table entries).
19 * While the GPIO programming interface defines valid GPIO numbers
20 * to be in the range 0..MAX_INT, this library restricts them to the
21 * smaller range 0..ARCH_NR_GPIOS-1.
23 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
24 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
25 * actually an estimate of a board-specific value.
29 #define ARCH_NR_GPIOS 512
33 * "valid" GPIO numbers are nonnegative and may be passed to
34 * setup routines like gpio_request(). only some valid numbers
35 * can successfully be requested and used.
37 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
38 * platform data and other tables.
41 static inline bool gpio_is_valid(int number
)
43 return number
>= 0 && number
< ARCH_NR_GPIOS
;
53 /* caller holds gpio_lock *OR* gpio is marked as requested */
54 static inline struct gpio_chip
*gpio_to_chip(unsigned gpio
)
56 return gpiod_to_chip(gpio_to_desc(gpio
));
59 /* Always use the library code for GPIO management calls,
60 * or when sleeping may be involved.
62 extern int gpio_request(unsigned gpio
, const char *label
);
63 extern void gpio_free(unsigned gpio
);
65 static inline int gpio_direction_input(unsigned gpio
)
67 return gpiod_direction_input(gpio_to_desc(gpio
));
69 static inline int gpio_direction_output(unsigned gpio
, int value
)
71 return gpiod_direction_output_raw(gpio_to_desc(gpio
), value
);
74 static inline int gpio_set_debounce(unsigned gpio
, unsigned debounce
)
76 return gpiod_set_debounce(gpio_to_desc(gpio
), debounce
);
79 static inline int gpio_get_value_cansleep(unsigned gpio
)
81 return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio
));
83 static inline void gpio_set_value_cansleep(unsigned gpio
, int value
)
85 return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio
), value
);
89 /* A platform's <asm/gpio.h> code may want to inline the I/O calls when
90 * the GPIO is constant and refers to some always-present controller,
91 * giving direct access to chip registers and tight bitbanging loops.
93 static inline int __gpio_get_value(unsigned gpio
)
95 return gpiod_get_raw_value(gpio_to_desc(gpio
));
97 static inline void __gpio_set_value(unsigned gpio
, int value
)
99 return gpiod_set_raw_value(gpio_to_desc(gpio
), value
);
102 static inline int __gpio_cansleep(unsigned gpio
)
104 return gpiod_cansleep(gpio_to_desc(gpio
));
107 static inline int __gpio_to_irq(unsigned gpio
)
109 return gpiod_to_irq(gpio_to_desc(gpio
));
112 extern int gpio_request_one(unsigned gpio
, unsigned long flags
, const char *label
);
113 extern int gpio_request_array(const struct gpio
*array
, size_t num
);
114 extern void gpio_free_array(const struct gpio
*array
, size_t num
);
117 * A sysfs interface can be exported by individual drivers if they want,
118 * but more typically is configured entirely from userspace.
120 static inline int gpio_export(unsigned gpio
, bool direction_may_change
)
122 return gpiod_export(gpio_to_desc(gpio
), direction_may_change
);
125 static inline int gpio_export_link(struct device
*dev
, const char *name
,
128 return gpiod_export_link(dev
, name
, gpio_to_desc(gpio
));
131 static inline void gpio_unexport(unsigned gpio
)
133 gpiod_unexport(gpio_to_desc(gpio
));
136 #else /* !CONFIG_GPIOLIB */
138 static inline bool gpio_is_valid(int number
)
140 /* only non-negative numbers are valid */
144 /* platforms that don't directly support access to GPIOs through I2C, SPI,
145 * or other blocking infrastructure can use these wrappers.
148 static inline int gpio_cansleep(unsigned gpio
)
153 static inline int gpio_get_value_cansleep(unsigned gpio
)
156 return __gpio_get_value(gpio
);
159 static inline void gpio_set_value_cansleep(unsigned gpio
, int value
)
162 __gpio_set_value(gpio
, value
);
165 #endif /* !CONFIG_GPIOLIB */
167 #endif /* _ASM_GENERIC_GPIO_H */