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> |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 8 | |
Michael Buesch | 7444a72 | 2008-07-25 01:46:11 -0700 | [diff] [blame] | 9 | #ifdef CONFIG_GPIOLIB |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 10 | |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 11 | #include <linux/compiler.h> |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 12 | #include <linux/gpio/driver.h> |
| 13 | #include <linux/gpio/consumer.h> |
David Brownell | 6ea0205 | 2008-05-23 13:04:58 -0700 | [diff] [blame] | 14 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 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). |
| 18 | * |
| 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 |
Michael Buesch | 6a9436d | 2008-07-26 15:22:26 -0700 | [diff] [blame] | 21 | * smaller range 0..ARCH_NR_GPIOS-1. |
David Brownell | c956126 | 2010-09-09 16:38:03 -0700 | [diff] [blame] | 22 | * |
| 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. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #ifndef ARCH_NR_GPIOS |
Mika Westerberg | 7ca267f | 2014-09-15 17:09:44 +0300 | [diff] [blame] | 29 | #define ARCH_NR_GPIOS 512 |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 30 | #endif |
| 31 | |
David Brownell | c956126 | 2010-09-09 16:38:03 -0700 | [diff] [blame] | 32 | /* |
| 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. |
| 36 | * |
| 37 | * Invalid GPIO numbers are useful for indicating no-such-GPIO in |
| 38 | * platform data and other tables. |
| 39 | */ |
| 40 | |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 41 | static inline bool gpio_is_valid(int number) |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 42 | { |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 43 | return number >= 0 && number < ARCH_NR_GPIOS; |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Mike Frysinger | 1f018c8 | 2009-12-09 06:53:39 -0500 | [diff] [blame] | 46 | struct device; |
Mark Brown | feb8369 | 2011-10-24 15:24:10 +0200 | [diff] [blame] | 47 | struct gpio; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 48 | struct seq_file; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 49 | struct module; |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 50 | struct device_node; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 51 | struct gpio_desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 52 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 53 | /* caller holds gpio_lock *OR* gpio is marked as requested */ |
| 54 | static inline struct gpio_chip *gpio_to_chip(unsigned gpio) |
| 55 | { |
| 56 | return gpiod_to_chip(gpio_to_desc(gpio)); |
| 57 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 58 | |
| 59 | /* Always use the library code for GPIO management calls, |
| 60 | * or when sleeping may be involved. |
| 61 | */ |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 62 | extern int gpio_request(unsigned gpio, const char *label); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 63 | extern void gpio_free(unsigned gpio); |
| 64 | |
Alexandre Courbot | c7caf86 | 2014-07-24 14:51:02 +0900 | [diff] [blame] | 65 | static inline int gpio_direction_input(unsigned gpio) |
| 66 | { |
| 67 | return gpiod_direction_input(gpio_to_desc(gpio)); |
| 68 | } |
| 69 | static inline int gpio_direction_output(unsigned gpio, int value) |
| 70 | { |
| 71 | return gpiod_direction_output_raw(gpio_to_desc(gpio), value); |
| 72 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 73 | |
Alexandre Courbot | c7caf86 | 2014-07-24 14:51:02 +0900 | [diff] [blame] | 74 | static inline int gpio_set_debounce(unsigned gpio, unsigned debounce) |
| 75 | { |
| 76 | return gpiod_set_debounce(gpio_to_desc(gpio), debounce); |
| 77 | } |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 78 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 79 | static inline int gpio_get_value_cansleep(unsigned gpio) |
| 80 | { |
| 81 | return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio)); |
| 82 | } |
| 83 | static inline void gpio_set_value_cansleep(unsigned gpio, int value) |
| 84 | { |
| 85 | return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value); |
| 86 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 87 | |
| 88 | |
| 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. |
| 92 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 93 | static inline int __gpio_get_value(unsigned gpio) |
| 94 | { |
| 95 | return gpiod_get_raw_value(gpio_to_desc(gpio)); |
| 96 | } |
| 97 | static inline void __gpio_set_value(unsigned gpio, int value) |
| 98 | { |
| 99 | return gpiod_set_raw_value(gpio_to_desc(gpio), value); |
| 100 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 101 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 102 | static inline int __gpio_cansleep(unsigned gpio) |
| 103 | { |
| 104 | return gpiod_cansleep(gpio_to_desc(gpio)); |
| 105 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 106 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 107 | static inline int __gpio_to_irq(unsigned gpio) |
| 108 | { |
| 109 | return gpiod_to_irq(gpio_to_desc(gpio)); |
| 110 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 111 | |
Linus Torvalds | d8a3515 | 2011-01-13 17:26:46 -0800 | [diff] [blame] | 112 | 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] | 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); |
Eric Miao | 3e45f1d | 2010-03-05 13:44:35 -0800 | [diff] [blame] | 115 | |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 116 | /* |
| 117 | * A sysfs interface can be exported by individual drivers if they want, |
| 118 | * but more typically is configured entirely from userspace. |
| 119 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 120 | static inline int gpio_export(unsigned gpio, bool direction_may_change) |
| 121 | { |
| 122 | return gpiod_export(gpio_to_desc(gpio), direction_may_change); |
| 123 | } |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 124 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 125 | static inline int gpio_export_link(struct device *dev, const char *name, |
| 126 | unsigned gpio) |
| 127 | { |
| 128 | return gpiod_export_link(dev, name, gpio_to_desc(gpio)); |
| 129 | } |
| 130 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 131 | static inline void gpio_unexport(unsigned gpio) |
| 132 | { |
| 133 | gpiod_unexport(gpio_to_desc(gpio)); |
| 134 | } |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 135 | |
Anton Vorontsov | 09cd952 | 2010-10-27 15:33:16 -0700 | [diff] [blame] | 136 | #else /* !CONFIG_GPIOLIB */ |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 137 | |
Joe Perches | 3474cb3 | 2011-05-10 16:23:07 -0700 | [diff] [blame] | 138 | static inline bool gpio_is_valid(int number) |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 139 | { |
| 140 | /* only non-negative numbers are valid */ |
| 141 | return number >= 0; |
| 142 | } |
| 143 | |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 144 | /* platforms that don't directly support access to GPIOs through I2C, SPI, |
| 145 | * or other blocking infrastructure can use these wrappers. |
| 146 | */ |
| 147 | |
| 148 | static inline int gpio_cansleep(unsigned gpio) |
| 149 | { |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | static inline int gpio_get_value_cansleep(unsigned gpio) |
| 154 | { |
| 155 | might_sleep(); |
Hamo | eb9ae7f | 2011-10-21 09:38:32 +0800 | [diff] [blame] | 156 | return __gpio_get_value(gpio); |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static inline void gpio_set_value_cansleep(unsigned gpio, int value) |
| 160 | { |
| 161 | might_sleep(); |
Hamo | eb9ae7f | 2011-10-21 09:38:32 +0800 | [diff] [blame] | 162 | __gpio_set_value(gpio, value); |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 163 | } |
| 164 | |
Anton Vorontsov | 09cd952 | 2010-10-27 15:33:16 -0700 | [diff] [blame] | 165 | #endif /* !CONFIG_GPIOLIB */ |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 166 | |
David Brownell | 4c20386 | 2007-02-12 00:53:11 -0800 | [diff] [blame] | 167 | #endif /* _ASM_GENERIC_GPIO_H */ |