blob: fb1ecf8baa90f46e84ea3d5e4a76f4045a3badeb [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 Brownelld2876d02008-02-04 22:28:20 -080019 */
20
21#ifndef ARCH_NR_GPIOS
22#define ARCH_NR_GPIOS 256
23#endif
24
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070025static inline int gpio_is_valid(int number)
26{
27 /* only some non-negative numbers are valid */
28 return ((unsigned)number) < ARCH_NR_GPIOS;
29}
30
Mike Frysinger1f018c82009-12-09 06:53:39 -050031struct device;
David Brownelld2876d02008-02-04 22:28:20 -080032struct seq_file;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070033struct module;
David Brownelld2876d02008-02-04 22:28:20 -080034
35/**
36 * struct gpio_chip - abstract a GPIO controller
37 * @label: for diagnostics
David Brownelld8f388d2008-07-25 01:46:07 -070038 * @dev: optional device providing the GPIOs
39 * @owner: helps prevent removal of modules exporting active GPIOs
David Brownell35e8bb52008-10-15 22:03:16 -070040 * @request: optional hook for chip-specific activation, such as
41 * enabling module power and clock; may sleep
42 * @free: optional hook for chip-specific deactivation, such as
43 * disabling module power and clock; may sleep
David Brownelld2876d02008-02-04 22:28:20 -080044 * @direction_input: configures signal "offset" as input, or returns error
45 * @get: returns value for signal "offset"; for output signals this
46 * returns either the value actually sensed, or zero
47 * @direction_output: configures signal "offset" as output, or returns error
48 * @set: assigns output value for signal "offset"
David Brownell0f6d5042008-10-15 22:03:14 -070049 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
50 * implementation may not sleep
David Brownelld2876d02008-02-04 22:28:20 -080051 * @dbg_show: optional routine to show contents in debugfs; default code
52 * will be used when this is omitted, but custom code can show extra
53 * state (such as pullup/pulldown configuration).
54 * @base: identifies the first GPIO number handled by this chip; or, if
55 * negative during registration, requests dynamic ID allocation.
56 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
57 * handled is (base + ngpio - 1).
58 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
59 * must while accessing GPIO expander chips over I2C or SPI
Daniel Silverstone926b6632009-04-02 16:57:05 -070060 * @names: if set, must be an array of strings to use as alternative
61 * names for the GPIOs in this chip. Any entry in the array
62 * may be NULL if there is no alias for the GPIO, however the
Uwe Kleine-König7839ec72010-05-26 14:42:18 -070063 * array must be @ngpio entries long. A name can include a single printk
64 * format specifier for an unsigned int. It is substituted by the actual
65 * number of the gpio.
David Brownelld2876d02008-02-04 22:28:20 -080066 *
67 * A gpio_chip can help platforms abstract various sources of GPIOs so
68 * they can all be accessed through a common programing interface.
69 * Example sources would be SOC controllers, FPGAs, multifunction
70 * chips, dedicated GPIO expanders, and so on.
71 *
72 * Each chip controls a number of signals, identified in method calls
73 * by "offset" values in the range 0..(@ngpio - 1). When those signals
74 * are referenced through calls like gpio_get_value(gpio), the offset
75 * is calculated by subtracting @base from the gpio number.
76 */
77struct gpio_chip {
Dmitry Baryshkov4fd54632008-10-15 22:03:10 -070078 const char *label;
David Brownelld8f388d2008-07-25 01:46:07 -070079 struct device *dev;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070080 struct module *owner;
David Brownelld2876d02008-02-04 22:28:20 -080081
David Brownell35e8bb52008-10-15 22:03:16 -070082 int (*request)(struct gpio_chip *chip,
83 unsigned offset);
84 void (*free)(struct gpio_chip *chip,
85 unsigned offset);
86
David Brownelld2876d02008-02-04 22:28:20 -080087 int (*direction_input)(struct gpio_chip *chip,
88 unsigned offset);
89 int (*get)(struct gpio_chip *chip,
90 unsigned offset);
91 int (*direction_output)(struct gpio_chip *chip,
92 unsigned offset, int value);
93 void (*set)(struct gpio_chip *chip,
94 unsigned offset, int value);
David Brownell0f6d5042008-10-15 22:03:14 -070095
96 int (*to_irq)(struct gpio_chip *chip,
97 unsigned offset);
98
David Brownelld2876d02008-02-04 22:28:20 -080099 void (*dbg_show)(struct seq_file *s,
100 struct gpio_chip *chip);
101 int base;
102 u16 ngpio;
Uwe Kleine-König62154992010-05-26 14:42:17 -0700103 const char *const *names;
David Brownelld2876d02008-02-04 22:28:20 -0800104 unsigned can_sleep:1;
David Brownelld8f388d2008-07-25 01:46:07 -0700105 unsigned exported:1;
David Brownelld2876d02008-02-04 22:28:20 -0800106};
107
108extern const char *gpiochip_is_requested(struct gpio_chip *chip,
109 unsigned offset);
David Brownell6ea02052008-05-23 13:04:58 -0700110extern int __must_check gpiochip_reserve(int start, int ngpio);
David Brownelld2876d02008-02-04 22:28:20 -0800111
112/* add/remove chips */
113extern int gpiochip_add(struct gpio_chip *chip);
114extern int __must_check gpiochip_remove(struct gpio_chip *chip);
115
116
117/* Always use the library code for GPIO management calls,
118 * or when sleeping may be involved.
119 */
120extern int gpio_request(unsigned gpio, const char *label);
121extern void gpio_free(unsigned gpio);
122
123extern int gpio_direction_input(unsigned gpio);
124extern int gpio_direction_output(unsigned gpio, int value);
125
126extern int gpio_get_value_cansleep(unsigned gpio);
127extern void gpio_set_value_cansleep(unsigned gpio, int value);
128
129
130/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
131 * the GPIO is constant and refers to some always-present controller,
132 * giving direct access to chip registers and tight bitbanging loops.
133 */
134extern int __gpio_get_value(unsigned gpio);
135extern void __gpio_set_value(unsigned gpio, int value);
136
137extern int __gpio_cansleep(unsigned gpio);
138
David Brownell0f6d5042008-10-15 22:03:14 -0700139extern int __gpio_to_irq(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800140
Eric Miao3e45f1d2010-03-05 13:44:35 -0800141#define GPIOF_DIR_OUT (0 << 0)
142#define GPIOF_DIR_IN (1 << 0)
143
144#define GPIOF_INIT_LOW (0 << 1)
145#define GPIOF_INIT_HIGH (1 << 1)
146
147#define GPIOF_IN (GPIOF_DIR_IN)
148#define GPIOF_OUT_INIT_LOW (GPIOF_DIR_OUT | GPIOF_INIT_LOW)
149#define GPIOF_OUT_INIT_HIGH (GPIOF_DIR_OUT | GPIOF_INIT_HIGH)
150
151/**
152 * struct gpio - a structure describing a GPIO with configuration
153 * @gpio: the GPIO number
154 * @flags: GPIO configuration as specified by GPIOF_*
155 * @label: a literal description string of this GPIO
156 */
157struct gpio {
158 unsigned gpio;
159 unsigned long flags;
160 const char *label;
161};
162
163extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
164extern int gpio_request_array(struct gpio *array, size_t num);
165extern void gpio_free_array(struct gpio *array, size_t num);
166
David Brownelld8f388d2008-07-25 01:46:07 -0700167#ifdef CONFIG_GPIO_SYSFS
168
169/*
170 * A sysfs interface can be exported by individual drivers if they want,
171 * but more typically is configured entirely from userspace.
172 */
173extern int gpio_export(unsigned gpio, bool direction_may_change);
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700174extern int gpio_export_link(struct device *dev, const char *name,
175 unsigned gpio);
Jani Nikula07697462009-12-15 16:46:20 -0800176extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
David Brownelld8f388d2008-07-25 01:46:07 -0700177extern void gpio_unexport(unsigned gpio);
178
179#endif /* CONFIG_GPIO_SYSFS */
180
181#else /* !CONFIG_HAVE_GPIO_LIB */
David Brownelld2876d02008-02-04 22:28:20 -0800182
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700183static inline int gpio_is_valid(int number)
184{
185 /* only non-negative numbers are valid */
186 return number >= 0;
187}
188
David Brownell4c203862007-02-12 00:53:11 -0800189/* platforms that don't directly support access to GPIOs through I2C, SPI,
190 * or other blocking infrastructure can use these wrappers.
191 */
192
193static inline int gpio_cansleep(unsigned gpio)
194{
195 return 0;
196}
197
198static inline int gpio_get_value_cansleep(unsigned gpio)
199{
200 might_sleep();
201 return gpio_get_value(gpio);
202}
203
204static inline void gpio_set_value_cansleep(unsigned gpio, int value)
205{
206 might_sleep();
207 gpio_set_value(gpio, value);
208}
209
David Brownelld8f388d2008-07-25 01:46:07 -0700210#endif /* !CONFIG_HAVE_GPIO_LIB */
211
212#ifndef CONFIG_GPIO_SYSFS
213
Mike Frysinger1f018c82009-12-09 06:53:39 -0500214struct device;
215
David Brownelld8f388d2008-07-25 01:46:07 -0700216/* sysfs support is only available with gpiolib, where it's optional */
217
218static inline int gpio_export(unsigned gpio, bool direction_may_change)
219{
220 return -ENOSYS;
221}
222
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700223static inline int gpio_export_link(struct device *dev, const char *name,
224 unsigned gpio)
225{
226 return -ENOSYS;
227}
228
Jani Nikula07697462009-12-15 16:46:20 -0800229static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
230{
231 return -ENOSYS;
232}
233
David Brownelld8f388d2008-07-25 01:46:07 -0700234static inline void gpio_unexport(unsigned gpio)
235{
236}
237#endif /* CONFIG_GPIO_SYSFS */
David Brownelld2876d02008-02-04 22:28:20 -0800238
David Brownell4c203862007-02-12 00:53:11 -0800239#endif /* _ASM_GENERIC_GPIO_H */