179a9becdSAlexandre Courbot #ifndef __LINUX_GPIO_DRIVER_H 279a9becdSAlexandre Courbot #define __LINUX_GPIO_DRIVER_H 379a9becdSAlexandre Courbot 4ff2b1359SLinus Walleij #include <linux/device.h> 579a9becdSAlexandre Courbot #include <linux/types.h> 6c9a9972bSAlexandre Courbot #include <linux/module.h> 714250520SLinus Walleij #include <linux/irq.h> 814250520SLinus Walleij #include <linux/irqchip/chained_irq.h> 914250520SLinus Walleij #include <linux/irqdomain.h> 10a0a8bcf4SGrygorii Strashko #include <linux/lockdep.h> 11964cb341SLinus Walleij #include <linux/pinctrl/pinctrl.h> 120f4630f3SLinus Walleij #include <linux/kconfig.h> 1379a9becdSAlexandre Courbot 1479a9becdSAlexandre Courbot struct gpio_desc; 15c9a9972bSAlexandre Courbot struct of_phandle_args; 16c9a9972bSAlexandre Courbot struct device_node; 17f3ed0b66SStephen Rothwell struct seq_file; 18ff2b1359SLinus Walleij struct gpio_device; 1979a9becdSAlexandre Courbot 20bb1e88ccSAlexandre Courbot #ifdef CONFIG_GPIOLIB 21bb1e88ccSAlexandre Courbot 2279a9becdSAlexandre Courbot /** 2379a9becdSAlexandre Courbot * struct gpio_chip - abstract a GPIO controller 2479a9becdSAlexandre Courbot * @label: for diagnostics 25ff2b1359SLinus Walleij * @gpiodev: the internal state holder, opaque struct 2658383c78SLinus Walleij * @parent: optional parent device providing the GPIOs 276a4b6b0aSJohan Hovold * @cdev: class device used by sysfs interface (may be NULL) 2879a9becdSAlexandre Courbot * @owner: helps prevent removal of modules exporting active GPIOs 29b08ea35aSLinus Walleij * @data: per-instance data assigned by the driver 3079a9becdSAlexandre Courbot * @request: optional hook for chip-specific activation, such as 3179a9becdSAlexandre Courbot * enabling module power and clock; may sleep 3279a9becdSAlexandre Courbot * @free: optional hook for chip-specific deactivation, such as 3379a9becdSAlexandre Courbot * disabling module power and clock; may sleep 3479a9becdSAlexandre Courbot * @get_direction: returns direction for signal "offset", 0=out, 1=in, 3579a9becdSAlexandre Courbot * (same as GPIOF_DIR_XXX), or negative error 3679a9becdSAlexandre Courbot * @direction_input: configures signal "offset" as input, or returns error 3779a9becdSAlexandre Courbot * @direction_output: configures signal "offset" as output, or returns error 3860befd2eSVladimir Zapolskiy * @get: returns value for signal "offset", 0=low, 1=high, or negative error 3979a9becdSAlexandre Courbot * @set: assigns output value for signal "offset" 405f424243SRojhalat Ibrahim * @set_multiple: assigns output values for multiple signals defined by "mask" 4179a9becdSAlexandre Courbot * @set_debounce: optional hook for setting debounce time for specified gpio in 4279a9becdSAlexandre Courbot * interrupt triggered gpio chips 4379a9becdSAlexandre Courbot * @to_irq: optional hook supporting non-static gpio_to_irq() mappings; 4479a9becdSAlexandre Courbot * implementation may not sleep 4579a9becdSAlexandre Courbot * @dbg_show: optional routine to show contents in debugfs; default code 4679a9becdSAlexandre Courbot * will be used when this is omitted, but custom code can show extra 4779a9becdSAlexandre Courbot * state (such as pullup/pulldown configuration). 48af6c235dSLinus Walleij * @base: identifies the first GPIO number handled by this chip; 49af6c235dSLinus Walleij * or, if negative during registration, requests dynamic ID allocation. 50af6c235dSLinus Walleij * DEPRECATION: providing anything non-negative and nailing the base 5130bb6fb3SGeert Uytterhoeven * offset of GPIO chips is deprecated. Please pass -1 as base to 52af6c235dSLinus Walleij * let gpiolib select the chip base in all possible cases. We want to 53af6c235dSLinus Walleij * get rid of the static GPIO number space in the long run. 5479a9becdSAlexandre Courbot * @ngpio: the number of GPIOs handled by this controller; the last GPIO 5579a9becdSAlexandre Courbot * handled is (base + ngpio - 1). 5679a9becdSAlexandre Courbot * @desc: array of ngpio descriptors. Private. 5779a9becdSAlexandre Courbot * @names: if set, must be an array of strings to use as alternative 5879a9becdSAlexandre Courbot * names for the GPIOs in this chip. Any entry in the array 5979a9becdSAlexandre Courbot * may be NULL if there is no alias for the GPIO, however the 6079a9becdSAlexandre Courbot * array must be @ngpio entries long. A name can include a single printk 6179a9becdSAlexandre Courbot * format specifier for an unsigned int. It is substituted by the actual 6279a9becdSAlexandre Courbot * number of the gpio. 639fb1f39eSLinus Walleij * @can_sleep: flag must be set iff get()/set() methods sleep, as they 641c8732bbSLinus Walleij * must while accessing GPIO expander chips over I2C or SPI. This 651c8732bbSLinus Walleij * implies that if the chip supports IRQs, these IRQs need to be threaded 661c8732bbSLinus Walleij * as the chip access may sleep when e.g. reading out the IRQ status 671c8732bbSLinus Walleij * registers. 68295494afSOctavian Purdila * @irq_not_threaded: flag must be set if @can_sleep is set but the 69295494afSOctavian Purdila * IRQs don't need to be threaded 700f4630f3SLinus Walleij * @read_reg: reader function for generic GPIO 710f4630f3SLinus Walleij * @write_reg: writer function for generic GPIO 720f4630f3SLinus Walleij * @pin2mask: some generic GPIO controllers work with the big-endian bits 730f4630f3SLinus Walleij * notation, e.g. in a 8-bits register, GPIO7 is the least significant 740f4630f3SLinus Walleij * bit. This callback assigns the right bit mask. 750f4630f3SLinus Walleij * @reg_dat: data (in) register for generic GPIO 760f4630f3SLinus Walleij * @reg_set: output set register (out=high) for generic GPIO 770f4630f3SLinus Walleij * @reg_clk: output clear register (out=low) for generic GPIO 780f4630f3SLinus Walleij * @reg_dir: direction setting register for generic GPIO 790f4630f3SLinus Walleij * @bgpio_bits: number of register bits used for a generic GPIO i.e. 800f4630f3SLinus Walleij * <register width> * 8 810f4630f3SLinus Walleij * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep 820f4630f3SLinus Walleij * shadowed and real data registers writes together. 830f4630f3SLinus Walleij * @bgpio_data: shadowed data register for generic GPIO to clear/set bits 840f4630f3SLinus Walleij * safely. 850f4630f3SLinus Walleij * @bgpio_dir: shadowed direction register for generic GPIO to clear/set 860f4630f3SLinus Walleij * direction safely. 8741d6bb4cSGrygorii Strashko * @irqchip: GPIO IRQ chip impl, provided by GPIO driver 8841d6bb4cSGrygorii Strashko * @irqdomain: Interrupt translation domain; responsible for mapping 8941d6bb4cSGrygorii Strashko * between GPIO hwirq number and linux irq number 9041d6bb4cSGrygorii Strashko * @irq_base: first linux IRQ number assigned to GPIO IRQ chip (deprecated) 9141d6bb4cSGrygorii Strashko * @irq_handler: the irq handler to use (often a predefined irq core function) 9241d6bb4cSGrygorii Strashko * for GPIO IRQs, provided by GPIO driver 9341d6bb4cSGrygorii Strashko * @irq_default_type: default IRQ triggering type applied during GPIO driver 9441d6bb4cSGrygorii Strashko * initialization, provided by GPIO driver 9541d6bb4cSGrygorii Strashko * @irq_parent: GPIO IRQ chip parent/bank linux irq number, 9641d6bb4cSGrygorii Strashko * provided by GPIO driver 9741d6bb4cSGrygorii Strashko * @lock_key: per GPIO IRQ chip lockdep class 9879a9becdSAlexandre Courbot * 9979a9becdSAlexandre Courbot * A gpio_chip can help platforms abstract various sources of GPIOs so 10079a9becdSAlexandre Courbot * they can all be accessed through a common programing interface. 10179a9becdSAlexandre Courbot * Example sources would be SOC controllers, FPGAs, multifunction 10279a9becdSAlexandre Courbot * chips, dedicated GPIO expanders, and so on. 10379a9becdSAlexandre Courbot * 10479a9becdSAlexandre Courbot * Each chip controls a number of signals, identified in method calls 10579a9becdSAlexandre Courbot * by "offset" values in the range 0..(@ngpio - 1). When those signals 10679a9becdSAlexandre Courbot * are referenced through calls like gpio_get_value(gpio), the offset 10779a9becdSAlexandre Courbot * is calculated by subtracting @base from the gpio number. 10879a9becdSAlexandre Courbot */ 10979a9becdSAlexandre Courbot struct gpio_chip { 11079a9becdSAlexandre Courbot const char *label; 111ff2b1359SLinus Walleij struct gpio_device *gpiodev; 11258383c78SLinus Walleij struct device *parent; 1136a4b6b0aSJohan Hovold struct device *cdev; 11479a9becdSAlexandre Courbot struct module *owner; 115b08ea35aSLinus Walleij void *data; 11679a9becdSAlexandre Courbot 11779a9becdSAlexandre Courbot int (*request)(struct gpio_chip *chip, 11879a9becdSAlexandre Courbot unsigned offset); 11979a9becdSAlexandre Courbot void (*free)(struct gpio_chip *chip, 12079a9becdSAlexandre Courbot unsigned offset); 12179a9becdSAlexandre Courbot int (*get_direction)(struct gpio_chip *chip, 12279a9becdSAlexandre Courbot unsigned offset); 12379a9becdSAlexandre Courbot int (*direction_input)(struct gpio_chip *chip, 12479a9becdSAlexandre Courbot unsigned offset); 12579a9becdSAlexandre Courbot int (*direction_output)(struct gpio_chip *chip, 12679a9becdSAlexandre Courbot unsigned offset, int value); 12779a9becdSAlexandre Courbot int (*get)(struct gpio_chip *chip, 12879a9becdSAlexandre Courbot unsigned offset); 12979a9becdSAlexandre Courbot void (*set)(struct gpio_chip *chip, 13079a9becdSAlexandre Courbot unsigned offset, int value); 1315f424243SRojhalat Ibrahim void (*set_multiple)(struct gpio_chip *chip, 1325f424243SRojhalat Ibrahim unsigned long *mask, 1335f424243SRojhalat Ibrahim unsigned long *bits); 13479a9becdSAlexandre Courbot int (*set_debounce)(struct gpio_chip *chip, 13579a9becdSAlexandre Courbot unsigned offset, 13679a9becdSAlexandre Courbot unsigned debounce); 13779a9becdSAlexandre Courbot 13879a9becdSAlexandre Courbot int (*to_irq)(struct gpio_chip *chip, 13979a9becdSAlexandre Courbot unsigned offset); 14079a9becdSAlexandre Courbot 14179a9becdSAlexandre Courbot void (*dbg_show)(struct seq_file *s, 14279a9becdSAlexandre Courbot struct gpio_chip *chip); 14379a9becdSAlexandre Courbot int base; 14479a9becdSAlexandre Courbot u16 ngpio; 14579a9becdSAlexandre Courbot struct gpio_desc *desc; 14679a9becdSAlexandre Courbot const char *const *names; 1479fb1f39eSLinus Walleij bool can_sleep; 148295494afSOctavian Purdila bool irq_not_threaded; 14979a9becdSAlexandre Courbot 1500f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC) 1510f4630f3SLinus Walleij unsigned long (*read_reg)(void __iomem *reg); 1520f4630f3SLinus Walleij void (*write_reg)(void __iomem *reg, unsigned long data); 1530f4630f3SLinus Walleij unsigned long (*pin2mask)(struct gpio_chip *gc, unsigned int pin); 1540f4630f3SLinus Walleij void __iomem *reg_dat; 1550f4630f3SLinus Walleij void __iomem *reg_set; 1560f4630f3SLinus Walleij void __iomem *reg_clr; 1570f4630f3SLinus Walleij void __iomem *reg_dir; 1580f4630f3SLinus Walleij int bgpio_bits; 1590f4630f3SLinus Walleij spinlock_t bgpio_lock; 1600f4630f3SLinus Walleij unsigned long bgpio_data; 1610f4630f3SLinus Walleij unsigned long bgpio_dir; 1620f4630f3SLinus Walleij #endif 1630f4630f3SLinus Walleij 16414250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP 16514250520SLinus Walleij /* 1667d75a871SPaul Bolle * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib 16714250520SLinus Walleij * to handle IRQs for most practical cases. 16814250520SLinus Walleij */ 16914250520SLinus Walleij struct irq_chip *irqchip; 17014250520SLinus Walleij struct irq_domain *irqdomain; 171c3626fdeSLinus Walleij unsigned int irq_base; 17214250520SLinus Walleij irq_flow_handler_t irq_handler; 17314250520SLinus Walleij unsigned int irq_default_type; 17425e4fe92SDmitry Eremin-Solenikov int irq_parent; 175a0a8bcf4SGrygorii Strashko struct lock_class_key *lock_key; 17614250520SLinus Walleij #endif 17714250520SLinus Walleij 17879a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO) 17979a9becdSAlexandre Courbot /* 18079a9becdSAlexandre Courbot * If CONFIG_OF is enabled, then all GPIO controllers described in the 18179a9becdSAlexandre Courbot * device tree automatically may have an OF translation 18279a9becdSAlexandre Courbot */ 18379a9becdSAlexandre Courbot struct device_node *of_node; 18479a9becdSAlexandre Courbot int of_gpio_n_cells; 18579a9becdSAlexandre Courbot int (*of_xlate)(struct gpio_chip *gc, 18679a9becdSAlexandre Courbot const struct of_phandle_args *gpiospec, u32 *flags); 18779a9becdSAlexandre Courbot #endif 18879a9becdSAlexandre Courbot #ifdef CONFIG_PINCTRL 18979a9becdSAlexandre Courbot /* 19079a9becdSAlexandre Courbot * If CONFIG_PINCTRL is enabled, then gpio controllers can optionally 19179a9becdSAlexandre Courbot * describe the actual pin range which they serve in an SoC. This 19279a9becdSAlexandre Courbot * information would be used by pinctrl subsystem to configure 19379a9becdSAlexandre Courbot * corresponding pins for gpio usage. 19479a9becdSAlexandre Courbot */ 19579a9becdSAlexandre Courbot struct list_head pin_ranges; 19679a9becdSAlexandre Courbot #endif 19779a9becdSAlexandre Courbot }; 19879a9becdSAlexandre Courbot 19979a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip, 20079a9becdSAlexandre Courbot unsigned offset); 20179a9becdSAlexandre Courbot 20279a9becdSAlexandre Courbot /* add/remove chips */ 203b08ea35aSLinus Walleij extern int gpiochip_add_data(struct gpio_chip *chip, void *data); 204b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip) 205b08ea35aSLinus Walleij { 206b08ea35aSLinus Walleij return gpiochip_add_data(chip, NULL); 207b08ea35aSLinus Walleij } 208e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip); 20979a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data, 21079a9becdSAlexandre Courbot int (*match)(struct gpio_chip *chip, void *data)); 21179a9becdSAlexandre Courbot 21279a9becdSAlexandre Courbot /* lock/unlock as IRQ */ 213e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset); 214e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset); 21579a9becdSAlexandre Courbot 216b08ea35aSLinus Walleij /* get driver data */ 217b08ea35aSLinus Walleij static inline void *gpiochip_get_data(struct gpio_chip *chip) 218b08ea35aSLinus Walleij { 219b08ea35aSLinus Walleij return chip->data; 220b08ea35aSLinus Walleij } 221b08ea35aSLinus Walleij 222bb1e88ccSAlexandre Courbot struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc); 223bb1e88ccSAlexandre Courbot 2240f4630f3SLinus Walleij struct bgpio_pdata { 2250f4630f3SLinus Walleij const char *label; 2260f4630f3SLinus Walleij int base; 2270f4630f3SLinus Walleij int ngpio; 2280f4630f3SLinus Walleij }; 2290f4630f3SLinus Walleij 230c474e348SArnd Bergmann #if IS_ENABLED(CONFIG_GPIO_GENERIC) 231c474e348SArnd Bergmann 2320f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev, 2330f4630f3SLinus Walleij unsigned long sz, void __iomem *dat, void __iomem *set, 2340f4630f3SLinus Walleij void __iomem *clr, void __iomem *dirout, void __iomem *dirin, 2350f4630f3SLinus Walleij unsigned long flags); 2360f4630f3SLinus Walleij 2370f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN BIT(0) 2380f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET BIT(1) /* reg_set is unreadable */ 2390f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR BIT(2) /* reg_dir is unreadable */ 2400f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER BIT(3) 2410f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET BIT(4) /* reg_set stores output value */ 2420f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT BIT(5) /* only input */ 2430f4630f3SLinus Walleij 2440f4630f3SLinus Walleij #endif 2450f4630f3SLinus Walleij 24614250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP 24714250520SLinus Walleij 24814250520SLinus Walleij void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, 24914250520SLinus Walleij struct irq_chip *irqchip, 25014250520SLinus Walleij int parent_irq, 25114250520SLinus Walleij irq_flow_handler_t parent_handler); 25214250520SLinus Walleij 253a0a8bcf4SGrygorii Strashko int _gpiochip_irqchip_add(struct gpio_chip *gpiochip, 25414250520SLinus Walleij struct irq_chip *irqchip, 25514250520SLinus Walleij unsigned int first_irq, 25614250520SLinus Walleij irq_flow_handler_t handler, 257a0a8bcf4SGrygorii Strashko unsigned int type, 258a0a8bcf4SGrygorii Strashko struct lock_class_key *lock_key); 259a0a8bcf4SGrygorii Strashko 260a0a8bcf4SGrygorii Strashko #ifdef CONFIG_LOCKDEP 261a0a8bcf4SGrygorii Strashko #define gpiochip_irqchip_add(...) \ 262a0a8bcf4SGrygorii Strashko ( \ 263a0a8bcf4SGrygorii Strashko ({ \ 264a0a8bcf4SGrygorii Strashko static struct lock_class_key _key; \ 265a0a8bcf4SGrygorii Strashko _gpiochip_irqchip_add(__VA_ARGS__, &_key); \ 266a0a8bcf4SGrygorii Strashko }) \ 267a0a8bcf4SGrygorii Strashko ) 268a0a8bcf4SGrygorii Strashko #else 269a0a8bcf4SGrygorii Strashko #define gpiochip_irqchip_add(...) \ 270a0a8bcf4SGrygorii Strashko _gpiochip_irqchip_add(__VA_ARGS__, NULL) 271a0a8bcf4SGrygorii Strashko #endif 27214250520SLinus Walleij 2737d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */ 27414250520SLinus Walleij 275c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset); 276c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset); 277c771c2f4SJonas Gorski 278964cb341SLinus Walleij #ifdef CONFIG_PINCTRL 279964cb341SLinus Walleij 280964cb341SLinus Walleij /** 281964cb341SLinus Walleij * struct gpio_pin_range - pin range controlled by a gpio chip 282964cb341SLinus Walleij * @head: list for maintaining set of pin ranges, used internally 283964cb341SLinus Walleij * @pctldev: pinctrl device which handles corresponding pins 284964cb341SLinus Walleij * @range: actual range of pins controlled by a gpio controller 285964cb341SLinus Walleij */ 286964cb341SLinus Walleij 287964cb341SLinus Walleij struct gpio_pin_range { 288964cb341SLinus Walleij struct list_head node; 289964cb341SLinus Walleij struct pinctrl_dev *pctldev; 290964cb341SLinus Walleij struct pinctrl_gpio_range range; 291964cb341SLinus Walleij }; 292964cb341SLinus Walleij 293964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 294964cb341SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 295964cb341SLinus Walleij unsigned int npins); 296964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip, 297964cb341SLinus Walleij struct pinctrl_dev *pctldev, 298964cb341SLinus Walleij unsigned int gpio_offset, const char *pin_group); 299964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip); 300964cb341SLinus Walleij 301964cb341SLinus Walleij #else 302964cb341SLinus Walleij 303964cb341SLinus Walleij static inline int 304964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 305964cb341SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 306964cb341SLinus Walleij unsigned int npins) 307964cb341SLinus Walleij { 308964cb341SLinus Walleij return 0; 309964cb341SLinus Walleij } 310964cb341SLinus Walleij static inline int 311964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip, 312964cb341SLinus Walleij struct pinctrl_dev *pctldev, 313964cb341SLinus Walleij unsigned int gpio_offset, const char *pin_group) 314964cb341SLinus Walleij { 315964cb341SLinus Walleij return 0; 316964cb341SLinus Walleij } 317964cb341SLinus Walleij 318964cb341SLinus Walleij static inline void 319964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip) 320964cb341SLinus Walleij { 321964cb341SLinus Walleij } 322964cb341SLinus Walleij 323964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */ 324964cb341SLinus Walleij 325abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, 326abdc08a3SAlexandre Courbot const char *label); 327f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc); 328f7d4ad98SGuenter Roeck 329bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */ 330bb1e88ccSAlexandre Courbot 331bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) 332bb1e88ccSAlexandre Courbot { 333bb1e88ccSAlexandre Courbot /* GPIO can never have been requested */ 334bb1e88ccSAlexandre Courbot WARN_ON(1); 335bb1e88ccSAlexandre Courbot return ERR_PTR(-ENODEV); 336bb1e88ccSAlexandre Courbot } 337bb1e88ccSAlexandre Courbot 338bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */ 339bb1e88ccSAlexandre Courbot 34079a9becdSAlexandre Courbot #endif 341