blob: 03efb50cd5529f7011c9542034a251ac359e5143 [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 Hashime77d22c2012-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;
David Brownelld2876d02008-02-04 22:28:20 -080050
Shiraz Hashime77d22c2012-10-27 15:21:36 +053051#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
59struct gpio_pin_range {
60 struct list_head node;
61 struct pinctrl_dev *pctldev;
62 struct pinctrl_gpio_range range;
63};
Linus Walleij4aca0362012-11-06 16:03:35 +010064
65int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
66 unsigned int pin_base, unsigned int npins);
67void gpiochip_remove_pin_ranges(struct gpio_chip *chip);
68
Shiraz Hashime77d22c2012-10-27 15:21:36 +053069#endif
70
David Brownelld2876d02008-02-04 22:28:20 -080071/**
72 * struct gpio_chip - abstract a GPIO controller
73 * @label: for diagnostics
David Brownelld8f388d2008-07-25 01:46:07 -070074 * @dev: optional device providing the GPIOs
75 * @owner: helps prevent removal of modules exporting active GPIOs
David Brownell35e8bb52008-10-15 22:03:16 -070076 * @request: optional hook for chip-specific activation, such as
77 * enabling module power and clock; may sleep
78 * @free: optional hook for chip-specific deactivation, such as
79 * disabling module power and clock; may sleep
David Brownelld2876d02008-02-04 22:28:20 -080080 * @direction_input: configures signal "offset" as input, or returns error
81 * @get: returns value for signal "offset"; for output signals this
82 * returns either the value actually sensed, or zero
83 * @direction_output: configures signal "offset" as output, or returns error
84 * @set: assigns output value for signal "offset"
David Brownell0f6d5042008-10-15 22:03:14 -070085 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
86 * implementation may not sleep
David Brownelld2876d02008-02-04 22:28:20 -080087 * @dbg_show: optional routine to show contents in debugfs; default code
88 * will be used when this is omitted, but custom code can show extra
89 * state (such as pullup/pulldown configuration).
90 * @base: identifies the first GPIO number handled by this chip; or, if
91 * negative during registration, requests dynamic ID allocation.
92 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
93 * handled is (base + ngpio - 1).
94 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
95 * must while accessing GPIO expander chips over I2C or SPI
Daniel Silverstone926b6632009-04-02 16:57:05 -070096 * @names: if set, must be an array of strings to use as alternative
97 * names for the GPIOs in this chip. Any entry in the array
98 * may be NULL if there is no alias for the GPIO, however the
Uwe Kleine-König7839ec72010-05-26 14:42:18 -070099 * array must be @ngpio entries long. A name can include a single printk
100 * format specifier for an unsigned int. It is substituted by the actual
101 * number of the gpio.
David Brownelld2876d02008-02-04 22:28:20 -0800102 *
103 * A gpio_chip can help platforms abstract various sources of GPIOs so
104 * they can all be accessed through a common programing interface.
105 * Example sources would be SOC controllers, FPGAs, multifunction
106 * chips, dedicated GPIO expanders, and so on.
107 *
108 * Each chip controls a number of signals, identified in method calls
109 * by "offset" values in the range 0..(@ngpio - 1). When those signals
110 * are referenced through calls like gpio_get_value(gpio), the offset
111 * is calculated by subtracting @base from the gpio number.
112 */
113struct gpio_chip {
Dmitry Baryshkov4fd54632008-10-15 22:03:10 -0700114 const char *label;
David Brownelld8f388d2008-07-25 01:46:07 -0700115 struct device *dev;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700116 struct module *owner;
David Brownelld2876d02008-02-04 22:28:20 -0800117
David Brownell35e8bb52008-10-15 22:03:16 -0700118 int (*request)(struct gpio_chip *chip,
119 unsigned offset);
120 void (*free)(struct gpio_chip *chip,
121 unsigned offset);
122
David Brownelld2876d02008-02-04 22:28:20 -0800123 int (*direction_input)(struct gpio_chip *chip,
124 unsigned offset);
125 int (*get)(struct gpio_chip *chip,
126 unsigned offset);
127 int (*direction_output)(struct gpio_chip *chip,
128 unsigned offset, int value);
Felipe Balbic4b5be92010-05-26 14:42:23 -0700129 int (*set_debounce)(struct gpio_chip *chip,
130 unsigned offset, unsigned debounce);
131
David Brownelld2876d02008-02-04 22:28:20 -0800132 void (*set)(struct gpio_chip *chip,
133 unsigned offset, int value);
David Brownell0f6d5042008-10-15 22:03:14 -0700134
135 int (*to_irq)(struct gpio_chip *chip,
136 unsigned offset);
137
David Brownelld2876d02008-02-04 22:28:20 -0800138 void (*dbg_show)(struct seq_file *s,
139 struct gpio_chip *chip);
140 int base;
141 u16 ngpio;
Uwe Kleine-König62154992010-05-26 14:42:17 -0700142 const char *const *names;
David Brownelld2876d02008-02-04 22:28:20 -0800143 unsigned can_sleep:1;
David Brownelld8f388d2008-07-25 01:46:07 -0700144 unsigned exported:1;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600145
146#if defined(CONFIG_OF_GPIO)
147 /*
148 * If CONFIG_OF is enabled, then all GPIO controllers described in the
149 * device tree automatically may have an OF translation
150 */
151 struct device_node *of_node;
152 int of_gpio_n_cells;
Grant Likely15c9a0a2011-12-12 09:25:57 -0700153 int (*of_xlate)(struct gpio_chip *gc,
154 const struct of_phandle_args *gpiospec, u32 *flags);
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600155#endif
Shiraz Hashime77d22c2012-10-27 15:21:36 +0530156#ifdef CONFIG_PINCTRL
157 /*
158 * If CONFIG_PINCTRL is enabled, then gpio controllers can optionally
159 * describe the actual pin range which they serve in an SoC. This
160 * information would be used by pinctrl subsystem to configure
161 * corresponding pins for gpio usage.
162 */
163 struct list_head pin_ranges;
164#endif
David Brownelld2876d02008-02-04 22:28:20 -0800165};
166
167extern const char *gpiochip_is_requested(struct gpio_chip *chip,
168 unsigned offset);
Grant Likely1a2d3972011-12-12 09:25:57 -0700169extern struct gpio_chip *gpio_to_chip(unsigned gpio);
David Brownell6ea02052008-05-23 13:04:58 -0700170extern int __must_check gpiochip_reserve(int start, int ngpio);
David Brownelld2876d02008-02-04 22:28:20 -0800171
172/* add/remove chips */
173extern int gpiochip_add(struct gpio_chip *chip);
174extern int __must_check gpiochip_remove(struct gpio_chip *chip);
Grant Likely6e2cf652012-03-02 15:56:03 -0700175extern struct gpio_chip *gpiochip_find(const void *data,
Grant Likely594fa262010-06-08 07:48:16 -0600176 int (*match)(struct gpio_chip *chip,
Grant Likely6e2cf652012-03-02 15:56:03 -0700177 const void *data));
David Brownelld2876d02008-02-04 22:28:20 -0800178
179
180/* Always use the library code for GPIO management calls,
181 * or when sleeping may be involved.
182 */
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800183extern int gpio_request(unsigned gpio, const char *label);
David Brownelld2876d02008-02-04 22:28:20 -0800184extern void gpio_free(unsigned gpio);
185
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800186extern int gpio_direction_input(unsigned gpio);
187extern int gpio_direction_output(unsigned gpio, int value);
David Brownelld2876d02008-02-04 22:28:20 -0800188
Felipe Balbic4b5be92010-05-26 14:42:23 -0700189extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
190
David Brownelld2876d02008-02-04 22:28:20 -0800191extern int gpio_get_value_cansleep(unsigned gpio);
192extern void gpio_set_value_cansleep(unsigned gpio, int value);
193
194
195/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
196 * the GPIO is constant and refers to some always-present controller,
197 * giving direct access to chip registers and tight bitbanging loops.
198 */
199extern int __gpio_get_value(unsigned gpio);
200extern void __gpio_set_value(unsigned gpio, int value);
201
202extern int __gpio_cansleep(unsigned gpio);
203
David Brownell0f6d5042008-10-15 22:03:14 -0700204extern int __gpio_to_irq(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800205
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800206extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
Lars-Peter Clausen7c295972011-05-25 16:20:31 -0700207extern int gpio_request_array(const struct gpio *array, size_t num);
208extern void gpio_free_array(const struct gpio *array, size_t num);
Eric Miao3e45f1d2010-03-05 13:44:35 -0800209
John Crispin1a0703e2011-12-20 21:40:21 +0100210/* bindings for managed devices that want to request gpios */
211int devm_gpio_request(struct device *dev, unsigned gpio, const char *label);
212void devm_gpio_free(struct device *dev, unsigned int gpio);
213
David Brownelld8f388d2008-07-25 01:46:07 -0700214#ifdef CONFIG_GPIO_SYSFS
215
216/*
217 * A sysfs interface can be exported by individual drivers if they want,
218 * but more typically is configured entirely from userspace.
219 */
220extern int gpio_export(unsigned gpio, bool direction_may_change);
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700221extern int gpio_export_link(struct device *dev, const char *name,
222 unsigned gpio);
Jani Nikula07697462009-12-15 16:46:20 -0800223extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
David Brownelld8f388d2008-07-25 01:46:07 -0700224extern void gpio_unexport(unsigned gpio);
225
226#endif /* CONFIG_GPIO_SYSFS */
227
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700228#else /* !CONFIG_GPIOLIB */
David Brownelld2876d02008-02-04 22:28:20 -0800229
Joe Perches3474cb32011-05-10 16:23:07 -0700230static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700231{
232 /* only non-negative numbers are valid */
233 return number >= 0;
234}
235
David Brownell4c203862007-02-12 00:53:11 -0800236/* platforms that don't directly support access to GPIOs through I2C, SPI,
237 * or other blocking infrastructure can use these wrappers.
238 */
239
240static inline int gpio_cansleep(unsigned gpio)
241{
242 return 0;
243}
244
245static inline int gpio_get_value_cansleep(unsigned gpio)
246{
247 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800248 return __gpio_get_value(gpio);
David Brownell4c203862007-02-12 00:53:11 -0800249}
250
251static inline void gpio_set_value_cansleep(unsigned gpio, int value)
252{
253 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800254 __gpio_set_value(gpio, value);
David Brownell4c203862007-02-12 00:53:11 -0800255}
256
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700257#endif /* !CONFIG_GPIOLIB */
David Brownelld8f388d2008-07-25 01:46:07 -0700258
259#ifndef CONFIG_GPIO_SYSFS
260
Mike Frysinger1f018c82009-12-09 06:53:39 -0500261struct device;
262
David Brownelld8f388d2008-07-25 01:46:07 -0700263/* sysfs support is only available with gpiolib, where it's optional */
264
265static inline int gpio_export(unsigned gpio, bool direction_may_change)
266{
267 return -ENOSYS;
268}
269
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700270static inline int gpio_export_link(struct device *dev, const char *name,
271 unsigned gpio)
272{
273 return -ENOSYS;
274}
275
Jani Nikula07697462009-12-15 16:46:20 -0800276static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
277{
278 return -ENOSYS;
279}
280
David Brownelld8f388d2008-07-25 01:46:07 -0700281static inline void gpio_unexport(unsigned gpio)
282{
283}
284#endif /* CONFIG_GPIO_SYSFS */
David Brownelld2876d02008-02-04 22:28:20 -0800285
David Brownell4c203862007-02-12 00:53:11 -0800286#endif /* _ASM_GENERIC_GPIO_H */