1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_GPIO_DRIVER_H
3 #define __LINUX_GPIO_DRIVER_H
4
5 #include <linux/bits.h>
6 #include <linux/cleanup.h>
7 #include <linux/err.h>
8 #include <linux/irqchip/chained_irq.h>
9 #include <linux/irqdomain.h>
10 #include <linux/irqhandler.h>
11 #include <linux/lockdep.h>
12 #include <linux/pinctrl/pinconf-generic.h>
13 #include <linux/pinctrl/pinctrl.h>
14 #include <linux/property.h>
15 #include <linux/spinlock_types.h>
16 #include <linux/types.h>
17 #include <linux/android_kabi.h>
18
19 #ifdef CONFIG_GENERIC_MSI_IRQ
20 #include <asm/msi.h>
21 #endif
22
23 struct device;
24 struct irq_chip;
25 struct irq_data;
26 struct module;
27 struct of_phandle_args;
28 struct pinctrl_dev;
29 struct seq_file;
30
31 struct gpio_chip;
32 struct gpio_desc;
33 struct gpio_device;
34
35 enum gpio_lookup_flags;
36 enum gpiod_flags;
37
38 union gpio_irq_fwspec {
39 struct irq_fwspec fwspec;
40 #ifdef CONFIG_GENERIC_MSI_IRQ
41 msi_alloc_info_t msiinfo;
42 #endif
43 };
44
45 #define GPIO_LINE_DIRECTION_IN 1
46 #define GPIO_LINE_DIRECTION_OUT 0
47
48 /**
49 * struct gpio_irq_chip - GPIO interrupt controller
50 */
51 struct gpio_irq_chip {
52 /**
53 * @chip:
54 *
55 * GPIO IRQ chip implementation, provided by GPIO driver.
56 */
57 struct irq_chip *chip;
58
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
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 */
103 int (*child_to_parent_hwirq)(struct gpio_chip *gc,
104 unsigned int child_hwirq,
105 unsigned int child_type,
106 unsigned int *parent_hwirq,
107 unsigned int *parent_type);
108
109 /**
110 * @populate_parent_alloc_arg :
111 *
112 * This optional callback allocates and populates the specific struct
113 * for the parent's IRQ domain. If this is not specified, then
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 */
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);
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 */
131 unsigned int (*child_offset_to_irq)(struct gpio_chip *gc,
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
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
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
161 /**
162 * @lock_key:
163 *
164 * Per GPIO IRQ chip lockdep class for IRQ lock.
165 */
166 struct lock_class_key *lock_key;
167
168 /**
169 * @request_key:
170 *
171 * Per GPIO IRQ chip lockdep class for IRQ request.
172 */
173 struct lock_class_key *request_key;
174
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
183 union {
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 */
191 void *parent_handler_data;
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 */
201 void **parent_handler_data_array;
202 };
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;
218
219 /**
220 * @map:
221 *
222 * A list of interrupt parents for each line of a GPIO chip.
223 */
224 unsigned int *map;
225
226 /**
227 * @threaded:
228 *
229 * True if set the interrupt handling uses nested threads.
230 */
231 bool threaded;
232
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
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
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
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 */
264 int (*init_hw)(struct gpio_chip *gc);
265
266 /**
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 */
275 void (*init_valid_mask)(struct gpio_chip *gc,
276 unsigned long *valid_mask,
277 unsigned int ngpios);
278
279 /**
280 * @valid_mask:
281 *
282 * If not %NULL, holds bitmask of GPIOs which are valid to be included
283 * in IRQ domain of the chip.
284 */
285 unsigned long *valid_mask;
286
287 /**
288 * @first:
289 *
290 * Required for static IRQ allocation. If set, irq_domain_add_simple()
291 * will allocate and map all IRQs during initialization.
292 */
293 unsigned int first;
294
295 /**
296 * @irq_enable:
297 *
298 * Store old irq_chip irq_enable callback
299 */
300 void (*irq_enable)(struct irq_data *data);
301
302 /**
303 * @irq_disable:
304 *
305 * Store old irq_chip irq_disable callback
306 */
307 void (*irq_disable)(struct irq_data *data);
308 /**
309 * @irq_unmask:
310 *
311 * Store old irq_chip irq_unmask callback
312 */
313 void (*irq_unmask)(struct irq_data *data);
314
315 /**
316 * @irq_mask:
317 *
318 * Store old irq_chip irq_mask callback
319 */
320 void (*irq_mask)(struct irq_data *data);
321
322 ANDROID_KABI_RESERVE(1);
323 ANDROID_KABI_RESERVE(2);
324 };
325
326 /**
327 * struct gpio_chip - abstract a GPIO controller
328 * @label: a functional name for the GPIO device, such as a part
329 * number or the name of the SoC IP-block implementing it.
330 * @gpiodev: the internal state holder, opaque struct
331 * @parent: optional parent device providing the GPIOs
332 * @fwnode: optional fwnode providing this controller's properties
333 * @owner: helps prevent removal of modules exporting active GPIOs
334 * @request: optional hook for chip-specific activation, such as
335 * enabling module power and clock; may sleep
336 * @free: optional hook for chip-specific deactivation, such as
337 * disabling module power and clock; may sleep
338 * @get_direction: returns direction for signal "offset", 0=out, 1=in,
339 * (same as GPIO_LINE_DIRECTION_OUT / GPIO_LINE_DIRECTION_IN),
340 * or negative error. It is recommended to always implement this
341 * function, even on input-only or output-only gpio chips.
342 * @direction_input: configures signal "offset" as input, returns 0 on success
343 * or a negative error number. This can be omitted on input-only or
344 * output-only gpio chips.
345 * @direction_output: configures signal "offset" as output, returns 0 on
346 * success or a negative error number. This can be omitted on input-only
347 * or output-only gpio chips.
348 * @get: returns value for signal "offset", 0=low, 1=high, or negative error
349 * @get_multiple: reads values for multiple signals defined by "mask" and
350 * stores them in "bits", returns 0 on success or negative error
351 * @set: assigns output value for signal "offset"
352 * @set_multiple: assigns output values for multiple signals defined by "mask"
353 * @set_config: optional hook for all kinds of settings. Uses the same
354 * packed config format as generic pinconf.
355 * @to_irq: optional hook supporting non-static gpiod_to_irq() mappings;
356 * implementation may not sleep
357 * @dbg_show: optional routine to show contents in debugfs; default code
358 * will be used when this is omitted, but custom code can show extra
359 * state (such as pullup/pulldown configuration).
360 * @init_valid_mask: optional routine to initialize @valid_mask, to be used if
361 * not all GPIOs are valid.
362 * @add_pin_ranges: optional routine to initialize pin ranges, to be used when
363 * requires special mapping of the pins that provides GPIO functionality.
364 * It is called after adding GPIO chip and before adding IRQ chip.
365 * @en_hw_timestamp: Dependent on GPIO chip, an optional routine to
366 * enable hardware timestamp.
367 * @dis_hw_timestamp: Dependent on GPIO chip, an optional routine to
368 * disable hardware timestamp.
369 * @base: identifies the first GPIO number handled by this chip;
370 * or, if negative during registration, requests dynamic ID allocation.
371 * DEPRECATION: providing anything non-negative and nailing the base
372 * offset of GPIO chips is deprecated. Please pass -1 as base to
373 * let gpiolib select the chip base in all possible cases. We want to
374 * get rid of the static GPIO number space in the long run.
375 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
376 * handled is (base + ngpio - 1).
377 * @offset: when multiple gpio chips belong to the same device this
378 * can be used as offset within the device so friendly names can
379 * be properly assigned.
380 * @names: if set, must be an array of strings to use as alternative
381 * names for the GPIOs in this chip. Any entry in the array
382 * may be NULL if there is no alias for the GPIO, however the
383 * array must be @ngpio entries long.
384 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
385 * must while accessing GPIO expander chips over I2C or SPI. This
386 * implies that if the chip supports IRQs, these IRQs need to be threaded
387 * as the chip access may sleep when e.g. reading out the IRQ status
388 * registers.
389 * @read_reg: reader function for generic GPIO
390 * @write_reg: writer function for generic GPIO
391 * @be_bits: if the generic GPIO has big endian bit order (bit 31 is representing
392 * line 0, bit 30 is line 1 ... bit 0 is line 31) this is set to true by the
393 * generic GPIO core. It is for internal housekeeping only.
394 * @reg_dat: data (in) register for generic GPIO
395 * @reg_set: output set register (out=high) for generic GPIO
396 * @reg_clr: output clear register (out=low) for generic GPIO
397 * @reg_dir_out: direction out setting register for generic GPIO
398 * @reg_dir_in: direction in setting register for generic GPIO
399 * @bgpio_dir_unreadable: indicates that the direction register(s) cannot
400 * be read and we need to rely on out internal state tracking.
401 * @bgpio_bits: number of register bits used for a generic GPIO i.e.
402 * <register width> * 8
403 * @bgpio_lock: used to lock chip->bgpio_data. Also, this is needed to keep
404 * shadowed and real data registers writes together.
405 * @bgpio_data: shadowed data register for generic GPIO to clear/set bits
406 * safely.
407 * @bgpio_dir: shadowed direction register for generic GPIO to clear/set
408 * direction safely. A "1" in this word means the line is set as
409 * output.
410 *
411 * A gpio_chip can help platforms abstract various sources of GPIOs so
412 * they can all be accessed through a common programming interface.
413 * Example sources would be SOC controllers, FPGAs, multifunction
414 * chips, dedicated GPIO expanders, and so on.
415 *
416 * Each chip controls a number of signals, identified in method calls
417 * by "offset" values in the range 0..(@ngpio - 1). When those signals
418 * are referenced through calls like gpio_get_value(gpio), the offset
419 * is calculated by subtracting @base from the gpio number.
420 */
421 struct gpio_chip {
422 const char *label;
423 struct gpio_device *gpiodev;
424 struct device *parent;
425 struct fwnode_handle *fwnode;
426 struct module *owner;
427
428 int (*request)(struct gpio_chip *gc,
429 unsigned int offset);
430 void (*free)(struct gpio_chip *gc,
431 unsigned int offset);
432 int (*get_direction)(struct gpio_chip *gc,
433 unsigned int offset);
434 int (*direction_input)(struct gpio_chip *gc,
435 unsigned int offset);
436 int (*direction_output)(struct gpio_chip *gc,
437 unsigned int offset, int value);
438 int (*get)(struct gpio_chip *gc,
439 unsigned int offset);
440 int (*get_multiple)(struct gpio_chip *gc,
441 unsigned long *mask,
442 unsigned long *bits);
443 void (*set)(struct gpio_chip *gc,
444 unsigned int offset, int value);
445 void (*set_multiple)(struct gpio_chip *gc,
446 unsigned long *mask,
447 unsigned long *bits);
448 int (*set_config)(struct gpio_chip *gc,
449 unsigned int offset,
450 unsigned long config);
451 int (*to_irq)(struct gpio_chip *gc,
452 unsigned int offset);
453
454 void (*dbg_show)(struct seq_file *s,
455 struct gpio_chip *gc);
456
457 int (*init_valid_mask)(struct gpio_chip *gc,
458 unsigned long *valid_mask,
459 unsigned int ngpios);
460
461 int (*add_pin_ranges)(struct gpio_chip *gc);
462
463 int (*en_hw_timestamp)(struct gpio_chip *gc,
464 u32 offset,
465 unsigned long flags);
466 int (*dis_hw_timestamp)(struct gpio_chip *gc,
467 u32 offset,
468 unsigned long flags);
469 int base;
470 u16 ngpio;
471 u16 offset;
472 const char *const *names;
473 bool can_sleep;
474
475 #if IS_ENABLED(CONFIG_GPIO_GENERIC)
476 unsigned long (*read_reg)(void __iomem *reg);
477 void (*write_reg)(void __iomem *reg, unsigned long data);
478 bool be_bits;
479 void __iomem *reg_dat;
480 void __iomem *reg_set;
481 void __iomem *reg_clr;
482 void __iomem *reg_dir_out;
483 void __iomem *reg_dir_in;
484 bool bgpio_dir_unreadable;
485 int bgpio_bits;
486 raw_spinlock_t bgpio_lock;
487 unsigned long bgpio_data;
488 unsigned long bgpio_dir;
489 #endif /* CONFIG_GPIO_GENERIC */
490
491 #ifdef CONFIG_GPIOLIB_IRQCHIP
492 /*
493 * With CONFIG_GPIOLIB_IRQCHIP we get an irqchip inside the gpiolib
494 * to handle IRQs for most practical cases.
495 */
496
497 /**
498 * @irq:
499 *
500 * Integrates interrupt chip functionality with the GPIO chip. Can be
501 * used to handle IRQs for most practical cases.
502 */
503 struct gpio_irq_chip irq;
504 #endif /* CONFIG_GPIOLIB_IRQCHIP */
505
506 /**
507 * @valid_mask:
508 *
509 * If not %NULL, holds bitmask of GPIOs which are valid to be used
510 * from the chip.
511 */
512 unsigned long *valid_mask;
513
514 #if defined(CONFIG_OF_GPIO)
515 /*
516 * If CONFIG_OF_GPIO is enabled, then all GPIO controllers described in
517 * the device tree automatically may have an OF translation
518 */
519
520 /**
521 * @of_gpio_n_cells:
522 *
523 * Number of cells used to form the GPIO specifier.
524 */
525 unsigned int of_gpio_n_cells;
526
527 /**
528 * @of_xlate:
529 *
530 * Callback to translate a device tree GPIO specifier into a chip-
531 * relative GPIO number and flags.
532 */
533 int (*of_xlate)(struct gpio_chip *gc,
534 const struct of_phandle_args *gpiospec, u32 *flags);
535 #endif /* CONFIG_OF_GPIO */
536
537 ANDROID_KABI_RESERVE(1);
538 ANDROID_KABI_RESERVE(2);
539 };
540
541 char *gpiochip_dup_line_label(struct gpio_chip *gc, unsigned int offset);
542
543
544 struct _gpiochip_for_each_data {
545 const char **label;
546 unsigned int *i;
547 };
548
549 DEFINE_CLASS(_gpiochip_for_each_data,
550 struct _gpiochip_for_each_data,
551 if (*_T.label) kfree(*_T.label),
552 ({
553 struct _gpiochip_for_each_data _data = { label, i };
554 *_data.i = 0;
555 _data;
556 }),
557 const char **label, int *i)
558
559 /**
560 * for_each_hwgpio - Iterates over all GPIOs for given chip.
561 * @_chip: Chip to iterate over.
562 * @_i: Loop counter.
563 * @_label: Place to store the address of the label if the GPIO is requested.
564 * Set to NULL for unused GPIOs.
565 */
566 #define for_each_hwgpio(_chip, _i, _label) \
567 for (CLASS(_gpiochip_for_each_data, _data)(&_label, &_i); \
568 *_data.i < _chip->ngpio; \
569 (*_data.i)++, kfree(*(_data.label)), *_data.label = NULL) \
570 if (IS_ERR(*_data.label = \
571 gpiochip_dup_line_label(_chip, *_data.i))) {} \
572 else
573
574 /**
575 * for_each_requested_gpio_in_range - iterates over requested GPIOs in a given range
576 * @_chip: the chip to query
577 * @_i: loop variable
578 * @_base: first GPIO in the range
579 * @_size: amount of GPIOs to check starting from @base
580 * @_label: label of current GPIO
581 */
582 #define for_each_requested_gpio_in_range(_chip, _i, _base, _size, _label) \
583 for (CLASS(_gpiochip_for_each_data, _data)(&_label, &_i); \
584 *_data.i < _size; \
585 (*_data.i)++, kfree(*(_data.label)), *_data.label = NULL) \
586 if ((*_data.label = \
587 gpiochip_dup_line_label(_chip, _base + *_data.i)) == NULL) {} \
588 else if (IS_ERR(*_data.label)) {} \
589 else
590
591 /* Iterates over all requested GPIO of the given @chip */
592 #define for_each_requested_gpio(chip, i, label) \
593 for_each_requested_gpio_in_range(chip, i, 0, chip->ngpio, label)
594
595 /* add/remove chips */
596 int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
597 struct lock_class_key *lock_key,
598 struct lock_class_key *request_key);
599
600 /**
601 * gpiochip_add_data() - register a gpio_chip
602 * @gc: the chip to register, with gc->base initialized
603 * @data: driver-private data associated with this chip
604 *
605 * Context: potentially before irqs will work
606 *
607 * When gpiochip_add_data() is called very early during boot, so that GPIOs
608 * can be freely used, the gc->parent device must be registered before
609 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
610 * for GPIOs will fail rudely.
611 *
612 * gpiochip_add_data() must only be called after gpiolib initialization,
613 * i.e. after core_initcall().
614 *
615 * If gc->base is negative, this requests dynamic assignment of
616 * a range of valid GPIOs.
617 *
618 * Returns:
619 * A negative errno if the chip can't be registered, such as because the
620 * gc->base is invalid or already associated with a different chip.
621 * Otherwise it returns zero as a success code.
622 */
623 #ifdef CONFIG_LOCKDEP
624 #define gpiochip_add_data(gc, data) ({ \
625 static struct lock_class_key lock_key; \
626 static struct lock_class_key request_key; \
627 gpiochip_add_data_with_key(gc, data, &lock_key, \
628 &request_key); \
629 })
630 #define devm_gpiochip_add_data(dev, gc, data) ({ \
631 static struct lock_class_key lock_key; \
632 static struct lock_class_key request_key; \
633 devm_gpiochip_add_data_with_key(dev, gc, data, &lock_key, \
634 &request_key); \
635 })
636 #else
637 #define gpiochip_add_data(gc, data) gpiochip_add_data_with_key(gc, data, NULL, NULL)
638 #define devm_gpiochip_add_data(dev, gc, data) \
639 devm_gpiochip_add_data_with_key(dev, gc, data, NULL, NULL)
640 #endif /* CONFIG_LOCKDEP */
641
642 void gpiochip_remove(struct gpio_chip *gc);
643 int devm_gpiochip_add_data_with_key(struct device *dev, struct gpio_chip *gc,
644 void *data, struct lock_class_key *lock_key,
645 struct lock_class_key *request_key);
646
647 struct gpio_device *gpio_device_find(const void *data,
648 int (*match)(struct gpio_chip *gc,
649 const void *data));
650
651 struct gpio_device *gpio_device_get(struct gpio_device *gdev);
652 void gpio_device_put(struct gpio_device *gdev);
653
654 DEFINE_FREE(gpio_device_put, struct gpio_device *,
655 if (!IS_ERR_OR_NULL(_T)) gpio_device_put(_T))
656
657 struct device *gpio_device_to_device(struct gpio_device *gdev);
658
659 bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset);
660 int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset);
661 void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset);
662 void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset);
663 void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset);
664
665 /* irq_data versions of the above */
666 int gpiochip_irq_reqres(struct irq_data *data);
667 void gpiochip_irq_relres(struct irq_data *data);
668
669 /* Paste this in your irq_chip structure */
670 #define GPIOCHIP_IRQ_RESOURCE_HELPERS \
671 .irq_request_resources = gpiochip_irq_reqres, \
672 .irq_release_resources = gpiochip_irq_relres
673
gpio_irq_chip_set_chip(struct gpio_irq_chip * girq,const struct irq_chip * chip)674 static inline void gpio_irq_chip_set_chip(struct gpio_irq_chip *girq,
675 const struct irq_chip *chip)
676 {
677 /* Yes, dropping const is ugly, but it isn't like we have a choice */
678 girq->chip = (struct irq_chip *)chip;
679 }
680
681 /* Line status inquiry for drivers */
682 bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset);
683 bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset);
684
685 /* Sleep persistence inquiry for drivers */
686 bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset);
687 bool gpiochip_line_is_valid(const struct gpio_chip *gc, unsigned int offset);
688
689 /* get driver data */
690 void *gpiochip_get_data(struct gpio_chip *gc);
691
692 struct bgpio_pdata {
693 const char *label;
694 int base;
695 int ngpio;
696 };
697
698 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
699
700 int gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc,
701 union gpio_irq_fwspec *gfwspec,
702 unsigned int parent_hwirq,
703 unsigned int parent_type);
704 int gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc,
705 union gpio_irq_fwspec *gfwspec,
706 unsigned int parent_hwirq,
707 unsigned int parent_type);
708
709 #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
710
711 int bgpio_init(struct gpio_chip *gc, struct device *dev,
712 unsigned long sz, void __iomem *dat, void __iomem *set,
713 void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
714 unsigned long flags);
715
716 #define BGPIOF_BIG_ENDIAN BIT(0)
717 #define BGPIOF_UNREADABLE_REG_SET BIT(1) /* reg_set is unreadable */
718 #define BGPIOF_UNREADABLE_REG_DIR BIT(2) /* reg_dir is unreadable */
719 #define BGPIOF_BIG_ENDIAN_BYTE_ORDER BIT(3)
720 #define BGPIOF_READ_OUTPUT_REG_SET BIT(4) /* reg_set stores output value */
721 #define BGPIOF_NO_OUTPUT BIT(5) /* only input */
722 #define BGPIOF_NO_SET_ON_INPUT BIT(6)
723
724 #ifdef CONFIG_GPIOLIB_IRQCHIP
725 int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
726 struct irq_domain *domain);
727 #else
728
729 #include <asm/bug.h>
730
gpiochip_irqchip_add_domain(struct gpio_chip * gc,struct irq_domain * domain)731 static inline int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
732 struct irq_domain *domain)
733 {
734 WARN_ON(1);
735 return -EINVAL;
736 }
737 #endif
738
739 int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset);
740 void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset);
741 int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset,
742 unsigned long config);
743
744 /**
745 * struct gpio_pin_range - pin range controlled by a gpio chip
746 * @node: list for maintaining set of pin ranges, used internally
747 * @pctldev: pinctrl device which handles corresponding pins
748 * @range: actual range of pins controlled by a gpio controller
749 */
750 struct gpio_pin_range {
751 struct list_head node;
752 struct pinctrl_dev *pctldev;
753 struct pinctrl_gpio_range range;
754 };
755
756 #ifdef CONFIG_PINCTRL
757
758 int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
759 unsigned int gpio_offset, unsigned int pin_offset,
760 unsigned int npins);
761 int gpiochip_add_pingroup_range(struct gpio_chip *gc,
762 struct pinctrl_dev *pctldev,
763 unsigned int gpio_offset, const char *pin_group);
764 void gpiochip_remove_pin_ranges(struct gpio_chip *gc);
765
766 #else /* ! CONFIG_PINCTRL */
767
768 static inline int
gpiochip_add_pin_range(struct gpio_chip * gc,const char * pinctl_name,unsigned int gpio_offset,unsigned int pin_offset,unsigned int npins)769 gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
770 unsigned int gpio_offset, unsigned int pin_offset,
771 unsigned int npins)
772 {
773 return 0;
774 }
775 static inline int
gpiochip_add_pingroup_range(struct gpio_chip * gc,struct pinctrl_dev * pctldev,unsigned int gpio_offset,const char * pin_group)776 gpiochip_add_pingroup_range(struct gpio_chip *gc,
777 struct pinctrl_dev *pctldev,
778 unsigned int gpio_offset, const char *pin_group)
779 {
780 return 0;
781 }
782
783 static inline void
gpiochip_remove_pin_ranges(struct gpio_chip * gc)784 gpiochip_remove_pin_ranges(struct gpio_chip *gc)
785 {
786 }
787
788 #endif /* CONFIG_PINCTRL */
789
790 struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc,
791 unsigned int hwnum,
792 const char *label,
793 enum gpio_lookup_flags lflags,
794 enum gpiod_flags dflags);
795 void gpiochip_free_own_desc(struct gpio_desc *desc);
796
797 struct gpio_desc *
798 gpio_device_get_desc(struct gpio_device *gdev, unsigned int hwnum);
799
800 struct gpio_chip *gpio_device_get_chip(struct gpio_device *gdev);
801
802 #ifdef CONFIG_GPIOLIB
803
804 /* lock/unlock as IRQ */
805 int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset);
806 void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset);
807
808 struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc);
809 struct gpio_device *gpiod_to_gpio_device(struct gpio_desc *desc);
810
811 /* struct gpio_device getters */
812 int gpio_device_get_base(struct gpio_device *gdev);
813 const char *gpio_device_get_label(struct gpio_device *gdev);
814
815 struct gpio_device *gpio_device_find_by_label(const char *label);
816 struct gpio_device *gpio_device_find_by_fwnode(const struct fwnode_handle *fwnode);
817
818 #else /* CONFIG_GPIOLIB */
819
820 #include <asm/bug.h>
821
gpiod_to_chip(const struct gpio_desc * desc)822 static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
823 {
824 /* GPIO can never have been requested */
825 WARN_ON(1);
826 return ERR_PTR(-ENODEV);
827 }
828
gpiod_to_gpio_device(struct gpio_desc * desc)829 static inline struct gpio_device *gpiod_to_gpio_device(struct gpio_desc *desc)
830 {
831 WARN_ON(1);
832 return ERR_PTR(-ENODEV);
833 }
834
gpio_device_get_base(struct gpio_device * gdev)835 static inline int gpio_device_get_base(struct gpio_device *gdev)
836 {
837 WARN_ON(1);
838 return -ENODEV;
839 }
840
gpio_device_get_label(struct gpio_device * gdev)841 static inline const char *gpio_device_get_label(struct gpio_device *gdev)
842 {
843 WARN_ON(1);
844 return NULL;
845 }
846
gpio_device_find_by_label(const char * label)847 static inline struct gpio_device *gpio_device_find_by_label(const char *label)
848 {
849 WARN_ON(1);
850 return NULL;
851 }
852
gpio_device_find_by_fwnode(const struct fwnode_handle * fwnode)853 static inline struct gpio_device *gpio_device_find_by_fwnode(const struct fwnode_handle *fwnode)
854 {
855 WARN_ON(1);
856 return NULL;
857 }
858
gpiochip_lock_as_irq(struct gpio_chip * gc,unsigned int offset)859 static inline int gpiochip_lock_as_irq(struct gpio_chip *gc,
860 unsigned int offset)
861 {
862 WARN_ON(1);
863 return -EINVAL;
864 }
865
gpiochip_unlock_as_irq(struct gpio_chip * gc,unsigned int offset)866 static inline void gpiochip_unlock_as_irq(struct gpio_chip *gc,
867 unsigned int offset)
868 {
869 WARN_ON(1);
870 }
871 #endif /* CONFIG_GPIOLIB */
872
873 #define for_each_gpiochip_node(dev, child) \
874 device_for_each_child_node(dev, child) \
875 if (!fwnode_property_present(child, "gpio-controller")) {} else
876
gpiochip_node_count(struct device * dev)877 static inline unsigned int gpiochip_node_count(struct device *dev)
878 {
879 struct fwnode_handle *child;
880 unsigned int count = 0;
881
882 for_each_gpiochip_node(dev, child)
883 count++;
884
885 return count;
886 }
887
gpiochip_node_get_first(struct device * dev)888 static inline struct fwnode_handle *gpiochip_node_get_first(struct device *dev)
889 {
890 struct fwnode_handle *fwnode;
891
892 for_each_gpiochip_node(dev, fwnode)
893 return fwnode;
894
895 return NULL;
896 }
897
898 #endif /* __LINUX_GPIO_DRIVER_H */
899