4 #include <linux/errno.h>
6 /* see Documentation/gpio/gpio-legacy.txt */
8 /* make these flag values available regardless of GPIO kconfig options */
9 #define GPIOF_DIR_OUT (0 << 0)
10 #define GPIOF_DIR_IN (1 << 0)
12 #define GPIOF_INIT_LOW (0 << 1)
13 #define GPIOF_INIT_HIGH (1 << 1)
15 #define GPIOF_IN (GPIOF_DIR_IN)
16 #define GPIOF_OUT_INIT_LOW (GPIOF_DIR_OUT | GPIOF_INIT_LOW)
17 #define GPIOF_OUT_INIT_HIGH (GPIOF_DIR_OUT | GPIOF_INIT_HIGH)
19 /* Gpio pin is active-low */
20 #define GPIOF_ACTIVE_LOW (1 << 2)
22 /* Gpio pin is open drain */
23 #define GPIOF_OPEN_DRAIN (1 << 3)
25 /* Gpio pin is open source */
26 #define GPIOF_OPEN_SOURCE (1 << 4)
28 #define GPIOF_EXPORT (1 << 5)
29 #define GPIOF_EXPORT_CHANGEABLE (1 << 6)
30 #define GPIOF_EXPORT_DIR_FIXED (GPIOF_EXPORT)
31 #define GPIOF_EXPORT_DIR_CHANGEABLE (GPIOF_EXPORT | GPIOF_EXPORT_CHANGEABLE)
34 * struct gpio - a structure describing a GPIO with configuration
35 * @gpio: the GPIO number
36 * @flags: GPIO configuration as specified by GPIOF_*
37 * @label: a literal description string of this GPIO
47 #ifdef CONFIG_ARCH_HAVE_CUSTOM_GPIO_H
51 #include <asm-generic/gpio.h>
53 static inline int gpio_get_value(unsigned int gpio)
55 return __gpio_get_value(gpio);
58 static inline void gpio_set_value(unsigned int gpio, int value)
60 __gpio_set_value(gpio, value);
63 static inline int gpio_cansleep(unsigned int gpio)
65 return __gpio_cansleep(gpio);
68 static inline int gpio_to_irq(unsigned int gpio)
70 return __gpio_to_irq(gpio);
73 static inline int irq_to_gpio(unsigned int irq)
78 #endif /* ! CONFIG_ARCH_HAVE_CUSTOM_GPIO_H */
80 /* CONFIG_GPIOLIB: bindings for managed devices that want to request gpios */
84 int devm_gpio_request(struct device *dev, unsigned gpio, const char *label);
85 int devm_gpio_request_one(struct device *dev, unsigned gpio,
86 unsigned long flags, const char *label);
87 void devm_gpio_free(struct device *dev, unsigned int gpio);
89 #else /* ! CONFIG_GPIOLIB */
91 #include <linux/kernel.h>
92 #include <linux/types.h>
93 #include <linux/bug.h>
94 #include <linux/pinctrl/pinctrl.h>
99 static inline bool gpio_is_valid(int number)
104 static inline int gpio_request(unsigned gpio, const char *label)
109 static inline int gpio_request_one(unsigned gpio,
110 unsigned long flags, const char *label)
115 static inline int gpio_request_array(const struct gpio *array, size_t num)
120 static inline void gpio_free(unsigned gpio)
124 /* GPIO can never have been requested */
128 static inline void gpio_free_array(const struct gpio *array, size_t num)
132 /* GPIO can never have been requested */
136 static inline int gpio_direction_input(unsigned gpio)
141 static inline int gpio_direction_output(unsigned gpio, int value)
146 static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
151 static inline int gpio_get_value(unsigned gpio)
153 /* GPIO can never have been requested or set as {in,out}put */
158 static inline void gpio_set_value(unsigned gpio, int value)
160 /* GPIO can never have been requested or set as output */
164 static inline int gpio_cansleep(unsigned gpio)
166 /* GPIO can never have been requested or set as {in,out}put */
171 static inline int gpio_get_value_cansleep(unsigned gpio)
173 /* GPIO can never have been requested or set as {in,out}put */
178 static inline void gpio_set_value_cansleep(unsigned gpio, int value)
180 /* GPIO can never have been requested or set as output */
184 static inline int gpio_export(unsigned gpio, bool direction_may_change)
186 /* GPIO can never have been requested or set as {in,out}put */
191 static inline int gpio_export_link(struct device *dev, const char *name,
194 /* GPIO can never have been exported */
199 static inline void gpio_unexport(unsigned gpio)
201 /* GPIO can never have been exported */
205 static inline int gpio_to_irq(unsigned gpio)
207 /* GPIO can never have been requested or set as input */
212 static inline int gpiochip_lock_as_irq(struct gpio_chip *chip,
219 static inline void gpiochip_unlock_as_irq(struct gpio_chip *chip,
225 static inline int irq_to_gpio(unsigned irq)
227 /* irq can never have been returned from gpio_to_irq() */
233 gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
234 unsigned int gpio_offset, unsigned int pin_offset,
242 gpiochip_add_pingroup_range(struct gpio_chip *chip,
243 struct pinctrl_dev *pctldev,
244 unsigned int gpio_offset, const char *pin_group)
251 gpiochip_remove_pin_ranges(struct gpio_chip *chip)
256 static inline int devm_gpio_request(struct device *dev, unsigned gpio,
263 static inline int devm_gpio_request_one(struct device *dev, unsigned gpio,
264 unsigned long flags, const char *label)
270 static inline void devm_gpio_free(struct device *dev, unsigned int gpio)
275 #endif /* ! CONFIG_GPIOLIB */
277 #endif /* __LINUX_GPIO_H */