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