xref: /openbmc/linux/include/linux/gpio/driver.h (revision 79b804cb)
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 /**
23c663e5f5SLinus Walleij  * enum single_ended_mode - mode for single ended operation
24c663e5f5SLinus Walleij  * @LINE_MODE_PUSH_PULL: normal mode for a GPIO line, drive actively high/low
25c663e5f5SLinus Walleij  * @LINE_MODE_OPEN_DRAIN: set line to be open drain
26c663e5f5SLinus Walleij  * @LINE_MODE_OPEN_SOURCE: set line to be open source
27c663e5f5SLinus Walleij  */
28c663e5f5SLinus Walleij enum single_ended_mode {
29c663e5f5SLinus Walleij 	LINE_MODE_PUSH_PULL,
30c663e5f5SLinus Walleij 	LINE_MODE_OPEN_DRAIN,
31c663e5f5SLinus Walleij 	LINE_MODE_OPEN_SOURCE,
32c663e5f5SLinus Walleij };
33c663e5f5SLinus Walleij 
34c663e5f5SLinus Walleij /**
3579a9becdSAlexandre Courbot  * struct gpio_chip - abstract a GPIO controller
36df4878e9SLinus Walleij  * @label: a functional name for the GPIO device, such as a part
37df4878e9SLinus Walleij  *	number or the name of the SoC IP-block implementing it.
38ff2b1359SLinus Walleij  * @gpiodev: the internal state holder, opaque struct
3958383c78SLinus Walleij  * @parent: optional parent device providing the GPIOs
4079a9becdSAlexandre Courbot  * @owner: helps prevent removal of modules exporting active GPIOs
4179a9becdSAlexandre Courbot  * @request: optional hook for chip-specific activation, such as
4279a9becdSAlexandre Courbot  *	enabling module power and clock; may sleep
4379a9becdSAlexandre Courbot  * @free: optional hook for chip-specific deactivation, such as
4479a9becdSAlexandre Courbot  *	disabling module power and clock; may sleep
4579a9becdSAlexandre Courbot  * @get_direction: returns direction for signal "offset", 0=out, 1=in,
4679a9becdSAlexandre Courbot  *	(same as GPIOF_DIR_XXX), or negative error
4779a9becdSAlexandre Courbot  * @direction_input: configures signal "offset" as input, or returns error
4879a9becdSAlexandre Courbot  * @direction_output: configures signal "offset" as output, or returns error
4960befd2eSVladimir Zapolskiy  * @get: returns value for signal "offset", 0=low, 1=high, or negative error
5079a9becdSAlexandre Courbot  * @set: assigns output value for signal "offset"
515f424243SRojhalat Ibrahim  * @set_multiple: assigns output values for multiple signals defined by "mask"
5279a9becdSAlexandre Courbot  * @set_debounce: optional hook for setting debounce time for specified gpio in
5379a9becdSAlexandre Courbot  *	interrupt triggered gpio chips
54c663e5f5SLinus Walleij  * @set_single_ended: optional hook for setting a line as open drain, open
55c663e5f5SLinus Walleij  *	source, or non-single ended (restore from open drain/source to normal
56c663e5f5SLinus Walleij  *	push-pull mode) this should be implemented if the hardware supports
57c663e5f5SLinus Walleij  *	open drain or open source settings. The GPIOlib will otherwise try
58c663e5f5SLinus Walleij  *	to emulate open drain/source by not actively driving lines high/low
59c663e5f5SLinus Walleij  *	if a consumer request this. The driver may return -ENOTSUPP if e.g.
60c663e5f5SLinus Walleij  *	it supports just open drain but not open source and is called
61c663e5f5SLinus Walleij  *	with LINE_MODE_OPEN_SOURCE as mode argument.
6279a9becdSAlexandre Courbot  * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
6379a9becdSAlexandre Courbot  *	implementation may not sleep
6479a9becdSAlexandre Courbot  * @dbg_show: optional routine to show contents in debugfs; default code
6579a9becdSAlexandre Courbot  *	will be used when this is omitted, but custom code can show extra
6679a9becdSAlexandre Courbot  *	state (such as pullup/pulldown configuration).
67af6c235dSLinus Walleij  * @base: identifies the first GPIO number handled by this chip;
68af6c235dSLinus Walleij  *	or, if negative during registration, requests dynamic ID allocation.
69af6c235dSLinus Walleij  *	DEPRECATION: providing anything non-negative and nailing the base
7030bb6fb3SGeert Uytterhoeven  *	offset of GPIO chips is deprecated. Please pass -1 as base to
71af6c235dSLinus Walleij  *	let gpiolib select the chip base in all possible cases. We want to
72af6c235dSLinus Walleij  *	get rid of the static GPIO number space in the long run.
7379a9becdSAlexandre Courbot  * @ngpio: the number of GPIOs handled by this controller; the last GPIO
7479a9becdSAlexandre Courbot  *	handled is (base + ngpio - 1).
7579a9becdSAlexandre Courbot  * @names: if set, must be an array of strings to use as alternative
7679a9becdSAlexandre Courbot  *      names for the GPIOs in this chip. Any entry in the array
7779a9becdSAlexandre Courbot  *      may be NULL if there is no alias for the GPIO, however the
7879a9becdSAlexandre Courbot  *      array must be @ngpio entries long.  A name can include a single printk
7979a9becdSAlexandre Courbot  *      format specifier for an unsigned int.  It is substituted by the actual
8079a9becdSAlexandre Courbot  *      number of the gpio.
819fb1f39eSLinus Walleij  * @can_sleep: flag must be set iff get()/set() methods sleep, as they
821c8732bbSLinus Walleij  *	must while accessing GPIO expander chips over I2C or SPI. This
831c8732bbSLinus Walleij  *	implies that if the chip supports IRQs, these IRQs need to be threaded
841c8732bbSLinus Walleij  *	as the chip access may sleep when e.g. reading out the IRQ status
851c8732bbSLinus Walleij  *	registers.
86295494afSOctavian Purdila  * @irq_not_threaded: flag must be set if @can_sleep is set but the
87295494afSOctavian Purdila  *	IRQs don't need to be threaded
880f4630f3SLinus Walleij  * @read_reg: reader function for generic GPIO
890f4630f3SLinus Walleij  * @write_reg: writer function for generic GPIO
900f4630f3SLinus Walleij  * @pin2mask: some generic GPIO controllers work with the big-endian bits
910f4630f3SLinus Walleij  *	notation, e.g. in a 8-bits register, GPIO7 is the least significant
920f4630f3SLinus Walleij  *	bit. This callback assigns the right bit mask.
930f4630f3SLinus Walleij  * @reg_dat: data (in) register for generic GPIO
940f4630f3SLinus Walleij  * @reg_set: output set register (out=high) for generic GPIO
950f4630f3SLinus Walleij  * @reg_clk: output clear register (out=low) for generic GPIO
960f4630f3SLinus Walleij  * @reg_dir: direction setting register for generic GPIO
970f4630f3SLinus Walleij  * @bgpio_bits: number of register bits used for a generic GPIO i.e.
980f4630f3SLinus Walleij  *	<register width> * 8
990f4630f3SLinus Walleij  * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep
1000f4630f3SLinus Walleij  *	shadowed and real data registers writes together.
1010f4630f3SLinus Walleij  * @bgpio_data:	shadowed data register for generic GPIO to clear/set bits
1020f4630f3SLinus Walleij  *	safely.
1030f4630f3SLinus Walleij  * @bgpio_dir: shadowed direction register for generic GPIO to clear/set
1040f4630f3SLinus Walleij  *	direction safely.
10541d6bb4cSGrygorii Strashko  * @irqchip: GPIO IRQ chip impl, provided by GPIO driver
10641d6bb4cSGrygorii Strashko  * @irqdomain: Interrupt translation domain; responsible for mapping
10741d6bb4cSGrygorii Strashko  *	between GPIO hwirq number and linux irq number
10841d6bb4cSGrygorii Strashko  * @irq_base: first linux IRQ number assigned to GPIO IRQ chip (deprecated)
10941d6bb4cSGrygorii Strashko  * @irq_handler: the irq handler to use (often a predefined irq core function)
11041d6bb4cSGrygorii Strashko  *	for GPIO IRQs, provided by GPIO driver
11141d6bb4cSGrygorii Strashko  * @irq_default_type: default IRQ triggering type applied during GPIO driver
11241d6bb4cSGrygorii Strashko  *	initialization, provided by GPIO driver
11341d6bb4cSGrygorii Strashko  * @irq_parent: GPIO IRQ chip parent/bank linux irq number,
11441d6bb4cSGrygorii Strashko  *	provided by GPIO driver
11579b804cbSMika Westerberg  * @irq_need_valid_mask: If set core allocates @irq_valid_mask with all
11679b804cbSMika Westerberg  *	bits set to one
11779b804cbSMika Westerberg  * @irq_valid_mask: If not %NULL holds bitmask of GPIOs which are valid to
11879b804cbSMika Westerberg  *	be included in IRQ domain of the chip
11941d6bb4cSGrygorii Strashko  * @lock_key: per GPIO IRQ chip lockdep class
12079a9becdSAlexandre Courbot  *
12179a9becdSAlexandre Courbot  * A gpio_chip can help platforms abstract various sources of GPIOs so
12279a9becdSAlexandre Courbot  * they can all be accessed through a common programing interface.
12379a9becdSAlexandre Courbot  * Example sources would be SOC controllers, FPGAs, multifunction
12479a9becdSAlexandre Courbot  * chips, dedicated GPIO expanders, and so on.
12579a9becdSAlexandre Courbot  *
12679a9becdSAlexandre Courbot  * Each chip controls a number of signals, identified in method calls
12779a9becdSAlexandre Courbot  * by "offset" values in the range 0..(@ngpio - 1).  When those signals
12879a9becdSAlexandre Courbot  * are referenced through calls like gpio_get_value(gpio), the offset
12979a9becdSAlexandre Courbot  * is calculated by subtracting @base from the gpio number.
13079a9becdSAlexandre Courbot  */
13179a9becdSAlexandre Courbot struct gpio_chip {
13279a9becdSAlexandre Courbot 	const char		*label;
133ff2b1359SLinus Walleij 	struct gpio_device	*gpiodev;
13458383c78SLinus Walleij 	struct device		*parent;
13579a9becdSAlexandre Courbot 	struct module		*owner;
13679a9becdSAlexandre Courbot 
13779a9becdSAlexandre Courbot 	int			(*request)(struct gpio_chip *chip,
13879a9becdSAlexandre Courbot 						unsigned offset);
13979a9becdSAlexandre Courbot 	void			(*free)(struct gpio_chip *chip,
14079a9becdSAlexandre Courbot 						unsigned offset);
14179a9becdSAlexandre Courbot 	int			(*get_direction)(struct gpio_chip *chip,
14279a9becdSAlexandre Courbot 						unsigned offset);
14379a9becdSAlexandre Courbot 	int			(*direction_input)(struct gpio_chip *chip,
14479a9becdSAlexandre Courbot 						unsigned offset);
14579a9becdSAlexandre Courbot 	int			(*direction_output)(struct gpio_chip *chip,
14679a9becdSAlexandre Courbot 						unsigned offset, int value);
14779a9becdSAlexandre Courbot 	int			(*get)(struct gpio_chip *chip,
14879a9becdSAlexandre Courbot 						unsigned offset);
14979a9becdSAlexandre Courbot 	void			(*set)(struct gpio_chip *chip,
15079a9becdSAlexandre Courbot 						unsigned offset, int value);
1515f424243SRojhalat Ibrahim 	void			(*set_multiple)(struct gpio_chip *chip,
1525f424243SRojhalat Ibrahim 						unsigned long *mask,
1535f424243SRojhalat Ibrahim 						unsigned long *bits);
15479a9becdSAlexandre Courbot 	int			(*set_debounce)(struct gpio_chip *chip,
15579a9becdSAlexandre Courbot 						unsigned offset,
15679a9becdSAlexandre Courbot 						unsigned debounce);
157c663e5f5SLinus Walleij 	int			(*set_single_ended)(struct gpio_chip *chip,
158c663e5f5SLinus Walleij 						unsigned offset,
159c663e5f5SLinus Walleij 						enum single_ended_mode mode);
16079a9becdSAlexandre Courbot 
16179a9becdSAlexandre Courbot 	int			(*to_irq)(struct gpio_chip *chip,
16279a9becdSAlexandre Courbot 						unsigned offset);
16379a9becdSAlexandre Courbot 
16479a9becdSAlexandre Courbot 	void			(*dbg_show)(struct seq_file *s,
16579a9becdSAlexandre Courbot 						struct gpio_chip *chip);
16679a9becdSAlexandre Courbot 	int			base;
16779a9becdSAlexandre Courbot 	u16			ngpio;
16879a9becdSAlexandre Courbot 	const char		*const *names;
1699fb1f39eSLinus Walleij 	bool			can_sleep;
170295494afSOctavian Purdila 	bool			irq_not_threaded;
17179a9becdSAlexandre Courbot 
1720f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC)
1730f4630f3SLinus Walleij 	unsigned long (*read_reg)(void __iomem *reg);
1740f4630f3SLinus Walleij 	void (*write_reg)(void __iomem *reg, unsigned long data);
1750f4630f3SLinus Walleij 	unsigned long (*pin2mask)(struct gpio_chip *gc, unsigned int pin);
1760f4630f3SLinus Walleij 	void __iomem *reg_dat;
1770f4630f3SLinus Walleij 	void __iomem *reg_set;
1780f4630f3SLinus Walleij 	void __iomem *reg_clr;
1790f4630f3SLinus Walleij 	void __iomem *reg_dir;
1800f4630f3SLinus Walleij 	int bgpio_bits;
1810f4630f3SLinus Walleij 	spinlock_t bgpio_lock;
1820f4630f3SLinus Walleij 	unsigned long bgpio_data;
1830f4630f3SLinus Walleij 	unsigned long bgpio_dir;
1840f4630f3SLinus Walleij #endif
1850f4630f3SLinus Walleij 
18614250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
18714250520SLinus Walleij 	/*
1887d75a871SPaul Bolle 	 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
18914250520SLinus Walleij 	 * to handle IRQs for most practical cases.
19014250520SLinus Walleij 	 */
19114250520SLinus Walleij 	struct irq_chip		*irqchip;
19214250520SLinus Walleij 	struct irq_domain	*irqdomain;
193c3626fdeSLinus Walleij 	unsigned int		irq_base;
19414250520SLinus Walleij 	irq_flow_handler_t	irq_handler;
19514250520SLinus Walleij 	unsigned int		irq_default_type;
19625e4fe92SDmitry Eremin-Solenikov 	int			irq_parent;
19779b804cbSMika Westerberg 	bool			irq_need_valid_mask;
19879b804cbSMika Westerberg 	unsigned long		*irq_valid_mask;
199a0a8bcf4SGrygorii Strashko 	struct lock_class_key	*lock_key;
20014250520SLinus Walleij #endif
20114250520SLinus Walleij 
20279a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO)
20379a9becdSAlexandre Courbot 	/*
20479a9becdSAlexandre Courbot 	 * If CONFIG_OF is enabled, then all GPIO controllers described in the
20579a9becdSAlexandre Courbot 	 * device tree automatically may have an OF translation
20679a9becdSAlexandre Courbot 	 */
20779a9becdSAlexandre Courbot 	struct device_node *of_node;
20879a9becdSAlexandre Courbot 	int of_gpio_n_cells;
20979a9becdSAlexandre Courbot 	int (*of_xlate)(struct gpio_chip *gc,
21079a9becdSAlexandre Courbot 			const struct of_phandle_args *gpiospec, u32 *flags);
21179a9becdSAlexandre Courbot #endif
21279a9becdSAlexandre Courbot };
21379a9becdSAlexandre Courbot 
21479a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip,
21579a9becdSAlexandre Courbot 			unsigned offset);
21679a9becdSAlexandre Courbot 
21779a9becdSAlexandre Courbot /* add/remove chips */
218b08ea35aSLinus Walleij extern int gpiochip_add_data(struct gpio_chip *chip, void *data);
219b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip)
220b08ea35aSLinus Walleij {
221b08ea35aSLinus Walleij 	return gpiochip_add_data(chip, NULL);
222b08ea35aSLinus Walleij }
223e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip);
2240cf3292cSLaxman Dewangan extern int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
2250cf3292cSLaxman Dewangan 				  void *data);
2260cf3292cSLaxman Dewangan extern void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip);
2270cf3292cSLaxman Dewangan 
22879a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data,
22979a9becdSAlexandre Courbot 			      int (*match)(struct gpio_chip *chip, void *data));
23079a9becdSAlexandre Courbot 
23179a9becdSAlexandre Courbot /* lock/unlock as IRQ */
232e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset);
233e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset);
2346cee3821SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset);
23579a9becdSAlexandre Courbot 
236143b65d6SLinus Walleij /* Line status inquiry for drivers */
237143b65d6SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset);
238143b65d6SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset);
239143b65d6SLinus Walleij 
240b08ea35aSLinus Walleij /* get driver data */
24143c54ecaSLinus Walleij void *gpiochip_get_data(struct gpio_chip *chip);
242b08ea35aSLinus Walleij 
243bb1e88ccSAlexandre Courbot struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc);
244bb1e88ccSAlexandre Courbot 
2450f4630f3SLinus Walleij struct bgpio_pdata {
2460f4630f3SLinus Walleij 	const char *label;
2470f4630f3SLinus Walleij 	int base;
2480f4630f3SLinus Walleij 	int ngpio;
2490f4630f3SLinus Walleij };
2500f4630f3SLinus Walleij 
251c474e348SArnd Bergmann #if IS_ENABLED(CONFIG_GPIO_GENERIC)
252c474e348SArnd Bergmann 
2530f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev,
2540f4630f3SLinus Walleij 	       unsigned long sz, void __iomem *dat, void __iomem *set,
2550f4630f3SLinus Walleij 	       void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
2560f4630f3SLinus Walleij 	       unsigned long flags);
2570f4630f3SLinus Walleij 
2580f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN		BIT(0)
2590f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET	BIT(1) /* reg_set is unreadable */
2600f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR	BIT(2) /* reg_dir is unreadable */
2610f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER	BIT(3)
2620f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET	BIT(4) /* reg_set stores output value */
2630f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT		BIT(5) /* only input */
2640f4630f3SLinus Walleij 
2650f4630f3SLinus Walleij #endif
2660f4630f3SLinus Walleij 
26714250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
26814250520SLinus Walleij 
26914250520SLinus Walleij void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
27014250520SLinus Walleij 		struct irq_chip *irqchip,
27114250520SLinus Walleij 		int parent_irq,
27214250520SLinus Walleij 		irq_flow_handler_t parent_handler);
27314250520SLinus Walleij 
274a0a8bcf4SGrygorii Strashko int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
27514250520SLinus Walleij 			  struct irq_chip *irqchip,
27614250520SLinus Walleij 			  unsigned int first_irq,
27714250520SLinus Walleij 			  irq_flow_handler_t handler,
278a0a8bcf4SGrygorii Strashko 			  unsigned int type,
279a0a8bcf4SGrygorii Strashko 			  struct lock_class_key *lock_key);
280a0a8bcf4SGrygorii Strashko 
281a0a8bcf4SGrygorii Strashko #ifdef CONFIG_LOCKDEP
282a0a8bcf4SGrygorii Strashko #define gpiochip_irqchip_add(...)				\
283a0a8bcf4SGrygorii Strashko (								\
284a0a8bcf4SGrygorii Strashko 	({							\
285a0a8bcf4SGrygorii Strashko 		static struct lock_class_key _key;		\
286a0a8bcf4SGrygorii Strashko 		_gpiochip_irqchip_add(__VA_ARGS__, &_key);	\
287a0a8bcf4SGrygorii Strashko 	})							\
288a0a8bcf4SGrygorii Strashko )
289a0a8bcf4SGrygorii Strashko #else
290a0a8bcf4SGrygorii Strashko #define gpiochip_irqchip_add(...)				\
291a0a8bcf4SGrygorii Strashko 	_gpiochip_irqchip_add(__VA_ARGS__, NULL)
292a0a8bcf4SGrygorii Strashko #endif
29314250520SLinus Walleij 
2947d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */
29514250520SLinus Walleij 
296c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset);
297c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset);
298c771c2f4SJonas Gorski 
299964cb341SLinus Walleij #ifdef CONFIG_PINCTRL
300964cb341SLinus Walleij 
301964cb341SLinus Walleij /**
302964cb341SLinus Walleij  * struct gpio_pin_range - pin range controlled by a gpio chip
303964cb341SLinus Walleij  * @head: list for maintaining set of pin ranges, used internally
304964cb341SLinus Walleij  * @pctldev: pinctrl device which handles corresponding pins
305964cb341SLinus Walleij  * @range: actual range of pins controlled by a gpio controller
306964cb341SLinus Walleij  */
307964cb341SLinus Walleij 
308964cb341SLinus Walleij struct gpio_pin_range {
309964cb341SLinus Walleij 	struct list_head node;
310964cb341SLinus Walleij 	struct pinctrl_dev *pctldev;
311964cb341SLinus Walleij 	struct pinctrl_gpio_range range;
312964cb341SLinus Walleij };
313964cb341SLinus Walleij 
314964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
315964cb341SLinus Walleij 			   unsigned int gpio_offset, unsigned int pin_offset,
316964cb341SLinus Walleij 			   unsigned int npins);
317964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip,
318964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
319964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group);
320964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip);
321964cb341SLinus Walleij 
322964cb341SLinus Walleij #else
323964cb341SLinus Walleij 
324964cb341SLinus Walleij static inline int
325964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
326964cb341SLinus Walleij 		       unsigned int gpio_offset, unsigned int pin_offset,
327964cb341SLinus Walleij 		       unsigned int npins)
328964cb341SLinus Walleij {
329964cb341SLinus Walleij 	return 0;
330964cb341SLinus Walleij }
331964cb341SLinus Walleij static inline int
332964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip,
333964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
334964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group)
335964cb341SLinus Walleij {
336964cb341SLinus Walleij 	return 0;
337964cb341SLinus Walleij }
338964cb341SLinus Walleij 
339964cb341SLinus Walleij static inline void
340964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip)
341964cb341SLinus Walleij {
342964cb341SLinus Walleij }
343964cb341SLinus Walleij 
344964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */
345964cb341SLinus Walleij 
346abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
347abdc08a3SAlexandre Courbot 					    const char *label);
348f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc);
349f7d4ad98SGuenter Roeck 
350bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */
351bb1e88ccSAlexandre Courbot 
352bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
353bb1e88ccSAlexandre Courbot {
354bb1e88ccSAlexandre Courbot 	/* GPIO can never have been requested */
355bb1e88ccSAlexandre Courbot 	WARN_ON(1);
356bb1e88ccSAlexandre Courbot 	return ERR_PTR(-ENODEV);
357bb1e88ccSAlexandre Courbot }
358bb1e88ccSAlexandre Courbot 
359bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */
360bb1e88ccSAlexandre Courbot 
36179a9becdSAlexandre Courbot #endif
362