blob: bde646995d10ab7c214b69fd818ae8328aa6b319 [file] [log] [blame]
David Brownell4c203862007-02-12 00:53:11 -08001#ifndef _ASM_GENERIC_GPIO_H
2#define _ASM_GENERIC_GPIO_H
3
Mike Frysingerb3db4a82009-10-01 15:43:56 -07004#include <linux/kernel.h>
David Brownell6ea02052008-05-23 13:04:58 -07005#include <linux/types.h>
Atsushi Nemoto25947d52008-07-28 15:46:38 -07006#include <linux/errno.h>
Grant Likely15c9a0a2011-12-12 09:25:57 -07007#include <linux/of.h>
Shiraz Hashimf23f1512012-10-27 15:21:36 +05308#include <linux/pinctrl/pinctrl.h>
David Brownell6ea02052008-05-23 13:04:58 -07009
Michael Buesch7444a722008-07-25 01:46:11 -070010#ifdef CONFIG_GPIOLIB
David Brownelld2876d02008-02-04 22:28:20 -080011
David Brownell6ea02052008-05-23 13:04:58 -070012#include <linux/compiler.h>
13
David Brownelld2876d02008-02-04 22:28:20 -080014/* 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 Buesch6a9436d2008-07-26 15:22:26 -070020 * smaller range 0..ARCH_NR_GPIOS-1.
David Brownellc9561262010-09-09 16:38:03 -070021 *
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 Brownelld2876d02008-02-04 22:28:20 -080025 */
26
27#ifndef ARCH_NR_GPIOS
28#define ARCH_NR_GPIOS 256
29#endif
30
David Brownellc9561262010-09-09 16:38:03 -070031/*
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 Perches3474cb32011-05-10 16:23:07 -070040static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070041{
Joe Perches3474cb32011-05-10 16:23:07 -070042 return number >= 0 && number < ARCH_NR_GPIOS;
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070043}
44
Mike Frysinger1f018c82009-12-09 06:53:39 -050045struct device;
Mark Brownfeb83692011-10-24 15:24:10 +020046struct gpio;
David Brownelld2876d02008-02-04 22:28:20 -080047struct seq_file;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070048struct module;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060049struct device_node;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090050struct gpio_desc;
David Brownelld2876d02008-02-04 22:28:20 -080051
52/**
53 * struct gpio_chip - abstract a GPIO controller
54 * @label: for diagnostics
David Brownelld8f388d2008-07-25 01:46:07 -070055 * @dev: optional device providing the GPIOs
56 * @owner: helps prevent removal of modules exporting active GPIOs
Alexandre Courbot1a989d02013-02-03 01:29:24 +090057 * @list: links gpio_chips together for traversal
David Brownell35e8bb52008-10-15 22:03:16 -070058 * @request: optional hook for chip-specific activation, such as
59 * enabling module power and clock; may sleep
60 * @free: optional hook for chip-specific deactivation, such as
61 * disabling module power and clock; may sleep
Mathias Nyman80b0a602012-10-24 17:25:27 +030062 * @get_direction: returns direction for signal "offset", 0=out, 1=in,
63 * (same as GPIOF_DIR_XXX), or negative error
David Brownelld2876d02008-02-04 22:28:20 -080064 * @direction_input: configures signal "offset" as input, or returns error
65 * @get: returns value for signal "offset"; for output signals this
66 * returns either the value actually sensed, or zero
67 * @direction_output: configures signal "offset" as output, or returns error
Roland Stigge1ae96312012-09-25 09:56:14 +020068 * @set_debounce: optional hook for setting debounce time for specified gpio in
69 * interrupt triggered gpio chips
David Brownelld2876d02008-02-04 22:28:20 -080070 * @set: assigns output value for signal "offset"
David Brownell0f6d5042008-10-15 22:03:14 -070071 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
72 * implementation may not sleep
David Brownelld2876d02008-02-04 22:28:20 -080073 * @dbg_show: optional routine to show contents in debugfs; default code
74 * will be used when this is omitted, but custom code can show extra
75 * state (such as pullup/pulldown configuration).
76 * @base: identifies the first GPIO number handled by this chip; or, if
77 * negative during registration, requests dynamic ID allocation.
78 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
79 * handled is (base + ngpio - 1).
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090080 * @desc: array of ngpio descriptors. Private.
David Brownelld2876d02008-02-04 22:28:20 -080081 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
82 * must while accessing GPIO expander chips over I2C or SPI
Daniel Silverstone926b6632009-04-02 16:57:05 -070083 * @names: if set, must be an array of strings to use as alternative
84 * names for the GPIOs in this chip. Any entry in the array
85 * may be NULL if there is no alias for the GPIO, however the
Uwe Kleine-König7839ec72010-05-26 14:42:18 -070086 * array must be @ngpio entries long. A name can include a single printk
87 * format specifier for an unsigned int. It is substituted by the actual
88 * number of the gpio.
David Brownelld2876d02008-02-04 22:28:20 -080089 *
90 * A gpio_chip can help platforms abstract various sources of GPIOs so
91 * they can all be accessed through a common programing interface.
92 * Example sources would be SOC controllers, FPGAs, multifunction
93 * chips, dedicated GPIO expanders, and so on.
94 *
95 * Each chip controls a number of signals, identified in method calls
96 * by "offset" values in the range 0..(@ngpio - 1). When those signals
97 * are referenced through calls like gpio_get_value(gpio), the offset
98 * is calculated by subtracting @base from the gpio number.
99 */
100struct gpio_chip {
Dmitry Baryshkov4fd54632008-10-15 22:03:10 -0700101 const char *label;
David Brownelld8f388d2008-07-25 01:46:07 -0700102 struct device *dev;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700103 struct module *owner;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900104 struct list_head list;
David Brownelld2876d02008-02-04 22:28:20 -0800105
David Brownell35e8bb52008-10-15 22:03:16 -0700106 int (*request)(struct gpio_chip *chip,
107 unsigned offset);
108 void (*free)(struct gpio_chip *chip,
109 unsigned offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300110 int (*get_direction)(struct gpio_chip *chip,
111 unsigned offset);
David Brownelld2876d02008-02-04 22:28:20 -0800112 int (*direction_input)(struct gpio_chip *chip,
113 unsigned offset);
114 int (*get)(struct gpio_chip *chip,
115 unsigned offset);
116 int (*direction_output)(struct gpio_chip *chip,
117 unsigned offset, int value);
Felipe Balbic4b5be92010-05-26 14:42:23 -0700118 int (*set_debounce)(struct gpio_chip *chip,
119 unsigned offset, unsigned debounce);
120
David Brownelld2876d02008-02-04 22:28:20 -0800121 void (*set)(struct gpio_chip *chip,
122 unsigned offset, int value);
David Brownell0f6d5042008-10-15 22:03:14 -0700123
124 int (*to_irq)(struct gpio_chip *chip,
125 unsigned offset);
126
David Brownelld2876d02008-02-04 22:28:20 -0800127 void (*dbg_show)(struct seq_file *s,
128 struct gpio_chip *chip);
129 int base;
130 u16 ngpio;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900131 struct gpio_desc *desc;
Uwe Kleine-König62154992010-05-26 14:42:17 -0700132 const char *const *names;
David Brownelld2876d02008-02-04 22:28:20 -0800133 unsigned can_sleep:1;
David Brownelld8f388d2008-07-25 01:46:07 -0700134 unsigned exported:1;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600135
136#if defined(CONFIG_OF_GPIO)
137 /*
138 * If CONFIG_OF is enabled, then all GPIO controllers described in the
139 * device tree automatically may have an OF translation
140 */
141 struct device_node *of_node;
142 int of_gpio_n_cells;
Grant Likely15c9a0a2011-12-12 09:25:57 -0700143 int (*of_xlate)(struct gpio_chip *gc,
144 const struct of_phandle_args *gpiospec, u32 *flags);
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600145#endif
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530146#ifdef CONFIG_PINCTRL
147 /*
148 * If CONFIG_PINCTRL is enabled, then gpio controllers can optionally
149 * describe the actual pin range which they serve in an SoC. This
150 * information would be used by pinctrl subsystem to configure
151 * corresponding pins for gpio usage.
152 */
153 struct list_head pin_ranges;
154#endif
David Brownelld2876d02008-02-04 22:28:20 -0800155};
156
157extern const char *gpiochip_is_requested(struct gpio_chip *chip,
158 unsigned offset);
Grant Likely1a2d3972011-12-12 09:25:57 -0700159extern struct gpio_chip *gpio_to_chip(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800160
161/* add/remove chips */
162extern int gpiochip_add(struct gpio_chip *chip);
163extern int __must_check gpiochip_remove(struct gpio_chip *chip);
Grant Likely07ce8ec2012-05-18 23:01:05 -0600164extern struct gpio_chip *gpiochip_find(void *data,
Grant Likely594fa262010-06-08 07:48:16 -0600165 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600166 void *data));
David Brownelld2876d02008-02-04 22:28:20 -0800167
168
169/* Always use the library code for GPIO management calls,
170 * or when sleeping may be involved.
171 */
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800172extern int gpio_request(unsigned gpio, const char *label);
David Brownelld2876d02008-02-04 22:28:20 -0800173extern void gpio_free(unsigned gpio);
174
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800175extern int gpio_direction_input(unsigned gpio);
176extern int gpio_direction_output(unsigned gpio, int value);
David Brownelld2876d02008-02-04 22:28:20 -0800177
Felipe Balbic4b5be92010-05-26 14:42:23 -0700178extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
179
David Brownelld2876d02008-02-04 22:28:20 -0800180extern int gpio_get_value_cansleep(unsigned gpio);
181extern void gpio_set_value_cansleep(unsigned gpio, int value);
182
183
184/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
185 * the GPIO is constant and refers to some always-present controller,
186 * giving direct access to chip registers and tight bitbanging loops.
187 */
188extern int __gpio_get_value(unsigned gpio);
189extern void __gpio_set_value(unsigned gpio, int value);
190
191extern int __gpio_cansleep(unsigned gpio);
192
David Brownell0f6d5042008-10-15 22:03:14 -0700193extern int __gpio_to_irq(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800194
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800195extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
Lars-Peter Clausen7c295972011-05-25 16:20:31 -0700196extern int gpio_request_array(const struct gpio *array, size_t num);
197extern void gpio_free_array(const struct gpio *array, size_t num);
Eric Miao3e45f1d2010-03-05 13:44:35 -0800198
David Brownelld8f388d2008-07-25 01:46:07 -0700199#ifdef CONFIG_GPIO_SYSFS
200
201/*
202 * A sysfs interface can be exported by individual drivers if they want,
203 * but more typically is configured entirely from userspace.
204 */
205extern int gpio_export(unsigned gpio, bool direction_may_change);
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700206extern int gpio_export_link(struct device *dev, const char *name,
207 unsigned gpio);
Jani Nikula07697462009-12-15 16:46:20 -0800208extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
David Brownelld8f388d2008-07-25 01:46:07 -0700209extern void gpio_unexport(unsigned gpio);
210
211#endif /* CONFIG_GPIO_SYSFS */
212
Shawn Guod59b4ea2013-01-17 22:03:22 +0800213#ifdef CONFIG_PINCTRL
214
215/**
216 * struct gpio_pin_range - pin range controlled by a gpio chip
217 * @head: list for maintaining set of pin ranges, used internally
218 * @pctldev: pinctrl device which handles corresponding pins
219 * @range: actual range of pins controlled by a gpio controller
220 */
221
222struct gpio_pin_range {
223 struct list_head node;
224 struct pinctrl_dev *pctldev;
225 struct pinctrl_gpio_range range;
226};
227
228int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
229 unsigned int gpio_offset, unsigned int pin_offset,
230 unsigned int npins);
231void gpiochip_remove_pin_ranges(struct gpio_chip *chip);
232
233#else
234
235static inline int
236gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
237 unsigned int gpio_offset, unsigned int pin_offset,
238 unsigned int npins)
239{
240 return 0;
241}
242
243static inline void
244gpiochip_remove_pin_ranges(struct gpio_chip *chip)
245{
246}
247
248#endif /* CONFIG_PINCTRL */
249
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700250#else /* !CONFIG_GPIOLIB */
David Brownelld2876d02008-02-04 22:28:20 -0800251
Joe Perches3474cb32011-05-10 16:23:07 -0700252static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700253{
254 /* only non-negative numbers are valid */
255 return number >= 0;
256}
257
David Brownell4c203862007-02-12 00:53:11 -0800258/* platforms that don't directly support access to GPIOs through I2C, SPI,
259 * or other blocking infrastructure can use these wrappers.
260 */
261
262static inline int gpio_cansleep(unsigned gpio)
263{
264 return 0;
265}
266
267static inline int gpio_get_value_cansleep(unsigned gpio)
268{
269 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800270 return __gpio_get_value(gpio);
David Brownell4c203862007-02-12 00:53:11 -0800271}
272
273static inline void gpio_set_value_cansleep(unsigned gpio, int value)
274{
275 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800276 __gpio_set_value(gpio, value);
David Brownell4c203862007-02-12 00:53:11 -0800277}
278
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700279#endif /* !CONFIG_GPIOLIB */
David Brownelld8f388d2008-07-25 01:46:07 -0700280
281#ifndef CONFIG_GPIO_SYSFS
282
Mike Frysinger1f018c82009-12-09 06:53:39 -0500283struct device;
284
David Brownelld8f388d2008-07-25 01:46:07 -0700285/* sysfs support is only available with gpiolib, where it's optional */
286
287static inline int gpio_export(unsigned gpio, bool direction_may_change)
288{
289 return -ENOSYS;
290}
291
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700292static inline int gpio_export_link(struct device *dev, const char *name,
293 unsigned gpio)
294{
295 return -ENOSYS;
296}
297
Jani Nikula07697462009-12-15 16:46:20 -0800298static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
299{
300 return -ENOSYS;
301}
302
David Brownelld8f388d2008-07-25 01:46:07 -0700303static inline void gpio_unexport(unsigned gpio)
304{
305}
306#endif /* CONFIG_GPIO_SYSFS */
David Brownelld2876d02008-02-04 22:28:20 -0800307
David Brownell4c203862007-02-12 00:53:11 -0800308#endif /* _ASM_GENERIC_GPIO_H */