Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
79a9becd AC |
2 | #ifndef __LINUX_GPIO_DRIVER_H |
3 | #define __LINUX_GPIO_DRIVER_H | |
4 | ||
380c7ba3 | 5 | #include <linux/bits.h> |
9e4555d1 BG |
6 | #include <linux/cleanup.h> |
7 | #include <linux/err.h> | |
14250520 LW |
8 | #include <linux/irqchip/chained_irq.h> |
9 | #include <linux/irqdomain.h> | |
380c7ba3 | 10 | #include <linux/irqhandler.h> |
a0a8bcf4 | 11 | #include <linux/lockdep.h> |
2956b5d9 | 12 | #include <linux/pinctrl/pinconf-generic.h> |
08a149c4 | 13 | #include <linux/pinctrl/pinctrl.h> |
85ebb1a6 | 14 | #include <linux/property.h> |
380c7ba3 | 15 | #include <linux/spinlock_types.h> |
85ebb1a6 | 16 | #include <linux/types.h> |
23318614 | 17 | #include <linux/util_macros.h> |
79a9becd | 18 | |
380c7ba3 | 19 | #ifdef CONFIG_GENERIC_MSI_IRQ |
91a29af4 | 20 | #include <asm/msi.h> |
380c7ba3 | 21 | #endif |
91a29af4 | 22 | |
380c7ba3 AS |
23 | struct device; |
24 | struct irq_chip; | |
25 | struct irq_data; | |
26 | struct module; | |
c9a9972b | 27 | struct of_phandle_args; |
380c7ba3 | 28 | struct pinctrl_dev; |
f3ed0b66 | 29 | struct seq_file; |
79a9becd | 30 | |
fdd61a01 | 31 | struct gpio_chip; |
380c7ba3 AS |
32 | struct gpio_desc; |
33 | struct gpio_device; | |
34 | ||
35 | enum gpio_lookup_flags; | |
36 | enum gpiod_flags; | |
fdd61a01 | 37 | |
91a29af4 MZ |
38 | union gpio_irq_fwspec { |
39 | struct irq_fwspec fwspec; | |
13e7accb | 40 | #ifdef CONFIG_GENERIC_MSI_IRQ |
91a29af4 MZ |
41 | msi_alloc_info_t msiinfo; |
42 | #endif | |
43 | }; | |
44 | ||
9208b1e7 MV |
45 | #define GPIO_LINE_DIRECTION_IN 1 |
46 | #define GPIO_LINE_DIRECTION_OUT 0 | |
47 | ||
c44eafd7 TR |
48 | /** |
49 | * struct gpio_irq_chip - GPIO interrupt controller | |
50 | */ | |
51 | struct gpio_irq_chip { | |
da80ff81 TR |
52 | /** |
53 | * @chip: | |
54 | * | |
55 | * GPIO IRQ chip implementation, provided by GPIO driver. | |
56 | */ | |
57 | struct irq_chip *chip; | |
58 | ||
f0fbe7bc TR |
59 | /** |
60 | * @domain: | |
61 | * | |
62 | * Interrupt translation domain; responsible for mapping between GPIO | |
63 | * hwirq number and Linux IRQ number. | |
64 | */ | |
65 | struct irq_domain *domain; | |
66 | ||
fdd61a01 LW |
67 | #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY |
68 | /** | |
69 | * @fwnode: | |
70 | * | |
71 | * Firmware node corresponding to this gpiochip/irqchip, necessary | |
72 | * for hierarchical irqdomain support. | |
73 | */ | |
74 | struct fwnode_handle *fwnode; | |
75 | ||
76 | /** | |
77 | * @parent_domain: | |
78 | * | |
79 | * If non-NULL, will be set as the parent of this GPIO interrupt | |
80 | * controller's IRQ domain to establish a hierarchical interrupt | |
81 | * domain. The presence of this will activate the hierarchical | |
82 | * interrupt support. | |
83 | */ | |
84 | struct irq_domain *parent_domain; | |
85 | ||
86 | /** | |
87 | * @child_to_parent_hwirq: | |
88 | * | |
89 | * This callback translates a child hardware IRQ offset to a parent | |
90 | * hardware IRQ offset on a hierarchical interrupt chip. The child | |
91 | * hardware IRQs correspond to the GPIO index 0..ngpio-1 (see the | |
92 | * ngpio field of struct gpio_chip) and the corresponding parent | |
93 | * hardware IRQ and type (such as IRQ_TYPE_*) shall be returned by | |
94 | * the driver. The driver can calculate this from an offset or using | |
95 | * a lookup table or whatever method is best for this chip. Return | |
96 | * 0 on successful translation in the driver. | |
97 | * | |
98 | * If some ranges of hardware IRQs do not have a corresponding parent | |
99 | * HWIRQ, return -EINVAL, but also make sure to fill in @valid_mask and | |
100 | * @need_valid_mask to make these GPIO lines unavailable for | |
101 | * translation. | |
102 | */ | |
a0b66a73 | 103 | int (*child_to_parent_hwirq)(struct gpio_chip *gc, |
fdd61a01 LW |
104 | unsigned int child_hwirq, |
105 | unsigned int child_type, | |
106 | unsigned int *parent_hwirq, | |
107 | unsigned int *parent_type); | |
108 | ||
109 | /** | |
24258761 | 110 | * @populate_parent_alloc_arg : |
fdd61a01 | 111 | * |
24258761 KH |
112 | * This optional callback allocates and populates the specific struct |
113 | * for the parent's IRQ domain. If this is not specified, then | |
fdd61a01 LW |
114 | * &gpiochip_populate_parent_fwspec_twocell will be used. A four-cell |
115 | * variant named &gpiochip_populate_parent_fwspec_fourcell is also | |
116 | * available. | |
117 | */ | |
91a29af4 MZ |
118 | int (*populate_parent_alloc_arg)(struct gpio_chip *gc, |
119 | union gpio_irq_fwspec *fwspec, | |
120 | unsigned int parent_hwirq, | |
121 | unsigned int parent_type); | |
fdd61a01 LW |
122 | |
123 | /** | |
124 | * @child_offset_to_irq: | |
125 | * | |
126 | * This optional callback is used to translate the child's GPIO line | |
127 | * offset on the GPIO chip to an IRQ number for the GPIO to_irq() | |
128 | * callback. If this is not specified, then a default callback will be | |
129 | * provided that returns the line offset. | |
130 | */ | |
a0b66a73 | 131 | unsigned int (*child_offset_to_irq)(struct gpio_chip *gc, |
fdd61a01 LW |
132 | unsigned int pin); |
133 | ||
134 | /** | |
135 | * @child_irq_domain_ops: | |
136 | * | |
137 | * The IRQ domain operations that will be used for this GPIO IRQ | |
138 | * chip. If no operations are provided, then default callbacks will | |
139 | * be populated to setup the IRQ hierarchy. Some drivers need to | |
140 | * supply their own translate function. | |
141 | */ | |
142 | struct irq_domain_ops child_irq_domain_ops; | |
143 | #endif | |
144 | ||
c7a0aa59 TR |
145 | /** |
146 | * @handler: | |
147 | * | |
148 | * The IRQ handler to use (often a predefined IRQ core function) for | |
149 | * GPIO IRQs, provided by GPIO driver. | |
150 | */ | |
151 | irq_flow_handler_t handler; | |
152 | ||
3634eeb0 TR |
153 | /** |
154 | * @default_type: | |
155 | * | |
156 | * Default IRQ triggering type applied during GPIO driver | |
157 | * initialization, provided by GPIO driver. | |
158 | */ | |
159 | unsigned int default_type; | |
160 | ||
ca9df053 TR |
161 | /** |
162 | * @lock_key: | |
163 | * | |
02ad0437 | 164 | * Per GPIO IRQ chip lockdep class for IRQ lock. |
ca9df053 TR |
165 | */ |
166 | struct lock_class_key *lock_key; | |
02ad0437 RD |
167 | |
168 | /** | |
169 | * @request_key: | |
170 | * | |
171 | * Per GPIO IRQ chip lockdep class for IRQ request. | |
172 | */ | |
39c3fd58 | 173 | struct lock_class_key *request_key; |
ca9df053 | 174 | |
c44eafd7 TR |
175 | /** |
176 | * @parent_handler: | |
177 | * | |
178 | * The interrupt handler for the GPIO chip's parent interrupts, may be | |
179 | * NULL if the parent interrupts are nested rather than cascaded. | |
180 | */ | |
181 | irq_flow_handler_t parent_handler; | |
182 | ||
cfe6807d | 183 | union { |
c7e1c443 AY |
184 | /** |
185 | * @parent_handler_data: | |
186 | * | |
187 | * If @per_parent_data is false, @parent_handler_data is a | |
188 | * single pointer used as the data associated with every | |
189 | * parent interrupt. | |
190 | */ | |
cfe6807d | 191 | void *parent_handler_data; |
c7e1c443 AY |
192 | |
193 | /** | |
194 | * @parent_handler_data_array: | |
195 | * | |
196 | * If @per_parent_data is true, @parent_handler_data_array is | |
197 | * an array of @num_parents pointers, and is used to associate | |
198 | * different data for each parent. This cannot be NULL if | |
199 | * @per_parent_data is true. | |
200 | */ | |
cfe6807d MZ |
201 | void **parent_handler_data_array; |
202 | }; | |
39e5f096 TR |
203 | |
204 | /** | |
205 | * @num_parents: | |
206 | * | |
207 | * The number of interrupt parents of a GPIO chip. | |
208 | */ | |
209 | unsigned int num_parents; | |
210 | ||
211 | /** | |
212 | * @parents: | |
213 | * | |
214 | * A list of interrupt parents of a GPIO chip. This is owned by the | |
215 | * driver, so the core will only reference this list, not modify it. | |
216 | */ | |
217 | unsigned int *parents; | |
dc6bafee | 218 | |
e0d89728 TR |
219 | /** |
220 | * @map: | |
221 | * | |
222 | * A list of interrupt parents for each line of a GPIO chip. | |
223 | */ | |
224 | unsigned int *map; | |
225 | ||
dc6bafee | 226 | /** |
60ed54ca | 227 | * @threaded: |
dc6bafee | 228 | * |
60ed54ca | 229 | * True if set the interrupt handling uses nested threads. |
dc6bafee | 230 | */ |
60ed54ca | 231 | bool threaded; |
dc7b0387 | 232 | |
cfe6807d MZ |
233 | /** |
234 | * @per_parent_data: | |
235 | * | |
236 | * True if parent_handler_data_array describes a @num_parents | |
237 | * sized array to be used as parent data. | |
238 | */ | |
239 | bool per_parent_data; | |
240 | ||
5467801f SP |
241 | /** |
242 | * @initialized: | |
243 | * | |
244 | * Flag to track GPIO chip irq member's initialization. | |
245 | * This flag will make sure GPIO chip irq members are not used | |
246 | * before they are initialized. | |
247 | */ | |
248 | bool initialized; | |
249 | ||
ff7a1790 MW |
250 | /** |
251 | * @domain_is_allocated_externally: | |
252 | * | |
253 | * True it the irq_domain was allocated outside of gpiolib, in which | |
254 | * case gpiolib won't free the irq_domain itself. | |
255 | */ | |
256 | bool domain_is_allocated_externally; | |
257 | ||
9411e3aa AS |
258 | /** |
259 | * @init_hw: optional routine to initialize hardware before | |
260 | * an IRQ chip will be added. This is quite useful when | |
261 | * a particular driver wants to clear IRQ related registers | |
262 | * in order to avoid undesired events. | |
263 | */ | |
a0b66a73 | 264 | int (*init_hw)(struct gpio_chip *gc); |
9411e3aa | 265 | |
dc7b0387 | 266 | /** |
5fbe5b58 LW |
267 | * @init_valid_mask: optional routine to initialize @valid_mask, to be |
268 | * used if not all GPIO lines are valid interrupts. Sometimes some | |
269 | * lines just cannot fire interrupts, and this routine, when defined, | |
270 | * is passed a bitmap in "valid_mask" and it will have ngpios | |
271 | * bits from 0..(ngpios-1) set to "1" as in valid. The callback can | |
272 | * then directly set some bits to "0" if they cannot be used for | |
273 | * interrupts. | |
274 | */ | |
a0b66a73 | 275 | void (*init_valid_mask)(struct gpio_chip *gc, |
5fbe5b58 LW |
276 | unsigned long *valid_mask, |
277 | unsigned int ngpios); | |
dc7b0387 TR |
278 | |
279 | /** | |
280 | * @valid_mask: | |
281 | * | |
2d93018f | 282 | * If not %NULL, holds bitmask of GPIOs which are valid to be included |
dc7b0387 TR |
283 | * in IRQ domain of the chip. |
284 | */ | |
285 | unsigned long *valid_mask; | |
8302cf58 TR |
286 | |
287 | /** | |
288 | * @first: | |
289 | * | |
9cf19f06 JSS |
290 | * Required for static IRQ allocation. If set, |
291 | * irq_domain_create_simple() will allocate and map all IRQs | |
292 | * during initialization. | |
8302cf58 TR |
293 | */ |
294 | unsigned int first; | |
461c1a7d HV |
295 | |
296 | /** | |
297 | * @irq_enable: | |
298 | * | |
299 | * Store old irq_chip irq_enable callback | |
300 | */ | |
301 | void (*irq_enable)(struct irq_data *data); | |
302 | ||
303 | /** | |
304 | * @irq_disable: | |
305 | * | |
306 | * Store old irq_chip irq_disable callback | |
307 | */ | |
308 | void (*irq_disable)(struct irq_data *data); | |
a8173820 MS |
309 | /** |
310 | * @irq_unmask: | |
311 | * | |
312 | * Store old irq_chip irq_unmask callback | |
313 | */ | |
314 | void (*irq_unmask)(struct irq_data *data); | |
315 | ||
316 | /** | |
317 | * @irq_mask: | |
318 | * | |
319 | * Store old irq_chip irq_mask callback | |
320 | */ | |
321 | void (*irq_mask)(struct irq_data *data); | |
c44eafd7 | 322 | }; |
c44eafd7 | 323 | |
79a9becd AC |
324 | /** |
325 | * struct gpio_chip - abstract a GPIO controller | |
df4878e9 LW |
326 | * @label: a functional name for the GPIO device, such as a part |
327 | * number or the name of the SoC IP-block implementing it. | |
ff2b1359 | 328 | * @gpiodev: the internal state holder, opaque struct |
58383c78 | 329 | * @parent: optional parent device providing the GPIOs |
990f6756 | 330 | * @fwnode: optional fwnode providing this controller's properties |
79a9becd | 331 | * @owner: helps prevent removal of modules exporting active GPIOs |
79a9becd | 332 | * @request: optional hook for chip-specific activation, such as |
69920338 BG |
333 | * enabling module power and clock; may sleep; must return 0 on success |
334 | * or negative error number on failure | |
79a9becd AC |
335 | * @free: optional hook for chip-specific deactivation, such as |
336 | * disabling module power and clock; may sleep | |
337 | * @get_direction: returns direction for signal "offset", 0=out, 1=in, | |
36b52154 DA |
338 | * (same as GPIO_LINE_DIRECTION_OUT / GPIO_LINE_DIRECTION_IN), |
339 | * or negative error. It is recommended to always implement this | |
340 | * function, even on input-only or output-only gpio chips. | |
6933ba52 BG |
341 | * @direction_input: configures signal "offset" as input, returns 0 on success |
342 | * or a negative error number. This can be omitted on input-only or | |
343 | * output-only gpio chips. | |
344 | * @direction_output: configures signal "offset" as output, returns 0 on | |
345 | * success or a negative error number. This can be omitted on input-only | |
346 | * or output-only gpio chips. | |
60befd2e | 347 | * @get: returns value for signal "offset", 0=low, 1=high, or negative error |
eec1d566 LW |
348 | * @get_multiple: reads values for multiple signals defined by "mask" and |
349 | * stores them in "bits", returns 0 on success or negative error | |
6224e7fc BG |
350 | * @set: **DEPRECATED** - please use set_rv() instead |
351 | * @set_multiple: **DEPRECATED** - please use set_multiple_rv() instead | |
98ce1eb1 BG |
352 | * @set_rv: assigns output value for signal "offset", returns 0 on success or |
353 | * negative error value | |
354 | * @set_multiple_rv: assigns output values for multiple signals defined by | |
355 | * "mask", returns 0 on success or negative error value | |
2956b5d9 | 356 | * @set_config: optional hook for all kinds of settings. Uses the same |
dcf8f3bf BG |
357 | * packed config format as generic pinconf. Must return 0 on success and |
358 | * a negative error number on failure. | |
9a7dcaef | 359 | * @to_irq: optional hook supporting non-static gpiod_to_irq() mappings; |
79a9becd AC |
360 | * implementation may not sleep |
361 | * @dbg_show: optional routine to show contents in debugfs; default code | |
362 | * will be used when this is omitted, but custom code can show extra | |
363 | * state (such as pullup/pulldown configuration). | |
f99d479b GU |
364 | * @init_valid_mask: optional routine to initialize @valid_mask, to be used if |
365 | * not all GPIOs are valid. | |
b056ca1c AS |
366 | * @add_pin_ranges: optional routine to initialize pin ranges, to be used when |
367 | * requires special mapping of the pins that provides GPIO functionality. | |
368 | * It is called after adding GPIO chip and before adding IRQ chip. | |
42112dd7 DP |
369 | * @en_hw_timestamp: Dependent on GPIO chip, an optional routine to |
370 | * enable hardware timestamp. | |
371 | * @dis_hw_timestamp: Dependent on GPIO chip, an optional routine to | |
372 | * disable hardware timestamp. | |
af6c235d LW |
373 | * @base: identifies the first GPIO number handled by this chip; |
374 | * or, if negative during registration, requests dynamic ID allocation. | |
375 | * DEPRECATION: providing anything non-negative and nailing the base | |
30bb6fb3 | 376 | * offset of GPIO chips is deprecated. Please pass -1 as base to |
af6c235d LW |
377 | * let gpiolib select the chip base in all possible cases. We want to |
378 | * get rid of the static GPIO number space in the long run. | |
79a9becd AC |
379 | * @ngpio: the number of GPIOs handled by this controller; the last GPIO |
380 | * handled is (base + ngpio - 1). | |
4e804c39 SP |
381 | * @offset: when multiple gpio chips belong to the same device this |
382 | * can be used as offset within the device so friendly names can | |
383 | * be properly assigned. | |
79a9becd AC |
384 | * @names: if set, must be an array of strings to use as alternative |
385 | * names for the GPIOs in this chip. Any entry in the array | |
386 | * may be NULL if there is no alias for the GPIO, however the | |
2b5ae9c7 | 387 | * array must be @ngpio entries long. |
9fb1f39e | 388 | * @can_sleep: flag must be set iff get()/set() methods sleep, as they |
1c8732bb LW |
389 | * must while accessing GPIO expander chips over I2C or SPI. This |
390 | * implies that if the chip supports IRQs, these IRQs need to be threaded | |
391 | * as the chip access may sleep when e.g. reading out the IRQ status | |
392 | * registers. | |
0f4630f3 LW |
393 | * @read_reg: reader function for generic GPIO |
394 | * @write_reg: writer function for generic GPIO | |
24efd94b LW |
395 | * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing |
396 | * line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the | |
397 | * generic GPIO core. It is for internal housekeeping only. | |
0f4630f3 LW |
398 | * @reg_dat: data (in) register for generic GPIO |
399 | * @reg_set: output set register (out=high) for generic GPIO | |
08bcd3ed | 400 | * @reg_clr: output clear register (out=low) for generic GPIO |
f69e00bd LW |
401 | * @reg_dir_out: direction out setting register for generic GPIO |
402 | * @reg_dir_in: direction in setting register for generic GPIO | |
f69e00bd LW |
403 | * @bgpio_dir_unreadable: indicates that the direction register(s) cannot |
404 | * be read and we need to rely on out internal state tracking. | |
2145ba37 | 405 | * @bgpio_pinctrl: the generic GPIO uses a pin control backend. |
0f4630f3 LW |
406 | * @bgpio_bits: number of register bits used for a generic GPIO i.e. |
407 | * <register width> * 8 | |
408 | * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep | |
409 | * shadowed and real data registers writes together. | |
410 | * @bgpio_data: shadowed data register for generic GPIO to clear/set bits | |
411 | * safely. | |
412 | * @bgpio_dir: shadowed direction register for generic GPIO to clear/set | |
f69e00bd LW |
413 | * direction safely. A "1" in this word means the line is set as |
414 | * output. | |
79a9becd AC |
415 | * |
416 | * A gpio_chip can help platforms abstract various sources of GPIOs so | |
2d93018f | 417 | * they can all be accessed through a common programming interface. |
79a9becd AC |
418 | * Example sources would be SOC controllers, FPGAs, multifunction |
419 | * chips, dedicated GPIO expanders, and so on. | |
420 | * | |
421 | * Each chip controls a number of signals, identified in method calls | |
422 | * by "offset" values in the range 0..(@ngpio - 1). When those signals | |
423 | * are referenced through calls like gpio_get_value(gpio), the offset | |
424 | * is calculated by subtracting @base from the gpio number. | |
425 | */ | |
426 | struct gpio_chip { | |
427 | const char *label; | |
ff2b1359 | 428 | struct gpio_device *gpiodev; |
58383c78 | 429 | struct device *parent; |
990f6756 | 430 | struct fwnode_handle *fwnode; |
79a9becd | 431 | struct module *owner; |
79a9becd | 432 | |
a0b66a73 | 433 | int (*request)(struct gpio_chip *gc, |
8d091012 | 434 | unsigned int offset); |
a0b66a73 | 435 | void (*free)(struct gpio_chip *gc, |
8d091012 | 436 | unsigned int offset); |
a0b66a73 | 437 | int (*get_direction)(struct gpio_chip *gc, |
8d091012 | 438 | unsigned int offset); |
a0b66a73 | 439 | int (*direction_input)(struct gpio_chip *gc, |
8d091012 | 440 | unsigned int offset); |
a0b66a73 | 441 | int (*direction_output)(struct gpio_chip *gc, |
8d091012 | 442 | unsigned int offset, int value); |
a0b66a73 | 443 | int (*get)(struct gpio_chip *gc, |
8d091012 | 444 | unsigned int offset); |
a0b66a73 | 445 | int (*get_multiple)(struct gpio_chip *gc, |
eec1d566 LW |
446 | unsigned long *mask, |
447 | unsigned long *bits); | |
a0b66a73 | 448 | void (*set)(struct gpio_chip *gc, |
8d091012 | 449 | unsigned int offset, int value); |
a0b66a73 | 450 | void (*set_multiple)(struct gpio_chip *gc, |
5f424243 RI |
451 | unsigned long *mask, |
452 | unsigned long *bits); | |
98ce1eb1 BG |
453 | int (*set_rv)(struct gpio_chip *gc, |
454 | unsigned int offset, | |
455 | int value); | |
456 | int (*set_multiple_rv)(struct gpio_chip *gc, | |
457 | unsigned long *mask, | |
458 | unsigned long *bits); | |
a0b66a73 | 459 | int (*set_config)(struct gpio_chip *gc, |
8d091012 | 460 | unsigned int offset, |
2956b5d9 | 461 | unsigned long config); |
a0b66a73 | 462 | int (*to_irq)(struct gpio_chip *gc, |
8d091012 | 463 | unsigned int offset); |
79a9becd AC |
464 | |
465 | void (*dbg_show)(struct seq_file *s, | |
a0b66a73 | 466 | struct gpio_chip *gc); |
f8ec92a9 | 467 | |
a0b66a73 | 468 | int (*init_valid_mask)(struct gpio_chip *gc, |
c9fc5aff LW |
469 | unsigned long *valid_mask, |
470 | unsigned int ngpios); | |
f8ec92a9 | 471 | |
a0b66a73 | 472 | int (*add_pin_ranges)(struct gpio_chip *gc); |
b056ca1c | 473 | |
42112dd7 DP |
474 | int (*en_hw_timestamp)(struct gpio_chip *gc, |
475 | u32 offset, | |
476 | unsigned long flags); | |
477 | int (*dis_hw_timestamp)(struct gpio_chip *gc, | |
478 | u32 offset, | |
479 | unsigned long flags); | |
79a9becd AC |
480 | int base; |
481 | u16 ngpio; | |
4e804c39 | 482 | u16 offset; |
79a9becd | 483 | const char *const *names; |
9fb1f39e | 484 | bool can_sleep; |
79a9becd | 485 | |
0f4630f3 LW |
486 | #if IS_ENABLED(CONFIG_GPIO_GENERIC) |
487 | unsigned long (*read_reg)(void __iomem *reg); | |
488 | void (*write_reg)(void __iomem *reg, unsigned long data); | |
24efd94b | 489 | bool be_bits; |
0f4630f3 LW |
490 | void __iomem *reg_dat; |
491 | void __iomem *reg_set; | |
492 | void __iomem *reg_clr; | |
f69e00bd LW |
493 | void __iomem *reg_dir_out; |
494 | void __iomem *reg_dir_in; | |
f69e00bd | 495 | bool bgpio_dir_unreadable; |
2145ba37 | 496 | bool bgpio_pinctrl; |
0f4630f3 | 497 | int bgpio_bits; |
3c938cc5 | 498 | raw_spinlock_t bgpio_lock; |
0f4630f3 LW |
499 | unsigned long bgpio_data; |
500 | unsigned long bgpio_dir; | |
f310f2ef | 501 | #endif /* CONFIG_GPIO_GENERIC */ |
0f4630f3 | 502 | |
14250520 LW |
503 | #ifdef CONFIG_GPIOLIB_IRQCHIP |
504 | /* | |
7d75a871 | 505 | * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib |
14250520 LW |
506 | * to handle IRQs for most practical cases. |
507 | */ | |
c44eafd7 TR |
508 | |
509 | /** | |
510 | * @irq: | |
511 | * | |
512 | * Integrates interrupt chip functionality with the GPIO chip. Can be | |
513 | * used to handle IRQs for most practical cases. | |
514 | */ | |
515 | struct gpio_irq_chip irq; | |
f310f2ef | 516 | #endif /* CONFIG_GPIOLIB_IRQCHIP */ |
14250520 | 517 | |
79a9becd AC |
518 | #if defined(CONFIG_OF_GPIO) |
519 | /* | |
2d93018f RD |
520 | * If CONFIG_OF_GPIO is enabled, then all GPIO controllers described in |
521 | * the device tree automatically may have an OF translation | |
79a9becd | 522 | */ |
67049c50 | 523 | |
67049c50 TR |
524 | /** |
525 | * @of_gpio_n_cells: | |
526 | * | |
bd3ce710 LW |
527 | * Number of cells used to form the GPIO specifier. The standard is 2 |
528 | * cells: | |
529 | * | |
530 | * gpios = <&gpio offset flags>; | |
531 | * | |
532 | * some complex GPIO controllers instantiate more than one chip per | |
533 | * device tree node and have 3 cells: | |
534 | * | |
535 | * gpios = <&gpio instance offset flags>; | |
536 | * | |
537 | * Legacy GPIO controllers may even have 1 cell: | |
538 | * | |
539 | * gpios = <&gpio offset>; | |
67049c50 | 540 | */ |
e3b445d7 | 541 | unsigned int of_gpio_n_cells; |
67049c50 | 542 | |
bd3ce710 | 543 | /** |
9b443b68 | 544 | * @of_node_instance_match: |
bd3ce710 LW |
545 | * |
546 | * Determine if a chip is the right instance. Must be implemented by | |
547 | * any driver using more than one gpio_chip per device tree node. | |
548 | * Returns true if gc is the instance indicated by i (which is the | |
549 | * first cell in the phandles for GPIO lines and gpio-ranges). | |
550 | */ | |
551 | bool (*of_node_instance_match)(struct gpio_chip *gc, unsigned int i); | |
552 | ||
67049c50 TR |
553 | /** |
554 | * @of_xlate: | |
555 | * | |
556 | * Callback to translate a device tree GPIO specifier into a chip- | |
557 | * relative GPIO number and flags. | |
558 | */ | |
79a9becd AC |
559 | int (*of_xlate)(struct gpio_chip *gc, |
560 | const struct of_phandle_args *gpiospec, u32 *flags); | |
f310f2ef | 561 | #endif /* CONFIG_OF_GPIO */ |
79a9becd AC |
562 | }; |
563 | ||
ee25fba7 | 564 | char *gpiochip_dup_line_label(struct gpio_chip *gc, unsigned int offset); |
79a9becd | 565 | |
6fd9c993 BG |
566 | |
567 | struct _gpiochip_for_each_data { | |
568 | const char **label; | |
569 | unsigned int *i; | |
570 | }; | |
571 | ||
572 | DEFINE_CLASS(_gpiochip_for_each_data, | |
573 | struct _gpiochip_for_each_data, | |
574 | if (*_T.label) kfree(*_T.label), | |
575 | ({ | |
576 | struct _gpiochip_for_each_data _data = { label, i }; | |
577 | *_data.i = 0; | |
578 | _data; | |
579 | }), | |
580 | const char **label, int *i) | |
79a9becd | 581 | |
3d8bb3d3 | 582 | /** |
88935160 | 583 | * for_each_hwgpio_in_range - Iterates over all GPIOs in a given range |
3d8bb3d3 BG |
584 | * @_chip: Chip to iterate over. |
585 | * @_i: Loop counter. | |
88935160 AS |
586 | * @_base: First GPIO in the ranger. |
587 | * @_size: Amount of GPIOs to check starting from @base. | |
3d8bb3d3 BG |
588 | * @_label: Place to store the address of the label if the GPIO is requested. |
589 | * Set to NULL for unused GPIOs. | |
590 | */ | |
88935160 AS |
591 | #define for_each_hwgpio_in_range(_chip, _i, _base, _size, _label) \ |
592 | for (CLASS(_gpiochip_for_each_data, _data)(&_label, &_i); \ | |
767412f0 AS |
593 | _i < _size; \ |
594 | _i++, kfree(_label), _label = NULL) \ | |
23318614 | 595 | for_each_if(!IS_ERR(_label = gpiochip_dup_line_label(_chip, _base + _i))) |
3d8bb3d3 | 596 | |
88935160 AS |
597 | /** |
598 | * for_each_hwgpio - Iterates over all GPIOs for given chip. | |
599 | * @_chip: Chip to iterate over. | |
600 | * @_i: Loop counter. | |
601 | * @_label: Place to store the address of the label if the GPIO is requested. | |
602 | * Set to NULL for unused GPIOs. | |
603 | */ | |
604 | #define for_each_hwgpio(_chip, _i, _label) \ | |
605 | for_each_hwgpio_in_range(_chip, _i, 0, _chip->ngpio, _label) | |
606 | ||
b3337eb2 AS |
607 | /** |
608 | * for_each_requested_gpio_in_range - iterates over requested GPIOs in a given range | |
6fd9c993 BG |
609 | * @_chip: the chip to query |
610 | * @_i: loop variable | |
611 | * @_base: first GPIO in the range | |
612 | * @_size: amount of GPIOs to check starting from @base | |
613 | * @_label: label of current GPIO | |
b3337eb2 | 614 | */ |
6fd9c993 | 615 | #define for_each_requested_gpio_in_range(_chip, _i, _base, _size, _label) \ |
88935160 | 616 | for_each_hwgpio_in_range(_chip, _i, _base, _size, _label) \ |
23318614 | 617 | for_each_if(_label) |
b3337eb2 AS |
618 | |
619 | /* Iterates over all requested GPIO of the given @chip */ | |
620 | #define for_each_requested_gpio(chip, i, label) \ | |
621 | for_each_requested_gpio_in_range(chip, i, 0, chip->ngpio, label) | |
622 | ||
79a9becd | 623 | /* add/remove chips */ |
37d42ab3 BG |
624 | int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data, |
625 | struct lock_class_key *lock_key, | |
626 | struct lock_class_key *request_key); | |
959bc7b2 TR |
627 | |
628 | /** | |
629 | * gpiochip_add_data() - register a gpio_chip | |
8fc3ed3a | 630 | * @gc: the chip to register, with gc->base initialized |
959bc7b2 TR |
631 | * @data: driver-private data associated with this chip |
632 | * | |
633 | * Context: potentially before irqs will work | |
634 | * | |
635 | * When gpiochip_add_data() is called very early during boot, so that GPIOs | |
8fc3ed3a | 636 | * can be freely used, the gc->parent device must be registered before |
959bc7b2 TR |
637 | * the gpio framework's arch_initcall(). Otherwise sysfs initialization |
638 | * for GPIOs will fail rudely. | |
639 | * | |
640 | * gpiochip_add_data() must only be called after gpiolib initialization, | |
2d93018f | 641 | * i.e. after core_initcall(). |
959bc7b2 | 642 | * |
8fc3ed3a | 643 | * If gc->base is negative, this requests dynamic assignment of |
959bc7b2 TR |
644 | * a range of valid GPIOs. |
645 | * | |
646 | * Returns: | |
647 | * A negative errno if the chip can't be registered, such as because the | |
8fc3ed3a | 648 | * gc->base is invalid or already associated with a different chip. |
959bc7b2 TR |
649 | * Otherwise it returns zero as a success code. |
650 | */ | |
651 | #ifdef CONFIG_LOCKDEP | |
a0b66a73 | 652 | #define gpiochip_add_data(gc, data) ({ \ |
39c3fd58 AL |
653 | static struct lock_class_key lock_key; \ |
654 | static struct lock_class_key request_key; \ | |
a0b66a73 | 655 | gpiochip_add_data_with_key(gc, data, &lock_key, \ |
39c3fd58 | 656 | &request_key); \ |
959bc7b2 | 657 | }) |
5f402bb1 AF |
658 | #define devm_gpiochip_add_data(dev, gc, data) ({ \ |
659 | static struct lock_class_key lock_key; \ | |
660 | static struct lock_class_key request_key; \ | |
661 | devm_gpiochip_add_data_with_key(dev, gc, data, &lock_key, \ | |
662 | &request_key); \ | |
663 | }) | |
959bc7b2 | 664 | #else |
a0b66a73 | 665 | #define gpiochip_add_data(gc, data) gpiochip_add_data_with_key(gc, data, NULL, NULL) |
5f402bb1 AF |
666 | #define devm_gpiochip_add_data(dev, gc, data) \ |
667 | devm_gpiochip_add_data_with_key(dev, gc, data, NULL, NULL) | |
f310f2ef | 668 | #endif /* CONFIG_LOCKDEP */ |
959bc7b2 | 669 | |
37d42ab3 BG |
670 | void gpiochip_remove(struct gpio_chip *gc); |
671 | int devm_gpiochip_add_data_with_key(struct device *dev, struct gpio_chip *gc, | |
672 | void *data, struct lock_class_key *lock_key, | |
673 | struct lock_class_key *request_key); | |
0cf3292c | 674 | |
4a92857d | 675 | struct gpio_device *gpio_device_find(const void *data, |
faf6efd2 KK |
676 | int (*match)(struct gpio_chip *gc, |
677 | const void *data)); | |
cfe102f6 | 678 | |
36aa129f BG |
679 | struct gpio_device *gpio_device_get(struct gpio_device *gdev); |
680 | void gpio_device_put(struct gpio_device *gdev); | |
681 | ||
9e4555d1 | 682 | DEFINE_FREE(gpio_device_put, struct gpio_device *, |
832b3710 | 683 | if (!IS_ERR_OR_NULL(_T)) gpio_device_put(_T)) |
9e4555d1 | 684 | |
1559d149 BG |
685 | struct device *gpio_device_to_device(struct gpio_device *gdev); |
686 | ||
a0b66a73 LW |
687 | bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset); |
688 | int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset); | |
689 | void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset); | |
690 | void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset); | |
691 | void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset); | |
79a9becd | 692 | |
704f0875 MZ |
693 | /* irq_data versions of the above */ |
694 | int gpiochip_irq_reqres(struct irq_data *data); | |
695 | void gpiochip_irq_relres(struct irq_data *data); | |
696 | ||
36b78aae MZ |
697 | /* Paste this in your irq_chip structure */ |
698 | #define GPIOCHIP_IRQ_RESOURCE_HELPERS \ | |
699 | .irq_request_resources = gpiochip_irq_reqres, \ | |
700 | .irq_release_resources = gpiochip_irq_relres | |
701 | ||
702 | static inline void gpio_irq_chip_set_chip(struct gpio_irq_chip *girq, | |
703 | const struct irq_chip *chip) | |
704 | { | |
705 | /* Yes, dropping const is ugly, but it isn't like we have a choice */ | |
706 | girq->chip = (struct irq_chip *)chip; | |
707 | } | |
708 | ||
143b65d6 | 709 | /* Line status inquiry for drivers */ |
a0b66a73 LW |
710 | bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset); |
711 | bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset); | |
143b65d6 | 712 | |
05f479bf | 713 | /* Sleep persistence inquiry for drivers */ |
a0b66a73 LW |
714 | bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset); |
715 | bool gpiochip_line_is_valid(const struct gpio_chip *gc, unsigned int offset); | |
f636d4f6 | 716 | const unsigned long *gpiochip_query_valid_mask(const struct gpio_chip *gc); |
05f479bf | 717 | |
b08ea35a | 718 | /* get driver data */ |
a0b66a73 | 719 | void *gpiochip_get_data(struct gpio_chip *gc); |
b08ea35a | 720 | |
0f4630f3 LW |
721 | struct bgpio_pdata { |
722 | const char *label; | |
723 | int base; | |
724 | int ngpio; | |
725 | }; | |
726 | ||
fdd61a01 LW |
727 | #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY |
728 | ||
91a29af4 MZ |
729 | int gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc, |
730 | union gpio_irq_fwspec *gfwspec, | |
731 | unsigned int parent_hwirq, | |
732 | unsigned int parent_type); | |
733 | int gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc, | |
734 | union gpio_irq_fwspec *gfwspec, | |
fdd61a01 LW |
735 | unsigned int parent_hwirq, |
736 | unsigned int parent_type); | |
fdd61a01 LW |
737 | |
738 | #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */ | |
739 | ||
0f4630f3 LW |
740 | int bgpio_init(struct gpio_chip *gc, struct device *dev, |
741 | unsigned long sz, void __iomem *dat, void __iomem *set, | |
742 | void __iomem *clr, void __iomem *dirout, void __iomem *dirin, | |
743 | unsigned long flags); | |
744 | ||
745 | #define BGPIOF_BIG_ENDIAN BIT(0) | |
746 | #define BGPIOF_UNREADABLE_REG_SET BIT(1) /* reg_set is unreadable */ | |
747 | #define BGPIOF_UNREADABLE_REG_DIR BIT(2) /* reg_dir is unreadable */ | |
748 | #define BGPIOF_BIG_ENDIAN_BYTE_ORDER BIT(3) | |
749 | #define BGPIOF_READ_OUTPUT_REG_SET BIT(4) /* reg_set stores output value */ | |
750 | #define BGPIOF_NO_OUTPUT BIT(5) /* only input */ | |
d19d2de6 | 751 | #define BGPIOF_NO_SET_ON_INPUT BIT(6) |
2145ba37 | 752 | #define BGPIOF_PINCTRL_BACKEND BIT(7) /* Call pinctrl direction setters */ |
0f4630f3 | 753 | |
9c7d2469 | 754 | #ifdef CONFIG_GPIOLIB_IRQCHIP |
6a45b0e2 MW |
755 | int gpiochip_irqchip_add_domain(struct gpio_chip *gc, |
756 | struct irq_domain *domain); | |
9c7d2469 | 757 | #else |
380c7ba3 AS |
758 | |
759 | #include <asm/bug.h> | |
380c7ba3 | 760 | |
9c7d2469 ÁFR |
761 | static inline int gpiochip_irqchip_add_domain(struct gpio_chip *gc, |
762 | struct irq_domain *domain) | |
763 | { | |
764 | WARN_ON(1); | |
765 | return -EINVAL; | |
766 | } | |
767 | #endif | |
6a45b0e2 | 768 | |
8d091012 DA |
769 | int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset); |
770 | void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset); | |
771 | int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset, | |
2956b5d9 | 772 | unsigned long config); |
c771c2f4 | 773 | |
964cb341 LW |
774 | /** |
775 | * struct gpio_pin_range - pin range controlled by a gpio chip | |
950d55f5 | 776 | * @node: list for maintaining set of pin ranges, used internally |
964cb341 LW |
777 | * @pctldev: pinctrl device which handles corresponding pins |
778 | * @range: actual range of pins controlled by a gpio controller | |
779 | */ | |
964cb341 LW |
780 | struct gpio_pin_range { |
781 | struct list_head node; | |
782 | struct pinctrl_dev *pctldev; | |
783 | struct pinctrl_gpio_range range; | |
784 | }; | |
785 | ||
9091373a MY |
786 | #ifdef CONFIG_PINCTRL |
787 | ||
a0b66a73 | 788 | int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name, |
964cb341 LW |
789 | unsigned int gpio_offset, unsigned int pin_offset, |
790 | unsigned int npins); | |
a0b66a73 | 791 | int gpiochip_add_pingroup_range(struct gpio_chip *gc, |
964cb341 LW |
792 | struct pinctrl_dev *pctldev, |
793 | unsigned int gpio_offset, const char *pin_group); | |
a0b66a73 | 794 | void gpiochip_remove_pin_ranges(struct gpio_chip *gc); |
964cb341 | 795 | |
f310f2ef | 796 | #else /* ! CONFIG_PINCTRL */ |
964cb341 LW |
797 | |
798 | static inline int | |
a0b66a73 | 799 | gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name, |
964cb341 LW |
800 | unsigned int gpio_offset, unsigned int pin_offset, |
801 | unsigned int npins) | |
802 | { | |
803 | return 0; | |
804 | } | |
805 | static inline int | |
a0b66a73 | 806 | gpiochip_add_pingroup_range(struct gpio_chip *gc, |
964cb341 LW |
807 | struct pinctrl_dev *pctldev, |
808 | unsigned int gpio_offset, const char *pin_group) | |
809 | { | |
810 | return 0; | |
811 | } | |
812 | ||
813 | static inline void | |
a0b66a73 | 814 | gpiochip_remove_pin_ranges(struct gpio_chip *gc) |
964cb341 LW |
815 | { |
816 | } | |
817 | ||
818 | #endif /* CONFIG_PINCTRL */ | |
819 | ||
a0b66a73 | 820 | struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc, |
06863620 | 821 | unsigned int hwnum, |
21abf103 | 822 | const char *label, |
5923ea6c LW |
823 | enum gpio_lookup_flags lflags, |
824 | enum gpiod_flags dflags); | |
f7d4ad98 GR |
825 | void gpiochip_free_own_desc(struct gpio_desc *desc); |
826 | ||
93548f8b BG |
827 | struct gpio_desc * |
828 | gpio_device_get_desc(struct gpio_device *gdev, unsigned int hwnum); | |
fe4fa2e4 | 829 | |
9b418780 BG |
830 | struct gpio_chip *gpio_device_get_chip(struct gpio_device *gdev); |
831 | ||
ae0755b5 LW |
832 | #ifdef CONFIG_GPIOLIB |
833 | ||
c7663fa2 | 834 | /* lock/unlock as IRQ */ |
a0b66a73 LW |
835 | int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset); |
836 | void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset); | |
c7663fa2 | 837 | |
9091373a | 838 | struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc); |
370232d0 | 839 | struct gpio_device *gpiod_to_gpio_device(struct gpio_desc *desc); |
9091373a | 840 | |
8c85a102 BG |
841 | /* struct gpio_device getters */ |
842 | int gpio_device_get_base(struct gpio_device *gdev); | |
d1f77282 | 843 | const char *gpio_device_get_label(struct gpio_device *gdev); |
8c85a102 | 844 | |
52464f59 MB |
845 | struct gpio_device *gpio_device_find_by_label(const char *label); |
846 | struct gpio_device *gpio_device_find_by_fwnode(const struct fwnode_handle *fwnode); | |
847 | ||
bb1e88cc AC |
848 | #else /* CONFIG_GPIOLIB */ |
849 | ||
380c7ba3 AS |
850 | #include <asm/bug.h> |
851 | ||
bb1e88cc AC |
852 | static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) |
853 | { | |
854 | /* GPIO can never have been requested */ | |
855 | WARN_ON(1); | |
856 | return ERR_PTR(-ENODEV); | |
857 | } | |
858 | ||
6ac86372 KK |
859 | static inline struct gpio_device *gpiod_to_gpio_device(struct gpio_desc *desc) |
860 | { | |
861 | WARN_ON(1); | |
862 | return ERR_PTR(-ENODEV); | |
863 | } | |
864 | ||
ebe0c15b KK |
865 | static inline int gpio_device_get_base(struct gpio_device *gdev) |
866 | { | |
867 | WARN_ON(1); | |
868 | return -ENODEV; | |
869 | } | |
870 | ||
2df8aa3c KK |
871 | static inline const char *gpio_device_get_label(struct gpio_device *gdev) |
872 | { | |
873 | WARN_ON(1); | |
874 | return NULL; | |
875 | } | |
876 | ||
52464f59 MB |
877 | static inline struct gpio_device *gpio_device_find_by_label(const char *label) |
878 | { | |
879 | WARN_ON(1); | |
880 | return NULL; | |
881 | } | |
882 | ||
883 | static inline struct gpio_device *gpio_device_find_by_fwnode(const struct fwnode_handle *fwnode) | |
884 | { | |
885 | WARN_ON(1); | |
886 | return NULL; | |
887 | } | |
888 | ||
a0b66a73 | 889 | static inline int gpiochip_lock_as_irq(struct gpio_chip *gc, |
c7663fa2 Y |
890 | unsigned int offset) |
891 | { | |
892 | WARN_ON(1); | |
893 | return -EINVAL; | |
894 | } | |
895 | ||
a0b66a73 | 896 | static inline void gpiochip_unlock_as_irq(struct gpio_chip *gc, |
c7663fa2 Y |
897 | unsigned int offset) |
898 | { | |
899 | WARN_ON(1); | |
900 | } | |
bb1e88cc AC |
901 | #endif /* CONFIG_GPIOLIB */ |
902 | ||
85ebb1a6 AS |
903 | #define for_each_gpiochip_node(dev, child) \ |
904 | device_for_each_child_node(dev, child) \ | |
23318614 | 905 | for_each_if(fwnode_property_present(child, "gpio-controller")) |
85ebb1a6 | 906 | |
0b19dde9 AS |
907 | static inline unsigned int gpiochip_node_count(struct device *dev) |
908 | { | |
909 | struct fwnode_handle *child; | |
910 | unsigned int count = 0; | |
911 | ||
912 | for_each_gpiochip_node(dev, child) | |
913 | count++; | |
914 | ||
915 | return count; | |
916 | } | |
917 | ||
af47d803 AS |
918 | static inline struct fwnode_handle *gpiochip_node_get_first(struct device *dev) |
919 | { | |
920 | struct fwnode_handle *fwnode; | |
921 | ||
922 | for_each_gpiochip_node(dev, fwnode) | |
923 | return fwnode; | |
924 | ||
925 | return NULL; | |
926 | } | |
927 | ||
9091373a | 928 | #endif /* __LINUX_GPIO_DRIVER_H */ |