David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_GPIO_H |
| 2 | #define _ASM_GENERIC_GPIO_H |
| 3 | |
Mike Frysinger | b3db4a8 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 4 | #include <linux/kernel.h> |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 5 | #include <linux/types.h> |
Atsushi Nemoto | 25947d5 | 2008-07-28 15:46:38 -0700 | [diff] [blame] | 6 | #include <linux/errno.h> |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 7 | #include <linux/of.h> |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 8 | #include <linux/pinctrl/pinctrl.h> |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 9 | |
Michael Buesch | 7444a72 | 2008-07-25 01:46:11 -0700 | [diff] [blame] | 10 | #ifdef CONFIG_GPIOLIB |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 11 | |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 13 | #include <linux/gpio/driver.h> |
| 14 | #include <linux/gpio/consumer.h> |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 15 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 16 | /* Platforms may implement their GPIO interface with library code, |
| 17 | * at a small performance cost for non-inlined operations and some |
| 18 | * extra memory (for code and for per-GPIO table entries). |
| 19 | * |
| 20 | * While the GPIO programming interface defines valid GPIO numbers |
| 21 | * to be in the range 0..MAX_INT, this library restricts them to the |
Michael Buesch | 6a9436d | 2008-07-26 15:22:26 -0700 | [diff] [blame] | 22 | * smaller range 0..ARCH_NR_GPIOS-1. |
David Brownell | c956126 | 2010-09-09 16:38:03 -0700 | [diff] [blame] | 23 | * |
| 24 | * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of |
| 25 | * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is |
| 26 | * actually an estimate of a board-specific value. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | #ifndef ARCH_NR_GPIOS |
| 30 | #define ARCH_NR_GPIOS 256 |
| 31 | #endif |
| 32 | |
David Brownell | c956126 | 2010-09-09 16:38:03 -0700 | [diff] [blame] | 33 | /* |
| 34 | * "valid" GPIO numbers are nonnegative and may be passed to |
| 35 | * setup routines like gpio_request(). only some valid numbers |
| 36 | * can successfully be requested and used. |
| 37 | * |
| 38 | * Invalid GPIO numbers are useful for indicating no-such-GPIO in |
| 39 | * platform data and other tables. |
| 40 | */ |
| 41 | |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 42 | static inline bool gpio_is_valid(int number) |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 43 | { |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 44 | return number >= 0 && number < ARCH_NR_GPIOS; |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Mike Frysinger | 1f018c8 | 2009-12-09 06:53:39 -0500 | [diff] [blame] | 47 | struct device; |
Mark Brown | feb8369 | 2011-10-24 15:24:10 +0200 | [diff] [blame] | 48 | struct gpio; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 49 | struct seq_file; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 50 | struct module; |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 51 | struct device_node; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 52 | struct gpio_desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 53 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 54 | /* caller holds gpio_lock *OR* gpio is marked as requested */ |
| 55 | static inline struct gpio_chip *gpio_to_chip(unsigned gpio) |
| 56 | { |
| 57 | return gpiod_to_chip(gpio_to_desc(gpio)); |
| 58 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 59 | |
| 60 | /* Always use the library code for GPIO management calls, |
| 61 | * or when sleeping may be involved. |
| 62 | */ |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 63 | extern int gpio_request(unsigned gpio, const char *label); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 64 | extern void gpio_free(unsigned gpio); |
| 65 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 66 | extern int gpio_direction_input(unsigned gpio); |
| 67 | extern int gpio_direction_output(unsigned gpio, int value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 68 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 69 | extern int gpio_set_debounce(unsigned gpio, unsigned debounce); |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 70 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 71 | static inline int gpio_get_value_cansleep(unsigned gpio) |
| 72 | { |
| 73 | return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio)); |
| 74 | } |
| 75 | static inline void gpio_set_value_cansleep(unsigned gpio, int value) |
| 76 | { |
| 77 | return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value); |
| 78 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 79 | |
| 80 | |
| 81 | /* A platform's <asm/gpio.h> code may want to inline the I/O calls when |
| 82 | * the GPIO is constant and refers to some always-present controller, |
| 83 | * giving direct access to chip registers and tight bitbanging loops. |
| 84 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 85 | static inline int __gpio_get_value(unsigned gpio) |
| 86 | { |
| 87 | return gpiod_get_raw_value(gpio_to_desc(gpio)); |
| 88 | } |
| 89 | static inline void __gpio_set_value(unsigned gpio, int value) |
| 90 | { |
| 91 | return gpiod_set_raw_value(gpio_to_desc(gpio), value); |
| 92 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 93 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 94 | static inline int __gpio_cansleep(unsigned gpio) |
| 95 | { |
| 96 | return gpiod_cansleep(gpio_to_desc(gpio)); |
| 97 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 98 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 99 | static inline int __gpio_to_irq(unsigned gpio) |
| 100 | { |
| 101 | return gpiod_to_irq(gpio_to_desc(gpio)); |
| 102 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 103 | |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 104 | extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label); |
Lars-Peter Clausen | 7c29597 | 2011-05-25 16:20:31 -0700 | [diff] [blame] | 105 | extern int gpio_request_array(const struct gpio *array, size_t num); |
| 106 | extern void gpio_free_array(const struct gpio *array, size_t num); |
Eric Miao | 3e45f1d | 2010-03-05 13:44:35 -0800 | [diff] [blame] | 107 | |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 108 | /* |
| 109 | * A sysfs interface can be exported by individual drivers if they want, |
| 110 | * but more typically is configured entirely from userspace. |
| 111 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 112 | static inline int gpio_export(unsigned gpio, bool direction_may_change) |
| 113 | { |
| 114 | return gpiod_export(gpio_to_desc(gpio), direction_may_change); |
| 115 | } |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 116 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 117 | static inline int gpio_export_link(struct device *dev, const char *name, |
| 118 | unsigned gpio) |
| 119 | { |
| 120 | return gpiod_export_link(dev, name, gpio_to_desc(gpio)); |
| 121 | } |
| 122 | |
| 123 | static inline int gpio_sysfs_set_active_low(unsigned gpio, int value) |
| 124 | { |
| 125 | return gpiod_sysfs_set_active_low(gpio_to_desc(gpio), value); |
| 126 | } |
| 127 | |
| 128 | static inline void gpio_unexport(unsigned gpio) |
| 129 | { |
| 130 | gpiod_unexport(gpio_to_desc(gpio)); |
| 131 | } |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 132 | |
Shawn Guo | d59b4ea | 2013-01-17 22:03:22 +0800 | [diff] [blame] | 133 | #ifdef CONFIG_PINCTRL |
| 134 | |
| 135 | /** |
| 136 | * struct gpio_pin_range - pin range controlled by a gpio chip |
| 137 | * @head: list for maintaining set of pin ranges, used internally |
| 138 | * @pctldev: pinctrl device which handles corresponding pins |
| 139 | * @range: actual range of pins controlled by a gpio controller |
| 140 | */ |
| 141 | |
| 142 | struct gpio_pin_range { |
| 143 | struct list_head node; |
| 144 | struct pinctrl_dev *pctldev; |
| 145 | struct pinctrl_gpio_range range; |
| 146 | }; |
| 147 | |
| 148 | int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, |
| 149 | unsigned int gpio_offset, unsigned int pin_offset, |
| 150 | unsigned int npins); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 151 | int gpiochip_add_pingroup_range(struct gpio_chip *chip, |
| 152 | struct pinctrl_dev *pctldev, |
| 153 | unsigned int gpio_offset, const char *pin_group); |
Shawn Guo | d59b4ea | 2013-01-17 22:03:22 +0800 | [diff] [blame] | 154 | void gpiochip_remove_pin_ranges(struct gpio_chip *chip); |
| 155 | |
| 156 | #else |
| 157 | |
| 158 | static inline int |
| 159 | gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, |
| 160 | unsigned int gpio_offset, unsigned int pin_offset, |
| 161 | unsigned int npins) |
| 162 | { |
| 163 | return 0; |
| 164 | } |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 165 | static inline int |
| 166 | gpiochip_add_pingroup_range(struct gpio_chip *chip, |
| 167 | struct pinctrl_dev *pctldev, |
| 168 | unsigned int gpio_offset, const char *pin_group) |
| 169 | { |
| 170 | return 0; |
| 171 | } |
Shawn Guo | d59b4ea | 2013-01-17 22:03:22 +0800 | [diff] [blame] | 172 | |
| 173 | static inline void |
| 174 | gpiochip_remove_pin_ranges(struct gpio_chip *chip) |
| 175 | { |
| 176 | } |
| 177 | |
| 178 | #endif /* CONFIG_PINCTRL */ |
| 179 | |
Anton Vorontsov | 09cd952 | 2010-10-27 15:33:16 -0700 | [diff] [blame] | 180 | #else /* !CONFIG_GPIOLIB */ |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 181 | |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 182 | static inline bool gpio_is_valid(int number) |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 183 | { |
| 184 | /* only non-negative numbers are valid */ |
| 185 | return number >= 0; |
| 186 | } |
| 187 | |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 188 | /* platforms that don't directly support access to GPIOs through I2C, SPI, |
| 189 | * or other blocking infrastructure can use these wrappers. |
| 190 | */ |
| 191 | |
| 192 | static inline int gpio_cansleep(unsigned gpio) |
| 193 | { |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | static inline int gpio_get_value_cansleep(unsigned gpio) |
| 198 | { |
| 199 | might_sleep(); |
Hamo | eb9ae7f | 2011-10-21 09:38:32 +0800 | [diff] [blame] | 200 | return __gpio_get_value(gpio); |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | static inline void gpio_set_value_cansleep(unsigned gpio, int value) |
| 204 | { |
| 205 | might_sleep(); |
Hamo | eb9ae7f | 2011-10-21 09:38:32 +0800 | [diff] [blame] | 206 | __gpio_set_value(gpio, value); |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 207 | } |
| 208 | |
Anton Vorontsov | 09cd952 | 2010-10-27 15:33:16 -0700 | [diff] [blame] | 209 | #endif /* !CONFIG_GPIOLIB */ |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 210 | |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 211 | #endif /* _ASM_GENERIC_GPIO_H */ |