David Brownell | 4c20386c | 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> |
| 13 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 14 | /* Platforms may implement their GPIO interface with library code, |
| 15 | * at a small performance cost for non-inlined operations and some |
| 16 | * extra memory (for code and for per-GPIO table entries). |
| 17 | * |
| 18 | * While the GPIO programming interface defines valid GPIO numbers |
| 19 | * 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] | 20 | * smaller range 0..ARCH_NR_GPIOS-1. |
David Brownell | c956126 | 2010-09-09 16:38:03 -0700 | [diff] [blame] | 21 | * |
| 22 | * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of |
| 23 | * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is |
| 24 | * actually an estimate of a board-specific value. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 25 | */ |
| 26 | |
| 27 | #ifndef ARCH_NR_GPIOS |
| 28 | #define ARCH_NR_GPIOS 256 |
| 29 | #endif |
| 30 | |
David Brownell | c956126 | 2010-09-09 16:38:03 -0700 | [diff] [blame] | 31 | /* |
| 32 | * "valid" GPIO numbers are nonnegative and may be passed to |
| 33 | * setup routines like gpio_request(). only some valid numbers |
| 34 | * can successfully be requested and used. |
| 35 | * |
| 36 | * Invalid GPIO numbers are useful for indicating no-such-GPIO in |
| 37 | * platform data and other tables. |
| 38 | */ |
| 39 | |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 40 | static inline bool gpio_is_valid(int number) |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 41 | { |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 42 | return number >= 0 && number < ARCH_NR_GPIOS; |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Mike Frysinger | 1f018c8 | 2009-12-09 06:53:39 -0500 | [diff] [blame] | 45 | struct device; |
Mark Brown | feb8369 | 2011-10-24 15:24:10 +0200 | [diff] [blame] | 46 | struct gpio; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 47 | struct seq_file; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 48 | struct module; |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 49 | struct device_node; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 50 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame^] | 51 | #ifdef CONFIG_PINCTRL |
| 52 | /** |
| 53 | * struct gpio_pin_range - pin range controlled by a gpio chip |
| 54 | * @head: list for maintaining set of pin ranges, used internally |
| 55 | * @pctldev: pinctrl device which handles corresponding pins |
| 56 | * @range: actual range of pins controlled by a gpio controller |
| 57 | */ |
| 58 | |
| 59 | struct gpio_pin_range { |
| 60 | struct list_head node; |
| 61 | struct pinctrl_dev *pctldev; |
| 62 | struct pinctrl_gpio_range range; |
| 63 | }; |
| 64 | #endif |
| 65 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 66 | /** |
| 67 | * struct gpio_chip - abstract a GPIO controller |
| 68 | * @label: for diagnostics |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 69 | * @dev: optional device providing the GPIOs |
| 70 | * @owner: helps prevent removal of modules exporting active GPIOs |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 71 | * @request: optional hook for chip-specific activation, such as |
| 72 | * enabling module power and clock; may sleep |
| 73 | * @free: optional hook for chip-specific deactivation, such as |
| 74 | * disabling module power and clock; may sleep |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 75 | * @direction_input: configures signal "offset" as input, or returns error |
| 76 | * @get: returns value for signal "offset"; for output signals this |
| 77 | * returns either the value actually sensed, or zero |
| 78 | * @direction_output: configures signal "offset" as output, or returns error |
Roland Stigge | 1ae9631 | 2012-09-25 09:56:14 +0200 | [diff] [blame] | 79 | * @set_debounce: optional hook for setting debounce time for specified gpio in |
| 80 | * interrupt triggered gpio chips |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 81 | * @set: assigns output value for signal "offset" |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 82 | * @to_irq: optional hook supporting non-static gpio_to_irq() mappings; |
| 83 | * implementation may not sleep |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 84 | * @dbg_show: optional routine to show contents in debugfs; default code |
| 85 | * will be used when this is omitted, but custom code can show extra |
| 86 | * state (such as pullup/pulldown configuration). |
| 87 | * @base: identifies the first GPIO number handled by this chip; or, if |
| 88 | * negative during registration, requests dynamic ID allocation. |
| 89 | * @ngpio: the number of GPIOs handled by this controller; the last GPIO |
| 90 | * handled is (base + ngpio - 1). |
| 91 | * @can_sleep: flag must be set iff get()/set() methods sleep, as they |
| 92 | * must while accessing GPIO expander chips over I2C or SPI |
Daniel Silverstone | 926b663 | 2009-04-02 16:57:05 -0700 | [diff] [blame] | 93 | * @names: if set, must be an array of strings to use as alternative |
| 94 | * names for the GPIOs in this chip. Any entry in the array |
| 95 | * may be NULL if there is no alias for the GPIO, however the |
Uwe Kleine-König | 7839ec7 | 2010-05-26 14:42:18 -0700 | [diff] [blame] | 96 | * array must be @ngpio entries long. A name can include a single printk |
| 97 | * format specifier for an unsigned int. It is substituted by the actual |
| 98 | * number of the gpio. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 99 | * |
| 100 | * A gpio_chip can help platforms abstract various sources of GPIOs so |
| 101 | * they can all be accessed through a common programing interface. |
| 102 | * Example sources would be SOC controllers, FPGAs, multifunction |
| 103 | * chips, dedicated GPIO expanders, and so on. |
| 104 | * |
| 105 | * Each chip controls a number of signals, identified in method calls |
| 106 | * by "offset" values in the range 0..(@ngpio - 1). When those signals |
| 107 | * are referenced through calls like gpio_get_value(gpio), the offset |
| 108 | * is calculated by subtracting @base from the gpio number. |
| 109 | */ |
| 110 | struct gpio_chip { |
Dmitry Baryshkov | 4fd5463 | 2008-10-15 22:03:10 -0700 | [diff] [blame] | 111 | const char *label; |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 112 | struct device *dev; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 113 | struct module *owner; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 114 | |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 115 | int (*request)(struct gpio_chip *chip, |
| 116 | unsigned offset); |
| 117 | void (*free)(struct gpio_chip *chip, |
| 118 | unsigned offset); |
| 119 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 120 | int (*direction_input)(struct gpio_chip *chip, |
| 121 | unsigned offset); |
| 122 | int (*get)(struct gpio_chip *chip, |
| 123 | unsigned offset); |
| 124 | int (*direction_output)(struct gpio_chip *chip, |
| 125 | unsigned offset, int value); |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 126 | int (*set_debounce)(struct gpio_chip *chip, |
| 127 | unsigned offset, unsigned debounce); |
| 128 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 129 | void (*set)(struct gpio_chip *chip, |
| 130 | unsigned offset, int value); |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 131 | |
| 132 | int (*to_irq)(struct gpio_chip *chip, |
| 133 | unsigned offset); |
| 134 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 135 | void (*dbg_show)(struct seq_file *s, |
| 136 | struct gpio_chip *chip); |
| 137 | int base; |
| 138 | u16 ngpio; |
Uwe Kleine-König | 6215499 | 2010-05-26 14:42:17 -0700 | [diff] [blame] | 139 | const char *const *names; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 140 | unsigned can_sleep:1; |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 141 | unsigned exported:1; |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 142 | |
| 143 | #if defined(CONFIG_OF_GPIO) |
| 144 | /* |
| 145 | * If CONFIG_OF is enabled, then all GPIO controllers described in the |
| 146 | * device tree automatically may have an OF translation |
| 147 | */ |
| 148 | struct device_node *of_node; |
| 149 | int of_gpio_n_cells; |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 150 | int (*of_xlate)(struct gpio_chip *gc, |
| 151 | const struct of_phandle_args *gpiospec, u32 *flags); |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 152 | #endif |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame^] | 153 | #ifdef CONFIG_PINCTRL |
| 154 | /* |
| 155 | * If CONFIG_PINCTRL is enabled, then gpio controllers can optionally |
| 156 | * describe the actual pin range which they serve in an SoC. This |
| 157 | * information would be used by pinctrl subsystem to configure |
| 158 | * corresponding pins for gpio usage. |
| 159 | */ |
| 160 | struct list_head pin_ranges; |
| 161 | #endif |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | extern const char *gpiochip_is_requested(struct gpio_chip *chip, |
| 165 | unsigned offset); |
Grant Likely | 1a2d397 | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 166 | extern struct gpio_chip *gpio_to_chip(unsigned gpio); |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 167 | extern int __must_check gpiochip_reserve(int start, int ngpio); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 168 | |
| 169 | /* add/remove chips */ |
| 170 | extern int gpiochip_add(struct gpio_chip *chip); |
| 171 | extern int __must_check gpiochip_remove(struct gpio_chip *chip); |
Grant Likely | 07ce8ec | 2012-05-18 23:01:05 -0600 | [diff] [blame] | 172 | extern struct gpio_chip *gpiochip_find(void *data, |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 173 | int (*match)(struct gpio_chip *chip, |
Grant Likely | 3d0f7cf | 2012-05-17 13:54:40 -0600 | [diff] [blame] | 174 | void *data)); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 175 | |
| 176 | |
| 177 | /* Always use the library code for GPIO management calls, |
| 178 | * or when sleeping may be involved. |
| 179 | */ |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 180 | extern int gpio_request(unsigned gpio, const char *label); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 181 | extern void gpio_free(unsigned gpio); |
| 182 | |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 183 | extern int gpio_direction_input(unsigned gpio); |
| 184 | extern int gpio_direction_output(unsigned gpio, int value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 185 | |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 186 | extern int gpio_set_debounce(unsigned gpio, unsigned debounce); |
| 187 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 188 | extern int gpio_get_value_cansleep(unsigned gpio); |
| 189 | extern void gpio_set_value_cansleep(unsigned gpio, int value); |
| 190 | |
| 191 | |
| 192 | /* A platform's <asm/gpio.h> code may want to inline the I/O calls when |
| 193 | * the GPIO is constant and refers to some always-present controller, |
| 194 | * giving direct access to chip registers and tight bitbanging loops. |
| 195 | */ |
| 196 | extern int __gpio_get_value(unsigned gpio); |
| 197 | extern void __gpio_set_value(unsigned gpio, int value); |
| 198 | |
| 199 | extern int __gpio_cansleep(unsigned gpio); |
| 200 | |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 201 | extern int __gpio_to_irq(unsigned gpio); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 202 | |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 203 | 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] | 204 | extern int gpio_request_array(const struct gpio *array, size_t num); |
| 205 | extern void gpio_free_array(const struct gpio *array, size_t num); |
Eric Miao | 3e45f1d | 2010-03-05 13:44:35 -0800 | [diff] [blame] | 206 | |
John Crispin | 1a0703e | 2011-12-20 21:40:21 +0100 | [diff] [blame] | 207 | /* bindings for managed devices that want to request gpios */ |
| 208 | int devm_gpio_request(struct device *dev, unsigned gpio, const char *label); |
Mark Brown | 09d71ff | 2012-05-02 12:46:46 +0100 | [diff] [blame] | 209 | int devm_gpio_request_one(struct device *dev, unsigned gpio, |
| 210 | unsigned long flags, const char *label); |
John Crispin | 1a0703e | 2011-12-20 21:40:21 +0100 | [diff] [blame] | 211 | void devm_gpio_free(struct device *dev, unsigned int gpio); |
| 212 | |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 213 | #ifdef CONFIG_GPIO_SYSFS |
| 214 | |
| 215 | /* |
| 216 | * A sysfs interface can be exported by individual drivers if they want, |
| 217 | * but more typically is configured entirely from userspace. |
| 218 | */ |
| 219 | extern int gpio_export(unsigned gpio, bool direction_may_change); |
Jani Nikula | a4177ee | 2009-09-22 16:46:33 -0700 | [diff] [blame] | 220 | extern int gpio_export_link(struct device *dev, const char *name, |
| 221 | unsigned gpio); |
Jani Nikula | 0769746 | 2009-12-15 16:46:20 -0800 | [diff] [blame] | 222 | extern int gpio_sysfs_set_active_low(unsigned gpio, int value); |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 223 | extern void gpio_unexport(unsigned gpio); |
| 224 | |
| 225 | #endif /* CONFIG_GPIO_SYSFS */ |
| 226 | |
Anton Vorontsov | 09cd952 | 2010-10-27 15:33:16 -0700 | [diff] [blame] | 227 | #else /* !CONFIG_GPIOLIB */ |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 228 | |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 229 | static inline bool gpio_is_valid(int number) |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 230 | { |
| 231 | /* only non-negative numbers are valid */ |
| 232 | return number >= 0; |
| 233 | } |
| 234 | |
David Brownell | 4c20386c | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 235 | /* platforms that don't directly support access to GPIOs through I2C, SPI, |
| 236 | * or other blocking infrastructure can use these wrappers. |
| 237 | */ |
| 238 | |
| 239 | static inline int gpio_cansleep(unsigned gpio) |
| 240 | { |
| 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static inline int gpio_get_value_cansleep(unsigned gpio) |
| 245 | { |
| 246 | might_sleep(); |
Hamo | eb9ae7f | 2011-10-21 09:38:32 +0800 | [diff] [blame] | 247 | return __gpio_get_value(gpio); |
David Brownell | 4c20386c | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | static inline void gpio_set_value_cansleep(unsigned gpio, int value) |
| 251 | { |
| 252 | might_sleep(); |
Hamo | eb9ae7f | 2011-10-21 09:38:32 +0800 | [diff] [blame] | 253 | __gpio_set_value(gpio, value); |
David Brownell | 4c20386c | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 254 | } |
| 255 | |
Anton Vorontsov | 09cd952 | 2010-10-27 15:33:16 -0700 | [diff] [blame] | 256 | #endif /* !CONFIG_GPIOLIB */ |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 257 | |
| 258 | #ifndef CONFIG_GPIO_SYSFS |
| 259 | |
Mike Frysinger | 1f018c8 | 2009-12-09 06:53:39 -0500 | [diff] [blame] | 260 | struct device; |
| 261 | |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 262 | /* sysfs support is only available with gpiolib, where it's optional */ |
| 263 | |
| 264 | static inline int gpio_export(unsigned gpio, bool direction_may_change) |
| 265 | { |
| 266 | return -ENOSYS; |
| 267 | } |
| 268 | |
Jani Nikula | a4177ee | 2009-09-22 16:46:33 -0700 | [diff] [blame] | 269 | static inline int gpio_export_link(struct device *dev, const char *name, |
| 270 | unsigned gpio) |
| 271 | { |
| 272 | return -ENOSYS; |
| 273 | } |
| 274 | |
Jani Nikula | 0769746 | 2009-12-15 16:46:20 -0800 | [diff] [blame] | 275 | static inline int gpio_sysfs_set_active_low(unsigned gpio, int value) |
| 276 | { |
| 277 | return -ENOSYS; |
| 278 | } |
| 279 | |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 280 | static inline void gpio_unexport(unsigned gpio) |
| 281 | { |
| 282 | } |
| 283 | #endif /* CONFIG_GPIO_SYSFS */ |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 284 | |
David Brownell | 4c20386c | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 285 | #endif /* _ASM_GENERIC_GPIO_H */ |