blob: 6b10bdc105d6a5d0a4415f6b985df20119603d2a [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>
David Brownell6ea02052008-05-23 13:04:58 -07007
Michael Buesch7444a722008-07-25 01:46:11 -07008#ifdef CONFIG_GPIOLIB
David Brownelld2876d02008-02-04 22:28:20 -08009
David Brownell6ea02052008-05-23 13:04:58 -070010#include <linux/compiler.h>
11
David Brownelld2876d02008-02-04 22:28:20 -080012/* Platforms may implement their GPIO interface with library code,
13 * at a small performance cost for non-inlined operations and some
14 * extra memory (for code and for per-GPIO table entries).
15 *
16 * While the GPIO programming interface defines valid GPIO numbers
17 * to be in the range 0..MAX_INT, this library restricts them to the
Michael Buesch6a9436d2008-07-26 15:22:26 -070018 * smaller range 0..ARCH_NR_GPIOS-1.
David Brownellc9561262010-09-09 16:38:03 -070019 *
20 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
21 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
22 * actually an estimate of a board-specific value.
David Brownelld2876d02008-02-04 22:28:20 -080023 */
24
25#ifndef ARCH_NR_GPIOS
26#define ARCH_NR_GPIOS 256
27#endif
28
David Brownellc9561262010-09-09 16:38:03 -070029/*
30 * "valid" GPIO numbers are nonnegative and may be passed to
31 * setup routines like gpio_request(). only some valid numbers
32 * can successfully be requested and used.
33 *
34 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
35 * platform data and other tables.
36 */
37
Joe Perches3474cb32011-05-10 16:23:07 -070038static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070039{
Joe Perches3474cb32011-05-10 16:23:07 -070040 return number >= 0 && number < ARCH_NR_GPIOS;
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070041}
42
Mike Frysinger1f018c82009-12-09 06:53:39 -050043struct device;
Mark Brownfeb83692011-10-24 15:24:10 +020044struct gpio;
David Brownelld2876d02008-02-04 22:28:20 -080045struct seq_file;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070046struct module;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060047struct device_node;
David Brownelld2876d02008-02-04 22:28:20 -080048
49/**
50 * struct gpio_chip - abstract a GPIO controller
51 * @label: for diagnostics
David Brownelld8f388d2008-07-25 01:46:07 -070052 * @dev: optional device providing the GPIOs
53 * @owner: helps prevent removal of modules exporting active GPIOs
David Brownell35e8bb52008-10-15 22:03:16 -070054 * @request: optional hook for chip-specific activation, such as
55 * enabling module power and clock; may sleep
56 * @free: optional hook for chip-specific deactivation, such as
57 * disabling module power and clock; may sleep
David Brownelld2876d02008-02-04 22:28:20 -080058 * @direction_input: configures signal "offset" as input, or returns error
59 * @get: returns value for signal "offset"; for output signals this
60 * returns either the value actually sensed, or zero
61 * @direction_output: configures signal "offset" as output, or returns error
62 * @set: assigns output value for signal "offset"
David Brownell0f6d5042008-10-15 22:03:14 -070063 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
64 * implementation may not sleep
David Brownelld2876d02008-02-04 22:28:20 -080065 * @dbg_show: optional routine to show contents in debugfs; default code
66 * will be used when this is omitted, but custom code can show extra
67 * state (such as pullup/pulldown configuration).
68 * @base: identifies the first GPIO number handled by this chip; or, if
69 * negative during registration, requests dynamic ID allocation.
70 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
71 * handled is (base + ngpio - 1).
72 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
73 * must while accessing GPIO expander chips over I2C or SPI
Daniel Silverstone926b6632009-04-02 16:57:05 -070074 * @names: if set, must be an array of strings to use as alternative
75 * names for the GPIOs in this chip. Any entry in the array
76 * may be NULL if there is no alias for the GPIO, however the
Uwe Kleine-König7839ec72010-05-26 14:42:18 -070077 * array must be @ngpio entries long. A name can include a single printk
78 * format specifier for an unsigned int. It is substituted by the actual
79 * number of the gpio.
David Brownelld2876d02008-02-04 22:28:20 -080080 *
81 * A gpio_chip can help platforms abstract various sources of GPIOs so
82 * they can all be accessed through a common programing interface.
83 * Example sources would be SOC controllers, FPGAs, multifunction
84 * chips, dedicated GPIO expanders, and so on.
85 *
86 * Each chip controls a number of signals, identified in method calls
87 * by "offset" values in the range 0..(@ngpio - 1). When those signals
88 * are referenced through calls like gpio_get_value(gpio), the offset
89 * is calculated by subtracting @base from the gpio number.
90 */
91struct gpio_chip {
Dmitry Baryshkov4fd54632008-10-15 22:03:10 -070092 const char *label;
David Brownelld8f388d2008-07-25 01:46:07 -070093 struct device *dev;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070094 struct module *owner;
David Brownelld2876d02008-02-04 22:28:20 -080095
David Brownell35e8bb52008-10-15 22:03:16 -070096 int (*request)(struct gpio_chip *chip,
97 unsigned offset);
98 void (*free)(struct gpio_chip *chip,
99 unsigned offset);
100
David Brownelld2876d02008-02-04 22:28:20 -0800101 int (*direction_input)(struct gpio_chip *chip,
102 unsigned offset);
103 int (*get)(struct gpio_chip *chip,
104 unsigned offset);
105 int (*direction_output)(struct gpio_chip *chip,
106 unsigned offset, int value);
Felipe Balbic4b5be92010-05-26 14:42:23 -0700107 int (*set_debounce)(struct gpio_chip *chip,
108 unsigned offset, unsigned debounce);
109
David Brownelld2876d02008-02-04 22:28:20 -0800110 void (*set)(struct gpio_chip *chip,
111 unsigned offset, int value);
David Brownell0f6d5042008-10-15 22:03:14 -0700112
113 int (*to_irq)(struct gpio_chip *chip,
114 unsigned offset);
115
David Brownelld2876d02008-02-04 22:28:20 -0800116 void (*dbg_show)(struct seq_file *s,
117 struct gpio_chip *chip);
118 int base;
119 u16 ngpio;
Uwe Kleine-König62154992010-05-26 14:42:17 -0700120 const char *const *names;
David Brownelld2876d02008-02-04 22:28:20 -0800121 unsigned can_sleep:1;
David Brownelld8f388d2008-07-25 01:46:07 -0700122 unsigned exported:1;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600123
124#if defined(CONFIG_OF_GPIO)
125 /*
126 * If CONFIG_OF is enabled, then all GPIO controllers described in the
127 * device tree automatically may have an OF translation
128 */
129 struct device_node *of_node;
130 int of_gpio_n_cells;
131 int (*of_xlate)(struct gpio_chip *gc, struct device_node *np,
132 const void *gpio_spec, u32 *flags);
133#endif
David Brownelld2876d02008-02-04 22:28:20 -0800134};
135
136extern const char *gpiochip_is_requested(struct gpio_chip *chip,
137 unsigned offset);
Grant Likely1a2d3972011-12-12 09:25:57 -0700138extern struct gpio_chip *gpio_to_chip(unsigned gpio);
David Brownell6ea02052008-05-23 13:04:58 -0700139extern int __must_check gpiochip_reserve(int start, int ngpio);
David Brownelld2876d02008-02-04 22:28:20 -0800140
141/* add/remove chips */
142extern int gpiochip_add(struct gpio_chip *chip);
143extern int __must_check gpiochip_remove(struct gpio_chip *chip);
Grant Likely594fa262010-06-08 07:48:16 -0600144extern struct gpio_chip *gpiochip_find(void *data,
145 int (*match)(struct gpio_chip *chip,
146 void *data));
David Brownelld2876d02008-02-04 22:28:20 -0800147
148
149/* Always use the library code for GPIO management calls,
150 * or when sleeping may be involved.
151 */
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800152extern int gpio_request(unsigned gpio, const char *label);
David Brownelld2876d02008-02-04 22:28:20 -0800153extern void gpio_free(unsigned gpio);
154
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800155extern int gpio_direction_input(unsigned gpio);
156extern int gpio_direction_output(unsigned gpio, int value);
David Brownelld2876d02008-02-04 22:28:20 -0800157
Felipe Balbic4b5be92010-05-26 14:42:23 -0700158extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
159
David Brownelld2876d02008-02-04 22:28:20 -0800160extern int gpio_get_value_cansleep(unsigned gpio);
161extern void gpio_set_value_cansleep(unsigned gpio, int value);
162
163
164/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
165 * the GPIO is constant and refers to some always-present controller,
166 * giving direct access to chip registers and tight bitbanging loops.
167 */
168extern int __gpio_get_value(unsigned gpio);
169extern void __gpio_set_value(unsigned gpio, int value);
170
171extern int __gpio_cansleep(unsigned gpio);
172
David Brownell0f6d5042008-10-15 22:03:14 -0700173extern int __gpio_to_irq(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800174
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800175extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
Lars-Peter Clausen7c295972011-05-25 16:20:31 -0700176extern int gpio_request_array(const struct gpio *array, size_t num);
177extern void gpio_free_array(const struct gpio *array, size_t num);
Eric Miao3e45f1d2010-03-05 13:44:35 -0800178
David Brownelld8f388d2008-07-25 01:46:07 -0700179#ifdef CONFIG_GPIO_SYSFS
180
181/*
182 * A sysfs interface can be exported by individual drivers if they want,
183 * but more typically is configured entirely from userspace.
184 */
185extern int gpio_export(unsigned gpio, bool direction_may_change);
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700186extern int gpio_export_link(struct device *dev, const char *name,
187 unsigned gpio);
Jani Nikula07697462009-12-15 16:46:20 -0800188extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
David Brownelld8f388d2008-07-25 01:46:07 -0700189extern void gpio_unexport(unsigned gpio);
190
191#endif /* CONFIG_GPIO_SYSFS */
192
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700193#else /* !CONFIG_GPIOLIB */
David Brownelld2876d02008-02-04 22:28:20 -0800194
Joe Perches3474cb32011-05-10 16:23:07 -0700195static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700196{
197 /* only non-negative numbers are valid */
198 return number >= 0;
199}
200
David Brownell4c203862007-02-12 00:53:11 -0800201/* platforms that don't directly support access to GPIOs through I2C, SPI,
202 * or other blocking infrastructure can use these wrappers.
203 */
204
205static inline int gpio_cansleep(unsigned gpio)
206{
207 return 0;
208}
209
210static inline int gpio_get_value_cansleep(unsigned gpio)
211{
212 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800213 return __gpio_get_value(gpio);
David Brownell4c203862007-02-12 00:53:11 -0800214}
215
216static inline void gpio_set_value_cansleep(unsigned gpio, int value)
217{
218 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800219 __gpio_set_value(gpio, value);
David Brownell4c203862007-02-12 00:53:11 -0800220}
221
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700222#endif /* !CONFIG_GPIOLIB */
David Brownelld8f388d2008-07-25 01:46:07 -0700223
224#ifndef CONFIG_GPIO_SYSFS
225
Mike Frysinger1f018c82009-12-09 06:53:39 -0500226struct device;
227
David Brownelld8f388d2008-07-25 01:46:07 -0700228/* sysfs support is only available with gpiolib, where it's optional */
229
230static inline int gpio_export(unsigned gpio, bool direction_may_change)
231{
232 return -ENOSYS;
233}
234
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700235static inline int gpio_export_link(struct device *dev, const char *name,
236 unsigned gpio)
237{
238 return -ENOSYS;
239}
240
Jani Nikula07697462009-12-15 16:46:20 -0800241static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
242{
243 return -ENOSYS;
244}
245
David Brownelld8f388d2008-07-25 01:46:07 -0700246static inline void gpio_unexport(unsigned gpio)
247{
248}
249#endif /* CONFIG_GPIO_SYSFS */
David Brownelld2876d02008-02-04 22:28:20 -0800250
David Brownell4c203862007-02-12 00:53:11 -0800251#endif /* _ASM_GENERIC_GPIO_H */