xref: /openbmc/linux/include/linux/gpio/driver.h (revision 05f479bf)
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 
2279a9becdSAlexandre Courbot /**
2379a9becdSAlexandre Courbot  * struct gpio_chip - abstract a GPIO controller
24df4878e9SLinus Walleij  * @label: a functional name for the GPIO device, such as a part
25df4878e9SLinus Walleij  *	number or the name of the SoC IP-block implementing it.
26ff2b1359SLinus Walleij  * @gpiodev: the internal state holder, opaque struct
2758383c78SLinus Walleij  * @parent: optional parent device providing the GPIOs
2879a9becdSAlexandre Courbot  * @owner: helps prevent removal of modules exporting active GPIOs
2979a9becdSAlexandre Courbot  * @request: optional hook for chip-specific activation, such as
3079a9becdSAlexandre Courbot  *	enabling module power and clock; may sleep
3179a9becdSAlexandre Courbot  * @free: optional hook for chip-specific deactivation, such as
3279a9becdSAlexandre Courbot  *	disabling module power and clock; may sleep
3379a9becdSAlexandre Courbot  * @get_direction: returns direction for signal "offset", 0=out, 1=in,
3479a9becdSAlexandre Courbot  *	(same as GPIOF_DIR_XXX), or negative error
3579a9becdSAlexandre Courbot  * @direction_input: configures signal "offset" as input, or returns error
3679a9becdSAlexandre Courbot  * @direction_output: configures signal "offset" as output, or returns error
3760befd2eSVladimir Zapolskiy  * @get: returns value for signal "offset", 0=low, 1=high, or negative error
3879a9becdSAlexandre Courbot  * @set: assigns output value for signal "offset"
395f424243SRojhalat Ibrahim  * @set_multiple: assigns output values for multiple signals defined by "mask"
402956b5d9SMika Westerberg  * @set_config: optional hook for all kinds of settings. Uses the same
412956b5d9SMika Westerberg  *	packed config format as generic pinconf.
4279a9becdSAlexandre Courbot  * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
4379a9becdSAlexandre Courbot  *	implementation may not sleep
4479a9becdSAlexandre Courbot  * @dbg_show: optional routine to show contents in debugfs; default code
4579a9becdSAlexandre Courbot  *	will be used when this is omitted, but custom code can show extra
4679a9becdSAlexandre Courbot  *	state (such as pullup/pulldown configuration).
47af6c235dSLinus Walleij  * @base: identifies the first GPIO number handled by this chip;
48af6c235dSLinus Walleij  *	or, if negative during registration, requests dynamic ID allocation.
49af6c235dSLinus Walleij  *	DEPRECATION: providing anything non-negative and nailing the base
5030bb6fb3SGeert Uytterhoeven  *	offset of GPIO chips is deprecated. Please pass -1 as base to
51af6c235dSLinus Walleij  *	let gpiolib select the chip base in all possible cases. We want to
52af6c235dSLinus Walleij  *	get rid of the static GPIO number space in the long run.
5379a9becdSAlexandre Courbot  * @ngpio: the number of GPIOs handled by this controller; the last GPIO
5479a9becdSAlexandre Courbot  *	handled is (base + ngpio - 1).
5579a9becdSAlexandre Courbot  * @names: if set, must be an array of strings to use as alternative
5679a9becdSAlexandre Courbot  *      names for the GPIOs in this chip. Any entry in the array
5779a9becdSAlexandre Courbot  *      may be NULL if there is no alias for the GPIO, however the
5879a9becdSAlexandre Courbot  *      array must be @ngpio entries long.  A name can include a single printk
5979a9becdSAlexandre Courbot  *      format specifier for an unsigned int.  It is substituted by the actual
6079a9becdSAlexandre Courbot  *      number of the gpio.
619fb1f39eSLinus Walleij  * @can_sleep: flag must be set iff get()/set() methods sleep, as they
621c8732bbSLinus Walleij  *	must while accessing GPIO expander chips over I2C or SPI. This
631c8732bbSLinus Walleij  *	implies that if the chip supports IRQs, these IRQs need to be threaded
641c8732bbSLinus Walleij  *	as the chip access may sleep when e.g. reading out the IRQ status
651c8732bbSLinus Walleij  *	registers.
660f4630f3SLinus Walleij  * @read_reg: reader function for generic GPIO
670f4630f3SLinus Walleij  * @write_reg: writer function for generic GPIO
680f4630f3SLinus Walleij  * @pin2mask: some generic GPIO controllers work with the big-endian bits
690f4630f3SLinus Walleij  *	notation, e.g. in a 8-bits register, GPIO7 is the least significant
700f4630f3SLinus Walleij  *	bit. This callback assigns the right bit mask.
710f4630f3SLinus Walleij  * @reg_dat: data (in) register for generic GPIO
720f4630f3SLinus Walleij  * @reg_set: output set register (out=high) for generic GPIO
7308bcd3edSAnthony Best  * @reg_clr: output clear register (out=low) for generic GPIO
740f4630f3SLinus Walleij  * @reg_dir: direction setting register for generic GPIO
750f4630f3SLinus Walleij  * @bgpio_bits: number of register bits used for a generic GPIO i.e.
760f4630f3SLinus Walleij  *	<register width> * 8
770f4630f3SLinus Walleij  * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep
780f4630f3SLinus Walleij  *	shadowed and real data registers writes together.
790f4630f3SLinus Walleij  * @bgpio_data:	shadowed data register for generic GPIO to clear/set bits
800f4630f3SLinus Walleij  *	safely.
810f4630f3SLinus Walleij  * @bgpio_dir: shadowed direction register for generic GPIO to clear/set
820f4630f3SLinus Walleij  *	direction safely.
8341d6bb4cSGrygorii Strashko  * @irqchip: GPIO IRQ chip impl, provided by GPIO driver
8441d6bb4cSGrygorii Strashko  * @irqdomain: Interrupt translation domain; responsible for mapping
8541d6bb4cSGrygorii Strashko  *	between GPIO hwirq number and linux irq number
8641d6bb4cSGrygorii Strashko  * @irq_base: first linux IRQ number assigned to GPIO IRQ chip (deprecated)
8741d6bb4cSGrygorii Strashko  * @irq_handler: the irq handler to use (often a predefined irq core function)
8841d6bb4cSGrygorii Strashko  *	for GPIO IRQs, provided by GPIO driver
8941d6bb4cSGrygorii Strashko  * @irq_default_type: default IRQ triggering type applied during GPIO driver
9041d6bb4cSGrygorii Strashko  *	initialization, provided by GPIO driver
91d245b3f9SLinus Walleij  * @irq_chained_parent: GPIO IRQ chip parent/bank linux irq number,
92d245b3f9SLinus Walleij  *	provided by GPIO driver for chained interrupt (not for nested
93d245b3f9SLinus Walleij  *	interrupts).
94d245b3f9SLinus Walleij  * @irq_nested: True if set the interrupt handling is nested.
9579b804cbSMika Westerberg  * @irq_need_valid_mask: If set core allocates @irq_valid_mask with all
9679b804cbSMika Westerberg  *	bits set to one
9779b804cbSMika Westerberg  * @irq_valid_mask: If not %NULL holds bitmask of GPIOs which are valid to
9879b804cbSMika Westerberg  *	be included in IRQ domain of the chip
9941d6bb4cSGrygorii Strashko  * @lock_key: per GPIO IRQ chip lockdep class
10079a9becdSAlexandre Courbot  *
10179a9becdSAlexandre Courbot  * A gpio_chip can help platforms abstract various sources of GPIOs so
10279a9becdSAlexandre Courbot  * they can all be accessed through a common programing interface.
10379a9becdSAlexandre Courbot  * Example sources would be SOC controllers, FPGAs, multifunction
10479a9becdSAlexandre Courbot  * chips, dedicated GPIO expanders, and so on.
10579a9becdSAlexandre Courbot  *
10679a9becdSAlexandre Courbot  * Each chip controls a number of signals, identified in method calls
10779a9becdSAlexandre Courbot  * by "offset" values in the range 0..(@ngpio - 1).  When those signals
10879a9becdSAlexandre Courbot  * are referenced through calls like gpio_get_value(gpio), the offset
10979a9becdSAlexandre Courbot  * is calculated by subtracting @base from the gpio number.
11079a9becdSAlexandre Courbot  */
11179a9becdSAlexandre Courbot struct gpio_chip {
11279a9becdSAlexandre Courbot 	const char		*label;
113ff2b1359SLinus Walleij 	struct gpio_device	*gpiodev;
11458383c78SLinus Walleij 	struct device		*parent;
11579a9becdSAlexandre Courbot 	struct module		*owner;
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);
1342956b5d9SMika Westerberg 	int			(*set_config)(struct gpio_chip *chip,
13579a9becdSAlexandre Courbot 					      unsigned offset,
1362956b5d9SMika Westerberg 					      unsigned long config);
13779a9becdSAlexandre Courbot 	int			(*to_irq)(struct gpio_chip *chip,
13879a9becdSAlexandre Courbot 						unsigned offset);
13979a9becdSAlexandre Courbot 
14079a9becdSAlexandre Courbot 	void			(*dbg_show)(struct seq_file *s,
14179a9becdSAlexandre Courbot 						struct gpio_chip *chip);
14279a9becdSAlexandre Courbot 	int			base;
14379a9becdSAlexandre Courbot 	u16			ngpio;
14479a9becdSAlexandre Courbot 	const char		*const *names;
1459fb1f39eSLinus Walleij 	bool			can_sleep;
14679a9becdSAlexandre Courbot 
1470f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC)
1480f4630f3SLinus Walleij 	unsigned long (*read_reg)(void __iomem *reg);
1490f4630f3SLinus Walleij 	void (*write_reg)(void __iomem *reg, unsigned long data);
1500f4630f3SLinus Walleij 	unsigned long (*pin2mask)(struct gpio_chip *gc, unsigned int pin);
1510f4630f3SLinus Walleij 	void __iomem *reg_dat;
1520f4630f3SLinus Walleij 	void __iomem *reg_set;
1530f4630f3SLinus Walleij 	void __iomem *reg_clr;
1540f4630f3SLinus Walleij 	void __iomem *reg_dir;
1550f4630f3SLinus Walleij 	int bgpio_bits;
1560f4630f3SLinus Walleij 	spinlock_t bgpio_lock;
1570f4630f3SLinus Walleij 	unsigned long bgpio_data;
1580f4630f3SLinus Walleij 	unsigned long bgpio_dir;
1590f4630f3SLinus Walleij #endif
1600f4630f3SLinus Walleij 
16114250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
16214250520SLinus Walleij 	/*
1637d75a871SPaul Bolle 	 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
16414250520SLinus Walleij 	 * to handle IRQs for most practical cases.
16514250520SLinus Walleij 	 */
16614250520SLinus Walleij 	struct irq_chip		*irqchip;
16714250520SLinus Walleij 	struct irq_domain	*irqdomain;
168c3626fdeSLinus Walleij 	unsigned int		irq_base;
16914250520SLinus Walleij 	irq_flow_handler_t	irq_handler;
17014250520SLinus Walleij 	unsigned int		irq_default_type;
1716f79309aSThierry Reding 	unsigned int		irq_chained_parent;
172d245b3f9SLinus Walleij 	bool			irq_nested;
17379b804cbSMika Westerberg 	bool			irq_need_valid_mask;
17479b804cbSMika Westerberg 	unsigned long		*irq_valid_mask;
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 };
18979a9becdSAlexandre Courbot 
19079a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip,
19179a9becdSAlexandre Courbot 			unsigned offset);
19279a9becdSAlexandre Courbot 
19379a9becdSAlexandre Courbot /* add/remove chips */
194b08ea35aSLinus Walleij extern int gpiochip_add_data(struct gpio_chip *chip, void *data);
195b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip)
196b08ea35aSLinus Walleij {
197b08ea35aSLinus Walleij 	return gpiochip_add_data(chip, NULL);
198b08ea35aSLinus Walleij }
199e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip);
2000cf3292cSLaxman Dewangan extern int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
2010cf3292cSLaxman Dewangan 				  void *data);
2020cf3292cSLaxman Dewangan extern void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip);
2030cf3292cSLaxman Dewangan 
20479a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data,
20579a9becdSAlexandre Courbot 			      int (*match)(struct gpio_chip *chip, void *data));
20679a9becdSAlexandre Courbot 
20779a9becdSAlexandre Courbot /* lock/unlock as IRQ */
208e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset);
209e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset);
2106cee3821SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset);
21179a9becdSAlexandre Courbot 
212143b65d6SLinus Walleij /* Line status inquiry for drivers */
213143b65d6SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset);
214143b65d6SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset);
215143b65d6SLinus Walleij 
21605f479bfSCharles Keepax /* Sleep persistence inquiry for drivers */
21705f479bfSCharles Keepax bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset);
21805f479bfSCharles Keepax 
219b08ea35aSLinus Walleij /* get driver data */
22043c54ecaSLinus Walleij void *gpiochip_get_data(struct gpio_chip *chip);
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,
2506f79309aSThierry Reding 		unsigned int parent_irq,
25114250520SLinus Walleij 		irq_flow_handler_t parent_handler);
25214250520SLinus Walleij 
253d245b3f9SLinus Walleij void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
254d245b3f9SLinus Walleij 		struct irq_chip *irqchip,
2556f79309aSThierry Reding 		unsigned int parent_irq);
256d245b3f9SLinus Walleij 
257739e6f59SLinus Walleij int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
25814250520SLinus Walleij 			     struct irq_chip *irqchip,
25914250520SLinus Walleij 			     unsigned int first_irq,
26014250520SLinus Walleij 			     irq_flow_handler_t handler,
261a0a8bcf4SGrygorii Strashko 			     unsigned int type,
262d245b3f9SLinus Walleij 			     bool nested,
263a0a8bcf4SGrygorii Strashko 			     struct lock_class_key *lock_key);
264a0a8bcf4SGrygorii Strashko 
265739e6f59SLinus Walleij #ifdef CONFIG_LOCKDEP
266739e6f59SLinus Walleij 
267739e6f59SLinus Walleij /*
268739e6f59SLinus Walleij  * Lockdep requires that each irqchip instance be created with a
269739e6f59SLinus Walleij  * unique key so as to avoid unnecessary warnings. This upfront
270739e6f59SLinus Walleij  * boilerplate static inlines provides such a key for each
271739e6f59SLinus Walleij  * unique instance.
272739e6f59SLinus Walleij  */
273739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
274739e6f59SLinus Walleij 				       struct irq_chip *irqchip,
275739e6f59SLinus Walleij 				       unsigned int first_irq,
276739e6f59SLinus Walleij 				       irq_flow_handler_t handler,
277739e6f59SLinus Walleij 				       unsigned int type)
278739e6f59SLinus Walleij {
279739e6f59SLinus Walleij 	static struct lock_class_key key;
280739e6f59SLinus Walleij 
281739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
282739e6f59SLinus Walleij 					handler, type, false, &key);
283739e6f59SLinus Walleij }
284739e6f59SLinus Walleij 
285d245b3f9SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip,
286d245b3f9SLinus Walleij 			  struct irq_chip *irqchip,
287d245b3f9SLinus Walleij 			  unsigned int first_irq,
288d245b3f9SLinus Walleij 			  irq_flow_handler_t handler,
289d245b3f9SLinus Walleij 			  unsigned int type)
290d245b3f9SLinus Walleij {
291739e6f59SLinus Walleij 
292739e6f59SLinus Walleij 	static struct lock_class_key key;
293739e6f59SLinus Walleij 
294739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
295739e6f59SLinus Walleij 					handler, type, true, &key);
296739e6f59SLinus Walleij }
297739e6f59SLinus Walleij #else
298739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
299739e6f59SLinus Walleij 				       struct irq_chip *irqchip,
300739e6f59SLinus Walleij 				       unsigned int first_irq,
301739e6f59SLinus Walleij 				       irq_flow_handler_t handler,
302739e6f59SLinus Walleij 				       unsigned int type)
303739e6f59SLinus Walleij {
304739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
305739e6f59SLinus Walleij 					handler, type, false, NULL);
306d245b3f9SLinus Walleij }
307d245b3f9SLinus Walleij 
308739e6f59SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip,
309739e6f59SLinus Walleij 			  struct irq_chip *irqchip,
310739e6f59SLinus Walleij 			  unsigned int first_irq,
311739e6f59SLinus Walleij 			  irq_flow_handler_t handler,
312739e6f59SLinus Walleij 			  unsigned int type)
313739e6f59SLinus Walleij {
314739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
315739e6f59SLinus Walleij 					handler, type, true, NULL);
316739e6f59SLinus Walleij }
317739e6f59SLinus Walleij #endif /* CONFIG_LOCKDEP */
31814250520SLinus Walleij 
3197d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */
32014250520SLinus Walleij 
321c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset);
322c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset);
3232956b5d9SMika Westerberg int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
3242956b5d9SMika Westerberg 			    unsigned long config);
325c771c2f4SJonas Gorski 
326964cb341SLinus Walleij #ifdef CONFIG_PINCTRL
327964cb341SLinus Walleij 
328964cb341SLinus Walleij /**
329964cb341SLinus Walleij  * struct gpio_pin_range - pin range controlled by a gpio chip
330964cb341SLinus Walleij  * @head: list for maintaining set of pin ranges, used internally
331964cb341SLinus Walleij  * @pctldev: pinctrl device which handles corresponding pins
332964cb341SLinus Walleij  * @range: actual range of pins controlled by a gpio controller
333964cb341SLinus Walleij  */
334964cb341SLinus Walleij 
335964cb341SLinus Walleij struct gpio_pin_range {
336964cb341SLinus Walleij 	struct list_head node;
337964cb341SLinus Walleij 	struct pinctrl_dev *pctldev;
338964cb341SLinus Walleij 	struct pinctrl_gpio_range range;
339964cb341SLinus Walleij };
340964cb341SLinus Walleij 
341964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
342964cb341SLinus Walleij 			   unsigned int gpio_offset, unsigned int pin_offset,
343964cb341SLinus Walleij 			   unsigned int npins);
344964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip,
345964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
346964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group);
347964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip);
348964cb341SLinus Walleij 
349964cb341SLinus Walleij #else
350964cb341SLinus Walleij 
351964cb341SLinus Walleij static inline int
352964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
353964cb341SLinus Walleij 		       unsigned int gpio_offset, unsigned int pin_offset,
354964cb341SLinus Walleij 		       unsigned int npins)
355964cb341SLinus Walleij {
356964cb341SLinus Walleij 	return 0;
357964cb341SLinus Walleij }
358964cb341SLinus Walleij static inline int
359964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip,
360964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
361964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group)
362964cb341SLinus Walleij {
363964cb341SLinus Walleij 	return 0;
364964cb341SLinus Walleij }
365964cb341SLinus Walleij 
366964cb341SLinus Walleij static inline void
367964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip)
368964cb341SLinus Walleij {
369964cb341SLinus Walleij }
370964cb341SLinus Walleij 
371964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */
372964cb341SLinus Walleij 
373abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
374abdc08a3SAlexandre Courbot 					    const char *label);
375f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc);
376f7d4ad98SGuenter Roeck 
377bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */
378bb1e88ccSAlexandre Courbot 
379bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
380bb1e88ccSAlexandre Courbot {
381bb1e88ccSAlexandre Courbot 	/* GPIO can never have been requested */
382bb1e88ccSAlexandre Courbot 	WARN_ON(1);
383bb1e88ccSAlexandre Courbot 	return ERR_PTR(-ENODEV);
384bb1e88ccSAlexandre Courbot }
385bb1e88ccSAlexandre Courbot 
386bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */
387bb1e88ccSAlexandre Courbot 
38879a9becdSAlexandre Courbot #endif
389