1 #include <linux/kernel.h> 2 #include <linux/module.h> 3 #include <linux/interrupt.h> 4 #include <linux/irq.h> 5 #include <linux/spinlock.h> 6 #include <linux/list.h> 7 #include <linux/device.h> 8 #include <linux/err.h> 9 #include <linux/debugfs.h> 10 #include <linux/seq_file.h> 11 #include <linux/gpio.h> 12 #include <linux/of_gpio.h> 13 #include <linux/idr.h> 14 #include <linux/slab.h> 15 #include <linux/acpi.h> 16 #include <linux/gpio/driver.h> 17 #include <linux/gpio/machine.h> 18 19 #include "gpiolib.h" 20 21 #define CREATE_TRACE_POINTS 22 #include <trace/events/gpio.h> 23 24 /* Implementation infrastructure for GPIO interfaces. 25 * 26 * The GPIO programming interface allows for inlining speed-critical 27 * get/set operations for common cases, so that access to SOC-integrated 28 * GPIOs can sometimes cost only an instruction or two per bit. 29 */ 30 31 32 /* When debugging, extend minimal trust to callers and platform code. 33 * Also emit diagnostic messages that may help initial bringup, when 34 * board setup or driver bugs are most common. 35 * 36 * Otherwise, minimize overhead in what may be bitbanging codepaths. 37 */ 38 #ifdef DEBUG 39 #define extra_checks 1 40 #else 41 #define extra_checks 0 42 #endif 43 44 /* gpio_lock prevents conflicts during gpio_desc[] table updates. 45 * While any GPIO is requested, its gpio_chip is not removable; 46 * each GPIO's "requested" flag serves as a lock and refcount. 47 */ 48 DEFINE_SPINLOCK(gpio_lock); 49 50 #define GPIO_OFFSET_VALID(chip, offset) (offset >= 0 && offset < chip->ngpio) 51 52 static DEFINE_MUTEX(gpio_lookup_lock); 53 static LIST_HEAD(gpio_lookup_list); 54 LIST_HEAD(gpio_chips); 55 56 57 static void gpiochip_free_hogs(struct gpio_chip *chip); 58 static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip); 59 60 61 static inline void desc_set_label(struct gpio_desc *d, const char *label) 62 { 63 d->label = label; 64 } 65 66 /** 67 * Convert a GPIO number to its descriptor 68 */ 69 struct gpio_desc *gpio_to_desc(unsigned gpio) 70 { 71 struct gpio_chip *chip; 72 unsigned long flags; 73 74 spin_lock_irqsave(&gpio_lock, flags); 75 76 list_for_each_entry(chip, &gpio_chips, list) { 77 if (chip->base <= gpio && chip->base + chip->ngpio > gpio) { 78 spin_unlock_irqrestore(&gpio_lock, flags); 79 return &chip->desc[gpio - chip->base]; 80 } 81 } 82 83 spin_unlock_irqrestore(&gpio_lock, flags); 84 85 if (!gpio_is_valid(gpio)) 86 WARN(1, "invalid GPIO %d\n", gpio); 87 88 return NULL; 89 } 90 EXPORT_SYMBOL_GPL(gpio_to_desc); 91 92 /** 93 * Get the GPIO descriptor corresponding to the given hw number for this chip. 94 */ 95 struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, 96 u16 hwnum) 97 { 98 if (hwnum >= chip->ngpio) 99 return ERR_PTR(-EINVAL); 100 101 return &chip->desc[hwnum]; 102 } 103 104 /** 105 * Convert a GPIO descriptor to the integer namespace. 106 * This should disappear in the future but is needed since we still 107 * use GPIO numbers for error messages and sysfs nodes 108 */ 109 int desc_to_gpio(const struct gpio_desc *desc) 110 { 111 return desc->chip->base + (desc - &desc->chip->desc[0]); 112 } 113 EXPORT_SYMBOL_GPL(desc_to_gpio); 114 115 116 /** 117 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs 118 * @desc: descriptor to return the chip of 119 */ 120 struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) 121 { 122 return desc ? desc->chip : NULL; 123 } 124 EXPORT_SYMBOL_GPL(gpiod_to_chip); 125 126 /* dynamic allocation of GPIOs, e.g. on a hotplugged device */ 127 static int gpiochip_find_base(int ngpio) 128 { 129 struct gpio_chip *chip; 130 int base = ARCH_NR_GPIOS - ngpio; 131 132 list_for_each_entry_reverse(chip, &gpio_chips, list) { 133 /* found a free space? */ 134 if (chip->base + chip->ngpio <= base) 135 break; 136 else 137 /* nope, check the space right before the chip */ 138 base = chip->base - ngpio; 139 } 140 141 if (gpio_is_valid(base)) { 142 pr_debug("%s: found new base at %d\n", __func__, base); 143 return base; 144 } else { 145 pr_err("%s: cannot find free range\n", __func__); 146 return -ENOSPC; 147 } 148 } 149 150 /** 151 * gpiod_get_direction - return the current direction of a GPIO 152 * @desc: GPIO to get the direction of 153 * 154 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error. 155 * 156 * This function may sleep if gpiod_cansleep() is true. 157 */ 158 int gpiod_get_direction(struct gpio_desc *desc) 159 { 160 struct gpio_chip *chip; 161 unsigned offset; 162 int status = -EINVAL; 163 164 chip = gpiod_to_chip(desc); 165 offset = gpio_chip_hwgpio(desc); 166 167 if (!chip->get_direction) 168 return status; 169 170 status = chip->get_direction(chip, offset); 171 if (status > 0) { 172 /* GPIOF_DIR_IN, or other positive */ 173 status = 1; 174 clear_bit(FLAG_IS_OUT, &desc->flags); 175 } 176 if (status == 0) { 177 /* GPIOF_DIR_OUT */ 178 set_bit(FLAG_IS_OUT, &desc->flags); 179 } 180 return status; 181 } 182 EXPORT_SYMBOL_GPL(gpiod_get_direction); 183 184 /* 185 * Add a new chip to the global chips list, keeping the list of chips sorted 186 * by base order. 187 * 188 * Return -EBUSY if the new chip overlaps with some other chip's integer 189 * space. 190 */ 191 static int gpiochip_add_to_list(struct gpio_chip *chip) 192 { 193 struct list_head *pos = &gpio_chips; 194 struct gpio_chip *_chip; 195 int err = 0; 196 197 /* find where to insert our chip */ 198 list_for_each(pos, &gpio_chips) { 199 _chip = list_entry(pos, struct gpio_chip, list); 200 /* shall we insert before _chip? */ 201 if (_chip->base >= chip->base + chip->ngpio) 202 break; 203 } 204 205 /* are we stepping on the chip right before? */ 206 if (pos != &gpio_chips && pos->prev != &gpio_chips) { 207 _chip = list_entry(pos->prev, struct gpio_chip, list); 208 if (_chip->base + _chip->ngpio > chip->base) { 209 dev_err(chip->dev, 210 "GPIO integer space overlap, cannot add chip\n"); 211 err = -EBUSY; 212 } 213 } 214 215 if (!err) 216 list_add_tail(&chip->list, pos); 217 218 return err; 219 } 220 221 /** 222 * gpiochip_add() - register a gpio_chip 223 * @chip: the chip to register, with chip->base initialized 224 * Context: potentially before irqs will work 225 * 226 * Returns a negative errno if the chip can't be registered, such as 227 * because the chip->base is invalid or already associated with a 228 * different chip. Otherwise it returns zero as a success code. 229 * 230 * When gpiochip_add() is called very early during boot, so that GPIOs 231 * can be freely used, the chip->dev device must be registered before 232 * the gpio framework's arch_initcall(). Otherwise sysfs initialization 233 * for GPIOs will fail rudely. 234 * 235 * If chip->base is negative, this requests dynamic assignment of 236 * a range of valid GPIOs. 237 */ 238 int gpiochip_add(struct gpio_chip *chip) 239 { 240 unsigned long flags; 241 int status = 0; 242 unsigned id; 243 int base = chip->base; 244 struct gpio_desc *descs; 245 246 descs = kcalloc(chip->ngpio, sizeof(descs[0]), GFP_KERNEL); 247 if (!descs) 248 return -ENOMEM; 249 250 spin_lock_irqsave(&gpio_lock, flags); 251 252 if (base < 0) { 253 base = gpiochip_find_base(chip->ngpio); 254 if (base < 0) { 255 status = base; 256 spin_unlock_irqrestore(&gpio_lock, flags); 257 goto err_free_descs; 258 } 259 chip->base = base; 260 } 261 262 status = gpiochip_add_to_list(chip); 263 if (status) { 264 spin_unlock_irqrestore(&gpio_lock, flags); 265 goto err_free_descs; 266 } 267 268 for (id = 0; id < chip->ngpio; id++) { 269 struct gpio_desc *desc = &descs[id]; 270 271 desc->chip = chip; 272 273 /* REVISIT: most hardware initializes GPIOs as inputs (often 274 * with pullups enabled) so power usage is minimized. Linux 275 * code should set the gpio direction first thing; but until 276 * it does, and in case chip->get_direction is not set, we may 277 * expose the wrong direction in sysfs. 278 */ 279 desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0; 280 } 281 282 chip->desc = descs; 283 284 spin_unlock_irqrestore(&gpio_lock, flags); 285 286 #ifdef CONFIG_PINCTRL 287 INIT_LIST_HEAD(&chip->pin_ranges); 288 #endif 289 290 of_gpiochip_add(chip); 291 acpi_gpiochip_add(chip); 292 293 status = gpiochip_sysfs_register(chip); 294 if (status) 295 goto err_remove_chip; 296 297 pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__, 298 chip->base, chip->base + chip->ngpio - 1, 299 chip->label ? : "generic"); 300 301 return 0; 302 303 err_remove_chip: 304 acpi_gpiochip_remove(chip); 305 gpiochip_free_hogs(chip); 306 of_gpiochip_remove(chip); 307 spin_lock_irqsave(&gpio_lock, flags); 308 list_del(&chip->list); 309 spin_unlock_irqrestore(&gpio_lock, flags); 310 chip->desc = NULL; 311 err_free_descs: 312 kfree(descs); 313 314 /* failures here can mean systems won't boot... */ 315 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__, 316 chip->base, chip->base + chip->ngpio - 1, 317 chip->label ? : "generic"); 318 return status; 319 } 320 EXPORT_SYMBOL_GPL(gpiochip_add); 321 322 /** 323 * gpiochip_remove() - unregister a gpio_chip 324 * @chip: the chip to unregister 325 * 326 * A gpio_chip with any GPIOs still requested may not be removed. 327 */ 328 void gpiochip_remove(struct gpio_chip *chip) 329 { 330 struct gpio_desc *desc; 331 unsigned long flags; 332 unsigned id; 333 bool requested = false; 334 335 gpiochip_sysfs_unregister(chip); 336 337 gpiochip_irqchip_remove(chip); 338 339 acpi_gpiochip_remove(chip); 340 gpiochip_remove_pin_ranges(chip); 341 gpiochip_free_hogs(chip); 342 of_gpiochip_remove(chip); 343 344 spin_lock_irqsave(&gpio_lock, flags); 345 for (id = 0; id < chip->ngpio; id++) { 346 desc = &chip->desc[id]; 347 desc->chip = NULL; 348 if (test_bit(FLAG_REQUESTED, &desc->flags)) 349 requested = true; 350 } 351 list_del(&chip->list); 352 spin_unlock_irqrestore(&gpio_lock, flags); 353 354 if (requested) 355 dev_crit(chip->dev, "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n"); 356 357 kfree(chip->desc); 358 chip->desc = NULL; 359 } 360 EXPORT_SYMBOL_GPL(gpiochip_remove); 361 362 /** 363 * gpiochip_find() - iterator for locating a specific gpio_chip 364 * @data: data to pass to match function 365 * @callback: Callback function to check gpio_chip 366 * 367 * Similar to bus_find_device. It returns a reference to a gpio_chip as 368 * determined by a user supplied @match callback. The callback should return 369 * 0 if the device doesn't match and non-zero if it does. If the callback is 370 * non-zero, this function will return to the caller and not iterate over any 371 * more gpio_chips. 372 */ 373 struct gpio_chip *gpiochip_find(void *data, 374 int (*match)(struct gpio_chip *chip, 375 void *data)) 376 { 377 struct gpio_chip *chip; 378 unsigned long flags; 379 380 spin_lock_irqsave(&gpio_lock, flags); 381 list_for_each_entry(chip, &gpio_chips, list) 382 if (match(chip, data)) 383 break; 384 385 /* No match? */ 386 if (&chip->list == &gpio_chips) 387 chip = NULL; 388 spin_unlock_irqrestore(&gpio_lock, flags); 389 390 return chip; 391 } 392 EXPORT_SYMBOL_GPL(gpiochip_find); 393 394 static int gpiochip_match_name(struct gpio_chip *chip, void *data) 395 { 396 const char *name = data; 397 398 return !strcmp(chip->label, name); 399 } 400 401 static struct gpio_chip *find_chip_by_name(const char *name) 402 { 403 return gpiochip_find((void *)name, gpiochip_match_name); 404 } 405 406 #ifdef CONFIG_GPIOLIB_IRQCHIP 407 408 /* 409 * The following is irqchip helper code for gpiochips. 410 */ 411 412 /** 413 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip 414 * @gpiochip: the gpiochip to set the irqchip chain to 415 * @irqchip: the irqchip to chain to the gpiochip 416 * @parent_irq: the irq number corresponding to the parent IRQ for this 417 * chained irqchip 418 * @parent_handler: the parent interrupt handler for the accumulated IRQ 419 * coming out of the gpiochip. If the interrupt is nested rather than 420 * cascaded, pass NULL in this handler argument 421 */ 422 void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, 423 struct irq_chip *irqchip, 424 int parent_irq, 425 irq_flow_handler_t parent_handler) 426 { 427 unsigned int offset; 428 429 if (!gpiochip->irqdomain) { 430 chip_err(gpiochip, "called %s before setting up irqchip\n", 431 __func__); 432 return; 433 } 434 435 if (parent_handler) { 436 if (gpiochip->can_sleep) { 437 chip_err(gpiochip, 438 "you cannot have chained interrupts on a " 439 "chip that may sleep\n"); 440 return; 441 } 442 /* 443 * The parent irqchip is already using the chip_data for this 444 * irqchip, so our callbacks simply use the handler_data. 445 */ 446 irq_set_handler_data(parent_irq, gpiochip); 447 irq_set_chained_handler(parent_irq, parent_handler); 448 449 gpiochip->irq_parent = parent_irq; 450 } 451 452 /* Set the parent IRQ for all affected IRQs */ 453 for (offset = 0; offset < gpiochip->ngpio; offset++) 454 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset), 455 parent_irq); 456 } 457 EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip); 458 459 /* 460 * This lock class tells lockdep that GPIO irqs are in a different 461 * category than their parents, so it won't report false recursion. 462 */ 463 static struct lock_class_key gpiochip_irq_lock_class; 464 465 /** 466 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip 467 * @d: the irqdomain used by this irqchip 468 * @irq: the global irq number used by this GPIO irqchip irq 469 * @hwirq: the local IRQ/GPIO line offset on this gpiochip 470 * 471 * This function will set up the mapping for a certain IRQ line on a 472 * gpiochip by assigning the gpiochip as chip data, and using the irqchip 473 * stored inside the gpiochip. 474 */ 475 static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq, 476 irq_hw_number_t hwirq) 477 { 478 struct gpio_chip *chip = d->host_data; 479 480 irq_set_chip_data(irq, chip); 481 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class); 482 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler); 483 /* Chips that can sleep need nested thread handlers */ 484 if (chip->can_sleep && !chip->irq_not_threaded) 485 irq_set_nested_thread(irq, 1); 486 #ifdef CONFIG_ARM 487 set_irq_flags(irq, IRQF_VALID); 488 #else 489 irq_set_noprobe(irq); 490 #endif 491 /* 492 * No set-up of the hardware will happen if IRQ_TYPE_NONE 493 * is passed as default type. 494 */ 495 if (chip->irq_default_type != IRQ_TYPE_NONE) 496 irq_set_irq_type(irq, chip->irq_default_type); 497 498 return 0; 499 } 500 501 static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq) 502 { 503 struct gpio_chip *chip = d->host_data; 504 505 #ifdef CONFIG_ARM 506 set_irq_flags(irq, 0); 507 #endif 508 if (chip->can_sleep) 509 irq_set_nested_thread(irq, 0); 510 irq_set_chip_and_handler(irq, NULL, NULL); 511 irq_set_chip_data(irq, NULL); 512 } 513 514 static const struct irq_domain_ops gpiochip_domain_ops = { 515 .map = gpiochip_irq_map, 516 .unmap = gpiochip_irq_unmap, 517 /* Virtually all GPIO irqchips are twocell:ed */ 518 .xlate = irq_domain_xlate_twocell, 519 }; 520 521 static int gpiochip_irq_reqres(struct irq_data *d) 522 { 523 struct gpio_chip *chip = irq_data_get_irq_chip_data(d); 524 525 if (gpiochip_lock_as_irq(chip, d->hwirq)) { 526 chip_err(chip, 527 "unable to lock HW IRQ %lu for IRQ\n", 528 d->hwirq); 529 return -EINVAL; 530 } 531 return 0; 532 } 533 534 static void gpiochip_irq_relres(struct irq_data *d) 535 { 536 struct gpio_chip *chip = irq_data_get_irq_chip_data(d); 537 538 gpiochip_unlock_as_irq(chip, d->hwirq); 539 } 540 541 static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset) 542 { 543 return irq_find_mapping(chip->irqdomain, offset); 544 } 545 546 /** 547 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip 548 * @gpiochip: the gpiochip to remove the irqchip from 549 * 550 * This is called only from gpiochip_remove() 551 */ 552 static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) 553 { 554 unsigned int offset; 555 556 acpi_gpiochip_free_interrupts(gpiochip); 557 558 if (gpiochip->irq_parent) { 559 irq_set_chained_handler(gpiochip->irq_parent, NULL); 560 irq_set_handler_data(gpiochip->irq_parent, NULL); 561 } 562 563 /* Remove all IRQ mappings and delete the domain */ 564 if (gpiochip->irqdomain) { 565 for (offset = 0; offset < gpiochip->ngpio; offset++) 566 irq_dispose_mapping( 567 irq_find_mapping(gpiochip->irqdomain, offset)); 568 irq_domain_remove(gpiochip->irqdomain); 569 } 570 571 if (gpiochip->irqchip) { 572 gpiochip->irqchip->irq_request_resources = NULL; 573 gpiochip->irqchip->irq_release_resources = NULL; 574 gpiochip->irqchip = NULL; 575 } 576 } 577 578 /** 579 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip 580 * @gpiochip: the gpiochip to add the irqchip to 581 * @irqchip: the irqchip to add to the gpiochip 582 * @first_irq: if not dynamically assigned, the base (first) IRQ to 583 * allocate gpiochip irqs from 584 * @handler: the irq handler to use (often a predefined irq core function) 585 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE 586 * to have the core avoid setting up any default type in the hardware. 587 * 588 * This function closely associates a certain irqchip with a certain 589 * gpiochip, providing an irq domain to translate the local IRQs to 590 * global irqs in the gpiolib core, and making sure that the gpiochip 591 * is passed as chip data to all related functions. Driver callbacks 592 * need to use container_of() to get their local state containers back 593 * from the gpiochip passed as chip data. An irqdomain will be stored 594 * in the gpiochip that shall be used by the driver to handle IRQ number 595 * translation. The gpiochip will need to be initialized and registered 596 * before calling this function. 597 * 598 * This function will handle two cell:ed simple IRQs and assumes all 599 * the pins on the gpiochip can generate a unique IRQ. Everything else 600 * need to be open coded. 601 */ 602 int gpiochip_irqchip_add(struct gpio_chip *gpiochip, 603 struct irq_chip *irqchip, 604 unsigned int first_irq, 605 irq_flow_handler_t handler, 606 unsigned int type) 607 { 608 struct device_node *of_node; 609 unsigned int offset; 610 unsigned irq_base = 0; 611 612 if (!gpiochip || !irqchip) 613 return -EINVAL; 614 615 if (!gpiochip->dev) { 616 pr_err("missing gpiochip .dev parent pointer\n"); 617 return -EINVAL; 618 } 619 of_node = gpiochip->dev->of_node; 620 #ifdef CONFIG_OF_GPIO 621 /* 622 * If the gpiochip has an assigned OF node this takes precedence 623 * FIXME: get rid of this and use gpiochip->dev->of_node everywhere 624 */ 625 if (gpiochip->of_node) 626 of_node = gpiochip->of_node; 627 #endif 628 gpiochip->irqchip = irqchip; 629 gpiochip->irq_handler = handler; 630 gpiochip->irq_default_type = type; 631 gpiochip->to_irq = gpiochip_to_irq; 632 gpiochip->irqdomain = irq_domain_add_simple(of_node, 633 gpiochip->ngpio, first_irq, 634 &gpiochip_domain_ops, gpiochip); 635 if (!gpiochip->irqdomain) { 636 gpiochip->irqchip = NULL; 637 return -EINVAL; 638 } 639 irqchip->irq_request_resources = gpiochip_irq_reqres; 640 irqchip->irq_release_resources = gpiochip_irq_relres; 641 642 /* 643 * Prepare the mapping since the irqchip shall be orthogonal to 644 * any gpiochip calls. If the first_irq was zero, this is 645 * necessary to allocate descriptors for all IRQs. 646 */ 647 for (offset = 0; offset < gpiochip->ngpio; offset++) { 648 irq_base = irq_create_mapping(gpiochip->irqdomain, offset); 649 if (offset == 0) 650 /* 651 * Store the base into the gpiochip to be used when 652 * unmapping the irqs. 653 */ 654 gpiochip->irq_base = irq_base; 655 } 656 657 acpi_gpiochip_request_interrupts(gpiochip); 658 659 return 0; 660 } 661 EXPORT_SYMBOL_GPL(gpiochip_irqchip_add); 662 663 #else /* CONFIG_GPIOLIB_IRQCHIP */ 664 665 static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {} 666 667 #endif /* CONFIG_GPIOLIB_IRQCHIP */ 668 669 #ifdef CONFIG_PINCTRL 670 671 /** 672 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping 673 * @chip: the gpiochip to add the range for 674 * @pinctrl: the dev_name() of the pin controller to map to 675 * @gpio_offset: the start offset in the current gpio_chip number space 676 * @pin_group: name of the pin group inside the pin controller 677 */ 678 int gpiochip_add_pingroup_range(struct gpio_chip *chip, 679 struct pinctrl_dev *pctldev, 680 unsigned int gpio_offset, const char *pin_group) 681 { 682 struct gpio_pin_range *pin_range; 683 int ret; 684 685 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); 686 if (!pin_range) { 687 chip_err(chip, "failed to allocate pin ranges\n"); 688 return -ENOMEM; 689 } 690 691 /* Use local offset as range ID */ 692 pin_range->range.id = gpio_offset; 693 pin_range->range.gc = chip; 694 pin_range->range.name = chip->label; 695 pin_range->range.base = chip->base + gpio_offset; 696 pin_range->pctldev = pctldev; 697 698 ret = pinctrl_get_group_pins(pctldev, pin_group, 699 &pin_range->range.pins, 700 &pin_range->range.npins); 701 if (ret < 0) { 702 kfree(pin_range); 703 return ret; 704 } 705 706 pinctrl_add_gpio_range(pctldev, &pin_range->range); 707 708 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n", 709 gpio_offset, gpio_offset + pin_range->range.npins - 1, 710 pinctrl_dev_get_devname(pctldev), pin_group); 711 712 list_add_tail(&pin_range->node, &chip->pin_ranges); 713 714 return 0; 715 } 716 EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range); 717 718 /** 719 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping 720 * @chip: the gpiochip to add the range for 721 * @pinctrl_name: the dev_name() of the pin controller to map to 722 * @gpio_offset: the start offset in the current gpio_chip number space 723 * @pin_offset: the start offset in the pin controller number space 724 * @npins: the number of pins from the offset of each pin space (GPIO and 725 * pin controller) to accumulate in this range 726 */ 727 int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 728 unsigned int gpio_offset, unsigned int pin_offset, 729 unsigned int npins) 730 { 731 struct gpio_pin_range *pin_range; 732 int ret; 733 734 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); 735 if (!pin_range) { 736 chip_err(chip, "failed to allocate pin ranges\n"); 737 return -ENOMEM; 738 } 739 740 /* Use local offset as range ID */ 741 pin_range->range.id = gpio_offset; 742 pin_range->range.gc = chip; 743 pin_range->range.name = chip->label; 744 pin_range->range.base = chip->base + gpio_offset; 745 pin_range->range.pin_base = pin_offset; 746 pin_range->range.npins = npins; 747 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name, 748 &pin_range->range); 749 if (IS_ERR(pin_range->pctldev)) { 750 ret = PTR_ERR(pin_range->pctldev); 751 chip_err(chip, "could not create pin range\n"); 752 kfree(pin_range); 753 return ret; 754 } 755 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n", 756 gpio_offset, gpio_offset + npins - 1, 757 pinctl_name, 758 pin_offset, pin_offset + npins - 1); 759 760 list_add_tail(&pin_range->node, &chip->pin_ranges); 761 762 return 0; 763 } 764 EXPORT_SYMBOL_GPL(gpiochip_add_pin_range); 765 766 /** 767 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings 768 * @chip: the chip to remove all the mappings for 769 */ 770 void gpiochip_remove_pin_ranges(struct gpio_chip *chip) 771 { 772 struct gpio_pin_range *pin_range, *tmp; 773 774 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) { 775 list_del(&pin_range->node); 776 pinctrl_remove_gpio_range(pin_range->pctldev, 777 &pin_range->range); 778 kfree(pin_range); 779 } 780 } 781 EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges); 782 783 #endif /* CONFIG_PINCTRL */ 784 785 /* These "optional" allocation calls help prevent drivers from stomping 786 * on each other, and help provide better diagnostics in debugfs. 787 * They're called even less than the "set direction" calls. 788 */ 789 static int __gpiod_request(struct gpio_desc *desc, const char *label) 790 { 791 struct gpio_chip *chip = desc->chip; 792 int status; 793 unsigned long flags; 794 795 spin_lock_irqsave(&gpio_lock, flags); 796 797 /* NOTE: gpio_request() can be called in early boot, 798 * before IRQs are enabled, for non-sleeping (SOC) GPIOs. 799 */ 800 801 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) { 802 desc_set_label(desc, label ? : "?"); 803 status = 0; 804 } else { 805 status = -EBUSY; 806 goto done; 807 } 808 809 if (chip->request) { 810 /* chip->request may sleep */ 811 spin_unlock_irqrestore(&gpio_lock, flags); 812 status = chip->request(chip, gpio_chip_hwgpio(desc)); 813 spin_lock_irqsave(&gpio_lock, flags); 814 815 if (status < 0) { 816 desc_set_label(desc, NULL); 817 clear_bit(FLAG_REQUESTED, &desc->flags); 818 goto done; 819 } 820 } 821 if (chip->get_direction) { 822 /* chip->get_direction may sleep */ 823 spin_unlock_irqrestore(&gpio_lock, flags); 824 gpiod_get_direction(desc); 825 spin_lock_irqsave(&gpio_lock, flags); 826 } 827 done: 828 spin_unlock_irqrestore(&gpio_lock, flags); 829 return status; 830 } 831 832 int gpiod_request(struct gpio_desc *desc, const char *label) 833 { 834 int status = -EPROBE_DEFER; 835 struct gpio_chip *chip; 836 837 if (!desc) { 838 pr_warn("%s: invalid GPIO\n", __func__); 839 return -EINVAL; 840 } 841 842 chip = desc->chip; 843 if (!chip) 844 goto done; 845 846 if (try_module_get(chip->owner)) { 847 status = __gpiod_request(desc, label); 848 if (status < 0) 849 module_put(chip->owner); 850 } 851 852 done: 853 if (status) 854 gpiod_dbg(desc, "%s: status %d\n", __func__, status); 855 856 return status; 857 } 858 859 static bool __gpiod_free(struct gpio_desc *desc) 860 { 861 bool ret = false; 862 unsigned long flags; 863 struct gpio_chip *chip; 864 865 might_sleep(); 866 867 gpiod_unexport(desc); 868 869 spin_lock_irqsave(&gpio_lock, flags); 870 871 chip = desc->chip; 872 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) { 873 if (chip->free) { 874 spin_unlock_irqrestore(&gpio_lock, flags); 875 might_sleep_if(chip->can_sleep); 876 chip->free(chip, gpio_chip_hwgpio(desc)); 877 spin_lock_irqsave(&gpio_lock, flags); 878 } 879 desc_set_label(desc, NULL); 880 clear_bit(FLAG_ACTIVE_LOW, &desc->flags); 881 clear_bit(FLAG_REQUESTED, &desc->flags); 882 clear_bit(FLAG_OPEN_DRAIN, &desc->flags); 883 clear_bit(FLAG_OPEN_SOURCE, &desc->flags); 884 clear_bit(FLAG_IS_HOGGED, &desc->flags); 885 ret = true; 886 } 887 888 spin_unlock_irqrestore(&gpio_lock, flags); 889 return ret; 890 } 891 892 void gpiod_free(struct gpio_desc *desc) 893 { 894 if (desc && __gpiod_free(desc)) 895 module_put(desc->chip->owner); 896 else 897 WARN_ON(extra_checks); 898 } 899 900 /** 901 * gpiochip_is_requested - return string iff signal was requested 902 * @chip: controller managing the signal 903 * @offset: of signal within controller's 0..(ngpio - 1) range 904 * 905 * Returns NULL if the GPIO is not currently requested, else a string. 906 * The string returned is the label passed to gpio_request(); if none has been 907 * passed it is a meaningless, non-NULL constant. 908 * 909 * This function is for use by GPIO controller drivers. The label can 910 * help with diagnostics, and knowing that the signal is used as a GPIO 911 * can help avoid accidentally multiplexing it to another controller. 912 */ 913 const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset) 914 { 915 struct gpio_desc *desc; 916 917 if (!GPIO_OFFSET_VALID(chip, offset)) 918 return NULL; 919 920 desc = &chip->desc[offset]; 921 922 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0) 923 return NULL; 924 return desc->label; 925 } 926 EXPORT_SYMBOL_GPL(gpiochip_is_requested); 927 928 /** 929 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor 930 * @desc: GPIO descriptor to request 931 * @label: label for the GPIO 932 * 933 * Function allows GPIO chip drivers to request and use their own GPIO 934 * descriptors via gpiolib API. Difference to gpiod_request() is that this 935 * function will not increase reference count of the GPIO chip module. This 936 * allows the GPIO chip module to be unloaded as needed (we assume that the 937 * GPIO chip driver handles freeing the GPIOs it has requested). 938 */ 939 struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, 940 const char *label) 941 { 942 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum); 943 int err; 944 945 if (IS_ERR(desc)) { 946 chip_err(chip, "failed to get GPIO descriptor\n"); 947 return desc; 948 } 949 950 err = __gpiod_request(desc, label); 951 if (err < 0) 952 return ERR_PTR(err); 953 954 return desc; 955 } 956 EXPORT_SYMBOL_GPL(gpiochip_request_own_desc); 957 958 /** 959 * gpiochip_free_own_desc - Free GPIO requested by the chip driver 960 * @desc: GPIO descriptor to free 961 * 962 * Function frees the given GPIO requested previously with 963 * gpiochip_request_own_desc(). 964 */ 965 void gpiochip_free_own_desc(struct gpio_desc *desc) 966 { 967 if (desc) 968 __gpiod_free(desc); 969 } 970 EXPORT_SYMBOL_GPL(gpiochip_free_own_desc); 971 972 /* Drivers MUST set GPIO direction before making get/set calls. In 973 * some cases this is done in early boot, before IRQs are enabled. 974 * 975 * As a rule these aren't called more than once (except for drivers 976 * using the open-drain emulation idiom) so these are natural places 977 * to accumulate extra debugging checks. Note that we can't (yet) 978 * rely on gpio_request() having been called beforehand. 979 */ 980 981 /** 982 * gpiod_direction_input - set the GPIO direction to input 983 * @desc: GPIO to set to input 984 * 985 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can 986 * be called safely on it. 987 * 988 * Return 0 in case of success, else an error code. 989 */ 990 int gpiod_direction_input(struct gpio_desc *desc) 991 { 992 struct gpio_chip *chip; 993 int status = -EINVAL; 994 995 if (!desc || !desc->chip) { 996 pr_warn("%s: invalid GPIO\n", __func__); 997 return -EINVAL; 998 } 999 1000 chip = desc->chip; 1001 if (!chip->get || !chip->direction_input) { 1002 gpiod_warn(desc, 1003 "%s: missing get() or direction_input() operations\n", 1004 __func__); 1005 return -EIO; 1006 } 1007 1008 status = chip->direction_input(chip, gpio_chip_hwgpio(desc)); 1009 if (status == 0) 1010 clear_bit(FLAG_IS_OUT, &desc->flags); 1011 1012 trace_gpio_direction(desc_to_gpio(desc), 1, status); 1013 1014 return status; 1015 } 1016 EXPORT_SYMBOL_GPL(gpiod_direction_input); 1017 1018 static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value) 1019 { 1020 struct gpio_chip *chip; 1021 int status = -EINVAL; 1022 1023 /* GPIOs used for IRQs shall not be set as output */ 1024 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) { 1025 gpiod_err(desc, 1026 "%s: tried to set a GPIO tied to an IRQ as output\n", 1027 __func__); 1028 return -EIO; 1029 } 1030 1031 /* Open drain pin should not be driven to 1 */ 1032 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags)) 1033 return gpiod_direction_input(desc); 1034 1035 /* Open source pin should not be driven to 0 */ 1036 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags)) 1037 return gpiod_direction_input(desc); 1038 1039 chip = desc->chip; 1040 if (!chip->set || !chip->direction_output) { 1041 gpiod_warn(desc, 1042 "%s: missing set() or direction_output() operations\n", 1043 __func__); 1044 return -EIO; 1045 } 1046 1047 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value); 1048 if (status == 0) 1049 set_bit(FLAG_IS_OUT, &desc->flags); 1050 trace_gpio_value(desc_to_gpio(desc), 0, value); 1051 trace_gpio_direction(desc_to_gpio(desc), 0, status); 1052 return status; 1053 } 1054 1055 /** 1056 * gpiod_direction_output_raw - set the GPIO direction to output 1057 * @desc: GPIO to set to output 1058 * @value: initial output value of the GPIO 1059 * 1060 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can 1061 * be called safely on it. The initial value of the output must be specified 1062 * as raw value on the physical line without regard for the ACTIVE_LOW status. 1063 * 1064 * Return 0 in case of success, else an error code. 1065 */ 1066 int gpiod_direction_output_raw(struct gpio_desc *desc, int value) 1067 { 1068 if (!desc || !desc->chip) { 1069 pr_warn("%s: invalid GPIO\n", __func__); 1070 return -EINVAL; 1071 } 1072 return _gpiod_direction_output_raw(desc, value); 1073 } 1074 EXPORT_SYMBOL_GPL(gpiod_direction_output_raw); 1075 1076 /** 1077 * gpiod_direction_output - set the GPIO direction to output 1078 * @desc: GPIO to set to output 1079 * @value: initial output value of the GPIO 1080 * 1081 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can 1082 * be called safely on it. The initial value of the output must be specified 1083 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into 1084 * account. 1085 * 1086 * Return 0 in case of success, else an error code. 1087 */ 1088 int gpiod_direction_output(struct gpio_desc *desc, int value) 1089 { 1090 if (!desc || !desc->chip) { 1091 pr_warn("%s: invalid GPIO\n", __func__); 1092 return -EINVAL; 1093 } 1094 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) 1095 value = !value; 1096 return _gpiod_direction_output_raw(desc, value); 1097 } 1098 EXPORT_SYMBOL_GPL(gpiod_direction_output); 1099 1100 /** 1101 * gpiod_set_debounce - sets @debounce time for a @gpio 1102 * @gpio: the gpio to set debounce time 1103 * @debounce: debounce time is microseconds 1104 * 1105 * returns -ENOTSUPP if the controller does not support setting 1106 * debounce. 1107 */ 1108 int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce) 1109 { 1110 struct gpio_chip *chip; 1111 1112 if (!desc || !desc->chip) { 1113 pr_warn("%s: invalid GPIO\n", __func__); 1114 return -EINVAL; 1115 } 1116 1117 chip = desc->chip; 1118 if (!chip->set || !chip->set_debounce) { 1119 gpiod_dbg(desc, 1120 "%s: missing set() or set_debounce() operations\n", 1121 __func__); 1122 return -ENOTSUPP; 1123 } 1124 1125 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce); 1126 } 1127 EXPORT_SYMBOL_GPL(gpiod_set_debounce); 1128 1129 /** 1130 * gpiod_is_active_low - test whether a GPIO is active-low or not 1131 * @desc: the gpio descriptor to test 1132 * 1133 * Returns 1 if the GPIO is active-low, 0 otherwise. 1134 */ 1135 int gpiod_is_active_low(const struct gpio_desc *desc) 1136 { 1137 return test_bit(FLAG_ACTIVE_LOW, &desc->flags); 1138 } 1139 EXPORT_SYMBOL_GPL(gpiod_is_active_low); 1140 1141 /* I/O calls are only valid after configuration completed; the relevant 1142 * "is this a valid GPIO" error checks should already have been done. 1143 * 1144 * "Get" operations are often inlinable as reading a pin value register, 1145 * and masking the relevant bit in that register. 1146 * 1147 * When "set" operations are inlinable, they involve writing that mask to 1148 * one register to set a low value, or a different register to set it high. 1149 * Otherwise locking is needed, so there may be little value to inlining. 1150 * 1151 *------------------------------------------------------------------------ 1152 * 1153 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers 1154 * have requested the GPIO. That can include implicit requesting by 1155 * a direction setting call. Marking a gpio as requested locks its chip 1156 * in memory, guaranteeing that these table lookups need no more locking 1157 * and that gpiochip_remove() will fail. 1158 * 1159 * REVISIT when debugging, consider adding some instrumentation to ensure 1160 * that the GPIO was actually requested. 1161 */ 1162 1163 static bool _gpiod_get_raw_value(const struct gpio_desc *desc) 1164 { 1165 struct gpio_chip *chip; 1166 bool value; 1167 int offset; 1168 1169 chip = desc->chip; 1170 offset = gpio_chip_hwgpio(desc); 1171 value = chip->get ? chip->get(chip, offset) : false; 1172 trace_gpio_value(desc_to_gpio(desc), 1, value); 1173 return value; 1174 } 1175 1176 /** 1177 * gpiod_get_raw_value() - return a gpio's raw value 1178 * @desc: gpio whose value will be returned 1179 * 1180 * Return the GPIO's raw value, i.e. the value of the physical line disregarding 1181 * its ACTIVE_LOW status. 1182 * 1183 * This function should be called from contexts where we cannot sleep, and will 1184 * complain if the GPIO chip functions potentially sleep. 1185 */ 1186 int gpiod_get_raw_value(const struct gpio_desc *desc) 1187 { 1188 if (!desc) 1189 return 0; 1190 /* Should be using gpio_get_value_cansleep() */ 1191 WARN_ON(desc->chip->can_sleep); 1192 return _gpiod_get_raw_value(desc); 1193 } 1194 EXPORT_SYMBOL_GPL(gpiod_get_raw_value); 1195 1196 /** 1197 * gpiod_get_value() - return a gpio's value 1198 * @desc: gpio whose value will be returned 1199 * 1200 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into 1201 * account. 1202 * 1203 * This function should be called from contexts where we cannot sleep, and will 1204 * complain if the GPIO chip functions potentially sleep. 1205 */ 1206 int gpiod_get_value(const struct gpio_desc *desc) 1207 { 1208 int value; 1209 if (!desc) 1210 return 0; 1211 /* Should be using gpio_get_value_cansleep() */ 1212 WARN_ON(desc->chip->can_sleep); 1213 1214 value = _gpiod_get_raw_value(desc); 1215 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) 1216 value = !value; 1217 1218 return value; 1219 } 1220 EXPORT_SYMBOL_GPL(gpiod_get_value); 1221 1222 /* 1223 * _gpio_set_open_drain_value() - Set the open drain gpio's value. 1224 * @desc: gpio descriptor whose state need to be set. 1225 * @value: Non-zero for setting it HIGH otherwise it will set to LOW. 1226 */ 1227 static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value) 1228 { 1229 int err = 0; 1230 struct gpio_chip *chip = desc->chip; 1231 int offset = gpio_chip_hwgpio(desc); 1232 1233 if (value) { 1234 err = chip->direction_input(chip, offset); 1235 if (!err) 1236 clear_bit(FLAG_IS_OUT, &desc->flags); 1237 } else { 1238 err = chip->direction_output(chip, offset, 0); 1239 if (!err) 1240 set_bit(FLAG_IS_OUT, &desc->flags); 1241 } 1242 trace_gpio_direction(desc_to_gpio(desc), value, err); 1243 if (err < 0) 1244 gpiod_err(desc, 1245 "%s: Error in set_value for open drain err %d\n", 1246 __func__, err); 1247 } 1248 1249 /* 1250 * _gpio_set_open_source_value() - Set the open source gpio's value. 1251 * @desc: gpio descriptor whose state need to be set. 1252 * @value: Non-zero for setting it HIGH otherwise it will set to LOW. 1253 */ 1254 static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value) 1255 { 1256 int err = 0; 1257 struct gpio_chip *chip = desc->chip; 1258 int offset = gpio_chip_hwgpio(desc); 1259 1260 if (value) { 1261 err = chip->direction_output(chip, offset, 1); 1262 if (!err) 1263 set_bit(FLAG_IS_OUT, &desc->flags); 1264 } else { 1265 err = chip->direction_input(chip, offset); 1266 if (!err) 1267 clear_bit(FLAG_IS_OUT, &desc->flags); 1268 } 1269 trace_gpio_direction(desc_to_gpio(desc), !value, err); 1270 if (err < 0) 1271 gpiod_err(desc, 1272 "%s: Error in set_value for open source err %d\n", 1273 __func__, err); 1274 } 1275 1276 static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value) 1277 { 1278 struct gpio_chip *chip; 1279 1280 chip = desc->chip; 1281 trace_gpio_value(desc_to_gpio(desc), 0, value); 1282 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) 1283 _gpio_set_open_drain_value(desc, value); 1284 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) 1285 _gpio_set_open_source_value(desc, value); 1286 else 1287 chip->set(chip, gpio_chip_hwgpio(desc), value); 1288 } 1289 1290 /* 1291 * set multiple outputs on the same chip; 1292 * use the chip's set_multiple function if available; 1293 * otherwise set the outputs sequentially; 1294 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word 1295 * defines which outputs are to be changed 1296 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word 1297 * defines the values the outputs specified by mask are to be set to 1298 */ 1299 static void gpio_chip_set_multiple(struct gpio_chip *chip, 1300 unsigned long *mask, unsigned long *bits) 1301 { 1302 if (chip->set_multiple) { 1303 chip->set_multiple(chip, mask, bits); 1304 } else { 1305 int i; 1306 for (i = 0; i < chip->ngpio; i++) { 1307 if (mask[BIT_WORD(i)] == 0) { 1308 /* no more set bits in this mask word; 1309 * skip ahead to the next word */ 1310 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1; 1311 continue; 1312 } 1313 /* set outputs if the corresponding mask bit is set */ 1314 if (__test_and_clear_bit(i, mask)) 1315 chip->set(chip, i, test_bit(i, bits)); 1316 } 1317 } 1318 } 1319 1320 static void gpiod_set_array_value_priv(bool raw, bool can_sleep, 1321 unsigned int array_size, 1322 struct gpio_desc **desc_array, 1323 int *value_array) 1324 { 1325 int i = 0; 1326 1327 while (i < array_size) { 1328 struct gpio_chip *chip = desc_array[i]->chip; 1329 unsigned long mask[BITS_TO_LONGS(chip->ngpio)]; 1330 unsigned long bits[BITS_TO_LONGS(chip->ngpio)]; 1331 int count = 0; 1332 1333 if (!can_sleep) 1334 WARN_ON(chip->can_sleep); 1335 1336 memset(mask, 0, sizeof(mask)); 1337 do { 1338 struct gpio_desc *desc = desc_array[i]; 1339 int hwgpio = gpio_chip_hwgpio(desc); 1340 int value = value_array[i]; 1341 1342 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags)) 1343 value = !value; 1344 trace_gpio_value(desc_to_gpio(desc), 0, value); 1345 /* 1346 * collect all normal outputs belonging to the same chip 1347 * open drain and open source outputs are set individually 1348 */ 1349 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) { 1350 _gpio_set_open_drain_value(desc, value); 1351 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) { 1352 _gpio_set_open_source_value(desc, value); 1353 } else { 1354 __set_bit(hwgpio, mask); 1355 if (value) 1356 __set_bit(hwgpio, bits); 1357 else 1358 __clear_bit(hwgpio, bits); 1359 count++; 1360 } 1361 i++; 1362 } while ((i < array_size) && (desc_array[i]->chip == chip)); 1363 /* push collected bits to outputs */ 1364 if (count != 0) 1365 gpio_chip_set_multiple(chip, mask, bits); 1366 } 1367 } 1368 1369 /** 1370 * gpiod_set_raw_value() - assign a gpio's raw value 1371 * @desc: gpio whose value will be assigned 1372 * @value: value to assign 1373 * 1374 * Set the raw value of the GPIO, i.e. the value of its physical line without 1375 * regard for its ACTIVE_LOW status. 1376 * 1377 * This function should be called from contexts where we cannot sleep, and will 1378 * complain if the GPIO chip functions potentially sleep. 1379 */ 1380 void gpiod_set_raw_value(struct gpio_desc *desc, int value) 1381 { 1382 if (!desc) 1383 return; 1384 /* Should be using gpio_set_value_cansleep() */ 1385 WARN_ON(desc->chip->can_sleep); 1386 _gpiod_set_raw_value(desc, value); 1387 } 1388 EXPORT_SYMBOL_GPL(gpiod_set_raw_value); 1389 1390 /** 1391 * gpiod_set_value() - assign a gpio's value 1392 * @desc: gpio whose value will be assigned 1393 * @value: value to assign 1394 * 1395 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into 1396 * account 1397 * 1398 * This function should be called from contexts where we cannot sleep, and will 1399 * complain if the GPIO chip functions potentially sleep. 1400 */ 1401 void gpiod_set_value(struct gpio_desc *desc, int value) 1402 { 1403 if (!desc) 1404 return; 1405 /* Should be using gpio_set_value_cansleep() */ 1406 WARN_ON(desc->chip->can_sleep); 1407 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) 1408 value = !value; 1409 _gpiod_set_raw_value(desc, value); 1410 } 1411 EXPORT_SYMBOL_GPL(gpiod_set_value); 1412 1413 /** 1414 * gpiod_set_raw_array_value() - assign values to an array of GPIOs 1415 * @array_size: number of elements in the descriptor / value arrays 1416 * @desc_array: array of GPIO descriptors whose values will be assigned 1417 * @value_array: array of values to assign 1418 * 1419 * Set the raw values of the GPIOs, i.e. the values of the physical lines 1420 * without regard for their ACTIVE_LOW status. 1421 * 1422 * This function should be called from contexts where we cannot sleep, and will 1423 * complain if the GPIO chip functions potentially sleep. 1424 */ 1425 void gpiod_set_raw_array_value(unsigned int array_size, 1426 struct gpio_desc **desc_array, int *value_array) 1427 { 1428 if (!desc_array) 1429 return; 1430 gpiod_set_array_value_priv(true, false, array_size, desc_array, 1431 value_array); 1432 } 1433 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value); 1434 1435 /** 1436 * gpiod_set_array_value() - assign values to an array of GPIOs 1437 * @array_size: number of elements in the descriptor / value arrays 1438 * @desc_array: array of GPIO descriptors whose values will be assigned 1439 * @value_array: array of values to assign 1440 * 1441 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status 1442 * into account. 1443 * 1444 * This function should be called from contexts where we cannot sleep, and will 1445 * complain if the GPIO chip functions potentially sleep. 1446 */ 1447 void gpiod_set_array_value(unsigned int array_size, 1448 struct gpio_desc **desc_array, int *value_array) 1449 { 1450 if (!desc_array) 1451 return; 1452 gpiod_set_array_value_priv(false, false, array_size, desc_array, 1453 value_array); 1454 } 1455 EXPORT_SYMBOL_GPL(gpiod_set_array_value); 1456 1457 /** 1458 * gpiod_cansleep() - report whether gpio value access may sleep 1459 * @desc: gpio to check 1460 * 1461 */ 1462 int gpiod_cansleep(const struct gpio_desc *desc) 1463 { 1464 if (!desc) 1465 return 0; 1466 return desc->chip->can_sleep; 1467 } 1468 EXPORT_SYMBOL_GPL(gpiod_cansleep); 1469 1470 /** 1471 * gpiod_to_irq() - return the IRQ corresponding to a GPIO 1472 * @desc: gpio whose IRQ will be returned (already requested) 1473 * 1474 * Return the IRQ corresponding to the passed GPIO, or an error code in case of 1475 * error. 1476 */ 1477 int gpiod_to_irq(const struct gpio_desc *desc) 1478 { 1479 struct gpio_chip *chip; 1480 int offset; 1481 1482 if (!desc) 1483 return -EINVAL; 1484 chip = desc->chip; 1485 offset = gpio_chip_hwgpio(desc); 1486 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO; 1487 } 1488 EXPORT_SYMBOL_GPL(gpiod_to_irq); 1489 1490 /** 1491 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ 1492 * @chip: the chip the GPIO to lock belongs to 1493 * @offset: the offset of the GPIO to lock as IRQ 1494 * 1495 * This is used directly by GPIO drivers that want to lock down 1496 * a certain GPIO line to be used for IRQs. 1497 */ 1498 int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset) 1499 { 1500 if (offset >= chip->ngpio) 1501 return -EINVAL; 1502 1503 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) { 1504 chip_err(chip, 1505 "%s: tried to flag a GPIO set as output for IRQ\n", 1506 __func__); 1507 return -EIO; 1508 } 1509 1510 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags); 1511 return 0; 1512 } 1513 EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq); 1514 1515 /** 1516 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ 1517 * @chip: the chip the GPIO to lock belongs to 1518 * @offset: the offset of the GPIO to lock as IRQ 1519 * 1520 * This is used directly by GPIO drivers that want to indicate 1521 * that a certain GPIO is no longer used exclusively for IRQ. 1522 */ 1523 void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset) 1524 { 1525 if (offset >= chip->ngpio) 1526 return; 1527 1528 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags); 1529 } 1530 EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq); 1531 1532 /** 1533 * gpiod_get_raw_value_cansleep() - return a gpio's raw value 1534 * @desc: gpio whose value will be returned 1535 * 1536 * Return the GPIO's raw value, i.e. the value of the physical line disregarding 1537 * its ACTIVE_LOW status. 1538 * 1539 * This function is to be called from contexts that can sleep. 1540 */ 1541 int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc) 1542 { 1543 might_sleep_if(extra_checks); 1544 if (!desc) 1545 return 0; 1546 return _gpiod_get_raw_value(desc); 1547 } 1548 EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep); 1549 1550 /** 1551 * gpiod_get_value_cansleep() - return a gpio's value 1552 * @desc: gpio whose value will be returned 1553 * 1554 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into 1555 * account. 1556 * 1557 * This function is to be called from contexts that can sleep. 1558 */ 1559 int gpiod_get_value_cansleep(const struct gpio_desc *desc) 1560 { 1561 int value; 1562 1563 might_sleep_if(extra_checks); 1564 if (!desc) 1565 return 0; 1566 1567 value = _gpiod_get_raw_value(desc); 1568 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) 1569 value = !value; 1570 1571 return value; 1572 } 1573 EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep); 1574 1575 /** 1576 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value 1577 * @desc: gpio whose value will be assigned 1578 * @value: value to assign 1579 * 1580 * Set the raw value of the GPIO, i.e. the value of its physical line without 1581 * regard for its ACTIVE_LOW status. 1582 * 1583 * This function is to be called from contexts that can sleep. 1584 */ 1585 void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value) 1586 { 1587 might_sleep_if(extra_checks); 1588 if (!desc) 1589 return; 1590 _gpiod_set_raw_value(desc, value); 1591 } 1592 EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep); 1593 1594 /** 1595 * gpiod_set_value_cansleep() - assign a gpio's value 1596 * @desc: gpio whose value will be assigned 1597 * @value: value to assign 1598 * 1599 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into 1600 * account 1601 * 1602 * This function is to be called from contexts that can sleep. 1603 */ 1604 void gpiod_set_value_cansleep(struct gpio_desc *desc, int value) 1605 { 1606 might_sleep_if(extra_checks); 1607 if (!desc) 1608 return; 1609 1610 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) 1611 value = !value; 1612 _gpiod_set_raw_value(desc, value); 1613 } 1614 EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep); 1615 1616 /** 1617 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs 1618 * @array_size: number of elements in the descriptor / value arrays 1619 * @desc_array: array of GPIO descriptors whose values will be assigned 1620 * @value_array: array of values to assign 1621 * 1622 * Set the raw values of the GPIOs, i.e. the values of the physical lines 1623 * without regard for their ACTIVE_LOW status. 1624 * 1625 * This function is to be called from contexts that can sleep. 1626 */ 1627 void gpiod_set_raw_array_value_cansleep(unsigned int array_size, 1628 struct gpio_desc **desc_array, 1629 int *value_array) 1630 { 1631 might_sleep_if(extra_checks); 1632 if (!desc_array) 1633 return; 1634 gpiod_set_array_value_priv(true, true, array_size, desc_array, 1635 value_array); 1636 } 1637 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep); 1638 1639 /** 1640 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs 1641 * @array_size: number of elements in the descriptor / value arrays 1642 * @desc_array: array of GPIO descriptors whose values will be assigned 1643 * @value_array: array of values to assign 1644 * 1645 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status 1646 * into account. 1647 * 1648 * This function is to be called from contexts that can sleep. 1649 */ 1650 void gpiod_set_array_value_cansleep(unsigned int array_size, 1651 struct gpio_desc **desc_array, 1652 int *value_array) 1653 { 1654 might_sleep_if(extra_checks); 1655 if (!desc_array) 1656 return; 1657 gpiod_set_array_value_priv(false, true, array_size, desc_array, 1658 value_array); 1659 } 1660 EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep); 1661 1662 /** 1663 * gpiod_add_lookup_table() - register GPIO device consumers 1664 * @table: table of consumers to register 1665 */ 1666 void gpiod_add_lookup_table(struct gpiod_lookup_table *table) 1667 { 1668 mutex_lock(&gpio_lookup_lock); 1669 1670 list_add_tail(&table->list, &gpio_lookup_list); 1671 1672 mutex_unlock(&gpio_lookup_lock); 1673 } 1674 1675 /** 1676 * gpiod_remove_lookup_table() - unregister GPIO device consumers 1677 * @table: table of consumers to unregister 1678 */ 1679 void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) 1680 { 1681 mutex_lock(&gpio_lookup_lock); 1682 1683 list_del(&table->list); 1684 1685 mutex_unlock(&gpio_lookup_lock); 1686 } 1687 1688 static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id, 1689 unsigned int idx, 1690 enum gpio_lookup_flags *flags) 1691 { 1692 char prop_name[32]; /* 32 is max size of property name */ 1693 enum of_gpio_flags of_flags; 1694 struct gpio_desc *desc; 1695 unsigned int i; 1696 1697 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) { 1698 if (con_id) 1699 snprintf(prop_name, sizeof(prop_name), "%s-%s", con_id, 1700 gpio_suffixes[i]); 1701 else 1702 snprintf(prop_name, sizeof(prop_name), "%s", 1703 gpio_suffixes[i]); 1704 1705 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx, 1706 &of_flags); 1707 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER)) 1708 break; 1709 } 1710 1711 if (IS_ERR(desc)) 1712 return desc; 1713 1714 if (of_flags & OF_GPIO_ACTIVE_LOW) 1715 *flags |= GPIO_ACTIVE_LOW; 1716 1717 return desc; 1718 } 1719 1720 static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id, 1721 unsigned int idx, 1722 enum gpio_lookup_flags *flags) 1723 { 1724 struct acpi_device *adev = ACPI_COMPANION(dev); 1725 struct acpi_gpio_info info; 1726 struct gpio_desc *desc; 1727 char propname[32]; 1728 int i; 1729 1730 /* Try first from _DSD */ 1731 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) { 1732 if (con_id && strcmp(con_id, "gpios")) { 1733 snprintf(propname, sizeof(propname), "%s-%s", 1734 con_id, gpio_suffixes[i]); 1735 } else { 1736 snprintf(propname, sizeof(propname), "%s", 1737 gpio_suffixes[i]); 1738 } 1739 1740 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info); 1741 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER)) 1742 break; 1743 } 1744 1745 /* Then from plain _CRS GPIOs */ 1746 if (IS_ERR(desc)) { 1747 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info); 1748 if (IS_ERR(desc)) 1749 return desc; 1750 } 1751 1752 if (info.active_low) 1753 *flags |= GPIO_ACTIVE_LOW; 1754 1755 return desc; 1756 } 1757 1758 static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev) 1759 { 1760 const char *dev_id = dev ? dev_name(dev) : NULL; 1761 struct gpiod_lookup_table *table; 1762 1763 mutex_lock(&gpio_lookup_lock); 1764 1765 list_for_each_entry(table, &gpio_lookup_list, list) { 1766 if (table->dev_id && dev_id) { 1767 /* 1768 * Valid strings on both ends, must be identical to have 1769 * a match 1770 */ 1771 if (!strcmp(table->dev_id, dev_id)) 1772 goto found; 1773 } else { 1774 /* 1775 * One of the pointers is NULL, so both must be to have 1776 * a match 1777 */ 1778 if (dev_id == table->dev_id) 1779 goto found; 1780 } 1781 } 1782 table = NULL; 1783 1784 found: 1785 mutex_unlock(&gpio_lookup_lock); 1786 return table; 1787 } 1788 1789 static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id, 1790 unsigned int idx, 1791 enum gpio_lookup_flags *flags) 1792 { 1793 struct gpio_desc *desc = ERR_PTR(-ENOENT); 1794 struct gpiod_lookup_table *table; 1795 struct gpiod_lookup *p; 1796 1797 table = gpiod_find_lookup_table(dev); 1798 if (!table) 1799 return desc; 1800 1801 for (p = &table->table[0]; p->chip_label; p++) { 1802 struct gpio_chip *chip; 1803 1804 /* idx must always match exactly */ 1805 if (p->idx != idx) 1806 continue; 1807 1808 /* If the lookup entry has a con_id, require exact match */ 1809 if (p->con_id && (!con_id || strcmp(p->con_id, con_id))) 1810 continue; 1811 1812 chip = find_chip_by_name(p->chip_label); 1813 1814 if (!chip) { 1815 dev_err(dev, "cannot find GPIO chip %s\n", 1816 p->chip_label); 1817 return ERR_PTR(-ENODEV); 1818 } 1819 1820 if (chip->ngpio <= p->chip_hwnum) { 1821 dev_err(dev, 1822 "requested GPIO %d is out of range [0..%d] for chip %s\n", 1823 idx, chip->ngpio, chip->label); 1824 return ERR_PTR(-EINVAL); 1825 } 1826 1827 desc = gpiochip_get_desc(chip, p->chip_hwnum); 1828 *flags = p->flags; 1829 1830 return desc; 1831 } 1832 1833 return desc; 1834 } 1835 1836 static int dt_gpio_count(struct device *dev, const char *con_id) 1837 { 1838 int ret; 1839 char propname[32]; 1840 unsigned int i; 1841 1842 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) { 1843 if (con_id) 1844 snprintf(propname, sizeof(propname), "%s-%s", 1845 con_id, gpio_suffixes[i]); 1846 else 1847 snprintf(propname, sizeof(propname), "%s", 1848 gpio_suffixes[i]); 1849 1850 ret = of_gpio_named_count(dev->of_node, propname); 1851 if (ret >= 0) 1852 break; 1853 } 1854 return ret; 1855 } 1856 1857 static int platform_gpio_count(struct device *dev, const char *con_id) 1858 { 1859 struct gpiod_lookup_table *table; 1860 struct gpiod_lookup *p; 1861 unsigned int count = 0; 1862 1863 table = gpiod_find_lookup_table(dev); 1864 if (!table) 1865 return -ENOENT; 1866 1867 for (p = &table->table[0]; p->chip_label; p++) { 1868 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) || 1869 (!con_id && !p->con_id)) 1870 count++; 1871 } 1872 if (!count) 1873 return -ENOENT; 1874 1875 return count; 1876 } 1877 1878 /** 1879 * gpiod_count - return the number of GPIOs associated with a device / function 1880 * or -ENOENT if no GPIO has been assigned to the requested function 1881 * @dev: GPIO consumer, can be NULL for system-global GPIOs 1882 * @con_id: function within the GPIO consumer 1883 */ 1884 int gpiod_count(struct device *dev, const char *con_id) 1885 { 1886 int count = -ENOENT; 1887 1888 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) 1889 count = dt_gpio_count(dev, con_id); 1890 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) 1891 count = acpi_gpio_count(dev, con_id); 1892 1893 if (count < 0) 1894 count = platform_gpio_count(dev, con_id); 1895 1896 return count; 1897 } 1898 EXPORT_SYMBOL_GPL(gpiod_count); 1899 1900 /** 1901 * gpiod_get - obtain a GPIO for a given GPIO function 1902 * @dev: GPIO consumer, can be NULL for system-global GPIOs 1903 * @con_id: function within the GPIO consumer 1904 * @flags: optional GPIO initialization flags 1905 * 1906 * Return the GPIO descriptor corresponding to the function con_id of device 1907 * dev, -ENOENT if no GPIO has been assigned to the requested function, or 1908 * another IS_ERR() code if an error occurred while trying to acquire the GPIO. 1909 */ 1910 struct gpio_desc *__must_check __gpiod_get(struct device *dev, const char *con_id, 1911 enum gpiod_flags flags) 1912 { 1913 return gpiod_get_index(dev, con_id, 0, flags); 1914 } 1915 EXPORT_SYMBOL_GPL(__gpiod_get); 1916 1917 /** 1918 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function 1919 * @dev: GPIO consumer, can be NULL for system-global GPIOs 1920 * @con_id: function within the GPIO consumer 1921 * @flags: optional GPIO initialization flags 1922 * 1923 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to 1924 * the requested function it will return NULL. This is convenient for drivers 1925 * that need to handle optional GPIOs. 1926 */ 1927 struct gpio_desc *__must_check __gpiod_get_optional(struct device *dev, 1928 const char *con_id, 1929 enum gpiod_flags flags) 1930 { 1931 return gpiod_get_index_optional(dev, con_id, 0, flags); 1932 } 1933 EXPORT_SYMBOL_GPL(__gpiod_get_optional); 1934 1935 1936 /** 1937 * gpiod_configure_flags - helper function to configure a given GPIO 1938 * @desc: gpio whose value will be assigned 1939 * @con_id: function within the GPIO consumer 1940 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or 1941 * of_get_gpio_hog() 1942 * @dflags: gpiod_flags - optional GPIO initialization flags 1943 * 1944 * Return 0 on success, -ENOENT if no GPIO has been assigned to the 1945 * requested function and/or index, or another IS_ERR() code if an error 1946 * occurred while trying to acquire the GPIO. 1947 */ 1948 static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id, 1949 unsigned long lflags, enum gpiod_flags dflags) 1950 { 1951 int status; 1952 1953 if (lflags & GPIO_ACTIVE_LOW) 1954 set_bit(FLAG_ACTIVE_LOW, &desc->flags); 1955 if (lflags & GPIO_OPEN_DRAIN) 1956 set_bit(FLAG_OPEN_DRAIN, &desc->flags); 1957 if (lflags & GPIO_OPEN_SOURCE) 1958 set_bit(FLAG_OPEN_SOURCE, &desc->flags); 1959 1960 /* No particular flag request, return here... */ 1961 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) { 1962 pr_debug("no flags found for %s\n", con_id); 1963 return 0; 1964 } 1965 1966 /* Process flags */ 1967 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT) 1968 status = gpiod_direction_output(desc, 1969 dflags & GPIOD_FLAGS_BIT_DIR_VAL); 1970 else 1971 status = gpiod_direction_input(desc); 1972 1973 return status; 1974 } 1975 1976 /** 1977 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function 1978 * @dev: GPIO consumer, can be NULL for system-global GPIOs 1979 * @con_id: function within the GPIO consumer 1980 * @idx: index of the GPIO to obtain in the consumer 1981 * @flags: optional GPIO initialization flags 1982 * 1983 * This variant of gpiod_get() allows to access GPIOs other than the first 1984 * defined one for functions that define several GPIOs. 1985 * 1986 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the 1987 * requested function and/or index, or another IS_ERR() code if an error 1988 * occurred while trying to acquire the GPIO. 1989 */ 1990 struct gpio_desc *__must_check __gpiod_get_index(struct device *dev, 1991 const char *con_id, 1992 unsigned int idx, 1993 enum gpiod_flags flags) 1994 { 1995 struct gpio_desc *desc = NULL; 1996 int status; 1997 enum gpio_lookup_flags lookupflags = 0; 1998 1999 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id); 2000 2001 if (dev) { 2002 /* Using device tree? */ 2003 if (IS_ENABLED(CONFIG_OF) && dev->of_node) { 2004 dev_dbg(dev, "using device tree for GPIO lookup\n"); 2005 desc = of_find_gpio(dev, con_id, idx, &lookupflags); 2006 } else if (ACPI_COMPANION(dev)) { 2007 dev_dbg(dev, "using ACPI for GPIO lookup\n"); 2008 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags); 2009 } 2010 } 2011 2012 /* 2013 * Either we are not using DT or ACPI, or their lookup did not return 2014 * a result. In that case, use platform lookup as a fallback. 2015 */ 2016 if (!desc || desc == ERR_PTR(-ENOENT)) { 2017 dev_dbg(dev, "using lookup tables for GPIO lookup\n"); 2018 desc = gpiod_find(dev, con_id, idx, &lookupflags); 2019 } 2020 2021 if (IS_ERR(desc)) { 2022 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id); 2023 return desc; 2024 } 2025 2026 status = gpiod_request(desc, con_id); 2027 if (status < 0) 2028 return ERR_PTR(status); 2029 2030 status = gpiod_configure_flags(desc, con_id, lookupflags, flags); 2031 if (status < 0) { 2032 dev_dbg(dev, "setup of GPIO %s failed\n", con_id); 2033 gpiod_put(desc); 2034 return ERR_PTR(status); 2035 } 2036 2037 return desc; 2038 } 2039 EXPORT_SYMBOL_GPL(__gpiod_get_index); 2040 2041 /** 2042 * fwnode_get_named_gpiod - obtain a GPIO from firmware node 2043 * @fwnode: handle of the firmware node 2044 * @propname: name of the firmware property representing the GPIO 2045 * 2046 * This function can be used for drivers that get their configuration 2047 * from firmware. 2048 * 2049 * Function properly finds the corresponding GPIO using whatever is the 2050 * underlying firmware interface and then makes sure that the GPIO 2051 * descriptor is requested before it is returned to the caller. 2052 * 2053 * In case of error an ERR_PTR() is returned. 2054 */ 2055 struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode, 2056 const char *propname) 2057 { 2058 struct gpio_desc *desc = ERR_PTR(-ENODEV); 2059 bool active_low = false; 2060 int ret; 2061 2062 if (!fwnode) 2063 return ERR_PTR(-EINVAL); 2064 2065 if (is_of_node(fwnode)) { 2066 enum of_gpio_flags flags; 2067 2068 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0, 2069 &flags); 2070 if (!IS_ERR(desc)) 2071 active_low = flags & OF_GPIO_ACTIVE_LOW; 2072 } else if (is_acpi_node(fwnode)) { 2073 struct acpi_gpio_info info; 2074 2075 desc = acpi_get_gpiod_by_index(to_acpi_node(fwnode), propname, 0, 2076 &info); 2077 if (!IS_ERR(desc)) 2078 active_low = info.active_low; 2079 } 2080 2081 if (IS_ERR(desc)) 2082 return desc; 2083 2084 ret = gpiod_request(desc, NULL); 2085 if (ret) 2086 return ERR_PTR(ret); 2087 2088 /* Only value flag can be set from both DT and ACPI is active_low */ 2089 if (active_low) 2090 set_bit(FLAG_ACTIVE_LOW, &desc->flags); 2091 2092 return desc; 2093 } 2094 EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod); 2095 2096 /** 2097 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO 2098 * function 2099 * @dev: GPIO consumer, can be NULL for system-global GPIOs 2100 * @con_id: function within the GPIO consumer 2101 * @index: index of the GPIO to obtain in the consumer 2102 * @flags: optional GPIO initialization flags 2103 * 2104 * This is equivalent to gpiod_get_index(), except that when no GPIO with the 2105 * specified index was assigned to the requested function it will return NULL. 2106 * This is convenient for drivers that need to handle optional GPIOs. 2107 */ 2108 struct gpio_desc *__must_check __gpiod_get_index_optional(struct device *dev, 2109 const char *con_id, 2110 unsigned int index, 2111 enum gpiod_flags flags) 2112 { 2113 struct gpio_desc *desc; 2114 2115 desc = gpiod_get_index(dev, con_id, index, flags); 2116 if (IS_ERR(desc)) { 2117 if (PTR_ERR(desc) == -ENOENT) 2118 return NULL; 2119 } 2120 2121 return desc; 2122 } 2123 EXPORT_SYMBOL_GPL(__gpiod_get_index_optional); 2124 2125 /** 2126 * gpiod_hog - Hog the specified GPIO desc given the provided flags 2127 * @desc: gpio whose value will be assigned 2128 * @name: gpio line name 2129 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or 2130 * of_get_gpio_hog() 2131 * @dflags: gpiod_flags - optional GPIO initialization flags 2132 */ 2133 int gpiod_hog(struct gpio_desc *desc, const char *name, 2134 unsigned long lflags, enum gpiod_flags dflags) 2135 { 2136 struct gpio_chip *chip; 2137 struct gpio_desc *local_desc; 2138 int hwnum; 2139 int status; 2140 2141 chip = gpiod_to_chip(desc); 2142 hwnum = gpio_chip_hwgpio(desc); 2143 2144 local_desc = gpiochip_request_own_desc(chip, hwnum, name); 2145 if (IS_ERR(local_desc)) { 2146 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed\n", 2147 name, chip->label, hwnum); 2148 return PTR_ERR(local_desc); 2149 } 2150 2151 status = gpiod_configure_flags(desc, name, lflags, dflags); 2152 if (status < 0) { 2153 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed\n", 2154 name, chip->label, hwnum); 2155 gpiochip_free_own_desc(desc); 2156 return status; 2157 } 2158 2159 /* Mark GPIO as hogged so it can be identified and removed later */ 2160 set_bit(FLAG_IS_HOGGED, &desc->flags); 2161 2162 pr_info("GPIO line %d (%s) hogged as %s%s\n", 2163 desc_to_gpio(desc), name, 2164 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input", 2165 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? 2166 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":""); 2167 2168 return 0; 2169 } 2170 2171 /** 2172 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog 2173 * @chip: gpio chip to act on 2174 * 2175 * This is only used by of_gpiochip_remove to free hogged gpios 2176 */ 2177 static void gpiochip_free_hogs(struct gpio_chip *chip) 2178 { 2179 int id; 2180 2181 for (id = 0; id < chip->ngpio; id++) { 2182 if (test_bit(FLAG_IS_HOGGED, &chip->desc[id].flags)) 2183 gpiochip_free_own_desc(&chip->desc[id]); 2184 } 2185 } 2186 2187 /** 2188 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function 2189 * @dev: GPIO consumer, can be NULL for system-global GPIOs 2190 * @con_id: function within the GPIO consumer 2191 * @flags: optional GPIO initialization flags 2192 * 2193 * This function acquires all the GPIOs defined under a given function. 2194 * 2195 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if 2196 * no GPIO has been assigned to the requested function, or another IS_ERR() 2197 * code if an error occurred while trying to acquire the GPIOs. 2198 */ 2199 struct gpio_descs *__must_check gpiod_get_array(struct device *dev, 2200 const char *con_id, 2201 enum gpiod_flags flags) 2202 { 2203 struct gpio_desc *desc; 2204 struct gpio_descs *descs; 2205 int count; 2206 2207 count = gpiod_count(dev, con_id); 2208 if (count < 0) 2209 return ERR_PTR(count); 2210 2211 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count, 2212 GFP_KERNEL); 2213 if (!descs) 2214 return ERR_PTR(-ENOMEM); 2215 2216 for (descs->ndescs = 0; descs->ndescs < count; ) { 2217 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags); 2218 if (IS_ERR(desc)) { 2219 gpiod_put_array(descs); 2220 return ERR_CAST(desc); 2221 } 2222 descs->desc[descs->ndescs] = desc; 2223 descs->ndescs++; 2224 } 2225 return descs; 2226 } 2227 EXPORT_SYMBOL_GPL(gpiod_get_array); 2228 2229 /** 2230 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO 2231 * function 2232 * @dev: GPIO consumer, can be NULL for system-global GPIOs 2233 * @con_id: function within the GPIO consumer 2234 * @flags: optional GPIO initialization flags 2235 * 2236 * This is equivalent to gpiod_get_array(), except that when no GPIO was 2237 * assigned to the requested function it will return NULL. 2238 */ 2239 struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev, 2240 const char *con_id, 2241 enum gpiod_flags flags) 2242 { 2243 struct gpio_descs *descs; 2244 2245 descs = gpiod_get_array(dev, con_id, flags); 2246 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT)) 2247 return NULL; 2248 2249 return descs; 2250 } 2251 EXPORT_SYMBOL_GPL(gpiod_get_array_optional); 2252 2253 /** 2254 * gpiod_put - dispose of a GPIO descriptor 2255 * @desc: GPIO descriptor to dispose of 2256 * 2257 * No descriptor can be used after gpiod_put() has been called on it. 2258 */ 2259 void gpiod_put(struct gpio_desc *desc) 2260 { 2261 gpiod_free(desc); 2262 } 2263 EXPORT_SYMBOL_GPL(gpiod_put); 2264 2265 /** 2266 * gpiod_put_array - dispose of multiple GPIO descriptors 2267 * @descs: struct gpio_descs containing an array of descriptors 2268 */ 2269 void gpiod_put_array(struct gpio_descs *descs) 2270 { 2271 unsigned int i; 2272 2273 for (i = 0; i < descs->ndescs; i++) 2274 gpiod_put(descs->desc[i]); 2275 2276 kfree(descs); 2277 } 2278 EXPORT_SYMBOL_GPL(gpiod_put_array); 2279 2280 #ifdef CONFIG_DEBUG_FS 2281 2282 static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip) 2283 { 2284 unsigned i; 2285 unsigned gpio = chip->base; 2286 struct gpio_desc *gdesc = &chip->desc[0]; 2287 int is_out; 2288 int is_irq; 2289 2290 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) { 2291 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) 2292 continue; 2293 2294 gpiod_get_direction(gdesc); 2295 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags); 2296 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags); 2297 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s", 2298 gpio, gdesc->label, 2299 is_out ? "out" : "in ", 2300 chip->get 2301 ? (chip->get(chip, i) ? "hi" : "lo") 2302 : "? ", 2303 is_irq ? "IRQ" : " "); 2304 seq_printf(s, "\n"); 2305 } 2306 } 2307 2308 static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos) 2309 { 2310 unsigned long flags; 2311 struct gpio_chip *chip = NULL; 2312 loff_t index = *pos; 2313 2314 s->private = ""; 2315 2316 spin_lock_irqsave(&gpio_lock, flags); 2317 list_for_each_entry(chip, &gpio_chips, list) 2318 if (index-- == 0) { 2319 spin_unlock_irqrestore(&gpio_lock, flags); 2320 return chip; 2321 } 2322 spin_unlock_irqrestore(&gpio_lock, flags); 2323 2324 return NULL; 2325 } 2326 2327 static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos) 2328 { 2329 unsigned long flags; 2330 struct gpio_chip *chip = v; 2331 void *ret = NULL; 2332 2333 spin_lock_irqsave(&gpio_lock, flags); 2334 if (list_is_last(&chip->list, &gpio_chips)) 2335 ret = NULL; 2336 else 2337 ret = list_entry(chip->list.next, struct gpio_chip, list); 2338 spin_unlock_irqrestore(&gpio_lock, flags); 2339 2340 s->private = "\n"; 2341 ++*pos; 2342 2343 return ret; 2344 } 2345 2346 static void gpiolib_seq_stop(struct seq_file *s, void *v) 2347 { 2348 } 2349 2350 static int gpiolib_seq_show(struct seq_file *s, void *v) 2351 { 2352 struct gpio_chip *chip = v; 2353 struct device *dev; 2354 2355 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private, 2356 chip->base, chip->base + chip->ngpio - 1); 2357 dev = chip->dev; 2358 if (dev) 2359 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus", 2360 dev_name(dev)); 2361 if (chip->label) 2362 seq_printf(s, ", %s", chip->label); 2363 if (chip->can_sleep) 2364 seq_printf(s, ", can sleep"); 2365 seq_printf(s, ":\n"); 2366 2367 if (chip->dbg_show) 2368 chip->dbg_show(s, chip); 2369 else 2370 gpiolib_dbg_show(s, chip); 2371 2372 return 0; 2373 } 2374 2375 static const struct seq_operations gpiolib_seq_ops = { 2376 .start = gpiolib_seq_start, 2377 .next = gpiolib_seq_next, 2378 .stop = gpiolib_seq_stop, 2379 .show = gpiolib_seq_show, 2380 }; 2381 2382 static int gpiolib_open(struct inode *inode, struct file *file) 2383 { 2384 return seq_open(file, &gpiolib_seq_ops); 2385 } 2386 2387 static const struct file_operations gpiolib_operations = { 2388 .owner = THIS_MODULE, 2389 .open = gpiolib_open, 2390 .read = seq_read, 2391 .llseek = seq_lseek, 2392 .release = seq_release, 2393 }; 2394 2395 static int __init gpiolib_debugfs_init(void) 2396 { 2397 /* /sys/kernel/debug/gpio */ 2398 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO, 2399 NULL, NULL, &gpiolib_operations); 2400 return 0; 2401 } 2402 subsys_initcall(gpiolib_debugfs_init); 2403 2404 #endif /* DEBUG_FS */ 2405