diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-generic/gpio.h | 33 | ||||
| -rw-r--r-- | include/linux/gpio.h | 13 |
2 files changed, 44 insertions, 2 deletions
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 6be061d09da9..1beff5166e53 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
| @@ -32,6 +32,8 @@ struct module; | |||
| 32 | /** | 32 | /** |
| 33 | * struct gpio_chip - abstract a GPIO controller | 33 | * struct gpio_chip - abstract a GPIO controller |
| 34 | * @label: for diagnostics | 34 | * @label: for diagnostics |
| 35 | * @dev: optional device providing the GPIOs | ||
| 36 | * @owner: helps prevent removal of modules exporting active GPIOs | ||
| 35 | * @direction_input: configures signal "offset" as input, or returns error | 37 | * @direction_input: configures signal "offset" as input, or returns error |
| 36 | * @get: returns value for signal "offset"; for output signals this | 38 | * @get: returns value for signal "offset"; for output signals this |
| 37 | * returns either the value actually sensed, or zero | 39 | * returns either the value actually sensed, or zero |
| @@ -59,6 +61,7 @@ struct module; | |||
| 59 | */ | 61 | */ |
| 60 | struct gpio_chip { | 62 | struct gpio_chip { |
| 61 | char *label; | 63 | char *label; |
| 64 | struct device *dev; | ||
| 62 | struct module *owner; | 65 | struct module *owner; |
| 63 | 66 | ||
| 64 | int (*direction_input)(struct gpio_chip *chip, | 67 | int (*direction_input)(struct gpio_chip *chip, |
| @@ -74,6 +77,7 @@ struct gpio_chip { | |||
| 74 | int base; | 77 | int base; |
| 75 | u16 ngpio; | 78 | u16 ngpio; |
| 76 | unsigned can_sleep:1; | 79 | unsigned can_sleep:1; |
| 80 | unsigned exported:1; | ||
| 77 | }; | 81 | }; |
| 78 | 82 | ||
| 79 | extern const char *gpiochip_is_requested(struct gpio_chip *chip, | 83 | extern const char *gpiochip_is_requested(struct gpio_chip *chip, |
| @@ -108,7 +112,18 @@ extern void __gpio_set_value(unsigned gpio, int value); | |||
| 108 | extern int __gpio_cansleep(unsigned gpio); | 112 | extern int __gpio_cansleep(unsigned gpio); |
| 109 | 113 | ||
| 110 | 114 | ||
| 111 | #else | 115 | #ifdef CONFIG_GPIO_SYSFS |
| 116 | |||
| 117 | /* | ||
| 118 | * A sysfs interface can be exported by individual drivers if they want, | ||
| 119 | * but more typically is configured entirely from userspace. | ||
| 120 | */ | ||
| 121 | extern int gpio_export(unsigned gpio, bool direction_may_change); | ||
| 122 | extern void gpio_unexport(unsigned gpio); | ||
| 123 | |||
| 124 | #endif /* CONFIG_GPIO_SYSFS */ | ||
| 125 | |||
| 126 | #else /* !CONFIG_HAVE_GPIO_LIB */ | ||
| 112 | 127 | ||
| 113 | static inline int gpio_is_valid(int number) | 128 | static inline int gpio_is_valid(int number) |
| 114 | { | 129 | { |
| @@ -137,6 +152,20 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value) | |||
| 137 | gpio_set_value(gpio, value); | 152 | gpio_set_value(gpio, value); |
| 138 | } | 153 | } |
| 139 | 154 | ||
| 140 | #endif | 155 | #endif /* !CONFIG_HAVE_GPIO_LIB */ |
| 156 | |||
| 157 | #ifndef CONFIG_GPIO_SYSFS | ||
| 158 | |||
| 159 | /* sysfs support is only available with gpiolib, where it's optional */ | ||
| 160 | |||
| 161 | static inline int gpio_export(unsigned gpio, bool direction_may_change) | ||
| 162 | { | ||
| 163 | return -ENOSYS; | ||
| 164 | } | ||
| 165 | |||
| 166 | static inline void gpio_unexport(unsigned gpio) | ||
| 167 | { | ||
| 168 | } | ||
| 169 | #endif /* CONFIG_GPIO_SYSFS */ | ||
| 141 | 170 | ||
| 142 | #endif /* _ASM_GENERIC_GPIO_H */ | 171 | #endif /* _ASM_GENERIC_GPIO_H */ |
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index 98be6c5762b9..730a20b83576 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h | |||
| @@ -79,6 +79,19 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value) | |||
| 79 | WARN_ON(1); | 79 | WARN_ON(1); |
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | static inline int gpio_export(unsigned gpio, bool direction_may_change) | ||
| 83 | { | ||
| 84 | /* GPIO can never have been requested or set as {in,out}put */ | ||
| 85 | WARN_ON(1); | ||
| 86 | return -EINVAL; | ||
| 87 | } | ||
| 88 | |||
| 89 | static inline void gpio_unexport(unsigned gpio) | ||
| 90 | { | ||
| 91 | /* GPIO can never have been exported */ | ||
| 92 | WARN_ON(1); | ||
| 93 | } | ||
| 94 | |||
| 82 | static inline int gpio_to_irq(unsigned gpio) | 95 | static inline int gpio_to_irq(unsigned gpio) |
| 83 | { | 96 | { |
| 84 | /* GPIO can never have been requested or set as input */ | 97 | /* GPIO can never have been requested or set as input */ |
