Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_GPIO_CONSUMER_H |
| 2 | #define __LINUX_GPIO_CONSUMER_H |
| 3 | |
Arnd Bergmann | cdf86cd2 | 2014-05-08 15:42:25 +0200 | [diff] [blame] | 4 | #include <linux/bug.h> |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 5 | #include <linux/err.h> |
| 6 | #include <linux/kernel.h> |
| 7 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 8 | struct device; |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 9 | |
| 10 | /** |
| 11 | * Opaque descriptor for a GPIO. These are obtained using gpiod_get() and are |
| 12 | * preferable to the old integer-based handles. |
| 13 | * |
| 14 | * Contrary to integers, a pointer to a gpio_desc is guaranteed to be valid |
| 15 | * until the GPIO is released. |
| 16 | */ |
| 17 | struct gpio_desc; |
| 18 | |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 19 | #define GPIOD_FLAGS_BIT_DIR_SET BIT(0) |
| 20 | #define GPIOD_FLAGS_BIT_DIR_OUT BIT(1) |
| 21 | #define GPIOD_FLAGS_BIT_DIR_VAL BIT(2) |
| 22 | |
| 23 | /** |
| 24 | * Optional flags that can be passed to one of gpiod_* to configure direction |
| 25 | * and output value. These values cannot be OR'd. |
| 26 | */ |
| 27 | enum gpiod_flags { |
| 28 | GPIOD_ASIS = 0, |
| 29 | GPIOD_IN = GPIOD_FLAGS_BIT_DIR_SET, |
| 30 | GPIOD_OUT_LOW = GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT, |
| 31 | GPIOD_OUT_HIGH = GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT | |
| 32 | GPIOD_FLAGS_BIT_DIR_VAL, |
| 33 | }; |
| 34 | |
Linus Walleij | 58b84f6 | 2014-08-19 12:00:53 -0500 | [diff] [blame] | 35 | #ifdef CONFIG_GPIOLIB |
| 36 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 37 | /* Acquire and dispose GPIOs */ |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 38 | struct gpio_desc *__must_check __gpiod_get(struct device *dev, |
| 39 | const char *con_id, |
| 40 | enum gpiod_flags flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 41 | struct gpio_desc *__must_check __gpiod_get_index(struct device *dev, |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 42 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 43 | unsigned int idx, |
| 44 | enum gpiod_flags flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 45 | struct gpio_desc *__must_check __gpiod_get_optional(struct device *dev, |
| 46 | const char *con_id, |
| 47 | enum gpiod_flags flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 48 | struct gpio_desc *__must_check __gpiod_get_index_optional(struct device *dev, |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 49 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 50 | unsigned int index, |
| 51 | enum gpiod_flags flags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 52 | void gpiod_put(struct gpio_desc *desc); |
| 53 | |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 54 | struct gpio_desc *__must_check __devm_gpiod_get(struct device *dev, |
| 55 | const char *con_id, |
| 56 | enum gpiod_flags flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 57 | struct gpio_desc *__must_check __devm_gpiod_get_index(struct device *dev, |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 58 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 59 | unsigned int idx, |
| 60 | enum gpiod_flags flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 61 | struct gpio_desc *__must_check __devm_gpiod_get_optional(struct device *dev, |
| 62 | const char *con_id, |
| 63 | enum gpiod_flags flags); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 64 | struct gpio_desc *__must_check |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 65 | __devm_gpiod_get_index_optional(struct device *dev, const char *con_id, |
| 66 | unsigned int index, enum gpiod_flags flags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 67 | void devm_gpiod_put(struct device *dev, struct gpio_desc *desc); |
| 68 | |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 69 | int gpiod_get_direction(struct gpio_desc *desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 70 | int gpiod_direction_input(struct gpio_desc *desc); |
| 71 | int gpiod_direction_output(struct gpio_desc *desc, int value); |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 72 | int gpiod_direction_output_raw(struct gpio_desc *desc, int value); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 73 | |
| 74 | /* Value get/set from non-sleeping context */ |
| 75 | int gpiod_get_value(const struct gpio_desc *desc); |
| 76 | void gpiod_set_value(struct gpio_desc *desc, int value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 77 | void gpiod_set_array(unsigned int array_size, |
| 78 | struct gpio_desc **desc_array, int *value_array); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 79 | int gpiod_get_raw_value(const struct gpio_desc *desc); |
| 80 | void gpiod_set_raw_value(struct gpio_desc *desc, int value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 81 | void gpiod_set_raw_array(unsigned int array_size, |
| 82 | struct gpio_desc **desc_array, int *value_array); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 83 | |
| 84 | /* Value get/set from sleeping context */ |
| 85 | int gpiod_get_value_cansleep(const struct gpio_desc *desc); |
| 86 | void gpiod_set_value_cansleep(struct gpio_desc *desc, int value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 87 | void gpiod_set_array_cansleep(unsigned int array_size, |
| 88 | struct gpio_desc **desc_array, |
| 89 | int *value_array); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 90 | int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc); |
| 91 | void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 92 | void gpiod_set_raw_array_cansleep(unsigned int array_size, |
| 93 | struct gpio_desc **desc_array, |
| 94 | int *value_array); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 95 | |
| 96 | int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce); |
| 97 | |
| 98 | int gpiod_is_active_low(const struct gpio_desc *desc); |
| 99 | int gpiod_cansleep(const struct gpio_desc *desc); |
| 100 | |
| 101 | int gpiod_to_irq(const struct gpio_desc *desc); |
| 102 | |
| 103 | /* Convert between the old gpio_ and new gpiod_ interfaces */ |
| 104 | struct gpio_desc *gpio_to_desc(unsigned gpio); |
| 105 | int desc_to_gpio(const struct gpio_desc *desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 106 | |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 107 | /* Child properties interface */ |
| 108 | struct fwnode_handle; |
| 109 | |
| 110 | struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode, |
| 111 | const char *propname); |
| 112 | struct gpio_desc *devm_get_gpiod_from_child(struct device *dev, |
| 113 | struct fwnode_handle *child); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 114 | #else /* CONFIG_GPIOLIB */ |
| 115 | |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 116 | static inline struct gpio_desc *__must_check __gpiod_get(struct device *dev, |
| 117 | const char *con_id, |
| 118 | enum gpiod_flags flags) |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 119 | { |
| 120 | return ERR_PTR(-ENOSYS); |
| 121 | } |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 122 | static inline struct gpio_desc *__must_check |
| 123 | __gpiod_get_index(struct device *dev, |
| 124 | const char *con_id, |
| 125 | unsigned int idx, |
| 126 | enum gpiod_flags flags) |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 127 | { |
| 128 | return ERR_PTR(-ENOSYS); |
| 129 | } |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 130 | |
| 131 | static inline struct gpio_desc *__must_check |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 132 | __gpiod_get_optional(struct device *dev, const char *con_id, |
| 133 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 134 | { |
| 135 | return ERR_PTR(-ENOSYS); |
| 136 | } |
| 137 | |
| 138 | static inline struct gpio_desc *__must_check |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 139 | __gpiod_get_index_optional(struct device *dev, const char *con_id, |
| 140 | unsigned int index, enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 141 | { |
| 142 | return ERR_PTR(-ENOSYS); |
| 143 | } |
| 144 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 145 | static inline void gpiod_put(struct gpio_desc *desc) |
| 146 | { |
| 147 | might_sleep(); |
| 148 | |
| 149 | /* GPIO can never have been requested */ |
| 150 | WARN_ON(1); |
| 151 | } |
| 152 | |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 153 | static inline struct gpio_desc *__must_check |
| 154 | __devm_gpiod_get(struct device *dev, |
| 155 | const char *con_id, |
| 156 | enum gpiod_flags flags) |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 157 | { |
| 158 | return ERR_PTR(-ENOSYS); |
| 159 | } |
| 160 | static inline |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 161 | struct gpio_desc *__must_check |
| 162 | __devm_gpiod_get_index(struct device *dev, |
| 163 | const char *con_id, |
| 164 | unsigned int idx, |
| 165 | enum gpiod_flags flags) |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 166 | { |
| 167 | return ERR_PTR(-ENOSYS); |
| 168 | } |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 169 | |
| 170 | static inline struct gpio_desc *__must_check |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 171 | __devm_gpiod_get_optional(struct device *dev, const char *con_id, |
| 172 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 173 | { |
| 174 | return ERR_PTR(-ENOSYS); |
| 175 | } |
| 176 | |
| 177 | static inline struct gpio_desc *__must_check |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 178 | __devm_gpiod_get_index_optional(struct device *dev, const char *con_id, |
| 179 | unsigned int index, enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 180 | { |
| 181 | return ERR_PTR(-ENOSYS); |
| 182 | } |
| 183 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 184 | static inline void devm_gpiod_put(struct device *dev, struct gpio_desc *desc) |
| 185 | { |
| 186 | might_sleep(); |
| 187 | |
| 188 | /* GPIO can never have been requested */ |
| 189 | WARN_ON(1); |
| 190 | } |
| 191 | |
| 192 | |
| 193 | static inline int gpiod_get_direction(const struct gpio_desc *desc) |
| 194 | { |
| 195 | /* GPIO can never have been requested */ |
| 196 | WARN_ON(1); |
| 197 | return -ENOSYS; |
| 198 | } |
| 199 | static inline int gpiod_direction_input(struct gpio_desc *desc) |
| 200 | { |
| 201 | /* GPIO can never have been requested */ |
| 202 | WARN_ON(1); |
| 203 | return -ENOSYS; |
| 204 | } |
| 205 | static inline int gpiod_direction_output(struct gpio_desc *desc, int value) |
| 206 | { |
| 207 | /* GPIO can never have been requested */ |
| 208 | WARN_ON(1); |
| 209 | return -ENOSYS; |
| 210 | } |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 211 | static inline int gpiod_direction_output_raw(struct gpio_desc *desc, int value) |
| 212 | { |
| 213 | /* GPIO can never have been requested */ |
| 214 | WARN_ON(1); |
| 215 | return -ENOSYS; |
| 216 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 217 | |
| 218 | |
| 219 | static inline int gpiod_get_value(const struct gpio_desc *desc) |
| 220 | { |
| 221 | /* GPIO can never have been requested */ |
| 222 | WARN_ON(1); |
| 223 | return 0; |
| 224 | } |
| 225 | static inline void gpiod_set_value(struct gpio_desc *desc, int value) |
| 226 | { |
| 227 | /* GPIO can never have been requested */ |
| 228 | WARN_ON(1); |
| 229 | } |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 230 | static inline void gpiod_set_array(unsigned int array_size, |
| 231 | struct gpio_desc **desc_array, |
| 232 | int *value_array) |
| 233 | { |
| 234 | /* GPIO can never have been requested */ |
| 235 | WARN_ON(1); |
| 236 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 237 | static inline int gpiod_get_raw_value(const struct gpio_desc *desc) |
| 238 | { |
| 239 | /* GPIO can never have been requested */ |
| 240 | WARN_ON(1); |
| 241 | return 0; |
| 242 | } |
| 243 | static inline void gpiod_set_raw_value(struct gpio_desc *desc, int value) |
| 244 | { |
| 245 | /* GPIO can never have been requested */ |
| 246 | WARN_ON(1); |
| 247 | } |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 248 | static inline void gpiod_set_raw_array(unsigned int array_size, |
| 249 | struct gpio_desc **desc_array, |
| 250 | int *value_array) |
| 251 | { |
| 252 | /* GPIO can never have been requested */ |
| 253 | WARN_ON(1); |
| 254 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 255 | |
| 256 | static inline int gpiod_get_value_cansleep(const struct gpio_desc *desc) |
| 257 | { |
| 258 | /* GPIO can never have been requested */ |
| 259 | WARN_ON(1); |
| 260 | return 0; |
| 261 | } |
| 262 | static inline void gpiod_set_value_cansleep(struct gpio_desc *desc, int value) |
| 263 | { |
| 264 | /* GPIO can never have been requested */ |
| 265 | WARN_ON(1); |
| 266 | } |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 267 | static inline void gpiod_set_array_cansleep(unsigned int array_size, |
| 268 | struct gpio_desc **desc_array, |
| 269 | int *value_array) |
| 270 | { |
| 271 | /* GPIO can never have been requested */ |
| 272 | WARN_ON(1); |
| 273 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 274 | static inline int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc) |
| 275 | { |
| 276 | /* GPIO can never have been requested */ |
| 277 | WARN_ON(1); |
| 278 | return 0; |
| 279 | } |
| 280 | static inline void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, |
| 281 | int value) |
| 282 | { |
| 283 | /* GPIO can never have been requested */ |
| 284 | WARN_ON(1); |
| 285 | } |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 286 | static inline void gpiod_set_raw_array_cansleep(unsigned int array_size, |
| 287 | struct gpio_desc **desc_array, |
| 288 | int *value_array) |
| 289 | { |
| 290 | /* GPIO can never have been requested */ |
| 291 | WARN_ON(1); |
| 292 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 293 | |
| 294 | static inline int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce) |
| 295 | { |
| 296 | /* GPIO can never have been requested */ |
| 297 | WARN_ON(1); |
| 298 | return -ENOSYS; |
| 299 | } |
| 300 | |
| 301 | static inline int gpiod_is_active_low(const struct gpio_desc *desc) |
| 302 | { |
| 303 | /* GPIO can never have been requested */ |
| 304 | WARN_ON(1); |
| 305 | return 0; |
| 306 | } |
| 307 | static inline int gpiod_cansleep(const struct gpio_desc *desc) |
| 308 | { |
| 309 | /* GPIO can never have been requested */ |
| 310 | WARN_ON(1); |
| 311 | return 0; |
| 312 | } |
| 313 | |
| 314 | static inline int gpiod_to_irq(const struct gpio_desc *desc) |
| 315 | { |
| 316 | /* GPIO can never have been requested */ |
| 317 | WARN_ON(1); |
| 318 | return -EINVAL; |
| 319 | } |
| 320 | |
| 321 | static inline struct gpio_desc *gpio_to_desc(unsigned gpio) |
| 322 | { |
| 323 | return ERR_PTR(-EINVAL); |
| 324 | } |
| 325 | static inline int desc_to_gpio(const struct gpio_desc *desc) |
| 326 | { |
| 327 | /* GPIO can never have been requested */ |
| 328 | WARN_ON(1); |
| 329 | return -EINVAL; |
| 330 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 331 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 332 | #endif /* CONFIG_GPIOLIB */ |
| 333 | |
Linus Walleij | 0dbc8b7 | 2014-09-01 15:15:40 +0200 | [diff] [blame] | 334 | /* |
| 335 | * Vararg-hacks! This is done to transition the kernel to always pass |
| 336 | * the options flags argument to the below functions. During a transition |
| 337 | * phase these vararg macros make both old-and-newstyle code compile, |
| 338 | * but when all calls to the elder API are removed, these should go away |
| 339 | * and the __gpiod_get() etc functions above be renamed just gpiod_get() |
| 340 | * etc. |
| 341 | */ |
| 342 | #define __gpiod_get(dev, con_id, flags, ...) __gpiod_get(dev, con_id, flags) |
| 343 | #define gpiod_get(varargs...) __gpiod_get(varargs, 0) |
| 344 | #define __gpiod_get_index(dev, con_id, index, flags, ...) \ |
| 345 | __gpiod_get_index(dev, con_id, index, flags) |
| 346 | #define gpiod_get_index(varargs...) __gpiod_get_index(varargs, 0) |
| 347 | #define __gpiod_get_optional(dev, con_id, flags, ...) \ |
| 348 | __gpiod_get_optional(dev, con_id, flags) |
| 349 | #define gpiod_get_optional(varargs...) __gpiod_get_optional(varargs, 0) |
| 350 | #define __gpiod_get_index_optional(dev, con_id, index, flags, ...) \ |
| 351 | __gpiod_get_index_optional(dev, con_id, index, flags) |
| 352 | #define gpiod_get_index_optional(varargs...) \ |
| 353 | __gpiod_get_index_optional(varargs, 0) |
| 354 | #define __devm_gpiod_get(dev, con_id, flags, ...) \ |
| 355 | __devm_gpiod_get(dev, con_id, flags) |
| 356 | #define devm_gpiod_get(varargs...) __devm_gpiod_get(varargs, 0) |
| 357 | #define __devm_gpiod_get_index(dev, con_id, index, flags, ...) \ |
| 358 | __devm_gpiod_get_index(dev, con_id, index, flags) |
| 359 | #define devm_gpiod_get_index(varargs...) __devm_gpiod_get_index(varargs, 0) |
| 360 | #define __devm_gpiod_get_optional(dev, con_id, flags, ...) \ |
| 361 | __devm_gpiod_get_optional(dev, con_id, flags) |
| 362 | #define devm_gpiod_get_optional(varargs...) \ |
| 363 | __devm_gpiod_get_optional(varargs, 0) |
| 364 | #define __devm_gpiod_get_index_optional(dev, con_id, index, flags, ...) \ |
| 365 | __devm_gpiod_get_index_optional(dev, con_id, index, flags) |
| 366 | #define devm_gpiod_get_index_optional(varargs...) \ |
| 367 | __devm_gpiod_get_index_optional(varargs, 0) |
| 368 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 369 | #if IS_ENABLED(CONFIG_GPIOLIB) && IS_ENABLED(CONFIG_GPIO_SYSFS) |
| 370 | |
| 371 | int gpiod_export(struct gpio_desc *desc, bool direction_may_change); |
| 372 | int gpiod_export_link(struct device *dev, const char *name, |
| 373 | struct gpio_desc *desc); |
| 374 | int gpiod_sysfs_set_active_low(struct gpio_desc *desc, int value); |
| 375 | void gpiod_unexport(struct gpio_desc *desc); |
| 376 | |
| 377 | #else /* CONFIG_GPIOLIB && CONFIG_GPIO_SYSFS */ |
| 378 | |
| 379 | static inline int gpiod_export(struct gpio_desc *desc, |
| 380 | bool direction_may_change) |
| 381 | { |
| 382 | return -ENOSYS; |
| 383 | } |
| 384 | |
| 385 | static inline int gpiod_export_link(struct device *dev, const char *name, |
| 386 | struct gpio_desc *desc) |
| 387 | { |
| 388 | return -ENOSYS; |
| 389 | } |
| 390 | |
| 391 | static inline int gpiod_sysfs_set_active_low(struct gpio_desc *desc, int value) |
| 392 | { |
| 393 | return -ENOSYS; |
| 394 | } |
| 395 | |
| 396 | static inline void gpiod_unexport(struct gpio_desc *desc) |
| 397 | { |
| 398 | } |
| 399 | |
| 400 | #endif /* CONFIG_GPIOLIB && CONFIG_GPIO_SYSFS */ |
| 401 | |
| 402 | #endif |