blob: eb70ca295971ea4f76f34987ebeedc2bad7ac4db [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>
David Brownell6ea02052008-05-23 13:04:58 -07008
Michael Buesch7444a722008-07-25 01:46:11 -07009#ifdef CONFIG_GPIOLIB
David Brownelld2876d02008-02-04 22:28:20 -080010
David Brownell6ea02052008-05-23 13:04:58 -070011#include <linux/compiler.h>
12
David Brownelld2876d02008-02-04 22:28:20 -080013/* Platforms may implement their GPIO interface with library code,
14 * at a small performance cost for non-inlined operations and some
15 * extra memory (for code and for per-GPIO table entries).
16 *
17 * While the GPIO programming interface defines valid GPIO numbers
18 * to be in the range 0..MAX_INT, this library restricts them to the
Michael Buesch6a9436d2008-07-26 15:22:26 -070019 * smaller range 0..ARCH_NR_GPIOS-1.
David Brownellc9561262010-09-09 16:38:03 -070020 *
21 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
22 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
23 * actually an estimate of a board-specific value.
David Brownelld2876d02008-02-04 22:28:20 -080024 */
25
26#ifndef ARCH_NR_GPIOS
27#define ARCH_NR_GPIOS 256
28#endif
29
David Brownellc9561262010-09-09 16:38:03 -070030/*
31 * "valid" GPIO numbers are nonnegative and may be passed to
32 * setup routines like gpio_request(). only some valid numbers
33 * can successfully be requested and used.
34 *
35 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
36 * platform data and other tables.
37 */
38
Joe Perches3474cb32011-05-10 16:23:07 -070039static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070040{
Joe Perches3474cb32011-05-10 16:23:07 -070041 return number >= 0 && number < ARCH_NR_GPIOS;
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070042}
43
Mike Frysinger1f018c82009-12-09 06:53:39 -050044struct device;
Mark Brownfeb83692011-10-24 15:24:10 +020045struct gpio;
David Brownelld2876d02008-02-04 22:28:20 -080046struct seq_file;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070047struct module;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060048struct device_node;
David Brownelld2876d02008-02-04 22:28:20 -080049
50/**
51 * struct gpio_chip - abstract a GPIO controller
52 * @label: for diagnostics
David Brownelld8f388d82008-07-25 01:46:07 -070053 * @dev: optional device providing the GPIOs
54 * @owner: helps prevent removal of modules exporting active GPIOs
David Brownell35e8bb52008-10-15 22:03:16 -070055 * @request: optional hook for chip-specific activation, such as
56 * enabling module power and clock; may sleep
57 * @free: optional hook for chip-specific deactivation, such as
58 * disabling module power and clock; may sleep
Mathias Nyman80b0a602012-10-24 17:25:27 +030059 * @get_direction: returns direction for signal "offset", 0=out, 1=in,
60 * (same as GPIOF_DIR_XXX), or negative error
David Brownelld2876d02008-02-04 22:28:20 -080061 * @direction_input: configures signal "offset" as input, or returns error
62 * @get: returns value for signal "offset"; for output signals this
63 * returns either the value actually sensed, or zero
64 * @direction_output: configures signal "offset" as output, or returns error
Roland Stigge1ae96312012-09-25 09:56:14 +020065 * @set_debounce: optional hook for setting debounce time for specified gpio in
66 * interrupt triggered gpio chips
David Brownelld2876d02008-02-04 22:28:20 -080067 * @set: assigns output value for signal "offset"
David Brownell0f6d5042008-10-15 22:03:14 -070068 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
69 * implementation may not sleep
David Brownelld2876d02008-02-04 22:28:20 -080070 * @dbg_show: optional routine to show contents in debugfs; default code
71 * will be used when this is omitted, but custom code can show extra
72 * state (such as pullup/pulldown configuration).
73 * @base: identifies the first GPIO number handled by this chip; or, if
74 * negative during registration, requests dynamic ID allocation.
75 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
76 * handled is (base + ngpio - 1).
77 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
78 * must while accessing GPIO expander chips over I2C or SPI
Daniel Silverstone926b6632009-04-02 16:57:05 -070079 * @names: if set, must be an array of strings to use as alternative
80 * names for the GPIOs in this chip. Any entry in the array
81 * may be NULL if there is no alias for the GPIO, however the
Uwe Kleine-König7839ec72010-05-26 14:42:18 -070082 * array must be @ngpio entries long. A name can include a single printk
83 * format specifier for an unsigned int. It is substituted by the actual
84 * number of the gpio.
David Brownelld2876d02008-02-04 22:28:20 -080085 *
86 * A gpio_chip can help platforms abstract various sources of GPIOs so
87 * they can all be accessed through a common programing interface.
88 * Example sources would be SOC controllers, FPGAs, multifunction
89 * chips, dedicated GPIO expanders, and so on.
90 *
91 * Each chip controls a number of signals, identified in method calls
92 * by "offset" values in the range 0..(@ngpio - 1). When those signals
93 * are referenced through calls like gpio_get_value(gpio), the offset
94 * is calculated by subtracting @base from the gpio number.
95 */
96struct gpio_chip {
Dmitry Baryshkov4fd54632008-10-15 22:03:10 -070097 const char *label;
David Brownelld8f388d82008-07-25 01:46:07 -070098 struct device *dev;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070099 struct module *owner;
David Brownelld2876d02008-02-04 22:28:20 -0800100
David Brownell35e8bb52008-10-15 22:03:16 -0700101 int (*request)(struct gpio_chip *chip,
102 unsigned offset);
103 void (*free)(struct gpio_chip *chip,
104 unsigned offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300105 int (*get_direction)(struct gpio_chip *chip,
106 unsigned offset);
David Brownelld2876d02008-02-04 22:28:20 -0800107 int (*direction_input)(struct gpio_chip *chip,
108 unsigned offset);
109 int (*get)(struct gpio_chip *chip,
110 unsigned offset);
111 int (*direction_output)(struct gpio_chip *chip,
112 unsigned offset, int value);
Felipe Balbic4b5be92010-05-26 14:42:23 -0700113 int (*set_debounce)(struct gpio_chip *chip,
114 unsigned offset, unsigned debounce);
115
David Brownelld2876d02008-02-04 22:28:20 -0800116 void (*set)(struct gpio_chip *chip,
117 unsigned offset, int value);
David Brownell0f6d5042008-10-15 22:03:14 -0700118
119 int (*to_irq)(struct gpio_chip *chip,
120 unsigned offset);
121
David Brownelld2876d02008-02-04 22:28:20 -0800122 void (*dbg_show)(struct seq_file *s,
123 struct gpio_chip *chip);
124 int base;
125 u16 ngpio;
Uwe Kleine-König62154992010-05-26 14:42:17 -0700126 const char *const *names;
David Brownelld2876d02008-02-04 22:28:20 -0800127 unsigned can_sleep:1;
David Brownelld8f388d82008-07-25 01:46:07 -0700128 unsigned exported:1;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600129
130#if defined(CONFIG_OF_GPIO)
131 /*
132 * If CONFIG_OF is enabled, then all GPIO controllers described in the
133 * device tree automatically may have an OF translation
134 */
135 struct device_node *of_node;
136 int of_gpio_n_cells;
Grant Likely15c9a0a2011-12-12 09:25:57 -0700137 int (*of_xlate)(struct gpio_chip *gc,
138 const struct of_phandle_args *gpiospec, u32 *flags);
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600139#endif
David Brownelld2876d02008-02-04 22:28:20 -0800140};
141
142extern const char *gpiochip_is_requested(struct gpio_chip *chip,
143 unsigned offset);
Grant Likely1a2d3972011-12-12 09:25:57 -0700144extern struct gpio_chip *gpio_to_chip(unsigned gpio);
David Brownell6ea02052008-05-23 13:04:58 -0700145extern int __must_check gpiochip_reserve(int start, int ngpio);
David Brownelld2876d02008-02-04 22:28:20 -0800146
147/* add/remove chips */
148extern int gpiochip_add(struct gpio_chip *chip);
149extern int __must_check gpiochip_remove(struct gpio_chip *chip);
Grant Likely07ce8ec2012-05-18 23:01:05 -0600150extern struct gpio_chip *gpiochip_find(void *data,
Grant Likely594fa262010-06-08 07:48:16 -0600151 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600152 void *data));
David Brownelld2876d02008-02-04 22:28:20 -0800153
154
155/* Always use the library code for GPIO management calls,
156 * or when sleeping may be involved.
157 */
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800158extern int gpio_request(unsigned gpio, const char *label);
David Brownelld2876d02008-02-04 22:28:20 -0800159extern void gpio_free(unsigned gpio);
160
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800161extern int gpio_direction_input(unsigned gpio);
162extern int gpio_direction_output(unsigned gpio, int value);
David Brownelld2876d02008-02-04 22:28:20 -0800163
Felipe Balbic4b5be92010-05-26 14:42:23 -0700164extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
165
David Brownelld2876d02008-02-04 22:28:20 -0800166extern int gpio_get_value_cansleep(unsigned gpio);
167extern void gpio_set_value_cansleep(unsigned gpio, int value);
168
169
170/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
171 * the GPIO is constant and refers to some always-present controller,
172 * giving direct access to chip registers and tight bitbanging loops.
173 */
174extern int __gpio_get_value(unsigned gpio);
175extern void __gpio_set_value(unsigned gpio, int value);
176
177extern int __gpio_cansleep(unsigned gpio);
178
David Brownell0f6d5042008-10-15 22:03:14 -0700179extern int __gpio_to_irq(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800180
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800181extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
Lars-Peter Clausen7c295972011-05-25 16:20:31 -0700182extern int gpio_request_array(const struct gpio *array, size_t num);
183extern void gpio_free_array(const struct gpio *array, size_t num);
Eric Miao3e45f1d2010-03-05 13:44:35 -0800184
John Crispin1a0703e2011-12-20 21:40:21 +0100185/* bindings for managed devices that want to request gpios */
186int devm_gpio_request(struct device *dev, unsigned gpio, const char *label);
Mark Brown09d71ff2012-05-02 12:46:46 +0100187int devm_gpio_request_one(struct device *dev, unsigned gpio,
188 unsigned long flags, const char *label);
John Crispin1a0703e2011-12-20 21:40:21 +0100189void devm_gpio_free(struct device *dev, unsigned int gpio);
190
David Brownelld8f388d82008-07-25 01:46:07 -0700191#ifdef CONFIG_GPIO_SYSFS
192
193/*
194 * A sysfs interface can be exported by individual drivers if they want,
195 * but more typically is configured entirely from userspace.
196 */
197extern int gpio_export(unsigned gpio, bool direction_may_change);
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700198extern int gpio_export_link(struct device *dev, const char *name,
199 unsigned gpio);
Jani Nikula07697462009-12-15 16:46:20 -0800200extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
David Brownelld8f388d82008-07-25 01:46:07 -0700201extern void gpio_unexport(unsigned gpio);
202
203#endif /* CONFIG_GPIO_SYSFS */
204
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700205#else /* !CONFIG_GPIOLIB */
David Brownelld2876d02008-02-04 22:28:20 -0800206
Joe Perches3474cb32011-05-10 16:23:07 -0700207static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700208{
209 /* only non-negative numbers are valid */
210 return number >= 0;
211}
212
David Brownell4c203862007-02-12 00:53:11 -0800213/* platforms that don't directly support access to GPIOs through I2C, SPI,
214 * or other blocking infrastructure can use these wrappers.
215 */
216
217static inline int gpio_cansleep(unsigned gpio)
218{
219 return 0;
220}
221
222static inline int gpio_get_value_cansleep(unsigned gpio)
223{
224 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800225 return __gpio_get_value(gpio);
David Brownell4c203862007-02-12 00:53:11 -0800226}
227
228static inline void gpio_set_value_cansleep(unsigned gpio, int value)
229{
230 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800231 __gpio_set_value(gpio, value);
David Brownell4c203862007-02-12 00:53:11 -0800232}
233
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700234#endif /* !CONFIG_GPIOLIB */
David Brownelld8f388d82008-07-25 01:46:07 -0700235
236#ifndef CONFIG_GPIO_SYSFS
237
Mike Frysinger1f018c82009-12-09 06:53:39 -0500238struct device;
239
David Brownelld8f388d82008-07-25 01:46:07 -0700240/* sysfs support is only available with gpiolib, where it's optional */
241
242static inline int gpio_export(unsigned gpio, bool direction_may_change)
243{
244 return -ENOSYS;
245}
246
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700247static inline int gpio_export_link(struct device *dev, const char *name,
248 unsigned gpio)
249{
250 return -ENOSYS;
251}
252
Jani Nikula07697462009-12-15 16:46:20 -0800253static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
254{
255 return -ENOSYS;
256}
257
David Brownelld8f388d82008-07-25 01:46:07 -0700258static inline void gpio_unexport(unsigned gpio)
259{
260}
261#endif /* CONFIG_GPIO_SYSFS */
David Brownelld2876d02008-02-04 22:28:20 -0800262
David Brownell4c203862007-02-12 00:53:11 -0800263#endif /* _ASM_GENERIC_GPIO_H */