xref: /openbmc/linux/include/linux/gpio/driver.h (revision 5923ea6c)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
279a9becdSAlexandre Courbot #ifndef __LINUX_GPIO_DRIVER_H
379a9becdSAlexandre Courbot #define __LINUX_GPIO_DRIVER_H
479a9becdSAlexandre Courbot 
5ff2b1359SLinus Walleij #include <linux/device.h>
679a9becdSAlexandre Courbot #include <linux/types.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>
122956b5d9SMika Westerberg #include <linux/pinctrl/pinconf-generic.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;
19d47529b2SPaul Gortmaker struct module;
2021abf103SLinus Walleij enum gpiod_flags;
215923ea6cSLinus Walleij enum gpio_lookup_flags;
2279a9becdSAlexandre Courbot 
23bb1e88ccSAlexandre Courbot #ifdef CONFIG_GPIOLIB
24bb1e88ccSAlexandre Courbot 
25c44eafd7SThierry Reding #ifdef CONFIG_GPIOLIB_IRQCHIP
26c44eafd7SThierry Reding /**
27c44eafd7SThierry Reding  * struct gpio_irq_chip - GPIO interrupt controller
28c44eafd7SThierry Reding  */
29c44eafd7SThierry Reding struct gpio_irq_chip {
30c44eafd7SThierry Reding 	/**
31da80ff81SThierry Reding 	 * @chip:
32da80ff81SThierry Reding 	 *
33da80ff81SThierry Reding 	 * GPIO IRQ chip implementation, provided by GPIO driver.
34da80ff81SThierry Reding 	 */
35da80ff81SThierry Reding 	struct irq_chip *chip;
36da80ff81SThierry Reding 
37da80ff81SThierry Reding 	/**
38f0fbe7bcSThierry Reding 	 * @domain:
39f0fbe7bcSThierry Reding 	 *
40f0fbe7bcSThierry Reding 	 * Interrupt translation domain; responsible for mapping between GPIO
41f0fbe7bcSThierry Reding 	 * hwirq number and Linux IRQ number.
42f0fbe7bcSThierry Reding 	 */
43f0fbe7bcSThierry Reding 	struct irq_domain *domain;
44f0fbe7bcSThierry Reding 
45f0fbe7bcSThierry Reding 	/**
46c44eafd7SThierry Reding 	 * @domain_ops:
47c44eafd7SThierry Reding 	 *
48c44eafd7SThierry Reding 	 * Table of interrupt domain operations for this IRQ chip.
49c44eafd7SThierry Reding 	 */
50c44eafd7SThierry Reding 	const struct irq_domain_ops *domain_ops;
51c44eafd7SThierry Reding 
52c44eafd7SThierry Reding 	/**
53c7a0aa59SThierry Reding 	 * @handler:
54c7a0aa59SThierry Reding 	 *
55c7a0aa59SThierry Reding 	 * The IRQ handler to use (often a predefined IRQ core function) for
56c7a0aa59SThierry Reding 	 * GPIO IRQs, provided by GPIO driver.
57c7a0aa59SThierry Reding 	 */
58c7a0aa59SThierry Reding 	irq_flow_handler_t handler;
59c7a0aa59SThierry Reding 
60c7a0aa59SThierry Reding 	/**
613634eeb0SThierry Reding 	 * @default_type:
623634eeb0SThierry Reding 	 *
633634eeb0SThierry Reding 	 * Default IRQ triggering type applied during GPIO driver
643634eeb0SThierry Reding 	 * initialization, provided by GPIO driver.
653634eeb0SThierry Reding 	 */
663634eeb0SThierry Reding 	unsigned int default_type;
673634eeb0SThierry Reding 
683634eeb0SThierry Reding 	/**
69ca9df053SThierry Reding 	 * @lock_key:
70ca9df053SThierry Reding 	 *
7102ad0437SRandy Dunlap 	 * Per GPIO IRQ chip lockdep class for IRQ lock.
72ca9df053SThierry Reding 	 */
73ca9df053SThierry Reding 	struct lock_class_key *lock_key;
7402ad0437SRandy Dunlap 
7502ad0437SRandy Dunlap 	/**
7602ad0437SRandy Dunlap 	 * @request_key:
7702ad0437SRandy Dunlap 	 *
7802ad0437SRandy Dunlap 	 * Per GPIO IRQ chip lockdep class for IRQ request.
7902ad0437SRandy Dunlap 	 */
8039c3fd58SAndrew Lunn 	struct lock_class_key *request_key;
81ca9df053SThierry Reding 
82ca9df053SThierry Reding 	/**
83c44eafd7SThierry Reding 	 * @parent_handler:
84c44eafd7SThierry Reding 	 *
85c44eafd7SThierry Reding 	 * The interrupt handler for the GPIO chip's parent interrupts, may be
86c44eafd7SThierry Reding 	 * NULL if the parent interrupts are nested rather than cascaded.
87c44eafd7SThierry Reding 	 */
88c44eafd7SThierry Reding 	irq_flow_handler_t parent_handler;
89c44eafd7SThierry Reding 
90c44eafd7SThierry Reding 	/**
91c44eafd7SThierry Reding 	 * @parent_handler_data:
92c44eafd7SThierry Reding 	 *
93c44eafd7SThierry Reding 	 * Data associated, and passed to, the handler for the parent
94c44eafd7SThierry Reding 	 * interrupt.
95c44eafd7SThierry Reding 	 */
96c44eafd7SThierry Reding 	void *parent_handler_data;
9739e5f096SThierry Reding 
9839e5f096SThierry Reding 	/**
9939e5f096SThierry Reding 	 * @num_parents:
10039e5f096SThierry Reding 	 *
10139e5f096SThierry Reding 	 * The number of interrupt parents of a GPIO chip.
10239e5f096SThierry Reding 	 */
10339e5f096SThierry Reding 	unsigned int num_parents;
10439e5f096SThierry Reding 
10539e5f096SThierry Reding 	/**
1063e779a2eSStephen Boyd 	 * @parent_irq:
1073e779a2eSStephen Boyd 	 *
1083e779a2eSStephen Boyd 	 * For use by gpiochip_set_cascaded_irqchip()
1093e779a2eSStephen Boyd 	 */
1103e779a2eSStephen Boyd 	unsigned int parent_irq;
1113e779a2eSStephen Boyd 
1123e779a2eSStephen Boyd 	/**
11339e5f096SThierry Reding 	 * @parents:
11439e5f096SThierry Reding 	 *
11539e5f096SThierry Reding 	 * A list of interrupt parents of a GPIO chip. This is owned by the
11639e5f096SThierry Reding 	 * driver, so the core will only reference this list, not modify it.
11739e5f096SThierry Reding 	 */
11839e5f096SThierry Reding 	unsigned int *parents;
119dc6bafeeSThierry Reding 
120dc6bafeeSThierry Reding 	/**
121e0d89728SThierry Reding 	 * @map:
122e0d89728SThierry Reding 	 *
123e0d89728SThierry Reding 	 * A list of interrupt parents for each line of a GPIO chip.
124e0d89728SThierry Reding 	 */
125e0d89728SThierry Reding 	unsigned int *map;
126e0d89728SThierry Reding 
127e0d89728SThierry Reding 	/**
12860ed54caSThierry Reding 	 * @threaded:
129dc6bafeeSThierry Reding 	 *
13060ed54caSThierry Reding 	 * True if set the interrupt handling uses nested threads.
131dc6bafeeSThierry Reding 	 */
13260ed54caSThierry Reding 	bool threaded;
133dc7b0387SThierry Reding 
134dc7b0387SThierry Reding 	/**
135dc7b0387SThierry Reding 	 * @need_valid_mask:
136dc7b0387SThierry Reding 	 *
137dc7b0387SThierry Reding 	 * If set core allocates @valid_mask with all bits set to one.
138dc7b0387SThierry Reding 	 */
139dc7b0387SThierry Reding 	bool need_valid_mask;
140dc7b0387SThierry Reding 
141dc7b0387SThierry Reding 	/**
142dc7b0387SThierry Reding 	 * @valid_mask:
143dc7b0387SThierry Reding 	 *
144dc7b0387SThierry Reding 	 * If not %NULL holds bitmask of GPIOs which are valid to be included
145dc7b0387SThierry Reding 	 * in IRQ domain of the chip.
146dc7b0387SThierry Reding 	 */
147dc7b0387SThierry Reding 	unsigned long *valid_mask;
1488302cf58SThierry Reding 
1498302cf58SThierry Reding 	/**
1508302cf58SThierry Reding 	 * @first:
1518302cf58SThierry Reding 	 *
1528302cf58SThierry Reding 	 * Required for static IRQ allocation. If set, irq_domain_add_simple()
1538302cf58SThierry Reding 	 * will allocate and map all IRQs during initialization.
1548302cf58SThierry Reding 	 */
1558302cf58SThierry Reding 	unsigned int first;
156461c1a7dSHans Verkuil 
157461c1a7dSHans Verkuil 	/**
158461c1a7dSHans Verkuil 	 * @irq_enable:
159461c1a7dSHans Verkuil 	 *
160461c1a7dSHans Verkuil 	 * Store old irq_chip irq_enable callback
161461c1a7dSHans Verkuil 	 */
162461c1a7dSHans Verkuil 	void		(*irq_enable)(struct irq_data *data);
163461c1a7dSHans Verkuil 
164461c1a7dSHans Verkuil 	/**
165461c1a7dSHans Verkuil 	 * @irq_disable:
166461c1a7dSHans Verkuil 	 *
167461c1a7dSHans Verkuil 	 * Store old irq_chip irq_disable callback
168461c1a7dSHans Verkuil 	 */
169461c1a7dSHans Verkuil 	void		(*irq_disable)(struct irq_data *data);
170c44eafd7SThierry Reding };
171c44eafd7SThierry Reding #endif
172c44eafd7SThierry Reding 
17379a9becdSAlexandre Courbot /**
17479a9becdSAlexandre Courbot  * struct gpio_chip - abstract a GPIO controller
175df4878e9SLinus Walleij  * @label: a functional name for the GPIO device, such as a part
176df4878e9SLinus Walleij  *	number or the name of the SoC IP-block implementing it.
177ff2b1359SLinus Walleij  * @gpiodev: the internal state holder, opaque struct
17858383c78SLinus Walleij  * @parent: optional parent device providing the GPIOs
17979a9becdSAlexandre Courbot  * @owner: helps prevent removal of modules exporting active GPIOs
18079a9becdSAlexandre Courbot  * @request: optional hook for chip-specific activation, such as
18179a9becdSAlexandre Courbot  *	enabling module power and clock; may sleep
18279a9becdSAlexandre Courbot  * @free: optional hook for chip-specific deactivation, such as
18379a9becdSAlexandre Courbot  *	disabling module power and clock; may sleep
18479a9becdSAlexandre Courbot  * @get_direction: returns direction for signal "offset", 0=out, 1=in,
185e48d194dSLinus Walleij  *	(same as GPIOF_DIR_XXX), or negative error.
186e48d194dSLinus Walleij  *	It is recommended to always implement this function, even on
187e48d194dSLinus Walleij  *	input-only or output-only gpio chips.
18879a9becdSAlexandre Courbot  * @direction_input: configures signal "offset" as input, or returns error
189e48d194dSLinus Walleij  *	This can be omitted on input-only or output-only gpio chips.
19079a9becdSAlexandre Courbot  * @direction_output: configures signal "offset" as output, or returns error
191e48d194dSLinus Walleij  *	This can be omitted on input-only or output-only gpio chips.
19260befd2eSVladimir Zapolskiy  * @get: returns value for signal "offset", 0=low, 1=high, or negative error
193eec1d566SLukas Wunner  * @get_multiple: reads values for multiple signals defined by "mask" and
194eec1d566SLukas Wunner  *	stores them in "bits", returns 0 on success or negative error
19579a9becdSAlexandre Courbot  * @set: assigns output value for signal "offset"
1965f424243SRojhalat Ibrahim  * @set_multiple: assigns output values for multiple signals defined by "mask"
1972956b5d9SMika Westerberg  * @set_config: optional hook for all kinds of settings. Uses the same
1982956b5d9SMika Westerberg  *	packed config format as generic pinconf.
19979a9becdSAlexandre Courbot  * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
20079a9becdSAlexandre Courbot  *	implementation may not sleep
20179a9becdSAlexandre Courbot  * @dbg_show: optional routine to show contents in debugfs; default code
20279a9becdSAlexandre Courbot  *	will be used when this is omitted, but custom code can show extra
20379a9becdSAlexandre Courbot  *	state (such as pullup/pulldown configuration).
204af6c235dSLinus Walleij  * @base: identifies the first GPIO number handled by this chip;
205af6c235dSLinus Walleij  *	or, if negative during registration, requests dynamic ID allocation.
206af6c235dSLinus Walleij  *	DEPRECATION: providing anything non-negative and nailing the base
20730bb6fb3SGeert Uytterhoeven  *	offset of GPIO chips is deprecated. Please pass -1 as base to
208af6c235dSLinus Walleij  *	let gpiolib select the chip base in all possible cases. We want to
209af6c235dSLinus Walleij  *	get rid of the static GPIO number space in the long run.
21079a9becdSAlexandre Courbot  * @ngpio: the number of GPIOs handled by this controller; the last GPIO
21179a9becdSAlexandre Courbot  *	handled is (base + ngpio - 1).
21279a9becdSAlexandre Courbot  * @names: if set, must be an array of strings to use as alternative
21379a9becdSAlexandre Courbot  *      names for the GPIOs in this chip. Any entry in the array
21479a9becdSAlexandre Courbot  *      may be NULL if there is no alias for the GPIO, however the
21579a9becdSAlexandre Courbot  *      array must be @ngpio entries long.  A name can include a single printk
21679a9becdSAlexandre Courbot  *      format specifier for an unsigned int.  It is substituted by the actual
21779a9becdSAlexandre Courbot  *      number of the gpio.
2189fb1f39eSLinus Walleij  * @can_sleep: flag must be set iff get()/set() methods sleep, as they
2191c8732bbSLinus Walleij  *	must while accessing GPIO expander chips over I2C or SPI. This
2201c8732bbSLinus Walleij  *	implies that if the chip supports IRQs, these IRQs need to be threaded
2211c8732bbSLinus Walleij  *	as the chip access may sleep when e.g. reading out the IRQ status
2221c8732bbSLinus Walleij  *	registers.
2230f4630f3SLinus Walleij  * @read_reg: reader function for generic GPIO
2240f4630f3SLinus Walleij  * @write_reg: writer function for generic GPIO
22524efd94bSLinus Walleij  * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing
22624efd94bSLinus Walleij  *	line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the
22724efd94bSLinus Walleij  *	generic GPIO core. It is for internal housekeeping only.
2280f4630f3SLinus Walleij  * @reg_dat: data (in) register for generic GPIO
2290f4630f3SLinus Walleij  * @reg_set: output set register (out=high) for generic GPIO
23008bcd3edSAnthony Best  * @reg_clr: output clear register (out=low) for generic GPIO
231f69e00bdSLinus Walleij  * @reg_dir_out: direction out setting register for generic GPIO
232f69e00bdSLinus Walleij  * @reg_dir_in: direction in setting register for generic GPIO
233f69e00bdSLinus Walleij  * @bgpio_dir_unreadable: indicates that the direction register(s) cannot
234f69e00bdSLinus Walleij  *	be read and we need to rely on out internal state tracking.
2350f4630f3SLinus Walleij  * @bgpio_bits: number of register bits used for a generic GPIO i.e.
2360f4630f3SLinus Walleij  *	<register width> * 8
2370f4630f3SLinus Walleij  * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep
2380f4630f3SLinus Walleij  *	shadowed and real data registers writes together.
2390f4630f3SLinus Walleij  * @bgpio_data:	shadowed data register for generic GPIO to clear/set bits
2400f4630f3SLinus Walleij  *	safely.
2410f4630f3SLinus Walleij  * @bgpio_dir: shadowed direction register for generic GPIO to clear/set
242f69e00bdSLinus Walleij  *	direction safely. A "1" in this word means the line is set as
243f69e00bdSLinus Walleij  *	output.
24479a9becdSAlexandre Courbot  *
24579a9becdSAlexandre Courbot  * A gpio_chip can help platforms abstract various sources of GPIOs so
24679a9becdSAlexandre Courbot  * they can all be accessed through a common programing interface.
24779a9becdSAlexandre Courbot  * Example sources would be SOC controllers, FPGAs, multifunction
24879a9becdSAlexandre Courbot  * chips, dedicated GPIO expanders, and so on.
24979a9becdSAlexandre Courbot  *
25079a9becdSAlexandre Courbot  * Each chip controls a number of signals, identified in method calls
25179a9becdSAlexandre Courbot  * by "offset" values in the range 0..(@ngpio - 1).  When those signals
25279a9becdSAlexandre Courbot  * are referenced through calls like gpio_get_value(gpio), the offset
25379a9becdSAlexandre Courbot  * is calculated by subtracting @base from the gpio number.
25479a9becdSAlexandre Courbot  */
25579a9becdSAlexandre Courbot struct gpio_chip {
25679a9becdSAlexandre Courbot 	const char		*label;
257ff2b1359SLinus Walleij 	struct gpio_device	*gpiodev;
25858383c78SLinus Walleij 	struct device		*parent;
25979a9becdSAlexandre Courbot 	struct module		*owner;
26079a9becdSAlexandre Courbot 
26179a9becdSAlexandre Courbot 	int			(*request)(struct gpio_chip *chip,
26279a9becdSAlexandre Courbot 						unsigned offset);
26379a9becdSAlexandre Courbot 	void			(*free)(struct gpio_chip *chip,
26479a9becdSAlexandre Courbot 						unsigned offset);
26579a9becdSAlexandre Courbot 	int			(*get_direction)(struct gpio_chip *chip,
26679a9becdSAlexandre Courbot 						unsigned offset);
26779a9becdSAlexandre Courbot 	int			(*direction_input)(struct gpio_chip *chip,
26879a9becdSAlexandre Courbot 						unsigned offset);
26979a9becdSAlexandre Courbot 	int			(*direction_output)(struct gpio_chip *chip,
27079a9becdSAlexandre Courbot 						unsigned offset, int value);
27179a9becdSAlexandre Courbot 	int			(*get)(struct gpio_chip *chip,
27279a9becdSAlexandre Courbot 						unsigned offset);
273eec1d566SLukas Wunner 	int			(*get_multiple)(struct gpio_chip *chip,
274eec1d566SLukas Wunner 						unsigned long *mask,
275eec1d566SLukas Wunner 						unsigned long *bits);
27679a9becdSAlexandre Courbot 	void			(*set)(struct gpio_chip *chip,
27779a9becdSAlexandre Courbot 						unsigned offset, int value);
2785f424243SRojhalat Ibrahim 	void			(*set_multiple)(struct gpio_chip *chip,
2795f424243SRojhalat Ibrahim 						unsigned long *mask,
2805f424243SRojhalat Ibrahim 						unsigned long *bits);
2812956b5d9SMika Westerberg 	int			(*set_config)(struct gpio_chip *chip,
28279a9becdSAlexandre Courbot 					      unsigned offset,
2832956b5d9SMika Westerberg 					      unsigned long config);
28479a9becdSAlexandre Courbot 	int			(*to_irq)(struct gpio_chip *chip,
28579a9becdSAlexandre Courbot 						unsigned offset);
28679a9becdSAlexandre Courbot 
28779a9becdSAlexandre Courbot 	void			(*dbg_show)(struct seq_file *s,
28879a9becdSAlexandre Courbot 						struct gpio_chip *chip);
289f8ec92a9SRicardo Ribalda Delgado 
290f8ec92a9SRicardo Ribalda Delgado 	int			(*init_valid_mask)(struct gpio_chip *chip);
291f8ec92a9SRicardo Ribalda Delgado 
29279a9becdSAlexandre Courbot 	int			base;
29379a9becdSAlexandre Courbot 	u16			ngpio;
29479a9becdSAlexandre Courbot 	const char		*const *names;
2959fb1f39eSLinus Walleij 	bool			can_sleep;
29679a9becdSAlexandre Courbot 
2970f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC)
2980f4630f3SLinus Walleij 	unsigned long (*read_reg)(void __iomem *reg);
2990f4630f3SLinus Walleij 	void (*write_reg)(void __iomem *reg, unsigned long data);
30024efd94bSLinus Walleij 	bool be_bits;
3010f4630f3SLinus Walleij 	void __iomem *reg_dat;
3020f4630f3SLinus Walleij 	void __iomem *reg_set;
3030f4630f3SLinus Walleij 	void __iomem *reg_clr;
304f69e00bdSLinus Walleij 	void __iomem *reg_dir_out;
305f69e00bdSLinus Walleij 	void __iomem *reg_dir_in;
306f69e00bdSLinus Walleij 	bool bgpio_dir_unreadable;
3070f4630f3SLinus Walleij 	int bgpio_bits;
3080f4630f3SLinus Walleij 	spinlock_t bgpio_lock;
3090f4630f3SLinus Walleij 	unsigned long bgpio_data;
3100f4630f3SLinus Walleij 	unsigned long bgpio_dir;
3110f4630f3SLinus Walleij #endif
3120f4630f3SLinus Walleij 
31314250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
31414250520SLinus Walleij 	/*
3157d75a871SPaul Bolle 	 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
31614250520SLinus Walleij 	 * to handle IRQs for most practical cases.
31714250520SLinus Walleij 	 */
318c44eafd7SThierry Reding 
319c44eafd7SThierry Reding 	/**
320c44eafd7SThierry Reding 	 * @irq:
321c44eafd7SThierry Reding 	 *
322c44eafd7SThierry Reding 	 * Integrates interrupt chip functionality with the GPIO chip. Can be
323c44eafd7SThierry Reding 	 * used to handle IRQs for most practical cases.
324c44eafd7SThierry Reding 	 */
325c44eafd7SThierry Reding 	struct gpio_irq_chip irq;
32614250520SLinus Walleij #endif
32714250520SLinus Walleij 
328726cb3baSStephen Boyd 	/**
329726cb3baSStephen Boyd 	 * @need_valid_mask:
330726cb3baSStephen Boyd 	 *
331f8ec92a9SRicardo Ribalda Delgado 	 * If set core allocates @valid_mask with all its values initialized
332f8ec92a9SRicardo Ribalda Delgado 	 * with init_valid_mask() or set to one if init_valid_mask() is not
333f8ec92a9SRicardo Ribalda Delgado 	 * defined
334726cb3baSStephen Boyd 	 */
335726cb3baSStephen Boyd 	bool need_valid_mask;
336726cb3baSStephen Boyd 
337726cb3baSStephen Boyd 	/**
338726cb3baSStephen Boyd 	 * @valid_mask:
339726cb3baSStephen Boyd 	 *
340726cb3baSStephen Boyd 	 * If not %NULL holds bitmask of GPIOs which are valid to be used
341726cb3baSStephen Boyd 	 * from the chip.
342726cb3baSStephen Boyd 	 */
343726cb3baSStephen Boyd 	unsigned long *valid_mask;
344726cb3baSStephen Boyd 
34579a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO)
34679a9becdSAlexandre Courbot 	/*
34779a9becdSAlexandre Courbot 	 * If CONFIG_OF is enabled, then all GPIO controllers described in the
34879a9becdSAlexandre Courbot 	 * device tree automatically may have an OF translation
34979a9becdSAlexandre Courbot 	 */
35067049c50SThierry Reding 
35167049c50SThierry Reding 	/**
35267049c50SThierry Reding 	 * @of_node:
35367049c50SThierry Reding 	 *
35467049c50SThierry Reding 	 * Pointer to a device tree node representing this GPIO controller.
35567049c50SThierry Reding 	 */
35679a9becdSAlexandre Courbot 	struct device_node *of_node;
35767049c50SThierry Reding 
35867049c50SThierry Reding 	/**
35967049c50SThierry Reding 	 * @of_gpio_n_cells:
36067049c50SThierry Reding 	 *
36167049c50SThierry Reding 	 * Number of cells used to form the GPIO specifier.
36267049c50SThierry Reding 	 */
363e3b445d7SThierry Reding 	unsigned int of_gpio_n_cells;
36467049c50SThierry Reding 
36567049c50SThierry Reding 	/**
36667049c50SThierry Reding 	 * @of_xlate:
36767049c50SThierry Reding 	 *
36867049c50SThierry Reding 	 * Callback to translate a device tree GPIO specifier into a chip-
36967049c50SThierry Reding 	 * relative GPIO number and flags.
37067049c50SThierry Reding 	 */
37179a9becdSAlexandre Courbot 	int (*of_xlate)(struct gpio_chip *gc,
37279a9becdSAlexandre Courbot 			const struct of_phandle_args *gpiospec, u32 *flags);
37379a9becdSAlexandre Courbot #endif
37479a9becdSAlexandre Courbot };
37579a9becdSAlexandre Courbot 
37679a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip,
37779a9becdSAlexandre Courbot 			unsigned offset);
37879a9becdSAlexandre Courbot 
37979a9becdSAlexandre Courbot /* add/remove chips */
380959bc7b2SThierry Reding extern int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
38139c3fd58SAndrew Lunn 				      struct lock_class_key *lock_key,
38239c3fd58SAndrew Lunn 				      struct lock_class_key *request_key);
383959bc7b2SThierry Reding 
384959bc7b2SThierry Reding /**
385959bc7b2SThierry Reding  * gpiochip_add_data() - register a gpio_chip
386959bc7b2SThierry Reding  * @chip: the chip to register, with chip->base initialized
387959bc7b2SThierry Reding  * @data: driver-private data associated with this chip
388959bc7b2SThierry Reding  *
389959bc7b2SThierry Reding  * Context: potentially before irqs will work
390959bc7b2SThierry Reding  *
391959bc7b2SThierry Reding  * When gpiochip_add_data() is called very early during boot, so that GPIOs
392959bc7b2SThierry Reding  * can be freely used, the chip->parent device must be registered before
393959bc7b2SThierry Reding  * the gpio framework's arch_initcall().  Otherwise sysfs initialization
394959bc7b2SThierry Reding  * for GPIOs will fail rudely.
395959bc7b2SThierry Reding  *
396959bc7b2SThierry Reding  * gpiochip_add_data() must only be called after gpiolib initialization,
397959bc7b2SThierry Reding  * ie after core_initcall().
398959bc7b2SThierry Reding  *
399959bc7b2SThierry Reding  * If chip->base is negative, this requests dynamic assignment of
400959bc7b2SThierry Reding  * a range of valid GPIOs.
401959bc7b2SThierry Reding  *
402959bc7b2SThierry Reding  * Returns:
403959bc7b2SThierry Reding  * A negative errno if the chip can't be registered, such as because the
404959bc7b2SThierry Reding  * chip->base is invalid or already associated with a different chip.
405959bc7b2SThierry Reding  * Otherwise it returns zero as a success code.
406959bc7b2SThierry Reding  */
407959bc7b2SThierry Reding #ifdef CONFIG_LOCKDEP
408959bc7b2SThierry Reding #define gpiochip_add_data(chip, data) ({		\
40939c3fd58SAndrew Lunn 		static struct lock_class_key lock_key;	\
41039c3fd58SAndrew Lunn 		static struct lock_class_key request_key;	  \
41139c3fd58SAndrew Lunn 		gpiochip_add_data_with_key(chip, data, &lock_key, \
41239c3fd58SAndrew Lunn 					   &request_key);	  \
413959bc7b2SThierry Reding 	})
414959bc7b2SThierry Reding #else
41539c3fd58SAndrew Lunn #define gpiochip_add_data(chip, data) gpiochip_add_data_with_key(chip, data, NULL, NULL)
416959bc7b2SThierry Reding #endif
417959bc7b2SThierry Reding 
418b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip)
419b08ea35aSLinus Walleij {
420b08ea35aSLinus Walleij 	return gpiochip_add_data(chip, NULL);
421b08ea35aSLinus Walleij }
422e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip);
4230cf3292cSLaxman Dewangan extern int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
4240cf3292cSLaxman Dewangan 				  void *data);
4250cf3292cSLaxman Dewangan 
42679a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data,
42779a9becdSAlexandre Courbot 			      int (*match)(struct gpio_chip *chip, void *data));
42879a9becdSAlexandre Courbot 
42979a9becdSAlexandre Courbot /* lock/unlock as IRQ */
430e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset);
431e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset);
4326cee3821SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset);
4334e6b8238SHans Verkuil int gpiochip_reqres_irq(struct gpio_chip *chip, unsigned int offset);
4344e6b8238SHans Verkuil void gpiochip_relres_irq(struct gpio_chip *chip, unsigned int offset);
4354e9439ddSHans Verkuil void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset);
4364e9439ddSHans Verkuil void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset);
43779a9becdSAlexandre Courbot 
438143b65d6SLinus Walleij /* Line status inquiry for drivers */
439143b65d6SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset);
440143b65d6SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset);
441143b65d6SLinus Walleij 
44205f479bfSCharles Keepax /* Sleep persistence inquiry for drivers */
44305f479bfSCharles Keepax bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset);
444726cb3baSStephen Boyd bool gpiochip_line_is_valid(const struct gpio_chip *chip, unsigned int offset);
44505f479bfSCharles Keepax 
446b08ea35aSLinus Walleij /* get driver data */
44743c54ecaSLinus Walleij void *gpiochip_get_data(struct gpio_chip *chip);
448b08ea35aSLinus Walleij 
449bb1e88ccSAlexandre Courbot struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc);
450bb1e88ccSAlexandre Courbot 
4510f4630f3SLinus Walleij struct bgpio_pdata {
4520f4630f3SLinus Walleij 	const char *label;
4530f4630f3SLinus Walleij 	int base;
4540f4630f3SLinus Walleij 	int ngpio;
4550f4630f3SLinus Walleij };
4560f4630f3SLinus Walleij 
457c474e348SArnd Bergmann #if IS_ENABLED(CONFIG_GPIO_GENERIC)
458c474e348SArnd Bergmann 
4590f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev,
4600f4630f3SLinus Walleij 	       unsigned long sz, void __iomem *dat, void __iomem *set,
4610f4630f3SLinus Walleij 	       void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
4620f4630f3SLinus Walleij 	       unsigned long flags);
4630f4630f3SLinus Walleij 
4640f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN		BIT(0)
4650f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET	BIT(1) /* reg_set is unreadable */
4660f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR	BIT(2) /* reg_dir is unreadable */
4670f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER	BIT(3)
4680f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET	BIT(4) /* reg_set stores output value */
4690f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT		BIT(5) /* only input */
4700f4630f3SLinus Walleij 
4710f4630f3SLinus Walleij #endif
4720f4630f3SLinus Walleij 
47314250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
47414250520SLinus Walleij 
4751b95b4ebSThierry Reding int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
4761b95b4ebSThierry Reding 		     irq_hw_number_t hwirq);
4771b95b4ebSThierry Reding void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq);
4781b95b4ebSThierry Reding 
479ef74f70eSBrian Masney int gpiochip_irq_domain_activate(struct irq_domain *domain,
480ef74f70eSBrian Masney 				 struct irq_data *data, bool reserve);
481ef74f70eSBrian Masney void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
482ef74f70eSBrian Masney 				    struct irq_data *data);
483ef74f70eSBrian Masney 
48414250520SLinus Walleij void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
48514250520SLinus Walleij 		struct irq_chip *irqchip,
4866f79309aSThierry Reding 		unsigned int parent_irq,
48714250520SLinus Walleij 		irq_flow_handler_t parent_handler);
48814250520SLinus Walleij 
489d245b3f9SLinus Walleij void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
490d245b3f9SLinus Walleij 		struct irq_chip *irqchip,
4916f79309aSThierry Reding 		unsigned int parent_irq);
492d245b3f9SLinus Walleij 
493739e6f59SLinus Walleij int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
49414250520SLinus Walleij 			     struct irq_chip *irqchip,
49514250520SLinus Walleij 			     unsigned int first_irq,
49614250520SLinus Walleij 			     irq_flow_handler_t handler,
497a0a8bcf4SGrygorii Strashko 			     unsigned int type,
49860ed54caSThierry Reding 			     bool threaded,
49939c3fd58SAndrew Lunn 			     struct lock_class_key *lock_key,
50039c3fd58SAndrew Lunn 			     struct lock_class_key *request_key);
501a0a8bcf4SGrygorii Strashko 
50264ff2c8eSStephen Boyd bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
50364ff2c8eSStephen Boyd 				unsigned int offset);
50464ff2c8eSStephen Boyd 
505739e6f59SLinus Walleij #ifdef CONFIG_LOCKDEP
506739e6f59SLinus Walleij 
507739e6f59SLinus Walleij /*
508739e6f59SLinus Walleij  * Lockdep requires that each irqchip instance be created with a
509739e6f59SLinus Walleij  * unique key so as to avoid unnecessary warnings. This upfront
510739e6f59SLinus Walleij  * boilerplate static inlines provides such a key for each
511739e6f59SLinus Walleij  * unique instance.
512739e6f59SLinus Walleij  */
513739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
514739e6f59SLinus Walleij 				       struct irq_chip *irqchip,
515739e6f59SLinus Walleij 				       unsigned int first_irq,
516739e6f59SLinus Walleij 				       irq_flow_handler_t handler,
517739e6f59SLinus Walleij 				       unsigned int type)
518739e6f59SLinus Walleij {
51939c3fd58SAndrew Lunn 	static struct lock_class_key lock_key;
52039c3fd58SAndrew Lunn 	static struct lock_class_key request_key;
521739e6f59SLinus Walleij 
522739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
52339c3fd58SAndrew Lunn 					handler, type, false,
52439c3fd58SAndrew Lunn 					&lock_key, &request_key);
525739e6f59SLinus Walleij }
526739e6f59SLinus Walleij 
527d245b3f9SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip,
528d245b3f9SLinus Walleij 			  struct irq_chip *irqchip,
529d245b3f9SLinus Walleij 			  unsigned int first_irq,
530d245b3f9SLinus Walleij 			  irq_flow_handler_t handler,
531d245b3f9SLinus Walleij 			  unsigned int type)
532d245b3f9SLinus Walleij {
533739e6f59SLinus Walleij 
53439c3fd58SAndrew Lunn 	static struct lock_class_key lock_key;
53539c3fd58SAndrew Lunn 	static struct lock_class_key request_key;
536739e6f59SLinus Walleij 
537739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
53839c3fd58SAndrew Lunn 					handler, type, true,
53939c3fd58SAndrew Lunn 					&lock_key, &request_key);
540739e6f59SLinus Walleij }
541739e6f59SLinus Walleij #else
542739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
543739e6f59SLinus Walleij 				       struct irq_chip *irqchip,
544739e6f59SLinus Walleij 				       unsigned int first_irq,
545739e6f59SLinus Walleij 				       irq_flow_handler_t handler,
546739e6f59SLinus Walleij 				       unsigned int type)
547739e6f59SLinus Walleij {
548739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
54939c3fd58SAndrew Lunn 					handler, type, false, NULL, NULL);
550d245b3f9SLinus Walleij }
551d245b3f9SLinus Walleij 
552739e6f59SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip,
553739e6f59SLinus Walleij 			  struct irq_chip *irqchip,
554739e6f59SLinus Walleij 			  unsigned int first_irq,
555739e6f59SLinus Walleij 			  irq_flow_handler_t handler,
556739e6f59SLinus Walleij 			  unsigned int type)
557739e6f59SLinus Walleij {
558739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
55939c3fd58SAndrew Lunn 					handler, type, true, NULL, NULL);
560739e6f59SLinus Walleij }
561739e6f59SLinus Walleij #endif /* CONFIG_LOCKDEP */
56214250520SLinus Walleij 
5637d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */
56414250520SLinus Walleij 
565c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset);
566c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset);
5672956b5d9SMika Westerberg int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
5682956b5d9SMika Westerberg 			    unsigned long config);
569c771c2f4SJonas Gorski 
570964cb341SLinus Walleij #ifdef CONFIG_PINCTRL
571964cb341SLinus Walleij 
572964cb341SLinus Walleij /**
573964cb341SLinus Walleij  * struct gpio_pin_range - pin range controlled by a gpio chip
574950d55f5SThierry Reding  * @node: list for maintaining set of pin ranges, used internally
575964cb341SLinus Walleij  * @pctldev: pinctrl device which handles corresponding pins
576964cb341SLinus Walleij  * @range: actual range of pins controlled by a gpio controller
577964cb341SLinus Walleij  */
578964cb341SLinus Walleij struct gpio_pin_range {
579964cb341SLinus Walleij 	struct list_head node;
580964cb341SLinus Walleij 	struct pinctrl_dev *pctldev;
581964cb341SLinus Walleij 	struct pinctrl_gpio_range range;
582964cb341SLinus Walleij };
583964cb341SLinus Walleij 
584964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
585964cb341SLinus Walleij 			   unsigned int gpio_offset, unsigned int pin_offset,
586964cb341SLinus Walleij 			   unsigned int npins);
587964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip,
588964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
589964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group);
590964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip);
591964cb341SLinus Walleij 
592964cb341SLinus Walleij #else
593964cb341SLinus Walleij 
594964cb341SLinus Walleij static inline int
595964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
596964cb341SLinus Walleij 		       unsigned int gpio_offset, unsigned int pin_offset,
597964cb341SLinus Walleij 		       unsigned int npins)
598964cb341SLinus Walleij {
599964cb341SLinus Walleij 	return 0;
600964cb341SLinus Walleij }
601964cb341SLinus Walleij static inline int
602964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip,
603964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
604964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group)
605964cb341SLinus Walleij {
606964cb341SLinus Walleij 	return 0;
607964cb341SLinus Walleij }
608964cb341SLinus Walleij 
609964cb341SLinus Walleij static inline void
610964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip)
611964cb341SLinus Walleij {
612964cb341SLinus Walleij }
613964cb341SLinus Walleij 
614964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */
615964cb341SLinus Walleij 
616abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
61721abf103SLinus Walleij 					    const char *label,
6185923ea6cSLinus Walleij 					    enum gpio_lookup_flags lflags,
6195923ea6cSLinus Walleij 					    enum gpiod_flags dflags);
620f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc);
621f7d4ad98SGuenter Roeck 
62264ebde5bSJan Kundrát void devprop_gpiochip_set_names(struct gpio_chip *chip,
62364ebde5bSJan Kundrát 				const struct fwnode_handle *fwnode);
62464ebde5bSJan Kundrát 
625bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */
626bb1e88ccSAlexandre Courbot 
627bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
628bb1e88ccSAlexandre Courbot {
629bb1e88ccSAlexandre Courbot 	/* GPIO can never have been requested */
630bb1e88ccSAlexandre Courbot 	WARN_ON(1);
631bb1e88ccSAlexandre Courbot 	return ERR_PTR(-ENODEV);
632bb1e88ccSAlexandre Courbot }
633bb1e88ccSAlexandre Courbot 
634bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */
635bb1e88ccSAlexandre Courbot 
63679a9becdSAlexandre Courbot #endif
637