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