percpu: use KERN_CONT in pcpu_dump_alloc_info()
[linux-2.6.git] / include / linux / gpio.h
blob6155ecf192b0466f02ea616b5b8d8ef9fd5fc2f5
1 #ifndef __LINUX_GPIO_H
2 #define __LINUX_GPIO_H
4 /* see Documentation/gpio.txt */
6 /* make these flag values available regardless of GPIO kconfig options */
7 #define GPIOF_DIR_OUT (0 << 0)
8 #define GPIOF_DIR_IN (1 << 0)
10 #define GPIOF_INIT_LOW (0 << 1)
11 #define GPIOF_INIT_HIGH (1 << 1)
13 #define GPIOF_IN (GPIOF_DIR_IN)
14 #define GPIOF_OUT_INIT_LOW (GPIOF_DIR_OUT | GPIOF_INIT_LOW)
15 #define GPIOF_OUT_INIT_HIGH (GPIOF_DIR_OUT | GPIOF_INIT_HIGH)
17 /* Gpio pin is open drain */
18 #define GPIOF_OPEN_DRAIN (1 << 2)
20 /* Gpio pin is open source */
21 #define GPIOF_OPEN_SOURCE (1 << 3)
23 /**
24 * struct gpio - a structure describing a GPIO with configuration
25 * @gpio: the GPIO number
26 * @flags: GPIO configuration as specified by GPIOF_*
27 * @label: a literal description string of this GPIO
29 struct gpio {
30 unsigned gpio;
31 unsigned long flags;
32 const char *label;
35 #ifdef CONFIG_GENERIC_GPIO
36 #include <asm/gpio.h>
38 #else
40 #include <linux/kernel.h>
41 #include <linux/types.h>
42 #include <linux/errno.h>
43 #include <linux/bug.h>
45 struct device;
46 struct gpio_chip;
48 static inline bool gpio_is_valid(int number)
50 return false;
53 static inline int gpio_request(unsigned gpio, const char *label)
55 return -ENOSYS;
58 static inline int gpio_request_one(unsigned gpio,
59 unsigned long flags, const char *label)
61 return -ENOSYS;
64 static inline int gpio_request_array(const struct gpio *array, size_t num)
66 return -ENOSYS;
69 static inline void gpio_free(unsigned gpio)
71 might_sleep();
73 /* GPIO can never have been requested */
74 WARN_ON(1);
77 static inline void gpio_free_array(const struct gpio *array, size_t num)
79 might_sleep();
81 /* GPIO can never have been requested */
82 WARN_ON(1);
85 static inline int gpio_direction_input(unsigned gpio)
87 return -ENOSYS;
90 static inline int gpio_direction_output(unsigned gpio, int value)
92 return -ENOSYS;
95 static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
97 return -ENOSYS;
100 static inline int gpio_get_value(unsigned gpio)
102 /* GPIO can never have been requested or set as {in,out}put */
103 WARN_ON(1);
104 return 0;
107 static inline void gpio_set_value(unsigned gpio, int value)
109 /* GPIO can never have been requested or set as output */
110 WARN_ON(1);
113 static inline int gpio_cansleep(unsigned gpio)
115 /* GPIO can never have been requested or set as {in,out}put */
116 WARN_ON(1);
117 return 0;
120 static inline int gpio_get_value_cansleep(unsigned gpio)
122 /* GPIO can never have been requested or set as {in,out}put */
123 WARN_ON(1);
124 return 0;
127 static inline void gpio_set_value_cansleep(unsigned gpio, int value)
129 /* GPIO can never have been requested or set as output */
130 WARN_ON(1);
133 static inline int gpio_export(unsigned gpio, bool direction_may_change)
135 /* GPIO can never have been requested or set as {in,out}put */
136 WARN_ON(1);
137 return -EINVAL;
140 static inline int gpio_export_link(struct device *dev, const char *name,
141 unsigned gpio)
143 /* GPIO can never have been exported */
144 WARN_ON(1);
145 return -EINVAL;
148 static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
150 /* GPIO can never have been requested */
151 WARN_ON(1);
152 return -EINVAL;
155 static inline void gpio_unexport(unsigned gpio)
157 /* GPIO can never have been exported */
158 WARN_ON(1);
161 static inline int gpio_to_irq(unsigned gpio)
163 /* GPIO can never have been requested or set as input */
164 WARN_ON(1);
165 return -EINVAL;
168 static inline int irq_to_gpio(unsigned irq)
170 /* irq can never have been returned from gpio_to_irq() */
171 WARN_ON(1);
172 return -EINVAL;
175 #endif
177 #endif /* __LINUX_GPIO_H */