Loading...
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#include <linux/pinctrl/consumer.h>
19#include <linux/idr.h>
20#include <linux/cdev.h>
21#include <linux/fs.h>
22#include <linux/uaccess.h>
23#include <uapi/linux/gpio.h>
24
25#include "gpiolib.h"
26
27#define CREATE_TRACE_POINTS
28#include <trace/events/gpio.h>
29
30/* Implementation infrastructure for GPIO interfaces.
31 *
32 * The GPIO programming interface allows for inlining speed-critical
33 * get/set operations for common cases, so that access to SOC-integrated
34 * GPIOs can sometimes cost only an instruction or two per bit.
35 */
36
37
38/* When debugging, extend minimal trust to callers and platform code.
39 * Also emit diagnostic messages that may help initial bringup, when
40 * board setup or driver bugs are most common.
41 *
42 * Otherwise, minimize overhead in what may be bitbanging codepaths.
43 */
44#ifdef DEBUG
45#define extra_checks 1
46#else
47#define extra_checks 0
48#endif
49
50/* Device and char device-related information */
51static DEFINE_IDA(gpio_ida);
52static dev_t gpio_devt;
53#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
54static struct bus_type gpio_bus_type = {
55 .name = "gpio",
56};
57
58/* gpio_lock prevents conflicts during gpio_desc[] table updates.
59 * While any GPIO is requested, its gpio_chip is not removable;
60 * each GPIO's "requested" flag serves as a lock and refcount.
61 */
62DEFINE_SPINLOCK(gpio_lock);
63
64static DEFINE_MUTEX(gpio_lookup_lock);
65static LIST_HEAD(gpio_lookup_list);
66LIST_HEAD(gpio_devices);
67
68static void gpiochip_free_hogs(struct gpio_chip *chip);
69static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
70
71static bool gpiolib_initialized;
72
73static inline void desc_set_label(struct gpio_desc *d, const char *label)
74{
75 d->label = label;
76}
77
78/**
79 * Convert a GPIO number to its descriptor
80 */
81struct gpio_desc *gpio_to_desc(unsigned gpio)
82{
83 struct gpio_device *gdev;
84 unsigned long flags;
85
86 spin_lock_irqsave(&gpio_lock, flags);
87
88 list_for_each_entry(gdev, &gpio_devices, list) {
89 if (gdev->base <= gpio &&
90 gdev->base + gdev->ngpio > gpio) {
91 spin_unlock_irqrestore(&gpio_lock, flags);
92 return &gdev->descs[gpio - gdev->base];
93 }
94 }
95
96 spin_unlock_irqrestore(&gpio_lock, flags);
97
98 if (!gpio_is_valid(gpio))
99 WARN(1, "invalid GPIO %d\n", gpio);
100
101 return NULL;
102}
103EXPORT_SYMBOL_GPL(gpio_to_desc);
104
105/**
106 * Get the GPIO descriptor corresponding to the given hw number for this chip.
107 */
108struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
109 u16 hwnum)
110{
111 struct gpio_device *gdev = chip->gpiodev;
112
113 if (hwnum >= gdev->ngpio)
114 return ERR_PTR(-EINVAL);
115
116 return &gdev->descs[hwnum];
117}
118
119/**
120 * Convert a GPIO descriptor to the integer namespace.
121 * This should disappear in the future but is needed since we still
122 * use GPIO numbers for error messages and sysfs nodes
123 */
124int desc_to_gpio(const struct gpio_desc *desc)
125{
126 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
127}
128EXPORT_SYMBOL_GPL(desc_to_gpio);
129
130
131/**
132 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
133 * @desc: descriptor to return the chip of
134 */
135struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
136{
137 if (!desc || !desc->gdev || !desc->gdev->chip)
138 return NULL;
139 return desc->gdev->chip;
140}
141EXPORT_SYMBOL_GPL(gpiod_to_chip);
142
143/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
144static int gpiochip_find_base(int ngpio)
145{
146 struct gpio_device *gdev;
147 int base = ARCH_NR_GPIOS - ngpio;
148
149 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
150 /* found a free space? */
151 if (gdev->base + gdev->ngpio <= base)
152 break;
153 else
154 /* nope, check the space right before the chip */
155 base = gdev->base - ngpio;
156 }
157
158 if (gpio_is_valid(base)) {
159 pr_debug("%s: found new base at %d\n", __func__, base);
160 return base;
161 } else {
162 pr_err("%s: cannot find free range\n", __func__);
163 return -ENOSPC;
164 }
165}
166
167/**
168 * gpiod_get_direction - return the current direction of a GPIO
169 * @desc: GPIO to get the direction of
170 *
171 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
172 *
173 * This function may sleep if gpiod_cansleep() is true.
174 */
175int gpiod_get_direction(struct gpio_desc *desc)
176{
177 struct gpio_chip *chip;
178 unsigned offset;
179 int status = -EINVAL;
180
181 chip = gpiod_to_chip(desc);
182 offset = gpio_chip_hwgpio(desc);
183
184 if (!chip->get_direction)
185 return status;
186
187 status = chip->get_direction(chip, offset);
188 if (status > 0) {
189 /* GPIOF_DIR_IN, or other positive */
190 status = 1;
191 clear_bit(FLAG_IS_OUT, &desc->flags);
192 }
193 if (status == 0) {
194 /* GPIOF_DIR_OUT */
195 set_bit(FLAG_IS_OUT, &desc->flags);
196 }
197 return status;
198}
199EXPORT_SYMBOL_GPL(gpiod_get_direction);
200
201/*
202 * Add a new chip to the global chips list, keeping the list of chips sorted
203 * by range(means [base, base + ngpio - 1]) order.
204 *
205 * Return -EBUSY if the new chip overlaps with some other chip's integer
206 * space.
207 */
208static int gpiodev_add_to_list(struct gpio_device *gdev)
209{
210 struct gpio_device *prev, *next;
211
212 if (list_empty(&gpio_devices)) {
213 /* initial entry in list */
214 list_add_tail(&gdev->list, &gpio_devices);
215 return 0;
216 }
217
218 next = list_entry(gpio_devices.next, struct gpio_device, list);
219 if (gdev->base + gdev->ngpio <= next->base) {
220 /* add before first entry */
221 list_add(&gdev->list, &gpio_devices);
222 return 0;
223 }
224
225 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
226 if (prev->base + prev->ngpio <= gdev->base) {
227 /* add behind last entry */
228 list_add_tail(&gdev->list, &gpio_devices);
229 return 0;
230 }
231
232 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
233 /* at the end of the list */
234 if (&next->list == &gpio_devices)
235 break;
236
237 /* add between prev and next */
238 if (prev->base + prev->ngpio <= gdev->base
239 && gdev->base + gdev->ngpio <= next->base) {
240 list_add(&gdev->list, &prev->list);
241 return 0;
242 }
243 }
244
245 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
246 return -EBUSY;
247}
248
249/**
250 * Convert a GPIO name to its descriptor
251 */
252static struct gpio_desc *gpio_name_to_desc(const char * const name)
253{
254 struct gpio_device *gdev;
255 unsigned long flags;
256
257 spin_lock_irqsave(&gpio_lock, flags);
258
259 list_for_each_entry(gdev, &gpio_devices, list) {
260 int i;
261
262 for (i = 0; i != gdev->ngpio; ++i) {
263 struct gpio_desc *desc = &gdev->descs[i];
264
265 if (!desc->name || !name)
266 continue;
267
268 if (!strcmp(desc->name, name)) {
269 spin_unlock_irqrestore(&gpio_lock, flags);
270 return desc;
271 }
272 }
273 }
274
275 spin_unlock_irqrestore(&gpio_lock, flags);
276
277 return NULL;
278}
279
280/*
281 * Takes the names from gc->names and checks if they are all unique. If they
282 * are, they are assigned to their gpio descriptors.
283 *
284 * Warning if one of the names is already used for a different GPIO.
285 */
286static int gpiochip_set_desc_names(struct gpio_chip *gc)
287{
288 struct gpio_device *gdev = gc->gpiodev;
289 int i;
290
291 if (!gc->names)
292 return 0;
293
294 /* First check all names if they are unique */
295 for (i = 0; i != gc->ngpio; ++i) {
296 struct gpio_desc *gpio;
297
298 gpio = gpio_name_to_desc(gc->names[i]);
299 if (gpio)
300 dev_warn(&gdev->dev,
301 "Detected name collision for GPIO name '%s'\n",
302 gc->names[i]);
303 }
304
305 /* Then add all names to the GPIO descriptors */
306 for (i = 0; i != gc->ngpio; ++i)
307 gdev->descs[i].name = gc->names[i];
308
309 return 0;
310}
311
312/**
313 * gpio_ioctl() - ioctl handler for the GPIO chardev
314 */
315static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
316{
317 struct gpio_device *gdev = filp->private_data;
318 struct gpio_chip *chip = gdev->chip;
319 int __user *ip = (int __user *)arg;
320
321 /* We fail any subsequent ioctl():s when the chip is gone */
322 if (!chip)
323 return -ENODEV;
324
325 /* Fill in the struct and pass to userspace */
326 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
327 struct gpiochip_info chipinfo;
328
329 strncpy(chipinfo.name, dev_name(&gdev->dev),
330 sizeof(chipinfo.name));
331 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
332 strncpy(chipinfo.label, gdev->label,
333 sizeof(chipinfo.label));
334 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
335 chipinfo.lines = gdev->ngpio;
336 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
337 return -EFAULT;
338 return 0;
339 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
340 struct gpioline_info lineinfo;
341 struct gpio_desc *desc;
342
343 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
344 return -EFAULT;
345 if (lineinfo.line_offset > gdev->ngpio)
346 return -EINVAL;
347
348 desc = &gdev->descs[lineinfo.line_offset];
349 if (desc->name) {
350 strncpy(lineinfo.name, desc->name,
351 sizeof(lineinfo.name));
352 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
353 } else {
354 lineinfo.name[0] = '\0';
355 }
356 if (desc->label) {
357 strncpy(lineinfo.consumer, desc->label,
358 sizeof(lineinfo.consumer));
359 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
360 } else {
361 lineinfo.consumer[0] = '\0';
362 }
363
364 /*
365 * Userspace only need to know that the kernel is using
366 * this GPIO so it can't use it.
367 */
368 lineinfo.flags = 0;
369 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
370 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
371 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
372 test_bit(FLAG_EXPORT, &desc->flags) ||
373 test_bit(FLAG_SYSFS, &desc->flags))
374 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
375 if (test_bit(FLAG_IS_OUT, &desc->flags))
376 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
377 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
378 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
379 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
380 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
381 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
382 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
383
384 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
385 return -EFAULT;
386 return 0;
387 }
388 return -EINVAL;
389}
390
391/**
392 * gpio_chrdev_open() - open the chardev for ioctl operations
393 * @inode: inode for this chardev
394 * @filp: file struct for storing private data
395 * Returns 0 on success
396 */
397static int gpio_chrdev_open(struct inode *inode, struct file *filp)
398{
399 struct gpio_device *gdev = container_of(inode->i_cdev,
400 struct gpio_device, chrdev);
401
402 /* Fail on open if the backing gpiochip is gone */
403 if (!gdev || !gdev->chip)
404 return -ENODEV;
405 get_device(&gdev->dev);
406 filp->private_data = gdev;
407 return 0;
408}
409
410/**
411 * gpio_chrdev_release() - close chardev after ioctl operations
412 * @inode: inode for this chardev
413 * @filp: file struct for storing private data
414 * Returns 0 on success
415 */
416static int gpio_chrdev_release(struct inode *inode, struct file *filp)
417{
418 struct gpio_device *gdev = container_of(inode->i_cdev,
419 struct gpio_device, chrdev);
420
421 if (!gdev)
422 return -ENODEV;
423 put_device(&gdev->dev);
424 return 0;
425}
426
427
428static const struct file_operations gpio_fileops = {
429 .release = gpio_chrdev_release,
430 .open = gpio_chrdev_open,
431 .owner = THIS_MODULE,
432 .llseek = noop_llseek,
433 .unlocked_ioctl = gpio_ioctl,
434 .compat_ioctl = gpio_ioctl,
435};
436
437static void gpiodevice_release(struct device *dev)
438{
439 struct gpio_device *gdev = dev_get_drvdata(dev);
440
441 cdev_del(&gdev->chrdev);
442 list_del(&gdev->list);
443 ida_simple_remove(&gpio_ida, gdev->id);
444 kfree(gdev->label);
445 kfree(gdev->descs);
446 kfree(gdev);
447}
448
449static int gpiochip_setup_dev(struct gpio_device *gdev)
450{
451 int status;
452
453 cdev_init(&gdev->chrdev, &gpio_fileops);
454 gdev->chrdev.owner = THIS_MODULE;
455 gdev->chrdev.kobj.parent = &gdev->dev.kobj;
456 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
457 status = cdev_add(&gdev->chrdev, gdev->dev.devt, 1);
458 if (status < 0)
459 chip_warn(gdev->chip, "failed to add char device %d:%d\n",
460 MAJOR(gpio_devt), gdev->id);
461 else
462 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
463 MAJOR(gpio_devt), gdev->id);
464 status = device_add(&gdev->dev);
465 if (status)
466 goto err_remove_chardev;
467
468 status = gpiochip_sysfs_register(gdev);
469 if (status)
470 goto err_remove_device;
471
472 /* From this point, the .release() function cleans up gpio_device */
473 gdev->dev.release = gpiodevice_release;
474 get_device(&gdev->dev);
475 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
476 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
477 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
478
479 return 0;
480
481err_remove_device:
482 device_del(&gdev->dev);
483err_remove_chardev:
484 cdev_del(&gdev->chrdev);
485 return status;
486}
487
488static void gpiochip_setup_devs(void)
489{
490 struct gpio_device *gdev;
491 int err;
492
493 list_for_each_entry(gdev, &gpio_devices, list) {
494 err = gpiochip_setup_dev(gdev);
495 if (err)
496 pr_err("%s: Failed to initialize gpio device (%d)\n",
497 dev_name(&gdev->dev), err);
498 }
499}
500
501/**
502 * gpiochip_add_data() - register a gpio_chip
503 * @chip: the chip to register, with chip->base initialized
504 * Context: potentially before irqs will work
505 *
506 * Returns a negative errno if the chip can't be registered, such as
507 * because the chip->base is invalid or already associated with a
508 * different chip. Otherwise it returns zero as a success code.
509 *
510 * When gpiochip_add_data() is called very early during boot, so that GPIOs
511 * can be freely used, the chip->parent device must be registered before
512 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
513 * for GPIOs will fail rudely.
514 *
515 * gpiochip_add_data() must only be called after gpiolib initialization,
516 * ie after core_initcall().
517 *
518 * If chip->base is negative, this requests dynamic assignment of
519 * a range of valid GPIOs.
520 */
521int gpiochip_add_data(struct gpio_chip *chip, void *data)
522{
523 unsigned long flags;
524 int status = 0;
525 unsigned i;
526 int base = chip->base;
527 struct gpio_device *gdev;
528
529 /*
530 * First: allocate and populate the internal stat container, and
531 * set up the struct device.
532 */
533 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
534 if (!gdev)
535 return -ENOMEM;
536 gdev->dev.bus = &gpio_bus_type;
537 gdev->chip = chip;
538 chip->gpiodev = gdev;
539 if (chip->parent) {
540 gdev->dev.parent = chip->parent;
541 gdev->dev.of_node = chip->parent->of_node;
542 } else {
543#ifdef CONFIG_OF_GPIO
544 /* If the gpiochip has an assigned OF node this takes precedence */
545 if (chip->of_node)
546 gdev->dev.of_node = chip->of_node;
547#endif
548 }
549 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
550 if (gdev->id < 0) {
551 status = gdev->id;
552 goto err_free_gdev;
553 }
554 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
555 device_initialize(&gdev->dev);
556 dev_set_drvdata(&gdev->dev, gdev);
557 if (chip->parent && chip->parent->driver)
558 gdev->owner = chip->parent->driver->owner;
559 else if (chip->owner)
560 /* TODO: remove chip->owner */
561 gdev->owner = chip->owner;
562 else
563 gdev->owner = THIS_MODULE;
564
565 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
566 if (!gdev->descs) {
567 status = -ENOMEM;
568 goto err_free_gdev;
569 }
570
571 if (chip->ngpio == 0) {
572 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
573 status = -EINVAL;
574 goto err_free_descs;
575 }
576
577 if (chip->label)
578 gdev->label = kstrdup(chip->label, GFP_KERNEL);
579 else
580 gdev->label = kstrdup("unknown", GFP_KERNEL);
581 if (!gdev->label) {
582 status = -ENOMEM;
583 goto err_free_descs;
584 }
585
586 gdev->ngpio = chip->ngpio;
587 gdev->data = data;
588
589 spin_lock_irqsave(&gpio_lock, flags);
590
591 /*
592 * TODO: this allocates a Linux GPIO number base in the global
593 * GPIO numberspace for this chip. In the long run we want to
594 * get *rid* of this numberspace and use only descriptors, but
595 * it may be a pipe dream. It will not happen before we get rid
596 * of the sysfs interface anyways.
597 */
598 if (base < 0) {
599 base = gpiochip_find_base(chip->ngpio);
600 if (base < 0) {
601 status = base;
602 spin_unlock_irqrestore(&gpio_lock, flags);
603 goto err_free_label;
604 }
605 /*
606 * TODO: it should not be necessary to reflect the assigned
607 * base outside of the GPIO subsystem. Go over drivers and
608 * see if anyone makes use of this, else drop this and assign
609 * a poison instead.
610 */
611 chip->base = base;
612 }
613 gdev->base = base;
614
615 status = gpiodev_add_to_list(gdev);
616 if (status) {
617 spin_unlock_irqrestore(&gpio_lock, flags);
618 goto err_free_label;
619 }
620
621 for (i = 0; i < chip->ngpio; i++) {
622 struct gpio_desc *desc = &gdev->descs[i];
623
624 desc->gdev = gdev;
625
626 /* REVISIT: most hardware initializes GPIOs as inputs (often
627 * with pullups enabled) so power usage is minimized. Linux
628 * code should set the gpio direction first thing; but until
629 * it does, and in case chip->get_direction is not set, we may
630 * expose the wrong direction in sysfs.
631 */
632 desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0;
633 }
634
635 spin_unlock_irqrestore(&gpio_lock, flags);
636
637#ifdef CONFIG_PINCTRL
638 INIT_LIST_HEAD(&gdev->pin_ranges);
639#endif
640
641 status = gpiochip_set_desc_names(chip);
642 if (status)
643 goto err_remove_from_list;
644
645 status = of_gpiochip_add(chip);
646 if (status)
647 goto err_remove_chip;
648
649 acpi_gpiochip_add(chip);
650
651 /*
652 * By first adding the chardev, and then adding the device,
653 * we get a device node entry in sysfs under
654 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
655 * coldplug of device nodes and other udev business.
656 * We can do this only if gpiolib has been initialized.
657 * Otherwise, defer until later.
658 */
659 if (gpiolib_initialized) {
660 status = gpiochip_setup_dev(gdev);
661 if (status)
662 goto err_remove_chip;
663 }
664 return 0;
665
666err_remove_chip:
667 acpi_gpiochip_remove(chip);
668 gpiochip_free_hogs(chip);
669 of_gpiochip_remove(chip);
670err_remove_from_list:
671 spin_lock_irqsave(&gpio_lock, flags);
672 list_del(&gdev->list);
673 spin_unlock_irqrestore(&gpio_lock, flags);
674err_free_label:
675 kfree(gdev->label);
676err_free_descs:
677 kfree(gdev->descs);
678err_free_gdev:
679 ida_simple_remove(&gpio_ida, gdev->id);
680 /* failures here can mean systems won't boot... */
681 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
682 gdev->base, gdev->base + gdev->ngpio - 1,
683 chip->label ? : "generic");
684 kfree(gdev);
685 return status;
686}
687EXPORT_SYMBOL_GPL(gpiochip_add_data);
688
689/**
690 * gpiochip_get_data() - get per-subdriver data for the chip
691 */
692void *gpiochip_get_data(struct gpio_chip *chip)
693{
694 return chip->gpiodev->data;
695}
696EXPORT_SYMBOL_GPL(gpiochip_get_data);
697
698/**
699 * gpiochip_remove() - unregister a gpio_chip
700 * @chip: the chip to unregister
701 *
702 * A gpio_chip with any GPIOs still requested may not be removed.
703 */
704void gpiochip_remove(struct gpio_chip *chip)
705{
706 struct gpio_device *gdev = chip->gpiodev;
707 struct gpio_desc *desc;
708 unsigned long flags;
709 unsigned i;
710 bool requested = false;
711
712 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
713 gpiochip_sysfs_unregister(gdev);
714 /* Numb the device, cancelling all outstanding operations */
715 gdev->chip = NULL;
716 gpiochip_irqchip_remove(chip);
717 acpi_gpiochip_remove(chip);
718 gpiochip_remove_pin_ranges(chip);
719 gpiochip_free_hogs(chip);
720 of_gpiochip_remove(chip);
721 /*
722 * We accept no more calls into the driver from this point, so
723 * NULL the driver data pointer
724 */
725 gdev->data = NULL;
726
727 spin_lock_irqsave(&gpio_lock, flags);
728 for (i = 0; i < gdev->ngpio; i++) {
729 desc = &gdev->descs[i];
730 if (test_bit(FLAG_REQUESTED, &desc->flags))
731 requested = true;
732 }
733 spin_unlock_irqrestore(&gpio_lock, flags);
734
735 if (requested)
736 dev_crit(&gdev->dev,
737 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
738
739 /*
740 * The gpiochip side puts its use of the device to rest here:
741 * if there are no userspace clients, the chardev and device will
742 * be removed, else it will be dangling until the last user is
743 * gone.
744 */
745 put_device(&gdev->dev);
746}
747EXPORT_SYMBOL_GPL(gpiochip_remove);
748
749static void devm_gpio_chip_release(struct device *dev, void *res)
750{
751 struct gpio_chip *chip = *(struct gpio_chip **)res;
752
753 gpiochip_remove(chip);
754}
755
756static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
757
758{
759 struct gpio_chip **r = res;
760
761 if (!r || !*r) {
762 WARN_ON(!r || !*r);
763 return 0;
764 }
765
766 return *r == data;
767}
768
769/**
770 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
771 * @dev: the device pointer on which irq_chip belongs to.
772 * @chip: the chip to register, with chip->base initialized
773 * Context: potentially before irqs will work
774 *
775 * Returns a negative errno if the chip can't be registered, such as
776 * because the chip->base is invalid or already associated with a
777 * different chip. Otherwise it returns zero as a success code.
778 *
779 * The gpio chip automatically be released when the device is unbound.
780 */
781int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
782 void *data)
783{
784 struct gpio_chip **ptr;
785 int ret;
786
787 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
788 GFP_KERNEL);
789 if (!ptr)
790 return -ENOMEM;
791
792 ret = gpiochip_add_data(chip, data);
793 if (ret < 0) {
794 devres_free(ptr);
795 return ret;
796 }
797
798 *ptr = chip;
799 devres_add(dev, ptr);
800
801 return 0;
802}
803EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
804
805/**
806 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
807 * @dev: device for which which resource was allocated
808 * @chip: the chip to remove
809 *
810 * A gpio_chip with any GPIOs still requested may not be removed.
811 */
812void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
813{
814 int ret;
815
816 ret = devres_release(dev, devm_gpio_chip_release,
817 devm_gpio_chip_match, chip);
818 if (!ret)
819 WARN_ON(ret);
820}
821EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
822
823/**
824 * gpiochip_find() - iterator for locating a specific gpio_chip
825 * @data: data to pass to match function
826 * @callback: Callback function to check gpio_chip
827 *
828 * Similar to bus_find_device. It returns a reference to a gpio_chip as
829 * determined by a user supplied @match callback. The callback should return
830 * 0 if the device doesn't match and non-zero if it does. If the callback is
831 * non-zero, this function will return to the caller and not iterate over any
832 * more gpio_chips.
833 */
834struct gpio_chip *gpiochip_find(void *data,
835 int (*match)(struct gpio_chip *chip,
836 void *data))
837{
838 struct gpio_device *gdev;
839 struct gpio_chip *chip;
840 unsigned long flags;
841
842 spin_lock_irqsave(&gpio_lock, flags);
843 list_for_each_entry(gdev, &gpio_devices, list)
844 if (match(gdev->chip, data))
845 break;
846
847 /* No match? */
848 if (&gdev->list == &gpio_devices)
849 chip = NULL;
850 else
851 chip = gdev->chip;
852
853 spin_unlock_irqrestore(&gpio_lock, flags);
854
855 return chip;
856}
857EXPORT_SYMBOL_GPL(gpiochip_find);
858
859static int gpiochip_match_name(struct gpio_chip *chip, void *data)
860{
861 const char *name = data;
862
863 return !strcmp(chip->label, name);
864}
865
866static struct gpio_chip *find_chip_by_name(const char *name)
867{
868 return gpiochip_find((void *)name, gpiochip_match_name);
869}
870
871#ifdef CONFIG_GPIOLIB_IRQCHIP
872
873/*
874 * The following is irqchip helper code for gpiochips.
875 */
876
877/**
878 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
879 * @gpiochip: the gpiochip to set the irqchip chain to
880 * @irqchip: the irqchip to chain to the gpiochip
881 * @parent_irq: the irq number corresponding to the parent IRQ for this
882 * chained irqchip
883 * @parent_handler: the parent interrupt handler for the accumulated IRQ
884 * coming out of the gpiochip. If the interrupt is nested rather than
885 * cascaded, pass NULL in this handler argument
886 */
887void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
888 struct irq_chip *irqchip,
889 int parent_irq,
890 irq_flow_handler_t parent_handler)
891{
892 unsigned int offset;
893
894 if (!gpiochip->irqdomain) {
895 chip_err(gpiochip, "called %s before setting up irqchip\n",
896 __func__);
897 return;
898 }
899
900 if (parent_handler) {
901 if (gpiochip->can_sleep) {
902 chip_err(gpiochip,
903 "you cannot have chained interrupts on a "
904 "chip that may sleep\n");
905 return;
906 }
907 /*
908 * The parent irqchip is already using the chip_data for this
909 * irqchip, so our callbacks simply use the handler_data.
910 */
911 irq_set_chained_handler_and_data(parent_irq, parent_handler,
912 gpiochip);
913
914 gpiochip->irq_parent = parent_irq;
915 }
916
917 /* Set the parent IRQ for all affected IRQs */
918 for (offset = 0; offset < gpiochip->ngpio; offset++)
919 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
920 parent_irq);
921}
922EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
923
924/**
925 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
926 * @d: the irqdomain used by this irqchip
927 * @irq: the global irq number used by this GPIO irqchip irq
928 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
929 *
930 * This function will set up the mapping for a certain IRQ line on a
931 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
932 * stored inside the gpiochip.
933 */
934static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
935 irq_hw_number_t hwirq)
936{
937 struct gpio_chip *chip = d->host_data;
938
939 irq_set_chip_data(irq, chip);
940 /*
941 * This lock class tells lockdep that GPIO irqs are in a different
942 * category than their parents, so it won't report false recursion.
943 */
944 irq_set_lockdep_class(irq, chip->lock_key);
945 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
946 /* Chips that can sleep need nested thread handlers */
947 if (chip->can_sleep && !chip->irq_not_threaded)
948 irq_set_nested_thread(irq, 1);
949 irq_set_noprobe(irq);
950
951 /*
952 * No set-up of the hardware will happen if IRQ_TYPE_NONE
953 * is passed as default type.
954 */
955 if (chip->irq_default_type != IRQ_TYPE_NONE)
956 irq_set_irq_type(irq, chip->irq_default_type);
957
958 return 0;
959}
960
961static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
962{
963 struct gpio_chip *chip = d->host_data;
964
965 if (chip->can_sleep)
966 irq_set_nested_thread(irq, 0);
967 irq_set_chip_and_handler(irq, NULL, NULL);
968 irq_set_chip_data(irq, NULL);
969}
970
971static const struct irq_domain_ops gpiochip_domain_ops = {
972 .map = gpiochip_irq_map,
973 .unmap = gpiochip_irq_unmap,
974 /* Virtually all GPIO irqchips are twocell:ed */
975 .xlate = irq_domain_xlate_twocell,
976};
977
978static int gpiochip_irq_reqres(struct irq_data *d)
979{
980 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
981
982 if (!try_module_get(chip->gpiodev->owner))
983 return -ENODEV;
984
985 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
986 chip_err(chip,
987 "unable to lock HW IRQ %lu for IRQ\n",
988 d->hwirq);
989 module_put(chip->gpiodev->owner);
990 return -EINVAL;
991 }
992 return 0;
993}
994
995static void gpiochip_irq_relres(struct irq_data *d)
996{
997 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
998
999 gpiochip_unlock_as_irq(chip, d->hwirq);
1000 module_put(chip->gpiodev->owner);
1001}
1002
1003static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1004{
1005 return irq_find_mapping(chip->irqdomain, offset);
1006}
1007
1008/**
1009 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1010 * @gpiochip: the gpiochip to remove the irqchip from
1011 *
1012 * This is called only from gpiochip_remove()
1013 */
1014static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1015{
1016 unsigned int offset;
1017
1018 acpi_gpiochip_free_interrupts(gpiochip);
1019
1020 if (gpiochip->irq_parent) {
1021 irq_set_chained_handler(gpiochip->irq_parent, NULL);
1022 irq_set_handler_data(gpiochip->irq_parent, NULL);
1023 }
1024
1025 /* Remove all IRQ mappings and delete the domain */
1026 if (gpiochip->irqdomain) {
1027 for (offset = 0; offset < gpiochip->ngpio; offset++)
1028 irq_dispose_mapping(
1029 irq_find_mapping(gpiochip->irqdomain, offset));
1030 irq_domain_remove(gpiochip->irqdomain);
1031 }
1032
1033 if (gpiochip->irqchip) {
1034 gpiochip->irqchip->irq_request_resources = NULL;
1035 gpiochip->irqchip->irq_release_resources = NULL;
1036 gpiochip->irqchip = NULL;
1037 }
1038}
1039
1040/**
1041 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
1042 * @gpiochip: the gpiochip to add the irqchip to
1043 * @irqchip: the irqchip to add to the gpiochip
1044 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1045 * allocate gpiochip irqs from
1046 * @handler: the irq handler to use (often a predefined irq core function)
1047 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1048 * to have the core avoid setting up any default type in the hardware.
1049 * @lock_key: lockdep class
1050 *
1051 * This function closely associates a certain irqchip with a certain
1052 * gpiochip, providing an irq domain to translate the local IRQs to
1053 * global irqs in the gpiolib core, and making sure that the gpiochip
1054 * is passed as chip data to all related functions. Driver callbacks
1055 * need to use gpiochip_get_data() to get their local state containers back
1056 * from the gpiochip passed as chip data. An irqdomain will be stored
1057 * in the gpiochip that shall be used by the driver to handle IRQ number
1058 * translation. The gpiochip will need to be initialized and registered
1059 * before calling this function.
1060 *
1061 * This function will handle two cell:ed simple IRQs and assumes all
1062 * the pins on the gpiochip can generate a unique IRQ. Everything else
1063 * need to be open coded.
1064 */
1065int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
1066 struct irq_chip *irqchip,
1067 unsigned int first_irq,
1068 irq_flow_handler_t handler,
1069 unsigned int type,
1070 struct lock_class_key *lock_key)
1071{
1072 struct device_node *of_node;
1073 unsigned int offset;
1074 unsigned irq_base = 0;
1075
1076 if (!gpiochip || !irqchip)
1077 return -EINVAL;
1078
1079 if (!gpiochip->parent) {
1080 pr_err("missing gpiochip .dev parent pointer\n");
1081 return -EINVAL;
1082 }
1083 of_node = gpiochip->parent->of_node;
1084#ifdef CONFIG_OF_GPIO
1085 /*
1086 * If the gpiochip has an assigned OF node this takes precedence
1087 * FIXME: get rid of this and use gpiochip->parent->of_node
1088 * everywhere
1089 */
1090 if (gpiochip->of_node)
1091 of_node = gpiochip->of_node;
1092#endif
1093 gpiochip->irqchip = irqchip;
1094 gpiochip->irq_handler = handler;
1095 gpiochip->irq_default_type = type;
1096 gpiochip->to_irq = gpiochip_to_irq;
1097 gpiochip->lock_key = lock_key;
1098 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1099 gpiochip->ngpio, first_irq,
1100 &gpiochip_domain_ops, gpiochip);
1101 if (!gpiochip->irqdomain) {
1102 gpiochip->irqchip = NULL;
1103 return -EINVAL;
1104 }
1105
1106 /*
1107 * It is possible for a driver to override this, but only if the
1108 * alternative functions are both implemented.
1109 */
1110 if (!irqchip->irq_request_resources &&
1111 !irqchip->irq_release_resources) {
1112 irqchip->irq_request_resources = gpiochip_irq_reqres;
1113 irqchip->irq_release_resources = gpiochip_irq_relres;
1114 }
1115
1116 /*
1117 * Prepare the mapping since the irqchip shall be orthogonal to
1118 * any gpiochip calls. If the first_irq was zero, this is
1119 * necessary to allocate descriptors for all IRQs.
1120 */
1121 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1122 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
1123 if (offset == 0)
1124 /*
1125 * Store the base into the gpiochip to be used when
1126 * unmapping the irqs.
1127 */
1128 gpiochip->irq_base = irq_base;
1129 }
1130
1131 acpi_gpiochip_request_interrupts(gpiochip);
1132
1133 return 0;
1134}
1135EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add);
1136
1137#else /* CONFIG_GPIOLIB_IRQCHIP */
1138
1139static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
1140
1141#endif /* CONFIG_GPIOLIB_IRQCHIP */
1142
1143/**
1144 * gpiochip_generic_request() - request the gpio function for a pin
1145 * @chip: the gpiochip owning the GPIO
1146 * @offset: the offset of the GPIO to request for GPIO function
1147 */
1148int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1149{
1150 return pinctrl_request_gpio(chip->gpiodev->base + offset);
1151}
1152EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1153
1154/**
1155 * gpiochip_generic_free() - free the gpio function from a pin
1156 * @chip: the gpiochip to request the gpio function for
1157 * @offset: the offset of the GPIO to free from GPIO function
1158 */
1159void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1160{
1161 pinctrl_free_gpio(chip->gpiodev->base + offset);
1162}
1163EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1164
1165#ifdef CONFIG_PINCTRL
1166
1167/**
1168 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1169 * @chip: the gpiochip to add the range for
1170 * @pctldev: the pin controller to map to
1171 * @gpio_offset: the start offset in the current gpio_chip number space
1172 * @pin_group: name of the pin group inside the pin controller
1173 */
1174int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1175 struct pinctrl_dev *pctldev,
1176 unsigned int gpio_offset, const char *pin_group)
1177{
1178 struct gpio_pin_range *pin_range;
1179 struct gpio_device *gdev = chip->gpiodev;
1180 int ret;
1181
1182 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1183 if (!pin_range) {
1184 chip_err(chip, "failed to allocate pin ranges\n");
1185 return -ENOMEM;
1186 }
1187
1188 /* Use local offset as range ID */
1189 pin_range->range.id = gpio_offset;
1190 pin_range->range.gc = chip;
1191 pin_range->range.name = chip->label;
1192 pin_range->range.base = gdev->base + gpio_offset;
1193 pin_range->pctldev = pctldev;
1194
1195 ret = pinctrl_get_group_pins(pctldev, pin_group,
1196 &pin_range->range.pins,
1197 &pin_range->range.npins);
1198 if (ret < 0) {
1199 kfree(pin_range);
1200 return ret;
1201 }
1202
1203 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1204
1205 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1206 gpio_offset, gpio_offset + pin_range->range.npins - 1,
1207 pinctrl_dev_get_devname(pctldev), pin_group);
1208
1209 list_add_tail(&pin_range->node, &gdev->pin_ranges);
1210
1211 return 0;
1212}
1213EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1214
1215/**
1216 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1217 * @chip: the gpiochip to add the range for
1218 * @pinctrl_name: the dev_name() of the pin controller to map to
1219 * @gpio_offset: the start offset in the current gpio_chip number space
1220 * @pin_offset: the start offset in the pin controller number space
1221 * @npins: the number of pins from the offset of each pin space (GPIO and
1222 * pin controller) to accumulate in this range
1223 */
1224int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
1225 unsigned int gpio_offset, unsigned int pin_offset,
1226 unsigned int npins)
1227{
1228 struct gpio_pin_range *pin_range;
1229 struct gpio_device *gdev = chip->gpiodev;
1230 int ret;
1231
1232 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1233 if (!pin_range) {
1234 chip_err(chip, "failed to allocate pin ranges\n");
1235 return -ENOMEM;
1236 }
1237
1238 /* Use local offset as range ID */
1239 pin_range->range.id = gpio_offset;
1240 pin_range->range.gc = chip;
1241 pin_range->range.name = chip->label;
1242 pin_range->range.base = gdev->base + gpio_offset;
1243 pin_range->range.pin_base = pin_offset;
1244 pin_range->range.npins = npins;
1245 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
1246 &pin_range->range);
1247 if (IS_ERR(pin_range->pctldev)) {
1248 ret = PTR_ERR(pin_range->pctldev);
1249 chip_err(chip, "could not create pin range\n");
1250 kfree(pin_range);
1251 return ret;
1252 }
1253 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1254 gpio_offset, gpio_offset + npins - 1,
1255 pinctl_name,
1256 pin_offset, pin_offset + npins - 1);
1257
1258 list_add_tail(&pin_range->node, &gdev->pin_ranges);
1259
1260 return 0;
1261}
1262EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
1263
1264/**
1265 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1266 * @chip: the chip to remove all the mappings for
1267 */
1268void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1269{
1270 struct gpio_pin_range *pin_range, *tmp;
1271 struct gpio_device *gdev = chip->gpiodev;
1272
1273 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
1274 list_del(&pin_range->node);
1275 pinctrl_remove_gpio_range(pin_range->pctldev,
1276 &pin_range->range);
1277 kfree(pin_range);
1278 }
1279}
1280EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1281
1282#endif /* CONFIG_PINCTRL */
1283
1284/* These "optional" allocation calls help prevent drivers from stomping
1285 * on each other, and help provide better diagnostics in debugfs.
1286 * They're called even less than the "set direction" calls.
1287 */
1288static int __gpiod_request(struct gpio_desc *desc, const char *label)
1289{
1290 struct gpio_chip *chip = desc->gdev->chip;
1291 int status;
1292 unsigned long flags;
1293
1294 spin_lock_irqsave(&gpio_lock, flags);
1295
1296 /* NOTE: gpio_request() can be called in early boot,
1297 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
1298 */
1299
1300 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
1301 desc_set_label(desc, label ? : "?");
1302 status = 0;
1303 } else {
1304 status = -EBUSY;
1305 goto done;
1306 }
1307
1308 if (chip->request) {
1309 /* chip->request may sleep */
1310 spin_unlock_irqrestore(&gpio_lock, flags);
1311 status = chip->request(chip, gpio_chip_hwgpio(desc));
1312 spin_lock_irqsave(&gpio_lock, flags);
1313
1314 if (status < 0) {
1315 desc_set_label(desc, NULL);
1316 clear_bit(FLAG_REQUESTED, &desc->flags);
1317 goto done;
1318 }
1319 }
1320 if (chip->get_direction) {
1321 /* chip->get_direction may sleep */
1322 spin_unlock_irqrestore(&gpio_lock, flags);
1323 gpiod_get_direction(desc);
1324 spin_lock_irqsave(&gpio_lock, flags);
1325 }
1326done:
1327 if (status < 0) {
1328 /* Clear flags that might have been set by the caller before
1329 * requesting the GPIO.
1330 */
1331 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
1332 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
1333 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
1334 }
1335 spin_unlock_irqrestore(&gpio_lock, flags);
1336 return status;
1337}
1338
1339/*
1340 * This descriptor validation needs to be inserted verbatim into each
1341 * function taking a descriptor, so we need to use a preprocessor
1342 * macro to avoid endless duplication.
1343 */
1344#define VALIDATE_DESC(desc) do { \
1345 if (!desc || !desc->gdev) { \
1346 pr_warn("%s: invalid GPIO\n", __func__); \
1347 return -EINVAL; \
1348 } \
1349 if ( !desc->gdev->chip ) { \
1350 dev_warn(&desc->gdev->dev, \
1351 "%s: backing chip is gone\n", __func__); \
1352 return 0; \
1353 } } while (0)
1354
1355#define VALIDATE_DESC_VOID(desc) do { \
1356 if (!desc || !desc->gdev) { \
1357 pr_warn("%s: invalid GPIO\n", __func__); \
1358 return; \
1359 } \
1360 if (!desc->gdev->chip) { \
1361 dev_warn(&desc->gdev->dev, \
1362 "%s: backing chip is gone\n", __func__); \
1363 return; \
1364 } } while (0)
1365
1366
1367int gpiod_request(struct gpio_desc *desc, const char *label)
1368{
1369 int status = -EPROBE_DEFER;
1370 struct gpio_device *gdev;
1371
1372 VALIDATE_DESC(desc);
1373 gdev = desc->gdev;
1374
1375 if (try_module_get(gdev->owner)) {
1376 status = __gpiod_request(desc, label);
1377 if (status < 0)
1378 module_put(gdev->owner);
1379 else
1380 get_device(&gdev->dev);
1381 }
1382
1383 if (status)
1384 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
1385
1386 return status;
1387}
1388
1389static bool __gpiod_free(struct gpio_desc *desc)
1390{
1391 bool ret = false;
1392 unsigned long flags;
1393 struct gpio_chip *chip;
1394
1395 might_sleep();
1396
1397 gpiod_unexport(desc);
1398
1399 spin_lock_irqsave(&gpio_lock, flags);
1400
1401 chip = desc->gdev->chip;
1402 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
1403 if (chip->free) {
1404 spin_unlock_irqrestore(&gpio_lock, flags);
1405 might_sleep_if(chip->can_sleep);
1406 chip->free(chip, gpio_chip_hwgpio(desc));
1407 spin_lock_irqsave(&gpio_lock, flags);
1408 }
1409 desc_set_label(desc, NULL);
1410 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
1411 clear_bit(FLAG_REQUESTED, &desc->flags);
1412 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
1413 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
1414 clear_bit(FLAG_IS_HOGGED, &desc->flags);
1415 ret = true;
1416 }
1417
1418 spin_unlock_irqrestore(&gpio_lock, flags);
1419 return ret;
1420}
1421
1422void gpiod_free(struct gpio_desc *desc)
1423{
1424 if (desc && desc->gdev && __gpiod_free(desc)) {
1425 module_put(desc->gdev->owner);
1426 put_device(&desc->gdev->dev);
1427 } else {
1428 WARN_ON(extra_checks);
1429 }
1430}
1431
1432/**
1433 * gpiochip_is_requested - return string iff signal was requested
1434 * @chip: controller managing the signal
1435 * @offset: of signal within controller's 0..(ngpio - 1) range
1436 *
1437 * Returns NULL if the GPIO is not currently requested, else a string.
1438 * The string returned is the label passed to gpio_request(); if none has been
1439 * passed it is a meaningless, non-NULL constant.
1440 *
1441 * This function is for use by GPIO controller drivers. The label can
1442 * help with diagnostics, and knowing that the signal is used as a GPIO
1443 * can help avoid accidentally multiplexing it to another controller.
1444 */
1445const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
1446{
1447 struct gpio_desc *desc;
1448
1449 if (offset >= chip->ngpio)
1450 return NULL;
1451
1452 desc = &chip->gpiodev->descs[offset];
1453
1454 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
1455 return NULL;
1456 return desc->label;
1457}
1458EXPORT_SYMBOL_GPL(gpiochip_is_requested);
1459
1460/**
1461 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
1462 * @desc: GPIO descriptor to request
1463 * @label: label for the GPIO
1464 *
1465 * Function allows GPIO chip drivers to request and use their own GPIO
1466 * descriptors via gpiolib API. Difference to gpiod_request() is that this
1467 * function will not increase reference count of the GPIO chip module. This
1468 * allows the GPIO chip module to be unloaded as needed (we assume that the
1469 * GPIO chip driver handles freeing the GPIOs it has requested).
1470 */
1471struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
1472 const char *label)
1473{
1474 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
1475 int err;
1476
1477 if (IS_ERR(desc)) {
1478 chip_err(chip, "failed to get GPIO descriptor\n");
1479 return desc;
1480 }
1481
1482 err = __gpiod_request(desc, label);
1483 if (err < 0)
1484 return ERR_PTR(err);
1485
1486 return desc;
1487}
1488EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
1489
1490/**
1491 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
1492 * @desc: GPIO descriptor to free
1493 *
1494 * Function frees the given GPIO requested previously with
1495 * gpiochip_request_own_desc().
1496 */
1497void gpiochip_free_own_desc(struct gpio_desc *desc)
1498{
1499 if (desc)
1500 __gpiod_free(desc);
1501}
1502EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
1503
1504/*
1505 * Drivers MUST set GPIO direction before making get/set calls. In
1506 * some cases this is done in early boot, before IRQs are enabled.
1507 *
1508 * As a rule these aren't called more than once (except for drivers
1509 * using the open-drain emulation idiom) so these are natural places
1510 * to accumulate extra debugging checks. Note that we can't (yet)
1511 * rely on gpio_request() having been called beforehand.
1512 */
1513
1514/**
1515 * gpiod_direction_input - set the GPIO direction to input
1516 * @desc: GPIO to set to input
1517 *
1518 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
1519 * be called safely on it.
1520 *
1521 * Return 0 in case of success, else an error code.
1522 */
1523int gpiod_direction_input(struct gpio_desc *desc)
1524{
1525 struct gpio_chip *chip;
1526 int status = -EINVAL;
1527
1528 VALIDATE_DESC(desc);
1529 chip = desc->gdev->chip;
1530
1531 if (!chip->get || !chip->direction_input) {
1532 gpiod_warn(desc,
1533 "%s: missing get() or direction_input() operations\n",
1534 __func__);
1535 return -EIO;
1536 }
1537
1538 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
1539 if (status == 0)
1540 clear_bit(FLAG_IS_OUT, &desc->flags);
1541
1542 trace_gpio_direction(desc_to_gpio(desc), 1, status);
1543
1544 return status;
1545}
1546EXPORT_SYMBOL_GPL(gpiod_direction_input);
1547
1548static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1549{
1550 struct gpio_chip *chip;
1551 int status = -EINVAL;
1552
1553 /* GPIOs used for IRQs shall not be set as output */
1554 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
1555 gpiod_err(desc,
1556 "%s: tried to set a GPIO tied to an IRQ as output\n",
1557 __func__);
1558 return -EIO;
1559 }
1560
1561 /* Open drain pin should not be driven to 1 */
1562 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1563 return gpiod_direction_input(desc);
1564
1565 /* Open source pin should not be driven to 0 */
1566 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1567 return gpiod_direction_input(desc);
1568
1569 chip = desc->gdev->chip;
1570 if (!chip->set || !chip->direction_output) {
1571 gpiod_warn(desc,
1572 "%s: missing set() or direction_output() operations\n",
1573 __func__);
1574 return -EIO;
1575 }
1576
1577 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
1578 if (status == 0)
1579 set_bit(FLAG_IS_OUT, &desc->flags);
1580 trace_gpio_value(desc_to_gpio(desc), 0, value);
1581 trace_gpio_direction(desc_to_gpio(desc), 0, status);
1582 return status;
1583}
1584
1585/**
1586 * gpiod_direction_output_raw - set the GPIO direction to output
1587 * @desc: GPIO to set to output
1588 * @value: initial output value of the GPIO
1589 *
1590 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1591 * be called safely on it. The initial value of the output must be specified
1592 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1593 *
1594 * Return 0 in case of success, else an error code.
1595 */
1596int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1597{
1598 VALIDATE_DESC(desc);
1599 return _gpiod_direction_output_raw(desc, value);
1600}
1601EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1602
1603/**
1604 * gpiod_direction_output - set the GPIO direction to output
1605 * @desc: GPIO to set to output
1606 * @value: initial output value of the GPIO
1607 *
1608 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1609 * be called safely on it. The initial value of the output must be specified
1610 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1611 * account.
1612 *
1613 * Return 0 in case of success, else an error code.
1614 */
1615int gpiod_direction_output(struct gpio_desc *desc, int value)
1616{
1617 VALIDATE_DESC(desc);
1618 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1619 value = !value;
1620 return _gpiod_direction_output_raw(desc, value);
1621}
1622EXPORT_SYMBOL_GPL(gpiod_direction_output);
1623
1624/**
1625 * gpiod_set_debounce - sets @debounce time for a @gpio
1626 * @gpio: the gpio to set debounce time
1627 * @debounce: debounce time is microseconds
1628 *
1629 * returns -ENOTSUPP if the controller does not support setting
1630 * debounce.
1631 */
1632int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
1633{
1634 struct gpio_chip *chip;
1635
1636 VALIDATE_DESC(desc);
1637 chip = desc->gdev->chip;
1638 if (!chip->set || !chip->set_debounce) {
1639 gpiod_dbg(desc,
1640 "%s: missing set() or set_debounce() operations\n",
1641 __func__);
1642 return -ENOTSUPP;
1643 }
1644
1645 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
1646}
1647EXPORT_SYMBOL_GPL(gpiod_set_debounce);
1648
1649/**
1650 * gpiod_is_active_low - test whether a GPIO is active-low or not
1651 * @desc: the gpio descriptor to test
1652 *
1653 * Returns 1 if the GPIO is active-low, 0 otherwise.
1654 */
1655int gpiod_is_active_low(const struct gpio_desc *desc)
1656{
1657 VALIDATE_DESC(desc);
1658 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
1659}
1660EXPORT_SYMBOL_GPL(gpiod_is_active_low);
1661
1662/* I/O calls are only valid after configuration completed; the relevant
1663 * "is this a valid GPIO" error checks should already have been done.
1664 *
1665 * "Get" operations are often inlinable as reading a pin value register,
1666 * and masking the relevant bit in that register.
1667 *
1668 * When "set" operations are inlinable, they involve writing that mask to
1669 * one register to set a low value, or a different register to set it high.
1670 * Otherwise locking is needed, so there may be little value to inlining.
1671 *
1672 *------------------------------------------------------------------------
1673 *
1674 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1675 * have requested the GPIO. That can include implicit requesting by
1676 * a direction setting call. Marking a gpio as requested locks its chip
1677 * in memory, guaranteeing that these table lookups need no more locking
1678 * and that gpiochip_remove() will fail.
1679 *
1680 * REVISIT when debugging, consider adding some instrumentation to ensure
1681 * that the GPIO was actually requested.
1682 */
1683
1684static int _gpiod_get_raw_value(const struct gpio_desc *desc)
1685{
1686 struct gpio_chip *chip;
1687 int offset;
1688 int value;
1689
1690 chip = desc->gdev->chip;
1691 offset = gpio_chip_hwgpio(desc);
1692 value = chip->get ? chip->get(chip, offset) : -EIO;
1693 value = value < 0 ? value : !!value;
1694 trace_gpio_value(desc_to_gpio(desc), 1, value);
1695 return value;
1696}
1697
1698/**
1699 * gpiod_get_raw_value() - return a gpio's raw value
1700 * @desc: gpio whose value will be returned
1701 *
1702 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1703 * its ACTIVE_LOW status, or negative errno on failure.
1704 *
1705 * This function should be called from contexts where we cannot sleep, and will
1706 * complain if the GPIO chip functions potentially sleep.
1707 */
1708int gpiod_get_raw_value(const struct gpio_desc *desc)
1709{
1710 VALIDATE_DESC(desc);
1711 /* Should be using gpio_get_value_cansleep() */
1712 WARN_ON(desc->gdev->chip->can_sleep);
1713 return _gpiod_get_raw_value(desc);
1714}
1715EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
1716
1717/**
1718 * gpiod_get_value() - return a gpio's value
1719 * @desc: gpio whose value will be returned
1720 *
1721 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1722 * account, or negative errno on failure.
1723 *
1724 * This function should be called from contexts where we cannot sleep, and will
1725 * complain if the GPIO chip functions potentially sleep.
1726 */
1727int gpiod_get_value(const struct gpio_desc *desc)
1728{
1729 int value;
1730
1731 VALIDATE_DESC(desc);
1732 /* Should be using gpio_get_value_cansleep() */
1733 WARN_ON(desc->gdev->chip->can_sleep);
1734
1735 value = _gpiod_get_raw_value(desc);
1736 if (value < 0)
1737 return value;
1738
1739 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1740 value = !value;
1741
1742 return value;
1743}
1744EXPORT_SYMBOL_GPL(gpiod_get_value);
1745
1746/*
1747 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
1748 * @desc: gpio descriptor whose state need to be set.
1749 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
1750 */
1751static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
1752{
1753 int err = 0;
1754 struct gpio_chip *chip = desc->gdev->chip;
1755 int offset = gpio_chip_hwgpio(desc);
1756
1757 if (value) {
1758 err = chip->direction_input(chip, offset);
1759 if (!err)
1760 clear_bit(FLAG_IS_OUT, &desc->flags);
1761 } else {
1762 err = chip->direction_output(chip, offset, 0);
1763 if (!err)
1764 set_bit(FLAG_IS_OUT, &desc->flags);
1765 }
1766 trace_gpio_direction(desc_to_gpio(desc), value, err);
1767 if (err < 0)
1768 gpiod_err(desc,
1769 "%s: Error in set_value for open drain err %d\n",
1770 __func__, err);
1771}
1772
1773/*
1774 * _gpio_set_open_source_value() - Set the open source gpio's value.
1775 * @desc: gpio descriptor whose state need to be set.
1776 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
1777 */
1778static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
1779{
1780 int err = 0;
1781 struct gpio_chip *chip = desc->gdev->chip;
1782 int offset = gpio_chip_hwgpio(desc);
1783
1784 if (value) {
1785 err = chip->direction_output(chip, offset, 1);
1786 if (!err)
1787 set_bit(FLAG_IS_OUT, &desc->flags);
1788 } else {
1789 err = chip->direction_input(chip, offset);
1790 if (!err)
1791 clear_bit(FLAG_IS_OUT, &desc->flags);
1792 }
1793 trace_gpio_direction(desc_to_gpio(desc), !value, err);
1794 if (err < 0)
1795 gpiod_err(desc,
1796 "%s: Error in set_value for open source err %d\n",
1797 __func__, err);
1798}
1799
1800static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
1801{
1802 struct gpio_chip *chip;
1803
1804 chip = desc->gdev->chip;
1805 trace_gpio_value(desc_to_gpio(desc), 0, value);
1806 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1807 _gpio_set_open_drain_value(desc, value);
1808 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1809 _gpio_set_open_source_value(desc, value);
1810 else
1811 chip->set(chip, gpio_chip_hwgpio(desc), value);
1812}
1813
1814/*
1815 * set multiple outputs on the same chip;
1816 * use the chip's set_multiple function if available;
1817 * otherwise set the outputs sequentially;
1818 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
1819 * defines which outputs are to be changed
1820 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
1821 * defines the values the outputs specified by mask are to be set to
1822 */
1823static void gpio_chip_set_multiple(struct gpio_chip *chip,
1824 unsigned long *mask, unsigned long *bits)
1825{
1826 if (chip->set_multiple) {
1827 chip->set_multiple(chip, mask, bits);
1828 } else {
1829 int i;
1830 for (i = 0; i < chip->ngpio; i++) {
1831 if (mask[BIT_WORD(i)] == 0) {
1832 /* no more set bits in this mask word;
1833 * skip ahead to the next word */
1834 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
1835 continue;
1836 }
1837 /* set outputs if the corresponding mask bit is set */
1838 if (__test_and_clear_bit(i, mask))
1839 chip->set(chip, i, test_bit(i, bits));
1840 }
1841 }
1842}
1843
1844static void gpiod_set_array_value_priv(bool raw, bool can_sleep,
1845 unsigned int array_size,
1846 struct gpio_desc **desc_array,
1847 int *value_array)
1848{
1849 int i = 0;
1850
1851 while (i < array_size) {
1852 struct gpio_chip *chip = desc_array[i]->gdev->chip;
1853 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
1854 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
1855 int count = 0;
1856
1857 if (!can_sleep)
1858 WARN_ON(chip->can_sleep);
1859
1860 memset(mask, 0, sizeof(mask));
1861 do {
1862 struct gpio_desc *desc = desc_array[i];
1863 int hwgpio = gpio_chip_hwgpio(desc);
1864 int value = value_array[i];
1865
1866 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1867 value = !value;
1868 trace_gpio_value(desc_to_gpio(desc), 0, value);
1869 /*
1870 * collect all normal outputs belonging to the same chip
1871 * open drain and open source outputs are set individually
1872 */
1873 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
1874 _gpio_set_open_drain_value(desc, value);
1875 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
1876 _gpio_set_open_source_value(desc, value);
1877 } else {
1878 __set_bit(hwgpio, mask);
1879 if (value)
1880 __set_bit(hwgpio, bits);
1881 else
1882 __clear_bit(hwgpio, bits);
1883 count++;
1884 }
1885 i++;
1886 } while ((i < array_size) &&
1887 (desc_array[i]->gdev->chip == chip));
1888 /* push collected bits to outputs */
1889 if (count != 0)
1890 gpio_chip_set_multiple(chip, mask, bits);
1891 }
1892}
1893
1894/**
1895 * gpiod_set_raw_value() - assign a gpio's raw value
1896 * @desc: gpio whose value will be assigned
1897 * @value: value to assign
1898 *
1899 * Set the raw value of the GPIO, i.e. the value of its physical line without
1900 * regard for its ACTIVE_LOW status.
1901 *
1902 * This function should be called from contexts where we cannot sleep, and will
1903 * complain if the GPIO chip functions potentially sleep.
1904 */
1905void gpiod_set_raw_value(struct gpio_desc *desc, int value)
1906{
1907 VALIDATE_DESC_VOID(desc);
1908 /* Should be using gpiod_set_value_cansleep() */
1909 WARN_ON(desc->gdev->chip->can_sleep);
1910 _gpiod_set_raw_value(desc, value);
1911}
1912EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
1913
1914/**
1915 * gpiod_set_value() - assign a gpio's value
1916 * @desc: gpio whose value will be assigned
1917 * @value: value to assign
1918 *
1919 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1920 * account
1921 *
1922 * This function should be called from contexts where we cannot sleep, and will
1923 * complain if the GPIO chip functions potentially sleep.
1924 */
1925void gpiod_set_value(struct gpio_desc *desc, int value)
1926{
1927 VALIDATE_DESC_VOID(desc);
1928 /* Should be using gpiod_set_value_cansleep() */
1929 WARN_ON(desc->gdev->chip->can_sleep);
1930 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1931 value = !value;
1932 _gpiod_set_raw_value(desc, value);
1933}
1934EXPORT_SYMBOL_GPL(gpiod_set_value);
1935
1936/**
1937 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
1938 * @array_size: number of elements in the descriptor / value arrays
1939 * @desc_array: array of GPIO descriptors whose values will be assigned
1940 * @value_array: array of values to assign
1941 *
1942 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1943 * without regard for their ACTIVE_LOW status.
1944 *
1945 * This function should be called from contexts where we cannot sleep, and will
1946 * complain if the GPIO chip functions potentially sleep.
1947 */
1948void gpiod_set_raw_array_value(unsigned int array_size,
1949 struct gpio_desc **desc_array, int *value_array)
1950{
1951 if (!desc_array)
1952 return;
1953 gpiod_set_array_value_priv(true, false, array_size, desc_array,
1954 value_array);
1955}
1956EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
1957
1958/**
1959 * gpiod_set_array_value() - assign values to an array of GPIOs
1960 * @array_size: number of elements in the descriptor / value arrays
1961 * @desc_array: array of GPIO descriptors whose values will be assigned
1962 * @value_array: array of values to assign
1963 *
1964 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1965 * into account.
1966 *
1967 * This function should be called from contexts where we cannot sleep, and will
1968 * complain if the GPIO chip functions potentially sleep.
1969 */
1970void gpiod_set_array_value(unsigned int array_size,
1971 struct gpio_desc **desc_array, int *value_array)
1972{
1973 if (!desc_array)
1974 return;
1975 gpiod_set_array_value_priv(false, false, array_size, desc_array,
1976 value_array);
1977}
1978EXPORT_SYMBOL_GPL(gpiod_set_array_value);
1979
1980/**
1981 * gpiod_cansleep() - report whether gpio value access may sleep
1982 * @desc: gpio to check
1983 *
1984 */
1985int gpiod_cansleep(const struct gpio_desc *desc)
1986{
1987 VALIDATE_DESC(desc);
1988 return desc->gdev->chip->can_sleep;
1989}
1990EXPORT_SYMBOL_GPL(gpiod_cansleep);
1991
1992/**
1993 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1994 * @desc: gpio whose IRQ will be returned (already requested)
1995 *
1996 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1997 * error.
1998 */
1999int gpiod_to_irq(const struct gpio_desc *desc)
2000{
2001 struct gpio_chip *chip;
2002 int offset;
2003
2004 VALIDATE_DESC(desc);
2005 chip = desc->gdev->chip;
2006 offset = gpio_chip_hwgpio(desc);
2007 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
2008}
2009EXPORT_SYMBOL_GPL(gpiod_to_irq);
2010
2011/**
2012 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
2013 * @chip: the chip the GPIO to lock belongs to
2014 * @offset: the offset of the GPIO to lock as IRQ
2015 *
2016 * This is used directly by GPIO drivers that want to lock down
2017 * a certain GPIO line to be used for IRQs.
2018 */
2019int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
2020{
2021 if (offset >= chip->ngpio)
2022 return -EINVAL;
2023
2024 if (test_bit(FLAG_IS_OUT, &chip->gpiodev->descs[offset].flags)) {
2025 chip_err(chip,
2026 "%s: tried to flag a GPIO set as output for IRQ\n",
2027 __func__);
2028 return -EIO;
2029 }
2030
2031 set_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2032 return 0;
2033}
2034EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
2035
2036/**
2037 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
2038 * @chip: the chip the GPIO to lock belongs to
2039 * @offset: the offset of the GPIO to lock as IRQ
2040 *
2041 * This is used directly by GPIO drivers that want to indicate
2042 * that a certain GPIO is no longer used exclusively for IRQ.
2043 */
2044void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
2045{
2046 if (offset >= chip->ngpio)
2047 return;
2048
2049 clear_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2050}
2051EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
2052
2053bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2054{
2055 if (offset >= chip->ngpio)
2056 return false;
2057
2058 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2059}
2060EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2061
2062bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2063{
2064 if (offset >= chip->ngpio)
2065 return false;
2066
2067 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2068}
2069EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2070
2071bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2072{
2073 if (offset >= chip->ngpio)
2074 return false;
2075
2076 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2077}
2078EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2079
2080/**
2081 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2082 * @desc: gpio whose value will be returned
2083 *
2084 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
2085 * its ACTIVE_LOW status, or negative errno on failure.
2086 *
2087 * This function is to be called from contexts that can sleep.
2088 */
2089int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
2090{
2091 might_sleep_if(extra_checks);
2092 VALIDATE_DESC(desc);
2093 return _gpiod_get_raw_value(desc);
2094}
2095EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
2096
2097/**
2098 * gpiod_get_value_cansleep() - return a gpio's value
2099 * @desc: gpio whose value will be returned
2100 *
2101 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
2102 * account, or negative errno on failure.
2103 *
2104 * This function is to be called from contexts that can sleep.
2105 */
2106int gpiod_get_value_cansleep(const struct gpio_desc *desc)
2107{
2108 int value;
2109
2110 might_sleep_if(extra_checks);
2111 VALIDATE_DESC(desc);
2112 value = _gpiod_get_raw_value(desc);
2113 if (value < 0)
2114 return value;
2115
2116 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2117 value = !value;
2118
2119 return value;
2120}
2121EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
2122
2123/**
2124 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2125 * @desc: gpio whose value will be assigned
2126 * @value: value to assign
2127 *
2128 * Set the raw value of the GPIO, i.e. the value of its physical line without
2129 * regard for its ACTIVE_LOW status.
2130 *
2131 * This function is to be called from contexts that can sleep.
2132 */
2133void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
2134{
2135 might_sleep_if(extra_checks);
2136 VALIDATE_DESC_VOID(desc);
2137 _gpiod_set_raw_value(desc, value);
2138}
2139EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
2140
2141/**
2142 * gpiod_set_value_cansleep() - assign a gpio's value
2143 * @desc: gpio whose value will be assigned
2144 * @value: value to assign
2145 *
2146 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2147 * account
2148 *
2149 * This function is to be called from contexts that can sleep.
2150 */
2151void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
2152{
2153 might_sleep_if(extra_checks);
2154 VALIDATE_DESC_VOID(desc);
2155 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2156 value = !value;
2157 _gpiod_set_raw_value(desc, value);
2158}
2159EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
2160
2161/**
2162 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
2163 * @array_size: number of elements in the descriptor / value arrays
2164 * @desc_array: array of GPIO descriptors whose values will be assigned
2165 * @value_array: array of values to assign
2166 *
2167 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2168 * without regard for their ACTIVE_LOW status.
2169 *
2170 * This function is to be called from contexts that can sleep.
2171 */
2172void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2173 struct gpio_desc **desc_array,
2174 int *value_array)
2175{
2176 might_sleep_if(extra_checks);
2177 if (!desc_array)
2178 return;
2179 gpiod_set_array_value_priv(true, true, array_size, desc_array,
2180 value_array);
2181}
2182EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
2183
2184/**
2185 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
2186 * @array_size: number of elements in the descriptor / value arrays
2187 * @desc_array: array of GPIO descriptors whose values will be assigned
2188 * @value_array: array of values to assign
2189 *
2190 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2191 * into account.
2192 *
2193 * This function is to be called from contexts that can sleep.
2194 */
2195void gpiod_set_array_value_cansleep(unsigned int array_size,
2196 struct gpio_desc **desc_array,
2197 int *value_array)
2198{
2199 might_sleep_if(extra_checks);
2200 if (!desc_array)
2201 return;
2202 gpiod_set_array_value_priv(false, true, array_size, desc_array,
2203 value_array);
2204}
2205EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
2206
2207/**
2208 * gpiod_add_lookup_table() - register GPIO device consumers
2209 * @table: table of consumers to register
2210 */
2211void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
2212{
2213 mutex_lock(&gpio_lookup_lock);
2214
2215 list_add_tail(&table->list, &gpio_lookup_list);
2216
2217 mutex_unlock(&gpio_lookup_lock);
2218}
2219
2220/**
2221 * gpiod_remove_lookup_table() - unregister GPIO device consumers
2222 * @table: table of consumers to unregister
2223 */
2224void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
2225{
2226 mutex_lock(&gpio_lookup_lock);
2227
2228 list_del(&table->list);
2229
2230 mutex_unlock(&gpio_lookup_lock);
2231}
2232
2233static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
2234 unsigned int idx,
2235 enum gpio_lookup_flags *flags)
2236{
2237 char prop_name[32]; /* 32 is max size of property name */
2238 enum of_gpio_flags of_flags;
2239 struct gpio_desc *desc;
2240 unsigned int i;
2241
2242 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
2243 if (con_id)
2244 snprintf(prop_name, sizeof(prop_name), "%s-%s", con_id,
2245 gpio_suffixes[i]);
2246 else
2247 snprintf(prop_name, sizeof(prop_name), "%s",
2248 gpio_suffixes[i]);
2249
2250 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
2251 &of_flags);
2252 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
2253 break;
2254 }
2255
2256 if (IS_ERR(desc))
2257 return desc;
2258
2259 if (of_flags & OF_GPIO_ACTIVE_LOW)
2260 *flags |= GPIO_ACTIVE_LOW;
2261
2262 if (of_flags & OF_GPIO_SINGLE_ENDED) {
2263 if (of_flags & OF_GPIO_ACTIVE_LOW)
2264 *flags |= GPIO_OPEN_DRAIN;
2265 else
2266 *flags |= GPIO_OPEN_SOURCE;
2267 }
2268
2269 return desc;
2270}
2271
2272static struct gpio_desc *acpi_find_gpio(struct device *dev,
2273 const char *con_id,
2274 unsigned int idx,
2275 enum gpiod_flags flags,
2276 enum gpio_lookup_flags *lookupflags)
2277{
2278 struct acpi_device *adev = ACPI_COMPANION(dev);
2279 struct acpi_gpio_info info;
2280 struct gpio_desc *desc;
2281 char propname[32];
2282 int i;
2283
2284 /* Try first from _DSD */
2285 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
2286 if (con_id && strcmp(con_id, "gpios")) {
2287 snprintf(propname, sizeof(propname), "%s-%s",
2288 con_id, gpio_suffixes[i]);
2289 } else {
2290 snprintf(propname, sizeof(propname), "%s",
2291 gpio_suffixes[i]);
2292 }
2293
2294 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
2295 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
2296 break;
2297 }
2298
2299 /* Then from plain _CRS GPIOs */
2300 if (IS_ERR(desc)) {
2301 if (!acpi_can_fallback_to_crs(adev, con_id))
2302 return ERR_PTR(-ENOENT);
2303
2304 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
2305 if (IS_ERR(desc))
2306 return desc;
2307
2308 if ((flags == GPIOD_OUT_LOW || flags == GPIOD_OUT_HIGH) &&
2309 info.gpioint) {
2310 dev_dbg(dev, "refusing GpioInt() entry when doing GPIOD_OUT_* lookup\n");
2311 return ERR_PTR(-ENOENT);
2312 }
2313 }
2314
2315 if (info.polarity == GPIO_ACTIVE_LOW)
2316 *lookupflags |= GPIO_ACTIVE_LOW;
2317
2318 return desc;
2319}
2320
2321static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
2322{
2323 const char *dev_id = dev ? dev_name(dev) : NULL;
2324 struct gpiod_lookup_table *table;
2325
2326 mutex_lock(&gpio_lookup_lock);
2327
2328 list_for_each_entry(table, &gpio_lookup_list, list) {
2329 if (table->dev_id && dev_id) {
2330 /*
2331 * Valid strings on both ends, must be identical to have
2332 * a match
2333 */
2334 if (!strcmp(table->dev_id, dev_id))
2335 goto found;
2336 } else {
2337 /*
2338 * One of the pointers is NULL, so both must be to have
2339 * a match
2340 */
2341 if (dev_id == table->dev_id)
2342 goto found;
2343 }
2344 }
2345 table = NULL;
2346
2347found:
2348 mutex_unlock(&gpio_lookup_lock);
2349 return table;
2350}
2351
2352static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
2353 unsigned int idx,
2354 enum gpio_lookup_flags *flags)
2355{
2356 struct gpio_desc *desc = ERR_PTR(-ENOENT);
2357 struct gpiod_lookup_table *table;
2358 struct gpiod_lookup *p;
2359
2360 table = gpiod_find_lookup_table(dev);
2361 if (!table)
2362 return desc;
2363
2364 for (p = &table->table[0]; p->chip_label; p++) {
2365 struct gpio_chip *chip;
2366
2367 /* idx must always match exactly */
2368 if (p->idx != idx)
2369 continue;
2370
2371 /* If the lookup entry has a con_id, require exact match */
2372 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
2373 continue;
2374
2375 chip = find_chip_by_name(p->chip_label);
2376
2377 if (!chip) {
2378 dev_err(dev, "cannot find GPIO chip %s\n",
2379 p->chip_label);
2380 return ERR_PTR(-ENODEV);
2381 }
2382
2383 if (chip->ngpio <= p->chip_hwnum) {
2384 dev_err(dev,
2385 "requested GPIO %d is out of range [0..%d] for chip %s\n",
2386 idx, chip->ngpio, chip->label);
2387 return ERR_PTR(-EINVAL);
2388 }
2389
2390 desc = gpiochip_get_desc(chip, p->chip_hwnum);
2391 *flags = p->flags;
2392
2393 return desc;
2394 }
2395
2396 return desc;
2397}
2398
2399static int dt_gpio_count(struct device *dev, const char *con_id)
2400{
2401 int ret;
2402 char propname[32];
2403 unsigned int i;
2404
2405 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
2406 if (con_id)
2407 snprintf(propname, sizeof(propname), "%s-%s",
2408 con_id, gpio_suffixes[i]);
2409 else
2410 snprintf(propname, sizeof(propname), "%s",
2411 gpio_suffixes[i]);
2412
2413 ret = of_gpio_named_count(dev->of_node, propname);
2414 if (ret >= 0)
2415 break;
2416 }
2417 return ret;
2418}
2419
2420static int platform_gpio_count(struct device *dev, const char *con_id)
2421{
2422 struct gpiod_lookup_table *table;
2423 struct gpiod_lookup *p;
2424 unsigned int count = 0;
2425
2426 table = gpiod_find_lookup_table(dev);
2427 if (!table)
2428 return -ENOENT;
2429
2430 for (p = &table->table[0]; p->chip_label; p++) {
2431 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
2432 (!con_id && !p->con_id))
2433 count++;
2434 }
2435 if (!count)
2436 return -ENOENT;
2437
2438 return count;
2439}
2440
2441/**
2442 * gpiod_count - return the number of GPIOs associated with a device / function
2443 * or -ENOENT if no GPIO has been assigned to the requested function
2444 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2445 * @con_id: function within the GPIO consumer
2446 */
2447int gpiod_count(struct device *dev, const char *con_id)
2448{
2449 int count = -ENOENT;
2450
2451 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
2452 count = dt_gpio_count(dev, con_id);
2453 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
2454 count = acpi_gpio_count(dev, con_id);
2455
2456 if (count < 0)
2457 count = platform_gpio_count(dev, con_id);
2458
2459 return count;
2460}
2461EXPORT_SYMBOL_GPL(gpiod_count);
2462
2463/**
2464 * gpiod_get - obtain a GPIO for a given GPIO function
2465 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2466 * @con_id: function within the GPIO consumer
2467 * @flags: optional GPIO initialization flags
2468 *
2469 * Return the GPIO descriptor corresponding to the function con_id of device
2470 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
2471 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
2472 */
2473struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
2474 enum gpiod_flags flags)
2475{
2476 return gpiod_get_index(dev, con_id, 0, flags);
2477}
2478EXPORT_SYMBOL_GPL(gpiod_get);
2479
2480/**
2481 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
2482 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2483 * @con_id: function within the GPIO consumer
2484 * @flags: optional GPIO initialization flags
2485 *
2486 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
2487 * the requested function it will return NULL. This is convenient for drivers
2488 * that need to handle optional GPIOs.
2489 */
2490struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
2491 const char *con_id,
2492 enum gpiod_flags flags)
2493{
2494 return gpiod_get_index_optional(dev, con_id, 0, flags);
2495}
2496EXPORT_SYMBOL_GPL(gpiod_get_optional);
2497
2498/**
2499 * gpiod_parse_flags - helper function to parse GPIO lookup flags
2500 * @desc: gpio to be setup
2501 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2502 * of_get_gpio_hog()
2503 *
2504 * Set the GPIO descriptor flags based on the given GPIO lookup flags.
2505 */
2506static void gpiod_parse_flags(struct gpio_desc *desc, unsigned long lflags)
2507{
2508 if (lflags & GPIO_ACTIVE_LOW)
2509 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2510 if (lflags & GPIO_OPEN_DRAIN)
2511 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
2512 if (lflags & GPIO_OPEN_SOURCE)
2513 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
2514}
2515
2516/**
2517 * gpiod_configure_flags - helper function to configure a given GPIO
2518 * @desc: gpio whose value will be assigned
2519 * @con_id: function within the GPIO consumer
2520 * @dflags: gpiod_flags - optional GPIO initialization flags
2521 *
2522 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
2523 * requested function and/or index, or another IS_ERR() code if an error
2524 * occurred while trying to acquire the GPIO.
2525 */
2526static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
2527 enum gpiod_flags dflags)
2528{
2529 int status;
2530
2531 /* No particular flag request, return here... */
2532 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
2533 pr_debug("no flags found for %s\n", con_id);
2534 return 0;
2535 }
2536
2537 /* Process flags */
2538 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
2539 status = gpiod_direction_output(desc,
2540 dflags & GPIOD_FLAGS_BIT_DIR_VAL);
2541 else
2542 status = gpiod_direction_input(desc);
2543
2544 return status;
2545}
2546
2547/**
2548 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
2549 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2550 * @con_id: function within the GPIO consumer
2551 * @idx: index of the GPIO to obtain in the consumer
2552 * @flags: optional GPIO initialization flags
2553 *
2554 * This variant of gpiod_get() allows to access GPIOs other than the first
2555 * defined one for functions that define several GPIOs.
2556 *
2557 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
2558 * requested function and/or index, or another IS_ERR() code if an error
2559 * occurred while trying to acquire the GPIO.
2560 */
2561struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
2562 const char *con_id,
2563 unsigned int idx,
2564 enum gpiod_flags flags)
2565{
2566 struct gpio_desc *desc = NULL;
2567 int status;
2568 enum gpio_lookup_flags lookupflags = 0;
2569
2570 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
2571
2572 if (dev) {
2573 /* Using device tree? */
2574 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
2575 dev_dbg(dev, "using device tree for GPIO lookup\n");
2576 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
2577 } else if (ACPI_COMPANION(dev)) {
2578 dev_dbg(dev, "using ACPI for GPIO lookup\n");
2579 desc = acpi_find_gpio(dev, con_id, idx, flags, &lookupflags);
2580 }
2581 }
2582
2583 /*
2584 * Either we are not using DT or ACPI, or their lookup did not return
2585 * a result. In that case, use platform lookup as a fallback.
2586 */
2587 if (!desc || desc == ERR_PTR(-ENOENT)) {
2588 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
2589 desc = gpiod_find(dev, con_id, idx, &lookupflags);
2590 }
2591
2592 if (IS_ERR(desc)) {
2593 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
2594 return desc;
2595 }
2596
2597 gpiod_parse_flags(desc, lookupflags);
2598
2599 status = gpiod_request(desc, con_id);
2600 if (status < 0)
2601 return ERR_PTR(status);
2602
2603 status = gpiod_configure_flags(desc, con_id, flags);
2604 if (status < 0) {
2605 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
2606 gpiod_put(desc);
2607 return ERR_PTR(status);
2608 }
2609
2610 return desc;
2611}
2612EXPORT_SYMBOL_GPL(gpiod_get_index);
2613
2614/**
2615 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
2616 * @fwnode: handle of the firmware node
2617 * @propname: name of the firmware property representing the GPIO
2618 *
2619 * This function can be used for drivers that get their configuration
2620 * from firmware.
2621 *
2622 * Function properly finds the corresponding GPIO using whatever is the
2623 * underlying firmware interface and then makes sure that the GPIO
2624 * descriptor is requested before it is returned to the caller.
2625 *
2626 * In case of error an ERR_PTR() is returned.
2627 */
2628struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
2629 const char *propname)
2630{
2631 struct gpio_desc *desc = ERR_PTR(-ENODEV);
2632 bool active_low = false;
2633 bool single_ended = false;
2634 int ret;
2635
2636 if (!fwnode)
2637 return ERR_PTR(-EINVAL);
2638
2639 if (is_of_node(fwnode)) {
2640 enum of_gpio_flags flags;
2641
2642 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
2643 &flags);
2644 if (!IS_ERR(desc)) {
2645 active_low = flags & OF_GPIO_ACTIVE_LOW;
2646 single_ended = flags & OF_GPIO_SINGLE_ENDED;
2647 }
2648 } else if (is_acpi_node(fwnode)) {
2649 struct acpi_gpio_info info;
2650
2651 desc = acpi_node_get_gpiod(fwnode, propname, 0, &info);
2652 if (!IS_ERR(desc))
2653 active_low = info.polarity == GPIO_ACTIVE_LOW;
2654 }
2655
2656 if (IS_ERR(desc))
2657 return desc;
2658
2659 if (active_low)
2660 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2661
2662 if (single_ended) {
2663 if (active_low)
2664 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
2665 else
2666 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
2667 }
2668
2669 ret = gpiod_request(desc, NULL);
2670 if (ret)
2671 return ERR_PTR(ret);
2672
2673 return desc;
2674}
2675EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
2676
2677/**
2678 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
2679 * function
2680 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2681 * @con_id: function within the GPIO consumer
2682 * @index: index of the GPIO to obtain in the consumer
2683 * @flags: optional GPIO initialization flags
2684 *
2685 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
2686 * specified index was assigned to the requested function it will return NULL.
2687 * This is convenient for drivers that need to handle optional GPIOs.
2688 */
2689struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
2690 const char *con_id,
2691 unsigned int index,
2692 enum gpiod_flags flags)
2693{
2694 struct gpio_desc *desc;
2695
2696 desc = gpiod_get_index(dev, con_id, index, flags);
2697 if (IS_ERR(desc)) {
2698 if (PTR_ERR(desc) == -ENOENT)
2699 return NULL;
2700 }
2701
2702 return desc;
2703}
2704EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
2705
2706/**
2707 * gpiod_hog - Hog the specified GPIO desc given the provided flags
2708 * @desc: gpio whose value will be assigned
2709 * @name: gpio line name
2710 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2711 * of_get_gpio_hog()
2712 * @dflags: gpiod_flags - optional GPIO initialization flags
2713 */
2714int gpiod_hog(struct gpio_desc *desc, const char *name,
2715 unsigned long lflags, enum gpiod_flags dflags)
2716{
2717 struct gpio_chip *chip;
2718 struct gpio_desc *local_desc;
2719 int hwnum;
2720 int status;
2721
2722 chip = gpiod_to_chip(desc);
2723 hwnum = gpio_chip_hwgpio(desc);
2724
2725 gpiod_parse_flags(desc, lflags);
2726
2727 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
2728 if (IS_ERR(local_desc)) {
2729 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed\n",
2730 name, chip->label, hwnum);
2731 return PTR_ERR(local_desc);
2732 }
2733
2734 status = gpiod_configure_flags(desc, name, dflags);
2735 if (status < 0) {
2736 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed\n",
2737 name, chip->label, hwnum);
2738 gpiochip_free_own_desc(desc);
2739 return status;
2740 }
2741
2742 /* Mark GPIO as hogged so it can be identified and removed later */
2743 set_bit(FLAG_IS_HOGGED, &desc->flags);
2744
2745 pr_info("GPIO line %d (%s) hogged as %s%s\n",
2746 desc_to_gpio(desc), name,
2747 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
2748 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
2749 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
2750
2751 return 0;
2752}
2753
2754/**
2755 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
2756 * @chip: gpio chip to act on
2757 *
2758 * This is only used by of_gpiochip_remove to free hogged gpios
2759 */
2760static void gpiochip_free_hogs(struct gpio_chip *chip)
2761{
2762 int id;
2763
2764 for (id = 0; id < chip->ngpio; id++) {
2765 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
2766 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
2767 }
2768}
2769
2770/**
2771 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
2772 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2773 * @con_id: function within the GPIO consumer
2774 * @flags: optional GPIO initialization flags
2775 *
2776 * This function acquires all the GPIOs defined under a given function.
2777 *
2778 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
2779 * no GPIO has been assigned to the requested function, or another IS_ERR()
2780 * code if an error occurred while trying to acquire the GPIOs.
2781 */
2782struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
2783 const char *con_id,
2784 enum gpiod_flags flags)
2785{
2786 struct gpio_desc *desc;
2787 struct gpio_descs *descs;
2788 int count;
2789
2790 count = gpiod_count(dev, con_id);
2791 if (count < 0)
2792 return ERR_PTR(count);
2793
2794 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
2795 GFP_KERNEL);
2796 if (!descs)
2797 return ERR_PTR(-ENOMEM);
2798
2799 for (descs->ndescs = 0; descs->ndescs < count; ) {
2800 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
2801 if (IS_ERR(desc)) {
2802 gpiod_put_array(descs);
2803 return ERR_CAST(desc);
2804 }
2805 descs->desc[descs->ndescs] = desc;
2806 descs->ndescs++;
2807 }
2808 return descs;
2809}
2810EXPORT_SYMBOL_GPL(gpiod_get_array);
2811
2812/**
2813 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
2814 * function
2815 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2816 * @con_id: function within the GPIO consumer
2817 * @flags: optional GPIO initialization flags
2818 *
2819 * This is equivalent to gpiod_get_array(), except that when no GPIO was
2820 * assigned to the requested function it will return NULL.
2821 */
2822struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
2823 const char *con_id,
2824 enum gpiod_flags flags)
2825{
2826 struct gpio_descs *descs;
2827
2828 descs = gpiod_get_array(dev, con_id, flags);
2829 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
2830 return NULL;
2831
2832 return descs;
2833}
2834EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
2835
2836/**
2837 * gpiod_put - dispose of a GPIO descriptor
2838 * @desc: GPIO descriptor to dispose of
2839 *
2840 * No descriptor can be used after gpiod_put() has been called on it.
2841 */
2842void gpiod_put(struct gpio_desc *desc)
2843{
2844 gpiod_free(desc);
2845}
2846EXPORT_SYMBOL_GPL(gpiod_put);
2847
2848/**
2849 * gpiod_put_array - dispose of multiple GPIO descriptors
2850 * @descs: struct gpio_descs containing an array of descriptors
2851 */
2852void gpiod_put_array(struct gpio_descs *descs)
2853{
2854 unsigned int i;
2855
2856 for (i = 0; i < descs->ndescs; i++)
2857 gpiod_put(descs->desc[i]);
2858
2859 kfree(descs);
2860}
2861EXPORT_SYMBOL_GPL(gpiod_put_array);
2862
2863static int __init gpiolib_dev_init(void)
2864{
2865 int ret;
2866
2867 /* Register GPIO sysfs bus */
2868 ret = bus_register(&gpio_bus_type);
2869 if (ret < 0) {
2870 pr_err("gpiolib: could not register GPIO bus type\n");
2871 return ret;
2872 }
2873
2874 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
2875 if (ret < 0) {
2876 pr_err("gpiolib: failed to allocate char dev region\n");
2877 bus_unregister(&gpio_bus_type);
2878 } else {
2879 gpiolib_initialized = true;
2880 gpiochip_setup_devs();
2881 }
2882 return ret;
2883}
2884core_initcall(gpiolib_dev_init);
2885
2886#ifdef CONFIG_DEBUG_FS
2887
2888static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
2889{
2890 unsigned i;
2891 struct gpio_chip *chip = gdev->chip;
2892 unsigned gpio = gdev->base;
2893 struct gpio_desc *gdesc = &gdev->descs[0];
2894 int is_out;
2895 int is_irq;
2896
2897 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
2898 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
2899 if (gdesc->name) {
2900 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
2901 gpio, gdesc->name);
2902 }
2903 continue;
2904 }
2905
2906 gpiod_get_direction(gdesc);
2907 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
2908 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
2909 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
2910 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
2911 is_out ? "out" : "in ",
2912 chip->get
2913 ? (chip->get(chip, i) ? "hi" : "lo")
2914 : "? ",
2915 is_irq ? "IRQ" : " ");
2916 seq_printf(s, "\n");
2917 }
2918}
2919
2920static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
2921{
2922 unsigned long flags;
2923 struct gpio_device *gdev = NULL;
2924 loff_t index = *pos;
2925
2926 s->private = "";
2927
2928 spin_lock_irqsave(&gpio_lock, flags);
2929 list_for_each_entry(gdev, &gpio_devices, list)
2930 if (index-- == 0) {
2931 spin_unlock_irqrestore(&gpio_lock, flags);
2932 return gdev;
2933 }
2934 spin_unlock_irqrestore(&gpio_lock, flags);
2935
2936 return NULL;
2937}
2938
2939static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
2940{
2941 unsigned long flags;
2942 struct gpio_device *gdev = v;
2943 void *ret = NULL;
2944
2945 spin_lock_irqsave(&gpio_lock, flags);
2946 if (list_is_last(&gdev->list, &gpio_devices))
2947 ret = NULL;
2948 else
2949 ret = list_entry(gdev->list.next, struct gpio_device, list);
2950 spin_unlock_irqrestore(&gpio_lock, flags);
2951
2952 s->private = "\n";
2953 ++*pos;
2954
2955 return ret;
2956}
2957
2958static void gpiolib_seq_stop(struct seq_file *s, void *v)
2959{
2960}
2961
2962static int gpiolib_seq_show(struct seq_file *s, void *v)
2963{
2964 struct gpio_device *gdev = v;
2965 struct gpio_chip *chip = gdev->chip;
2966 struct device *parent;
2967
2968 if (!chip) {
2969 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
2970 dev_name(&gdev->dev));
2971 return 0;
2972 }
2973
2974 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
2975 dev_name(&gdev->dev),
2976 gdev->base, gdev->base + gdev->ngpio - 1);
2977 parent = chip->parent;
2978 if (parent)
2979 seq_printf(s, ", parent: %s/%s",
2980 parent->bus ? parent->bus->name : "no-bus",
2981 dev_name(parent));
2982 if (chip->label)
2983 seq_printf(s, ", %s", chip->label);
2984 if (chip->can_sleep)
2985 seq_printf(s, ", can sleep");
2986 seq_printf(s, ":\n");
2987
2988 if (chip->dbg_show)
2989 chip->dbg_show(s, chip);
2990 else
2991 gpiolib_dbg_show(s, gdev);
2992
2993 return 0;
2994}
2995
2996static const struct seq_operations gpiolib_seq_ops = {
2997 .start = gpiolib_seq_start,
2998 .next = gpiolib_seq_next,
2999 .stop = gpiolib_seq_stop,
3000 .show = gpiolib_seq_show,
3001};
3002
3003static int gpiolib_open(struct inode *inode, struct file *file)
3004{
3005 return seq_open(file, &gpiolib_seq_ops);
3006}
3007
3008static const struct file_operations gpiolib_operations = {
3009 .owner = THIS_MODULE,
3010 .open = gpiolib_open,
3011 .read = seq_read,
3012 .llseek = seq_lseek,
3013 .release = seq_release,
3014};
3015
3016static int __init gpiolib_debugfs_init(void)
3017{
3018 /* /sys/kernel/debug/gpio */
3019 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3020 NULL, NULL, &gpiolib_operations);
3021 return 0;
3022}
3023subsys_initcall(gpiolib_debugfs_init);
3024
3025#endif /* DEBUG_FS */
1// SPDX-License-Identifier: GPL-2.0
2
3#include <linux/acpi.h>
4#include <linux/bitmap.h>
5#include <linux/compat.h>
6#include <linux/debugfs.h>
7#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/errno.h>
10#include <linux/file.h>
11#include <linux/fs.h>
12#include <linux/idr.h>
13#include <linux/interrupt.h>
14#include <linux/irq.h>
15#include <linux/kernel.h>
16#include <linux/list.h>
17#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/pinctrl/consumer.h>
20#include <linux/seq_file.h>
21#include <linux/slab.h>
22#include <linux/spinlock.h>
23#include <linux/string.h>
24
25#include <linux/gpio.h>
26#include <linux/gpio/driver.h>
27#include <linux/gpio/machine.h>
28
29#include <uapi/linux/gpio.h>
30
31#include "gpiolib-acpi.h"
32#include "gpiolib-cdev.h"
33#include "gpiolib-of.h"
34#include "gpiolib-swnode.h"
35#include "gpiolib-sysfs.h"
36#include "gpiolib.h"
37
38#define CREATE_TRACE_POINTS
39#include <trace/events/gpio.h>
40
41/* Implementation infrastructure for GPIO interfaces.
42 *
43 * The GPIO programming interface allows for inlining speed-critical
44 * get/set operations for common cases, so that access to SOC-integrated
45 * GPIOs can sometimes cost only an instruction or two per bit.
46 */
47
48/* Device and char device-related information */
49static DEFINE_IDA(gpio_ida);
50static dev_t gpio_devt;
51#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
52
53static int gpio_bus_match(struct device *dev, struct device_driver *drv)
54{
55 struct fwnode_handle *fwnode = dev_fwnode(dev);
56
57 /*
58 * Only match if the fwnode doesn't already have a proper struct device
59 * created for it.
60 */
61 if (fwnode && fwnode->dev != dev)
62 return 0;
63 return 1;
64}
65
66static struct bus_type gpio_bus_type = {
67 .name = "gpio",
68 .match = gpio_bus_match,
69};
70
71/*
72 * Number of GPIOs to use for the fast path in set array
73 */
74#define FASTPATH_NGPIO CONFIG_GPIOLIB_FASTPATH_LIMIT
75
76/* gpio_lock prevents conflicts during gpio_desc[] table updates.
77 * While any GPIO is requested, its gpio_chip is not removable;
78 * each GPIO's "requested" flag serves as a lock and refcount.
79 */
80DEFINE_SPINLOCK(gpio_lock);
81
82static DEFINE_MUTEX(gpio_lookup_lock);
83static LIST_HEAD(gpio_lookup_list);
84LIST_HEAD(gpio_devices);
85
86static DEFINE_MUTEX(gpio_machine_hogs_mutex);
87static LIST_HEAD(gpio_machine_hogs);
88
89static void gpiochip_free_hogs(struct gpio_chip *gc);
90static int gpiochip_add_irqchip(struct gpio_chip *gc,
91 struct lock_class_key *lock_key,
92 struct lock_class_key *request_key);
93static void gpiochip_irqchip_remove(struct gpio_chip *gc);
94static int gpiochip_irqchip_init_hw(struct gpio_chip *gc);
95static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc);
96static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc);
97
98static bool gpiolib_initialized;
99
100static inline void desc_set_label(struct gpio_desc *d, const char *label)
101{
102 d->label = label;
103}
104
105/**
106 * gpio_to_desc - Convert a GPIO number to its descriptor
107 * @gpio: global GPIO number
108 *
109 * Returns:
110 * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO
111 * with the given number exists in the system.
112 */
113struct gpio_desc *gpio_to_desc(unsigned gpio)
114{
115 struct gpio_device *gdev;
116 unsigned long flags;
117
118 spin_lock_irqsave(&gpio_lock, flags);
119
120 list_for_each_entry(gdev, &gpio_devices, list) {
121 if (gdev->base <= gpio &&
122 gdev->base + gdev->ngpio > gpio) {
123 spin_unlock_irqrestore(&gpio_lock, flags);
124 return &gdev->descs[gpio - gdev->base];
125 }
126 }
127
128 spin_unlock_irqrestore(&gpio_lock, flags);
129
130 if (!gpio_is_valid(gpio))
131 pr_warn("invalid GPIO %d\n", gpio);
132
133 return NULL;
134}
135EXPORT_SYMBOL_GPL(gpio_to_desc);
136
137/* This function is deprecated and will be removed soon, don't use. */
138struct gpio_desc *gpiochip_get_desc(struct gpio_chip *gc,
139 unsigned int hwnum)
140{
141 return gpio_device_get_desc(gc->gpiodev, hwnum);
142}
143EXPORT_SYMBOL_GPL(gpiochip_get_desc);
144
145/**
146 * gpio_device_get_desc() - get the GPIO descriptor corresponding to the given
147 * hardware number for this GPIO device
148 * @gdev: GPIO device to get the descriptor from
149 * @hwnum: hardware number of the GPIO for this chip
150 *
151 * Returns:
152 * A pointer to the GPIO descriptor or %EINVAL if no GPIO exists in the given
153 * chip for the specified hardware number or %ENODEV if the underlying chip
154 * already vanished.
155 *
156 * The reference count of struct gpio_device is *NOT* increased like when the
157 * GPIO is being requested for exclusive usage. It's up to the caller to make
158 * sure the GPIO device will stay alive together with the descriptor returned
159 * by this function.
160 */
161struct gpio_desc *
162gpio_device_get_desc(struct gpio_device *gdev, unsigned int hwnum)
163{
164 struct gpio_chip *gc;
165
166 /*
167 * FIXME: This will be locked once we protect gdev->chip everywhere
168 * with SRCU.
169 */
170 gc = gdev->chip;
171 if (!gc)
172 return ERR_PTR(-ENODEV);
173
174 if (hwnum >= gdev->ngpio)
175 return ERR_PTR(-EINVAL);
176
177 return &gdev->descs[hwnum];
178}
179EXPORT_SYMBOL_GPL(gpio_device_get_desc);
180
181/**
182 * desc_to_gpio - convert a GPIO descriptor to the integer namespace
183 * @desc: GPIO descriptor
184 *
185 * This should disappear in the future but is needed since we still
186 * use GPIO numbers for error messages and sysfs nodes.
187 *
188 * Returns:
189 * The global GPIO number for the GPIO specified by its descriptor.
190 */
191int desc_to_gpio(const struct gpio_desc *desc)
192{
193 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
194}
195EXPORT_SYMBOL_GPL(desc_to_gpio);
196
197
198/**
199 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
200 * @desc: descriptor to return the chip of
201 */
202struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
203{
204 if (!desc || !desc->gdev)
205 return NULL;
206 return desc->gdev->chip;
207}
208EXPORT_SYMBOL_GPL(gpiod_to_chip);
209
210/**
211 * gpiod_to_gpio_device() - Return the GPIO device to which this descriptor
212 * belongs.
213 * @desc: Descriptor for which to return the GPIO device.
214 *
215 * This *DOES NOT* increase the reference count of the GPIO device as it's
216 * expected that the descriptor is requested and the users already holds a
217 * reference to the device.
218 *
219 * Returns:
220 * Address of the GPIO device owning this descriptor.
221 */
222struct gpio_device *gpiod_to_gpio_device(struct gpio_desc *desc)
223{
224 if (!desc)
225 return NULL;
226
227 return desc->gdev;
228}
229EXPORT_SYMBOL_GPL(gpiod_to_gpio_device);
230
231/**
232 * gpio_device_get_base() - Get the base GPIO number allocated by this device
233 * @gdev: GPIO device
234 *
235 * Returns:
236 * First GPIO number in the global GPIO numberspace for this device.
237 */
238int gpio_device_get_base(struct gpio_device *gdev)
239{
240 return gdev->base;
241}
242EXPORT_SYMBOL_GPL(gpio_device_get_base);
243
244/**
245 * gpio_device_get_label() - Get the label of this GPIO device
246 * @gdev: GPIO device
247 *
248 * Returns:
249 * Pointer to the string containing the GPIO device label. The string's
250 * lifetime is tied to that of the underlying GPIO device.
251 */
252const char *gpio_device_get_label(struct gpio_device *gdev)
253{
254 return gdev->label;
255}
256EXPORT_SYMBOL(gpio_device_get_label);
257
258/**
259 * gpio_device_get_chip() - Get the gpio_chip implementation of this GPIO device
260 * @gdev: GPIO device
261 *
262 * Returns:
263 * Address of the GPIO chip backing this device.
264 *
265 * Until we can get rid of all non-driver users of struct gpio_chip, we must
266 * provide a way of retrieving the pointer to it from struct gpio_device. This
267 * is *NOT* safe as the GPIO API is considered to be hot-unpluggable and the
268 * chip can dissapear at any moment (unlike reference-counted struct
269 * gpio_device).
270 *
271 * Use at your own risk.
272 */
273struct gpio_chip *gpio_device_get_chip(struct gpio_device *gdev)
274{
275 return gdev->chip;
276}
277EXPORT_SYMBOL_GPL(gpio_device_get_chip);
278
279/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
280static int gpiochip_find_base_unlocked(int ngpio)
281{
282 struct gpio_device *gdev;
283 int base = GPIO_DYNAMIC_BASE;
284
285 list_for_each_entry(gdev, &gpio_devices, list) {
286 /* found a free space? */
287 if (gdev->base >= base + ngpio)
288 break;
289 /* nope, check the space right after the chip */
290 base = gdev->base + gdev->ngpio;
291 if (base < GPIO_DYNAMIC_BASE)
292 base = GPIO_DYNAMIC_BASE;
293 }
294
295 if (gpio_is_valid(base)) {
296 pr_debug("%s: found new base at %d\n", __func__, base);
297 return base;
298 } else {
299 pr_err("%s: cannot find free range\n", __func__);
300 return -ENOSPC;
301 }
302}
303
304/**
305 * gpiod_get_direction - return the current direction of a GPIO
306 * @desc: GPIO to get the direction of
307 *
308 * Returns 0 for output, 1 for input, or an error code in case of error.
309 *
310 * This function may sleep if gpiod_cansleep() is true.
311 */
312int gpiod_get_direction(struct gpio_desc *desc)
313{
314 struct gpio_chip *gc;
315 unsigned int offset;
316 int ret;
317
318 gc = gpiod_to_chip(desc);
319 offset = gpio_chip_hwgpio(desc);
320
321 /*
322 * Open drain emulation using input mode may incorrectly report
323 * input here, fix that up.
324 */
325 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) &&
326 test_bit(FLAG_IS_OUT, &desc->flags))
327 return 0;
328
329 if (!gc->get_direction)
330 return -ENOTSUPP;
331
332 ret = gc->get_direction(gc, offset);
333 if (ret < 0)
334 return ret;
335
336 /* GPIOF_DIR_IN or other positive, otherwise GPIOF_DIR_OUT */
337 if (ret > 0)
338 ret = 1;
339
340 assign_bit(FLAG_IS_OUT, &desc->flags, !ret);
341
342 return ret;
343}
344EXPORT_SYMBOL_GPL(gpiod_get_direction);
345
346/*
347 * Add a new chip to the global chips list, keeping the list of chips sorted
348 * by range(means [base, base + ngpio - 1]) order.
349 *
350 * Return -EBUSY if the new chip overlaps with some other chip's integer
351 * space.
352 */
353static int gpiodev_add_to_list_unlocked(struct gpio_device *gdev)
354{
355 struct gpio_device *prev, *next;
356
357 if (list_empty(&gpio_devices)) {
358 /* initial entry in list */
359 list_add_tail(&gdev->list, &gpio_devices);
360 return 0;
361 }
362
363 next = list_first_entry(&gpio_devices, struct gpio_device, list);
364 if (gdev->base + gdev->ngpio <= next->base) {
365 /* add before first entry */
366 list_add(&gdev->list, &gpio_devices);
367 return 0;
368 }
369
370 prev = list_last_entry(&gpio_devices, struct gpio_device, list);
371 if (prev->base + prev->ngpio <= gdev->base) {
372 /* add behind last entry */
373 list_add_tail(&gdev->list, &gpio_devices);
374 return 0;
375 }
376
377 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
378 /* at the end of the list */
379 if (&next->list == &gpio_devices)
380 break;
381
382 /* add between prev and next */
383 if (prev->base + prev->ngpio <= gdev->base
384 && gdev->base + gdev->ngpio <= next->base) {
385 list_add(&gdev->list, &prev->list);
386 return 0;
387 }
388 }
389
390 return -EBUSY;
391}
392
393/*
394 * Convert a GPIO name to its descriptor
395 * Note that there is no guarantee that GPIO names are globally unique!
396 * Hence this function will return, if it exists, a reference to the first GPIO
397 * line found that matches the given name.
398 */
399static struct gpio_desc *gpio_name_to_desc(const char * const name)
400{
401 struct gpio_device *gdev;
402 unsigned long flags;
403
404 if (!name)
405 return NULL;
406
407 spin_lock_irqsave(&gpio_lock, flags);
408
409 list_for_each_entry(gdev, &gpio_devices, list) {
410 struct gpio_desc *desc;
411
412 for_each_gpio_desc(gdev->chip, desc) {
413 if (desc->name && !strcmp(desc->name, name)) {
414 spin_unlock_irqrestore(&gpio_lock, flags);
415 return desc;
416 }
417 }
418 }
419
420 spin_unlock_irqrestore(&gpio_lock, flags);
421
422 return NULL;
423}
424
425/*
426 * Take the names from gc->names and assign them to their GPIO descriptors.
427 * Warn if a name is already used for a GPIO line on a different GPIO chip.
428 *
429 * Note that:
430 * 1. Non-unique names are still accepted,
431 * 2. Name collisions within the same GPIO chip are not reported.
432 */
433static int gpiochip_set_desc_names(struct gpio_chip *gc)
434{
435 struct gpio_device *gdev = gc->gpiodev;
436 int i;
437
438 /* First check all names if they are unique */
439 for (i = 0; i != gc->ngpio; ++i) {
440 struct gpio_desc *gpio;
441
442 gpio = gpio_name_to_desc(gc->names[i]);
443 if (gpio)
444 dev_warn(&gdev->dev,
445 "Detected name collision for GPIO name '%s'\n",
446 gc->names[i]);
447 }
448
449 /* Then add all names to the GPIO descriptors */
450 for (i = 0; i != gc->ngpio; ++i)
451 gdev->descs[i].name = gc->names[i];
452
453 return 0;
454}
455
456/*
457 * gpiochip_set_names - Set GPIO line names using device properties
458 * @chip: GPIO chip whose lines should be named, if possible
459 *
460 * Looks for device property "gpio-line-names" and if it exists assigns
461 * GPIO line names for the chip. The memory allocated for the assigned
462 * names belong to the underlying firmware node and should not be released
463 * by the caller.
464 */
465static int gpiochip_set_names(struct gpio_chip *chip)
466{
467 struct gpio_device *gdev = chip->gpiodev;
468 struct device *dev = &gdev->dev;
469 const char **names;
470 int ret, i;
471 int count;
472
473 count = device_property_string_array_count(dev, "gpio-line-names");
474 if (count < 0)
475 return 0;
476
477 /*
478 * When offset is set in the driver side we assume the driver internally
479 * is using more than one gpiochip per the same device. We have to stop
480 * setting friendly names if the specified ones with 'gpio-line-names'
481 * are less than the offset in the device itself. This means all the
482 * lines are not present for every single pin within all the internal
483 * gpiochips.
484 */
485 if (count <= chip->offset) {
486 dev_warn(dev, "gpio-line-names too short (length %d), cannot map names for the gpiochip at offset %u\n",
487 count, chip->offset);
488 return 0;
489 }
490
491 names = kcalloc(count, sizeof(*names), GFP_KERNEL);
492 if (!names)
493 return -ENOMEM;
494
495 ret = device_property_read_string_array(dev, "gpio-line-names",
496 names, count);
497 if (ret < 0) {
498 dev_warn(dev, "failed to read GPIO line names\n");
499 kfree(names);
500 return ret;
501 }
502
503 /*
504 * When more that one gpiochip per device is used, 'count' can
505 * contain at most number gpiochips x chip->ngpio. We have to
506 * correctly distribute all defined lines taking into account
507 * chip->offset as starting point from where we will assign
508 * the names to pins from the 'names' array. Since property
509 * 'gpio-line-names' cannot contains gaps, we have to be sure
510 * we only assign those pins that really exists since chip->ngpio
511 * can be different of the chip->offset.
512 */
513 count = (count > chip->offset) ? count - chip->offset : count;
514 if (count > chip->ngpio)
515 count = chip->ngpio;
516
517 for (i = 0; i < count; i++) {
518 /*
519 * Allow overriding "fixed" names provided by the GPIO
520 * provider. The "fixed" names are more often than not
521 * generic and less informative than the names given in
522 * device properties.
523 */
524 if (names[chip->offset + i] && names[chip->offset + i][0])
525 gdev->descs[i].name = names[chip->offset + i];
526 }
527
528 kfree(names);
529
530 return 0;
531}
532
533static unsigned long *gpiochip_allocate_mask(struct gpio_chip *gc)
534{
535 unsigned long *p;
536
537 p = bitmap_alloc(gc->ngpio, GFP_KERNEL);
538 if (!p)
539 return NULL;
540
541 /* Assume by default all GPIOs are valid */
542 bitmap_fill(p, gc->ngpio);
543
544 return p;
545}
546
547static void gpiochip_free_mask(unsigned long **p)
548{
549 bitmap_free(*p);
550 *p = NULL;
551}
552
553static unsigned int gpiochip_count_reserved_ranges(struct gpio_chip *gc)
554{
555 struct device *dev = &gc->gpiodev->dev;
556 int size;
557
558 /* Format is "start, count, ..." */
559 size = device_property_count_u32(dev, "gpio-reserved-ranges");
560 if (size > 0 && size % 2 == 0)
561 return size;
562
563 return 0;
564}
565
566static int gpiochip_apply_reserved_ranges(struct gpio_chip *gc)
567{
568 struct device *dev = &gc->gpiodev->dev;
569 unsigned int size;
570 u32 *ranges;
571 int ret;
572
573 size = gpiochip_count_reserved_ranges(gc);
574 if (size == 0)
575 return 0;
576
577 ranges = kmalloc_array(size, sizeof(*ranges), GFP_KERNEL);
578 if (!ranges)
579 return -ENOMEM;
580
581 ret = device_property_read_u32_array(dev, "gpio-reserved-ranges",
582 ranges, size);
583 if (ret) {
584 kfree(ranges);
585 return ret;
586 }
587
588 while (size) {
589 u32 count = ranges[--size];
590 u32 start = ranges[--size];
591
592 if (start >= gc->ngpio || start + count > gc->ngpio)
593 continue;
594
595 bitmap_clear(gc->valid_mask, start, count);
596 }
597
598 kfree(ranges);
599 return 0;
600}
601
602static int gpiochip_init_valid_mask(struct gpio_chip *gc)
603{
604 int ret;
605
606 if (!(gpiochip_count_reserved_ranges(gc) || gc->init_valid_mask))
607 return 0;
608
609 gc->valid_mask = gpiochip_allocate_mask(gc);
610 if (!gc->valid_mask)
611 return -ENOMEM;
612
613 ret = gpiochip_apply_reserved_ranges(gc);
614 if (ret)
615 return ret;
616
617 if (gc->init_valid_mask)
618 return gc->init_valid_mask(gc,
619 gc->valid_mask,
620 gc->ngpio);
621
622 return 0;
623}
624
625static void gpiochip_free_valid_mask(struct gpio_chip *gc)
626{
627 gpiochip_free_mask(&gc->valid_mask);
628}
629
630static int gpiochip_add_pin_ranges(struct gpio_chip *gc)
631{
632 /*
633 * Device Tree platforms are supposed to use "gpio-ranges"
634 * property. This check ensures that the ->add_pin_ranges()
635 * won't be called for them.
636 */
637 if (device_property_present(&gc->gpiodev->dev, "gpio-ranges"))
638 return 0;
639
640 if (gc->add_pin_ranges)
641 return gc->add_pin_ranges(gc);
642
643 return 0;
644}
645
646bool gpiochip_line_is_valid(const struct gpio_chip *gc,
647 unsigned int offset)
648{
649 /* No mask means all valid */
650 if (likely(!gc->valid_mask))
651 return true;
652 return test_bit(offset, gc->valid_mask);
653}
654EXPORT_SYMBOL_GPL(gpiochip_line_is_valid);
655
656static void gpiodev_release(struct device *dev)
657{
658 struct gpio_device *gdev = to_gpio_device(dev);
659
660 ida_free(&gpio_ida, gdev->id);
661 kfree_const(gdev->label);
662 kfree(gdev->descs);
663 kfree(gdev);
664}
665
666#ifdef CONFIG_GPIO_CDEV
667#define gcdev_register(gdev, devt) gpiolib_cdev_register((gdev), (devt))
668#define gcdev_unregister(gdev) gpiolib_cdev_unregister((gdev))
669#else
670/*
671 * gpiolib_cdev_register() indirectly calls device_add(), which is still
672 * required even when cdev is not selected.
673 */
674#define gcdev_register(gdev, devt) device_add(&(gdev)->dev)
675#define gcdev_unregister(gdev) device_del(&(gdev)->dev)
676#endif
677
678static int gpiochip_setup_dev(struct gpio_device *gdev)
679{
680 struct fwnode_handle *fwnode = dev_fwnode(&gdev->dev);
681 int ret;
682
683 /*
684 * If fwnode doesn't belong to another device, it's safe to clear its
685 * initialized flag.
686 */
687 if (fwnode && !fwnode->dev)
688 fwnode_dev_initialized(fwnode, false);
689
690 ret = gcdev_register(gdev, gpio_devt);
691 if (ret)
692 return ret;
693
694 /* From this point, the .release() function cleans up gpio_device */
695 gdev->dev.release = gpiodev_release;
696
697 ret = gpiochip_sysfs_register(gdev);
698 if (ret)
699 goto err_remove_device;
700
701 dev_dbg(&gdev->dev, "registered GPIOs %d to %d on %s\n", gdev->base,
702 gdev->base + gdev->ngpio - 1, gdev->chip->label ? : "generic");
703
704 return 0;
705
706err_remove_device:
707 gcdev_unregister(gdev);
708 return ret;
709}
710
711static void gpiochip_machine_hog(struct gpio_chip *gc, struct gpiod_hog *hog)
712{
713 struct gpio_desc *desc;
714 int rv;
715
716 desc = gpiochip_get_desc(gc, hog->chip_hwnum);
717 if (IS_ERR(desc)) {
718 chip_err(gc, "%s: unable to get GPIO desc: %ld\n", __func__,
719 PTR_ERR(desc));
720 return;
721 }
722
723 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
724 return;
725
726 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
727 if (rv)
728 gpiod_err(desc, "%s: unable to hog GPIO line (%s:%u): %d\n",
729 __func__, gc->label, hog->chip_hwnum, rv);
730}
731
732static void machine_gpiochip_add(struct gpio_chip *gc)
733{
734 struct gpiod_hog *hog;
735
736 mutex_lock(&gpio_machine_hogs_mutex);
737
738 list_for_each_entry(hog, &gpio_machine_hogs, list) {
739 if (!strcmp(gc->label, hog->chip_label))
740 gpiochip_machine_hog(gc, hog);
741 }
742
743 mutex_unlock(&gpio_machine_hogs_mutex);
744}
745
746static void gpiochip_setup_devs(void)
747{
748 struct gpio_device *gdev;
749 int ret;
750
751 list_for_each_entry(gdev, &gpio_devices, list) {
752 ret = gpiochip_setup_dev(gdev);
753 if (ret)
754 dev_err(&gdev->dev,
755 "Failed to initialize gpio device (%d)\n", ret);
756 }
757}
758
759static void gpiochip_set_data(struct gpio_chip *gc, void *data)
760{
761 gc->gpiodev->data = data;
762}
763
764/**
765 * gpiochip_get_data() - get per-subdriver data for the chip
766 * @gc: GPIO chip
767 *
768 * Returns:
769 * The per-subdriver data for the chip.
770 */
771void *gpiochip_get_data(struct gpio_chip *gc)
772{
773 return gc->gpiodev->data;
774}
775EXPORT_SYMBOL_GPL(gpiochip_get_data);
776
777int gpiochip_get_ngpios(struct gpio_chip *gc, struct device *dev)
778{
779 u32 ngpios = gc->ngpio;
780 int ret;
781
782 if (ngpios == 0) {
783 ret = device_property_read_u32(dev, "ngpios", &ngpios);
784 if (ret == -ENODATA)
785 /*
786 * -ENODATA means that there is no property found and
787 * we want to issue the error message to the user.
788 * Besides that, we want to return different error code
789 * to state that supplied value is not valid.
790 */
791 ngpios = 0;
792 else if (ret)
793 return ret;
794
795 gc->ngpio = ngpios;
796 }
797
798 if (gc->ngpio == 0) {
799 chip_err(gc, "tried to insert a GPIO chip with zero lines\n");
800 return -EINVAL;
801 }
802
803 if (gc->ngpio > FASTPATH_NGPIO)
804 chip_warn(gc, "line cnt %u is greater than fast path cnt %u\n",
805 gc->ngpio, FASTPATH_NGPIO);
806
807 return 0;
808}
809EXPORT_SYMBOL_GPL(gpiochip_get_ngpios);
810
811int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
812 struct lock_class_key *lock_key,
813 struct lock_class_key *request_key)
814{
815 struct gpio_device *gdev;
816 unsigned long flags;
817 unsigned int i;
818 int base = 0;
819 int ret = 0;
820
821 /*
822 * First: allocate and populate the internal stat container, and
823 * set up the struct device.
824 */
825 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
826 if (!gdev)
827 return -ENOMEM;
828 gdev->dev.bus = &gpio_bus_type;
829 gdev->dev.parent = gc->parent;
830 gdev->chip = gc;
831
832 gc->gpiodev = gdev;
833 gpiochip_set_data(gc, data);
834
835 /*
836 * If the calling driver did not initialize firmware node,
837 * do it here using the parent device, if any.
838 */
839 if (gc->fwnode)
840 device_set_node(&gdev->dev, gc->fwnode);
841 else if (gc->parent)
842 device_set_node(&gdev->dev, dev_fwnode(gc->parent));
843
844 gdev->id = ida_alloc(&gpio_ida, GFP_KERNEL);
845 if (gdev->id < 0) {
846 ret = gdev->id;
847 goto err_free_gdev;
848 }
849
850 ret = dev_set_name(&gdev->dev, GPIOCHIP_NAME "%d", gdev->id);
851 if (ret)
852 goto err_free_ida;
853
854 device_initialize(&gdev->dev);
855 if (gc->parent && gc->parent->driver)
856 gdev->owner = gc->parent->driver->owner;
857 else if (gc->owner)
858 /* TODO: remove chip->owner */
859 gdev->owner = gc->owner;
860 else
861 gdev->owner = THIS_MODULE;
862
863 ret = gpiochip_get_ngpios(gc, &gdev->dev);
864 if (ret)
865 goto err_free_dev_name;
866
867 gdev->descs = kcalloc(gc->ngpio, sizeof(*gdev->descs), GFP_KERNEL);
868 if (!gdev->descs) {
869 ret = -ENOMEM;
870 goto err_free_dev_name;
871 }
872
873 gdev->label = kstrdup_const(gc->label ?: "unknown", GFP_KERNEL);
874 if (!gdev->label) {
875 ret = -ENOMEM;
876 goto err_free_descs;
877 }
878
879 gdev->ngpio = gc->ngpio;
880
881 spin_lock_irqsave(&gpio_lock, flags);
882
883 /*
884 * TODO: this allocates a Linux GPIO number base in the global
885 * GPIO numberspace for this chip. In the long run we want to
886 * get *rid* of this numberspace and use only descriptors, but
887 * it may be a pipe dream. It will not happen before we get rid
888 * of the sysfs interface anyways.
889 */
890 base = gc->base;
891 if (base < 0) {
892 base = gpiochip_find_base_unlocked(gc->ngpio);
893 if (base < 0) {
894 spin_unlock_irqrestore(&gpio_lock, flags);
895 ret = base;
896 base = 0;
897 goto err_free_label;
898 }
899 /*
900 * TODO: it should not be necessary to reflect the assigned
901 * base outside of the GPIO subsystem. Go over drivers and
902 * see if anyone makes use of this, else drop this and assign
903 * a poison instead.
904 */
905 gc->base = base;
906 } else {
907 dev_warn(&gdev->dev,
908 "Static allocation of GPIO base is deprecated, use dynamic allocation.\n");
909 }
910 gdev->base = base;
911
912 ret = gpiodev_add_to_list_unlocked(gdev);
913 if (ret) {
914 spin_unlock_irqrestore(&gpio_lock, flags);
915 chip_err(gc, "GPIO integer space overlap, cannot add chip\n");
916 goto err_free_label;
917 }
918
919 for (i = 0; i < gc->ngpio; i++)
920 gdev->descs[i].gdev = gdev;
921
922 spin_unlock_irqrestore(&gpio_lock, flags);
923
924 BLOCKING_INIT_NOTIFIER_HEAD(&gdev->line_state_notifier);
925 BLOCKING_INIT_NOTIFIER_HEAD(&gdev->device_notifier);
926 init_rwsem(&gdev->sem);
927
928#ifdef CONFIG_PINCTRL
929 INIT_LIST_HEAD(&gdev->pin_ranges);
930#endif
931
932 if (gc->names) {
933 ret = gpiochip_set_desc_names(gc);
934 if (ret)
935 goto err_remove_from_list;
936 }
937 ret = gpiochip_set_names(gc);
938 if (ret)
939 goto err_remove_from_list;
940
941 ret = gpiochip_init_valid_mask(gc);
942 if (ret)
943 goto err_remove_from_list;
944
945 ret = of_gpiochip_add(gc);
946 if (ret)
947 goto err_free_gpiochip_mask;
948
949 for (i = 0; i < gc->ngpio; i++) {
950 struct gpio_desc *desc = &gdev->descs[i];
951
952 if (gc->get_direction && gpiochip_line_is_valid(gc, i)) {
953 assign_bit(FLAG_IS_OUT,
954 &desc->flags, !gc->get_direction(gc, i));
955 } else {
956 assign_bit(FLAG_IS_OUT,
957 &desc->flags, !gc->direction_input);
958 }
959 }
960
961 ret = gpiochip_add_pin_ranges(gc);
962 if (ret)
963 goto err_remove_of_chip;
964
965 acpi_gpiochip_add(gc);
966
967 machine_gpiochip_add(gc);
968
969 ret = gpiochip_irqchip_init_valid_mask(gc);
970 if (ret)
971 goto err_free_hogs;
972
973 ret = gpiochip_irqchip_init_hw(gc);
974 if (ret)
975 goto err_remove_irqchip_mask;
976
977 ret = gpiochip_add_irqchip(gc, lock_key, request_key);
978 if (ret)
979 goto err_remove_irqchip_mask;
980
981 /*
982 * By first adding the chardev, and then adding the device,
983 * we get a device node entry in sysfs under
984 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
985 * coldplug of device nodes and other udev business.
986 * We can do this only if gpiolib has been initialized.
987 * Otherwise, defer until later.
988 */
989 if (gpiolib_initialized) {
990 ret = gpiochip_setup_dev(gdev);
991 if (ret)
992 goto err_remove_irqchip;
993 }
994 return 0;
995
996err_remove_irqchip:
997 gpiochip_irqchip_remove(gc);
998err_remove_irqchip_mask:
999 gpiochip_irqchip_free_valid_mask(gc);
1000err_free_hogs:
1001 gpiochip_free_hogs(gc);
1002 acpi_gpiochip_remove(gc);
1003 gpiochip_remove_pin_ranges(gc);
1004err_remove_of_chip:
1005 of_gpiochip_remove(gc);
1006err_free_gpiochip_mask:
1007 gpiochip_free_valid_mask(gc);
1008err_remove_from_list:
1009 spin_lock_irqsave(&gpio_lock, flags);
1010 list_del(&gdev->list);
1011 spin_unlock_irqrestore(&gpio_lock, flags);
1012 if (gdev->dev.release) {
1013 /* release() has been registered by gpiochip_setup_dev() */
1014 gpio_device_put(gdev);
1015 goto err_print_message;
1016 }
1017err_free_label:
1018 kfree_const(gdev->label);
1019err_free_descs:
1020 kfree(gdev->descs);
1021err_free_dev_name:
1022 kfree(dev_name(&gdev->dev));
1023err_free_ida:
1024 ida_free(&gpio_ida, gdev->id);
1025err_free_gdev:
1026 kfree(gdev);
1027err_print_message:
1028 /* failures here can mean systems won't boot... */
1029 if (ret != -EPROBE_DEFER) {
1030 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
1031 base, base + (int)gc->ngpio - 1,
1032 gc->label ? : "generic", ret);
1033 }
1034 return ret;
1035}
1036EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
1037
1038/**
1039 * gpiochip_remove() - unregister a gpio_chip
1040 * @gc: the chip to unregister
1041 *
1042 * A gpio_chip with any GPIOs still requested may not be removed.
1043 */
1044void gpiochip_remove(struct gpio_chip *gc)
1045{
1046 struct gpio_device *gdev = gc->gpiodev;
1047 unsigned long flags;
1048 unsigned int i;
1049
1050 down_write(&gdev->sem);
1051
1052 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
1053 gpiochip_sysfs_unregister(gdev);
1054 gpiochip_free_hogs(gc);
1055 /* Numb the device, cancelling all outstanding operations */
1056 gdev->chip = NULL;
1057 gpiochip_irqchip_remove(gc);
1058 acpi_gpiochip_remove(gc);
1059 of_gpiochip_remove(gc);
1060 gpiochip_remove_pin_ranges(gc);
1061 gpiochip_free_valid_mask(gc);
1062 /*
1063 * We accept no more calls into the driver from this point, so
1064 * NULL the driver data pointer.
1065 */
1066 gpiochip_set_data(gc, NULL);
1067
1068 spin_lock_irqsave(&gpio_lock, flags);
1069 for (i = 0; i < gdev->ngpio; i++) {
1070 if (test_bit(FLAG_REQUESTED, &gdev->descs[i].flags))
1071 break;
1072 }
1073 spin_unlock_irqrestore(&gpio_lock, flags);
1074
1075 if (i != gdev->ngpio)
1076 dev_crit(&gdev->dev,
1077 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
1078
1079 scoped_guard(spinlock_irqsave, &gpio_lock)
1080 list_del(&gdev->list);
1081
1082 /*
1083 * The gpiochip side puts its use of the device to rest here:
1084 * if there are no userspace clients, the chardev and device will
1085 * be removed, else it will be dangling until the last user is
1086 * gone.
1087 */
1088 gcdev_unregister(gdev);
1089 up_write(&gdev->sem);
1090 gpio_device_put(gdev);
1091}
1092EXPORT_SYMBOL_GPL(gpiochip_remove);
1093
1094/**
1095 * gpio_device_find() - find a specific GPIO device
1096 * @data: data to pass to match function
1097 * @match: Callback function to check gpio_chip
1098 *
1099 * Returns:
1100 * New reference to struct gpio_device.
1101 *
1102 * Similar to bus_find_device(). It returns a reference to a gpio_device as
1103 * determined by a user supplied @match callback. The callback should return
1104 * 0 if the device doesn't match and non-zero if it does. If the callback
1105 * returns non-zero, this function will return to the caller and not iterate
1106 * over any more gpio_devices.
1107 *
1108 * The callback takes the GPIO chip structure as argument. During the execution
1109 * of the callback function the chip is protected from being freed. TODO: This
1110 * actually has yet to be implemented.
1111 *
1112 * If the function returns non-NULL, the returned reference must be freed by
1113 * the caller using gpio_device_put().
1114 */
1115struct gpio_device *gpio_device_find(void *data,
1116 int (*match)(struct gpio_chip *gc,
1117 void *data))
1118{
1119 struct gpio_device *gdev;
1120
1121 /*
1122 * Not yet but in the future the spinlock below will become a mutex.
1123 * Annotate this function before anyone tries to use it in interrupt
1124 * context like it happened with gpiochip_find().
1125 */
1126 might_sleep();
1127
1128 guard(spinlock_irqsave)(&gpio_lock);
1129
1130 list_for_each_entry(gdev, &gpio_devices, list) {
1131 if (gdev->chip && match(gdev->chip, data))
1132 return gpio_device_get(gdev);
1133 }
1134
1135 return NULL;
1136}
1137EXPORT_SYMBOL_GPL(gpio_device_find);
1138
1139static int gpio_chip_match_by_label(struct gpio_chip *gc, void *label)
1140{
1141 return gc->label && !strcmp(gc->label, label);
1142}
1143
1144/**
1145 * gpio_device_find_by_label() - wrapper around gpio_device_find() finding the
1146 * GPIO device by its backing chip's label
1147 * @label: Label to lookup
1148 *
1149 * Returns:
1150 * Reference to the GPIO device or NULL. Reference must be released with
1151 * gpio_device_put().
1152 */
1153struct gpio_device *gpio_device_find_by_label(const char *label)
1154{
1155 return gpio_device_find((void *)label, gpio_chip_match_by_label);
1156}
1157EXPORT_SYMBOL_GPL(gpio_device_find_by_label);
1158
1159static int gpio_chip_match_by_fwnode(struct gpio_chip *gc, void *fwnode)
1160{
1161 return device_match_fwnode(&gc->gpiodev->dev, fwnode);
1162}
1163
1164/**
1165 * gpio_device_find_by_fwnode() - wrapper around gpio_device_find() finding
1166 * the GPIO device by its fwnode
1167 * @fwnode: Firmware node to lookup
1168 *
1169 * Returns:
1170 * Reference to the GPIO device or NULL. Reference must be released with
1171 * gpio_device_put().
1172 */
1173struct gpio_device *gpio_device_find_by_fwnode(const struct fwnode_handle *fwnode)
1174{
1175 return gpio_device_find((void *)fwnode, gpio_chip_match_by_fwnode);
1176}
1177EXPORT_SYMBOL_GPL(gpio_device_find_by_fwnode);
1178
1179/**
1180 * gpio_device_get() - Increase the reference count of this GPIO device
1181 * @gdev: GPIO device to increase the refcount for
1182 *
1183 * Returns:
1184 * Pointer to @gdev.
1185 */
1186struct gpio_device *gpio_device_get(struct gpio_device *gdev)
1187{
1188 return to_gpio_device(get_device(&gdev->dev));
1189}
1190EXPORT_SYMBOL_GPL(gpio_device_get);
1191
1192/**
1193 * gpio_device_put() - Decrease the reference count of this GPIO device and
1194 * possibly free all resources associated with it.
1195 * @gdev: GPIO device to decrease the reference count for
1196 */
1197void gpio_device_put(struct gpio_device *gdev)
1198{
1199 put_device(&gdev->dev);
1200}
1201EXPORT_SYMBOL_GPL(gpio_device_put);
1202
1203/**
1204 * gpio_device_to_device() - Retrieve the address of the underlying struct
1205 * device.
1206 * @gdev: GPIO device for which to return the address.
1207 *
1208 * This does not increase the reference count of the GPIO device nor the
1209 * underlying struct device.
1210 *
1211 * Returns:
1212 * Address of struct device backing this GPIO device.
1213 */
1214struct device *gpio_device_to_device(struct gpio_device *gdev)
1215{
1216 return &gdev->dev;
1217}
1218EXPORT_SYMBOL_GPL(gpio_device_to_device);
1219
1220#ifdef CONFIG_GPIOLIB_IRQCHIP
1221
1222/*
1223 * The following is irqchip helper code for gpiochips.
1224 */
1225
1226static int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
1227{
1228 struct gpio_irq_chip *girq = &gc->irq;
1229
1230 if (!girq->init_hw)
1231 return 0;
1232
1233 return girq->init_hw(gc);
1234}
1235
1236static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
1237{
1238 struct gpio_irq_chip *girq = &gc->irq;
1239
1240 if (!girq->init_valid_mask)
1241 return 0;
1242
1243 girq->valid_mask = gpiochip_allocate_mask(gc);
1244 if (!girq->valid_mask)
1245 return -ENOMEM;
1246
1247 girq->init_valid_mask(gc, girq->valid_mask, gc->ngpio);
1248
1249 return 0;
1250}
1251
1252static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
1253{
1254 gpiochip_free_mask(&gc->irq.valid_mask);
1255}
1256
1257bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gc,
1258 unsigned int offset)
1259{
1260 if (!gpiochip_line_is_valid(gc, offset))
1261 return false;
1262 /* No mask means all valid */
1263 if (likely(!gc->irq.valid_mask))
1264 return true;
1265 return test_bit(offset, gc->irq.valid_mask);
1266}
1267EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
1268
1269#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1270
1271/**
1272 * gpiochip_set_hierarchical_irqchip() - connects a hierarchical irqchip
1273 * to a gpiochip
1274 * @gc: the gpiochip to set the irqchip hierarchical handler to
1275 * @irqchip: the irqchip to handle this level of the hierarchy, the interrupt
1276 * will then percolate up to the parent
1277 */
1278static void gpiochip_set_hierarchical_irqchip(struct gpio_chip *gc,
1279 struct irq_chip *irqchip)
1280{
1281 /* DT will deal with mapping each IRQ as we go along */
1282 if (is_of_node(gc->irq.fwnode))
1283 return;
1284
1285 /*
1286 * This is for legacy and boardfile "irqchip" fwnodes: allocate
1287 * irqs upfront instead of dynamically since we don't have the
1288 * dynamic type of allocation that hardware description languages
1289 * provide. Once all GPIO drivers using board files are gone from
1290 * the kernel we can delete this code, but for a transitional period
1291 * it is necessary to keep this around.
1292 */
1293 if (is_fwnode_irqchip(gc->irq.fwnode)) {
1294 int i;
1295 int ret;
1296
1297 for (i = 0; i < gc->ngpio; i++) {
1298 struct irq_fwspec fwspec;
1299 unsigned int parent_hwirq;
1300 unsigned int parent_type;
1301 struct gpio_irq_chip *girq = &gc->irq;
1302
1303 /*
1304 * We call the child to parent translation function
1305 * only to check if the child IRQ is valid or not.
1306 * Just pick the rising edge type here as that is what
1307 * we likely need to support.
1308 */
1309 ret = girq->child_to_parent_hwirq(gc, i,
1310 IRQ_TYPE_EDGE_RISING,
1311 &parent_hwirq,
1312 &parent_type);
1313 if (ret) {
1314 chip_err(gc, "skip set-up on hwirq %d\n",
1315 i);
1316 continue;
1317 }
1318
1319 fwspec.fwnode = gc->irq.fwnode;
1320 /* This is the hwirq for the GPIO line side of things */
1321 fwspec.param[0] = girq->child_offset_to_irq(gc, i);
1322 /* Just pick something */
1323 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
1324 fwspec.param_count = 2;
1325 ret = irq_domain_alloc_irqs(gc->irq.domain, 1,
1326 NUMA_NO_NODE, &fwspec);
1327 if (ret < 0) {
1328 chip_err(gc,
1329 "can not allocate irq for GPIO line %d parent hwirq %d in hierarchy domain: %d\n",
1330 i, parent_hwirq,
1331 ret);
1332 }
1333 }
1334 }
1335
1336 chip_err(gc, "%s unknown fwnode type proceed anyway\n", __func__);
1337
1338 return;
1339}
1340
1341static int gpiochip_hierarchy_irq_domain_translate(struct irq_domain *d,
1342 struct irq_fwspec *fwspec,
1343 unsigned long *hwirq,
1344 unsigned int *type)
1345{
1346 /* We support standard DT translation */
1347 if (is_of_node(fwspec->fwnode) && fwspec->param_count == 2) {
1348 return irq_domain_translate_twocell(d, fwspec, hwirq, type);
1349 }
1350
1351 /* This is for board files and others not using DT */
1352 if (is_fwnode_irqchip(fwspec->fwnode)) {
1353 int ret;
1354
1355 ret = irq_domain_translate_twocell(d, fwspec, hwirq, type);
1356 if (ret)
1357 return ret;
1358 WARN_ON(*type == IRQ_TYPE_NONE);
1359 return 0;
1360 }
1361 return -EINVAL;
1362}
1363
1364static int gpiochip_hierarchy_irq_domain_alloc(struct irq_domain *d,
1365 unsigned int irq,
1366 unsigned int nr_irqs,
1367 void *data)
1368{
1369 struct gpio_chip *gc = d->host_data;
1370 irq_hw_number_t hwirq;
1371 unsigned int type = IRQ_TYPE_NONE;
1372 struct irq_fwspec *fwspec = data;
1373 union gpio_irq_fwspec gpio_parent_fwspec = {};
1374 unsigned int parent_hwirq;
1375 unsigned int parent_type;
1376 struct gpio_irq_chip *girq = &gc->irq;
1377 int ret;
1378
1379 /*
1380 * The nr_irqs parameter is always one except for PCI multi-MSI
1381 * so this should not happen.
1382 */
1383 WARN_ON(nr_irqs != 1);
1384
1385 ret = gc->irq.child_irq_domain_ops.translate(d, fwspec, &hwirq, &type);
1386 if (ret)
1387 return ret;
1388
1389 chip_dbg(gc, "allocate IRQ %d, hwirq %lu\n", irq, hwirq);
1390
1391 ret = girq->child_to_parent_hwirq(gc, hwirq, type,
1392 &parent_hwirq, &parent_type);
1393 if (ret) {
1394 chip_err(gc, "can't look up hwirq %lu\n", hwirq);
1395 return ret;
1396 }
1397 chip_dbg(gc, "found parent hwirq %u\n", parent_hwirq);
1398
1399 /*
1400 * We set handle_bad_irq because the .set_type() should
1401 * always be invoked and set the right type of handler.
1402 */
1403 irq_domain_set_info(d,
1404 irq,
1405 hwirq,
1406 gc->irq.chip,
1407 gc,
1408 girq->handler,
1409 NULL, NULL);
1410 irq_set_probe(irq);
1411
1412 /* This parent only handles asserted level IRQs */
1413 ret = girq->populate_parent_alloc_arg(gc, &gpio_parent_fwspec,
1414 parent_hwirq, parent_type);
1415 if (ret)
1416 return ret;
1417
1418 chip_dbg(gc, "alloc_irqs_parent for %d parent hwirq %d\n",
1419 irq, parent_hwirq);
1420 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1421 ret = irq_domain_alloc_irqs_parent(d, irq, 1, &gpio_parent_fwspec);
1422 /*
1423 * If the parent irqdomain is msi, the interrupts have already
1424 * been allocated, so the EEXIST is good.
1425 */
1426 if (irq_domain_is_msi(d->parent) && (ret == -EEXIST))
1427 ret = 0;
1428 if (ret)
1429 chip_err(gc,
1430 "failed to allocate parent hwirq %d for hwirq %lu\n",
1431 parent_hwirq, hwirq);
1432
1433 return ret;
1434}
1435
1436static unsigned int gpiochip_child_offset_to_irq_noop(struct gpio_chip *gc,
1437 unsigned int offset)
1438{
1439 return offset;
1440}
1441
1442static void gpiochip_hierarchy_setup_domain_ops(struct irq_domain_ops *ops)
1443{
1444 ops->activate = gpiochip_irq_domain_activate;
1445 ops->deactivate = gpiochip_irq_domain_deactivate;
1446 ops->alloc = gpiochip_hierarchy_irq_domain_alloc;
1447
1448 /*
1449 * We only allow overriding the translate() and free() functions for
1450 * hierarchical chips, and this should only be done if the user
1451 * really need something other than 1:1 translation for translate()
1452 * callback and free if user wants to free up any resources which
1453 * were allocated during callbacks, for example populate_parent_alloc_arg.
1454 */
1455 if (!ops->translate)
1456 ops->translate = gpiochip_hierarchy_irq_domain_translate;
1457 if (!ops->free)
1458 ops->free = irq_domain_free_irqs_common;
1459}
1460
1461static struct irq_domain *gpiochip_hierarchy_create_domain(struct gpio_chip *gc)
1462{
1463 struct irq_domain *domain;
1464
1465 if (!gc->irq.child_to_parent_hwirq ||
1466 !gc->irq.fwnode) {
1467 chip_err(gc, "missing irqdomain vital data\n");
1468 return ERR_PTR(-EINVAL);
1469 }
1470
1471 if (!gc->irq.child_offset_to_irq)
1472 gc->irq.child_offset_to_irq = gpiochip_child_offset_to_irq_noop;
1473
1474 if (!gc->irq.populate_parent_alloc_arg)
1475 gc->irq.populate_parent_alloc_arg =
1476 gpiochip_populate_parent_fwspec_twocell;
1477
1478 gpiochip_hierarchy_setup_domain_ops(&gc->irq.child_irq_domain_ops);
1479
1480 domain = irq_domain_create_hierarchy(
1481 gc->irq.parent_domain,
1482 0,
1483 gc->ngpio,
1484 gc->irq.fwnode,
1485 &gc->irq.child_irq_domain_ops,
1486 gc);
1487
1488 if (!domain)
1489 return ERR_PTR(-ENOMEM);
1490
1491 gpiochip_set_hierarchical_irqchip(gc, gc->irq.chip);
1492
1493 return domain;
1494}
1495
1496static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1497{
1498 return !!gc->irq.parent_domain;
1499}
1500
1501int gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc,
1502 union gpio_irq_fwspec *gfwspec,
1503 unsigned int parent_hwirq,
1504 unsigned int parent_type)
1505{
1506 struct irq_fwspec *fwspec = &gfwspec->fwspec;
1507
1508 fwspec->fwnode = gc->irq.parent_domain->fwnode;
1509 fwspec->param_count = 2;
1510 fwspec->param[0] = parent_hwirq;
1511 fwspec->param[1] = parent_type;
1512
1513 return 0;
1514}
1515EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_twocell);
1516
1517int gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc,
1518 union gpio_irq_fwspec *gfwspec,
1519 unsigned int parent_hwirq,
1520 unsigned int parent_type)
1521{
1522 struct irq_fwspec *fwspec = &gfwspec->fwspec;
1523
1524 fwspec->fwnode = gc->irq.parent_domain->fwnode;
1525 fwspec->param_count = 4;
1526 fwspec->param[0] = 0;
1527 fwspec->param[1] = parent_hwirq;
1528 fwspec->param[2] = 0;
1529 fwspec->param[3] = parent_type;
1530
1531 return 0;
1532}
1533EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_fourcell);
1534
1535#else
1536
1537static struct irq_domain *gpiochip_hierarchy_create_domain(struct gpio_chip *gc)
1538{
1539 return ERR_PTR(-EINVAL);
1540}
1541
1542static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1543{
1544 return false;
1545}
1546
1547#endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
1548
1549/**
1550 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1551 * @d: the irqdomain used by this irqchip
1552 * @irq: the global irq number used by this GPIO irqchip irq
1553 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1554 *
1555 * This function will set up the mapping for a certain IRQ line on a
1556 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1557 * stored inside the gpiochip.
1558 */
1559int gpiochip_irq_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hwirq)
1560{
1561 struct gpio_chip *gc = d->host_data;
1562 int ret = 0;
1563
1564 if (!gpiochip_irqchip_irq_valid(gc, hwirq))
1565 return -ENXIO;
1566
1567 irq_set_chip_data(irq, gc);
1568 /*
1569 * This lock class tells lockdep that GPIO irqs are in a different
1570 * category than their parents, so it won't report false recursion.
1571 */
1572 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1573 irq_set_chip_and_handler(irq, gc->irq.chip, gc->irq.handler);
1574 /* Chips that use nested thread handlers have them marked */
1575 if (gc->irq.threaded)
1576 irq_set_nested_thread(irq, 1);
1577 irq_set_noprobe(irq);
1578
1579 if (gc->irq.num_parents == 1)
1580 ret = irq_set_parent(irq, gc->irq.parents[0]);
1581 else if (gc->irq.map)
1582 ret = irq_set_parent(irq, gc->irq.map[hwirq]);
1583
1584 if (ret < 0)
1585 return ret;
1586
1587 /*
1588 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1589 * is passed as default type.
1590 */
1591 if (gc->irq.default_type != IRQ_TYPE_NONE)
1592 irq_set_irq_type(irq, gc->irq.default_type);
1593
1594 return 0;
1595}
1596EXPORT_SYMBOL_GPL(gpiochip_irq_map);
1597
1598void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1599{
1600 struct gpio_chip *gc = d->host_data;
1601
1602 if (gc->irq.threaded)
1603 irq_set_nested_thread(irq, 0);
1604 irq_set_chip_and_handler(irq, NULL, NULL);
1605 irq_set_chip_data(irq, NULL);
1606}
1607EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
1608
1609static const struct irq_domain_ops gpiochip_domain_ops = {
1610 .map = gpiochip_irq_map,
1611 .unmap = gpiochip_irq_unmap,
1612 /* Virtually all GPIO irqchips are twocell:ed */
1613 .xlate = irq_domain_xlate_twocell,
1614};
1615
1616static struct irq_domain *gpiochip_simple_create_domain(struct gpio_chip *gc)
1617{
1618 struct fwnode_handle *fwnode = dev_fwnode(&gc->gpiodev->dev);
1619 struct irq_domain *domain;
1620
1621 domain = irq_domain_create_simple(fwnode, gc->ngpio, gc->irq.first,
1622 &gpiochip_domain_ops, gc);
1623 if (!domain)
1624 return ERR_PTR(-EINVAL);
1625
1626 return domain;
1627}
1628
1629/*
1630 * TODO: move these activate/deactivate in under the hierarchicial
1631 * irqchip implementation as static once SPMI and SSBI (all external
1632 * users) are phased over.
1633 */
1634/**
1635 * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ
1636 * @domain: The IRQ domain used by this IRQ chip
1637 * @data: Outermost irq_data associated with the IRQ
1638 * @reserve: If set, only reserve an interrupt vector instead of assigning one
1639 *
1640 * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be
1641 * used as the activate function for the &struct irq_domain_ops. The host_data
1642 * for the IRQ domain must be the &struct gpio_chip.
1643 */
1644int gpiochip_irq_domain_activate(struct irq_domain *domain,
1645 struct irq_data *data, bool reserve)
1646{
1647 struct gpio_chip *gc = domain->host_data;
1648 unsigned int hwirq = irqd_to_hwirq(data);
1649
1650 return gpiochip_lock_as_irq(gc, hwirq);
1651}
1652EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate);
1653
1654/**
1655 * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ
1656 * @domain: The IRQ domain used by this IRQ chip
1657 * @data: Outermost irq_data associated with the IRQ
1658 *
1659 * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to
1660 * be used as the deactivate function for the &struct irq_domain_ops. The
1661 * host_data for the IRQ domain must be the &struct gpio_chip.
1662 */
1663void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
1664 struct irq_data *data)
1665{
1666 struct gpio_chip *gc = domain->host_data;
1667 unsigned int hwirq = irqd_to_hwirq(data);
1668
1669 return gpiochip_unlock_as_irq(gc, hwirq);
1670}
1671EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate);
1672
1673static int gpiochip_to_irq(struct gpio_chip *gc, unsigned int offset)
1674{
1675 struct irq_domain *domain = gc->irq.domain;
1676
1677#ifdef CONFIG_GPIOLIB_IRQCHIP
1678 /*
1679 * Avoid race condition with other code, which tries to lookup
1680 * an IRQ before the irqchip has been properly registered,
1681 * i.e. while gpiochip is still being brought up.
1682 */
1683 if (!gc->irq.initialized)
1684 return -EPROBE_DEFER;
1685#endif
1686
1687 if (!gpiochip_irqchip_irq_valid(gc, offset))
1688 return -ENXIO;
1689
1690#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1691 if (irq_domain_is_hierarchy(domain)) {
1692 struct irq_fwspec spec;
1693
1694 spec.fwnode = domain->fwnode;
1695 spec.param_count = 2;
1696 spec.param[0] = gc->irq.child_offset_to_irq(gc, offset);
1697 spec.param[1] = IRQ_TYPE_NONE;
1698
1699 return irq_create_fwspec_mapping(&spec);
1700 }
1701#endif
1702
1703 return irq_create_mapping(domain, offset);
1704}
1705
1706int gpiochip_irq_reqres(struct irq_data *d)
1707{
1708 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1709 unsigned int hwirq = irqd_to_hwirq(d);
1710
1711 return gpiochip_reqres_irq(gc, hwirq);
1712}
1713EXPORT_SYMBOL(gpiochip_irq_reqres);
1714
1715void gpiochip_irq_relres(struct irq_data *d)
1716{
1717 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1718 unsigned int hwirq = irqd_to_hwirq(d);
1719
1720 gpiochip_relres_irq(gc, hwirq);
1721}
1722EXPORT_SYMBOL(gpiochip_irq_relres);
1723
1724static void gpiochip_irq_mask(struct irq_data *d)
1725{
1726 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1727 unsigned int hwirq = irqd_to_hwirq(d);
1728
1729 if (gc->irq.irq_mask)
1730 gc->irq.irq_mask(d);
1731 gpiochip_disable_irq(gc, hwirq);
1732}
1733
1734static void gpiochip_irq_unmask(struct irq_data *d)
1735{
1736 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1737 unsigned int hwirq = irqd_to_hwirq(d);
1738
1739 gpiochip_enable_irq(gc, hwirq);
1740 if (gc->irq.irq_unmask)
1741 gc->irq.irq_unmask(d);
1742}
1743
1744static void gpiochip_irq_enable(struct irq_data *d)
1745{
1746 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1747 unsigned int hwirq = irqd_to_hwirq(d);
1748
1749 gpiochip_enable_irq(gc, hwirq);
1750 gc->irq.irq_enable(d);
1751}
1752
1753static void gpiochip_irq_disable(struct irq_data *d)
1754{
1755 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1756 unsigned int hwirq = irqd_to_hwirq(d);
1757
1758 gc->irq.irq_disable(d);
1759 gpiochip_disable_irq(gc, hwirq);
1760}
1761
1762static void gpiochip_set_irq_hooks(struct gpio_chip *gc)
1763{
1764 struct irq_chip *irqchip = gc->irq.chip;
1765
1766 if (irqchip->flags & IRQCHIP_IMMUTABLE)
1767 return;
1768
1769 chip_warn(gc, "not an immutable chip, please consider fixing it!\n");
1770
1771 if (!irqchip->irq_request_resources &&
1772 !irqchip->irq_release_resources) {
1773 irqchip->irq_request_resources = gpiochip_irq_reqres;
1774 irqchip->irq_release_resources = gpiochip_irq_relres;
1775 }
1776 if (WARN_ON(gc->irq.irq_enable))
1777 return;
1778 /* Check if the irqchip already has this hook... */
1779 if (irqchip->irq_enable == gpiochip_irq_enable ||
1780 irqchip->irq_mask == gpiochip_irq_mask) {
1781 /*
1782 * ...and if so, give a gentle warning that this is bad
1783 * practice.
1784 */
1785 chip_info(gc,
1786 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1787 return;
1788 }
1789
1790 if (irqchip->irq_disable) {
1791 gc->irq.irq_disable = irqchip->irq_disable;
1792 irqchip->irq_disable = gpiochip_irq_disable;
1793 } else {
1794 gc->irq.irq_mask = irqchip->irq_mask;
1795 irqchip->irq_mask = gpiochip_irq_mask;
1796 }
1797
1798 if (irqchip->irq_enable) {
1799 gc->irq.irq_enable = irqchip->irq_enable;
1800 irqchip->irq_enable = gpiochip_irq_enable;
1801 } else {
1802 gc->irq.irq_unmask = irqchip->irq_unmask;
1803 irqchip->irq_unmask = gpiochip_irq_unmask;
1804 }
1805}
1806
1807static int gpiochip_irqchip_add_allocated_domain(struct gpio_chip *gc,
1808 struct irq_domain *domain,
1809 bool allocated_externally)
1810{
1811 if (!domain)
1812 return -EINVAL;
1813
1814 if (gc->to_irq)
1815 chip_warn(gc, "to_irq is redefined in %s and you shouldn't rely on it\n", __func__);
1816
1817 gc->to_irq = gpiochip_to_irq;
1818 gc->irq.domain = domain;
1819 gc->irq.domain_is_allocated_externally = allocated_externally;
1820
1821 /*
1822 * Using barrier() here to prevent compiler from reordering
1823 * gc->irq.initialized before adding irqdomain.
1824 */
1825 barrier();
1826
1827 gc->irq.initialized = true;
1828
1829 return 0;
1830}
1831
1832/**
1833 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1834 * @gc: the GPIO chip to add the IRQ chip to
1835 * @lock_key: lockdep class for IRQ lock
1836 * @request_key: lockdep class for IRQ request
1837 */
1838static int gpiochip_add_irqchip(struct gpio_chip *gc,
1839 struct lock_class_key *lock_key,
1840 struct lock_class_key *request_key)
1841{
1842 struct fwnode_handle *fwnode = dev_fwnode(&gc->gpiodev->dev);
1843 struct irq_chip *irqchip = gc->irq.chip;
1844 struct irq_domain *domain;
1845 unsigned int type;
1846 unsigned int i;
1847 int ret;
1848
1849 if (!irqchip)
1850 return 0;
1851
1852 if (gc->irq.parent_handler && gc->can_sleep) {
1853 chip_err(gc, "you cannot have chained interrupts on a chip that may sleep\n");
1854 return -EINVAL;
1855 }
1856
1857 type = gc->irq.default_type;
1858
1859 /*
1860 * Specifying a default trigger is a terrible idea if DT or ACPI is
1861 * used to configure the interrupts, as you may end up with
1862 * conflicting triggers. Tell the user, and reset to NONE.
1863 */
1864 if (WARN(fwnode && type != IRQ_TYPE_NONE,
1865 "%pfw: Ignoring %u default trigger\n", fwnode, type))
1866 type = IRQ_TYPE_NONE;
1867
1868 gc->irq.default_type = type;
1869 gc->irq.lock_key = lock_key;
1870 gc->irq.request_key = request_key;
1871
1872 /* If a parent irqdomain is provided, let's build a hierarchy */
1873 if (gpiochip_hierarchy_is_hierarchical(gc)) {
1874 domain = gpiochip_hierarchy_create_domain(gc);
1875 } else {
1876 domain = gpiochip_simple_create_domain(gc);
1877 }
1878 if (IS_ERR(domain))
1879 return PTR_ERR(domain);
1880
1881 if (gc->irq.parent_handler) {
1882 for (i = 0; i < gc->irq.num_parents; i++) {
1883 void *data;
1884
1885 if (gc->irq.per_parent_data)
1886 data = gc->irq.parent_handler_data_array[i];
1887 else
1888 data = gc->irq.parent_handler_data ?: gc;
1889
1890 /*
1891 * The parent IRQ chip is already using the chip_data
1892 * for this IRQ chip, so our callbacks simply use the
1893 * handler_data.
1894 */
1895 irq_set_chained_handler_and_data(gc->irq.parents[i],
1896 gc->irq.parent_handler,
1897 data);
1898 }
1899 }
1900
1901 gpiochip_set_irq_hooks(gc);
1902
1903 ret = gpiochip_irqchip_add_allocated_domain(gc, domain, false);
1904 if (ret)
1905 return ret;
1906
1907 acpi_gpiochip_request_interrupts(gc);
1908
1909 return 0;
1910}
1911
1912/**
1913 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1914 * @gc: the gpiochip to remove the irqchip from
1915 *
1916 * This is called only from gpiochip_remove()
1917 */
1918static void gpiochip_irqchip_remove(struct gpio_chip *gc)
1919{
1920 struct irq_chip *irqchip = gc->irq.chip;
1921 unsigned int offset;
1922
1923 acpi_gpiochip_free_interrupts(gc);
1924
1925 if (irqchip && gc->irq.parent_handler) {
1926 struct gpio_irq_chip *irq = &gc->irq;
1927 unsigned int i;
1928
1929 for (i = 0; i < irq->num_parents; i++)
1930 irq_set_chained_handler_and_data(irq->parents[i],
1931 NULL, NULL);
1932 }
1933
1934 /* Remove all IRQ mappings and delete the domain */
1935 if (!gc->irq.domain_is_allocated_externally && gc->irq.domain) {
1936 unsigned int irq;
1937
1938 for (offset = 0; offset < gc->ngpio; offset++) {
1939 if (!gpiochip_irqchip_irq_valid(gc, offset))
1940 continue;
1941
1942 irq = irq_find_mapping(gc->irq.domain, offset);
1943 irq_dispose_mapping(irq);
1944 }
1945
1946 irq_domain_remove(gc->irq.domain);
1947 }
1948
1949 if (irqchip && !(irqchip->flags & IRQCHIP_IMMUTABLE)) {
1950 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
1951 irqchip->irq_request_resources = NULL;
1952 irqchip->irq_release_resources = NULL;
1953 }
1954 if (irqchip->irq_enable == gpiochip_irq_enable) {
1955 irqchip->irq_enable = gc->irq.irq_enable;
1956 irqchip->irq_disable = gc->irq.irq_disable;
1957 }
1958 }
1959 gc->irq.irq_enable = NULL;
1960 gc->irq.irq_disable = NULL;
1961 gc->irq.chip = NULL;
1962
1963 gpiochip_irqchip_free_valid_mask(gc);
1964}
1965
1966/**
1967 * gpiochip_irqchip_add_domain() - adds an irqdomain to a gpiochip
1968 * @gc: the gpiochip to add the irqchip to
1969 * @domain: the irqdomain to add to the gpiochip
1970 *
1971 * This function adds an IRQ domain to the gpiochip.
1972 */
1973int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
1974 struct irq_domain *domain)
1975{
1976 return gpiochip_irqchip_add_allocated_domain(gc, domain, true);
1977}
1978EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_domain);
1979
1980#else /* CONFIG_GPIOLIB_IRQCHIP */
1981
1982static inline int gpiochip_add_irqchip(struct gpio_chip *gc,
1983 struct lock_class_key *lock_key,
1984 struct lock_class_key *request_key)
1985{
1986 return 0;
1987}
1988static void gpiochip_irqchip_remove(struct gpio_chip *gc) {}
1989
1990static inline int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
1991{
1992 return 0;
1993}
1994
1995static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
1996{
1997 return 0;
1998}
1999static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
2000{ }
2001
2002#endif /* CONFIG_GPIOLIB_IRQCHIP */
2003
2004/**
2005 * gpiochip_generic_request() - request the gpio function for a pin
2006 * @gc: the gpiochip owning the GPIO
2007 * @offset: the offset of the GPIO to request for GPIO function
2008 */
2009int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset)
2010{
2011#ifdef CONFIG_PINCTRL
2012 if (list_empty(&gc->gpiodev->pin_ranges))
2013 return 0;
2014#endif
2015
2016 return pinctrl_gpio_request(gc, offset);
2017}
2018EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2019
2020/**
2021 * gpiochip_generic_free() - free the gpio function from a pin
2022 * @gc: the gpiochip to request the gpio function for
2023 * @offset: the offset of the GPIO to free from GPIO function
2024 */
2025void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset)
2026{
2027#ifdef CONFIG_PINCTRL
2028 if (list_empty(&gc->gpiodev->pin_ranges))
2029 return;
2030#endif
2031
2032 pinctrl_gpio_free(gc, offset);
2033}
2034EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2035
2036/**
2037 * gpiochip_generic_config() - apply configuration for a pin
2038 * @gc: the gpiochip owning the GPIO
2039 * @offset: the offset of the GPIO to apply the configuration
2040 * @config: the configuration to be applied
2041 */
2042int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset,
2043 unsigned long config)
2044{
2045#ifdef CONFIG_PINCTRL
2046 if (list_empty(&gc->gpiodev->pin_ranges))
2047 return -ENOTSUPP;
2048#endif
2049
2050 return pinctrl_gpio_set_config(gc, offset, config);
2051}
2052EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2053
2054#ifdef CONFIG_PINCTRL
2055
2056/**
2057 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
2058 * @gc: the gpiochip to add the range for
2059 * @pctldev: the pin controller to map to
2060 * @gpio_offset: the start offset in the current gpio_chip number space
2061 * @pin_group: name of the pin group inside the pin controller
2062 *
2063 * Calling this function directly from a DeviceTree-supported
2064 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2065 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2066 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
2067 */
2068int gpiochip_add_pingroup_range(struct gpio_chip *gc,
2069 struct pinctrl_dev *pctldev,
2070 unsigned int gpio_offset, const char *pin_group)
2071{
2072 struct gpio_pin_range *pin_range;
2073 struct gpio_device *gdev = gc->gpiodev;
2074 int ret;
2075
2076 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2077 if (!pin_range) {
2078 chip_err(gc, "failed to allocate pin ranges\n");
2079 return -ENOMEM;
2080 }
2081
2082 /* Use local offset as range ID */
2083 pin_range->range.id = gpio_offset;
2084 pin_range->range.gc = gc;
2085 pin_range->range.name = gc->label;
2086 pin_range->range.base = gdev->base + gpio_offset;
2087 pin_range->pctldev = pctldev;
2088
2089 ret = pinctrl_get_group_pins(pctldev, pin_group,
2090 &pin_range->range.pins,
2091 &pin_range->range.npins);
2092 if (ret < 0) {
2093 kfree(pin_range);
2094 return ret;
2095 }
2096
2097 pinctrl_add_gpio_range(pctldev, &pin_range->range);
2098
2099 chip_dbg(gc, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2100 gpio_offset, gpio_offset + pin_range->range.npins - 1,
2101 pinctrl_dev_get_devname(pctldev), pin_group);
2102
2103 list_add_tail(&pin_range->node, &gdev->pin_ranges);
2104
2105 return 0;
2106}
2107EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2108
2109/**
2110 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
2111 * @gc: the gpiochip to add the range for
2112 * @pinctl_name: the dev_name() of the pin controller to map to
2113 * @gpio_offset: the start offset in the current gpio_chip number space
2114 * @pin_offset: the start offset in the pin controller number space
2115 * @npins: the number of pins from the offset of each pin space (GPIO and
2116 * pin controller) to accumulate in this range
2117 *
2118 * Returns:
2119 * 0 on success, or a negative error-code on failure.
2120 *
2121 * Calling this function directly from a DeviceTree-supported
2122 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2123 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2124 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
2125 */
2126int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
2127 unsigned int gpio_offset, unsigned int pin_offset,
2128 unsigned int npins)
2129{
2130 struct gpio_pin_range *pin_range;
2131 struct gpio_device *gdev = gc->gpiodev;
2132 int ret;
2133
2134 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2135 if (!pin_range) {
2136 chip_err(gc, "failed to allocate pin ranges\n");
2137 return -ENOMEM;
2138 }
2139
2140 /* Use local offset as range ID */
2141 pin_range->range.id = gpio_offset;
2142 pin_range->range.gc = gc;
2143 pin_range->range.name = gc->label;
2144 pin_range->range.base = gdev->base + gpio_offset;
2145 pin_range->range.pin_base = pin_offset;
2146 pin_range->range.npins = npins;
2147 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
2148 &pin_range->range);
2149 if (IS_ERR(pin_range->pctldev)) {
2150 ret = PTR_ERR(pin_range->pctldev);
2151 chip_err(gc, "could not create pin range\n");
2152 kfree(pin_range);
2153 return ret;
2154 }
2155 chip_dbg(gc, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2156 gpio_offset, gpio_offset + npins - 1,
2157 pinctl_name,
2158 pin_offset, pin_offset + npins - 1);
2159
2160 list_add_tail(&pin_range->node, &gdev->pin_ranges);
2161
2162 return 0;
2163}
2164EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
2165
2166/**
2167 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2168 * @gc: the chip to remove all the mappings for
2169 */
2170void gpiochip_remove_pin_ranges(struct gpio_chip *gc)
2171{
2172 struct gpio_pin_range *pin_range, *tmp;
2173 struct gpio_device *gdev = gc->gpiodev;
2174
2175 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
2176 list_del(&pin_range->node);
2177 pinctrl_remove_gpio_range(pin_range->pctldev,
2178 &pin_range->range);
2179 kfree(pin_range);
2180 }
2181}
2182EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2183
2184#endif /* CONFIG_PINCTRL */
2185
2186/* These "optional" allocation calls help prevent drivers from stomping
2187 * on each other, and help provide better diagnostics in debugfs.
2188 * They're called even less than the "set direction" calls.
2189 */
2190static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
2191{
2192 struct gpio_chip *gc = desc->gdev->chip;
2193 unsigned long flags;
2194 unsigned int offset;
2195 int ret;
2196
2197 if (label) {
2198 label = kstrdup_const(label, GFP_KERNEL);
2199 if (!label)
2200 return -ENOMEM;
2201 }
2202
2203 spin_lock_irqsave(&gpio_lock, flags);
2204
2205 /* NOTE: gpio_request() can be called in early boot,
2206 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
2207 */
2208
2209 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2210 desc_set_label(desc, label ? : "?");
2211 } else {
2212 ret = -EBUSY;
2213 goto out_free_unlock;
2214 }
2215
2216 if (gc->request) {
2217 /* gc->request may sleep */
2218 spin_unlock_irqrestore(&gpio_lock, flags);
2219 offset = gpio_chip_hwgpio(desc);
2220 if (gpiochip_line_is_valid(gc, offset))
2221 ret = gc->request(gc, offset);
2222 else
2223 ret = -EINVAL;
2224 spin_lock_irqsave(&gpio_lock, flags);
2225
2226 if (ret) {
2227 desc_set_label(desc, NULL);
2228 clear_bit(FLAG_REQUESTED, &desc->flags);
2229 goto out_free_unlock;
2230 }
2231 }
2232 if (gc->get_direction) {
2233 /* gc->get_direction may sleep */
2234 spin_unlock_irqrestore(&gpio_lock, flags);
2235 gpiod_get_direction(desc);
2236 spin_lock_irqsave(&gpio_lock, flags);
2237 }
2238 spin_unlock_irqrestore(&gpio_lock, flags);
2239 return 0;
2240
2241out_free_unlock:
2242 spin_unlock_irqrestore(&gpio_lock, flags);
2243 kfree_const(label);
2244 return ret;
2245}
2246
2247/*
2248 * This descriptor validation needs to be inserted verbatim into each
2249 * function taking a descriptor, so we need to use a preprocessor
2250 * macro to avoid endless duplication. If the desc is NULL it is an
2251 * optional GPIO and calls should just bail out.
2252 */
2253static int validate_desc(const struct gpio_desc *desc, const char *func)
2254{
2255 if (!desc)
2256 return 0;
2257 if (IS_ERR(desc)) {
2258 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2259 return PTR_ERR(desc);
2260 }
2261 if (!desc->gdev) {
2262 pr_warn("%s: invalid GPIO (no device)\n", func);
2263 return -EINVAL;
2264 }
2265 if (!desc->gdev->chip) {
2266 dev_warn(&desc->gdev->dev,
2267 "%s: backing chip is gone\n", func);
2268 return 0;
2269 }
2270 return 1;
2271}
2272
2273#define VALIDATE_DESC(desc) do { \
2274 int __valid = validate_desc(desc, __func__); \
2275 if (__valid <= 0) \
2276 return __valid; \
2277 } while (0)
2278
2279#define VALIDATE_DESC_VOID(desc) do { \
2280 int __valid = validate_desc(desc, __func__); \
2281 if (__valid <= 0) \
2282 return; \
2283 } while (0)
2284
2285int gpiod_request(struct gpio_desc *desc, const char *label)
2286{
2287 int ret = -EPROBE_DEFER;
2288
2289 VALIDATE_DESC(desc);
2290
2291 if (try_module_get(desc->gdev->owner)) {
2292 ret = gpiod_request_commit(desc, label);
2293 if (ret)
2294 module_put(desc->gdev->owner);
2295 else
2296 gpio_device_get(desc->gdev);
2297 }
2298
2299 if (ret)
2300 gpiod_dbg(desc, "%s: status %d\n", __func__, ret);
2301
2302 return ret;
2303}
2304
2305static bool gpiod_free_commit(struct gpio_desc *desc)
2306{
2307 struct gpio_chip *gc;
2308 unsigned long flags;
2309 bool ret = false;
2310
2311 might_sleep();
2312
2313 spin_lock_irqsave(&gpio_lock, flags);
2314
2315 gc = desc->gdev->chip;
2316 if (gc && test_bit(FLAG_REQUESTED, &desc->flags)) {
2317 if (gc->free) {
2318 spin_unlock_irqrestore(&gpio_lock, flags);
2319 might_sleep_if(gc->can_sleep);
2320 gc->free(gc, gpio_chip_hwgpio(desc));
2321 spin_lock_irqsave(&gpio_lock, flags);
2322 }
2323 kfree_const(desc->label);
2324 desc_set_label(desc, NULL);
2325 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
2326 clear_bit(FLAG_REQUESTED, &desc->flags);
2327 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
2328 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
2329 clear_bit(FLAG_PULL_UP, &desc->flags);
2330 clear_bit(FLAG_PULL_DOWN, &desc->flags);
2331 clear_bit(FLAG_BIAS_DISABLE, &desc->flags);
2332 clear_bit(FLAG_EDGE_RISING, &desc->flags);
2333 clear_bit(FLAG_EDGE_FALLING, &desc->flags);
2334 clear_bit(FLAG_IS_HOGGED, &desc->flags);
2335#ifdef CONFIG_OF_DYNAMIC
2336 desc->hog = NULL;
2337#endif
2338 ret = true;
2339 }
2340
2341 spin_unlock_irqrestore(&gpio_lock, flags);
2342 gpiod_line_state_notify(desc, GPIOLINE_CHANGED_RELEASED);
2343
2344 return ret;
2345}
2346
2347void gpiod_free(struct gpio_desc *desc)
2348{
2349 /*
2350 * We must not use VALIDATE_DESC_VOID() as the underlying gdev->chip
2351 * may already be NULL but we still want to put the references.
2352 */
2353 if (!desc)
2354 return;
2355
2356 if (!gpiod_free_commit(desc))
2357 WARN_ON(1);
2358
2359 module_put(desc->gdev->owner);
2360 gpio_device_put(desc->gdev);
2361}
2362
2363/**
2364 * gpiochip_dup_line_label - Get a copy of the consumer label.
2365 * @gc: GPIO chip controlling this line.
2366 * @offset: Hardware offset of the line.
2367 *
2368 * Returns:
2369 * Pointer to a copy of the consumer label if the line is requested or NULL
2370 * if it's not. If a valid pointer was returned, it must be freed using
2371 * kfree(). In case of a memory allocation error, the function returns %ENOMEM.
2372 *
2373 * Must not be called from atomic context.
2374 */
2375char *gpiochip_dup_line_label(struct gpio_chip *gc, unsigned int offset)
2376{
2377 struct gpio_desc *desc;
2378 char *label;
2379
2380 desc = gpiochip_get_desc(gc, offset);
2381 if (IS_ERR(desc))
2382 return NULL;
2383
2384 guard(spinlock_irqsave)(&gpio_lock);
2385
2386 if (!test_bit(FLAG_REQUESTED, &desc->flags))
2387 return NULL;
2388
2389 /*
2390 * FIXME: Once we mark gpiod_direction_input/output() and
2391 * gpiod_get_direction() with might_sleep(), we'll be able to protect
2392 * the GPIO descriptors with mutex (while value setting operations will
2393 * become lockless).
2394 *
2395 * Until this happens, this allocation needs to be atomic.
2396 */
2397 label = kstrdup(desc->label, GFP_ATOMIC);
2398 if (!label)
2399 return ERR_PTR(-ENOMEM);
2400
2401 return label;
2402}
2403EXPORT_SYMBOL_GPL(gpiochip_dup_line_label);
2404
2405/**
2406 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2407 * @gc: GPIO chip
2408 * @hwnum: hardware number of the GPIO for which to request the descriptor
2409 * @label: label for the GPIO
2410 * @lflags: lookup flags for this GPIO or 0 if default, this can be used to
2411 * specify things like line inversion semantics with the machine flags
2412 * such as GPIO_OUT_LOW
2413 * @dflags: descriptor request flags for this GPIO or 0 if default, this
2414 * can be used to specify consumer semantics such as open drain
2415 *
2416 * Function allows GPIO chip drivers to request and use their own GPIO
2417 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2418 * function will not increase reference count of the GPIO chip module. This
2419 * allows the GPIO chip module to be unloaded as needed (we assume that the
2420 * GPIO chip driver handles freeing the GPIOs it has requested).
2421 *
2422 * Returns:
2423 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2424 * code on failure.
2425 */
2426struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc,
2427 unsigned int hwnum,
2428 const char *label,
2429 enum gpio_lookup_flags lflags,
2430 enum gpiod_flags dflags)
2431{
2432 struct gpio_desc *desc = gpiochip_get_desc(gc, hwnum);
2433 int ret;
2434
2435 if (IS_ERR(desc)) {
2436 chip_err(gc, "failed to get GPIO descriptor\n");
2437 return desc;
2438 }
2439
2440 ret = gpiod_request_commit(desc, label);
2441 if (ret < 0)
2442 return ERR_PTR(ret);
2443
2444 ret = gpiod_configure_flags(desc, label, lflags, dflags);
2445 if (ret) {
2446 chip_err(gc, "setup of own GPIO %s failed\n", label);
2447 gpiod_free_commit(desc);
2448 return ERR_PTR(ret);
2449 }
2450
2451 return desc;
2452}
2453EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
2454
2455/**
2456 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2457 * @desc: GPIO descriptor to free
2458 *
2459 * Function frees the given GPIO requested previously with
2460 * gpiochip_request_own_desc().
2461 */
2462void gpiochip_free_own_desc(struct gpio_desc *desc)
2463{
2464 if (desc)
2465 gpiod_free_commit(desc);
2466}
2467EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
2468
2469/*
2470 * Drivers MUST set GPIO direction before making get/set calls. In
2471 * some cases this is done in early boot, before IRQs are enabled.
2472 *
2473 * As a rule these aren't called more than once (except for drivers
2474 * using the open-drain emulation idiom) so these are natural places
2475 * to accumulate extra debugging checks. Note that we can't (yet)
2476 * rely on gpio_request() having been called beforehand.
2477 */
2478
2479static int gpio_do_set_config(struct gpio_chip *gc, unsigned int offset,
2480 unsigned long config)
2481{
2482 if (!gc->set_config)
2483 return -ENOTSUPP;
2484
2485 return gc->set_config(gc, offset, config);
2486}
2487
2488static int gpio_set_config_with_argument(struct gpio_desc *desc,
2489 enum pin_config_param mode,
2490 u32 argument)
2491{
2492 struct gpio_chip *gc = desc->gdev->chip;
2493 unsigned long config;
2494
2495 config = pinconf_to_config_packed(mode, argument);
2496 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2497}
2498
2499static int gpio_set_config_with_argument_optional(struct gpio_desc *desc,
2500 enum pin_config_param mode,
2501 u32 argument)
2502{
2503 struct device *dev = &desc->gdev->dev;
2504 int gpio = gpio_chip_hwgpio(desc);
2505 int ret;
2506
2507 ret = gpio_set_config_with_argument(desc, mode, argument);
2508 if (ret != -ENOTSUPP)
2509 return ret;
2510
2511 switch (mode) {
2512 case PIN_CONFIG_PERSIST_STATE:
2513 dev_dbg(dev, "Persistence not supported for GPIO %d\n", gpio);
2514 break;
2515 default:
2516 break;
2517 }
2518
2519 return 0;
2520}
2521
2522static int gpio_set_config(struct gpio_desc *desc, enum pin_config_param mode)
2523{
2524 return gpio_set_config_with_argument(desc, mode, 0);
2525}
2526
2527static int gpio_set_bias(struct gpio_desc *desc)
2528{
2529 enum pin_config_param bias;
2530 unsigned int arg;
2531
2532 if (test_bit(FLAG_BIAS_DISABLE, &desc->flags))
2533 bias = PIN_CONFIG_BIAS_DISABLE;
2534 else if (test_bit(FLAG_PULL_UP, &desc->flags))
2535 bias = PIN_CONFIG_BIAS_PULL_UP;
2536 else if (test_bit(FLAG_PULL_DOWN, &desc->flags))
2537 bias = PIN_CONFIG_BIAS_PULL_DOWN;
2538 else
2539 return 0;
2540
2541 switch (bias) {
2542 case PIN_CONFIG_BIAS_PULL_DOWN:
2543 case PIN_CONFIG_BIAS_PULL_UP:
2544 arg = 1;
2545 break;
2546
2547 default:
2548 arg = 0;
2549 break;
2550 }
2551
2552 return gpio_set_config_with_argument_optional(desc, bias, arg);
2553}
2554
2555/**
2556 * gpio_set_debounce_timeout() - Set debounce timeout
2557 * @desc: GPIO descriptor to set the debounce timeout
2558 * @debounce: Debounce timeout in microseconds
2559 *
2560 * The function calls the certain GPIO driver to set debounce timeout
2561 * in the hardware.
2562 *
2563 * Returns 0 on success, or negative error code otherwise.
2564 */
2565int gpio_set_debounce_timeout(struct gpio_desc *desc, unsigned int debounce)
2566{
2567 return gpio_set_config_with_argument_optional(desc,
2568 PIN_CONFIG_INPUT_DEBOUNCE,
2569 debounce);
2570}
2571
2572/**
2573 * gpiod_direction_input - set the GPIO direction to input
2574 * @desc: GPIO to set to input
2575 *
2576 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2577 * be called safely on it.
2578 *
2579 * Return 0 in case of success, else an error code.
2580 */
2581int gpiod_direction_input(struct gpio_desc *desc)
2582{
2583 struct gpio_chip *gc;
2584 int ret = 0;
2585
2586 VALIDATE_DESC(desc);
2587 gc = desc->gdev->chip;
2588
2589 /*
2590 * It is legal to have no .get() and .direction_input() specified if
2591 * the chip is output-only, but you can't specify .direction_input()
2592 * and not support the .get() operation, that doesn't make sense.
2593 */
2594 if (!gc->get && gc->direction_input) {
2595 gpiod_warn(desc,
2596 "%s: missing get() but have direction_input()\n",
2597 __func__);
2598 return -EIO;
2599 }
2600
2601 /*
2602 * If we have a .direction_input() callback, things are simple,
2603 * just call it. Else we are some input-only chip so try to check the
2604 * direction (if .get_direction() is supported) else we silently
2605 * assume we are in input mode after this.
2606 */
2607 if (gc->direction_input) {
2608 ret = gc->direction_input(gc, gpio_chip_hwgpio(desc));
2609 } else if (gc->get_direction &&
2610 (gc->get_direction(gc, gpio_chip_hwgpio(desc)) != 1)) {
2611 gpiod_warn(desc,
2612 "%s: missing direction_input() operation and line is output\n",
2613 __func__);
2614 return -EIO;
2615 }
2616 if (ret == 0) {
2617 clear_bit(FLAG_IS_OUT, &desc->flags);
2618 ret = gpio_set_bias(desc);
2619 }
2620
2621 trace_gpio_direction(desc_to_gpio(desc), 1, ret);
2622
2623 return ret;
2624}
2625EXPORT_SYMBOL_GPL(gpiod_direction_input);
2626
2627static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
2628{
2629 struct gpio_chip *gc = desc->gdev->chip;
2630 int val = !!value;
2631 int ret = 0;
2632
2633 /*
2634 * It's OK not to specify .direction_output() if the gpiochip is
2635 * output-only, but if there is then not even a .set() operation it
2636 * is pretty tricky to drive the output line.
2637 */
2638 if (!gc->set && !gc->direction_output) {
2639 gpiod_warn(desc,
2640 "%s: missing set() and direction_output() operations\n",
2641 __func__);
2642 return -EIO;
2643 }
2644
2645 if (gc->direction_output) {
2646 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2647 } else {
2648 /* Check that we are in output mode if we can */
2649 if (gc->get_direction &&
2650 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2651 gpiod_warn(desc,
2652 "%s: missing direction_output() operation\n",
2653 __func__);
2654 return -EIO;
2655 }
2656 /*
2657 * If we can't actively set the direction, we are some
2658 * output-only chip, so just drive the output as desired.
2659 */
2660 gc->set(gc, gpio_chip_hwgpio(desc), val);
2661 }
2662
2663 if (!ret)
2664 set_bit(FLAG_IS_OUT, &desc->flags);
2665 trace_gpio_value(desc_to_gpio(desc), 0, val);
2666 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2667 return ret;
2668}
2669
2670/**
2671 * gpiod_direction_output_raw - set the GPIO direction to output
2672 * @desc: GPIO to set to output
2673 * @value: initial output value of the GPIO
2674 *
2675 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2676 * be called safely on it. The initial value of the output must be specified
2677 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2678 *
2679 * Return 0 in case of success, else an error code.
2680 */
2681int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2682{
2683 VALIDATE_DESC(desc);
2684 return gpiod_direction_output_raw_commit(desc, value);
2685}
2686EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2687
2688/**
2689 * gpiod_direction_output - set the GPIO direction to output
2690 * @desc: GPIO to set to output
2691 * @value: initial output value of the GPIO
2692 *
2693 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2694 * be called safely on it. The initial value of the output must be specified
2695 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2696 * account.
2697 *
2698 * Return 0 in case of success, else an error code.
2699 */
2700int gpiod_direction_output(struct gpio_desc *desc, int value)
2701{
2702 int ret;
2703
2704 VALIDATE_DESC(desc);
2705 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2706 value = !value;
2707 else
2708 value = !!value;
2709
2710 /* GPIOs used for enabled IRQs shall not be set as output */
2711 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2712 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
2713 gpiod_err(desc,
2714 "%s: tried to set a GPIO tied to an IRQ as output\n",
2715 __func__);
2716 return -EIO;
2717 }
2718
2719 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2720 /* First see if we can enable open drain in hardware */
2721 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_DRAIN);
2722 if (!ret)
2723 goto set_output_value;
2724 /* Emulate open drain by not actively driving the line high */
2725 if (value) {
2726 ret = gpiod_direction_input(desc);
2727 goto set_output_flag;
2728 }
2729 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2730 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_SOURCE);
2731 if (!ret)
2732 goto set_output_value;
2733 /* Emulate open source by not actively driving the line low */
2734 if (!value) {
2735 ret = gpiod_direction_input(desc);
2736 goto set_output_flag;
2737 }
2738 } else {
2739 gpio_set_config(desc, PIN_CONFIG_DRIVE_PUSH_PULL);
2740 }
2741
2742set_output_value:
2743 ret = gpio_set_bias(desc);
2744 if (ret)
2745 return ret;
2746 return gpiod_direction_output_raw_commit(desc, value);
2747
2748set_output_flag:
2749 /*
2750 * When emulating open-source or open-drain functionalities by not
2751 * actively driving the line (setting mode to input) we still need to
2752 * set the IS_OUT flag or otherwise we won't be able to set the line
2753 * value anymore.
2754 */
2755 if (ret == 0)
2756 set_bit(FLAG_IS_OUT, &desc->flags);
2757 return ret;
2758}
2759EXPORT_SYMBOL_GPL(gpiod_direction_output);
2760
2761/**
2762 * gpiod_enable_hw_timestamp_ns - Enable hardware timestamp in nanoseconds.
2763 *
2764 * @desc: GPIO to enable.
2765 * @flags: Flags related to GPIO edge.
2766 *
2767 * Return 0 in case of success, else negative error code.
2768 */
2769int gpiod_enable_hw_timestamp_ns(struct gpio_desc *desc, unsigned long flags)
2770{
2771 int ret = 0;
2772 struct gpio_chip *gc;
2773
2774 VALIDATE_DESC(desc);
2775
2776 gc = desc->gdev->chip;
2777 if (!gc->en_hw_timestamp) {
2778 gpiod_warn(desc, "%s: hw ts not supported\n", __func__);
2779 return -ENOTSUPP;
2780 }
2781
2782 ret = gc->en_hw_timestamp(gc, gpio_chip_hwgpio(desc), flags);
2783 if (ret)
2784 gpiod_warn(desc, "%s: hw ts request failed\n", __func__);
2785
2786 return ret;
2787}
2788EXPORT_SYMBOL_GPL(gpiod_enable_hw_timestamp_ns);
2789
2790/**
2791 * gpiod_disable_hw_timestamp_ns - Disable hardware timestamp.
2792 *
2793 * @desc: GPIO to disable.
2794 * @flags: Flags related to GPIO edge, same value as used during enable call.
2795 *
2796 * Return 0 in case of success, else negative error code.
2797 */
2798int gpiod_disable_hw_timestamp_ns(struct gpio_desc *desc, unsigned long flags)
2799{
2800 int ret = 0;
2801 struct gpio_chip *gc;
2802
2803 VALIDATE_DESC(desc);
2804
2805 gc = desc->gdev->chip;
2806 if (!gc->dis_hw_timestamp) {
2807 gpiod_warn(desc, "%s: hw ts not supported\n", __func__);
2808 return -ENOTSUPP;
2809 }
2810
2811 ret = gc->dis_hw_timestamp(gc, gpio_chip_hwgpio(desc), flags);
2812 if (ret)
2813 gpiod_warn(desc, "%s: hw ts release failed\n", __func__);
2814
2815 return ret;
2816}
2817EXPORT_SYMBOL_GPL(gpiod_disable_hw_timestamp_ns);
2818
2819/**
2820 * gpiod_set_config - sets @config for a GPIO
2821 * @desc: descriptor of the GPIO for which to set the configuration
2822 * @config: Same packed config format as generic pinconf
2823 *
2824 * Returns:
2825 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2826 * configuration.
2827 */
2828int gpiod_set_config(struct gpio_desc *desc, unsigned long config)
2829{
2830 struct gpio_chip *gc;
2831
2832 VALIDATE_DESC(desc);
2833 gc = desc->gdev->chip;
2834
2835 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2836}
2837EXPORT_SYMBOL_GPL(gpiod_set_config);
2838
2839/**
2840 * gpiod_set_debounce - sets @debounce time for a GPIO
2841 * @desc: descriptor of the GPIO for which to set debounce time
2842 * @debounce: debounce time in microseconds
2843 *
2844 * Returns:
2845 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2846 * debounce time.
2847 */
2848int gpiod_set_debounce(struct gpio_desc *desc, unsigned int debounce)
2849{
2850 unsigned long config;
2851
2852 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2853 return gpiod_set_config(desc, config);
2854}
2855EXPORT_SYMBOL_GPL(gpiod_set_debounce);
2856
2857/**
2858 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2859 * @desc: descriptor of the GPIO for which to configure persistence
2860 * @transitory: True to lose state on suspend or reset, false for persistence
2861 *
2862 * Returns:
2863 * 0 on success, otherwise a negative error code.
2864 */
2865int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2866{
2867 VALIDATE_DESC(desc);
2868 /*
2869 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2870 * persistence state.
2871 */
2872 assign_bit(FLAG_TRANSITORY, &desc->flags, transitory);
2873
2874 /* If the driver supports it, set the persistence state now */
2875 return gpio_set_config_with_argument_optional(desc,
2876 PIN_CONFIG_PERSIST_STATE,
2877 !transitory);
2878}
2879
2880/**
2881 * gpiod_is_active_low - test whether a GPIO is active-low or not
2882 * @desc: the gpio descriptor to test
2883 *
2884 * Returns 1 if the GPIO is active-low, 0 otherwise.
2885 */
2886int gpiod_is_active_low(const struct gpio_desc *desc)
2887{
2888 VALIDATE_DESC(desc);
2889 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
2890}
2891EXPORT_SYMBOL_GPL(gpiod_is_active_low);
2892
2893/**
2894 * gpiod_toggle_active_low - toggle whether a GPIO is active-low or not
2895 * @desc: the gpio descriptor to change
2896 */
2897void gpiod_toggle_active_low(struct gpio_desc *desc)
2898{
2899 VALIDATE_DESC_VOID(desc);
2900 change_bit(FLAG_ACTIVE_LOW, &desc->flags);
2901}
2902EXPORT_SYMBOL_GPL(gpiod_toggle_active_low);
2903
2904static int gpio_chip_get_value(struct gpio_chip *gc, const struct gpio_desc *desc)
2905{
2906 return gc->get ? gc->get(gc, gpio_chip_hwgpio(desc)) : -EIO;
2907}
2908
2909/* I/O calls are only valid after configuration completed; the relevant
2910 * "is this a valid GPIO" error checks should already have been done.
2911 *
2912 * "Get" operations are often inlinable as reading a pin value register,
2913 * and masking the relevant bit in that register.
2914 *
2915 * When "set" operations are inlinable, they involve writing that mask to
2916 * one register to set a low value, or a different register to set it high.
2917 * Otherwise locking is needed, so there may be little value to inlining.
2918 *
2919 *------------------------------------------------------------------------
2920 *
2921 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2922 * have requested the GPIO. That can include implicit requesting by
2923 * a direction setting call. Marking a gpio as requested locks its chip
2924 * in memory, guaranteeing that these table lookups need no more locking
2925 * and that gpiochip_remove() will fail.
2926 *
2927 * REVISIT when debugging, consider adding some instrumentation to ensure
2928 * that the GPIO was actually requested.
2929 */
2930
2931static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
2932{
2933 struct gpio_chip *gc;
2934 int value;
2935
2936 gc = desc->gdev->chip;
2937 value = gpio_chip_get_value(gc, desc);
2938 value = value < 0 ? value : !!value;
2939 trace_gpio_value(desc_to_gpio(desc), 1, value);
2940 return value;
2941}
2942
2943static int gpio_chip_get_multiple(struct gpio_chip *gc,
2944 unsigned long *mask, unsigned long *bits)
2945{
2946 if (gc->get_multiple)
2947 return gc->get_multiple(gc, mask, bits);
2948 if (gc->get) {
2949 int i, value;
2950
2951 for_each_set_bit(i, mask, gc->ngpio) {
2952 value = gc->get(gc, i);
2953 if (value < 0)
2954 return value;
2955 __assign_bit(i, bits, value);
2956 }
2957 return 0;
2958 }
2959 return -EIO;
2960}
2961
2962int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2963 unsigned int array_size,
2964 struct gpio_desc **desc_array,
2965 struct gpio_array *array_info,
2966 unsigned long *value_bitmap)
2967{
2968 int ret, i = 0;
2969
2970 /*
2971 * Validate array_info against desc_array and its size.
2972 * It should immediately follow desc_array if both
2973 * have been obtained from the same gpiod_get_array() call.
2974 */
2975 if (array_info && array_info->desc == desc_array &&
2976 array_size <= array_info->size &&
2977 (void *)array_info == desc_array + array_info->size) {
2978 if (!can_sleep)
2979 WARN_ON(array_info->chip->can_sleep);
2980
2981 ret = gpio_chip_get_multiple(array_info->chip,
2982 array_info->get_mask,
2983 value_bitmap);
2984 if (ret)
2985 return ret;
2986
2987 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2988 bitmap_xor(value_bitmap, value_bitmap,
2989 array_info->invert_mask, array_size);
2990
2991 i = find_first_zero_bit(array_info->get_mask, array_size);
2992 if (i == array_size)
2993 return 0;
2994 } else {
2995 array_info = NULL;
2996 }
2997
2998 while (i < array_size) {
2999 struct gpio_chip *gc = desc_array[i]->gdev->chip;
3000 DECLARE_BITMAP(fastpath_mask, FASTPATH_NGPIO);
3001 DECLARE_BITMAP(fastpath_bits, FASTPATH_NGPIO);
3002 unsigned long *mask, *bits;
3003 int first, j;
3004
3005 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
3006 mask = fastpath_mask;
3007 bits = fastpath_bits;
3008 } else {
3009 gfp_t flags = can_sleep ? GFP_KERNEL : GFP_ATOMIC;
3010
3011 mask = bitmap_alloc(gc->ngpio, flags);
3012 if (!mask)
3013 return -ENOMEM;
3014
3015 bits = bitmap_alloc(gc->ngpio, flags);
3016 if (!bits) {
3017 bitmap_free(mask);
3018 return -ENOMEM;
3019 }
3020 }
3021
3022 bitmap_zero(mask, gc->ngpio);
3023
3024 if (!can_sleep)
3025 WARN_ON(gc->can_sleep);
3026
3027 /* collect all inputs belonging to the same chip */
3028 first = i;
3029 do {
3030 const struct gpio_desc *desc = desc_array[i];
3031 int hwgpio = gpio_chip_hwgpio(desc);
3032
3033 __set_bit(hwgpio, mask);
3034 i++;
3035
3036 if (array_info)
3037 i = find_next_zero_bit(array_info->get_mask,
3038 array_size, i);
3039 } while ((i < array_size) &&
3040 (desc_array[i]->gdev->chip == gc));
3041
3042 ret = gpio_chip_get_multiple(gc, mask, bits);
3043 if (ret) {
3044 if (mask != fastpath_mask)
3045 bitmap_free(mask);
3046 if (bits != fastpath_bits)
3047 bitmap_free(bits);
3048 return ret;
3049 }
3050
3051 for (j = first; j < i; ) {
3052 const struct gpio_desc *desc = desc_array[j];
3053 int hwgpio = gpio_chip_hwgpio(desc);
3054 int value = test_bit(hwgpio, bits);
3055
3056 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3057 value = !value;
3058 __assign_bit(j, value_bitmap, value);
3059 trace_gpio_value(desc_to_gpio(desc), 1, value);
3060 j++;
3061
3062 if (array_info)
3063 j = find_next_zero_bit(array_info->get_mask, i,
3064 j);
3065 }
3066
3067 if (mask != fastpath_mask)
3068 bitmap_free(mask);
3069 if (bits != fastpath_bits)
3070 bitmap_free(bits);
3071 }
3072 return 0;
3073}
3074
3075/**
3076 * gpiod_get_raw_value() - return a gpio's raw value
3077 * @desc: gpio whose value will be returned
3078 *
3079 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
3080 * its ACTIVE_LOW status, or negative errno on failure.
3081 *
3082 * This function can be called from contexts where we cannot sleep, and will
3083 * complain if the GPIO chip functions potentially sleep.
3084 */
3085int gpiod_get_raw_value(const struct gpio_desc *desc)
3086{
3087 VALIDATE_DESC(desc);
3088 /* Should be using gpiod_get_raw_value_cansleep() */
3089 WARN_ON(desc->gdev->chip->can_sleep);
3090 return gpiod_get_raw_value_commit(desc);
3091}
3092EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
3093
3094/**
3095 * gpiod_get_value() - return a gpio's value
3096 * @desc: gpio whose value will be returned
3097 *
3098 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
3099 * account, or negative errno on failure.
3100 *
3101 * This function can be called from contexts where we cannot sleep, and will
3102 * complain if the GPIO chip functions potentially sleep.
3103 */
3104int gpiod_get_value(const struct gpio_desc *desc)
3105{
3106 int value;
3107
3108 VALIDATE_DESC(desc);
3109 /* Should be using gpiod_get_value_cansleep() */
3110 WARN_ON(desc->gdev->chip->can_sleep);
3111
3112 value = gpiod_get_raw_value_commit(desc);
3113 if (value < 0)
3114 return value;
3115
3116 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3117 value = !value;
3118
3119 return value;
3120}
3121EXPORT_SYMBOL_GPL(gpiod_get_value);
3122
3123/**
3124 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
3125 * @array_size: number of elements in the descriptor array / value bitmap
3126 * @desc_array: array of GPIO descriptors whose values will be read
3127 * @array_info: information on applicability of fast bitmap processing path
3128 * @value_bitmap: bitmap to store the read values
3129 *
3130 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3131 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3132 * else an error code.
3133 *
3134 * This function can be called from contexts where we cannot sleep,
3135 * and it will complain if the GPIO chip functions potentially sleep.
3136 */
3137int gpiod_get_raw_array_value(unsigned int array_size,
3138 struct gpio_desc **desc_array,
3139 struct gpio_array *array_info,
3140 unsigned long *value_bitmap)
3141{
3142 if (!desc_array)
3143 return -EINVAL;
3144 return gpiod_get_array_value_complex(true, false, array_size,
3145 desc_array, array_info,
3146 value_bitmap);
3147}
3148EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
3149
3150/**
3151 * gpiod_get_array_value() - read values from an array of GPIOs
3152 * @array_size: number of elements in the descriptor array / value bitmap
3153 * @desc_array: array of GPIO descriptors whose values will be read
3154 * @array_info: information on applicability of fast bitmap processing path
3155 * @value_bitmap: bitmap to store the read values
3156 *
3157 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3158 * into account. Return 0 in case of success, else an error code.
3159 *
3160 * This function can be called from contexts where we cannot sleep,
3161 * and it will complain if the GPIO chip functions potentially sleep.
3162 */
3163int gpiod_get_array_value(unsigned int array_size,
3164 struct gpio_desc **desc_array,
3165 struct gpio_array *array_info,
3166 unsigned long *value_bitmap)
3167{
3168 if (!desc_array)
3169 return -EINVAL;
3170 return gpiod_get_array_value_complex(false, false, array_size,
3171 desc_array, array_info,
3172 value_bitmap);
3173}
3174EXPORT_SYMBOL_GPL(gpiod_get_array_value);
3175
3176/*
3177 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
3178 * @desc: gpio descriptor whose state need to be set.
3179 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
3180 */
3181static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
3182{
3183 int ret = 0;
3184 struct gpio_chip *gc = desc->gdev->chip;
3185 int offset = gpio_chip_hwgpio(desc);
3186
3187 if (value) {
3188 ret = gc->direction_input(gc, offset);
3189 } else {
3190 ret = gc->direction_output(gc, offset, 0);
3191 if (!ret)
3192 set_bit(FLAG_IS_OUT, &desc->flags);
3193 }
3194 trace_gpio_direction(desc_to_gpio(desc), value, ret);
3195 if (ret < 0)
3196 gpiod_err(desc,
3197 "%s: Error in set_value for open drain err %d\n",
3198 __func__, ret);
3199}
3200
3201/*
3202 * _gpio_set_open_source_value() - Set the open source gpio's value.
3203 * @desc: gpio descriptor whose state need to be set.
3204 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
3205 */
3206static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
3207{
3208 int ret = 0;
3209 struct gpio_chip *gc = desc->gdev->chip;
3210 int offset = gpio_chip_hwgpio(desc);
3211
3212 if (value) {
3213 ret = gc->direction_output(gc, offset, 1);
3214 if (!ret)
3215 set_bit(FLAG_IS_OUT, &desc->flags);
3216 } else {
3217 ret = gc->direction_input(gc, offset);
3218 }
3219 trace_gpio_direction(desc_to_gpio(desc), !value, ret);
3220 if (ret < 0)
3221 gpiod_err(desc,
3222 "%s: Error in set_value for open source err %d\n",
3223 __func__, ret);
3224}
3225
3226static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
3227{
3228 struct gpio_chip *gc;
3229
3230 gc = desc->gdev->chip;
3231 trace_gpio_value(desc_to_gpio(desc), 0, value);
3232 gc->set(gc, gpio_chip_hwgpio(desc), value);
3233}
3234
3235/*
3236 * set multiple outputs on the same chip;
3237 * use the chip's set_multiple function if available;
3238 * otherwise set the outputs sequentially;
3239 * @chip: the GPIO chip we operate on
3240 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
3241 * defines which outputs are to be changed
3242 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
3243 * defines the values the outputs specified by mask are to be set to
3244 */
3245static void gpio_chip_set_multiple(struct gpio_chip *gc,
3246 unsigned long *mask, unsigned long *bits)
3247{
3248 if (gc->set_multiple) {
3249 gc->set_multiple(gc, mask, bits);
3250 } else {
3251 unsigned int i;
3252
3253 /* set outputs if the corresponding mask bit is set */
3254 for_each_set_bit(i, mask, gc->ngpio)
3255 gc->set(gc, i, test_bit(i, bits));
3256 }
3257}
3258
3259int gpiod_set_array_value_complex(bool raw, bool can_sleep,
3260 unsigned int array_size,
3261 struct gpio_desc **desc_array,
3262 struct gpio_array *array_info,
3263 unsigned long *value_bitmap)
3264{
3265 int i = 0;
3266
3267 /*
3268 * Validate array_info against desc_array and its size.
3269 * It should immediately follow desc_array if both
3270 * have been obtained from the same gpiod_get_array() call.
3271 */
3272 if (array_info && array_info->desc == desc_array &&
3273 array_size <= array_info->size &&
3274 (void *)array_info == desc_array + array_info->size) {
3275 if (!can_sleep)
3276 WARN_ON(array_info->chip->can_sleep);
3277
3278 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
3279 bitmap_xor(value_bitmap, value_bitmap,
3280 array_info->invert_mask, array_size);
3281
3282 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
3283 value_bitmap);
3284
3285 i = find_first_zero_bit(array_info->set_mask, array_size);
3286 if (i == array_size)
3287 return 0;
3288 } else {
3289 array_info = NULL;
3290 }
3291
3292 while (i < array_size) {
3293 struct gpio_chip *gc = desc_array[i]->gdev->chip;
3294 DECLARE_BITMAP(fastpath_mask, FASTPATH_NGPIO);
3295 DECLARE_BITMAP(fastpath_bits, FASTPATH_NGPIO);
3296 unsigned long *mask, *bits;
3297 int count = 0;
3298
3299 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
3300 mask = fastpath_mask;
3301 bits = fastpath_bits;
3302 } else {
3303 gfp_t flags = can_sleep ? GFP_KERNEL : GFP_ATOMIC;
3304
3305 mask = bitmap_alloc(gc->ngpio, flags);
3306 if (!mask)
3307 return -ENOMEM;
3308
3309 bits = bitmap_alloc(gc->ngpio, flags);
3310 if (!bits) {
3311 bitmap_free(mask);
3312 return -ENOMEM;
3313 }
3314 }
3315
3316 bitmap_zero(mask, gc->ngpio);
3317
3318 if (!can_sleep)
3319 WARN_ON(gc->can_sleep);
3320
3321 do {
3322 struct gpio_desc *desc = desc_array[i];
3323 int hwgpio = gpio_chip_hwgpio(desc);
3324 int value = test_bit(i, value_bitmap);
3325
3326 /*
3327 * Pins applicable for fast input but not for
3328 * fast output processing may have been already
3329 * inverted inside the fast path, skip them.
3330 */
3331 if (!raw && !(array_info &&
3332 test_bit(i, array_info->invert_mask)) &&
3333 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3334 value = !value;
3335 trace_gpio_value(desc_to_gpio(desc), 0, value);
3336 /*
3337 * collect all normal outputs belonging to the same chip
3338 * open drain and open source outputs are set individually
3339 */
3340 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
3341 gpio_set_open_drain_value_commit(desc, value);
3342 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
3343 gpio_set_open_source_value_commit(desc, value);
3344 } else {
3345 __set_bit(hwgpio, mask);
3346 __assign_bit(hwgpio, bits, value);
3347 count++;
3348 }
3349 i++;
3350
3351 if (array_info)
3352 i = find_next_zero_bit(array_info->set_mask,
3353 array_size, i);
3354 } while ((i < array_size) &&
3355 (desc_array[i]->gdev->chip == gc));
3356 /* push collected bits to outputs */
3357 if (count != 0)
3358 gpio_chip_set_multiple(gc, mask, bits);
3359
3360 if (mask != fastpath_mask)
3361 bitmap_free(mask);
3362 if (bits != fastpath_bits)
3363 bitmap_free(bits);
3364 }
3365 return 0;
3366}
3367
3368/**
3369 * gpiod_set_raw_value() - assign a gpio's raw value
3370 * @desc: gpio whose value will be assigned
3371 * @value: value to assign
3372 *
3373 * Set the raw value of the GPIO, i.e. the value of its physical line without
3374 * regard for its ACTIVE_LOW status.
3375 *
3376 * This function can be called from contexts where we cannot sleep, and will
3377 * complain if the GPIO chip functions potentially sleep.
3378 */
3379void gpiod_set_raw_value(struct gpio_desc *desc, int value)
3380{
3381 VALIDATE_DESC_VOID(desc);
3382 /* Should be using gpiod_set_raw_value_cansleep() */
3383 WARN_ON(desc->gdev->chip->can_sleep);
3384 gpiod_set_raw_value_commit(desc, value);
3385}
3386EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
3387
3388/**
3389 * gpiod_set_value_nocheck() - set a GPIO line value without checking
3390 * @desc: the descriptor to set the value on
3391 * @value: value to set
3392 *
3393 * This sets the value of a GPIO line backing a descriptor, applying
3394 * different semantic quirks like active low and open drain/source
3395 * handling.
3396 */
3397static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3398{
3399 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3400 value = !value;
3401 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3402 gpio_set_open_drain_value_commit(desc, value);
3403 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3404 gpio_set_open_source_value_commit(desc, value);
3405 else
3406 gpiod_set_raw_value_commit(desc, value);
3407}
3408
3409/**
3410 * gpiod_set_value() - assign a gpio's value
3411 * @desc: gpio whose value will be assigned
3412 * @value: value to assign
3413 *
3414 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3415 * OPEN_DRAIN and OPEN_SOURCE flags into account.
3416 *
3417 * This function can be called from contexts where we cannot sleep, and will
3418 * complain if the GPIO chip functions potentially sleep.
3419 */
3420void gpiod_set_value(struct gpio_desc *desc, int value)
3421{
3422 VALIDATE_DESC_VOID(desc);
3423 /* Should be using gpiod_set_value_cansleep() */
3424 WARN_ON(desc->gdev->chip->can_sleep);
3425 gpiod_set_value_nocheck(desc, value);
3426}
3427EXPORT_SYMBOL_GPL(gpiod_set_value);
3428
3429/**
3430 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
3431 * @array_size: number of elements in the descriptor array / value bitmap
3432 * @desc_array: array of GPIO descriptors whose values will be assigned
3433 * @array_info: information on applicability of fast bitmap processing path
3434 * @value_bitmap: bitmap of values to assign
3435 *
3436 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3437 * without regard for their ACTIVE_LOW status.
3438 *
3439 * This function can be called from contexts where we cannot sleep, and will
3440 * complain if the GPIO chip functions potentially sleep.
3441 */
3442int gpiod_set_raw_array_value(unsigned int array_size,
3443 struct gpio_desc **desc_array,
3444 struct gpio_array *array_info,
3445 unsigned long *value_bitmap)
3446{
3447 if (!desc_array)
3448 return -EINVAL;
3449 return gpiod_set_array_value_complex(true, false, array_size,
3450 desc_array, array_info, value_bitmap);
3451}
3452EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
3453
3454/**
3455 * gpiod_set_array_value() - assign values to an array of GPIOs
3456 * @array_size: number of elements in the descriptor array / value bitmap
3457 * @desc_array: array of GPIO descriptors whose values will be assigned
3458 * @array_info: information on applicability of fast bitmap processing path
3459 * @value_bitmap: bitmap of values to assign
3460 *
3461 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3462 * into account.
3463 *
3464 * This function can be called from contexts where we cannot sleep, and will
3465 * complain if the GPIO chip functions potentially sleep.
3466 */
3467int gpiod_set_array_value(unsigned int array_size,
3468 struct gpio_desc **desc_array,
3469 struct gpio_array *array_info,
3470 unsigned long *value_bitmap)
3471{
3472 if (!desc_array)
3473 return -EINVAL;
3474 return gpiod_set_array_value_complex(false, false, array_size,
3475 desc_array, array_info,
3476 value_bitmap);
3477}
3478EXPORT_SYMBOL_GPL(gpiod_set_array_value);
3479
3480/**
3481 * gpiod_cansleep() - report whether gpio value access may sleep
3482 * @desc: gpio to check
3483 *
3484 */
3485int gpiod_cansleep(const struct gpio_desc *desc)
3486{
3487 VALIDATE_DESC(desc);
3488 return desc->gdev->chip->can_sleep;
3489}
3490EXPORT_SYMBOL_GPL(gpiod_cansleep);
3491
3492/**
3493 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3494 * @desc: gpio to set the consumer name on
3495 * @name: the new consumer name
3496 */
3497int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
3498{
3499 VALIDATE_DESC(desc);
3500 if (name) {
3501 name = kstrdup_const(name, GFP_KERNEL);
3502 if (!name)
3503 return -ENOMEM;
3504 }
3505
3506 kfree_const(desc->label);
3507 desc_set_label(desc, name);
3508
3509 return 0;
3510}
3511EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3512
3513/**
3514 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3515 * @desc: gpio whose IRQ will be returned (already requested)
3516 *
3517 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3518 * error.
3519 */
3520int gpiod_to_irq(const struct gpio_desc *desc)
3521{
3522 struct gpio_chip *gc;
3523 int offset;
3524
3525 /*
3526 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3527 * requires this function to not return zero on an invalid descriptor
3528 * but rather a negative error number.
3529 */
3530 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
3531 return -EINVAL;
3532
3533 gc = desc->gdev->chip;
3534 offset = gpio_chip_hwgpio(desc);
3535 if (gc->to_irq) {
3536 int retirq = gc->to_irq(gc, offset);
3537
3538 /* Zero means NO_IRQ */
3539 if (!retirq)
3540 return -ENXIO;
3541
3542 return retirq;
3543 }
3544#ifdef CONFIG_GPIOLIB_IRQCHIP
3545 if (gc->irq.chip) {
3546 /*
3547 * Avoid race condition with other code, which tries to lookup
3548 * an IRQ before the irqchip has been properly registered,
3549 * i.e. while gpiochip is still being brought up.
3550 */
3551 return -EPROBE_DEFER;
3552 }
3553#endif
3554 return -ENXIO;
3555}
3556EXPORT_SYMBOL_GPL(gpiod_to_irq);
3557
3558/**
3559 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
3560 * @gc: the chip the GPIO to lock belongs to
3561 * @offset: the offset of the GPIO to lock as IRQ
3562 *
3563 * This is used directly by GPIO drivers that want to lock down
3564 * a certain GPIO line to be used for IRQs.
3565 */
3566int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset)
3567{
3568 struct gpio_desc *desc;
3569
3570 desc = gpiochip_get_desc(gc, offset);
3571 if (IS_ERR(desc))
3572 return PTR_ERR(desc);
3573
3574 /*
3575 * If it's fast: flush the direction setting if something changed
3576 * behind our back
3577 */
3578 if (!gc->can_sleep && gc->get_direction) {
3579 int dir = gpiod_get_direction(desc);
3580
3581 if (dir < 0) {
3582 chip_err(gc, "%s: cannot get GPIO direction\n",
3583 __func__);
3584 return dir;
3585 }
3586 }
3587
3588 /* To be valid for IRQ the line needs to be input or open drain */
3589 if (test_bit(FLAG_IS_OUT, &desc->flags) &&
3590 !test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
3591 chip_err(gc,
3592 "%s: tried to flag a GPIO set as output for IRQ\n",
3593 __func__);
3594 return -EIO;
3595 }
3596
3597 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
3598 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3599
3600 /*
3601 * If the consumer has not set up a label (such as when the
3602 * IRQ is referenced from .to_irq()) we set up a label here
3603 * so it is clear this is used as an interrupt.
3604 */
3605 if (!desc->label)
3606 desc_set_label(desc, "interrupt");
3607
3608 return 0;
3609}
3610EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
3611
3612/**
3613 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
3614 * @gc: the chip the GPIO to lock belongs to
3615 * @offset: the offset of the GPIO to lock as IRQ
3616 *
3617 * This is used directly by GPIO drivers that want to indicate
3618 * that a certain GPIO is no longer used exclusively for IRQ.
3619 */
3620void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset)
3621{
3622 struct gpio_desc *desc;
3623
3624 desc = gpiochip_get_desc(gc, offset);
3625 if (IS_ERR(desc))
3626 return;
3627
3628 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
3629 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3630
3631 /* If we only had this marking, erase it */
3632 if (desc->label && !strcmp(desc->label, "interrupt"))
3633 desc_set_label(desc, NULL);
3634}
3635EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
3636
3637void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset)
3638{
3639 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
3640
3641 if (!IS_ERR(desc) &&
3642 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3643 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3644}
3645EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3646
3647void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset)
3648{
3649 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
3650
3651 if (!IS_ERR(desc) &&
3652 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3653 /*
3654 * We must not be output when using IRQ UNLESS we are
3655 * open drain.
3656 */
3657 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags) &&
3658 !test_bit(FLAG_OPEN_DRAIN, &desc->flags));
3659 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3660 }
3661}
3662EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3663
3664bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset)
3665{
3666 if (offset >= gc->ngpio)
3667 return false;
3668
3669 return test_bit(FLAG_USED_AS_IRQ, &gc->gpiodev->descs[offset].flags);
3670}
3671EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3672
3673int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset)
3674{
3675 int ret;
3676
3677 if (!try_module_get(gc->gpiodev->owner))
3678 return -ENODEV;
3679
3680 ret = gpiochip_lock_as_irq(gc, offset);
3681 if (ret) {
3682 chip_err(gc, "unable to lock HW IRQ %u for IRQ\n", offset);
3683 module_put(gc->gpiodev->owner);
3684 return ret;
3685 }
3686 return 0;
3687}
3688EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3689
3690void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset)
3691{
3692 gpiochip_unlock_as_irq(gc, offset);
3693 module_put(gc->gpiodev->owner);
3694}
3695EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3696
3697bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset)
3698{
3699 if (offset >= gc->ngpio)
3700 return false;
3701
3702 return test_bit(FLAG_OPEN_DRAIN, &gc->gpiodev->descs[offset].flags);
3703}
3704EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3705
3706bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset)
3707{
3708 if (offset >= gc->ngpio)
3709 return false;
3710
3711 return test_bit(FLAG_OPEN_SOURCE, &gc->gpiodev->descs[offset].flags);
3712}
3713EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3714
3715bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset)
3716{
3717 if (offset >= gc->ngpio)
3718 return false;
3719
3720 return !test_bit(FLAG_TRANSITORY, &gc->gpiodev->descs[offset].flags);
3721}
3722EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3723
3724/**
3725 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3726 * @desc: gpio whose value will be returned
3727 *
3728 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
3729 * its ACTIVE_LOW status, or negative errno on failure.
3730 *
3731 * This function is to be called from contexts that can sleep.
3732 */
3733int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
3734{
3735 might_sleep();
3736 VALIDATE_DESC(desc);
3737 return gpiod_get_raw_value_commit(desc);
3738}
3739EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
3740
3741/**
3742 * gpiod_get_value_cansleep() - return a gpio's value
3743 * @desc: gpio whose value will be returned
3744 *
3745 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
3746 * account, or negative errno on failure.
3747 *
3748 * This function is to be called from contexts that can sleep.
3749 */
3750int gpiod_get_value_cansleep(const struct gpio_desc *desc)
3751{
3752 int value;
3753
3754 might_sleep();
3755 VALIDATE_DESC(desc);
3756 value = gpiod_get_raw_value_commit(desc);
3757 if (value < 0)
3758 return value;
3759
3760 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3761 value = !value;
3762
3763 return value;
3764}
3765EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
3766
3767/**
3768 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
3769 * @array_size: number of elements in the descriptor array / value bitmap
3770 * @desc_array: array of GPIO descriptors whose values will be read
3771 * @array_info: information on applicability of fast bitmap processing path
3772 * @value_bitmap: bitmap to store the read values
3773 *
3774 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3775 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3776 * else an error code.
3777 *
3778 * This function is to be called from contexts that can sleep.
3779 */
3780int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3781 struct gpio_desc **desc_array,
3782 struct gpio_array *array_info,
3783 unsigned long *value_bitmap)
3784{
3785 might_sleep();
3786 if (!desc_array)
3787 return -EINVAL;
3788 return gpiod_get_array_value_complex(true, true, array_size,
3789 desc_array, array_info,
3790 value_bitmap);
3791}
3792EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3793
3794/**
3795 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
3796 * @array_size: number of elements in the descriptor array / value bitmap
3797 * @desc_array: array of GPIO descriptors whose values will be read
3798 * @array_info: information on applicability of fast bitmap processing path
3799 * @value_bitmap: bitmap to store the read values
3800 *
3801 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3802 * into account. Return 0 in case of success, else an error code.
3803 *
3804 * This function is to be called from contexts that can sleep.
3805 */
3806int gpiod_get_array_value_cansleep(unsigned int array_size,
3807 struct gpio_desc **desc_array,
3808 struct gpio_array *array_info,
3809 unsigned long *value_bitmap)
3810{
3811 might_sleep();
3812 if (!desc_array)
3813 return -EINVAL;
3814 return gpiod_get_array_value_complex(false, true, array_size,
3815 desc_array, array_info,
3816 value_bitmap);
3817}
3818EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3819
3820/**
3821 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3822 * @desc: gpio whose value will be assigned
3823 * @value: value to assign
3824 *
3825 * Set the raw value of the GPIO, i.e. the value of its physical line without
3826 * regard for its ACTIVE_LOW status.
3827 *
3828 * This function is to be called from contexts that can sleep.
3829 */
3830void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
3831{
3832 might_sleep();
3833 VALIDATE_DESC_VOID(desc);
3834 gpiod_set_raw_value_commit(desc, value);
3835}
3836EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
3837
3838/**
3839 * gpiod_set_value_cansleep() - assign a gpio's value
3840 * @desc: gpio whose value will be assigned
3841 * @value: value to assign
3842 *
3843 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3844 * account
3845 *
3846 * This function is to be called from contexts that can sleep.
3847 */
3848void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
3849{
3850 might_sleep();
3851 VALIDATE_DESC_VOID(desc);
3852 gpiod_set_value_nocheck(desc, value);
3853}
3854EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
3855
3856/**
3857 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
3858 * @array_size: number of elements in the descriptor array / value bitmap
3859 * @desc_array: array of GPIO descriptors whose values will be assigned
3860 * @array_info: information on applicability of fast bitmap processing path
3861 * @value_bitmap: bitmap of values to assign
3862 *
3863 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3864 * without regard for their ACTIVE_LOW status.
3865 *
3866 * This function is to be called from contexts that can sleep.
3867 */
3868int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
3869 struct gpio_desc **desc_array,
3870 struct gpio_array *array_info,
3871 unsigned long *value_bitmap)
3872{
3873 might_sleep();
3874 if (!desc_array)
3875 return -EINVAL;
3876 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
3877 array_info, value_bitmap);
3878}
3879EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
3880
3881/**
3882 * gpiod_add_lookup_tables() - register GPIO device consumers
3883 * @tables: list of tables of consumers to register
3884 * @n: number of tables in the list
3885 */
3886void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3887{
3888 unsigned int i;
3889
3890 mutex_lock(&gpio_lookup_lock);
3891
3892 for (i = 0; i < n; i++)
3893 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3894
3895 mutex_unlock(&gpio_lookup_lock);
3896}
3897
3898/**
3899 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
3900 * @array_size: number of elements in the descriptor array / value bitmap
3901 * @desc_array: array of GPIO descriptors whose values will be assigned
3902 * @array_info: information on applicability of fast bitmap processing path
3903 * @value_bitmap: bitmap of values to assign
3904 *
3905 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3906 * into account.
3907 *
3908 * This function is to be called from contexts that can sleep.
3909 */
3910int gpiod_set_array_value_cansleep(unsigned int array_size,
3911 struct gpio_desc **desc_array,
3912 struct gpio_array *array_info,
3913 unsigned long *value_bitmap)
3914{
3915 might_sleep();
3916 if (!desc_array)
3917 return -EINVAL;
3918 return gpiod_set_array_value_complex(false, true, array_size,
3919 desc_array, array_info,
3920 value_bitmap);
3921}
3922EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
3923
3924void gpiod_line_state_notify(struct gpio_desc *desc, unsigned long action)
3925{
3926 blocking_notifier_call_chain(&desc->gdev->line_state_notifier,
3927 action, desc);
3928}
3929
3930/**
3931 * gpiod_add_lookup_table() - register GPIO device consumers
3932 * @table: table of consumers to register
3933 */
3934void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
3935{
3936 gpiod_add_lookup_tables(&table, 1);
3937}
3938EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
3939
3940/**
3941 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3942 * @table: table of consumers to unregister
3943 */
3944void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3945{
3946 /* Nothing to remove */
3947 if (!table)
3948 return;
3949
3950 mutex_lock(&gpio_lookup_lock);
3951
3952 list_del(&table->list);
3953
3954 mutex_unlock(&gpio_lookup_lock);
3955}
3956EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
3957
3958/**
3959 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3960 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3961 */
3962void gpiod_add_hogs(struct gpiod_hog *hogs)
3963{
3964 struct gpiod_hog *hog;
3965
3966 mutex_lock(&gpio_machine_hogs_mutex);
3967
3968 for (hog = &hogs[0]; hog->chip_label; hog++) {
3969 list_add_tail(&hog->list, &gpio_machine_hogs);
3970
3971 /*
3972 * The chip may have been registered earlier, so check if it
3973 * exists and, if so, try to hog the line now.
3974 */
3975 struct gpio_device *gdev __free(gpio_device_put) =
3976 gpio_device_find_by_label(hog->chip_label);
3977 if (gdev)
3978 gpiochip_machine_hog(gpio_device_get_chip(gdev), hog);
3979 }
3980
3981 mutex_unlock(&gpio_machine_hogs_mutex);
3982}
3983EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3984
3985void gpiod_remove_hogs(struct gpiod_hog *hogs)
3986{
3987 struct gpiod_hog *hog;
3988
3989 mutex_lock(&gpio_machine_hogs_mutex);
3990 for (hog = &hogs[0]; hog->chip_label; hog++)
3991 list_del(&hog->list);
3992 mutex_unlock(&gpio_machine_hogs_mutex);
3993}
3994EXPORT_SYMBOL_GPL(gpiod_remove_hogs);
3995
3996static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3997{
3998 const char *dev_id = dev ? dev_name(dev) : NULL;
3999 struct gpiod_lookup_table *table;
4000
4001 list_for_each_entry(table, &gpio_lookup_list, list) {
4002 if (table->dev_id && dev_id) {
4003 /*
4004 * Valid strings on both ends, must be identical to have
4005 * a match
4006 */
4007 if (!strcmp(table->dev_id, dev_id))
4008 return table;
4009 } else {
4010 /*
4011 * One of the pointers is NULL, so both must be to have
4012 * a match
4013 */
4014 if (dev_id == table->dev_id)
4015 return table;
4016 }
4017 }
4018
4019 return NULL;
4020}
4021
4022static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
4023 unsigned int idx, unsigned long *flags)
4024{
4025 struct gpio_desc *desc = ERR_PTR(-ENOENT);
4026 struct gpiod_lookup_table *table;
4027 struct gpiod_lookup *p;
4028 struct gpio_chip *gc;
4029
4030 guard(mutex)(&gpio_lookup_lock);
4031
4032 table = gpiod_find_lookup_table(dev);
4033 if (!table)
4034 return desc;
4035
4036 for (p = &table->table[0]; p->key; p++) {
4037 /* idx must always match exactly */
4038 if (p->idx != idx)
4039 continue;
4040
4041 /* If the lookup entry has a con_id, require exact match */
4042 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
4043 continue;
4044
4045 if (p->chip_hwnum == U16_MAX) {
4046 desc = gpio_name_to_desc(p->key);
4047 if (desc) {
4048 *flags = p->flags;
4049 return desc;
4050 }
4051
4052 dev_warn(dev, "cannot find GPIO line %s, deferring\n",
4053 p->key);
4054 return ERR_PTR(-EPROBE_DEFER);
4055 }
4056
4057 struct gpio_device *gdev __free(gpio_device_put) =
4058 gpio_device_find_by_label(p->key);
4059 if (!gdev) {
4060 /*
4061 * As the lookup table indicates a chip with
4062 * p->key should exist, assume it may
4063 * still appear later and let the interested
4064 * consumer be probed again or let the Deferred
4065 * Probe infrastructure handle the error.
4066 */
4067 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
4068 p->key);
4069 return ERR_PTR(-EPROBE_DEFER);
4070 }
4071
4072 gc = gpio_device_get_chip(gdev);
4073
4074 if (gc->ngpio <= p->chip_hwnum) {
4075 dev_err(dev,
4076 "requested GPIO %u (%u) is out of range [0..%u] for chip %s\n",
4077 idx, p->chip_hwnum, gc->ngpio - 1,
4078 gc->label);
4079 return ERR_PTR(-EINVAL);
4080 }
4081
4082 desc = gpio_device_get_desc(gdev, p->chip_hwnum);
4083 *flags = p->flags;
4084
4085 return desc;
4086 }
4087
4088 return desc;
4089}
4090
4091static int platform_gpio_count(struct device *dev, const char *con_id)
4092{
4093 struct gpiod_lookup_table *table;
4094 struct gpiod_lookup *p;
4095 unsigned int count = 0;
4096
4097 scoped_guard(mutex, &gpio_lookup_lock) {
4098 table = gpiod_find_lookup_table(dev);
4099 if (!table)
4100 return -ENOENT;
4101
4102 for (p = &table->table[0]; p->key; p++) {
4103 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
4104 (!con_id && !p->con_id))
4105 count++;
4106 }
4107 }
4108
4109 if (!count)
4110 return -ENOENT;
4111
4112 return count;
4113}
4114
4115static struct gpio_desc *gpiod_find_by_fwnode(struct fwnode_handle *fwnode,
4116 struct device *consumer,
4117 const char *con_id,
4118 unsigned int idx,
4119 enum gpiod_flags *flags,
4120 unsigned long *lookupflags)
4121{
4122 struct gpio_desc *desc = ERR_PTR(-ENOENT);
4123
4124 if (is_of_node(fwnode)) {
4125 dev_dbg(consumer, "using DT '%pfw' for '%s' GPIO lookup\n",
4126 fwnode, con_id);
4127 desc = of_find_gpio(to_of_node(fwnode), con_id, idx, lookupflags);
4128 } else if (is_acpi_node(fwnode)) {
4129 dev_dbg(consumer, "using ACPI '%pfw' for '%s' GPIO lookup\n",
4130 fwnode, con_id);
4131 desc = acpi_find_gpio(fwnode, con_id, idx, flags, lookupflags);
4132 } else if (is_software_node(fwnode)) {
4133 dev_dbg(consumer, "using swnode '%pfw' for '%s' GPIO lookup\n",
4134 fwnode, con_id);
4135 desc = swnode_find_gpio(fwnode, con_id, idx, lookupflags);
4136 }
4137
4138 return desc;
4139}
4140
4141static struct gpio_desc *gpiod_find_and_request(struct device *consumer,
4142 struct fwnode_handle *fwnode,
4143 const char *con_id,
4144 unsigned int idx,
4145 enum gpiod_flags flags,
4146 const char *label,
4147 bool platform_lookup_allowed)
4148{
4149 unsigned long lookupflags = GPIO_LOOKUP_FLAGS_DEFAULT;
4150 struct gpio_desc *desc;
4151 int ret;
4152
4153 desc = gpiod_find_by_fwnode(fwnode, consumer, con_id, idx, &flags, &lookupflags);
4154 if (gpiod_not_found(desc) && platform_lookup_allowed) {
4155 /*
4156 * Either we are not using DT or ACPI, or their lookup did not
4157 * return a result. In that case, use platform lookup as a
4158 * fallback.
4159 */
4160 dev_dbg(consumer, "using lookup tables for GPIO lookup\n");
4161 desc = gpiod_find(consumer, con_id, idx, &lookupflags);
4162 }
4163
4164 if (IS_ERR(desc)) {
4165 dev_dbg(consumer, "No GPIO consumer %s found\n", con_id);
4166 return desc;
4167 }
4168
4169 /*
4170 * If a connection label was passed use that, else attempt to use
4171 * the device name as label
4172 */
4173 ret = gpiod_request(desc, label);
4174 if (ret) {
4175 if (!(ret == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE))
4176 return ERR_PTR(ret);
4177
4178 /*
4179 * This happens when there are several consumers for
4180 * the same GPIO line: we just return here without
4181 * further initialization. It is a bit of a hack.
4182 * This is necessary to support fixed regulators.
4183 *
4184 * FIXME: Make this more sane and safe.
4185 */
4186 dev_info(consumer,
4187 "nonexclusive access to GPIO for %s\n", con_id);
4188 return desc;
4189 }
4190
4191 ret = gpiod_configure_flags(desc, con_id, lookupflags, flags);
4192 if (ret < 0) {
4193 dev_dbg(consumer, "setup of GPIO %s failed\n", con_id);
4194 gpiod_put(desc);
4195 return ERR_PTR(ret);
4196 }
4197
4198 gpiod_line_state_notify(desc, GPIOLINE_CHANGED_REQUESTED);
4199
4200 return desc;
4201}
4202
4203/**
4204 * fwnode_gpiod_get_index - obtain a GPIO from firmware node
4205 * @fwnode: handle of the firmware node
4206 * @con_id: function within the GPIO consumer
4207 * @index: index of the GPIO to obtain for the consumer
4208 * @flags: GPIO initialization flags
4209 * @label: label to attach to the requested GPIO
4210 *
4211 * This function can be used for drivers that get their configuration
4212 * from opaque firmware.
4213 *
4214 * The function properly finds the corresponding GPIO using whatever is the
4215 * underlying firmware interface and then makes sure that the GPIO
4216 * descriptor is requested before it is returned to the caller.
4217 *
4218 * Returns:
4219 * On successful request the GPIO pin is configured in accordance with
4220 * provided @flags.
4221 *
4222 * In case of error an ERR_PTR() is returned.
4223 */
4224struct gpio_desc *fwnode_gpiod_get_index(struct fwnode_handle *fwnode,
4225 const char *con_id,
4226 int index,
4227 enum gpiod_flags flags,
4228 const char *label)
4229{
4230 return gpiod_find_and_request(NULL, fwnode, con_id, index, flags, label, false);
4231}
4232EXPORT_SYMBOL_GPL(fwnode_gpiod_get_index);
4233
4234/**
4235 * gpiod_count - return the number of GPIOs associated with a device / function
4236 * or -ENOENT if no GPIO has been assigned to the requested function
4237 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4238 * @con_id: function within the GPIO consumer
4239 */
4240int gpiod_count(struct device *dev, const char *con_id)
4241{
4242 const struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
4243 int count = -ENOENT;
4244
4245 if (is_of_node(fwnode))
4246 count = of_gpio_get_count(dev, con_id);
4247 else if (is_acpi_node(fwnode))
4248 count = acpi_gpio_count(dev, con_id);
4249 else if (is_software_node(fwnode))
4250 count = swnode_gpio_count(fwnode, con_id);
4251
4252 if (count < 0)
4253 count = platform_gpio_count(dev, con_id);
4254
4255 return count;
4256}
4257EXPORT_SYMBOL_GPL(gpiod_count);
4258
4259/**
4260 * gpiod_get - obtain a GPIO for a given GPIO function
4261 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4262 * @con_id: function within the GPIO consumer
4263 * @flags: optional GPIO initialization flags
4264 *
4265 * Return the GPIO descriptor corresponding to the function con_id of device
4266 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
4267 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
4268 */
4269struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
4270 enum gpiod_flags flags)
4271{
4272 return gpiod_get_index(dev, con_id, 0, flags);
4273}
4274EXPORT_SYMBOL_GPL(gpiod_get);
4275
4276/**
4277 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
4278 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4279 * @con_id: function within the GPIO consumer
4280 * @flags: optional GPIO initialization flags
4281 *
4282 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
4283 * the requested function it will return NULL. This is convenient for drivers
4284 * that need to handle optional GPIOs.
4285 */
4286struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
4287 const char *con_id,
4288 enum gpiod_flags flags)
4289{
4290 return gpiod_get_index_optional(dev, con_id, 0, flags);
4291}
4292EXPORT_SYMBOL_GPL(gpiod_get_optional);
4293
4294
4295/**
4296 * gpiod_configure_flags - helper function to configure a given GPIO
4297 * @desc: gpio whose value will be assigned
4298 * @con_id: function within the GPIO consumer
4299 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4300 * of_find_gpio() or of_get_gpio_hog()
4301 * @dflags: gpiod_flags - optional GPIO initialization flags
4302 *
4303 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
4304 * requested function and/or index, or another IS_ERR() code if an error
4305 * occurred while trying to acquire the GPIO.
4306 */
4307int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
4308 unsigned long lflags, enum gpiod_flags dflags)
4309{
4310 int ret;
4311
4312 if (lflags & GPIO_ACTIVE_LOW)
4313 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
4314
4315 if (lflags & GPIO_OPEN_DRAIN)
4316 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4317 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
4318 /*
4319 * This enforces open drain mode from the consumer side.
4320 * This is necessary for some busses like I2C, but the lookup
4321 * should *REALLY* have specified them as open drain in the
4322 * first place, so print a little warning here.
4323 */
4324 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4325 gpiod_warn(desc,
4326 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
4327 }
4328
4329 if (lflags & GPIO_OPEN_SOURCE)
4330 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
4331
4332 if (((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) ||
4333 ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DISABLE)) ||
4334 ((lflags & GPIO_PULL_DOWN) && (lflags & GPIO_PULL_DISABLE))) {
4335 gpiod_err(desc,
4336 "multiple pull-up, pull-down or pull-disable enabled, invalid configuration\n");
4337 return -EINVAL;
4338 }
4339
4340 if (lflags & GPIO_PULL_UP)
4341 set_bit(FLAG_PULL_UP, &desc->flags);
4342 else if (lflags & GPIO_PULL_DOWN)
4343 set_bit(FLAG_PULL_DOWN, &desc->flags);
4344 else if (lflags & GPIO_PULL_DISABLE)
4345 set_bit(FLAG_BIAS_DISABLE, &desc->flags);
4346
4347 ret = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
4348 if (ret < 0)
4349 return ret;
4350
4351 /* No particular flag request, return here... */
4352 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
4353 gpiod_dbg(desc, "no flags found for %s\n", con_id);
4354 return 0;
4355 }
4356
4357 /* Process flags */
4358 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
4359 ret = gpiod_direction_output(desc,
4360 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
4361 else
4362 ret = gpiod_direction_input(desc);
4363
4364 return ret;
4365}
4366
4367/**
4368 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
4369 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4370 * @con_id: function within the GPIO consumer
4371 * @idx: index of the GPIO to obtain in the consumer
4372 * @flags: optional GPIO initialization flags
4373 *
4374 * This variant of gpiod_get() allows to access GPIOs other than the first
4375 * defined one for functions that define several GPIOs.
4376 *
4377 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
4378 * requested function and/or index, or another IS_ERR() code if an error
4379 * occurred while trying to acquire the GPIO.
4380 */
4381struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
4382 const char *con_id,
4383 unsigned int idx,
4384 enum gpiod_flags flags)
4385{
4386 struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
4387 const char *devname = dev ? dev_name(dev) : "?";
4388 const char *label = con_id ?: devname;
4389
4390 return gpiod_find_and_request(dev, fwnode, con_id, idx, flags, label, true);
4391}
4392EXPORT_SYMBOL_GPL(gpiod_get_index);
4393
4394/**
4395 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
4396 * function
4397 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4398 * @con_id: function within the GPIO consumer
4399 * @index: index of the GPIO to obtain in the consumer
4400 * @flags: optional GPIO initialization flags
4401 *
4402 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4403 * specified index was assigned to the requested function it will return NULL.
4404 * This is convenient for drivers that need to handle optional GPIOs.
4405 */
4406struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
4407 const char *con_id,
4408 unsigned int index,
4409 enum gpiod_flags flags)
4410{
4411 struct gpio_desc *desc;
4412
4413 desc = gpiod_get_index(dev, con_id, index, flags);
4414 if (gpiod_not_found(desc))
4415 return NULL;
4416
4417 return desc;
4418}
4419EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4420
4421/**
4422 * gpiod_hog - Hog the specified GPIO desc given the provided flags
4423 * @desc: gpio whose value will be assigned
4424 * @name: gpio line name
4425 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4426 * of_find_gpio() or of_get_gpio_hog()
4427 * @dflags: gpiod_flags - optional GPIO initialization flags
4428 */
4429int gpiod_hog(struct gpio_desc *desc, const char *name,
4430 unsigned long lflags, enum gpiod_flags dflags)
4431{
4432 struct gpio_chip *gc;
4433 struct gpio_desc *local_desc;
4434 int hwnum;
4435 int ret;
4436
4437 gc = gpiod_to_chip(desc);
4438 hwnum = gpio_chip_hwgpio(desc);
4439
4440 local_desc = gpiochip_request_own_desc(gc, hwnum, name,
4441 lflags, dflags);
4442 if (IS_ERR(local_desc)) {
4443 ret = PTR_ERR(local_desc);
4444 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
4445 name, gc->label, hwnum, ret);
4446 return ret;
4447 }
4448
4449 /* Mark GPIO as hogged so it can be identified and removed later */
4450 set_bit(FLAG_IS_HOGGED, &desc->flags);
4451
4452 gpiod_dbg(desc, "hogged as %s%s\n",
4453 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4454 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ?
4455 (dflags & GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low" : "");
4456
4457 return 0;
4458}
4459
4460/**
4461 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4462 * @gc: gpio chip to act on
4463 */
4464static void gpiochip_free_hogs(struct gpio_chip *gc)
4465{
4466 struct gpio_desc *desc;
4467
4468 for_each_gpio_desc_with_flag(gc, desc, FLAG_IS_HOGGED)
4469 gpiochip_free_own_desc(desc);
4470}
4471
4472/**
4473 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4474 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4475 * @con_id: function within the GPIO consumer
4476 * @flags: optional GPIO initialization flags
4477 *
4478 * This function acquires all the GPIOs defined under a given function.
4479 *
4480 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4481 * no GPIO has been assigned to the requested function, or another IS_ERR()
4482 * code if an error occurred while trying to acquire the GPIOs.
4483 */
4484struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4485 const char *con_id,
4486 enum gpiod_flags flags)
4487{
4488 struct gpio_desc *desc;
4489 struct gpio_descs *descs;
4490 struct gpio_array *array_info = NULL;
4491 struct gpio_chip *gc;
4492 int count, bitmap_size;
4493 size_t descs_size;
4494
4495 count = gpiod_count(dev, con_id);
4496 if (count < 0)
4497 return ERR_PTR(count);
4498
4499 descs_size = struct_size(descs, desc, count);
4500 descs = kzalloc(descs_size, GFP_KERNEL);
4501 if (!descs)
4502 return ERR_PTR(-ENOMEM);
4503
4504 for (descs->ndescs = 0; descs->ndescs < count; descs->ndescs++) {
4505 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4506 if (IS_ERR(desc)) {
4507 gpiod_put_array(descs);
4508 return ERR_CAST(desc);
4509 }
4510
4511 descs->desc[descs->ndescs] = desc;
4512
4513 gc = gpiod_to_chip(desc);
4514 /*
4515 * If pin hardware number of array member 0 is also 0, select
4516 * its chip as a candidate for fast bitmap processing path.
4517 */
4518 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
4519 struct gpio_descs *array;
4520
4521 bitmap_size = BITS_TO_LONGS(gc->ngpio > count ?
4522 gc->ngpio : count);
4523
4524 array = krealloc(descs, descs_size +
4525 struct_size(array_info, invert_mask, 3 * bitmap_size),
4526 GFP_KERNEL | __GFP_ZERO);
4527 if (!array) {
4528 gpiod_put_array(descs);
4529 return ERR_PTR(-ENOMEM);
4530 }
4531
4532 descs = array;
4533
4534 array_info = (void *)descs + descs_size;
4535 array_info->get_mask = array_info->invert_mask +
4536 bitmap_size;
4537 array_info->set_mask = array_info->get_mask +
4538 bitmap_size;
4539
4540 array_info->desc = descs->desc;
4541 array_info->size = count;
4542 array_info->chip = gc;
4543 bitmap_set(array_info->get_mask, descs->ndescs,
4544 count - descs->ndescs);
4545 bitmap_set(array_info->set_mask, descs->ndescs,
4546 count - descs->ndescs);
4547 descs->info = array_info;
4548 }
4549
4550 /* If there is no cache for fast bitmap processing path, continue */
4551 if (!array_info)
4552 continue;
4553
4554 /* Unmark array members which don't belong to the 'fast' chip */
4555 if (array_info->chip != gc) {
4556 __clear_bit(descs->ndescs, array_info->get_mask);
4557 __clear_bit(descs->ndescs, array_info->set_mask);
4558 }
4559 /*
4560 * Detect array members which belong to the 'fast' chip
4561 * but their pins are not in hardware order.
4562 */
4563 else if (gpio_chip_hwgpio(desc) != descs->ndescs) {
4564 /*
4565 * Don't use fast path if all array members processed so
4566 * far belong to the same chip as this one but its pin
4567 * hardware number is different from its array index.
4568 */
4569 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4570 array_info = NULL;
4571 } else {
4572 __clear_bit(descs->ndescs,
4573 array_info->get_mask);
4574 __clear_bit(descs->ndescs,
4575 array_info->set_mask);
4576 }
4577 } else {
4578 /* Exclude open drain or open source from fast output */
4579 if (gpiochip_line_is_open_drain(gc, descs->ndescs) ||
4580 gpiochip_line_is_open_source(gc, descs->ndescs))
4581 __clear_bit(descs->ndescs,
4582 array_info->set_mask);
4583 /* Identify 'fast' pins which require invertion */
4584 if (gpiod_is_active_low(desc))
4585 __set_bit(descs->ndescs,
4586 array_info->invert_mask);
4587 }
4588 }
4589 if (array_info)
4590 dev_dbg(dev,
4591 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4592 array_info->chip->label, array_info->size,
4593 *array_info->get_mask, *array_info->set_mask,
4594 *array_info->invert_mask);
4595 return descs;
4596}
4597EXPORT_SYMBOL_GPL(gpiod_get_array);
4598
4599/**
4600 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4601 * function
4602 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4603 * @con_id: function within the GPIO consumer
4604 * @flags: optional GPIO initialization flags
4605 *
4606 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4607 * assigned to the requested function it will return NULL.
4608 */
4609struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4610 const char *con_id,
4611 enum gpiod_flags flags)
4612{
4613 struct gpio_descs *descs;
4614
4615 descs = gpiod_get_array(dev, con_id, flags);
4616 if (gpiod_not_found(descs))
4617 return NULL;
4618
4619 return descs;
4620}
4621EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4622
4623/**
4624 * gpiod_put - dispose of a GPIO descriptor
4625 * @desc: GPIO descriptor to dispose of
4626 *
4627 * No descriptor can be used after gpiod_put() has been called on it.
4628 */
4629void gpiod_put(struct gpio_desc *desc)
4630{
4631 if (desc)
4632 gpiod_free(desc);
4633}
4634EXPORT_SYMBOL_GPL(gpiod_put);
4635
4636/**
4637 * gpiod_put_array - dispose of multiple GPIO descriptors
4638 * @descs: struct gpio_descs containing an array of descriptors
4639 */
4640void gpiod_put_array(struct gpio_descs *descs)
4641{
4642 unsigned int i;
4643
4644 for (i = 0; i < descs->ndescs; i++)
4645 gpiod_put(descs->desc[i]);
4646
4647 kfree(descs);
4648}
4649EXPORT_SYMBOL_GPL(gpiod_put_array);
4650
4651static int gpio_stub_drv_probe(struct device *dev)
4652{
4653 /*
4654 * The DT node of some GPIO chips have a "compatible" property, but
4655 * never have a struct device added and probed by a driver to register
4656 * the GPIO chip with gpiolib. In such cases, fw_devlink=on will cause
4657 * the consumers of the GPIO chip to get probe deferred forever because
4658 * they will be waiting for a device associated with the GPIO chip
4659 * firmware node to get added and bound to a driver.
4660 *
4661 * To allow these consumers to probe, we associate the struct
4662 * gpio_device of the GPIO chip with the firmware node and then simply
4663 * bind it to this stub driver.
4664 */
4665 return 0;
4666}
4667
4668static struct device_driver gpio_stub_drv = {
4669 .name = "gpio_stub_drv",
4670 .bus = &gpio_bus_type,
4671 .probe = gpio_stub_drv_probe,
4672};
4673
4674static int __init gpiolib_dev_init(void)
4675{
4676 int ret;
4677
4678 /* Register GPIO sysfs bus */
4679 ret = bus_register(&gpio_bus_type);
4680 if (ret < 0) {
4681 pr_err("gpiolib: could not register GPIO bus type\n");
4682 return ret;
4683 }
4684
4685 ret = driver_register(&gpio_stub_drv);
4686 if (ret < 0) {
4687 pr_err("gpiolib: could not register GPIO stub driver\n");
4688 bus_unregister(&gpio_bus_type);
4689 return ret;
4690 }
4691
4692 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, GPIOCHIP_NAME);
4693 if (ret < 0) {
4694 pr_err("gpiolib: failed to allocate char dev region\n");
4695 driver_unregister(&gpio_stub_drv);
4696 bus_unregister(&gpio_bus_type);
4697 return ret;
4698 }
4699
4700 gpiolib_initialized = true;
4701 gpiochip_setup_devs();
4702
4703#if IS_ENABLED(CONFIG_OF_DYNAMIC) && IS_ENABLED(CONFIG_OF_GPIO)
4704 WARN_ON(of_reconfig_notifier_register(&gpio_of_notifier));
4705#endif /* CONFIG_OF_DYNAMIC && CONFIG_OF_GPIO */
4706
4707 return ret;
4708}
4709core_initcall(gpiolib_dev_init);
4710
4711#ifdef CONFIG_DEBUG_FS
4712
4713static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
4714{
4715 struct gpio_chip *gc = gdev->chip;
4716 bool active_low, is_irq, is_out;
4717 unsigned int gpio = gdev->base;
4718 struct gpio_desc *desc;
4719 int value;
4720
4721 for_each_gpio_desc(gc, desc) {
4722 if (test_bit(FLAG_REQUESTED, &desc->flags)) {
4723 gpiod_get_direction(desc);
4724 is_out = test_bit(FLAG_IS_OUT, &desc->flags);
4725 value = gpio_chip_get_value(gc, desc);
4726 is_irq = test_bit(FLAG_USED_AS_IRQ, &desc->flags);
4727 active_low = test_bit(FLAG_ACTIVE_LOW, &desc->flags);
4728 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s\n",
4729 gpio, desc->name ?: "", desc->label,
4730 is_out ? "out" : "in ",
4731 value >= 0 ? (value ? "hi" : "lo") : "? ",
4732 is_irq ? "IRQ " : "",
4733 active_low ? "ACTIVE LOW" : "");
4734 } else if (desc->name) {
4735 seq_printf(s, " gpio-%-3d (%-20.20s)\n", gpio, desc->name);
4736 }
4737
4738 gpio++;
4739 }
4740}
4741
4742static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4743{
4744 unsigned long flags;
4745 struct gpio_device *gdev = NULL;
4746 loff_t index = *pos;
4747
4748 s->private = "";
4749
4750 spin_lock_irqsave(&gpio_lock, flags);
4751 list_for_each_entry(gdev, &gpio_devices, list)
4752 if (index-- == 0) {
4753 spin_unlock_irqrestore(&gpio_lock, flags);
4754 return gdev;
4755 }
4756 spin_unlock_irqrestore(&gpio_lock, flags);
4757
4758 return NULL;
4759}
4760
4761static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4762{
4763 unsigned long flags;
4764 struct gpio_device *gdev = v;
4765 void *ret = NULL;
4766
4767 spin_lock_irqsave(&gpio_lock, flags);
4768 if (list_is_last(&gdev->list, &gpio_devices))
4769 ret = NULL;
4770 else
4771 ret = list_first_entry(&gdev->list, struct gpio_device, list);
4772 spin_unlock_irqrestore(&gpio_lock, flags);
4773
4774 s->private = "\n";
4775 ++*pos;
4776
4777 return ret;
4778}
4779
4780static void gpiolib_seq_stop(struct seq_file *s, void *v)
4781{
4782}
4783
4784static int gpiolib_seq_show(struct seq_file *s, void *v)
4785{
4786 struct gpio_device *gdev = v;
4787 struct gpio_chip *gc = gdev->chip;
4788 struct device *parent;
4789
4790 if (!gc) {
4791 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4792 dev_name(&gdev->dev));
4793 return 0;
4794 }
4795
4796 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4797 dev_name(&gdev->dev),
4798 gdev->base, gdev->base + gdev->ngpio - 1);
4799 parent = gc->parent;
4800 if (parent)
4801 seq_printf(s, ", parent: %s/%s",
4802 parent->bus ? parent->bus->name : "no-bus",
4803 dev_name(parent));
4804 if (gc->label)
4805 seq_printf(s, ", %s", gc->label);
4806 if (gc->can_sleep)
4807 seq_printf(s, ", can sleep");
4808 seq_printf(s, ":\n");
4809
4810 if (gc->dbg_show)
4811 gc->dbg_show(s, gc);
4812 else
4813 gpiolib_dbg_show(s, gdev);
4814
4815 return 0;
4816}
4817
4818static const struct seq_operations gpiolib_sops = {
4819 .start = gpiolib_seq_start,
4820 .next = gpiolib_seq_next,
4821 .stop = gpiolib_seq_stop,
4822 .show = gpiolib_seq_show,
4823};
4824DEFINE_SEQ_ATTRIBUTE(gpiolib);
4825
4826static int __init gpiolib_debugfs_init(void)
4827{
4828 /* /sys/kernel/debug/gpio */
4829 debugfs_create_file("gpio", 0444, NULL, NULL, &gpiolib_fops);
4830 return 0;
4831}
4832subsys_initcall(gpiolib_debugfs_init);
4833
4834#endif /* DEBUG_FS */