blob: af2544ef0b59fe7512b4764f2a8460aeb2504012 [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;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060034struct device_node;
David Brownelld2876d02008-02-04 22:28:20 -080035
36/**
37 * struct gpio_chip - abstract a GPIO controller
38 * @label: for diagnostics
David Brownelld8f388d2008-07-25 01:46:07 -070039 * @dev: optional device providing the GPIOs
40 * @owner: helps prevent removal of modules exporting active GPIOs
David Brownell35e8bb52008-10-15 22:03:16 -070041 * @request: optional hook for chip-specific activation, such as
42 * enabling module power and clock; may sleep
43 * @free: optional hook for chip-specific deactivation, such as
44 * disabling module power and clock; may sleep
David Brownelld2876d02008-02-04 22:28:20 -080045 * @direction_input: configures signal "offset" as input, or returns error
46 * @get: returns value for signal "offset"; for output signals this
47 * returns either the value actually sensed, or zero
48 * @direction_output: configures signal "offset" as output, or returns error
49 * @set: assigns output value for signal "offset"
David Brownell0f6d5042008-10-15 22:03:14 -070050 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
51 * implementation may not sleep
David Brownelld2876d02008-02-04 22:28:20 -080052 * @dbg_show: optional routine to show contents in debugfs; default code
53 * will be used when this is omitted, but custom code can show extra
54 * state (such as pullup/pulldown configuration).
55 * @base: identifies the first GPIO number handled by this chip; or, if
56 * negative during registration, requests dynamic ID allocation.
57 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
58 * handled is (base + ngpio - 1).
59 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
60 * must while accessing GPIO expander chips over I2C or SPI
Daniel Silverstone926b6632009-04-02 16:57:05 -070061 * @names: if set, must be an array of strings to use as alternative
62 * names for the GPIOs in this chip. Any entry in the array
63 * may be NULL if there is no alias for the GPIO, however the
Uwe Kleine-König7839ec72010-05-26 14:42:18 -070064 * array must be @ngpio entries long. A name can include a single printk
65 * format specifier for an unsigned int. It is substituted by the actual
66 * number of the gpio.
David Brownelld2876d02008-02-04 22:28:20 -080067 *
68 * A gpio_chip can help platforms abstract various sources of GPIOs so
69 * they can all be accessed through a common programing interface.
70 * Example sources would be SOC controllers, FPGAs, multifunction
71 * chips, dedicated GPIO expanders, and so on.
72 *
73 * Each chip controls a number of signals, identified in method calls
74 * by "offset" values in the range 0..(@ngpio - 1). When those signals
75 * are referenced through calls like gpio_get_value(gpio), the offset
76 * is calculated by subtracting @base from the gpio number.
77 */
78struct gpio_chip {
Dmitry Baryshkov4fd54632008-10-15 22:03:10 -070079 const char *label;
David Brownelld8f388d2008-07-25 01:46:07 -070080 struct device *dev;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070081 struct module *owner;
David Brownelld2876d02008-02-04 22:28:20 -080082
David Brownell35e8bb52008-10-15 22:03:16 -070083 int (*request)(struct gpio_chip *chip,
84 unsigned offset);
85 void (*free)(struct gpio_chip *chip,
86 unsigned offset);
87
David Brownelld2876d02008-02-04 22:28:20 -080088 int (*direction_input)(struct gpio_chip *chip,
89 unsigned offset);
90 int (*get)(struct gpio_chip *chip,
91 unsigned offset);
92 int (*direction_output)(struct gpio_chip *chip,
93 unsigned offset, int value);
Felipe Balbic4b5be92010-05-26 14:42:23 -070094 int (*set_debounce)(struct gpio_chip *chip,
95 unsigned offset, unsigned debounce);
96
David Brownelld2876d02008-02-04 22:28:20 -080097 void (*set)(struct gpio_chip *chip,
98 unsigned offset, int value);
David Brownell0f6d5042008-10-15 22:03:14 -070099
100 int (*to_irq)(struct gpio_chip *chip,
101 unsigned offset);
102
David Brownelld2876d02008-02-04 22:28:20 -0800103 void (*dbg_show)(struct seq_file *s,
104 struct gpio_chip *chip);
105 int base;
106 u16 ngpio;
Uwe Kleine-König62154992010-05-26 14:42:17 -0700107 const char *const *names;
David Brownelld2876d02008-02-04 22:28:20 -0800108 unsigned can_sleep:1;
David Brownelld8f388d2008-07-25 01:46:07 -0700109 unsigned exported:1;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600110
111#if defined(CONFIG_OF_GPIO)
112 /*
113 * If CONFIG_OF is enabled, then all GPIO controllers described in the
114 * device tree automatically may have an OF translation
115 */
116 struct device_node *of_node;
117 int of_gpio_n_cells;
118 int (*of_xlate)(struct gpio_chip *gc, struct device_node *np,
119 const void *gpio_spec, u32 *flags);
120#endif
David Brownelld2876d02008-02-04 22:28:20 -0800121};
122
123extern const char *gpiochip_is_requested(struct gpio_chip *chip,
124 unsigned offset);
David Brownell6ea02052008-05-23 13:04:58 -0700125extern int __must_check gpiochip_reserve(int start, int ngpio);
David Brownelld2876d02008-02-04 22:28:20 -0800126
127/* add/remove chips */
128extern int gpiochip_add(struct gpio_chip *chip);
129extern int __must_check gpiochip_remove(struct gpio_chip *chip);
130
131
132/* Always use the library code for GPIO management calls,
133 * or when sleeping may be involved.
134 */
135extern int gpio_request(unsigned gpio, const char *label);
136extern void gpio_free(unsigned gpio);
137
138extern int gpio_direction_input(unsigned gpio);
139extern int gpio_direction_output(unsigned gpio, int value);
140
Felipe Balbic4b5be92010-05-26 14:42:23 -0700141extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
142
David Brownelld2876d02008-02-04 22:28:20 -0800143extern int gpio_get_value_cansleep(unsigned gpio);
144extern void gpio_set_value_cansleep(unsigned gpio, int value);
145
146
147/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
148 * the GPIO is constant and refers to some always-present controller,
149 * giving direct access to chip registers and tight bitbanging loops.
150 */
151extern int __gpio_get_value(unsigned gpio);
152extern void __gpio_set_value(unsigned gpio, int value);
153
154extern int __gpio_cansleep(unsigned gpio);
155
David Brownell0f6d5042008-10-15 22:03:14 -0700156extern int __gpio_to_irq(unsigned gpio);
David Brownelld2876d02008-02-04 22:28:20 -0800157
Eric Miao3e45f1d2010-03-05 13:44:35 -0800158#define GPIOF_DIR_OUT (0 << 0)
159#define GPIOF_DIR_IN (1 << 0)
160
161#define GPIOF_INIT_LOW (0 << 1)
162#define GPIOF_INIT_HIGH (1 << 1)
163
164#define GPIOF_IN (GPIOF_DIR_IN)
165#define GPIOF_OUT_INIT_LOW (GPIOF_DIR_OUT | GPIOF_INIT_LOW)
166#define GPIOF_OUT_INIT_HIGH (GPIOF_DIR_OUT | GPIOF_INIT_HIGH)
167
168/**
169 * struct gpio - a structure describing a GPIO with configuration
170 * @gpio: the GPIO number
171 * @flags: GPIO configuration as specified by GPIOF_*
172 * @label: a literal description string of this GPIO
173 */
174struct gpio {
175 unsigned gpio;
176 unsigned long flags;
177 const char *label;
178};
179
180extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
181extern int gpio_request_array(struct gpio *array, size_t num);
182extern void gpio_free_array(struct gpio *array, size_t num);
183
David Brownelld8f388d2008-07-25 01:46:07 -0700184#ifdef CONFIG_GPIO_SYSFS
185
186/*
187 * A sysfs interface can be exported by individual drivers if they want,
188 * but more typically is configured entirely from userspace.
189 */
190extern int gpio_export(unsigned gpio, bool direction_may_change);
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700191extern int gpio_export_link(struct device *dev, const char *name,
192 unsigned gpio);
Jani Nikula07697462009-12-15 16:46:20 -0800193extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
David Brownelld8f388d2008-07-25 01:46:07 -0700194extern void gpio_unexport(unsigned gpio);
195
196#endif /* CONFIG_GPIO_SYSFS */
197
198#else /* !CONFIG_HAVE_GPIO_LIB */
David Brownelld2876d02008-02-04 22:28:20 -0800199
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700200static inline int gpio_is_valid(int number)
201{
202 /* only non-negative numbers are valid */
203 return number >= 0;
204}
205
David Brownell4c203862007-02-12 00:53:11 -0800206/* platforms that don't directly support access to GPIOs through I2C, SPI,
207 * or other blocking infrastructure can use these wrappers.
208 */
209
210static inline int gpio_cansleep(unsigned gpio)
211{
212 return 0;
213}
214
215static inline int gpio_get_value_cansleep(unsigned gpio)
216{
217 might_sleep();
218 return gpio_get_value(gpio);
219}
220
221static inline void gpio_set_value_cansleep(unsigned gpio, int value)
222{
223 might_sleep();
224 gpio_set_value(gpio, value);
225}
226
David Brownelld8f388d2008-07-25 01:46:07 -0700227#endif /* !CONFIG_HAVE_GPIO_LIB */
228
229#ifndef CONFIG_GPIO_SYSFS
230
Mike Frysinger1f018c82009-12-09 06:53:39 -0500231struct device;
232
David Brownelld8f388d2008-07-25 01:46:07 -0700233/* sysfs support is only available with gpiolib, where it's optional */
234
235static inline int gpio_export(unsigned gpio, bool direction_may_change)
236{
237 return -ENOSYS;
238}
239
Jani Nikulaa4177ee2009-09-22 16:46:33 -0700240static inline int gpio_export_link(struct device *dev, const char *name,
241 unsigned gpio)
242{
243 return -ENOSYS;
244}
245
Jani Nikula07697462009-12-15 16:46:20 -0800246static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
247{
248 return -ENOSYS;
249}
250
David Brownelld8f388d2008-07-25 01:46:07 -0700251static inline void gpio_unexport(unsigned gpio)
252{
253}
254#endif /* CONFIG_GPIO_SYSFS */
David Brownelld2876d02008-02-04 22:28:20 -0800255
David Brownell4c203862007-02-12 00:53:11 -0800256#endif /* _ASM_GENERIC_GPIO_H */