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