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