xref: /openbmc/linux/include/linux/gpio/driver.h (revision 91a29af4)
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>
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>
1285ebb1a6SAndy Shevchenko #include <linux/property.h>
1385ebb1a6SAndy Shevchenko #include <linux/types.h>
1479a9becdSAlexandre Courbot 
15*91a29af4SMarc Zyngier #include <asm/msi.h>
16*91a29af4SMarc Zyngier 
1779a9becdSAlexandre Courbot struct gpio_desc;
18c9a9972bSAlexandre Courbot struct of_phandle_args;
19c9a9972bSAlexandre Courbot struct device_node;
20f3ed0b66SStephen Rothwell struct seq_file;
21ff2b1359SLinus Walleij struct gpio_device;
22d47529b2SPaul Gortmaker struct module;
2321abf103SLinus Walleij enum gpiod_flags;
245923ea6cSLinus Walleij enum gpio_lookup_flags;
2579a9becdSAlexandre Courbot 
26fdd61a01SLinus Walleij struct gpio_chip;
27fdd61a01SLinus Walleij 
28*91a29af4SMarc Zyngier union gpio_irq_fwspec {
29*91a29af4SMarc Zyngier 	struct irq_fwspec	fwspec;
30*91a29af4SMarc Zyngier #ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
31*91a29af4SMarc Zyngier 	msi_alloc_info_t	msiinfo;
32*91a29af4SMarc Zyngier #endif
33*91a29af4SMarc Zyngier };
34*91a29af4SMarc Zyngier 
359208b1e7SMatti Vaittinen #define GPIO_LINE_DIRECTION_IN	1
369208b1e7SMatti Vaittinen #define GPIO_LINE_DIRECTION_OUT	0
379208b1e7SMatti Vaittinen 
38c44eafd7SThierry Reding /**
39c44eafd7SThierry Reding  * struct gpio_irq_chip - GPIO interrupt controller
40c44eafd7SThierry Reding  */
41c44eafd7SThierry Reding struct gpio_irq_chip {
42c44eafd7SThierry Reding 	/**
43da80ff81SThierry Reding 	 * @chip:
44da80ff81SThierry Reding 	 *
45da80ff81SThierry Reding 	 * GPIO IRQ chip implementation, provided by GPIO driver.
46da80ff81SThierry Reding 	 */
47da80ff81SThierry Reding 	struct irq_chip *chip;
48da80ff81SThierry Reding 
49da80ff81SThierry Reding 	/**
50f0fbe7bcSThierry Reding 	 * @domain:
51f0fbe7bcSThierry Reding 	 *
52f0fbe7bcSThierry Reding 	 * Interrupt translation domain; responsible for mapping between GPIO
53f0fbe7bcSThierry Reding 	 * hwirq number and Linux IRQ number.
54f0fbe7bcSThierry Reding 	 */
55f0fbe7bcSThierry Reding 	struct irq_domain *domain;
56f0fbe7bcSThierry Reding 
57f0fbe7bcSThierry Reding 	/**
58c44eafd7SThierry Reding 	 * @domain_ops:
59c44eafd7SThierry Reding 	 *
60c44eafd7SThierry Reding 	 * Table of interrupt domain operations for this IRQ chip.
61c44eafd7SThierry Reding 	 */
62c44eafd7SThierry Reding 	const struct irq_domain_ops *domain_ops;
63c44eafd7SThierry Reding 
64fdd61a01SLinus Walleij #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
65fdd61a01SLinus Walleij 	/**
66fdd61a01SLinus Walleij 	 * @fwnode:
67fdd61a01SLinus Walleij 	 *
68fdd61a01SLinus Walleij 	 * Firmware node corresponding to this gpiochip/irqchip, necessary
69fdd61a01SLinus Walleij 	 * for hierarchical irqdomain support.
70fdd61a01SLinus Walleij 	 */
71fdd61a01SLinus Walleij 	struct fwnode_handle *fwnode;
72fdd61a01SLinus Walleij 
73fdd61a01SLinus Walleij 	/**
74fdd61a01SLinus Walleij 	 * @parent_domain:
75fdd61a01SLinus Walleij 	 *
76fdd61a01SLinus Walleij 	 * If non-NULL, will be set as the parent of this GPIO interrupt
77fdd61a01SLinus Walleij 	 * controller's IRQ domain to establish a hierarchical interrupt
78fdd61a01SLinus Walleij 	 * domain. The presence of this will activate the hierarchical
79fdd61a01SLinus Walleij 	 * interrupt support.
80fdd61a01SLinus Walleij 	 */
81fdd61a01SLinus Walleij 	struct irq_domain *parent_domain;
82fdd61a01SLinus Walleij 
83fdd61a01SLinus Walleij 	/**
84fdd61a01SLinus Walleij 	 * @child_to_parent_hwirq:
85fdd61a01SLinus Walleij 	 *
86fdd61a01SLinus Walleij 	 * This callback translates a child hardware IRQ offset to a parent
87fdd61a01SLinus Walleij 	 * hardware IRQ offset on a hierarchical interrupt chip. The child
88fdd61a01SLinus Walleij 	 * hardware IRQs correspond to the GPIO index 0..ngpio-1 (see the
89fdd61a01SLinus Walleij 	 * ngpio field of struct gpio_chip) and the corresponding parent
90fdd61a01SLinus Walleij 	 * hardware IRQ and type (such as IRQ_TYPE_*) shall be returned by
91fdd61a01SLinus Walleij 	 * the driver. The driver can calculate this from an offset or using
92fdd61a01SLinus Walleij 	 * a lookup table or whatever method is best for this chip. Return
93fdd61a01SLinus Walleij 	 * 0 on successful translation in the driver.
94fdd61a01SLinus Walleij 	 *
95fdd61a01SLinus Walleij 	 * If some ranges of hardware IRQs do not have a corresponding parent
96fdd61a01SLinus Walleij 	 * HWIRQ, return -EINVAL, but also make sure to fill in @valid_mask and
97fdd61a01SLinus Walleij 	 * @need_valid_mask to make these GPIO lines unavailable for
98fdd61a01SLinus Walleij 	 * translation.
99fdd61a01SLinus Walleij 	 */
100a0b66a73SLinus Walleij 	int (*child_to_parent_hwirq)(struct gpio_chip *gc,
101fdd61a01SLinus Walleij 				     unsigned int child_hwirq,
102fdd61a01SLinus Walleij 				     unsigned int child_type,
103fdd61a01SLinus Walleij 				     unsigned int *parent_hwirq,
104fdd61a01SLinus Walleij 				     unsigned int *parent_type);
105fdd61a01SLinus Walleij 
106fdd61a01SLinus Walleij 	/**
10724258761SKevin Hao 	 * @populate_parent_alloc_arg :
108fdd61a01SLinus Walleij 	 *
10924258761SKevin Hao 	 * This optional callback allocates and populates the specific struct
11024258761SKevin Hao 	 * for the parent's IRQ domain. If this is not specified, then
111fdd61a01SLinus Walleij 	 * &gpiochip_populate_parent_fwspec_twocell will be used. A four-cell
112fdd61a01SLinus Walleij 	 * variant named &gpiochip_populate_parent_fwspec_fourcell is also
113fdd61a01SLinus Walleij 	 * available.
114fdd61a01SLinus Walleij 	 */
115*91a29af4SMarc Zyngier 	int (*populate_parent_alloc_arg)(struct gpio_chip *gc,
116*91a29af4SMarc Zyngier 					 union gpio_irq_fwspec *fwspec,
117fdd61a01SLinus Walleij 					 unsigned int parent_hwirq,
118fdd61a01SLinus Walleij 					 unsigned int parent_type);
119fdd61a01SLinus Walleij 
120fdd61a01SLinus Walleij 	/**
121fdd61a01SLinus Walleij 	 * @child_offset_to_irq:
122fdd61a01SLinus Walleij 	 *
123fdd61a01SLinus Walleij 	 * This optional callback is used to translate the child's GPIO line
124fdd61a01SLinus Walleij 	 * offset on the GPIO chip to an IRQ number for the GPIO to_irq()
125fdd61a01SLinus Walleij 	 * callback. If this is not specified, then a default callback will be
126fdd61a01SLinus Walleij 	 * provided that returns the line offset.
127fdd61a01SLinus Walleij 	 */
128a0b66a73SLinus Walleij 	unsigned int (*child_offset_to_irq)(struct gpio_chip *gc,
129fdd61a01SLinus Walleij 					    unsigned int pin);
130fdd61a01SLinus Walleij 
131fdd61a01SLinus Walleij 	/**
132fdd61a01SLinus Walleij 	 * @child_irq_domain_ops:
133fdd61a01SLinus Walleij 	 *
134fdd61a01SLinus Walleij 	 * The IRQ domain operations that will be used for this GPIO IRQ
135fdd61a01SLinus Walleij 	 * chip. If no operations are provided, then default callbacks will
136fdd61a01SLinus Walleij 	 * be populated to setup the IRQ hierarchy. Some drivers need to
137fdd61a01SLinus Walleij 	 * supply their own translate function.
138fdd61a01SLinus Walleij 	 */
139fdd61a01SLinus Walleij 	struct irq_domain_ops child_irq_domain_ops;
140fdd61a01SLinus Walleij #endif
141fdd61a01SLinus Walleij 
142c44eafd7SThierry Reding 	/**
143c7a0aa59SThierry Reding 	 * @handler:
144c7a0aa59SThierry Reding 	 *
145c7a0aa59SThierry Reding 	 * The IRQ handler to use (often a predefined IRQ core function) for
146c7a0aa59SThierry Reding 	 * GPIO IRQs, provided by GPIO driver.
147c7a0aa59SThierry Reding 	 */
148c7a0aa59SThierry Reding 	irq_flow_handler_t handler;
149c7a0aa59SThierry Reding 
150c7a0aa59SThierry Reding 	/**
1513634eeb0SThierry Reding 	 * @default_type:
1523634eeb0SThierry Reding 	 *
1533634eeb0SThierry Reding 	 * Default IRQ triggering type applied during GPIO driver
1543634eeb0SThierry Reding 	 * initialization, provided by GPIO driver.
1553634eeb0SThierry Reding 	 */
1563634eeb0SThierry Reding 	unsigned int default_type;
1573634eeb0SThierry Reding 
1583634eeb0SThierry Reding 	/**
159ca9df053SThierry Reding 	 * @lock_key:
160ca9df053SThierry Reding 	 *
16102ad0437SRandy Dunlap 	 * Per GPIO IRQ chip lockdep class for IRQ lock.
162ca9df053SThierry Reding 	 */
163ca9df053SThierry Reding 	struct lock_class_key *lock_key;
16402ad0437SRandy Dunlap 
16502ad0437SRandy Dunlap 	/**
16602ad0437SRandy Dunlap 	 * @request_key:
16702ad0437SRandy Dunlap 	 *
16802ad0437SRandy Dunlap 	 * Per GPIO IRQ chip lockdep class for IRQ request.
16902ad0437SRandy Dunlap 	 */
17039c3fd58SAndrew Lunn 	struct lock_class_key *request_key;
171ca9df053SThierry Reding 
172ca9df053SThierry Reding 	/**
173c44eafd7SThierry Reding 	 * @parent_handler:
174c44eafd7SThierry Reding 	 *
175c44eafd7SThierry Reding 	 * The interrupt handler for the GPIO chip's parent interrupts, may be
176c44eafd7SThierry Reding 	 * NULL if the parent interrupts are nested rather than cascaded.
177c44eafd7SThierry Reding 	 */
178c44eafd7SThierry Reding 	irq_flow_handler_t parent_handler;
179c44eafd7SThierry Reding 
180c44eafd7SThierry Reding 	/**
181c44eafd7SThierry Reding 	 * @parent_handler_data:
18248ec13d3SJoey Gouly 	 *
18348ec13d3SJoey Gouly 	 * If @per_parent_data is false, @parent_handler_data is a single
18448ec13d3SJoey Gouly 	 * pointer used as the data associated with every parent interrupt.
18548ec13d3SJoey Gouly 	 *
186cfe6807dSMarc Zyngier 	 * @parent_handler_data_array:
187c44eafd7SThierry Reding 	 *
18848ec13d3SJoey Gouly 	 * If @per_parent_data is true, @parent_handler_data_array is
18948ec13d3SJoey Gouly 	 * an array of @num_parents pointers, and is used to associate
19048ec13d3SJoey Gouly 	 * different data for each parent. This cannot be NULL if
19148ec13d3SJoey Gouly 	 * @per_parent_data is true.
192c44eafd7SThierry Reding 	 */
193cfe6807dSMarc Zyngier 	union {
194c44eafd7SThierry Reding 		void *parent_handler_data;
195cfe6807dSMarc Zyngier 		void **parent_handler_data_array;
196cfe6807dSMarc Zyngier 	};
19739e5f096SThierry Reding 
19839e5f096SThierry Reding 	/**
19939e5f096SThierry Reding 	 * @num_parents:
20039e5f096SThierry Reding 	 *
20139e5f096SThierry Reding 	 * The number of interrupt parents of a GPIO chip.
20239e5f096SThierry Reding 	 */
20339e5f096SThierry Reding 	unsigned int num_parents;
20439e5f096SThierry Reding 
20539e5f096SThierry Reding 	/**
20639e5f096SThierry Reding 	 * @parents:
20739e5f096SThierry Reding 	 *
20839e5f096SThierry Reding 	 * A list of interrupt parents of a GPIO chip. This is owned by the
20939e5f096SThierry Reding 	 * driver, so the core will only reference this list, not modify it.
21039e5f096SThierry Reding 	 */
21139e5f096SThierry Reding 	unsigned int *parents;
212dc6bafeeSThierry Reding 
213dc6bafeeSThierry Reding 	/**
214e0d89728SThierry Reding 	 * @map:
215e0d89728SThierry Reding 	 *
216e0d89728SThierry Reding 	 * A list of interrupt parents for each line of a GPIO chip.
217e0d89728SThierry Reding 	 */
218e0d89728SThierry Reding 	unsigned int *map;
219e0d89728SThierry Reding 
220e0d89728SThierry Reding 	/**
22160ed54caSThierry Reding 	 * @threaded:
222dc6bafeeSThierry Reding 	 *
22360ed54caSThierry Reding 	 * True if set the interrupt handling uses nested threads.
224dc6bafeeSThierry Reding 	 */
22560ed54caSThierry Reding 	bool threaded;
226dc7b0387SThierry Reding 
227dc7b0387SThierry Reding 	/**
228cfe6807dSMarc Zyngier 	 * @per_parent_data:
229cfe6807dSMarc Zyngier 	 *
230cfe6807dSMarc Zyngier 	 * True if parent_handler_data_array describes a @num_parents
231cfe6807dSMarc Zyngier 	 * sized array to be used as parent data.
232cfe6807dSMarc Zyngier 	 */
233cfe6807dSMarc Zyngier 	bool per_parent_data;
234cfe6807dSMarc Zyngier 
235cfe6807dSMarc Zyngier 	/**
2365467801fSShreeya Patel 	 * @initialized:
2375467801fSShreeya Patel 	 *
2385467801fSShreeya Patel 	 * Flag to track GPIO chip irq member's initialization.
2395467801fSShreeya Patel 	 * This flag will make sure GPIO chip irq members are not used
2405467801fSShreeya Patel 	 * before they are initialized.
2415467801fSShreeya Patel 	 */
2425467801fSShreeya Patel 	bool initialized;
2435467801fSShreeya Patel 
2445467801fSShreeya Patel 	/**
2459411e3aaSAndy Shevchenko 	 * @init_hw: optional routine to initialize hardware before
2469411e3aaSAndy Shevchenko 	 * an IRQ chip will be added. This is quite useful when
2479411e3aaSAndy Shevchenko 	 * a particular driver wants to clear IRQ related registers
2489411e3aaSAndy Shevchenko 	 * in order to avoid undesired events.
2499411e3aaSAndy Shevchenko 	 */
250a0b66a73SLinus Walleij 	int (*init_hw)(struct gpio_chip *gc);
2519411e3aaSAndy Shevchenko 
2529411e3aaSAndy Shevchenko 	/**
2535fbe5b58SLinus Walleij 	 * @init_valid_mask: optional routine to initialize @valid_mask, to be
2545fbe5b58SLinus Walleij 	 * used if not all GPIO lines are valid interrupts. Sometimes some
2555fbe5b58SLinus Walleij 	 * lines just cannot fire interrupts, and this routine, when defined,
2565fbe5b58SLinus Walleij 	 * is passed a bitmap in "valid_mask" and it will have ngpios
2575fbe5b58SLinus Walleij 	 * bits from 0..(ngpios-1) set to "1" as in valid. The callback can
2585fbe5b58SLinus Walleij 	 * then directly set some bits to "0" if they cannot be used for
2595fbe5b58SLinus Walleij 	 * interrupts.
260dc7b0387SThierry Reding 	 */
261a0b66a73SLinus Walleij 	void (*init_valid_mask)(struct gpio_chip *gc,
2625fbe5b58SLinus Walleij 				unsigned long *valid_mask,
2635fbe5b58SLinus Walleij 				unsigned int ngpios);
264dc7b0387SThierry Reding 
265dc7b0387SThierry Reding 	/**
266dc7b0387SThierry Reding 	 * @valid_mask:
267dc7b0387SThierry Reding 	 *
2682d93018fSRandy Dunlap 	 * If not %NULL, holds bitmask of GPIOs which are valid to be included
269dc7b0387SThierry Reding 	 * in IRQ domain of the chip.
270dc7b0387SThierry Reding 	 */
271dc7b0387SThierry Reding 	unsigned long *valid_mask;
2728302cf58SThierry Reding 
2738302cf58SThierry Reding 	/**
2748302cf58SThierry Reding 	 * @first:
2758302cf58SThierry Reding 	 *
2768302cf58SThierry Reding 	 * Required for static IRQ allocation. If set, irq_domain_add_simple()
2778302cf58SThierry Reding 	 * will allocate and map all IRQs during initialization.
2788302cf58SThierry Reding 	 */
2798302cf58SThierry Reding 	unsigned int first;
280461c1a7dSHans Verkuil 
281461c1a7dSHans Verkuil 	/**
282461c1a7dSHans Verkuil 	 * @irq_enable:
283461c1a7dSHans Verkuil 	 *
284461c1a7dSHans Verkuil 	 * Store old irq_chip irq_enable callback
285461c1a7dSHans Verkuil 	 */
286461c1a7dSHans Verkuil 	void		(*irq_enable)(struct irq_data *data);
287461c1a7dSHans Verkuil 
288461c1a7dSHans Verkuil 	/**
289461c1a7dSHans Verkuil 	 * @irq_disable:
290461c1a7dSHans Verkuil 	 *
291461c1a7dSHans Verkuil 	 * Store old irq_chip irq_disable callback
292461c1a7dSHans Verkuil 	 */
293461c1a7dSHans Verkuil 	void		(*irq_disable)(struct irq_data *data);
294a8173820SMaulik Shah 	/**
295a8173820SMaulik Shah 	 * @irq_unmask:
296a8173820SMaulik Shah 	 *
297a8173820SMaulik Shah 	 * Store old irq_chip irq_unmask callback
298a8173820SMaulik Shah 	 */
299a8173820SMaulik Shah 	void		(*irq_unmask)(struct irq_data *data);
300a8173820SMaulik Shah 
301a8173820SMaulik Shah 	/**
302a8173820SMaulik Shah 	 * @irq_mask:
303a8173820SMaulik Shah 	 *
304a8173820SMaulik Shah 	 * Store old irq_chip irq_mask callback
305a8173820SMaulik Shah 	 */
306a8173820SMaulik Shah 	void		(*irq_mask)(struct irq_data *data);
307c44eafd7SThierry Reding };
308c44eafd7SThierry Reding 
30979a9becdSAlexandre Courbot /**
31079a9becdSAlexandre Courbot  * struct gpio_chip - abstract a GPIO controller
311df4878e9SLinus Walleij  * @label: a functional name for the GPIO device, such as a part
312df4878e9SLinus Walleij  *	number or the name of the SoC IP-block implementing it.
313ff2b1359SLinus Walleij  * @gpiodev: the internal state holder, opaque struct
31458383c78SLinus Walleij  * @parent: optional parent device providing the GPIOs
315990f6756SBartosz Golaszewski  * @fwnode: optional fwnode providing this controller's properties
31679a9becdSAlexandre Courbot  * @owner: helps prevent removal of modules exporting active GPIOs
31779a9becdSAlexandre Courbot  * @request: optional hook for chip-specific activation, such as
31879a9becdSAlexandre Courbot  *	enabling module power and clock; may sleep
31979a9becdSAlexandre Courbot  * @free: optional hook for chip-specific deactivation, such as
32079a9becdSAlexandre Courbot  *	disabling module power and clock; may sleep
32179a9becdSAlexandre Courbot  * @get_direction: returns direction for signal "offset", 0=out, 1=in,
32236b52154SDouglas Anderson  *	(same as GPIO_LINE_DIRECTION_OUT / GPIO_LINE_DIRECTION_IN),
32336b52154SDouglas Anderson  *	or negative error. It is recommended to always implement this
32436b52154SDouglas Anderson  *	function, even on input-only or output-only gpio chips.
32579a9becdSAlexandre Courbot  * @direction_input: configures signal "offset" as input, or returns error
326e48d194dSLinus Walleij  *	This can be omitted on input-only or output-only gpio chips.
32779a9becdSAlexandre Courbot  * @direction_output: configures signal "offset" as output, or returns error
328e48d194dSLinus Walleij  *	This can be omitted on input-only or output-only gpio chips.
32960befd2eSVladimir Zapolskiy  * @get: returns value for signal "offset", 0=low, 1=high, or negative error
330eec1d566SLukas Wunner  * @get_multiple: reads values for multiple signals defined by "mask" and
331eec1d566SLukas Wunner  *	stores them in "bits", returns 0 on success or negative error
33279a9becdSAlexandre Courbot  * @set: assigns output value for signal "offset"
3335f424243SRojhalat Ibrahim  * @set_multiple: assigns output values for multiple signals defined by "mask"
3342956b5d9SMika Westerberg  * @set_config: optional hook for all kinds of settings. Uses the same
3352956b5d9SMika Westerberg  *	packed config format as generic pinconf.
33679a9becdSAlexandre Courbot  * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
33779a9becdSAlexandre Courbot  *	implementation may not sleep
33879a9becdSAlexandre Courbot  * @dbg_show: optional routine to show contents in debugfs; default code
33979a9becdSAlexandre Courbot  *	will be used when this is omitted, but custom code can show extra
34079a9becdSAlexandre Courbot  *	state (such as pullup/pulldown configuration).
341f99d479bSGeert Uytterhoeven  * @init_valid_mask: optional routine to initialize @valid_mask, to be used if
342f99d479bSGeert Uytterhoeven  *	not all GPIOs are valid.
343b056ca1cSAndy Shevchenko  * @add_pin_ranges: optional routine to initialize pin ranges, to be used when
344b056ca1cSAndy Shevchenko  *	requires special mapping of the pins that provides GPIO functionality.
345b056ca1cSAndy Shevchenko  *	It is called after adding GPIO chip and before adding IRQ chip.
34642112dd7SDipen Patel  * @en_hw_timestamp: Dependent on GPIO chip, an optional routine to
34742112dd7SDipen Patel  *	enable hardware timestamp.
34842112dd7SDipen Patel  * @dis_hw_timestamp: Dependent on GPIO chip, an optional routine to
34942112dd7SDipen Patel  *	disable hardware timestamp.
350af6c235dSLinus Walleij  * @base: identifies the first GPIO number handled by this chip;
351af6c235dSLinus Walleij  *	or, if negative during registration, requests dynamic ID allocation.
352af6c235dSLinus Walleij  *	DEPRECATION: providing anything non-negative and nailing the base
35330bb6fb3SGeert Uytterhoeven  *	offset of GPIO chips is deprecated. Please pass -1 as base to
354af6c235dSLinus Walleij  *	let gpiolib select the chip base in all possible cases. We want to
355af6c235dSLinus Walleij  *	get rid of the static GPIO number space in the long run.
35679a9becdSAlexandre Courbot  * @ngpio: the number of GPIOs handled by this controller; the last GPIO
35779a9becdSAlexandre Courbot  *	handled is (base + ngpio - 1).
3584e804c39SSergio Paracuellos  * @offset: when multiple gpio chips belong to the same device this
3594e804c39SSergio Paracuellos  *	can be used as offset within the device so friendly names can
3604e804c39SSergio Paracuellos  *	be properly assigned.
36179a9becdSAlexandre Courbot  * @names: if set, must be an array of strings to use as alternative
36279a9becdSAlexandre Courbot  *      names for the GPIOs in this chip. Any entry in the array
36379a9becdSAlexandre Courbot  *      may be NULL if there is no alias for the GPIO, however the
36479a9becdSAlexandre Courbot  *      array must be @ngpio entries long.  A name can include a single printk
36579a9becdSAlexandre Courbot  *      format specifier for an unsigned int.  It is substituted by the actual
36679a9becdSAlexandre Courbot  *      number of the gpio.
3679fb1f39eSLinus Walleij  * @can_sleep: flag must be set iff get()/set() methods sleep, as they
3681c8732bbSLinus Walleij  *	must while accessing GPIO expander chips over I2C or SPI. This
3691c8732bbSLinus Walleij  *	implies that if the chip supports IRQs, these IRQs need to be threaded
3701c8732bbSLinus Walleij  *	as the chip access may sleep when e.g. reading out the IRQ status
3711c8732bbSLinus Walleij  *	registers.
3720f4630f3SLinus Walleij  * @read_reg: reader function for generic GPIO
3730f4630f3SLinus Walleij  * @write_reg: writer function for generic GPIO
37424efd94bSLinus Walleij  * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing
37524efd94bSLinus Walleij  *	line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the
37624efd94bSLinus Walleij  *	generic GPIO core. It is for internal housekeeping only.
3770f4630f3SLinus Walleij  * @reg_dat: data (in) register for generic GPIO
3780f4630f3SLinus Walleij  * @reg_set: output set register (out=high) for generic GPIO
37908bcd3edSAnthony Best  * @reg_clr: output clear register (out=low) for generic GPIO
380f69e00bdSLinus Walleij  * @reg_dir_out: direction out setting register for generic GPIO
381f69e00bdSLinus Walleij  * @reg_dir_in: direction in setting register for generic GPIO
382f69e00bdSLinus Walleij  * @bgpio_dir_unreadable: indicates that the direction register(s) cannot
383f69e00bdSLinus Walleij  *	be read and we need to rely on out internal state tracking.
3840f4630f3SLinus Walleij  * @bgpio_bits: number of register bits used for a generic GPIO i.e.
3850f4630f3SLinus Walleij  *	<register width> * 8
3860f4630f3SLinus Walleij  * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep
3870f4630f3SLinus Walleij  *	shadowed and real data registers writes together.
3880f4630f3SLinus Walleij  * @bgpio_data:	shadowed data register for generic GPIO to clear/set bits
3890f4630f3SLinus Walleij  *	safely.
3900f4630f3SLinus Walleij  * @bgpio_dir: shadowed direction register for generic GPIO to clear/set
391f69e00bdSLinus Walleij  *	direction safely. A "1" in this word means the line is set as
392f69e00bdSLinus Walleij  *	output.
39379a9becdSAlexandre Courbot  *
39479a9becdSAlexandre Courbot  * A gpio_chip can help platforms abstract various sources of GPIOs so
3952d93018fSRandy Dunlap  * they can all be accessed through a common programming interface.
39679a9becdSAlexandre Courbot  * Example sources would be SOC controllers, FPGAs, multifunction
39779a9becdSAlexandre Courbot  * chips, dedicated GPIO expanders, and so on.
39879a9becdSAlexandre Courbot  *
39979a9becdSAlexandre Courbot  * Each chip controls a number of signals, identified in method calls
40079a9becdSAlexandre Courbot  * by "offset" values in the range 0..(@ngpio - 1).  When those signals
40179a9becdSAlexandre Courbot  * are referenced through calls like gpio_get_value(gpio), the offset
40279a9becdSAlexandre Courbot  * is calculated by subtracting @base from the gpio number.
40379a9becdSAlexandre Courbot  */
40479a9becdSAlexandre Courbot struct gpio_chip {
40579a9becdSAlexandre Courbot 	const char		*label;
406ff2b1359SLinus Walleij 	struct gpio_device	*gpiodev;
40758383c78SLinus Walleij 	struct device		*parent;
408990f6756SBartosz Golaszewski 	struct fwnode_handle	*fwnode;
40979a9becdSAlexandre Courbot 	struct module		*owner;
41079a9becdSAlexandre Courbot 
411a0b66a73SLinus Walleij 	int			(*request)(struct gpio_chip *gc,
4128d091012SDouglas Anderson 						unsigned int offset);
413a0b66a73SLinus Walleij 	void			(*free)(struct gpio_chip *gc,
4148d091012SDouglas Anderson 						unsigned int offset);
415a0b66a73SLinus Walleij 	int			(*get_direction)(struct gpio_chip *gc,
4168d091012SDouglas Anderson 						unsigned int offset);
417a0b66a73SLinus Walleij 	int			(*direction_input)(struct gpio_chip *gc,
4188d091012SDouglas Anderson 						unsigned int offset);
419a0b66a73SLinus Walleij 	int			(*direction_output)(struct gpio_chip *gc,
4208d091012SDouglas Anderson 						unsigned int offset, int value);
421a0b66a73SLinus Walleij 	int			(*get)(struct gpio_chip *gc,
4228d091012SDouglas Anderson 						unsigned int offset);
423a0b66a73SLinus Walleij 	int			(*get_multiple)(struct gpio_chip *gc,
424eec1d566SLukas Wunner 						unsigned long *mask,
425eec1d566SLukas Wunner 						unsigned long *bits);
426a0b66a73SLinus Walleij 	void			(*set)(struct gpio_chip *gc,
4278d091012SDouglas Anderson 						unsigned int offset, int value);
428a0b66a73SLinus Walleij 	void			(*set_multiple)(struct gpio_chip *gc,
4295f424243SRojhalat Ibrahim 						unsigned long *mask,
4305f424243SRojhalat Ibrahim 						unsigned long *bits);
431a0b66a73SLinus Walleij 	int			(*set_config)(struct gpio_chip *gc,
4328d091012SDouglas Anderson 					      unsigned int offset,
4332956b5d9SMika Westerberg 					      unsigned long config);
434a0b66a73SLinus Walleij 	int			(*to_irq)(struct gpio_chip *gc,
4358d091012SDouglas Anderson 						unsigned int offset);
43679a9becdSAlexandre Courbot 
43779a9becdSAlexandre Courbot 	void			(*dbg_show)(struct seq_file *s,
438a0b66a73SLinus Walleij 						struct gpio_chip *gc);
439f8ec92a9SRicardo Ribalda Delgado 
440a0b66a73SLinus Walleij 	int			(*init_valid_mask)(struct gpio_chip *gc,
441c9fc5affSLinus Walleij 						   unsigned long *valid_mask,
442c9fc5affSLinus Walleij 						   unsigned int ngpios);
443f8ec92a9SRicardo Ribalda Delgado 
444a0b66a73SLinus Walleij 	int			(*add_pin_ranges)(struct gpio_chip *gc);
445b056ca1cSAndy Shevchenko 
44642112dd7SDipen Patel 	int			(*en_hw_timestamp)(struct gpio_chip *gc,
44742112dd7SDipen Patel 						   u32 offset,
44842112dd7SDipen Patel 						   unsigned long flags);
44942112dd7SDipen Patel 	int			(*dis_hw_timestamp)(struct gpio_chip *gc,
45042112dd7SDipen Patel 						    u32 offset,
45142112dd7SDipen Patel 						    unsigned long flags);
45279a9becdSAlexandre Courbot 	int			base;
45379a9becdSAlexandre Courbot 	u16			ngpio;
4544e804c39SSergio Paracuellos 	u16			offset;
45579a9becdSAlexandre Courbot 	const char		*const *names;
4569fb1f39eSLinus Walleij 	bool			can_sleep;
45779a9becdSAlexandre Courbot 
4580f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC)
4590f4630f3SLinus Walleij 	unsigned long (*read_reg)(void __iomem *reg);
4600f4630f3SLinus Walleij 	void (*write_reg)(void __iomem *reg, unsigned long data);
46124efd94bSLinus Walleij 	bool be_bits;
4620f4630f3SLinus Walleij 	void __iomem *reg_dat;
4630f4630f3SLinus Walleij 	void __iomem *reg_set;
4640f4630f3SLinus Walleij 	void __iomem *reg_clr;
465f69e00bdSLinus Walleij 	void __iomem *reg_dir_out;
466f69e00bdSLinus Walleij 	void __iomem *reg_dir_in;
467f69e00bdSLinus Walleij 	bool bgpio_dir_unreadable;
4680f4630f3SLinus Walleij 	int bgpio_bits;
4693c938cc5SSchspa Shi 	raw_spinlock_t bgpio_lock;
4700f4630f3SLinus Walleij 	unsigned long bgpio_data;
4710f4630f3SLinus Walleij 	unsigned long bgpio_dir;
472f310f2efSEnrico Weigelt #endif /* CONFIG_GPIO_GENERIC */
4730f4630f3SLinus Walleij 
47414250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
47514250520SLinus Walleij 	/*
4767d75a871SPaul Bolle 	 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
47714250520SLinus Walleij 	 * to handle IRQs for most practical cases.
47814250520SLinus Walleij 	 */
479c44eafd7SThierry Reding 
480c44eafd7SThierry Reding 	/**
481c44eafd7SThierry Reding 	 * @irq:
482c44eafd7SThierry Reding 	 *
483c44eafd7SThierry Reding 	 * Integrates interrupt chip functionality with the GPIO chip. Can be
484c44eafd7SThierry Reding 	 * used to handle IRQs for most practical cases.
485c44eafd7SThierry Reding 	 */
486c44eafd7SThierry Reding 	struct gpio_irq_chip irq;
487f310f2efSEnrico Weigelt #endif /* CONFIG_GPIOLIB_IRQCHIP */
48814250520SLinus Walleij 
489726cb3baSStephen Boyd 	/**
490726cb3baSStephen Boyd 	 * @valid_mask:
491726cb3baSStephen Boyd 	 *
4922d93018fSRandy Dunlap 	 * If not %NULL, holds bitmask of GPIOs which are valid to be used
493726cb3baSStephen Boyd 	 * from the chip.
494726cb3baSStephen Boyd 	 */
495726cb3baSStephen Boyd 	unsigned long *valid_mask;
496726cb3baSStephen Boyd 
49779a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO)
49879a9becdSAlexandre Courbot 	/*
4992d93018fSRandy Dunlap 	 * If CONFIG_OF_GPIO is enabled, then all GPIO controllers described in
5002d93018fSRandy Dunlap 	 * the device tree automatically may have an OF translation
50179a9becdSAlexandre Courbot 	 */
50267049c50SThierry Reding 
50367049c50SThierry Reding 	/**
50467049c50SThierry Reding 	 * @of_node:
50567049c50SThierry Reding 	 *
50667049c50SThierry Reding 	 * Pointer to a device tree node representing this GPIO controller.
50767049c50SThierry Reding 	 */
50879a9becdSAlexandre Courbot 	struct device_node *of_node;
50967049c50SThierry Reding 
51067049c50SThierry Reding 	/**
51167049c50SThierry Reding 	 * @of_gpio_n_cells:
51267049c50SThierry Reding 	 *
51367049c50SThierry Reding 	 * Number of cells used to form the GPIO specifier.
51467049c50SThierry Reding 	 */
515e3b445d7SThierry Reding 	unsigned int of_gpio_n_cells;
51667049c50SThierry Reding 
51767049c50SThierry Reding 	/**
51867049c50SThierry Reding 	 * @of_xlate:
51967049c50SThierry Reding 	 *
52067049c50SThierry Reding 	 * Callback to translate a device tree GPIO specifier into a chip-
52167049c50SThierry Reding 	 * relative GPIO number and flags.
52267049c50SThierry Reding 	 */
52379a9becdSAlexandre Courbot 	int (*of_xlate)(struct gpio_chip *gc,
52479a9becdSAlexandre Courbot 			const struct of_phandle_args *gpiospec, u32 *flags);
5253550bba2SStefan Wahren 
5263550bba2SStefan Wahren 	/**
5273550bba2SStefan Wahren 	 * @of_gpio_ranges_fallback:
5283550bba2SStefan Wahren 	 *
5293550bba2SStefan Wahren 	 * Optional hook for the case that no gpio-ranges property is defined
5303550bba2SStefan Wahren 	 * within the device tree node "np" (usually DT before introduction
5313550bba2SStefan Wahren 	 * of gpio-ranges). So this callback is helpful to provide the
5323550bba2SStefan Wahren 	 * necessary backward compatibility for the pin ranges.
5333550bba2SStefan Wahren 	 */
5343550bba2SStefan Wahren 	int (*of_gpio_ranges_fallback)(struct gpio_chip *gc,
5353550bba2SStefan Wahren 				       struct device_node *np);
5363550bba2SStefan Wahren 
537f310f2efSEnrico Weigelt #endif /* CONFIG_OF_GPIO */
53879a9becdSAlexandre Courbot };
53979a9becdSAlexandre Courbot 
540a0b66a73SLinus Walleij extern const char *gpiochip_is_requested(struct gpio_chip *gc,
5418d091012SDouglas Anderson 			unsigned int offset);
54279a9becdSAlexandre Courbot 
543b3337eb2SAndy Shevchenko /**
544b3337eb2SAndy Shevchenko  * for_each_requested_gpio_in_range - iterates over requested GPIOs in a given range
545b3337eb2SAndy Shevchenko  * @chip:	the chip to query
546b3337eb2SAndy Shevchenko  * @i:		loop variable
547b3337eb2SAndy Shevchenko  * @base:	first GPIO in the range
548b3337eb2SAndy Shevchenko  * @size:	amount of GPIOs to check starting from @base
549b3337eb2SAndy Shevchenko  * @label:	label of current GPIO
550b3337eb2SAndy Shevchenko  */
551b3337eb2SAndy Shevchenko #define for_each_requested_gpio_in_range(chip, i, base, size, label)			\
552b3337eb2SAndy Shevchenko 	for (i = 0; i < size; i++)							\
553b3337eb2SAndy Shevchenko 		if ((label = gpiochip_is_requested(chip, base + i)) == NULL) {} else
554b3337eb2SAndy Shevchenko 
555b3337eb2SAndy Shevchenko /* Iterates over all requested GPIO of the given @chip */
556b3337eb2SAndy Shevchenko #define for_each_requested_gpio(chip, i, label)						\
557b3337eb2SAndy Shevchenko 	for_each_requested_gpio_in_range(chip, i, 0, chip->ngpio, label)
558b3337eb2SAndy Shevchenko 
55979a9becdSAlexandre Courbot /* add/remove chips */
560a0b66a73SLinus Walleij extern int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
56139c3fd58SAndrew Lunn 				      struct lock_class_key *lock_key,
56239c3fd58SAndrew Lunn 				      struct lock_class_key *request_key);
563959bc7b2SThierry Reding 
564959bc7b2SThierry Reding /**
565959bc7b2SThierry Reding  * gpiochip_add_data() - register a gpio_chip
5668fc3ed3aSColton Lewis  * @gc: the chip to register, with gc->base initialized
567959bc7b2SThierry Reding  * @data: driver-private data associated with this chip
568959bc7b2SThierry Reding  *
569959bc7b2SThierry Reding  * Context: potentially before irqs will work
570959bc7b2SThierry Reding  *
571959bc7b2SThierry Reding  * When gpiochip_add_data() is called very early during boot, so that GPIOs
5728fc3ed3aSColton Lewis  * can be freely used, the gc->parent device must be registered before
573959bc7b2SThierry Reding  * the gpio framework's arch_initcall().  Otherwise sysfs initialization
574959bc7b2SThierry Reding  * for GPIOs will fail rudely.
575959bc7b2SThierry Reding  *
576959bc7b2SThierry Reding  * gpiochip_add_data() must only be called after gpiolib initialization,
5772d93018fSRandy Dunlap  * i.e. after core_initcall().
578959bc7b2SThierry Reding  *
5798fc3ed3aSColton Lewis  * If gc->base is negative, this requests dynamic assignment of
580959bc7b2SThierry Reding  * a range of valid GPIOs.
581959bc7b2SThierry Reding  *
582959bc7b2SThierry Reding  * Returns:
583959bc7b2SThierry Reding  * A negative errno if the chip can't be registered, such as because the
5848fc3ed3aSColton Lewis  * gc->base is invalid or already associated with a different chip.
585959bc7b2SThierry Reding  * Otherwise it returns zero as a success code.
586959bc7b2SThierry Reding  */
587959bc7b2SThierry Reding #ifdef CONFIG_LOCKDEP
588a0b66a73SLinus Walleij #define gpiochip_add_data(gc, data) ({		\
58939c3fd58SAndrew Lunn 		static struct lock_class_key lock_key;	\
59039c3fd58SAndrew Lunn 		static struct lock_class_key request_key;	  \
591a0b66a73SLinus Walleij 		gpiochip_add_data_with_key(gc, data, &lock_key, \
59239c3fd58SAndrew Lunn 					   &request_key);	  \
593959bc7b2SThierry Reding 	})
5945f402bb1SAhmad Fatoum #define devm_gpiochip_add_data(dev, gc, data) ({ \
5955f402bb1SAhmad Fatoum 		static struct lock_class_key lock_key;	\
5965f402bb1SAhmad Fatoum 		static struct lock_class_key request_key;	  \
5975f402bb1SAhmad Fatoum 		devm_gpiochip_add_data_with_key(dev, gc, data, &lock_key, \
5985f402bb1SAhmad Fatoum 					   &request_key);	  \
5995f402bb1SAhmad Fatoum 	})
600959bc7b2SThierry Reding #else
601a0b66a73SLinus Walleij #define gpiochip_add_data(gc, data) gpiochip_add_data_with_key(gc, data, NULL, NULL)
6025f402bb1SAhmad Fatoum #define devm_gpiochip_add_data(dev, gc, data) \
6035f402bb1SAhmad Fatoum 	devm_gpiochip_add_data_with_key(dev, gc, data, NULL, NULL)
604f310f2efSEnrico Weigelt #endif /* CONFIG_LOCKDEP */
605959bc7b2SThierry Reding 
606a0b66a73SLinus Walleij static inline int gpiochip_add(struct gpio_chip *gc)
607b08ea35aSLinus Walleij {
608a0b66a73SLinus Walleij 	return gpiochip_add_data(gc, NULL);
609b08ea35aSLinus Walleij }
610a0b66a73SLinus Walleij extern void gpiochip_remove(struct gpio_chip *gc);
6115f402bb1SAhmad Fatoum extern int devm_gpiochip_add_data_with_key(struct device *dev, struct gpio_chip *gc, void *data,
6125f402bb1SAhmad Fatoum 					   struct lock_class_key *lock_key,
6135f402bb1SAhmad Fatoum 					   struct lock_class_key *request_key);
6140cf3292cSLaxman Dewangan 
61579a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data,
616a0b66a73SLinus Walleij 			      int (*match)(struct gpio_chip *gc, void *data));
61779a9becdSAlexandre Courbot 
618a0b66a73SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset);
619a0b66a73SLinus Walleij int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset);
620a0b66a73SLinus Walleij void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset);
621a0b66a73SLinus Walleij void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset);
622a0b66a73SLinus Walleij void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset);
62379a9becdSAlexandre Courbot 
624704f0875SMarc Zyngier /* irq_data versions of the above */
625704f0875SMarc Zyngier int gpiochip_irq_reqres(struct irq_data *data);
626704f0875SMarc Zyngier void gpiochip_irq_relres(struct irq_data *data);
627704f0875SMarc Zyngier 
62836b78aaeSMarc Zyngier /* Paste this in your irq_chip structure  */
62936b78aaeSMarc Zyngier #define	GPIOCHIP_IRQ_RESOURCE_HELPERS					\
63036b78aaeSMarc Zyngier 		.irq_request_resources  = gpiochip_irq_reqres,		\
63136b78aaeSMarc Zyngier 		.irq_release_resources  = gpiochip_irq_relres
63236b78aaeSMarc Zyngier 
63336b78aaeSMarc Zyngier static inline void gpio_irq_chip_set_chip(struct gpio_irq_chip *girq,
63436b78aaeSMarc Zyngier 					  const struct irq_chip *chip)
63536b78aaeSMarc Zyngier {
63636b78aaeSMarc Zyngier 	/* Yes, dropping const is ugly, but it isn't like we have a choice */
63736b78aaeSMarc Zyngier 	girq->chip = (struct irq_chip *)chip;
63836b78aaeSMarc Zyngier }
63936b78aaeSMarc Zyngier 
640143b65d6SLinus Walleij /* Line status inquiry for drivers */
641a0b66a73SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset);
642a0b66a73SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset);
643143b65d6SLinus Walleij 
64405f479bfSCharles Keepax /* Sleep persistence inquiry for drivers */
645a0b66a73SLinus Walleij bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset);
646a0b66a73SLinus Walleij bool gpiochip_line_is_valid(const struct gpio_chip *gc, unsigned int offset);
64705f479bfSCharles Keepax 
648b08ea35aSLinus Walleij /* get driver data */
649a0b66a73SLinus Walleij void *gpiochip_get_data(struct gpio_chip *gc);
650b08ea35aSLinus Walleij 
6510f4630f3SLinus Walleij struct bgpio_pdata {
6520f4630f3SLinus Walleij 	const char *label;
6530f4630f3SLinus Walleij 	int base;
6540f4630f3SLinus Walleij 	int ngpio;
6550f4630f3SLinus Walleij };
6560f4630f3SLinus Walleij 
657fdd61a01SLinus Walleij #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
658fdd61a01SLinus Walleij 
659*91a29af4SMarc Zyngier int gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc,
660*91a29af4SMarc Zyngier 					    union gpio_irq_fwspec *gfwspec,
661fdd61a01SLinus Walleij 					    unsigned int parent_hwirq,
662fdd61a01SLinus Walleij 					    unsigned int parent_type);
663*91a29af4SMarc Zyngier int gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc,
664*91a29af4SMarc Zyngier 					     union gpio_irq_fwspec *gfwspec,
665fdd61a01SLinus Walleij 					     unsigned int parent_hwirq,
666fdd61a01SLinus Walleij 					     unsigned int parent_type);
667fdd61a01SLinus Walleij 
668fdd61a01SLinus Walleij #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
669fdd61a01SLinus Walleij 
6700f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev,
6710f4630f3SLinus Walleij 	       unsigned long sz, void __iomem *dat, void __iomem *set,
6720f4630f3SLinus Walleij 	       void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
6730f4630f3SLinus Walleij 	       unsigned long flags);
6740f4630f3SLinus Walleij 
6750f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN		BIT(0)
6760f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET	BIT(1) /* reg_set is unreadable */
6770f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR	BIT(2) /* reg_dir is unreadable */
6780f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER	BIT(3)
6790f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET	BIT(4) /* reg_set stores output value */
6800f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT		BIT(5) /* only input */
681d19d2de6SChuanhong Guo #define BGPIOF_NO_SET_ON_INPUT		BIT(6)
6820f4630f3SLinus Walleij 
6831b95b4ebSThierry Reding int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
6841b95b4ebSThierry Reding 		     irq_hw_number_t hwirq);
6851b95b4ebSThierry Reding void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq);
6861b95b4ebSThierry Reding 
687ef74f70eSBrian Masney int gpiochip_irq_domain_activate(struct irq_domain *domain,
688ef74f70eSBrian Masney 				 struct irq_data *data, bool reserve);
689ef74f70eSBrian Masney void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
690ef74f70eSBrian Masney 				    struct irq_data *data);
691ef74f70eSBrian Masney 
692a0b66a73SLinus Walleij bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gc,
69364ff2c8eSStephen Boyd 				unsigned int offset);
69464ff2c8eSStephen Boyd 
6959c7d2469SÁlvaro Fernández Rojas #ifdef CONFIG_GPIOLIB_IRQCHIP
6966a45b0e2SMichael Walle int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
6976a45b0e2SMichael Walle 				struct irq_domain *domain);
6989c7d2469SÁlvaro Fernández Rojas #else
6999c7d2469SÁlvaro Fernández Rojas static inline int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
7009c7d2469SÁlvaro Fernández Rojas 					      struct irq_domain *domain)
7019c7d2469SÁlvaro Fernández Rojas {
7029c7d2469SÁlvaro Fernández Rojas 	WARN_ON(1);
7039c7d2469SÁlvaro Fernández Rojas 	return -EINVAL;
7049c7d2469SÁlvaro Fernández Rojas }
7059c7d2469SÁlvaro Fernández Rojas #endif
7066a45b0e2SMichael Walle 
7078d091012SDouglas Anderson int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset);
7088d091012SDouglas Anderson void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset);
7098d091012SDouglas Anderson int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset,
7102956b5d9SMika Westerberg 			    unsigned long config);
711c771c2f4SJonas Gorski 
712964cb341SLinus Walleij /**
713964cb341SLinus Walleij  * struct gpio_pin_range - pin range controlled by a gpio chip
714950d55f5SThierry Reding  * @node: list for maintaining set of pin ranges, used internally
715964cb341SLinus Walleij  * @pctldev: pinctrl device which handles corresponding pins
716964cb341SLinus Walleij  * @range: actual range of pins controlled by a gpio controller
717964cb341SLinus Walleij  */
718964cb341SLinus Walleij struct gpio_pin_range {
719964cb341SLinus Walleij 	struct list_head node;
720964cb341SLinus Walleij 	struct pinctrl_dev *pctldev;
721964cb341SLinus Walleij 	struct pinctrl_gpio_range range;
722964cb341SLinus Walleij };
723964cb341SLinus Walleij 
7249091373aSMasahiro Yamada #ifdef CONFIG_PINCTRL
7259091373aSMasahiro Yamada 
726a0b66a73SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
727964cb341SLinus Walleij 			   unsigned int gpio_offset, unsigned int pin_offset,
728964cb341SLinus Walleij 			   unsigned int npins);
729a0b66a73SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *gc,
730964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
731964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group);
732a0b66a73SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *gc);
733964cb341SLinus Walleij 
734f310f2efSEnrico Weigelt #else /* ! CONFIG_PINCTRL */
735964cb341SLinus Walleij 
736964cb341SLinus Walleij static inline int
737a0b66a73SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
738964cb341SLinus Walleij 		       unsigned int gpio_offset, unsigned int pin_offset,
739964cb341SLinus Walleij 		       unsigned int npins)
740964cb341SLinus Walleij {
741964cb341SLinus Walleij 	return 0;
742964cb341SLinus Walleij }
743964cb341SLinus Walleij static inline int
744a0b66a73SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *gc,
745964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
746964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group)
747964cb341SLinus Walleij {
748964cb341SLinus Walleij 	return 0;
749964cb341SLinus Walleij }
750964cb341SLinus Walleij 
751964cb341SLinus Walleij static inline void
752a0b66a73SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *gc)
753964cb341SLinus Walleij {
754964cb341SLinus Walleij }
755964cb341SLinus Walleij 
756964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */
757964cb341SLinus Walleij 
758a0b66a73SLinus Walleij struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc,
75906863620SBartosz Golaszewski 					    unsigned int hwnum,
76021abf103SLinus Walleij 					    const char *label,
7615923ea6cSLinus Walleij 					    enum gpio_lookup_flags lflags,
7625923ea6cSLinus Walleij 					    enum gpiod_flags dflags);
763f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc);
764f7d4ad98SGuenter Roeck 
765ae0755b5SLinus Walleij #ifdef CONFIG_GPIOLIB
766ae0755b5SLinus Walleij 
767c7663fa2SYueHaibing /* lock/unlock as IRQ */
768a0b66a73SLinus Walleij int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset);
769a0b66a73SLinus Walleij void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset);
770c7663fa2SYueHaibing 
7719091373aSMasahiro Yamada 
7729091373aSMasahiro Yamada struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc);
7739091373aSMasahiro Yamada 
774bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */
775bb1e88ccSAlexandre Courbot 
776bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
777bb1e88ccSAlexandre Courbot {
778bb1e88ccSAlexandre Courbot 	/* GPIO can never have been requested */
779bb1e88ccSAlexandre Courbot 	WARN_ON(1);
780bb1e88ccSAlexandre Courbot 	return ERR_PTR(-ENODEV);
781bb1e88ccSAlexandre Courbot }
782bb1e88ccSAlexandre Courbot 
783a0b66a73SLinus Walleij static inline int gpiochip_lock_as_irq(struct gpio_chip *gc,
784c7663fa2SYueHaibing 				       unsigned int offset)
785c7663fa2SYueHaibing {
786c7663fa2SYueHaibing 	WARN_ON(1);
787c7663fa2SYueHaibing 	return -EINVAL;
788c7663fa2SYueHaibing }
789c7663fa2SYueHaibing 
790a0b66a73SLinus Walleij static inline void gpiochip_unlock_as_irq(struct gpio_chip *gc,
791c7663fa2SYueHaibing 					  unsigned int offset)
792c7663fa2SYueHaibing {
793c7663fa2SYueHaibing 	WARN_ON(1);
794c7663fa2SYueHaibing }
795bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */
796bb1e88ccSAlexandre Courbot 
79785ebb1a6SAndy Shevchenko #define for_each_gpiochip_node(dev, child)					\
79885ebb1a6SAndy Shevchenko 	device_for_each_child_node(dev, child)					\
79985ebb1a6SAndy Shevchenko 		if (!fwnode_property_present(child, "gpio-controller")) {} else
80085ebb1a6SAndy Shevchenko 
8010b19dde9SAndy Shevchenko static inline unsigned int gpiochip_node_count(struct device *dev)
8020b19dde9SAndy Shevchenko {
8030b19dde9SAndy Shevchenko 	struct fwnode_handle *child;
8040b19dde9SAndy Shevchenko 	unsigned int count = 0;
8050b19dde9SAndy Shevchenko 
8060b19dde9SAndy Shevchenko 	for_each_gpiochip_node(dev, child)
8070b19dde9SAndy Shevchenko 		count++;
8080b19dde9SAndy Shevchenko 
8090b19dde9SAndy Shevchenko 	return count;
8100b19dde9SAndy Shevchenko }
8110b19dde9SAndy Shevchenko 
812af47d803SAndy Shevchenko static inline struct fwnode_handle *gpiochip_node_get_first(struct device *dev)
813af47d803SAndy Shevchenko {
814af47d803SAndy Shevchenko 	struct fwnode_handle *fwnode;
815af47d803SAndy Shevchenko 
816af47d803SAndy Shevchenko 	for_each_gpiochip_node(dev, fwnode)
817af47d803SAndy Shevchenko 		return fwnode;
818af47d803SAndy Shevchenko 
819af47d803SAndy Shevchenko 	return NULL;
820af47d803SAndy Shevchenko }
821af47d803SAndy Shevchenko 
8229091373aSMasahiro Yamada #endif /* __LINUX_GPIO_DRIVER_H */
823