aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2008-02-05 01:28:20 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-05 12:44:12 -0500
commitd2876d08d86f22ce1f276fc29f6baec8b53e32c6 (patch)
treed9d059fad208001edb58d9dff3ed6ad64c8e7407
parenta9c5fff542544c8595bb12efeb278a96d99386fc (diff)
gpiolib: add gpio provider infrastructure
Provide new implementation infrastructure that platforms may choose to use when implementing the GPIO programming interface. Platforms can update their GPIO support to use this. In many cases the incremental cost to access a non-inlined GPIO should be less than a dozen instructions, with the memory cost being about a page (total) of extra data and code. The upside is: * Providing two features which were "want to have (but OK to defer)" when GPIO interfaces were first discussed in November 2006: - A "struct gpio_chip" to plug in GPIOs that aren't directly supported by SOC platforms, but come from FPGAs or other multifunction devices using conventional device registers (like UCB-1x00 or SM501 GPIOs, and southbridges in PCs with more open specs than usual). - Full support for message-based GPIO expanders, where registers are accessed through sleeping I/O calls. Previous support for these "cansleep" calls was just stubs. (One example: the widely used pcf8574 I2C chips, with 8 GPIOs each.) * Including a non-stub implementation of the gpio_{request,free}() calls, making those calls much more useful. The diagnostic labels are also recorded given DEBUG_FS, so /sys/kernel/debug/gpio can show a snapshot of all GPIOs known to this infrastructure. The driver programming interfaces introduced in 2.6.21 do not change at all; this infrastructure is entirely below those covers. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Jean Delvare <khali@linux-fr.org> Cc: Eric Miao <eric.miao@marvell.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: Philipp Zabel <philipp.zabel@gmail.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Ben Gardner <bgardner@wabtec.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/gpio/Makefile2
-rw-r--r--drivers/gpio/gpiolib.c567
-rw-r--r--include/asm-generic/gpio.h98
3 files changed, 667 insertions, 0 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index 369e4fc432e3..c3da03975d58 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -2,3 +2,5 @@
2 2
3ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG 3ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG
4 4
5obj-$(CONFIG_HAVE_GPIO_LIB) += gpiolib.o
6
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
new file mode 100644
index 000000000000..d8db2f8ee411
--- /dev/null
+++ b/drivers/gpio/gpiolib.c
@@ -0,0 +1,567 @@
1#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/irq.h>
4#include <linux/spinlock.h>
5
6#include <asm/gpio.h>
7
8
9/* Optional implementation infrastructure for GPIO interfaces.
10 *
11 * Platforms may want to use this if they tend to use very many GPIOs
12 * that aren't part of a System-On-Chip core; or across I2C/SPI/etc.
13 *
14 * When kernel footprint or instruction count is an issue, simpler
15 * implementations may be preferred. The GPIO programming interface
16 * allows for inlining speed-critical get/set operations for common
17 * cases, so that access to SOC-integrated GPIOs can sometimes cost
18 * only an instruction or two per bit.
19 */
20
21
22/* When debugging, extend minimal trust to callers and platform code.
23 * Also emit diagnostic messages that may help initial bringup, when
24 * board setup or driver bugs are most common.
25 *
26 * Otherwise, minimize overhead in what may be bitbanging codepaths.
27 */
28#ifdef DEBUG
29#define extra_checks 1
30#else
31#define extra_checks 0
32#endif
33
34/* gpio_lock prevents conflicts during gpio_desc[] table updates.
35 * While any GPIO is requested, its gpio_chip is not removable;
36 * each GPIO's "requested" flag serves as a lock and refcount.
37 */
38static DEFINE_SPINLOCK(gpio_lock);
39
40struct gpio_desc {
41 struct gpio_chip *chip;
42 unsigned long flags;
43/* flag symbols are bit numbers */
44#define FLAG_REQUESTED 0
45#define FLAG_IS_OUT 1
46
47#ifdef CONFIG_DEBUG_FS
48 const char *label;
49#endif
50};
51static struct gpio_desc gpio_desc[ARCH_NR_GPIOS];
52
53static inline void desc_set_label(struct gpio_desc *d, const char *label)
54{
55#ifdef CONFIG_DEBUG_FS
56 d->label = label;
57#endif
58}
59
60/* Warn when drivers omit gpio_request() calls -- legal but ill-advised
61 * when setting direction, and otherwise illegal. Until board setup code
62 * and drivers use explicit requests everywhere (which won't happen when
63 * those calls have no teeth) we can't avoid autorequesting. This nag
64 * message should motivate switching to explicit requests...
65 */
66static void gpio_ensure_requested(struct gpio_desc *desc)
67{
68 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
69 pr_warning("GPIO-%d autorequested\n", (int)(desc - gpio_desc));
70 desc_set_label(desc, "[auto]");
71 }
72}
73
74/* caller holds gpio_lock *OR* gpio is marked as requested */
75static inline struct gpio_chip *gpio_to_chip(unsigned gpio)
76{
77 return gpio_desc[gpio].chip;
78}
79
80/**
81 * gpiochip_add() - register a gpio_chip
82 * @chip: the chip to register, with chip->base initialized
83 * Context: potentially before irqs or kmalloc will work
84 *
85 * Returns a negative errno if the chip can't be registered, such as
86 * because the chip->base is invalid or already associated with a
87 * different chip. Otherwise it returns zero as a success code.
88 */
89int gpiochip_add(struct gpio_chip *chip)
90{
91 unsigned long flags;
92 int status = 0;
93 unsigned id;
94
95 /* NOTE chip->base negative is reserved to mean a request for
96 * dynamic allocation. We don't currently support that.
97 */
98
99 if (chip->base < 0 || (chip->base + chip->ngpio) >= ARCH_NR_GPIOS) {
100 status = -EINVAL;
101 goto fail;
102 }
103
104 spin_lock_irqsave(&gpio_lock, flags);
105
106 /* these GPIO numbers must not be managed by another gpio_chip */
107 for (id = chip->base; id < chip->base + chip->ngpio; id++) {
108 if (gpio_desc[id].chip != NULL) {
109 status = -EBUSY;
110 break;
111 }
112 }
113 if (status == 0) {
114 for (id = chip->base; id < chip->base + chip->ngpio; id++) {
115 gpio_desc[id].chip = chip;
116 gpio_desc[id].flags = 0;
117 }
118 }
119
120 spin_unlock_irqrestore(&gpio_lock, flags);
121fail:
122 /* failures here can mean systems won't boot... */
123 if (status)
124 pr_err("gpiochip_add: gpios %d..%d (%s) not registered\n",
125 chip->base, chip->base + chip->ngpio,
126 chip->label ? : "generic");
127 return status;
128}
129EXPORT_SYMBOL_GPL(gpiochip_add);
130
131/**
132 * gpiochip_remove() - unregister a gpio_chip
133 * @chip: the chip to unregister
134 *
135 * A gpio_chip with any GPIOs still requested may not be removed.
136 */
137int gpiochip_remove(struct gpio_chip *chip)
138{
139 unsigned long flags;
140 int status = 0;
141 unsigned id;
142
143 spin_lock_irqsave(&gpio_lock, flags);
144
145 for (id = chip->base; id < chip->base + chip->ngpio; id++) {
146 if (test_bit(FLAG_REQUESTED, &gpio_desc[id].flags)) {
147 status = -EBUSY;
148 break;
149 }
150 }
151 if (status == 0) {
152 for (id = chip->base; id < chip->base + chip->ngpio; id++)
153 gpio_desc[id].chip = NULL;
154 }
155
156 spin_unlock_irqrestore(&gpio_lock, flags);
157 return status;
158}
159EXPORT_SYMBOL_GPL(gpiochip_remove);
160
161
162/* These "optional" allocation calls help prevent drivers from stomping
163 * on each other, and help provide better diagnostics in debugfs.
164 * They're called even less than the "set direction" calls.
165 */
166int gpio_request(unsigned gpio, const char *label)
167{
168 struct gpio_desc *desc;
169 int status = -EINVAL;
170 unsigned long flags;
171
172 spin_lock_irqsave(&gpio_lock, flags);
173
174 if (gpio >= ARCH_NR_GPIOS)
175 goto done;
176 desc = &gpio_desc[gpio];
177 if (desc->chip == NULL)
178 goto done;
179
180 /* NOTE: gpio_request() can be called in early boot,
181 * before IRQs are enabled.
182 */
183
184 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
185 desc_set_label(desc, label ? : "?");
186 status = 0;
187 } else
188 status = -EBUSY;
189
190done:
191 if (status)
192 pr_debug("gpio_request: gpio-%d (%s) status %d\n",
193 gpio, label ? : "?", status);
194 spin_unlock_irqrestore(&gpio_lock, flags);
195 return status;
196}
197EXPORT_SYMBOL_GPL(gpio_request);
198
199void gpio_free(unsigned gpio)
200{
201 unsigned long flags;
202 struct gpio_desc *desc;
203
204 if (gpio >= ARCH_NR_GPIOS) {
205 WARN_ON(extra_checks);
206 return;
207 }
208
209 spin_lock_irqsave(&gpio_lock, flags);
210
211 desc = &gpio_desc[gpio];
212 if (desc->chip && test_and_clear_bit(FLAG_REQUESTED, &desc->flags))
213 desc_set_label(desc, NULL);
214 else
215 WARN_ON(extra_checks);
216
217 spin_unlock_irqrestore(&gpio_lock, flags);
218}
219EXPORT_SYMBOL_GPL(gpio_free);
220
221
222/**
223 * gpiochip_is_requested - return string iff signal was requested
224 * @chip: controller managing the signal
225 * @offset: of signal within controller's 0..(ngpio - 1) range
226 *
227 * Returns NULL if the GPIO is not currently requested, else a string.
228 * If debugfs support is enabled, the string returned is the label passed
229 * to gpio_request(); otherwise it is a meaningless constant.
230 *
231 * This function is for use by GPIO controller drivers. The label can
232 * help with diagnostics, and knowing that the signal is used as a GPIO
233 * can help avoid accidentally multiplexing it to another controller.
234 */
235const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
236{
237 unsigned gpio = chip->base + offset;
238
239 if (gpio >= ARCH_NR_GPIOS || gpio_desc[gpio].chip != chip)
240 return NULL;
241 if (test_bit(FLAG_REQUESTED, &gpio_desc[gpio].flags) == 0)
242 return NULL;
243#ifdef CONFIG_DEBUG_FS
244 return gpio_desc[gpio].label;
245#else
246 return "?";
247#endif
248}
249EXPORT_SYMBOL_GPL(gpiochip_is_requested);
250
251
252/* Drivers MUST set GPIO direction before making get/set calls. In
253 * some cases this is done in early boot, before IRQs are enabled.
254 *
255 * As a rule these aren't called more than once (except for drivers
256 * using the open-drain emulation idiom) so these are natural places
257 * to accumulate extra debugging checks. Note that we can't (yet)
258 * rely on gpio_request() having been called beforehand.
259 */
260
261int gpio_direction_input(unsigned gpio)
262{
263 unsigned long flags;
264 struct gpio_chip *chip;
265 struct gpio_desc *desc = &gpio_desc[gpio];
266 int status = -EINVAL;
267
268 spin_lock_irqsave(&gpio_lock, flags);
269
270 if (gpio >= ARCH_NR_GPIOS)
271 goto fail;
272 chip = desc->chip;
273 if (!chip || !chip->get || !chip->direction_input)
274 goto fail;
275 gpio -= chip->base;
276 if (gpio >= chip->ngpio)
277 goto fail;
278 gpio_ensure_requested(desc);
279
280 /* now we know the gpio is valid and chip won't vanish */
281
282 spin_unlock_irqrestore(&gpio_lock, flags);
283
284 might_sleep_if(extra_checks && chip->can_sleep);
285
286 status = chip->direction_input(chip, gpio);
287 if (status == 0)
288 clear_bit(FLAG_IS_OUT, &desc->flags);
289 return status;
290fail:
291 spin_unlock_irqrestore(&gpio_lock, flags);
292 if (status)
293 pr_debug("%s: gpio-%d status %d\n",
294 __FUNCTION__, gpio, status);
295 return status;
296}
297EXPORT_SYMBOL_GPL(gpio_direction_input);
298
299int gpio_direction_output(unsigned gpio, int value)
300{
301 unsigned long flags;
302 struct gpio_chip *chip;
303 struct gpio_desc *desc = &gpio_desc[gpio];
304 int status = -EINVAL;
305
306 spin_lock_irqsave(&gpio_lock, flags);
307
308 if (gpio >= ARCH_NR_GPIOS)
309 goto fail;
310 chip = desc->chip;
311 if (!chip || !chip->set || !chip->direction_output)
312 goto fail;
313 gpio -= chip->base;
314 if (gpio >= chip->ngpio)
315 goto fail;
316 gpio_ensure_requested(desc);
317
318 /* now we know the gpio is valid and chip won't vanish */
319
320 spin_unlock_irqrestore(&gpio_lock, flags);
321
322 might_sleep_if(extra_checks && chip->can_sleep);
323
324 status = chip->direction_output(chip, gpio, value);
325 if (status == 0)
326 set_bit(FLAG_IS_OUT, &desc->flags);
327 return status;
328fail:
329 spin_unlock_irqrestore(&gpio_lock, flags);
330 if (status)
331 pr_debug("%s: gpio-%d status %d\n",
332 __FUNCTION__, gpio, status);
333 return status;
334}
335EXPORT_SYMBOL_GPL(gpio_direction_output);
336
337
338/* I/O calls are only valid after configuration completed; the relevant
339 * "is this a valid GPIO" error checks should already have been done.
340 *
341 * "Get" operations are often inlinable as reading a pin value register,
342 * and masking the relevant bit in that register.
343 *
344 * When "set" operations are inlinable, they involve writing that mask to
345 * one register to set a low value, or a different register to set it high.
346 * Otherwise locking is needed, so there may be little value to inlining.
347 *
348 *------------------------------------------------------------------------
349 *
350 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
351 * have requested the GPIO. That can include implicit requesting by
352 * a direction setting call. Marking a gpio as requested locks its chip
353 * in memory, guaranteeing that these table lookups need no more locking
354 * and that gpiochip_remove() will fail.
355 *
356 * REVISIT when debugging, consider adding some instrumentation to ensure
357 * that the GPIO was actually requested.
358 */
359
360/**
361 * __gpio_get_value() - return a gpio's value
362 * @gpio: gpio whose value will be returned
363 * Context: any
364 *
365 * This is used directly or indirectly to implement gpio_get_value().
366 * It returns the zero or nonzero value provided by the associated
367 * gpio_chip.get() method; or zero if no such method is provided.
368 */
369int __gpio_get_value(unsigned gpio)
370{
371 struct gpio_chip *chip;
372
373 chip = gpio_to_chip(gpio);
374 WARN_ON(extra_checks && chip->can_sleep);
375 return chip->get ? chip->get(chip, gpio - chip->base) : 0;
376}
377EXPORT_SYMBOL_GPL(__gpio_get_value);
378
379/**
380 * __gpio_set_value() - assign a gpio's value
381 * @gpio: gpio whose value will be assigned
382 * @value: value to assign
383 * Context: any
384 *
385 * This is used directly or indirectly to implement gpio_set_value().
386 * It invokes the associated gpio_chip.set() method.
387 */
388void __gpio_set_value(unsigned gpio, int value)
389{
390 struct gpio_chip *chip;
391
392 chip = gpio_to_chip(gpio);
393 WARN_ON(extra_checks && chip->can_sleep);
394 chip->set(chip, gpio - chip->base, value);
395}
396EXPORT_SYMBOL_GPL(__gpio_set_value);
397
398/**
399 * __gpio_cansleep() - report whether gpio value access will sleep
400 * @gpio: gpio in question
401 * Context: any
402 *
403 * This is used directly or indirectly to implement gpio_cansleep(). It
404 * returns nonzero if access reading or writing the GPIO value can sleep.
405 */
406int __gpio_cansleep(unsigned gpio)
407{
408 struct gpio_chip *chip;
409
410 /* only call this on GPIOs that are valid! */
411 chip = gpio_to_chip(gpio);
412
413 return chip->can_sleep;
414}
415EXPORT_SYMBOL_GPL(__gpio_cansleep);
416
417
418
419/* There's no value in making it easy to inline GPIO calls that may sleep.
420 * Common examples include ones connected to I2C or SPI chips.
421 */
422
423int gpio_get_value_cansleep(unsigned gpio)
424{
425 struct gpio_chip *chip;
426
427 might_sleep_if(extra_checks);
428 chip = gpio_to_chip(gpio);
429 return chip->get(chip, gpio - chip->base);
430}
431EXPORT_SYMBOL_GPL(gpio_get_value_cansleep);
432
433void gpio_set_value_cansleep(unsigned gpio, int value)
434{
435 struct gpio_chip *chip;
436
437 might_sleep_if(extra_checks);
438 chip = gpio_to_chip(gpio);
439 chip->set(chip, gpio - chip->base, value);
440}
441EXPORT_SYMBOL_GPL(gpio_set_value_cansleep);
442
443
444#ifdef CONFIG_DEBUG_FS
445
446#include <linux/debugfs.h>
447#include <linux/seq_file.h>
448
449
450static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
451{
452 unsigned i;
453 unsigned gpio = chip->base;
454 struct gpio_desc *gdesc = &gpio_desc[gpio];
455 int is_out;
456
457 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
458 if (!test_bit(FLAG_REQUESTED, &gdesc->flags))
459 continue;
460
461 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
462 seq_printf(s, " gpio-%-3d (%-12s) %s %s",
463 gpio, gdesc->label,
464 is_out ? "out" : "in ",
465 chip->get
466 ? (chip->get(chip, i) ? "hi" : "lo")
467 : "? ");
468
469 if (!is_out) {
470 int irq = gpio_to_irq(gpio);
471 struct irq_desc *desc = irq_desc + irq;
472
473 /* This races with request_irq(), set_irq_type(),
474 * and set_irq_wake() ... but those are "rare".
475 *
476 * More significantly, trigger type flags aren't
477 * currently maintained by genirq.
478 */
479 if (irq >= 0 && desc->action) {
480 char *trigger;
481
482 switch (desc->status & IRQ_TYPE_SENSE_MASK) {
483 case IRQ_TYPE_NONE:
484 trigger = "(default)";
485 break;
486 case IRQ_TYPE_EDGE_FALLING:
487 trigger = "edge-falling";
488 break;
489 case IRQ_TYPE_EDGE_RISING:
490 trigger = "edge-rising";
491 break;
492 case IRQ_TYPE_EDGE_BOTH:
493 trigger = "edge-both";
494 break;
495 case IRQ_TYPE_LEVEL_HIGH:
496 trigger = "level-high";
497 break;
498 case IRQ_TYPE_LEVEL_LOW:
499 trigger = "level-low";
500 break;
501 default:
502 trigger = "?trigger?";
503 break;
504 }
505
506 seq_printf(s, " irq-%d %s%s",
507 irq, trigger,
508 (desc->status & IRQ_WAKEUP)
509 ? " wakeup" : "");
510 }
511 }
512
513 seq_printf(s, "\n");
514 }
515}
516
517static int gpiolib_show(struct seq_file *s, void *unused)
518{
519 struct gpio_chip *chip = NULL;
520 unsigned gpio;
521 int started = 0;
522
523 /* REVISIT this isn't locked against gpio_chip removal ... */
524
525 for (gpio = 0; gpio < ARCH_NR_GPIOS; gpio++) {
526 if (chip == gpio_desc[gpio].chip)
527 continue;
528 chip = gpio_desc[gpio].chip;
529 if (!chip)
530 continue;
531
532 seq_printf(s, "%sGPIOs %d-%d, %s%s:\n",
533 started ? "\n" : "",
534 chip->base, chip->base + chip->ngpio - 1,
535 chip->label ? : "generic",
536 chip->can_sleep ? ", can sleep" : "");
537 started = 1;
538 if (chip->dbg_show)
539 chip->dbg_show(s, chip);
540 else
541 gpiolib_dbg_show(s, chip);
542 }
543 return 0;
544}
545
546static int gpiolib_open(struct inode *inode, struct file *file)
547{
548 return single_open(file, gpiolib_show, NULL);
549}
550
551static struct file_operations gpiolib_operations = {
552 .open = gpiolib_open,
553 .read = seq_read,
554 .llseek = seq_lseek,
555 .release = single_release,
556};
557
558static int __init gpiolib_debugfs_init(void)
559{
560 /* /sys/kernel/debug/gpio */
561 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
562 NULL, NULL, &gpiolib_operations);
563 return 0;
564}
565subsys_initcall(gpiolib_debugfs_init);
566
567#endif /* DEBUG_FS */
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h
index 2d0aab1d8611..f29a502f4a6c 100644
--- a/include/asm-generic/gpio.h
+++ b/include/asm-generic/gpio.h
@@ -1,6 +1,102 @@
1#ifndef _ASM_GENERIC_GPIO_H 1#ifndef _ASM_GENERIC_GPIO_H
2#define _ASM_GENERIC_GPIO_H 2#define _ASM_GENERIC_GPIO_H
3 3
4#ifdef CONFIG_HAVE_GPIO_LIB
5
6/* Platforms may implement their GPIO interface with library code,
7 * at a small performance cost for non-inlined operations and some
8 * extra memory (for code and for per-GPIO table entries).
9 *
10 * While the GPIO programming interface defines valid GPIO numbers
11 * to be in the range 0..MAX_INT, this library restricts them to the
12 * smaller range 0..ARCH_NR_GPIOS.
13 */
14
15#ifndef ARCH_NR_GPIOS
16#define ARCH_NR_GPIOS 256
17#endif
18
19struct seq_file;
20
21/**
22 * struct gpio_chip - abstract a GPIO controller
23 * @label: for diagnostics
24 * @direction_input: configures signal "offset" as input, or returns error
25 * @get: returns value for signal "offset"; for output signals this
26 * returns either the value actually sensed, or zero
27 * @direction_output: configures signal "offset" as output, or returns error
28 * @set: assigns output value for signal "offset"
29 * @dbg_show: optional routine to show contents in debugfs; default code
30 * will be used when this is omitted, but custom code can show extra
31 * state (such as pullup/pulldown configuration).
32 * @base: identifies the first GPIO number handled by this chip; or, if
33 * negative during registration, requests dynamic ID allocation.
34 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
35 * handled is (base + ngpio - 1).
36 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
37 * must while accessing GPIO expander chips over I2C or SPI
38 *
39 * A gpio_chip can help platforms abstract various sources of GPIOs so
40 * they can all be accessed through a common programing interface.
41 * Example sources would be SOC controllers, FPGAs, multifunction
42 * chips, dedicated GPIO expanders, and so on.
43 *
44 * Each chip controls a number of signals, identified in method calls
45 * by "offset" values in the range 0..(@ngpio - 1). When those signals
46 * are referenced through calls like gpio_get_value(gpio), the offset
47 * is calculated by subtracting @base from the gpio number.
48 */
49struct gpio_chip {
50 char *label;
51
52 int (*direction_input)(struct gpio_chip *chip,
53 unsigned offset);
54 int (*get)(struct gpio_chip *chip,
55 unsigned offset);
56 int (*direction_output)(struct gpio_chip *chip,
57 unsigned offset, int value);
58 void (*set)(struct gpio_chip *chip,
59 unsigned offset, int value);
60 void (*dbg_show)(struct seq_file *s,
61 struct gpio_chip *chip);
62 int base;
63 u16 ngpio;
64 unsigned can_sleep:1;
65};
66
67extern const char *gpiochip_is_requested(struct gpio_chip *chip,
68 unsigned offset);
69
70/* add/remove chips */
71extern int gpiochip_add(struct gpio_chip *chip);
72extern int __must_check gpiochip_remove(struct gpio_chip *chip);
73
74
75/* Always use the library code for GPIO management calls,
76 * or when sleeping may be involved.
77 */
78extern int gpio_request(unsigned gpio, const char *label);
79extern void gpio_free(unsigned gpio);
80
81extern int gpio_direction_input(unsigned gpio);
82extern int gpio_direction_output(unsigned gpio, int value);
83
84extern int gpio_get_value_cansleep(unsigned gpio);
85extern void gpio_set_value_cansleep(unsigned gpio, int value);
86
87
88/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
89 * the GPIO is constant and refers to some always-present controller,
90 * giving direct access to chip registers and tight bitbanging loops.
91 */
92extern int __gpio_get_value(unsigned gpio);
93extern void __gpio_set_value(unsigned gpio, int value);
94
95extern int __gpio_cansleep(unsigned gpio);
96
97
98#else
99
4/* platforms that don't directly support access to GPIOs through I2C, SPI, 100/* platforms that don't directly support access to GPIOs through I2C, SPI,
5 * or other blocking infrastructure can use these wrappers. 101 * or other blocking infrastructure can use these wrappers.
6 */ 102 */
@@ -22,4 +118,6 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value)
22 gpio_set_value(gpio, value); 118 gpio_set_value(gpio, value);
23} 119}
24 120
121#endif
122
25#endif /* _ASM_GENERIC_GPIO_H */ 123#endif /* _ASM_GENERIC_GPIO_H */