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> 614250520SLinus Walleij #include <linux/irq.h> 714250520SLinus Walleij #include <linux/irqchip/chained_irq.h> 814250520SLinus Walleij #include <linux/irqdomain.h> 9a0a8bcf4SGrygorii Strashko #include <linux/lockdep.h> 10964cb341SLinus Walleij #include <linux/pinctrl/pinctrl.h> 112956b5d9SMika Westerberg #include <linux/pinctrl/pinconf-generic.h> 1279a9becdSAlexandre Courbot 1379a9becdSAlexandre Courbot struct gpio_desc; 14c9a9972bSAlexandre Courbot struct of_phandle_args; 15c9a9972bSAlexandre Courbot struct device_node; 16f3ed0b66SStephen Rothwell struct seq_file; 17ff2b1359SLinus Walleij struct gpio_device; 18d47529b2SPaul Gortmaker struct module; 1979a9becdSAlexandre Courbot 20bb1e88ccSAlexandre Courbot #ifdef CONFIG_GPIOLIB 21bb1e88ccSAlexandre Courbot 22c44eafd7SThierry Reding #ifdef CONFIG_GPIOLIB_IRQCHIP 23c44eafd7SThierry Reding /** 24c44eafd7SThierry Reding * struct gpio_irq_chip - GPIO interrupt controller 25c44eafd7SThierry Reding */ 26c44eafd7SThierry Reding struct gpio_irq_chip { 27c44eafd7SThierry Reding /** 28c44eafd7SThierry Reding * @domain_ops: 29c44eafd7SThierry Reding * 30c44eafd7SThierry Reding * Table of interrupt domain operations for this IRQ chip. 31c44eafd7SThierry Reding */ 32c44eafd7SThierry Reding const struct irq_domain_ops *domain_ops; 33c44eafd7SThierry Reding 34c44eafd7SThierry Reding /** 35c44eafd7SThierry Reding * @parent_handler: 36c44eafd7SThierry Reding * 37c44eafd7SThierry Reding * The interrupt handler for the GPIO chip's parent interrupts, may be 38c44eafd7SThierry Reding * NULL if the parent interrupts are nested rather than cascaded. 39c44eafd7SThierry Reding */ 40c44eafd7SThierry Reding irq_flow_handler_t parent_handler; 41c44eafd7SThierry Reding 42c44eafd7SThierry Reding /** 43c44eafd7SThierry Reding * @parent_handler_data: 44c44eafd7SThierry Reding * 45c44eafd7SThierry Reding * Data associated, and passed to, the handler for the parent 46c44eafd7SThierry Reding * interrupt. 47c44eafd7SThierry Reding */ 48c44eafd7SThierry Reding void *parent_handler_data; 49c44eafd7SThierry Reding }; 50c44eafd7SThierry Reding #endif 51c44eafd7SThierry Reding 5279a9becdSAlexandre Courbot /** 5379a9becdSAlexandre Courbot * struct gpio_chip - abstract a GPIO controller 54df4878e9SLinus Walleij * @label: a functional name for the GPIO device, such as a part 55df4878e9SLinus Walleij * number or the name of the SoC IP-block implementing it. 56ff2b1359SLinus Walleij * @gpiodev: the internal state holder, opaque struct 5758383c78SLinus Walleij * @parent: optional parent device providing the GPIOs 5879a9becdSAlexandre Courbot * @owner: helps prevent removal of modules exporting active GPIOs 5979a9becdSAlexandre Courbot * @request: optional hook for chip-specific activation, such as 6079a9becdSAlexandre Courbot * enabling module power and clock; may sleep 6179a9becdSAlexandre Courbot * @free: optional hook for chip-specific deactivation, such as 6279a9becdSAlexandre Courbot * disabling module power and clock; may sleep 6379a9becdSAlexandre Courbot * @get_direction: returns direction for signal "offset", 0=out, 1=in, 6479a9becdSAlexandre Courbot * (same as GPIOF_DIR_XXX), or negative error 6579a9becdSAlexandre Courbot * @direction_input: configures signal "offset" as input, or returns error 6679a9becdSAlexandre Courbot * @direction_output: configures signal "offset" as output, or returns error 6760befd2eSVladimir Zapolskiy * @get: returns value for signal "offset", 0=low, 1=high, or negative error 68eec1d566SLukas Wunner * @get_multiple: reads values for multiple signals defined by "mask" and 69eec1d566SLukas Wunner * stores them in "bits", returns 0 on success or negative error 7079a9becdSAlexandre Courbot * @set: assigns output value for signal "offset" 715f424243SRojhalat Ibrahim * @set_multiple: assigns output values for multiple signals defined by "mask" 722956b5d9SMika Westerberg * @set_config: optional hook for all kinds of settings. Uses the same 732956b5d9SMika Westerberg * packed config format as generic pinconf. 7479a9becdSAlexandre Courbot * @to_irq: optional hook supporting non-static gpio_to_irq() mappings; 7579a9becdSAlexandre Courbot * implementation may not sleep 7679a9becdSAlexandre Courbot * @dbg_show: optional routine to show contents in debugfs; default code 7779a9becdSAlexandre Courbot * will be used when this is omitted, but custom code can show extra 7879a9becdSAlexandre Courbot * state (such as pullup/pulldown configuration). 79af6c235dSLinus Walleij * @base: identifies the first GPIO number handled by this chip; 80af6c235dSLinus Walleij * or, if negative during registration, requests dynamic ID allocation. 81af6c235dSLinus Walleij * DEPRECATION: providing anything non-negative and nailing the base 8230bb6fb3SGeert Uytterhoeven * offset of GPIO chips is deprecated. Please pass -1 as base to 83af6c235dSLinus Walleij * let gpiolib select the chip base in all possible cases. We want to 84af6c235dSLinus Walleij * get rid of the static GPIO number space in the long run. 8579a9becdSAlexandre Courbot * @ngpio: the number of GPIOs handled by this controller; the last GPIO 8679a9becdSAlexandre Courbot * handled is (base + ngpio - 1). 8779a9becdSAlexandre Courbot * @names: if set, must be an array of strings to use as alternative 8879a9becdSAlexandre Courbot * names for the GPIOs in this chip. Any entry in the array 8979a9becdSAlexandre Courbot * may be NULL if there is no alias for the GPIO, however the 9079a9becdSAlexandre Courbot * array must be @ngpio entries long. A name can include a single printk 9179a9becdSAlexandre Courbot * format specifier for an unsigned int. It is substituted by the actual 9279a9becdSAlexandre Courbot * number of the gpio. 939fb1f39eSLinus Walleij * @can_sleep: flag must be set iff get()/set() methods sleep, as they 941c8732bbSLinus Walleij * must while accessing GPIO expander chips over I2C or SPI. This 951c8732bbSLinus Walleij * implies that if the chip supports IRQs, these IRQs need to be threaded 961c8732bbSLinus Walleij * as the chip access may sleep when e.g. reading out the IRQ status 971c8732bbSLinus Walleij * registers. 980f4630f3SLinus Walleij * @read_reg: reader function for generic GPIO 990f4630f3SLinus Walleij * @write_reg: writer function for generic GPIO 10024efd94bSLinus Walleij * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing 10124efd94bSLinus Walleij * line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the 10224efd94bSLinus Walleij * generic GPIO core. It is for internal housekeeping only. 1030f4630f3SLinus Walleij * @reg_dat: data (in) register for generic GPIO 1040f4630f3SLinus Walleij * @reg_set: output set register (out=high) for generic GPIO 10508bcd3edSAnthony Best * @reg_clr: output clear register (out=low) for generic GPIO 1060f4630f3SLinus Walleij * @reg_dir: direction setting register for generic GPIO 1070f4630f3SLinus Walleij * @bgpio_bits: number of register bits used for a generic GPIO i.e. 1080f4630f3SLinus Walleij * <register width> * 8 1090f4630f3SLinus Walleij * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep 1100f4630f3SLinus Walleij * shadowed and real data registers writes together. 1110f4630f3SLinus Walleij * @bgpio_data: shadowed data register for generic GPIO to clear/set bits 1120f4630f3SLinus Walleij * safely. 1130f4630f3SLinus Walleij * @bgpio_dir: shadowed direction register for generic GPIO to clear/set 1140f4630f3SLinus Walleij * direction safely. 11541d6bb4cSGrygorii Strashko * @irqchip: GPIO IRQ chip impl, provided by GPIO driver 11641d6bb4cSGrygorii Strashko * @irqdomain: Interrupt translation domain; responsible for mapping 11741d6bb4cSGrygorii Strashko * between GPIO hwirq number and linux irq number 11841d6bb4cSGrygorii Strashko * @irq_handler: the irq handler to use (often a predefined irq core function) 11941d6bb4cSGrygorii Strashko * for GPIO IRQs, provided by GPIO driver 12041d6bb4cSGrygorii Strashko * @irq_default_type: default IRQ triggering type applied during GPIO driver 12141d6bb4cSGrygorii Strashko * initialization, provided by GPIO driver 122d245b3f9SLinus Walleij * @irq_chained_parent: GPIO IRQ chip parent/bank linux irq number, 123d245b3f9SLinus Walleij * provided by GPIO driver for chained interrupt (not for nested 124d245b3f9SLinus Walleij * interrupts). 125d245b3f9SLinus Walleij * @irq_nested: True if set the interrupt handling is nested. 12679b804cbSMika Westerberg * @irq_need_valid_mask: If set core allocates @irq_valid_mask with all 12779b804cbSMika Westerberg * bits set to one 12879b804cbSMika Westerberg * @irq_valid_mask: If not %NULL holds bitmask of GPIOs which are valid to 12979b804cbSMika Westerberg * be included in IRQ domain of the chip 13041d6bb4cSGrygorii Strashko * @lock_key: per GPIO IRQ chip lockdep class 13179a9becdSAlexandre Courbot * 13279a9becdSAlexandre Courbot * A gpio_chip can help platforms abstract various sources of GPIOs so 13379a9becdSAlexandre Courbot * they can all be accessed through a common programing interface. 13479a9becdSAlexandre Courbot * Example sources would be SOC controllers, FPGAs, multifunction 13579a9becdSAlexandre Courbot * chips, dedicated GPIO expanders, and so on. 13679a9becdSAlexandre Courbot * 13779a9becdSAlexandre Courbot * Each chip controls a number of signals, identified in method calls 13879a9becdSAlexandre Courbot * by "offset" values in the range 0..(@ngpio - 1). When those signals 13979a9becdSAlexandre Courbot * are referenced through calls like gpio_get_value(gpio), the offset 14079a9becdSAlexandre Courbot * is calculated by subtracting @base from the gpio number. 14179a9becdSAlexandre Courbot */ 14279a9becdSAlexandre Courbot struct gpio_chip { 14379a9becdSAlexandre Courbot const char *label; 144ff2b1359SLinus Walleij struct gpio_device *gpiodev; 14558383c78SLinus Walleij struct device *parent; 14679a9becdSAlexandre Courbot struct module *owner; 14779a9becdSAlexandre Courbot 14879a9becdSAlexandre Courbot int (*request)(struct gpio_chip *chip, 14979a9becdSAlexandre Courbot unsigned offset); 15079a9becdSAlexandre Courbot void (*free)(struct gpio_chip *chip, 15179a9becdSAlexandre Courbot unsigned offset); 15279a9becdSAlexandre Courbot int (*get_direction)(struct gpio_chip *chip, 15379a9becdSAlexandre Courbot unsigned offset); 15479a9becdSAlexandre Courbot int (*direction_input)(struct gpio_chip *chip, 15579a9becdSAlexandre Courbot unsigned offset); 15679a9becdSAlexandre Courbot int (*direction_output)(struct gpio_chip *chip, 15779a9becdSAlexandre Courbot unsigned offset, int value); 15879a9becdSAlexandre Courbot int (*get)(struct gpio_chip *chip, 15979a9becdSAlexandre Courbot unsigned offset); 160eec1d566SLukas Wunner int (*get_multiple)(struct gpio_chip *chip, 161eec1d566SLukas Wunner unsigned long *mask, 162eec1d566SLukas Wunner unsigned long *bits); 16379a9becdSAlexandre Courbot void (*set)(struct gpio_chip *chip, 16479a9becdSAlexandre Courbot unsigned offset, int value); 1655f424243SRojhalat Ibrahim void (*set_multiple)(struct gpio_chip *chip, 1665f424243SRojhalat Ibrahim unsigned long *mask, 1675f424243SRojhalat Ibrahim unsigned long *bits); 1682956b5d9SMika Westerberg int (*set_config)(struct gpio_chip *chip, 16979a9becdSAlexandre Courbot unsigned offset, 1702956b5d9SMika Westerberg unsigned long config); 17179a9becdSAlexandre Courbot int (*to_irq)(struct gpio_chip *chip, 17279a9becdSAlexandre Courbot unsigned offset); 17379a9becdSAlexandre Courbot 17479a9becdSAlexandre Courbot void (*dbg_show)(struct seq_file *s, 17579a9becdSAlexandre Courbot struct gpio_chip *chip); 17679a9becdSAlexandre Courbot int base; 17779a9becdSAlexandre Courbot u16 ngpio; 17879a9becdSAlexandre Courbot const char *const *names; 1799fb1f39eSLinus Walleij bool can_sleep; 18079a9becdSAlexandre Courbot 1810f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC) 1820f4630f3SLinus Walleij unsigned long (*read_reg)(void __iomem *reg); 1830f4630f3SLinus Walleij void (*write_reg)(void __iomem *reg, unsigned long data); 18424efd94bSLinus Walleij bool be_bits; 1850f4630f3SLinus Walleij void __iomem *reg_dat; 1860f4630f3SLinus Walleij void __iomem *reg_set; 1870f4630f3SLinus Walleij void __iomem *reg_clr; 1880f4630f3SLinus Walleij void __iomem *reg_dir; 1890f4630f3SLinus Walleij int bgpio_bits; 1900f4630f3SLinus Walleij spinlock_t bgpio_lock; 1910f4630f3SLinus Walleij unsigned long bgpio_data; 1920f4630f3SLinus Walleij unsigned long bgpio_dir; 1930f4630f3SLinus Walleij #endif 1940f4630f3SLinus Walleij 19514250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP 19614250520SLinus Walleij /* 1977d75a871SPaul Bolle * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib 19814250520SLinus Walleij * to handle IRQs for most practical cases. 19914250520SLinus Walleij */ 20014250520SLinus Walleij struct irq_chip *irqchip; 20114250520SLinus Walleij struct irq_domain *irqdomain; 20214250520SLinus Walleij irq_flow_handler_t irq_handler; 20314250520SLinus Walleij unsigned int irq_default_type; 2046f79309aSThierry Reding unsigned int irq_chained_parent; 205d245b3f9SLinus Walleij bool irq_nested; 20679b804cbSMika Westerberg bool irq_need_valid_mask; 20779b804cbSMika Westerberg unsigned long *irq_valid_mask; 208a0a8bcf4SGrygorii Strashko struct lock_class_key *lock_key; 209c44eafd7SThierry Reding 210c44eafd7SThierry Reding /** 211c44eafd7SThierry Reding * @irq: 212c44eafd7SThierry Reding * 213c44eafd7SThierry Reding * Integrates interrupt chip functionality with the GPIO chip. Can be 214c44eafd7SThierry Reding * used to handle IRQs for most practical cases. 215c44eafd7SThierry Reding */ 216c44eafd7SThierry Reding struct gpio_irq_chip irq; 21714250520SLinus Walleij #endif 21814250520SLinus Walleij 21979a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO) 22079a9becdSAlexandre Courbot /* 22179a9becdSAlexandre Courbot * If CONFIG_OF is enabled, then all GPIO controllers described in the 22279a9becdSAlexandre Courbot * device tree automatically may have an OF translation 22379a9becdSAlexandre Courbot */ 22467049c50SThierry Reding 22567049c50SThierry Reding /** 22667049c50SThierry Reding * @of_node: 22767049c50SThierry Reding * 22867049c50SThierry Reding * Pointer to a device tree node representing this GPIO controller. 22967049c50SThierry Reding */ 23079a9becdSAlexandre Courbot struct device_node *of_node; 23167049c50SThierry Reding 23267049c50SThierry Reding /** 23367049c50SThierry Reding * @of_gpio_n_cells: 23467049c50SThierry Reding * 23567049c50SThierry Reding * Number of cells used to form the GPIO specifier. 23667049c50SThierry Reding */ 237e3b445d7SThierry Reding unsigned int of_gpio_n_cells; 23867049c50SThierry Reding 23967049c50SThierry Reding /** 24067049c50SThierry Reding * @of_xlate: 24167049c50SThierry Reding * 24267049c50SThierry Reding * Callback to translate a device tree GPIO specifier into a chip- 24367049c50SThierry Reding * relative GPIO number and flags. 24467049c50SThierry Reding */ 24579a9becdSAlexandre Courbot int (*of_xlate)(struct gpio_chip *gc, 24679a9becdSAlexandre Courbot const struct of_phandle_args *gpiospec, u32 *flags); 24779a9becdSAlexandre Courbot #endif 24879a9becdSAlexandre Courbot }; 24979a9becdSAlexandre Courbot 25079a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip, 25179a9becdSAlexandre Courbot unsigned offset); 25279a9becdSAlexandre Courbot 25379a9becdSAlexandre Courbot /* add/remove chips */ 254b08ea35aSLinus Walleij extern int gpiochip_add_data(struct gpio_chip *chip, void *data); 255b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip) 256b08ea35aSLinus Walleij { 257b08ea35aSLinus Walleij return gpiochip_add_data(chip, NULL); 258b08ea35aSLinus Walleij } 259e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip); 2600cf3292cSLaxman Dewangan extern int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip, 2610cf3292cSLaxman Dewangan void *data); 2620cf3292cSLaxman Dewangan extern void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip); 2630cf3292cSLaxman Dewangan 26479a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data, 26579a9becdSAlexandre Courbot int (*match)(struct gpio_chip *chip, void *data)); 26679a9becdSAlexandre Courbot 26779a9becdSAlexandre Courbot /* lock/unlock as IRQ */ 268e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset); 269e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset); 2706cee3821SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset); 27179a9becdSAlexandre Courbot 272143b65d6SLinus Walleij /* Line status inquiry for drivers */ 273143b65d6SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset); 274143b65d6SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset); 275143b65d6SLinus Walleij 27605f479bfSCharles Keepax /* Sleep persistence inquiry for drivers */ 27705f479bfSCharles Keepax bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset); 27805f479bfSCharles Keepax 279b08ea35aSLinus Walleij /* get driver data */ 28043c54ecaSLinus Walleij void *gpiochip_get_data(struct gpio_chip *chip); 281b08ea35aSLinus Walleij 282bb1e88ccSAlexandre Courbot struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc); 283bb1e88ccSAlexandre Courbot 2840f4630f3SLinus Walleij struct bgpio_pdata { 2850f4630f3SLinus Walleij const char *label; 2860f4630f3SLinus Walleij int base; 2870f4630f3SLinus Walleij int ngpio; 2880f4630f3SLinus Walleij }; 2890f4630f3SLinus Walleij 290c474e348SArnd Bergmann #if IS_ENABLED(CONFIG_GPIO_GENERIC) 291c474e348SArnd Bergmann 2920f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev, 2930f4630f3SLinus Walleij unsigned long sz, void __iomem *dat, void __iomem *set, 2940f4630f3SLinus Walleij void __iomem *clr, void __iomem *dirout, void __iomem *dirin, 2950f4630f3SLinus Walleij unsigned long flags); 2960f4630f3SLinus Walleij 2970f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN BIT(0) 2980f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET BIT(1) /* reg_set is unreadable */ 2990f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR BIT(2) /* reg_dir is unreadable */ 3000f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER BIT(3) 3010f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET BIT(4) /* reg_set stores output value */ 3020f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT BIT(5) /* only input */ 3030f4630f3SLinus Walleij 3040f4630f3SLinus Walleij #endif 3050f4630f3SLinus Walleij 30614250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP 30714250520SLinus Walleij 30814250520SLinus Walleij void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, 30914250520SLinus Walleij struct irq_chip *irqchip, 3106f79309aSThierry Reding unsigned int parent_irq, 31114250520SLinus Walleij irq_flow_handler_t parent_handler); 31214250520SLinus Walleij 313d245b3f9SLinus Walleij void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip, 314d245b3f9SLinus Walleij struct irq_chip *irqchip, 3156f79309aSThierry Reding unsigned int parent_irq); 316d245b3f9SLinus Walleij 317739e6f59SLinus Walleij int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip, 31814250520SLinus Walleij struct irq_chip *irqchip, 31914250520SLinus Walleij unsigned int first_irq, 32014250520SLinus Walleij irq_flow_handler_t handler, 321a0a8bcf4SGrygorii Strashko unsigned int type, 322d245b3f9SLinus Walleij bool nested, 323a0a8bcf4SGrygorii Strashko struct lock_class_key *lock_key); 324a0a8bcf4SGrygorii Strashko 325739e6f59SLinus Walleij #ifdef CONFIG_LOCKDEP 326739e6f59SLinus Walleij 327739e6f59SLinus Walleij /* 328739e6f59SLinus Walleij * Lockdep requires that each irqchip instance be created with a 329739e6f59SLinus Walleij * unique key so as to avoid unnecessary warnings. This upfront 330739e6f59SLinus Walleij * boilerplate static inlines provides such a key for each 331739e6f59SLinus Walleij * unique instance. 332739e6f59SLinus Walleij */ 333739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip, 334739e6f59SLinus Walleij struct irq_chip *irqchip, 335739e6f59SLinus Walleij unsigned int first_irq, 336739e6f59SLinus Walleij irq_flow_handler_t handler, 337739e6f59SLinus Walleij unsigned int type) 338739e6f59SLinus Walleij { 339739e6f59SLinus Walleij static struct lock_class_key key; 340739e6f59SLinus Walleij 341739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 342739e6f59SLinus Walleij handler, type, false, &key); 343739e6f59SLinus Walleij } 344739e6f59SLinus Walleij 345d245b3f9SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip, 346d245b3f9SLinus Walleij struct irq_chip *irqchip, 347d245b3f9SLinus Walleij unsigned int first_irq, 348d245b3f9SLinus Walleij irq_flow_handler_t handler, 349d245b3f9SLinus Walleij unsigned int type) 350d245b3f9SLinus Walleij { 351739e6f59SLinus Walleij 352739e6f59SLinus Walleij static struct lock_class_key key; 353739e6f59SLinus Walleij 354739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 355739e6f59SLinus Walleij handler, type, true, &key); 356739e6f59SLinus Walleij } 357739e6f59SLinus Walleij #else 358739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip, 359739e6f59SLinus Walleij struct irq_chip *irqchip, 360739e6f59SLinus Walleij unsigned int first_irq, 361739e6f59SLinus Walleij irq_flow_handler_t handler, 362739e6f59SLinus Walleij unsigned int type) 363739e6f59SLinus Walleij { 364739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 365739e6f59SLinus Walleij handler, type, false, NULL); 366d245b3f9SLinus Walleij } 367d245b3f9SLinus Walleij 368739e6f59SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip, 369739e6f59SLinus Walleij struct irq_chip *irqchip, 370739e6f59SLinus Walleij unsigned int first_irq, 371739e6f59SLinus Walleij irq_flow_handler_t handler, 372739e6f59SLinus Walleij unsigned int type) 373739e6f59SLinus Walleij { 374739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 375739e6f59SLinus Walleij handler, type, true, NULL); 376739e6f59SLinus Walleij } 377739e6f59SLinus Walleij #endif /* CONFIG_LOCKDEP */ 37814250520SLinus Walleij 3797d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */ 38014250520SLinus Walleij 381c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset); 382c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset); 3832956b5d9SMika Westerberg int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset, 3842956b5d9SMika Westerberg unsigned long config); 385c771c2f4SJonas Gorski 386964cb341SLinus Walleij #ifdef CONFIG_PINCTRL 387964cb341SLinus Walleij 388964cb341SLinus Walleij /** 389964cb341SLinus Walleij * struct gpio_pin_range - pin range controlled by a gpio chip 390950d55f5SThierry Reding * @node: list for maintaining set of pin ranges, used internally 391964cb341SLinus Walleij * @pctldev: pinctrl device which handles corresponding pins 392964cb341SLinus Walleij * @range: actual range of pins controlled by a gpio controller 393964cb341SLinus Walleij */ 394964cb341SLinus Walleij struct gpio_pin_range { 395964cb341SLinus Walleij struct list_head node; 396964cb341SLinus Walleij struct pinctrl_dev *pctldev; 397964cb341SLinus Walleij struct pinctrl_gpio_range range; 398964cb341SLinus Walleij }; 399964cb341SLinus Walleij 400964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 401964cb341SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 402964cb341SLinus Walleij unsigned int npins); 403964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip, 404964cb341SLinus Walleij struct pinctrl_dev *pctldev, 405964cb341SLinus Walleij unsigned int gpio_offset, const char *pin_group); 406964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip); 407964cb341SLinus Walleij 408964cb341SLinus Walleij #else 409964cb341SLinus Walleij 410964cb341SLinus Walleij static inline int 411964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 412964cb341SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 413964cb341SLinus Walleij unsigned int npins) 414964cb341SLinus Walleij { 415964cb341SLinus Walleij return 0; 416964cb341SLinus Walleij } 417964cb341SLinus Walleij static inline int 418964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip, 419964cb341SLinus Walleij struct pinctrl_dev *pctldev, 420964cb341SLinus Walleij unsigned int gpio_offset, const char *pin_group) 421964cb341SLinus Walleij { 422964cb341SLinus Walleij return 0; 423964cb341SLinus Walleij } 424964cb341SLinus Walleij 425964cb341SLinus Walleij static inline void 426964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip) 427964cb341SLinus Walleij { 428964cb341SLinus Walleij } 429964cb341SLinus Walleij 430964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */ 431964cb341SLinus Walleij 432abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, 433abdc08a3SAlexandre Courbot const char *label); 434f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc); 435f7d4ad98SGuenter Roeck 436bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */ 437bb1e88ccSAlexandre Courbot 438bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) 439bb1e88ccSAlexandre Courbot { 440bb1e88ccSAlexandre Courbot /* GPIO can never have been requested */ 441bb1e88ccSAlexandre Courbot WARN_ON(1); 442bb1e88ccSAlexandre Courbot return ERR_PTR(-ENODEV); 443bb1e88ccSAlexandre Courbot } 444bb1e88ccSAlexandre Courbot 445bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */ 446bb1e88ccSAlexandre Courbot 44779a9becdSAlexandre Courbot #endif 448