xref: /openbmc/linux/include/linux/gpio/driver.h (revision 726cb3ba)
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;
2079a9becdSAlexandre Courbot 
21bb1e88ccSAlexandre Courbot #ifdef CONFIG_GPIOLIB
22bb1e88ccSAlexandre Courbot 
23c44eafd7SThierry Reding #ifdef CONFIG_GPIOLIB_IRQCHIP
24c44eafd7SThierry Reding /**
25c44eafd7SThierry Reding  * struct gpio_irq_chip - GPIO interrupt controller
26c44eafd7SThierry Reding  */
27c44eafd7SThierry Reding struct gpio_irq_chip {
28c44eafd7SThierry Reding 	/**
29da80ff81SThierry Reding 	 * @chip:
30da80ff81SThierry Reding 	 *
31da80ff81SThierry Reding 	 * GPIO IRQ chip implementation, provided by GPIO driver.
32da80ff81SThierry Reding 	 */
33da80ff81SThierry Reding 	struct irq_chip *chip;
34da80ff81SThierry Reding 
35da80ff81SThierry Reding 	/**
36f0fbe7bcSThierry Reding 	 * @domain:
37f0fbe7bcSThierry Reding 	 *
38f0fbe7bcSThierry Reding 	 * Interrupt translation domain; responsible for mapping between GPIO
39f0fbe7bcSThierry Reding 	 * hwirq number and Linux IRQ number.
40f0fbe7bcSThierry Reding 	 */
41f0fbe7bcSThierry Reding 	struct irq_domain *domain;
42f0fbe7bcSThierry Reding 
43f0fbe7bcSThierry Reding 	/**
44c44eafd7SThierry Reding 	 * @domain_ops:
45c44eafd7SThierry Reding 	 *
46c44eafd7SThierry Reding 	 * Table of interrupt domain operations for this IRQ chip.
47c44eafd7SThierry Reding 	 */
48c44eafd7SThierry Reding 	const struct irq_domain_ops *domain_ops;
49c44eafd7SThierry Reding 
50c44eafd7SThierry Reding 	/**
51c7a0aa59SThierry Reding 	 * @handler:
52c7a0aa59SThierry Reding 	 *
53c7a0aa59SThierry Reding 	 * The IRQ handler to use (often a predefined IRQ core function) for
54c7a0aa59SThierry Reding 	 * GPIO IRQs, provided by GPIO driver.
55c7a0aa59SThierry Reding 	 */
56c7a0aa59SThierry Reding 	irq_flow_handler_t handler;
57c7a0aa59SThierry Reding 
58c7a0aa59SThierry Reding 	/**
593634eeb0SThierry Reding 	 * @default_type:
603634eeb0SThierry Reding 	 *
613634eeb0SThierry Reding 	 * Default IRQ triggering type applied during GPIO driver
623634eeb0SThierry Reding 	 * initialization, provided by GPIO driver.
633634eeb0SThierry Reding 	 */
643634eeb0SThierry Reding 	unsigned int default_type;
653634eeb0SThierry Reding 
663634eeb0SThierry Reding 	/**
67ca9df053SThierry Reding 	 * @lock_key:
68ca9df053SThierry Reding 	 *
6939c3fd58SAndrew Lunn 	 * Per GPIO IRQ chip lockdep classes.
70ca9df053SThierry Reding 	 */
71ca9df053SThierry Reding 	struct lock_class_key *lock_key;
7239c3fd58SAndrew Lunn 	struct lock_class_key *request_key;
73ca9df053SThierry Reding 
74ca9df053SThierry Reding 	/**
75c44eafd7SThierry Reding 	 * @parent_handler:
76c44eafd7SThierry Reding 	 *
77c44eafd7SThierry Reding 	 * The interrupt handler for the GPIO chip's parent interrupts, may be
78c44eafd7SThierry Reding 	 * NULL if the parent interrupts are nested rather than cascaded.
79c44eafd7SThierry Reding 	 */
80c44eafd7SThierry Reding 	irq_flow_handler_t parent_handler;
81c44eafd7SThierry Reding 
82c44eafd7SThierry Reding 	/**
83c44eafd7SThierry Reding 	 * @parent_handler_data:
84c44eafd7SThierry Reding 	 *
85c44eafd7SThierry Reding 	 * Data associated, and passed to, the handler for the parent
86c44eafd7SThierry Reding 	 * interrupt.
87c44eafd7SThierry Reding 	 */
88c44eafd7SThierry Reding 	void *parent_handler_data;
8939e5f096SThierry Reding 
9039e5f096SThierry Reding 	/**
9139e5f096SThierry Reding 	 * @num_parents:
9239e5f096SThierry Reding 	 *
9339e5f096SThierry Reding 	 * The number of interrupt parents of a GPIO chip.
9439e5f096SThierry Reding 	 */
9539e5f096SThierry Reding 	unsigned int num_parents;
9639e5f096SThierry Reding 
9739e5f096SThierry Reding 	/**
9839e5f096SThierry Reding 	 * @parents:
9939e5f096SThierry Reding 	 *
10039e5f096SThierry Reding 	 * A list of interrupt parents of a GPIO chip. This is owned by the
10139e5f096SThierry Reding 	 * driver, so the core will only reference this list, not modify it.
10239e5f096SThierry Reding 	 */
10339e5f096SThierry Reding 	unsigned int *parents;
104dc6bafeeSThierry Reding 
105dc6bafeeSThierry Reding 	/**
106e0d89728SThierry Reding 	 * @map:
107e0d89728SThierry Reding 	 *
108e0d89728SThierry Reding 	 * A list of interrupt parents for each line of a GPIO chip.
109e0d89728SThierry Reding 	 */
110e0d89728SThierry Reding 	unsigned int *map;
111e0d89728SThierry Reding 
112e0d89728SThierry Reding 	/**
11360ed54caSThierry Reding 	 * @threaded:
114dc6bafeeSThierry Reding 	 *
11560ed54caSThierry Reding 	 * True if set the interrupt handling uses nested threads.
116dc6bafeeSThierry Reding 	 */
11760ed54caSThierry Reding 	bool threaded;
118dc7b0387SThierry Reding 
119dc7b0387SThierry Reding 	/**
120dc7b0387SThierry Reding 	 * @need_valid_mask:
121dc7b0387SThierry Reding 	 *
122dc7b0387SThierry Reding 	 * If set core allocates @valid_mask with all bits set to one.
123dc7b0387SThierry Reding 	 */
124dc7b0387SThierry Reding 	bool need_valid_mask;
125dc7b0387SThierry Reding 
126dc7b0387SThierry Reding 	/**
127dc7b0387SThierry Reding 	 * @valid_mask:
128dc7b0387SThierry Reding 	 *
129dc7b0387SThierry Reding 	 * If not %NULL holds bitmask of GPIOs which are valid to be included
130dc7b0387SThierry Reding 	 * in IRQ domain of the chip.
131dc7b0387SThierry Reding 	 */
132dc7b0387SThierry Reding 	unsigned long *valid_mask;
1338302cf58SThierry Reding 
1348302cf58SThierry Reding 	/**
1358302cf58SThierry Reding 	 * @first:
1368302cf58SThierry Reding 	 *
1378302cf58SThierry Reding 	 * Required for static IRQ allocation. If set, irq_domain_add_simple()
1388302cf58SThierry Reding 	 * will allocate and map all IRQs during initialization.
1398302cf58SThierry Reding 	 */
1408302cf58SThierry Reding 	unsigned int first;
141c44eafd7SThierry Reding };
142da80ff81SThierry Reding 
143da80ff81SThierry Reding static inline struct gpio_irq_chip *to_gpio_irq_chip(struct irq_chip *chip)
144da80ff81SThierry Reding {
145da80ff81SThierry Reding 	return container_of(chip, struct gpio_irq_chip, chip);
146da80ff81SThierry Reding }
147c44eafd7SThierry Reding #endif
148c44eafd7SThierry Reding 
14979a9becdSAlexandre Courbot /**
15079a9becdSAlexandre Courbot  * struct gpio_chip - abstract a GPIO controller
151df4878e9SLinus Walleij  * @label: a functional name for the GPIO device, such as a part
152df4878e9SLinus Walleij  *	number or the name of the SoC IP-block implementing it.
153ff2b1359SLinus Walleij  * @gpiodev: the internal state holder, opaque struct
15458383c78SLinus Walleij  * @parent: optional parent device providing the GPIOs
15579a9becdSAlexandre Courbot  * @owner: helps prevent removal of modules exporting active GPIOs
15679a9becdSAlexandre Courbot  * @request: optional hook for chip-specific activation, such as
15779a9becdSAlexandre Courbot  *	enabling module power and clock; may sleep
15879a9becdSAlexandre Courbot  * @free: optional hook for chip-specific deactivation, such as
15979a9becdSAlexandre Courbot  *	disabling module power and clock; may sleep
16079a9becdSAlexandre Courbot  * @get_direction: returns direction for signal "offset", 0=out, 1=in,
16179a9becdSAlexandre Courbot  *	(same as GPIOF_DIR_XXX), or negative error
16279a9becdSAlexandre Courbot  * @direction_input: configures signal "offset" as input, or returns error
16379a9becdSAlexandre Courbot  * @direction_output: configures signal "offset" as output, or returns error
16460befd2eSVladimir Zapolskiy  * @get: returns value for signal "offset", 0=low, 1=high, or negative error
165eec1d566SLukas Wunner  * @get_multiple: reads values for multiple signals defined by "mask" and
166eec1d566SLukas Wunner  *	stores them in "bits", returns 0 on success or negative error
16779a9becdSAlexandre Courbot  * @set: assigns output value for signal "offset"
1685f424243SRojhalat Ibrahim  * @set_multiple: assigns output values for multiple signals defined by "mask"
1692956b5d9SMika Westerberg  * @set_config: optional hook for all kinds of settings. Uses the same
1702956b5d9SMika Westerberg  *	packed config format as generic pinconf.
17179a9becdSAlexandre Courbot  * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
17279a9becdSAlexandre Courbot  *	implementation may not sleep
17379a9becdSAlexandre Courbot  * @dbg_show: optional routine to show contents in debugfs; default code
17479a9becdSAlexandre Courbot  *	will be used when this is omitted, but custom code can show extra
17579a9becdSAlexandre Courbot  *	state (such as pullup/pulldown configuration).
176af6c235dSLinus Walleij  * @base: identifies the first GPIO number handled by this chip;
177af6c235dSLinus Walleij  *	or, if negative during registration, requests dynamic ID allocation.
178af6c235dSLinus Walleij  *	DEPRECATION: providing anything non-negative and nailing the base
17930bb6fb3SGeert Uytterhoeven  *	offset of GPIO chips is deprecated. Please pass -1 as base to
180af6c235dSLinus Walleij  *	let gpiolib select the chip base in all possible cases. We want to
181af6c235dSLinus Walleij  *	get rid of the static GPIO number space in the long run.
18279a9becdSAlexandre Courbot  * @ngpio: the number of GPIOs handled by this controller; the last GPIO
18379a9becdSAlexandre Courbot  *	handled is (base + ngpio - 1).
18479a9becdSAlexandre Courbot  * @names: if set, must be an array of strings to use as alternative
18579a9becdSAlexandre Courbot  *      names for the GPIOs in this chip. Any entry in the array
18679a9becdSAlexandre Courbot  *      may be NULL if there is no alias for the GPIO, however the
18779a9becdSAlexandre Courbot  *      array must be @ngpio entries long.  A name can include a single printk
18879a9becdSAlexandre Courbot  *      format specifier for an unsigned int.  It is substituted by the actual
18979a9becdSAlexandre Courbot  *      number of the gpio.
1909fb1f39eSLinus Walleij  * @can_sleep: flag must be set iff get()/set() methods sleep, as they
1911c8732bbSLinus Walleij  *	must while accessing GPIO expander chips over I2C or SPI. This
1921c8732bbSLinus Walleij  *	implies that if the chip supports IRQs, these IRQs need to be threaded
1931c8732bbSLinus Walleij  *	as the chip access may sleep when e.g. reading out the IRQ status
1941c8732bbSLinus Walleij  *	registers.
1950f4630f3SLinus Walleij  * @read_reg: reader function for generic GPIO
1960f4630f3SLinus Walleij  * @write_reg: writer function for generic GPIO
19724efd94bSLinus Walleij  * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing
19824efd94bSLinus Walleij  *	line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the
19924efd94bSLinus Walleij  *	generic GPIO core. It is for internal housekeeping only.
2000f4630f3SLinus Walleij  * @reg_dat: data (in) register for generic GPIO
2010f4630f3SLinus Walleij  * @reg_set: output set register (out=high) for generic GPIO
20208bcd3edSAnthony Best  * @reg_clr: output clear register (out=low) for generic GPIO
2030f4630f3SLinus Walleij  * @reg_dir: direction setting register for generic GPIO
2040f4630f3SLinus Walleij  * @bgpio_bits: number of register bits used for a generic GPIO i.e.
2050f4630f3SLinus Walleij  *	<register width> * 8
2060f4630f3SLinus Walleij  * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep
2070f4630f3SLinus Walleij  *	shadowed and real data registers writes together.
2080f4630f3SLinus Walleij  * @bgpio_data:	shadowed data register for generic GPIO to clear/set bits
2090f4630f3SLinus Walleij  *	safely.
2100f4630f3SLinus Walleij  * @bgpio_dir: shadowed direction register for generic GPIO to clear/set
2110f4630f3SLinus Walleij  *	direction safely.
21279a9becdSAlexandre Courbot  *
21379a9becdSAlexandre Courbot  * A gpio_chip can help platforms abstract various sources of GPIOs so
21479a9becdSAlexandre Courbot  * they can all be accessed through a common programing interface.
21579a9becdSAlexandre Courbot  * Example sources would be SOC controllers, FPGAs, multifunction
21679a9becdSAlexandre Courbot  * chips, dedicated GPIO expanders, and so on.
21779a9becdSAlexandre Courbot  *
21879a9becdSAlexandre Courbot  * Each chip controls a number of signals, identified in method calls
21979a9becdSAlexandre Courbot  * by "offset" values in the range 0..(@ngpio - 1).  When those signals
22079a9becdSAlexandre Courbot  * are referenced through calls like gpio_get_value(gpio), the offset
22179a9becdSAlexandre Courbot  * is calculated by subtracting @base from the gpio number.
22279a9becdSAlexandre Courbot  */
22379a9becdSAlexandre Courbot struct gpio_chip {
22479a9becdSAlexandre Courbot 	const char		*label;
225ff2b1359SLinus Walleij 	struct gpio_device	*gpiodev;
22658383c78SLinus Walleij 	struct device		*parent;
22779a9becdSAlexandre Courbot 	struct module		*owner;
22879a9becdSAlexandre Courbot 
22979a9becdSAlexandre Courbot 	int			(*request)(struct gpio_chip *chip,
23079a9becdSAlexandre Courbot 						unsigned offset);
23179a9becdSAlexandre Courbot 	void			(*free)(struct gpio_chip *chip,
23279a9becdSAlexandre Courbot 						unsigned offset);
23379a9becdSAlexandre Courbot 	int			(*get_direction)(struct gpio_chip *chip,
23479a9becdSAlexandre Courbot 						unsigned offset);
23579a9becdSAlexandre Courbot 	int			(*direction_input)(struct gpio_chip *chip,
23679a9becdSAlexandre Courbot 						unsigned offset);
23779a9becdSAlexandre Courbot 	int			(*direction_output)(struct gpio_chip *chip,
23879a9becdSAlexandre Courbot 						unsigned offset, int value);
23979a9becdSAlexandre Courbot 	int			(*get)(struct gpio_chip *chip,
24079a9becdSAlexandre Courbot 						unsigned offset);
241eec1d566SLukas Wunner 	int			(*get_multiple)(struct gpio_chip *chip,
242eec1d566SLukas Wunner 						unsigned long *mask,
243eec1d566SLukas Wunner 						unsigned long *bits);
24479a9becdSAlexandre Courbot 	void			(*set)(struct gpio_chip *chip,
24579a9becdSAlexandre Courbot 						unsigned offset, int value);
2465f424243SRojhalat Ibrahim 	void			(*set_multiple)(struct gpio_chip *chip,
2475f424243SRojhalat Ibrahim 						unsigned long *mask,
2485f424243SRojhalat Ibrahim 						unsigned long *bits);
2492956b5d9SMika Westerberg 	int			(*set_config)(struct gpio_chip *chip,
25079a9becdSAlexandre Courbot 					      unsigned offset,
2512956b5d9SMika Westerberg 					      unsigned long config);
25279a9becdSAlexandre Courbot 	int			(*to_irq)(struct gpio_chip *chip,
25379a9becdSAlexandre Courbot 						unsigned offset);
25479a9becdSAlexandre Courbot 
25579a9becdSAlexandre Courbot 	void			(*dbg_show)(struct seq_file *s,
25679a9becdSAlexandre Courbot 						struct gpio_chip *chip);
25779a9becdSAlexandre Courbot 	int			base;
25879a9becdSAlexandre Courbot 	u16			ngpio;
25979a9becdSAlexandre Courbot 	const char		*const *names;
2609fb1f39eSLinus Walleij 	bool			can_sleep;
26179a9becdSAlexandre Courbot 
2620f4630f3SLinus Walleij #if IS_ENABLED(CONFIG_GPIO_GENERIC)
2630f4630f3SLinus Walleij 	unsigned long (*read_reg)(void __iomem *reg);
2640f4630f3SLinus Walleij 	void (*write_reg)(void __iomem *reg, unsigned long data);
26524efd94bSLinus Walleij 	bool be_bits;
2660f4630f3SLinus Walleij 	void __iomem *reg_dat;
2670f4630f3SLinus Walleij 	void __iomem *reg_set;
2680f4630f3SLinus Walleij 	void __iomem *reg_clr;
2690f4630f3SLinus Walleij 	void __iomem *reg_dir;
2700f4630f3SLinus Walleij 	int bgpio_bits;
2710f4630f3SLinus Walleij 	spinlock_t bgpio_lock;
2720f4630f3SLinus Walleij 	unsigned long bgpio_data;
2730f4630f3SLinus Walleij 	unsigned long bgpio_dir;
2740f4630f3SLinus Walleij #endif
2750f4630f3SLinus Walleij 
27614250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
27714250520SLinus Walleij 	/*
2787d75a871SPaul Bolle 	 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
27914250520SLinus Walleij 	 * to handle IRQs for most practical cases.
28014250520SLinus Walleij 	 */
281c44eafd7SThierry Reding 
282c44eafd7SThierry Reding 	/**
283c44eafd7SThierry Reding 	 * @irq:
284c44eafd7SThierry Reding 	 *
285c44eafd7SThierry Reding 	 * Integrates interrupt chip functionality with the GPIO chip. Can be
286c44eafd7SThierry Reding 	 * used to handle IRQs for most practical cases.
287c44eafd7SThierry Reding 	 */
288c44eafd7SThierry Reding 	struct gpio_irq_chip irq;
28914250520SLinus Walleij #endif
29014250520SLinus Walleij 
291726cb3baSStephen Boyd 	/**
292726cb3baSStephen Boyd 	 * @need_valid_mask:
293726cb3baSStephen Boyd 	 *
294726cb3baSStephen Boyd 	 * If set core allocates @valid_mask with all bits set to one.
295726cb3baSStephen Boyd 	 */
296726cb3baSStephen Boyd 	bool need_valid_mask;
297726cb3baSStephen Boyd 
298726cb3baSStephen Boyd 	/**
299726cb3baSStephen Boyd 	 * @valid_mask:
300726cb3baSStephen Boyd 	 *
301726cb3baSStephen Boyd 	 * If not %NULL holds bitmask of GPIOs which are valid to be used
302726cb3baSStephen Boyd 	 * from the chip.
303726cb3baSStephen Boyd 	 */
304726cb3baSStephen Boyd 	unsigned long *valid_mask;
305726cb3baSStephen Boyd 
30679a9becdSAlexandre Courbot #if defined(CONFIG_OF_GPIO)
30779a9becdSAlexandre Courbot 	/*
30879a9becdSAlexandre Courbot 	 * If CONFIG_OF is enabled, then all GPIO controllers described in the
30979a9becdSAlexandre Courbot 	 * device tree automatically may have an OF translation
31079a9becdSAlexandre Courbot 	 */
31167049c50SThierry Reding 
31267049c50SThierry Reding 	/**
31367049c50SThierry Reding 	 * @of_node:
31467049c50SThierry Reding 	 *
31567049c50SThierry Reding 	 * Pointer to a device tree node representing this GPIO controller.
31667049c50SThierry Reding 	 */
31779a9becdSAlexandre Courbot 	struct device_node *of_node;
31867049c50SThierry Reding 
31967049c50SThierry Reding 	/**
32067049c50SThierry Reding 	 * @of_gpio_n_cells:
32167049c50SThierry Reding 	 *
32267049c50SThierry Reding 	 * Number of cells used to form the GPIO specifier.
32367049c50SThierry Reding 	 */
324e3b445d7SThierry Reding 	unsigned int of_gpio_n_cells;
32567049c50SThierry Reding 
32667049c50SThierry Reding 	/**
32767049c50SThierry Reding 	 * @of_xlate:
32867049c50SThierry Reding 	 *
32967049c50SThierry Reding 	 * Callback to translate a device tree GPIO specifier into a chip-
33067049c50SThierry Reding 	 * relative GPIO number and flags.
33167049c50SThierry Reding 	 */
33279a9becdSAlexandre Courbot 	int (*of_xlate)(struct gpio_chip *gc,
33379a9becdSAlexandre Courbot 			const struct of_phandle_args *gpiospec, u32 *flags);
33479a9becdSAlexandre Courbot #endif
33579a9becdSAlexandre Courbot };
33679a9becdSAlexandre Courbot 
33779a9becdSAlexandre Courbot extern const char *gpiochip_is_requested(struct gpio_chip *chip,
33879a9becdSAlexandre Courbot 			unsigned offset);
33979a9becdSAlexandre Courbot 
34079a9becdSAlexandre Courbot /* add/remove chips */
341959bc7b2SThierry Reding extern int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
34239c3fd58SAndrew Lunn 				      struct lock_class_key *lock_key,
34339c3fd58SAndrew Lunn 				      struct lock_class_key *request_key);
344959bc7b2SThierry Reding 
345959bc7b2SThierry Reding /**
346959bc7b2SThierry Reding  * gpiochip_add_data() - register a gpio_chip
347959bc7b2SThierry Reding  * @chip: the chip to register, with chip->base initialized
348959bc7b2SThierry Reding  * @data: driver-private data associated with this chip
349959bc7b2SThierry Reding  *
350959bc7b2SThierry Reding  * Context: potentially before irqs will work
351959bc7b2SThierry Reding  *
352959bc7b2SThierry Reding  * When gpiochip_add_data() is called very early during boot, so that GPIOs
353959bc7b2SThierry Reding  * can be freely used, the chip->parent device must be registered before
354959bc7b2SThierry Reding  * the gpio framework's arch_initcall().  Otherwise sysfs initialization
355959bc7b2SThierry Reding  * for GPIOs will fail rudely.
356959bc7b2SThierry Reding  *
357959bc7b2SThierry Reding  * gpiochip_add_data() must only be called after gpiolib initialization,
358959bc7b2SThierry Reding  * ie after core_initcall().
359959bc7b2SThierry Reding  *
360959bc7b2SThierry Reding  * If chip->base is negative, this requests dynamic assignment of
361959bc7b2SThierry Reding  * a range of valid GPIOs.
362959bc7b2SThierry Reding  *
363959bc7b2SThierry Reding  * Returns:
364959bc7b2SThierry Reding  * A negative errno if the chip can't be registered, such as because the
365959bc7b2SThierry Reding  * chip->base is invalid or already associated with a different chip.
366959bc7b2SThierry Reding  * Otherwise it returns zero as a success code.
367959bc7b2SThierry Reding  */
368959bc7b2SThierry Reding #ifdef CONFIG_LOCKDEP
369959bc7b2SThierry Reding #define gpiochip_add_data(chip, data) ({		\
37039c3fd58SAndrew Lunn 		static struct lock_class_key lock_key;	\
37139c3fd58SAndrew Lunn 		static struct lock_class_key request_key;	  \
37239c3fd58SAndrew Lunn 		gpiochip_add_data_with_key(chip, data, &lock_key, \
37339c3fd58SAndrew Lunn 					   &request_key);	  \
374959bc7b2SThierry Reding 	})
375959bc7b2SThierry Reding #else
37639c3fd58SAndrew Lunn #define gpiochip_add_data(chip, data) gpiochip_add_data_with_key(chip, data, NULL, NULL)
377959bc7b2SThierry Reding #endif
378959bc7b2SThierry Reding 
379b08ea35aSLinus Walleij static inline int gpiochip_add(struct gpio_chip *chip)
380b08ea35aSLinus Walleij {
381b08ea35aSLinus Walleij 	return gpiochip_add_data(chip, NULL);
382b08ea35aSLinus Walleij }
383e1db1706Sabdoulaye berthe extern void gpiochip_remove(struct gpio_chip *chip);
3840cf3292cSLaxman Dewangan extern int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
3850cf3292cSLaxman Dewangan 				  void *data);
3860cf3292cSLaxman Dewangan extern void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip);
3870cf3292cSLaxman Dewangan 
38879a9becdSAlexandre Courbot extern struct gpio_chip *gpiochip_find(void *data,
38979a9becdSAlexandre Courbot 			      int (*match)(struct gpio_chip *chip, void *data));
39079a9becdSAlexandre Courbot 
39179a9becdSAlexandre Courbot /* lock/unlock as IRQ */
392e3a2e878SAlexandre Courbot int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset);
393e3a2e878SAlexandre Courbot void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset);
3946cee3821SLinus Walleij bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset);
39579a9becdSAlexandre Courbot 
396143b65d6SLinus Walleij /* Line status inquiry for drivers */
397143b65d6SLinus Walleij bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset);
398143b65d6SLinus Walleij bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset);
399143b65d6SLinus Walleij 
40005f479bfSCharles Keepax /* Sleep persistence inquiry for drivers */
40105f479bfSCharles Keepax bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset);
402726cb3baSStephen Boyd bool gpiochip_line_is_valid(const struct gpio_chip *chip, unsigned int offset);
40305f479bfSCharles Keepax 
404b08ea35aSLinus Walleij /* get driver data */
40543c54ecaSLinus Walleij void *gpiochip_get_data(struct gpio_chip *chip);
406b08ea35aSLinus Walleij 
407bb1e88ccSAlexandre Courbot struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc);
408bb1e88ccSAlexandre Courbot 
4090f4630f3SLinus Walleij struct bgpio_pdata {
4100f4630f3SLinus Walleij 	const char *label;
4110f4630f3SLinus Walleij 	int base;
4120f4630f3SLinus Walleij 	int ngpio;
4130f4630f3SLinus Walleij };
4140f4630f3SLinus Walleij 
415c474e348SArnd Bergmann #if IS_ENABLED(CONFIG_GPIO_GENERIC)
416c474e348SArnd Bergmann 
4170f4630f3SLinus Walleij int bgpio_init(struct gpio_chip *gc, struct device *dev,
4180f4630f3SLinus Walleij 	       unsigned long sz, void __iomem *dat, void __iomem *set,
4190f4630f3SLinus Walleij 	       void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
4200f4630f3SLinus Walleij 	       unsigned long flags);
4210f4630f3SLinus Walleij 
4220f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN		BIT(0)
4230f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_SET	BIT(1) /* reg_set is unreadable */
4240f4630f3SLinus Walleij #define BGPIOF_UNREADABLE_REG_DIR	BIT(2) /* reg_dir is unreadable */
4250f4630f3SLinus Walleij #define BGPIOF_BIG_ENDIAN_BYTE_ORDER	BIT(3)
4260f4630f3SLinus Walleij #define BGPIOF_READ_OUTPUT_REG_SET	BIT(4) /* reg_set stores output value */
4270f4630f3SLinus Walleij #define BGPIOF_NO_OUTPUT		BIT(5) /* only input */
4280f4630f3SLinus Walleij 
4290f4630f3SLinus Walleij #endif
4300f4630f3SLinus Walleij 
43114250520SLinus Walleij #ifdef CONFIG_GPIOLIB_IRQCHIP
43214250520SLinus Walleij 
4331b95b4ebSThierry Reding int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
4341b95b4ebSThierry Reding 		     irq_hw_number_t hwirq);
4351b95b4ebSThierry Reding void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq);
4361b95b4ebSThierry Reding 
43714250520SLinus Walleij void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
43814250520SLinus Walleij 		struct irq_chip *irqchip,
4396f79309aSThierry Reding 		unsigned int parent_irq,
44014250520SLinus Walleij 		irq_flow_handler_t parent_handler);
44114250520SLinus Walleij 
442d245b3f9SLinus Walleij void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
443d245b3f9SLinus Walleij 		struct irq_chip *irqchip,
4446f79309aSThierry Reding 		unsigned int parent_irq);
445d245b3f9SLinus Walleij 
446739e6f59SLinus Walleij int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
44714250520SLinus Walleij 			     struct irq_chip *irqchip,
44814250520SLinus Walleij 			     unsigned int first_irq,
44914250520SLinus Walleij 			     irq_flow_handler_t handler,
450a0a8bcf4SGrygorii Strashko 			     unsigned int type,
45160ed54caSThierry Reding 			     bool threaded,
45239c3fd58SAndrew Lunn 			     struct lock_class_key *lock_key,
45339c3fd58SAndrew Lunn 			     struct lock_class_key *request_key);
454a0a8bcf4SGrygorii Strashko 
45564ff2c8eSStephen Boyd bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
45664ff2c8eSStephen Boyd 				unsigned int offset);
45764ff2c8eSStephen Boyd 
458739e6f59SLinus Walleij #ifdef CONFIG_LOCKDEP
459739e6f59SLinus Walleij 
460739e6f59SLinus Walleij /*
461739e6f59SLinus Walleij  * Lockdep requires that each irqchip instance be created with a
462739e6f59SLinus Walleij  * unique key so as to avoid unnecessary warnings. This upfront
463739e6f59SLinus Walleij  * boilerplate static inlines provides such a key for each
464739e6f59SLinus Walleij  * unique instance.
465739e6f59SLinus Walleij  */
466739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
467739e6f59SLinus Walleij 				       struct irq_chip *irqchip,
468739e6f59SLinus Walleij 				       unsigned int first_irq,
469739e6f59SLinus Walleij 				       irq_flow_handler_t handler,
470739e6f59SLinus Walleij 				       unsigned int type)
471739e6f59SLinus Walleij {
47239c3fd58SAndrew Lunn 	static struct lock_class_key lock_key;
47339c3fd58SAndrew Lunn 	static struct lock_class_key request_key;
474739e6f59SLinus Walleij 
475739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
47639c3fd58SAndrew Lunn 					handler, type, false,
47739c3fd58SAndrew Lunn 					&lock_key, &request_key);
478739e6f59SLinus Walleij }
479739e6f59SLinus Walleij 
480d245b3f9SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip,
481d245b3f9SLinus Walleij 			  struct irq_chip *irqchip,
482d245b3f9SLinus Walleij 			  unsigned int first_irq,
483d245b3f9SLinus Walleij 			  irq_flow_handler_t handler,
484d245b3f9SLinus Walleij 			  unsigned int type)
485d245b3f9SLinus Walleij {
486739e6f59SLinus Walleij 
48739c3fd58SAndrew Lunn 	static struct lock_class_key lock_key;
48839c3fd58SAndrew Lunn 	static struct lock_class_key request_key;
489739e6f59SLinus Walleij 
490739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
49139c3fd58SAndrew Lunn 					handler, type, true,
49239c3fd58SAndrew Lunn 					&lock_key, &request_key);
493739e6f59SLinus Walleij }
494739e6f59SLinus Walleij #else
495739e6f59SLinus Walleij static inline int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
496739e6f59SLinus Walleij 				       struct irq_chip *irqchip,
497739e6f59SLinus Walleij 				       unsigned int first_irq,
498739e6f59SLinus Walleij 				       irq_flow_handler_t handler,
499739e6f59SLinus Walleij 				       unsigned int type)
500739e6f59SLinus Walleij {
501739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
50239c3fd58SAndrew Lunn 					handler, type, false, NULL, NULL);
503d245b3f9SLinus Walleij }
504d245b3f9SLinus Walleij 
505739e6f59SLinus Walleij static inline int gpiochip_irqchip_add_nested(struct gpio_chip *gpiochip,
506739e6f59SLinus Walleij 			  struct irq_chip *irqchip,
507739e6f59SLinus Walleij 			  unsigned int first_irq,
508739e6f59SLinus Walleij 			  irq_flow_handler_t handler,
509739e6f59SLinus Walleij 			  unsigned int type)
510739e6f59SLinus Walleij {
511739e6f59SLinus Walleij 	return gpiochip_irqchip_add_key(gpiochip, irqchip, first_irq,
51239c3fd58SAndrew Lunn 					handler, type, true, NULL, NULL);
513739e6f59SLinus Walleij }
514739e6f59SLinus Walleij #endif /* CONFIG_LOCKDEP */
51514250520SLinus Walleij 
5167d75a871SPaul Bolle #endif /* CONFIG_GPIOLIB_IRQCHIP */
51714250520SLinus Walleij 
518c771c2f4SJonas Gorski int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset);
519c771c2f4SJonas Gorski void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset);
5202956b5d9SMika Westerberg int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
5212956b5d9SMika Westerberg 			    unsigned long config);
522c771c2f4SJonas Gorski 
523964cb341SLinus Walleij #ifdef CONFIG_PINCTRL
524964cb341SLinus Walleij 
525964cb341SLinus Walleij /**
526964cb341SLinus Walleij  * struct gpio_pin_range - pin range controlled by a gpio chip
527950d55f5SThierry Reding  * @node: list for maintaining set of pin ranges, used internally
528964cb341SLinus Walleij  * @pctldev: pinctrl device which handles corresponding pins
529964cb341SLinus Walleij  * @range: actual range of pins controlled by a gpio controller
530964cb341SLinus Walleij  */
531964cb341SLinus Walleij struct gpio_pin_range {
532964cb341SLinus Walleij 	struct list_head node;
533964cb341SLinus Walleij 	struct pinctrl_dev *pctldev;
534964cb341SLinus Walleij 	struct pinctrl_gpio_range range;
535964cb341SLinus Walleij };
536964cb341SLinus Walleij 
537964cb341SLinus Walleij int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
538964cb341SLinus Walleij 			   unsigned int gpio_offset, unsigned int pin_offset,
539964cb341SLinus Walleij 			   unsigned int npins);
540964cb341SLinus Walleij int gpiochip_add_pingroup_range(struct gpio_chip *chip,
541964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
542964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group);
543964cb341SLinus Walleij void gpiochip_remove_pin_ranges(struct gpio_chip *chip);
544964cb341SLinus Walleij 
545964cb341SLinus Walleij #else
546964cb341SLinus Walleij 
547964cb341SLinus Walleij static inline int
548964cb341SLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
549964cb341SLinus Walleij 		       unsigned int gpio_offset, unsigned int pin_offset,
550964cb341SLinus Walleij 		       unsigned int npins)
551964cb341SLinus Walleij {
552964cb341SLinus Walleij 	return 0;
553964cb341SLinus Walleij }
554964cb341SLinus Walleij static inline int
555964cb341SLinus Walleij gpiochip_add_pingroup_range(struct gpio_chip *chip,
556964cb341SLinus Walleij 			struct pinctrl_dev *pctldev,
557964cb341SLinus Walleij 			unsigned int gpio_offset, const char *pin_group)
558964cb341SLinus Walleij {
559964cb341SLinus Walleij 	return 0;
560964cb341SLinus Walleij }
561964cb341SLinus Walleij 
562964cb341SLinus Walleij static inline void
563964cb341SLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip)
564964cb341SLinus Walleij {
565964cb341SLinus Walleij }
566964cb341SLinus Walleij 
567964cb341SLinus Walleij #endif /* CONFIG_PINCTRL */
568964cb341SLinus Walleij 
569abdc08a3SAlexandre Courbot struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
570abdc08a3SAlexandre Courbot 					    const char *label);
571f7d4ad98SGuenter Roeck void gpiochip_free_own_desc(struct gpio_desc *desc);
572f7d4ad98SGuenter Roeck 
573bb1e88ccSAlexandre Courbot #else /* CONFIG_GPIOLIB */
574bb1e88ccSAlexandre Courbot 
575bb1e88ccSAlexandre Courbot static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
576bb1e88ccSAlexandre Courbot {
577bb1e88ccSAlexandre Courbot 	/* GPIO can never have been requested */
578bb1e88ccSAlexandre Courbot 	WARN_ON(1);
579bb1e88ccSAlexandre Courbot 	return ERR_PTR(-ENODEV);
580bb1e88ccSAlexandre Courbot }
581bb1e88ccSAlexandre Courbot 
582bb1e88ccSAlexandre Courbot #endif /* CONFIG_GPIOLIB */
583bb1e88ccSAlexandre Courbot 
58479a9becdSAlexandre Courbot #endif
585