Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa...
[linux-2.6-block.git] / include / asm-generic / gpio.h
CommitLineData
4c20386c
DB
1#ifndef _ASM_GENERIC_GPIO_H
2#define _ASM_GENERIC_GPIO_H
3
b3db4a8a 4#include <linux/kernel.h>
6ea0205b 5#include <linux/types.h>
25947d5a 6#include <linux/errno.h>
15c9a0ac 7#include <linux/of.h>
6ea0205b 8
7444a72e 9#ifdef CONFIG_GPIOLIB
d2876d08 10
6ea0205b 11#include <linux/compiler.h>
79a9becd
AC
12#include <linux/gpio/driver.h>
13#include <linux/gpio/consumer.h>
6ea0205b 14
d2876d08
DB
15/* Platforms may implement their GPIO interface with library code,
16 * at a small performance cost for non-inlined operations and some
17 * extra memory (for code and for per-GPIO table entries).
18 *
19 * While the GPIO programming interface defines valid GPIO numbers
20 * to be in the range 0..MAX_INT, this library restricts them to the
6a9436d0 21 * smaller range 0..ARCH_NR_GPIOS-1.
c956126c
DB
22 *
23 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
24 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
25 * actually an estimate of a board-specific value.
d2876d08
DB
26 */
27
28#ifndef ARCH_NR_GPIOS
7ca267fa 29#define ARCH_NR_GPIOS 512
d2876d08
DB
30#endif
31
c956126c
DB
32/*
33 * "valid" GPIO numbers are nonnegative and may be passed to
34 * setup routines like gpio_request(). only some valid numbers
35 * can successfully be requested and used.
36 *
37 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
38 * platform data and other tables.
39 */
40
3474cb3c 41static inline bool gpio_is_valid(int number)
e6de1808 42{
3474cb3c 43 return number >= 0 && number < ARCH_NR_GPIOS;
e6de1808
GL
44}
45
1f018c8d 46struct device;
feb83699 47struct gpio;
d2876d08 48struct seq_file;
438d8908 49struct module;
a19e3da5 50struct device_node;
6c0b4e6c 51struct gpio_desc;
d2876d08 52
79a9becd
AC
53/* caller holds gpio_lock *OR* gpio is marked as requested */
54static inline struct gpio_chip *gpio_to_chip(unsigned gpio)
55{
56 return gpiod_to_chip(gpio_to_desc(gpio));
57}
d2876d08
DB
58
59/* Always use the library code for GPIO management calls,
60 * or when sleeping may be involved.
61 */
d8a3515e 62extern int gpio_request(unsigned gpio, const char *label);
d2876d08
DB
63extern void gpio_free(unsigned gpio);
64
c7caf868
AC
65static inline int gpio_direction_input(unsigned gpio)
66{
67 return gpiod_direction_input(gpio_to_desc(gpio));
68}
69static inline int gpio_direction_output(unsigned gpio, int value)
70{
71 return gpiod_direction_output_raw(gpio_to_desc(gpio), value);
72}
d2876d08 73
c7caf868
AC
74static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
75{
76 return gpiod_set_debounce(gpio_to_desc(gpio), debounce);
77}
c4b5be98 78
79a9becd
AC
79static inline int gpio_get_value_cansleep(unsigned gpio)
80{
81 return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio));
82}
83static inline void gpio_set_value_cansleep(unsigned gpio, int value)
84{
85 return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value);
86}
d2876d08
DB
87
88
89/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
90 * the GPIO is constant and refers to some always-present controller,
91 * giving direct access to chip registers and tight bitbanging loops.
92 */
79a9becd
AC
93static inline int __gpio_get_value(unsigned gpio)
94{
95 return gpiod_get_raw_value(gpio_to_desc(gpio));
96}
97static inline void __gpio_set_value(unsigned gpio, int value)
98{
99 return gpiod_set_raw_value(gpio_to_desc(gpio), value);
100}
d2876d08 101
79a9becd
AC
102static inline int __gpio_cansleep(unsigned gpio)
103{
104 return gpiod_cansleep(gpio_to_desc(gpio));
105}
d2876d08 106
79a9becd
AC
107static inline int __gpio_to_irq(unsigned gpio)
108{
109 return gpiod_to_irq(gpio_to_desc(gpio));
110}
d2876d08 111
d8a3515e 112extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
7c295975
LPC
113extern int gpio_request_array(const struct gpio *array, size_t num);
114extern void gpio_free_array(const struct gpio *array, size_t num);
3e45f1d1 115
d8f388d8
DB
116/*
117 * A sysfs interface can be exported by individual drivers if they want,
118 * but more typically is configured entirely from userspace.
119 */
79a9becd
AC
120static inline int gpio_export(unsigned gpio, bool direction_may_change)
121{
122 return gpiod_export(gpio_to_desc(gpio), direction_may_change);
123}
d8f388d8 124
79a9becd
AC
125static inline int gpio_export_link(struct device *dev, const char *name,
126 unsigned gpio)
127{
128 return gpiod_export_link(dev, name, gpio_to_desc(gpio));
129}
130
79a9becd
AC
131static inline void gpio_unexport(unsigned gpio)
132{
133 gpiod_unexport(gpio_to_desc(gpio));
134}
d8f388d8 135
09cd9527 136#else /* !CONFIG_GPIOLIB */
d2876d08 137
3474cb3c 138static inline bool gpio_is_valid(int number)
e6de1808
GL
139{
140 /* only non-negative numbers are valid */
141 return number >= 0;
142}
143
4c20386c
DB
144/* platforms that don't directly support access to GPIOs through I2C, SPI,
145 * or other blocking infrastructure can use these wrappers.
146 */
147
148static inline int gpio_cansleep(unsigned gpio)
149{
150 return 0;
151}
152
153static inline int gpio_get_value_cansleep(unsigned gpio)
154{
155 might_sleep();
eb9ae7f2 156 return __gpio_get_value(gpio);
4c20386c
DB
157}
158
159static inline void gpio_set_value_cansleep(unsigned gpio, int value)
160{
161 might_sleep();
eb9ae7f2 162 __gpio_set_value(gpio, value);
4c20386c
DB
163}
164
09cd9527 165#endif /* !CONFIG_GPIOLIB */
d8f388d8 166
4c20386c 167#endif /* _ASM_GENERIC_GPIO_H */