Merge branch 'for_3.5/gpio/cleanup' of git://git.kernel.org/pub/scm/linux/kernel...
[firefly-linux-kernel-4.4.55.git] / include / linux / gpio.h
1 #ifndef __LINUX_GPIO_H
2 #define __LINUX_GPIO_H
3
4 #include <linux/errno.h>
5
6 /* see Documentation/gpio.txt */
7
8 /* make these flag values available regardless of GPIO kconfig options */
9 #define GPIOF_DIR_OUT   (0 << 0)
10 #define GPIOF_DIR_IN    (1 << 0)
11
12 #define GPIOF_INIT_LOW  (0 << 1)
13 #define GPIOF_INIT_HIGH (1 << 1)
14
15 #define GPIOF_IN                (GPIOF_DIR_IN)
16 #define GPIOF_OUT_INIT_LOW      (GPIOF_DIR_OUT | GPIOF_INIT_LOW)
17 #define GPIOF_OUT_INIT_HIGH     (GPIOF_DIR_OUT | GPIOF_INIT_HIGH)
18
19 /* Gpio pin is open drain */
20 #define GPIOF_OPEN_DRAIN        (1 << 2)
21
22 /* Gpio pin is open source */
23 #define GPIOF_OPEN_SOURCE       (1 << 3)
24
25 #define GPIOF_EXPORT            (1 << 2)
26 #define GPIOF_EXPORT_CHANGEABLE (1 << 3)
27 #define GPIOF_EXPORT_DIR_FIXED  (GPIOF_EXPORT)
28 #define GPIOF_EXPORT_DIR_CHANGEABLE (GPIOF_EXPORT | GPIOF_EXPORT_CHANGEABLE)
29
30 /**
31  * struct gpio - a structure describing a GPIO with configuration
32  * @gpio:       the GPIO number
33  * @flags:      GPIO configuration as specified by GPIOF_*
34  * @label:      a literal description string of this GPIO
35  */
36 struct gpio {
37         unsigned        gpio;
38         unsigned long   flags;
39         const char      *label;
40 };
41
42 #ifdef CONFIG_GENERIC_GPIO
43
44 #ifdef CONFIG_ARCH_HAVE_CUSTOM_GPIO_H
45 #include <asm/gpio.h>
46 #else
47
48 #include <asm-generic/gpio.h>
49
50 static inline int gpio_get_value(unsigned int gpio)
51 {
52         return __gpio_get_value(gpio);
53 }
54
55 static inline void gpio_set_value(unsigned int gpio, int value)
56 {
57         __gpio_set_value(gpio, value);
58 }
59
60 static inline int gpio_cansleep(unsigned int gpio)
61 {
62         return __gpio_cansleep(gpio);
63 }
64
65 static inline int gpio_to_irq(unsigned int gpio)
66 {
67         return __gpio_to_irq(gpio);
68 }
69
70 static inline int irq_to_gpio(unsigned int irq)
71 {
72         return -EINVAL;
73 }
74
75 #endif
76
77 #else
78
79 #include <linux/kernel.h>
80 #include <linux/types.h>
81 #include <linux/errno.h>
82 #include <linux/bug.h>
83
84 struct device;
85 struct gpio_chip;
86
87 static inline bool gpio_is_valid(int number)
88 {
89         return false;
90 }
91
92 static inline int gpio_request(unsigned gpio, const char *label)
93 {
94         return -ENOSYS;
95 }
96
97 static inline int devm_gpio_request(struct device *dev, unsigned gpio,
98                                     const char *label)
99 {
100         return -ENOSYS;
101 }
102
103 static inline int gpio_request_one(unsigned gpio,
104                                         unsigned long flags, const char *label)
105 {
106         return -ENOSYS;
107 }
108
109 static inline int gpio_request_array(const struct gpio *array, size_t num)
110 {
111         return -ENOSYS;
112 }
113
114 static inline void gpio_free(unsigned gpio)
115 {
116         might_sleep();
117
118         /* GPIO can never have been requested */
119         WARN_ON(1);
120 }
121
122 static inline void devm_gpio_free(struct device *dev, unsigned gpio)
123 {
124         might_sleep();
125
126         /* GPIO can never have been requested */
127         WARN_ON(1);
128 }
129
130 static inline void gpio_free_array(const struct gpio *array, size_t num)
131 {
132         might_sleep();
133
134         /* GPIO can never have been requested */
135         WARN_ON(1);
136 }
137
138 static inline int gpio_direction_input(unsigned gpio)
139 {
140         return -ENOSYS;
141 }
142
143 static inline int gpio_direction_output(unsigned gpio, int value)
144 {
145         return -ENOSYS;
146 }
147
148 static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
149 {
150         return -ENOSYS;
151 }
152
153 static inline int gpio_get_value(unsigned gpio)
154 {
155         /* GPIO can never have been requested or set as {in,out}put */
156         WARN_ON(1);
157         return 0;
158 }
159
160 static inline void gpio_set_value(unsigned gpio, int value)
161 {
162         /* GPIO can never have been requested or set as output */
163         WARN_ON(1);
164 }
165
166 static inline int gpio_cansleep(unsigned gpio)
167 {
168         /* GPIO can never have been requested or set as {in,out}put */
169         WARN_ON(1);
170         return 0;
171 }
172
173 static inline int gpio_get_value_cansleep(unsigned gpio)
174 {
175         /* GPIO can never have been requested or set as {in,out}put */
176         WARN_ON(1);
177         return 0;
178 }
179
180 static inline void gpio_set_value_cansleep(unsigned gpio, int value)
181 {
182         /* GPIO can never have been requested or set as output */
183         WARN_ON(1);
184 }
185
186 static inline int gpio_export(unsigned gpio, bool direction_may_change)
187 {
188         /* GPIO can never have been requested or set as {in,out}put */
189         WARN_ON(1);
190         return -EINVAL;
191 }
192
193 static inline int gpio_export_link(struct device *dev, const char *name,
194                                 unsigned gpio)
195 {
196         /* GPIO can never have been exported */
197         WARN_ON(1);
198         return -EINVAL;
199 }
200
201 static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
202 {
203         /* GPIO can never have been requested */
204         WARN_ON(1);
205         return -EINVAL;
206 }
207
208 static inline void gpio_unexport(unsigned gpio)
209 {
210         /* GPIO can never have been exported */
211         WARN_ON(1);
212 }
213
214 static inline int gpio_to_irq(unsigned gpio)
215 {
216         /* GPIO can never have been requested or set as input */
217         WARN_ON(1);
218         return -EINVAL;
219 }
220
221 static inline int irq_to_gpio(unsigned irq)
222 {
223         /* irq can never have been returned from gpio_to_irq() */
224         WARN_ON(1);
225         return -EINVAL;
226 }
227
228 #endif
229
230 #endif /* __LINUX_GPIO_H */