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 /** 28da80ff81SThierry Reding * @chip: 29da80ff81SThierry Reding * 30da80ff81SThierry Reding * GPIO IRQ chip implementation, provided by GPIO driver. 31da80ff81SThierry Reding */ 32da80ff81SThierry Reding struct irq_chip *chip; 33da80ff81SThierry Reding 34da80ff81SThierry Reding /** 35f0fbe7bcSThierry Reding * @domain: 36f0fbe7bcSThierry Reding * 37f0fbe7bcSThierry Reding * Interrupt translation domain; responsible for mapping between GPIO 38f0fbe7bcSThierry Reding * hwirq number and Linux IRQ number. 39f0fbe7bcSThierry Reding */ 40f0fbe7bcSThierry Reding struct irq_domain *domain; 41f0fbe7bcSThierry Reding 42f0fbe7bcSThierry Reding /** 43c44eafd7SThierry Reding * @domain_ops: 44c44eafd7SThierry Reding * 45c44eafd7SThierry Reding * Table of interrupt domain operations for this IRQ chip. 46c44eafd7SThierry Reding */ 47c44eafd7SThierry Reding const struct irq_domain_ops *domain_ops; 48c44eafd7SThierry Reding 49c44eafd7SThierry Reding /** 50c7a0aa59SThierry Reding * @handler: 51c7a0aa59SThierry Reding * 52c7a0aa59SThierry Reding * The IRQ handler to use (often a predefined IRQ core function) for 53c7a0aa59SThierry Reding * GPIO IRQs, provided by GPIO driver. 54c7a0aa59SThierry Reding */ 55c7a0aa59SThierry Reding irq_flow_handler_t handler; 56c7a0aa59SThierry Reding 57c7a0aa59SThierry Reding /** 583634eeb0SThierry Reding * @default_type: 593634eeb0SThierry Reding * 603634eeb0SThierry Reding * Default IRQ triggering type applied during GPIO driver 613634eeb0SThierry Reding * initialization, provided by GPIO driver. 623634eeb0SThierry Reding */ 633634eeb0SThierry Reding unsigned int default_type; 643634eeb0SThierry Reding 653634eeb0SThierry Reding /** 66c44eafd7SThierry Reding * @parent_handler: 67c44eafd7SThierry Reding * 68c44eafd7SThierry Reding * The interrupt handler for the GPIO chip's parent interrupts, may be 69c44eafd7SThierry Reding * NULL if the parent interrupts are nested rather than cascaded. 70c44eafd7SThierry Reding */ 71c44eafd7SThierry Reding irq_flow_handler_t parent_handler; 72c44eafd7SThierry Reding 73c44eafd7SThierry Reding /** 74c44eafd7SThierry Reding * @parent_handler_data: 75c44eafd7SThierry Reding * 76c44eafd7SThierry Reding * Data associated, and passed to, the handler for the parent 77c44eafd7SThierry Reding * interrupt. 78c44eafd7SThierry Reding */ 79c44eafd7SThierry Reding void *parent_handler_data; 8039e5f096SThierry Reding 8139e5f096SThierry Reding /** 8239e5f096SThierry Reding * @num_parents: 8339e5f096SThierry Reding * 8439e5f096SThierry Reding * The number of interrupt parents of a GPIO chip. 8539e5f096SThierry Reding */ 8639e5f096SThierry Reding unsigned int num_parents; 8739e5f096SThierry Reding 8839e5f096SThierry Reding /** 8939e5f096SThierry Reding * @parents: 9039e5f096SThierry Reding * 9139e5f096SThierry Reding * A list of interrupt parents of a GPIO chip. This is owned by the 9239e5f096SThierry Reding * driver, so the core will only reference this list, not modify it. 9339e5f096SThierry Reding */ 9439e5f096SThierry Reding unsigned int *parents; 95dc6bafeeSThierry Reding 96dc6bafeeSThierry Reding /** 97dc6bafeeSThierry Reding * @nested: 98dc6bafeeSThierry Reding * 99dc6bafeeSThierry Reding * True if set the interrupt handling is nested. 100dc6bafeeSThierry Reding */ 101dc6bafeeSThierry Reding bool nested; 102dc7b0387SThierry Reding 103dc7b0387SThierry Reding /** 104dc7b0387SThierry Reding * @need_valid_mask: 105dc7b0387SThierry Reding * 106dc7b0387SThierry Reding * If set core allocates @valid_mask with all bits set to one. 107dc7b0387SThierry Reding */ 108dc7b0387SThierry Reding bool need_valid_mask; 109dc7b0387SThierry Reding 110dc7b0387SThierry Reding /** 111dc7b0387SThierry Reding * @valid_mask: 112dc7b0387SThierry Reding * 113dc7b0387SThierry Reding * If not %NULL holds bitmask of GPIOs which are valid to be included 114dc7b0387SThierry Reding * in IRQ domain of the chip. 115dc7b0387SThierry Reding */ 116dc7b0387SThierry Reding unsigned long *valid_mask; 117c44eafd7SThierry Reding }; 118da80ff81SThierry Reding 119da80ff81SThierry Reding static inline struct gpio_irq_chip *to_gpio_irq_chip(struct irq_chip *chip) 120da80ff81SThierry Reding { 121da80ff81SThierry Reding return container_of(chip, struct gpio_irq_chip, chip); 122da80ff81SThierry Reding } 123c44eafd7SThierry Reding #endif 124c44eafd7SThierry Reding 12579a9becdSAlexandre Courbot /** 12679a9becdSAlexandre Courbot * struct gpio_chip - abstract a GPIO controller 127df4878e9SLinus Walleij * @label: a functional name for the GPIO device, such as a part 128df4878e9SLinus Walleij * number or the name of the SoC IP-block implementing it. 129ff2b1359SLinus Walleij * @gpiodev: the internal state holder, opaque struct 13058383c78SLinus Walleij * @parent: optional parent device providing the GPIOs 13179a9becdSAlexandre Courbot * @owner: helps prevent removal of modules exporting active GPIOs 13279a9becdSAlexandre Courbot * @request: optional hook for chip-specific activation, such as 13379a9becdSAlexandre Courbot * enabling module power and clock; may sleep 13479a9becdSAlexandre Courbot * @free: optional hook for chip-specific deactivation, such as 13579a9becdSAlexandre Courbot * disabling module power and clock; may sleep 13679a9becdSAlexandre Courbot * @get_direction: returns direction for signal "offset", 0=out, 1=in, 13779a9becdSAlexandre Courbot * (same as GPIOF_DIR_XXX), or negative error 13879a9becdSAlexandre Courbot * @direction_input: configures signal "offset" as input, or returns error 13979a9becdSAlexandre Courbot * @direction_output: configures signal "offset" as output, or returns error 14060befd2eSVladimir Zapolskiy * @get: returns value for signal "offset", 0=low, 1=high, or negative error 141eec1d566SLukas Wunner * @get_multiple: reads values for multiple signals defined by "mask" and 142eec1d566SLukas Wunner * stores them in "bits", returns 0 on success or negative error 14379a9becdSAlexandre Courbot * @set: assigns output value for signal "offset" 1445f424243SRojhalat Ibrahim * @set_multiple: assigns output values for multiple signals defined by "mask" 1452956b5d9SMika Westerberg * @set_config: optional hook for all kinds of settings. Uses the same 1462956b5d9SMika Westerberg * packed config format as generic pinconf. 14779a9becdSAlexandre Courbot * @to_irq: optional hook supporting non-static gpio_to_irq() mappings; 14879a9becdSAlexandre Courbot * implementation may not sleep 14979a9becdSAlexandre Courbot * @dbg_show: optional routine to show contents in debugfs; default code 15079a9becdSAlexandre Courbot * will be used when this is omitted, but custom code can show extra 15179a9becdSAlexandre Courbot * state (such as pullup/pulldown configuration). 152af6c235dSLinus Walleij * @base: identifies the first GPIO number handled by this chip; 153af6c235dSLinus Walleij * or, if negative during registration, requests dynamic ID allocation. 154af6c235dSLinus Walleij * DEPRECATION: providing anything non-negative and nailing the base 15530bb6fb3SGeert Uytterhoeven * offset of GPIO chips is deprecated. Please pass -1 as base to 156af6c235dSLinus Walleij * let gpiolib select the chip base in all possible cases. We want to 157af6c235dSLinus Walleij * get rid of the static GPIO number space in the long run. 15879a9becdSAlexandre Courbot * @ngpio: the number of GPIOs handled by this controller; the last GPIO 15979a9becdSAlexandre Courbot * handled is (base + ngpio - 1). 16079a9becdSAlexandre Courbot * @names: if set, must be an array of strings to use as alternative 16179a9becdSAlexandre Courbot * names for the GPIOs in this chip. Any entry in the array 16279a9becdSAlexandre Courbot * may be NULL if there is no alias for the GPIO, however the 16379a9becdSAlexandre Courbot * array must be @ngpio entries long. A name can include a single printk 16479a9becdSAlexandre Courbot * format specifier for an unsigned int. It is substituted by the actual 16579a9becdSAlexandre Courbot * number of the gpio. 1669fb1f39eSLinus Walleij * @can_sleep: flag must be set iff get()/set() methods sleep, as they 1671c8732bbSLinus Walleij * must while accessing GPIO expander chips over I2C or SPI. This 1681c8732bbSLinus Walleij * implies that if the chip supports IRQs, these IRQs need to be threaded 1691c8732bbSLinus Walleij * as the chip access may sleep when e.g. reading out the IRQ status 1701c8732bbSLinus Walleij * registers. 1710f4630f3SLinus Walleij * @read_reg: reader function for generic GPIO 1720f4630f3SLinus Walleij * @write_reg: writer function for generic GPIO 17324efd94bSLinus Walleij * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing 17424efd94bSLinus Walleij * line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the 17524efd94bSLinus Walleij * generic GPIO core. It is for internal housekeeping only. 1760f4630f3SLinus Walleij * @reg_dat: data (in) register for generic GPIO 1770f4630f3SLinus Walleij * @reg_set: output set register (out=high) for generic GPIO 17808bcd3edSAnthony Best * @reg_clr: output clear register (out=low) for generic GPIO 1790f4630f3SLinus Walleij * @reg_dir: direction setting register for generic GPIO 1800f4630f3SLinus Walleij * @bgpio_bits: number of register bits used for a generic GPIO i.e. 1810f4630f3SLinus Walleij * <register width> * 8 1820f4630f3SLinus Walleij * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep 1830f4630f3SLinus Walleij * shadowed and real data registers writes together. 1840f4630f3SLinus Walleij * @bgpio_data: shadowed data register for generic GPIO to clear/set bits 1850f4630f3SLinus Walleij * safely. 1860f4630f3SLinus Walleij * @bgpio_dir: shadowed direction register for generic GPIO to clear/set 1870f4630f3SLinus Walleij * direction safely. 18841d6bb4cSGrygorii Strashko * @lock_key: per GPIO IRQ chip lockdep class 18979a9becdSAlexandre Courbot * 19079a9becdSAlexandre Courbot * A gpio_chip can help platforms abstract various sources of GPIOs so 19179a9becdSAlexandre Courbot * they can all be accessed through a common programing interface. 19279a9becdSAlexandre Courbot * Example sources would be SOC controllers, FPGAs, multifunction 19379a9becdSAlexandre Courbot * chips, dedicated GPIO expanders, and so on. 19479a9becdSAlexandre Courbot * 19579a9becdSAlexandre Courbot * Each chip controls a number of signals, identified in method calls 19679a9becdSAlexandre Courbot * by "offset" values in the range 0..(@ngpio - 1). When those signals 19779a9becdSAlexandre Courbot * are referenced through calls like gpio_get_value(gpio), the offset 19879a9becdSAlexandre Courbot * is calculated by subtracting @base from the gpio number. 19979a9becdSAlexandre Courbot */ 20079a9becdSAlexandre Courbot struct gpio_chip { 20179a9becdSAlexandre Courbot const char *label; 202ff2b1359SLinus Walleij struct gpio_device *gpiodev; 20358383c78SLinus Walleij struct device *parent; 20479a9becdSAlexandre Courbot struct module *owner; 20579a9becdSAlexandre Courbot 20679a9becdSAlexandre Courbot int (*request)(struct gpio_chip *chip, 20779a9becdSAlexandre Courbot unsigned offset); 20879a9becdSAlexandre Courbot void (*free)(struct gpio_chip *chip, 20979a9becdSAlexandre Courbot unsigned offset); 21079a9becdSAlexandre Courbot int (*get_direction)(struct gpio_chip *chip, 21179a9becdSAlexandre Courbot unsigned offset); 21279a9becdSAlexandre Courbot int (*direction_input)(struct gpio_chip *chip, 21379a9becdSAlexandre Courbot unsigned offset); 21479a9becdSAlexandre Courbot int (*direction_output)(struct gpio_chip *chip, 21579a9becdSAlexandre Courbot unsigned offset, int value); 21679a9becdSAlexandre Courbot int (*get)(struct gpio_chip *chip, 21779a9becdSAlexandre Courbot unsigned offset); 218eec1d566SLukas Wunner int (*get_multiple)(struct gpio_chip *chip, 219eec1d566SLukas Wunner unsigned long *mask, 220eec1d566SLukas Wunner unsigned long *bits); 22179a9becdSAlexandre Courbot void (*set)(struct gpio_chip *chip, 22279a9becdSAlexandre Courbot unsigned offset, int value); 2235f424243SRojhalat Ibrahim void (*set_multiple)(struct gpio_chip *chip, 2245f424243SRojhalat Ibrahim unsigned long *mask, 2255f424243SRojhalat Ibrahim unsigned long *bits); 2262956b5d9SMika Westerberg int (*set_config)(struct gpio_chip *chip, 22779a9becdSAlexandre Courbot unsigned offset, 2282956b5d9SMika Westerberg unsigned long config); 22979a9becdSAlexandre Courbot int (*to_irq)(struct gpio_chip *chip, 23079a9becdSAlexandre Courbot unsigned offset); 23179a9becdSAlexandre Courbot 23279a9becdSAlexandre Courbot void (*dbg_show)(struct seq_file *s, 23379a9becdSAlexandre Courbot struct gpio_chip *chip); 23479a9becdSAlexandre Courbot int base; 23579a9becdSAlexandre Courbot u16 ngpio; 23679a9becdSAlexandre Courbot const char *const *names; 2379fb1f39eSLinus Walleij bool can_sleep; 23879a9becdSAlexandre Courbot 2390f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC) 2400f4630f3SLinus Walleij unsigned long (*read_reg)(void __iomem *reg); 2410f4630f3SLinus Walleij void (*write_reg)(void __iomem *reg, unsigned long data); 24224efd94bSLinus Walleij bool be_bits; 2430f4630f3SLinus Walleij void __iomem *reg_dat; 2440f4630f3SLinus Walleij void __iomem *reg_set; 2450f4630f3SLinus Walleij void __iomem *reg_clr; 2460f4630f3SLinus Walleij void __iomem *reg_dir; 2470f4630f3SLinus Walleij int bgpio_bits; 2480f4630f3SLinus Walleij spinlock_t bgpio_lock; 2490f4630f3SLinus Walleij unsigned long bgpio_data; 2500f4630f3SLinus Walleij unsigned long bgpio_dir; 2510f4630f3SLinus Walleij #endif 2520f4630f3SLinus Walleij 25314250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP 25414250520SLinus Walleij /* 2557d75a871SPaul Bolle * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib 25614250520SLinus Walleij * to handle IRQs for most practical cases. 25714250520SLinus Walleij */ 258a0a8bcf4SGrygorii Strashko struct lock_class_key *lock_key; 259c44eafd7SThierry Reding 260c44eafd7SThierry Reding /** 261c44eafd7SThierry Reding * @irq: 262c44eafd7SThierry Reding * 263c44eafd7SThierry Reding * Integrates interrupt chip functionality with the GPIO chip. Can be 264c44eafd7SThierry Reding * used to handle IRQs for most practical cases. 265c44eafd7SThierry Reding */ 266c44eafd7SThierry Reding struct gpio_irq_chip irq; 26714250520SLinus Walleij #endif 26814250520SLinus Walleij 26979a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO) 27079a9becdSAlexandre Courbot /* 27179a9becdSAlexandre Courbot * If CONFIG_OF is enabled, then all GPIO controllers described in the 27279a9becdSAlexandre Courbot * device tree automatically may have an OF translation 27379a9becdSAlexandre Courbot */ 27467049c50SThierry Reding 27567049c50SThierry Reding /** 27667049c50SThierry Reding * @of_node: 27767049c50SThierry Reding * 27867049c50SThierry Reding * Pointer to a device tree node representing this GPIO controller. 27967049c50SThierry Reding */ 28079a9becdSAlexandre Courbot struct device_node *of_node; 28167049c50SThierry Reding 28267049c50SThierry Reding /** 28367049c50SThierry Reding * @of_gpio_n_cells: 28467049c50SThierry Reding * 28567049c50SThierry Reding * Number of cells used to form the GPIO specifier. 28667049c50SThierry Reding */ 287e3b445d7SThierry Reding unsigned int of_gpio_n_cells; 28867049c50SThierry Reding 28967049c50SThierry Reding /** 29067049c50SThierry Reding * @of_xlate: 29167049c50SThierry Reding * 29267049c50SThierry Reding * Callback to translate a device tree GPIO specifier into a chip- 29367049c50SThierry Reding * relative GPIO number and flags. 29467049c50SThierry Reding */ 29579a9becdSAlexandre Courbot int (*of_xlate)(struct gpio_chip *gc, 29679a9becdSAlexandre Courbot const struct of_phandle_args *gpiospec, u32 *flags); 29779a9becdSAlexandre Courbot #endif 29879a9becdSAlexandre Courbot }; 29979a9becdSAlexandre Courbot 30079a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip, 30179a9becdSAlexandre Courbot unsigned offset); 30279a9becdSAlexandre Courbot 30379a9becdSAlexandre Courbot /* add/remove chips */ 304b08ea35aSLinus Walleij extern int gpiochip_add_data(struct gpio_chip *chip, void *data); 305b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip) 306b08ea35aSLinus Walleij { 307b08ea35aSLinus Walleij return gpiochip_add_data(chip, NULL); 308b08ea35aSLinus Walleij } 309e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip); 3100cf3292cSLaxman Dewangan extern int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip, 3110cf3292cSLaxman Dewangan void *data); 3120cf3292cSLaxman Dewangan extern void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip); 3130cf3292cSLaxman Dewangan 31479a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data, 31579a9becdSAlexandre Courbot int (*match)(struct gpio_chip *chip, void *data)); 31679a9becdSAlexandre Courbot 31779a9becdSAlexandre Courbot /* lock/unlock as IRQ */ 318e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset); 319e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset); 3206cee3821SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset); 32179a9becdSAlexandre Courbot 322143b65d6SLinus Walleij /* Line status inquiry for drivers */ 323143b65d6SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset); 324143b65d6SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset); 325143b65d6SLinus Walleij 32605f479bfSCharles Keepax /* Sleep persistence inquiry for drivers */ 32705f479bfSCharles Keepax bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset); 32805f479bfSCharles Keepax 329b08ea35aSLinus Walleij /* get driver data */ 33043c54ecaSLinus Walleij void *gpiochip_get_data(struct gpio_chip *chip); 331b08ea35aSLinus Walleij 332bb1e88ccSAlexandre Courbot struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc); 333bb1e88ccSAlexandre Courbot 3340f4630f3SLinus Walleij struct bgpio_pdata { 3350f4630f3SLinus Walleij const char *label; 3360f4630f3SLinus Walleij int base; 3370f4630f3SLinus Walleij int ngpio; 3380f4630f3SLinus Walleij }; 3390f4630f3SLinus Walleij 340c474e348SArnd Bergmann #if IS_ENABLED(CONFIG_GPIO_GENERIC) 341c474e348SArnd Bergmann 3420f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev, 3430f4630f3SLinus Walleij unsigned long sz, void __iomem *dat, void __iomem *set, 3440f4630f3SLinus Walleij void __iomem *clr, void __iomem *dirout, void __iomem *dirin, 3450f4630f3SLinus Walleij unsigned long flags); 3460f4630f3SLinus Walleij 3470f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN BIT(0) 3480f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET BIT(1) /* reg_set is unreadable */ 3490f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR BIT(2) /* reg_dir is unreadable */ 3500f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER BIT(3) 3510f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET BIT(4) /* reg_set stores output value */ 3520f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT BIT(5) /* only input */ 3530f4630f3SLinus Walleij 3540f4630f3SLinus Walleij #endif 3550f4630f3SLinus Walleij 35614250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP 35714250520SLinus Walleij 35814250520SLinus Walleij void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, 35914250520SLinus Walleij struct irq_chip *irqchip, 3606f79309aSThierry Reding unsigned int parent_irq, 36114250520SLinus Walleij irq_flow_handler_t parent_handler); 36214250520SLinus Walleij 363d245b3f9SLinus Walleij void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip, 364d245b3f9SLinus Walleij struct irq_chip *irqchip, 3656f79309aSThierry Reding unsigned int parent_irq); 366d245b3f9SLinus Walleij 367739e6f59SLinus Walleij int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip, 36814250520SLinus Walleij struct irq_chip *irqchip, 36914250520SLinus Walleij unsigned int first_irq, 37014250520SLinus Walleij irq_flow_handler_t handler, 371a0a8bcf4SGrygorii Strashko unsigned int type, 372d245b3f9SLinus Walleij bool nested, 373a0a8bcf4SGrygorii Strashko struct lock_class_key *lock_key); 374a0a8bcf4SGrygorii Strashko 375739e6f59SLinus Walleij #ifdef CONFIG_LOCKDEP 376739e6f59SLinus Walleij 377739e6f59SLinus Walleij /* 378739e6f59SLinus Walleij * Lockdep requires that each irqchip instance be created with a 379739e6f59SLinus Walleij * unique key so as to avoid unnecessary warnings. This upfront 380739e6f59SLinus Walleij * boilerplate static inlines provides such a key for each 381739e6f59SLinus Walleij * unique instance. 382739e6f59SLinus Walleij */ 383739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip, 384739e6f59SLinus Walleij struct irq_chip *irqchip, 385739e6f59SLinus Walleij unsigned int first_irq, 386739e6f59SLinus Walleij irq_flow_handler_t handler, 387739e6f59SLinus Walleij unsigned int type) 388739e6f59SLinus Walleij { 389739e6f59SLinus Walleij static struct lock_class_key key; 390739e6f59SLinus Walleij 391739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 392739e6f59SLinus Walleij handler, type, false, &key); 393739e6f59SLinus Walleij } 394739e6f59SLinus Walleij 395d245b3f9SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip, 396d245b3f9SLinus Walleij struct irq_chip *irqchip, 397d245b3f9SLinus Walleij unsigned int first_irq, 398d245b3f9SLinus Walleij irq_flow_handler_t handler, 399d245b3f9SLinus Walleij unsigned int type) 400d245b3f9SLinus Walleij { 401739e6f59SLinus Walleij 402739e6f59SLinus Walleij static struct lock_class_key key; 403739e6f59SLinus Walleij 404739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 405739e6f59SLinus Walleij handler, type, true, &key); 406739e6f59SLinus Walleij } 407739e6f59SLinus Walleij #else 408739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip, 409739e6f59SLinus Walleij struct irq_chip *irqchip, 410739e6f59SLinus Walleij unsigned int first_irq, 411739e6f59SLinus Walleij irq_flow_handler_t handler, 412739e6f59SLinus Walleij unsigned int type) 413739e6f59SLinus Walleij { 414739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 415739e6f59SLinus Walleij handler, type, false, NULL); 416d245b3f9SLinus Walleij } 417d245b3f9SLinus Walleij 418739e6f59SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip, 419739e6f59SLinus Walleij struct irq_chip *irqchip, 420739e6f59SLinus Walleij unsigned int first_irq, 421739e6f59SLinus Walleij irq_flow_handler_t handler, 422739e6f59SLinus Walleij unsigned int type) 423739e6f59SLinus Walleij { 424739e6f59SLinus Walleij return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq, 425739e6f59SLinus Walleij handler, type, true, NULL); 426739e6f59SLinus Walleij } 427739e6f59SLinus Walleij #endif /* CONFIG_LOCKDEP */ 42814250520SLinus Walleij 4297d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */ 43014250520SLinus Walleij 431c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset); 432c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset); 4332956b5d9SMika Westerberg int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset, 4342956b5d9SMika Westerberg unsigned long config); 435c771c2f4SJonas Gorski 436964cb341SLinus Walleij #ifdef CONFIG_PINCTRL 437964cb341SLinus Walleij 438964cb341SLinus Walleij /** 439964cb341SLinus Walleij * struct gpio_pin_range - pin range controlled by a gpio chip 440950d55f5SThierry Reding * @node: list for maintaining set of pin ranges, used internally 441964cb341SLinus Walleij * @pctldev: pinctrl device which handles corresponding pins 442964cb341SLinus Walleij * @range: actual range of pins controlled by a gpio controller 443964cb341SLinus Walleij */ 444964cb341SLinus Walleij struct gpio_pin_range { 445964cb341SLinus Walleij struct list_head node; 446964cb341SLinus Walleij struct pinctrl_dev *pctldev; 447964cb341SLinus Walleij struct pinctrl_gpio_range range; 448964cb341SLinus Walleij }; 449964cb341SLinus Walleij 450964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 451964cb341SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 452964cb341SLinus Walleij unsigned int npins); 453964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip, 454964cb341SLinus Walleij struct pinctrl_dev *pctldev, 455964cb341SLinus Walleij unsigned int gpio_offset, const char *pin_group); 456964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip); 457964cb341SLinus Walleij 458964cb341SLinus Walleij #else 459964cb341SLinus Walleij 460964cb341SLinus Walleij static inline int 461964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 462964cb341SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 463964cb341SLinus Walleij unsigned int npins) 464964cb341SLinus Walleij { 465964cb341SLinus Walleij return 0; 466964cb341SLinus Walleij } 467964cb341SLinus Walleij static inline int 468964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip, 469964cb341SLinus Walleij struct pinctrl_dev *pctldev, 470964cb341SLinus Walleij unsigned int gpio_offset, const char *pin_group) 471964cb341SLinus Walleij { 472964cb341SLinus Walleij return 0; 473964cb341SLinus Walleij } 474964cb341SLinus Walleij 475964cb341SLinus Walleij static inline void 476964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip) 477964cb341SLinus Walleij { 478964cb341SLinus Walleij } 479964cb341SLinus Walleij 480964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */ 481964cb341SLinus Walleij 482abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, 483abdc08a3SAlexandre Courbot const char *label); 484f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc); 485f7d4ad98SGuenter Roeck 486bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */ 487bb1e88ccSAlexandre Courbot 488bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) 489bb1e88ccSAlexandre Courbot { 490bb1e88ccSAlexandre Courbot /* GPIO can never have been requested */ 491bb1e88ccSAlexandre Courbot WARN_ON(1); 492bb1e88ccSAlexandre Courbot return ERR_PTR(-ENODEV); 493bb1e88ccSAlexandre Courbot } 494bb1e88ccSAlexandre Courbot 495bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */ 496bb1e88ccSAlexandre Courbot 49779a9becdSAlexandre Courbot #endif 498