1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/bitmap.h>
4 #include <linux/kernel.h>
5 #include <linux/module.h>
6 #include <linux/interrupt.h>
8 #include <linux/spinlock.h>
9 #include <linux/list.h>
10 #include <linux/device.h>
11 #include <linux/err.h>
12 #include <linux/debugfs.h>
13 #include <linux/seq_file.h>
14 #include <linux/gpio.h>
15 #include <linux/idr.h>
16 #include <linux/slab.h>
17 #include <linux/acpi.h>
18 #include <linux/gpio/driver.h>
19 #include <linux/gpio/machine.h>
20 #include <linux/pinctrl/consumer.h>
22 #include <linux/compat.h>
23 #include <linux/file.h>
24 #include <uapi/linux/gpio.h>
27 #include "gpiolib-of.h"
28 #include "gpiolib-acpi.h"
29 #include "gpiolib-cdev.h"
30 #include "gpiolib-sysfs.h"
32 #define CREATE_TRACE_POINTS
33 #include <trace/events/gpio.h>
35 /* Implementation infrastructure for GPIO interfaces.
37 * The GPIO programming interface allows for inlining speed-critical
38 * get/set operations for common cases, so that access to SOC-integrated
39 * GPIOs can sometimes cost only an instruction or two per bit.
43 /* When debugging, extend minimal trust to callers and platform code.
44 * Also emit diagnostic messages that may help initial bringup, when
45 * board setup or driver bugs are most common.
47 * Otherwise, minimize overhead in what may be bitbanging codepaths.
50 #define extra_checks 1
52 #define extra_checks 0
55 /* Device and char device-related information */
56 static DEFINE_IDA(gpio_ida);
57 static dev_t gpio_devt;
58 #define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
59 static int gpio_bus_match(struct device *dev, struct device_driver *drv);
60 static struct bus_type gpio_bus_type = {
62 .match = gpio_bus_match,
66 * Number of GPIOs to use for the fast path in set array
68 #define FASTPATH_NGPIO CONFIG_GPIOLIB_FASTPATH_LIMIT
70 /* gpio_lock prevents conflicts during gpio_desc[] table updates.
71 * While any GPIO is requested, its gpio_chip is not removable;
72 * each GPIO's "requested" flag serves as a lock and refcount.
74 DEFINE_SPINLOCK(gpio_lock);
76 static DEFINE_MUTEX(gpio_lookup_lock);
77 static LIST_HEAD(gpio_lookup_list);
78 LIST_HEAD(gpio_devices);
80 static DEFINE_MUTEX(gpio_machine_hogs_mutex);
81 static LIST_HEAD(gpio_machine_hogs);
83 static void gpiochip_free_hogs(struct gpio_chip *gc);
84 static int gpiochip_add_irqchip(struct gpio_chip *gc,
85 struct lock_class_key *lock_key,
86 struct lock_class_key *request_key);
87 static void gpiochip_irqchip_remove(struct gpio_chip *gc);
88 static int gpiochip_irqchip_init_hw(struct gpio_chip *gc);
89 static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc);
90 static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc);
92 static bool gpiolib_initialized;
94 static inline void desc_set_label(struct gpio_desc *d, const char *label)
100 * gpio_to_desc - Convert a GPIO number to its descriptor
101 * @gpio: global GPIO number
104 * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO
105 * with the given number exists in the system.
107 struct gpio_desc *gpio_to_desc(unsigned gpio)
109 struct gpio_device *gdev;
112 spin_lock_irqsave(&gpio_lock, flags);
114 list_for_each_entry(gdev, &gpio_devices, list) {
115 if (gdev->base <= gpio &&
116 gdev->base + gdev->ngpio > gpio) {
117 spin_unlock_irqrestore(&gpio_lock, flags);
118 return &gdev->descs[gpio - gdev->base];
122 spin_unlock_irqrestore(&gpio_lock, flags);
124 if (!gpio_is_valid(gpio))
125 pr_warn("invalid GPIO %d\n", gpio);
129 EXPORT_SYMBOL_GPL(gpio_to_desc);
132 * gpiochip_get_desc - get the GPIO descriptor corresponding to the given
133 * hardware number for this chip
135 * @hwnum: hardware number of the GPIO for this chip
138 * A pointer to the GPIO descriptor or ``ERR_PTR(-EINVAL)`` if no GPIO exists
139 * in the given chip for the specified hardware number.
141 struct gpio_desc *gpiochip_get_desc(struct gpio_chip *gc,
144 struct gpio_device *gdev = gc->gpiodev;
146 if (hwnum >= gdev->ngpio)
147 return ERR_PTR(-EINVAL);
149 return &gdev->descs[hwnum];
151 EXPORT_SYMBOL_GPL(gpiochip_get_desc);
154 * desc_to_gpio - convert a GPIO descriptor to the integer namespace
155 * @desc: GPIO descriptor
157 * This should disappear in the future but is needed since we still
158 * use GPIO numbers for error messages and sysfs nodes.
161 * The global GPIO number for the GPIO specified by its descriptor.
163 int desc_to_gpio(const struct gpio_desc *desc)
165 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
167 EXPORT_SYMBOL_GPL(desc_to_gpio);
171 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
172 * @desc: descriptor to return the chip of
174 struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
176 if (!desc || !desc->gdev)
178 return desc->gdev->chip;
180 EXPORT_SYMBOL_GPL(gpiod_to_chip);
182 /* dynamic allocation of GPIOs, e.g. on a hotplugged device */
183 static int gpiochip_find_base(int ngpio)
185 struct gpio_device *gdev;
186 int base = ARCH_NR_GPIOS - ngpio;
188 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
189 /* found a free space? */
190 if (gdev->base + gdev->ngpio <= base)
193 /* nope, check the space right before the chip */
194 base = gdev->base - ngpio;
197 if (gpio_is_valid(base)) {
198 pr_debug("%s: found new base at %d\n", __func__, base);
201 pr_err("%s: cannot find free range\n", __func__);
207 * gpiod_get_direction - return the current direction of a GPIO
208 * @desc: GPIO to get the direction of
210 * Returns 0 for output, 1 for input, or an error code in case of error.
212 * This function may sleep if gpiod_cansleep() is true.
214 int gpiod_get_direction(struct gpio_desc *desc)
216 struct gpio_chip *gc;
220 gc = gpiod_to_chip(desc);
221 offset = gpio_chip_hwgpio(desc);
224 * Open drain emulation using input mode may incorrectly report
225 * input here, fix that up.
227 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) &&
228 test_bit(FLAG_IS_OUT, &desc->flags))
231 if (!gc->get_direction)
234 ret = gc->get_direction(gc, offset);
238 /* GPIOF_DIR_IN or other positive, otherwise GPIOF_DIR_OUT */
242 assign_bit(FLAG_IS_OUT, &desc->flags, !ret);
246 EXPORT_SYMBOL_GPL(gpiod_get_direction);
249 * Add a new chip to the global chips list, keeping the list of chips sorted
250 * by range(means [base, base + ngpio - 1]) order.
252 * Return -EBUSY if the new chip overlaps with some other chip's integer
255 static int gpiodev_add_to_list(struct gpio_device *gdev)
257 struct gpio_device *prev, *next;
259 if (list_empty(&gpio_devices)) {
260 /* initial entry in list */
261 list_add_tail(&gdev->list, &gpio_devices);
265 next = list_entry(gpio_devices.next, struct gpio_device, list);
266 if (gdev->base + gdev->ngpio <= next->base) {
267 /* add before first entry */
268 list_add(&gdev->list, &gpio_devices);
272 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
273 if (prev->base + prev->ngpio <= gdev->base) {
274 /* add behind last entry */
275 list_add_tail(&gdev->list, &gpio_devices);
279 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
280 /* at the end of the list */
281 if (&next->list == &gpio_devices)
284 /* add between prev and next */
285 if (prev->base + prev->ngpio <= gdev->base
286 && gdev->base + gdev->ngpio <= next->base) {
287 list_add(&gdev->list, &prev->list);
292 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
297 * Convert a GPIO name to its descriptor
298 * Note that there is no guarantee that GPIO names are globally unique!
299 * Hence this function will return, if it exists, a reference to the first GPIO
300 * line found that matches the given name.
302 static struct gpio_desc *gpio_name_to_desc(const char * const name)
304 struct gpio_device *gdev;
310 spin_lock_irqsave(&gpio_lock, flags);
312 list_for_each_entry(gdev, &gpio_devices, list) {
315 for (i = 0; i != gdev->ngpio; ++i) {
316 struct gpio_desc *desc = &gdev->descs[i];
321 if (!strcmp(desc->name, name)) {
322 spin_unlock_irqrestore(&gpio_lock, flags);
328 spin_unlock_irqrestore(&gpio_lock, flags);
334 * Take the names from gc->names and assign them to their GPIO descriptors.
335 * Warn if a name is already used for a GPIO line on a different GPIO chip.
338 * 1. Non-unique names are still accepted,
339 * 2. Name collisions within the same GPIO chip are not reported.
341 static int gpiochip_set_desc_names(struct gpio_chip *gc)
343 struct gpio_device *gdev = gc->gpiodev;
346 /* First check all names if they are unique */
347 for (i = 0; i != gc->ngpio; ++i) {
348 struct gpio_desc *gpio;
350 gpio = gpio_name_to_desc(gc->names[i]);
353 "Detected name collision for GPIO name '%s'\n",
357 /* Then add all names to the GPIO descriptors */
358 for (i = 0; i != gc->ngpio; ++i)
359 gdev->descs[i].name = gc->names[i];
365 * devprop_gpiochip_set_names - Set GPIO line names using device properties
366 * @chip: GPIO chip whose lines should be named, if possible
368 * Looks for device property "gpio-line-names" and if it exists assigns
369 * GPIO line names for the chip. The memory allocated for the assigned
370 * names belong to the underlying firmware node and should not be released
373 static int devprop_gpiochip_set_names(struct gpio_chip *chip)
375 struct gpio_device *gdev = chip->gpiodev;
376 struct fwnode_handle *fwnode = dev_fwnode(&gdev->dev);
381 count = fwnode_property_string_array_count(fwnode, "gpio-line-names");
386 * When offset is set in the driver side we assume the driver internally
387 * is using more than one gpiochip per the same device. We have to stop
388 * setting friendly names if the specified ones with 'gpio-line-names'
389 * are less than the offset in the device itself. This means all the
390 * lines are not present for every single pin within all the internal
393 if (count <= chip->offset) {
394 dev_warn(&gdev->dev, "gpio-line-names too short (length %d), cannot map names for the gpiochip at offset %u\n",
395 count, chip->offset);
399 names = kcalloc(count, sizeof(*names), GFP_KERNEL);
403 ret = fwnode_property_read_string_array(fwnode, "gpio-line-names",
406 dev_warn(&gdev->dev, "failed to read GPIO line names\n");
412 * When more that one gpiochip per device is used, 'count' can
413 * contain at most number gpiochips x chip->ngpio. We have to
414 * correctly distribute all defined lines taking into account
415 * chip->offset as starting point from where we will assign
416 * the names to pins from the 'names' array. Since property
417 * 'gpio-line-names' cannot contains gaps, we have to be sure
418 * we only assign those pins that really exists since chip->ngpio
419 * can be different of the chip->offset.
421 count = (count > chip->offset) ? count - chip->offset : count;
422 if (count > chip->ngpio)
425 for (i = 0; i < count; i++) {
427 * Allow overriding "fixed" names provided by the GPIO
428 * provider. The "fixed" names are more often than not
429 * generic and less informative than the names given in
432 if (names[chip->offset + i] && names[chip->offset + i][0])
433 gdev->descs[i].name = names[chip->offset + i];
441 static unsigned long *gpiochip_allocate_mask(struct gpio_chip *gc)
445 p = bitmap_alloc(gc->ngpio, GFP_KERNEL);
449 /* Assume by default all GPIOs are valid */
450 bitmap_fill(p, gc->ngpio);
455 static int gpiochip_alloc_valid_mask(struct gpio_chip *gc)
457 if (!(of_gpio_need_valid_mask(gc) || gc->init_valid_mask))
460 gc->valid_mask = gpiochip_allocate_mask(gc);
467 static int gpiochip_init_valid_mask(struct gpio_chip *gc)
469 if (gc->init_valid_mask)
470 return gc->init_valid_mask(gc,
477 static void gpiochip_free_valid_mask(struct gpio_chip *gc)
479 bitmap_free(gc->valid_mask);
480 gc->valid_mask = NULL;
483 static int gpiochip_add_pin_ranges(struct gpio_chip *gc)
485 if (gc->add_pin_ranges)
486 return gc->add_pin_ranges(gc);
491 bool gpiochip_line_is_valid(const struct gpio_chip *gc,
494 /* No mask means all valid */
495 if (likely(!gc->valid_mask))
497 return test_bit(offset, gc->valid_mask);
499 EXPORT_SYMBOL_GPL(gpiochip_line_is_valid);
501 static void gpiodevice_release(struct device *dev)
503 struct gpio_device *gdev = container_of(dev, struct gpio_device, dev);
506 spin_lock_irqsave(&gpio_lock, flags);
507 list_del(&gdev->list);
508 spin_unlock_irqrestore(&gpio_lock, flags);
510 ida_free(&gpio_ida, gdev->id);
511 kfree_const(gdev->label);
516 #ifdef CONFIG_GPIO_CDEV
517 #define gcdev_register(gdev, devt) gpiolib_cdev_register((gdev), (devt))
518 #define gcdev_unregister(gdev) gpiolib_cdev_unregister((gdev))
521 * gpiolib_cdev_register() indirectly calls device_add(), which is still
522 * required even when cdev is not selected.
524 #define gcdev_register(gdev, devt) device_add(&(gdev)->dev)
525 #define gcdev_unregister(gdev) device_del(&(gdev)->dev)
528 static int gpiochip_setup_dev(struct gpio_device *gdev)
532 ret = gcdev_register(gdev, gpio_devt);
536 ret = gpiochip_sysfs_register(gdev);
538 goto err_remove_device;
540 /* From this point, the .release() function cleans up gpio_device */
541 gdev->dev.release = gpiodevice_release;
542 dev_dbg(&gdev->dev, "registered GPIOs %d to %d on %s\n", gdev->base,
543 gdev->base + gdev->ngpio - 1, gdev->chip->label ? : "generic");
548 gcdev_unregister(gdev);
552 static void gpiochip_machine_hog(struct gpio_chip *gc, struct gpiod_hog *hog)
554 struct gpio_desc *desc;
557 desc = gpiochip_get_desc(gc, hog->chip_hwnum);
559 chip_err(gc, "%s: unable to get GPIO desc: %ld\n", __func__,
564 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
567 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
569 gpiod_err(desc, "%s: unable to hog GPIO line (%s:%u): %d\n",
570 __func__, gc->label, hog->chip_hwnum, rv);
573 static void machine_gpiochip_add(struct gpio_chip *gc)
575 struct gpiod_hog *hog;
577 mutex_lock(&gpio_machine_hogs_mutex);
579 list_for_each_entry(hog, &gpio_machine_hogs, list) {
580 if (!strcmp(gc->label, hog->chip_label))
581 gpiochip_machine_hog(gc, hog);
584 mutex_unlock(&gpio_machine_hogs_mutex);
587 static void gpiochip_setup_devs(void)
589 struct gpio_device *gdev;
592 list_for_each_entry(gdev, &gpio_devices, list) {
593 ret = gpiochip_setup_dev(gdev);
596 "Failed to initialize gpio device (%d)\n", ret);
600 int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
601 struct lock_class_key *lock_key,
602 struct lock_class_key *request_key)
604 struct fwnode_handle *fwnode = NULL;
605 struct gpio_device *gdev;
615 fwnode = dev_fwnode(gc->parent);
618 * First: allocate and populate the internal stat container, and
619 * set up the struct device.
621 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
624 gdev->dev.bus = &gpio_bus_type;
625 gdev->dev.parent = gc->parent;
629 of_gpio_dev_init(gc, gdev);
630 acpi_gpio_dev_init(gc, gdev);
633 * Assign fwnode depending on the result of the previous calls,
634 * if none of them succeed, assign it to the parent's one.
636 gdev->dev.fwnode = dev_fwnode(&gdev->dev) ?: fwnode;
638 gdev->id = ida_alloc(&gpio_ida, GFP_KERNEL);
644 ret = dev_set_name(&gdev->dev, GPIOCHIP_NAME "%d", gdev->id);
648 device_initialize(&gdev->dev);
649 if (gc->parent && gc->parent->driver)
650 gdev->owner = gc->parent->driver->owner;
652 /* TODO: remove chip->owner */
653 gdev->owner = gc->owner;
655 gdev->owner = THIS_MODULE;
657 gdev->descs = kcalloc(gc->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
660 goto err_free_dev_name;
664 * Try the device properties if the driver didn't supply the number
667 if (gc->ngpio == 0) {
668 ret = device_property_read_u32(&gdev->dev, "ngpios", &ngpios);
671 * -ENODATA means that there is no property found and
672 * we want to issue the error message to the user.
673 * Besides that, we want to return different error code
674 * to state that supplied value is not valid.
683 if (gc->ngpio == 0) {
684 chip_err(gc, "tried to insert a GPIO chip with zero lines\n");
689 if (gc->ngpio > FASTPATH_NGPIO)
690 chip_warn(gc, "line cnt %u is greater than fast path cnt %u\n",
691 gc->ngpio, FASTPATH_NGPIO);
693 gdev->label = kstrdup_const(gc->label ?: "unknown", GFP_KERNEL);
699 gdev->ngpio = gc->ngpio;
702 spin_lock_irqsave(&gpio_lock, flags);
705 * TODO: this allocates a Linux GPIO number base in the global
706 * GPIO numberspace for this chip. In the long run we want to
707 * get *rid* of this numberspace and use only descriptors, but
708 * it may be a pipe dream. It will not happen before we get rid
709 * of the sysfs interface anyways.
712 base = gpiochip_find_base(gc->ngpio);
715 spin_unlock_irqrestore(&gpio_lock, flags);
719 * TODO: it should not be necessary to reflect the assigned
720 * base outside of the GPIO subsystem. Go over drivers and
721 * see if anyone makes use of this, else drop this and assign
728 ret = gpiodev_add_to_list(gdev);
730 spin_unlock_irqrestore(&gpio_lock, flags);
734 for (i = 0; i < gc->ngpio; i++)
735 gdev->descs[i].gdev = gdev;
737 spin_unlock_irqrestore(&gpio_lock, flags);
739 BLOCKING_INIT_NOTIFIER_HEAD(&gdev->notifier);
741 #ifdef CONFIG_PINCTRL
742 INIT_LIST_HEAD(&gdev->pin_ranges);
746 ret = gpiochip_set_desc_names(gc);
748 goto err_remove_from_list;
750 ret = devprop_gpiochip_set_names(gc);
752 goto err_remove_from_list;
754 ret = gpiochip_alloc_valid_mask(gc);
756 goto err_remove_from_list;
758 ret = of_gpiochip_add(gc);
760 goto err_free_gpiochip_mask;
762 ret = gpiochip_init_valid_mask(gc);
764 goto err_remove_of_chip;
766 for (i = 0; i < gc->ngpio; i++) {
767 struct gpio_desc *desc = &gdev->descs[i];
769 if (gc->get_direction && gpiochip_line_is_valid(gc, i)) {
770 assign_bit(FLAG_IS_OUT,
771 &desc->flags, !gc->get_direction(gc, i));
773 assign_bit(FLAG_IS_OUT,
774 &desc->flags, !gc->direction_input);
778 ret = gpiochip_add_pin_ranges(gc);
780 goto err_remove_of_chip;
782 acpi_gpiochip_add(gc);
784 machine_gpiochip_add(gc);
786 ret = gpiochip_irqchip_init_valid_mask(gc);
788 goto err_remove_acpi_chip;
790 ret = gpiochip_irqchip_init_hw(gc);
792 goto err_remove_acpi_chip;
794 ret = gpiochip_add_irqchip(gc, lock_key, request_key);
796 goto err_remove_irqchip_mask;
799 * By first adding the chardev, and then adding the device,
800 * we get a device node entry in sysfs under
801 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
802 * coldplug of device nodes and other udev business.
803 * We can do this only if gpiolib has been initialized.
804 * Otherwise, defer until later.
806 if (gpiolib_initialized) {
807 ret = gpiochip_setup_dev(gdev);
809 goto err_remove_irqchip;
814 gpiochip_irqchip_remove(gc);
815 err_remove_irqchip_mask:
816 gpiochip_irqchip_free_valid_mask(gc);
817 err_remove_acpi_chip:
818 acpi_gpiochip_remove(gc);
820 gpiochip_free_hogs(gc);
821 of_gpiochip_remove(gc);
822 err_free_gpiochip_mask:
823 gpiochip_remove_pin_ranges(gc);
824 gpiochip_free_valid_mask(gc);
825 err_remove_from_list:
826 spin_lock_irqsave(&gpio_lock, flags);
827 list_del(&gdev->list);
828 spin_unlock_irqrestore(&gpio_lock, flags);
830 kfree_const(gdev->label);
834 kfree(dev_name(&gdev->dev));
836 ida_free(&gpio_ida, gdev->id);
838 /* failures here can mean systems won't boot... */
839 if (ret != -EPROBE_DEFER) {
840 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
841 gdev->base, gdev->base + gdev->ngpio - 1,
842 gc->label ? : "generic", ret);
847 EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
850 * gpiochip_get_data() - get per-subdriver data for the chip
854 * The per-subdriver data for the chip.
856 void *gpiochip_get_data(struct gpio_chip *gc)
858 return gc->gpiodev->data;
860 EXPORT_SYMBOL_GPL(gpiochip_get_data);
863 * gpiochip_remove() - unregister a gpio_chip
864 * @gc: the chip to unregister
866 * A gpio_chip with any GPIOs still requested may not be removed.
868 void gpiochip_remove(struct gpio_chip *gc)
870 struct gpio_device *gdev = gc->gpiodev;
874 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
875 gpiochip_sysfs_unregister(gdev);
876 gpiochip_free_hogs(gc);
877 /* Numb the device, cancelling all outstanding operations */
879 gpiochip_irqchip_remove(gc);
880 acpi_gpiochip_remove(gc);
881 of_gpiochip_remove(gc);
882 gpiochip_remove_pin_ranges(gc);
883 gpiochip_free_valid_mask(gc);
885 * We accept no more calls into the driver from this point, so
886 * NULL the driver data pointer
890 spin_lock_irqsave(&gpio_lock, flags);
891 for (i = 0; i < gdev->ngpio; i++) {
892 if (gpiochip_is_requested(gc, i))
895 spin_unlock_irqrestore(&gpio_lock, flags);
897 if (i != gdev->ngpio)
899 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
902 * The gpiochip side puts its use of the device to rest here:
903 * if there are no userspace clients, the chardev and device will
904 * be removed, else it will be dangling until the last user is
907 gcdev_unregister(gdev);
908 put_device(&gdev->dev);
910 EXPORT_SYMBOL_GPL(gpiochip_remove);
913 * gpiochip_find() - iterator for locating a specific gpio_chip
914 * @data: data to pass to match function
915 * @match: Callback function to check gpio_chip
917 * Similar to bus_find_device. It returns a reference to a gpio_chip as
918 * determined by a user supplied @match callback. The callback should return
919 * 0 if the device doesn't match and non-zero if it does. If the callback is
920 * non-zero, this function will return to the caller and not iterate over any
923 struct gpio_chip *gpiochip_find(void *data,
924 int (*match)(struct gpio_chip *gc,
927 struct gpio_device *gdev;
928 struct gpio_chip *gc = NULL;
931 spin_lock_irqsave(&gpio_lock, flags);
932 list_for_each_entry(gdev, &gpio_devices, list)
933 if (gdev->chip && match(gdev->chip, data)) {
938 spin_unlock_irqrestore(&gpio_lock, flags);
942 EXPORT_SYMBOL_GPL(gpiochip_find);
944 static int gpiochip_match_name(struct gpio_chip *gc, void *data)
946 const char *name = data;
948 return !strcmp(gc->label, name);
951 static struct gpio_chip *find_chip_by_name(const char *name)
953 return gpiochip_find((void *)name, gpiochip_match_name);
956 #ifdef CONFIG_GPIOLIB_IRQCHIP
959 * The following is irqchip helper code for gpiochips.
962 static int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
964 struct gpio_irq_chip *girq = &gc->irq;
969 return girq->init_hw(gc);
972 static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
974 struct gpio_irq_chip *girq = &gc->irq;
976 if (!girq->init_valid_mask)
979 girq->valid_mask = gpiochip_allocate_mask(gc);
980 if (!girq->valid_mask)
983 girq->init_valid_mask(gc, girq->valid_mask, gc->ngpio);
988 static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
990 bitmap_free(gc->irq.valid_mask);
991 gc->irq.valid_mask = NULL;
994 bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gc,
997 if (!gpiochip_line_is_valid(gc, offset))
999 /* No mask means all valid */
1000 if (likely(!gc->irq.valid_mask))
1002 return test_bit(offset, gc->irq.valid_mask);
1004 EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
1006 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1009 * gpiochip_set_hierarchical_irqchip() - connects a hierarchical irqchip
1011 * @gc: the gpiochip to set the irqchip hierarchical handler to
1012 * @irqchip: the irqchip to handle this level of the hierarchy, the interrupt
1013 * will then percolate up to the parent
1015 static void gpiochip_set_hierarchical_irqchip(struct gpio_chip *gc,
1016 struct irq_chip *irqchip)
1018 /* DT will deal with mapping each IRQ as we go along */
1019 if (is_of_node(gc->irq.fwnode))
1023 * This is for legacy and boardfile "irqchip" fwnodes: allocate
1024 * irqs upfront instead of dynamically since we don't have the
1025 * dynamic type of allocation that hardware description languages
1026 * provide. Once all GPIO drivers using board files are gone from
1027 * the kernel we can delete this code, but for a transitional period
1028 * it is necessary to keep this around.
1030 if (is_fwnode_irqchip(gc->irq.fwnode)) {
1034 for (i = 0; i < gc->ngpio; i++) {
1035 struct irq_fwspec fwspec;
1036 unsigned int parent_hwirq;
1037 unsigned int parent_type;
1038 struct gpio_irq_chip *girq = &gc->irq;
1041 * We call the child to parent translation function
1042 * only to check if the child IRQ is valid or not.
1043 * Just pick the rising edge type here as that is what
1044 * we likely need to support.
1046 ret = girq->child_to_parent_hwirq(gc, i,
1047 IRQ_TYPE_EDGE_RISING,
1051 chip_err(gc, "skip set-up on hwirq %d\n",
1056 fwspec.fwnode = gc->irq.fwnode;
1057 /* This is the hwirq for the GPIO line side of things */
1058 fwspec.param[0] = girq->child_offset_to_irq(gc, i);
1059 /* Just pick something */
1060 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
1061 fwspec.param_count = 2;
1062 ret = __irq_domain_alloc_irqs(gc->irq.domain,
1063 /* just pick something */
1072 "can not allocate irq for GPIO line %d parent hwirq %d in hierarchy domain: %d\n",
1079 chip_err(gc, "%s unknown fwnode type proceed anyway\n", __func__);
1084 static int gpiochip_hierarchy_irq_domain_translate(struct irq_domain *d,
1085 struct irq_fwspec *fwspec,
1086 unsigned long *hwirq,
1089 /* We support standard DT translation */
1090 if (is_of_node(fwspec->fwnode) && fwspec->param_count == 2) {
1091 return irq_domain_translate_twocell(d, fwspec, hwirq, type);
1094 /* This is for board files and others not using DT */
1095 if (is_fwnode_irqchip(fwspec->fwnode)) {
1098 ret = irq_domain_translate_twocell(d, fwspec, hwirq, type);
1101 WARN_ON(*type == IRQ_TYPE_NONE);
1107 static int gpiochip_hierarchy_irq_domain_alloc(struct irq_domain *d,
1109 unsigned int nr_irqs,
1112 struct gpio_chip *gc = d->host_data;
1113 irq_hw_number_t hwirq;
1114 unsigned int type = IRQ_TYPE_NONE;
1115 struct irq_fwspec *fwspec = data;
1117 unsigned int parent_hwirq;
1118 unsigned int parent_type;
1119 struct gpio_irq_chip *girq = &gc->irq;
1123 * The nr_irqs parameter is always one except for PCI multi-MSI
1124 * so this should not happen.
1126 WARN_ON(nr_irqs != 1);
1128 ret = gc->irq.child_irq_domain_ops.translate(d, fwspec, &hwirq, &type);
1132 chip_dbg(gc, "allocate IRQ %d, hwirq %lu\n", irq, hwirq);
1134 ret = girq->child_to_parent_hwirq(gc, hwirq, type,
1135 &parent_hwirq, &parent_type);
1137 chip_err(gc, "can't look up hwirq %lu\n", hwirq);
1140 chip_dbg(gc, "found parent hwirq %u\n", parent_hwirq);
1143 * We set handle_bad_irq because the .set_type() should
1144 * always be invoked and set the right type of handler.
1146 irq_domain_set_info(d,
1155 /* This parent only handles asserted level IRQs */
1156 parent_arg = girq->populate_parent_alloc_arg(gc, parent_hwirq, parent_type);
1160 chip_dbg(gc, "alloc_irqs_parent for %d parent hwirq %d\n",
1162 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1163 ret = irq_domain_alloc_irqs_parent(d, irq, 1, parent_arg);
1165 * If the parent irqdomain is msi, the interrupts have already
1166 * been allocated, so the EEXIST is good.
1168 if (irq_domain_is_msi(d->parent) && (ret == -EEXIST))
1172 "failed to allocate parent hwirq %d for hwirq %lu\n",
1173 parent_hwirq, hwirq);
1179 static unsigned int gpiochip_child_offset_to_irq_noop(struct gpio_chip *gc,
1180 unsigned int offset)
1185 static void gpiochip_hierarchy_setup_domain_ops(struct irq_domain_ops *ops)
1187 ops->activate = gpiochip_irq_domain_activate;
1188 ops->deactivate = gpiochip_irq_domain_deactivate;
1189 ops->alloc = gpiochip_hierarchy_irq_domain_alloc;
1190 ops->free = irq_domain_free_irqs_common;
1193 * We only allow overriding the translate() function for
1194 * hierarchical chips, and this should only be done if the user
1195 * really need something other than 1:1 translation.
1197 if (!ops->translate)
1198 ops->translate = gpiochip_hierarchy_irq_domain_translate;
1201 static int gpiochip_hierarchy_add_domain(struct gpio_chip *gc)
1203 if (!gc->irq.child_to_parent_hwirq ||
1205 chip_err(gc, "missing irqdomain vital data\n");
1209 if (!gc->irq.child_offset_to_irq)
1210 gc->irq.child_offset_to_irq = gpiochip_child_offset_to_irq_noop;
1212 if (!gc->irq.populate_parent_alloc_arg)
1213 gc->irq.populate_parent_alloc_arg =
1214 gpiochip_populate_parent_fwspec_twocell;
1216 gpiochip_hierarchy_setup_domain_ops(&gc->irq.child_irq_domain_ops);
1218 gc->irq.domain = irq_domain_create_hierarchy(
1219 gc->irq.parent_domain,
1223 &gc->irq.child_irq_domain_ops,
1226 if (!gc->irq.domain)
1229 gpiochip_set_hierarchical_irqchip(gc, gc->irq.chip);
1234 static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1236 return !!gc->irq.parent_domain;
1239 void *gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc,
1240 unsigned int parent_hwirq,
1241 unsigned int parent_type)
1243 struct irq_fwspec *fwspec;
1245 fwspec = kmalloc(sizeof(*fwspec), GFP_KERNEL);
1249 fwspec->fwnode = gc->irq.parent_domain->fwnode;
1250 fwspec->param_count = 2;
1251 fwspec->param[0] = parent_hwirq;
1252 fwspec->param[1] = parent_type;
1256 EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_twocell);
1258 void *gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc,
1259 unsigned int parent_hwirq,
1260 unsigned int parent_type)
1262 struct irq_fwspec *fwspec;
1264 fwspec = kmalloc(sizeof(*fwspec), GFP_KERNEL);
1268 fwspec->fwnode = gc->irq.parent_domain->fwnode;
1269 fwspec->param_count = 4;
1270 fwspec->param[0] = 0;
1271 fwspec->param[1] = parent_hwirq;
1272 fwspec->param[2] = 0;
1273 fwspec->param[3] = parent_type;
1277 EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_fourcell);
1281 static int gpiochip_hierarchy_add_domain(struct gpio_chip *gc)
1286 static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1291 #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
1294 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1295 * @d: the irqdomain used by this irqchip
1296 * @irq: the global irq number used by this GPIO irqchip irq
1297 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1299 * This function will set up the mapping for a certain IRQ line on a
1300 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1301 * stored inside the gpiochip.
1303 int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1304 irq_hw_number_t hwirq)
1306 struct gpio_chip *gc = d->host_data;
1309 if (!gpiochip_irqchip_irq_valid(gc, hwirq))
1312 irq_set_chip_data(irq, gc);
1314 * This lock class tells lockdep that GPIO irqs are in a different
1315 * category than their parents, so it won't report false recursion.
1317 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1318 irq_set_chip_and_handler(irq, gc->irq.chip, gc->irq.handler);
1319 /* Chips that use nested thread handlers have them marked */
1320 if (gc->irq.threaded)
1321 irq_set_nested_thread(irq, 1);
1322 irq_set_noprobe(irq);
1324 if (gc->irq.num_parents == 1)
1325 ret = irq_set_parent(irq, gc->irq.parents[0]);
1326 else if (gc->irq.map)
1327 ret = irq_set_parent(irq, gc->irq.map[hwirq]);
1333 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1334 * is passed as default type.
1336 if (gc->irq.default_type != IRQ_TYPE_NONE)
1337 irq_set_irq_type(irq, gc->irq.default_type);
1341 EXPORT_SYMBOL_GPL(gpiochip_irq_map);
1343 void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1345 struct gpio_chip *gc = d->host_data;
1347 if (gc->irq.threaded)
1348 irq_set_nested_thread(irq, 0);
1349 irq_set_chip_and_handler(irq, NULL, NULL);
1350 irq_set_chip_data(irq, NULL);
1352 EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
1354 static const struct irq_domain_ops gpiochip_domain_ops = {
1355 .map = gpiochip_irq_map,
1356 .unmap = gpiochip_irq_unmap,
1357 /* Virtually all GPIO irqchips are twocell:ed */
1358 .xlate = irq_domain_xlate_twocell,
1362 * TODO: move these activate/deactivate in under the hierarchicial
1363 * irqchip implementation as static once SPMI and SSBI (all external
1364 * users) are phased over.
1367 * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ
1368 * @domain: The IRQ domain used by this IRQ chip
1369 * @data: Outermost irq_data associated with the IRQ
1370 * @reserve: If set, only reserve an interrupt vector instead of assigning one
1372 * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be
1373 * used as the activate function for the &struct irq_domain_ops. The host_data
1374 * for the IRQ domain must be the &struct gpio_chip.
1376 int gpiochip_irq_domain_activate(struct irq_domain *domain,
1377 struct irq_data *data, bool reserve)
1379 struct gpio_chip *gc = domain->host_data;
1381 return gpiochip_lock_as_irq(gc, data->hwirq);
1383 EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate);
1386 * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ
1387 * @domain: The IRQ domain used by this IRQ chip
1388 * @data: Outermost irq_data associated with the IRQ
1390 * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to
1391 * be used as the deactivate function for the &struct irq_domain_ops. The
1392 * host_data for the IRQ domain must be the &struct gpio_chip.
1394 void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
1395 struct irq_data *data)
1397 struct gpio_chip *gc = domain->host_data;
1399 return gpiochip_unlock_as_irq(gc, data->hwirq);
1401 EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate);
1403 static int gpiochip_to_irq(struct gpio_chip *gc, unsigned int offset)
1405 struct irq_domain *domain = gc->irq.domain;
1407 if (!gpiochip_irqchip_irq_valid(gc, offset))
1410 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1411 if (irq_domain_is_hierarchy(domain)) {
1412 struct irq_fwspec spec;
1414 spec.fwnode = domain->fwnode;
1415 spec.param_count = 2;
1416 spec.param[0] = gc->irq.child_offset_to_irq(gc, offset);
1417 spec.param[1] = IRQ_TYPE_NONE;
1419 return irq_create_fwspec_mapping(&spec);
1423 return irq_create_mapping(domain, offset);
1426 static int gpiochip_irq_reqres(struct irq_data *d)
1428 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1430 return gpiochip_reqres_irq(gc, d->hwirq);
1433 static void gpiochip_irq_relres(struct irq_data *d)
1435 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1437 gpiochip_relres_irq(gc, d->hwirq);
1440 static void gpiochip_irq_mask(struct irq_data *d)
1442 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1444 if (gc->irq.irq_mask)
1445 gc->irq.irq_mask(d);
1446 gpiochip_disable_irq(gc, d->hwirq);
1449 static void gpiochip_irq_unmask(struct irq_data *d)
1451 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1453 gpiochip_enable_irq(gc, d->hwirq);
1454 if (gc->irq.irq_unmask)
1455 gc->irq.irq_unmask(d);
1458 static void gpiochip_irq_enable(struct irq_data *d)
1460 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1462 gpiochip_enable_irq(gc, d->hwirq);
1463 gc->irq.irq_enable(d);
1466 static void gpiochip_irq_disable(struct irq_data *d)
1468 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1470 gc->irq.irq_disable(d);
1471 gpiochip_disable_irq(gc, d->hwirq);
1474 static void gpiochip_set_irq_hooks(struct gpio_chip *gc)
1476 struct irq_chip *irqchip = gc->irq.chip;
1478 if (!irqchip->irq_request_resources &&
1479 !irqchip->irq_release_resources) {
1480 irqchip->irq_request_resources = gpiochip_irq_reqres;
1481 irqchip->irq_release_resources = gpiochip_irq_relres;
1483 if (WARN_ON(gc->irq.irq_enable))
1485 /* Check if the irqchip already has this hook... */
1486 if (irqchip->irq_enable == gpiochip_irq_enable ||
1487 irqchip->irq_mask == gpiochip_irq_mask) {
1489 * ...and if so, give a gentle warning that this is bad
1493 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1497 if (irqchip->irq_disable) {
1498 gc->irq.irq_disable = irqchip->irq_disable;
1499 irqchip->irq_disable = gpiochip_irq_disable;
1501 gc->irq.irq_mask = irqchip->irq_mask;
1502 irqchip->irq_mask = gpiochip_irq_mask;
1505 if (irqchip->irq_enable) {
1506 gc->irq.irq_enable = irqchip->irq_enable;
1507 irqchip->irq_enable = gpiochip_irq_enable;
1509 gc->irq.irq_unmask = irqchip->irq_unmask;
1510 irqchip->irq_unmask = gpiochip_irq_unmask;
1515 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1516 * @gc: the GPIO chip to add the IRQ chip to
1517 * @lock_key: lockdep class for IRQ lock
1518 * @request_key: lockdep class for IRQ request
1520 static int gpiochip_add_irqchip(struct gpio_chip *gc,
1521 struct lock_class_key *lock_key,
1522 struct lock_class_key *request_key)
1524 struct fwnode_handle *fwnode = dev_fwnode(&gc->gpiodev->dev);
1525 struct irq_chip *irqchip = gc->irq.chip;
1532 if (gc->irq.parent_handler && gc->can_sleep) {
1533 chip_err(gc, "you cannot have chained interrupts on a chip that may sleep\n");
1537 type = gc->irq.default_type;
1540 * Specifying a default trigger is a terrible idea if DT or ACPI is
1541 * used to configure the interrupts, as you may end up with
1542 * conflicting triggers. Tell the user, and reset to NONE.
1544 if (WARN(fwnode && type != IRQ_TYPE_NONE,
1545 "%pfw: Ignoring %u default trigger\n", fwnode, type))
1546 type = IRQ_TYPE_NONE;
1549 chip_warn(gc, "to_irq is redefined in %s and you shouldn't rely on it\n", __func__);
1551 gc->to_irq = gpiochip_to_irq;
1552 gc->irq.default_type = type;
1553 gc->irq.lock_key = lock_key;
1554 gc->irq.request_key = request_key;
1556 /* If a parent irqdomain is provided, let's build a hierarchy */
1557 if (gpiochip_hierarchy_is_hierarchical(gc)) {
1558 int ret = gpiochip_hierarchy_add_domain(gc);
1562 /* Some drivers provide custom irqdomain ops */
1563 gc->irq.domain = irq_domain_create_simple(fwnode,
1566 gc->irq.domain_ops ?: &gpiochip_domain_ops,
1568 if (!gc->irq.domain)
1572 if (gc->irq.parent_handler) {
1573 for (i = 0; i < gc->irq.num_parents; i++) {
1576 if (gc->irq.per_parent_data)
1577 data = gc->irq.parent_handler_data_array[i];
1579 data = gc->irq.parent_handler_data ?: gc;
1582 * The parent IRQ chip is already using the chip_data
1583 * for this IRQ chip, so our callbacks simply use the
1586 irq_set_chained_handler_and_data(gc->irq.parents[i],
1587 gc->irq.parent_handler,
1592 gpiochip_set_irq_hooks(gc);
1594 acpi_gpiochip_request_interrupts(gc);
1600 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1601 * @gc: the gpiochip to remove the irqchip from
1603 * This is called only from gpiochip_remove()
1605 static void gpiochip_irqchip_remove(struct gpio_chip *gc)
1607 struct irq_chip *irqchip = gc->irq.chip;
1608 unsigned int offset;
1610 acpi_gpiochip_free_interrupts(gc);
1612 if (irqchip && gc->irq.parent_handler) {
1613 struct gpio_irq_chip *irq = &gc->irq;
1616 for (i = 0; i < irq->num_parents; i++)
1617 irq_set_chained_handler_and_data(irq->parents[i],
1621 /* Remove all IRQ mappings and delete the domain */
1622 if (gc->irq.domain) {
1625 for (offset = 0; offset < gc->ngpio; offset++) {
1626 if (!gpiochip_irqchip_irq_valid(gc, offset))
1629 irq = irq_find_mapping(gc->irq.domain, offset);
1630 irq_dispose_mapping(irq);
1633 irq_domain_remove(gc->irq.domain);
1637 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
1638 irqchip->irq_request_resources = NULL;
1639 irqchip->irq_release_resources = NULL;
1641 if (irqchip->irq_enable == gpiochip_irq_enable) {
1642 irqchip->irq_enable = gc->irq.irq_enable;
1643 irqchip->irq_disable = gc->irq.irq_disable;
1646 gc->irq.irq_enable = NULL;
1647 gc->irq.irq_disable = NULL;
1648 gc->irq.chip = NULL;
1650 gpiochip_irqchip_free_valid_mask(gc);
1654 * gpiochip_irqchip_add_domain() - adds an irqdomain to a gpiochip
1655 * @gc: the gpiochip to add the irqchip to
1656 * @domain: the irqdomain to add to the gpiochip
1658 * This function adds an IRQ domain to the gpiochip.
1660 int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
1661 struct irq_domain *domain)
1666 gc->to_irq = gpiochip_to_irq;
1667 gc->irq.domain = domain;
1671 EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_domain);
1673 #else /* CONFIG_GPIOLIB_IRQCHIP */
1675 static inline int gpiochip_add_irqchip(struct gpio_chip *gc,
1676 struct lock_class_key *lock_key,
1677 struct lock_class_key *request_key)
1681 static void gpiochip_irqchip_remove(struct gpio_chip *gc) {}
1683 static inline int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
1688 static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
1692 static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
1695 #endif /* CONFIG_GPIOLIB_IRQCHIP */
1698 * gpiochip_generic_request() - request the gpio function for a pin
1699 * @gc: the gpiochip owning the GPIO
1700 * @offset: the offset of the GPIO to request for GPIO function
1702 int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset)
1704 #ifdef CONFIG_PINCTRL
1705 if (list_empty(&gc->gpiodev->pin_ranges))
1709 return pinctrl_gpio_request(gc->gpiodev->base + offset);
1711 EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1714 * gpiochip_generic_free() - free the gpio function from a pin
1715 * @gc: the gpiochip to request the gpio function for
1716 * @offset: the offset of the GPIO to free from GPIO function
1718 void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset)
1720 #ifdef CONFIG_PINCTRL
1721 if (list_empty(&gc->gpiodev->pin_ranges))
1725 pinctrl_gpio_free(gc->gpiodev->base + offset);
1727 EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1730 * gpiochip_generic_config() - apply configuration for a pin
1731 * @gc: the gpiochip owning the GPIO
1732 * @offset: the offset of the GPIO to apply the configuration
1733 * @config: the configuration to be applied
1735 int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset,
1736 unsigned long config)
1738 return pinctrl_gpio_set_config(gc->gpiodev->base + offset, config);
1740 EXPORT_SYMBOL_GPL(gpiochip_generic_config);
1742 #ifdef CONFIG_PINCTRL
1745 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1746 * @gc: the gpiochip to add the range for
1747 * @pctldev: the pin controller to map to
1748 * @gpio_offset: the start offset in the current gpio_chip number space
1749 * @pin_group: name of the pin group inside the pin controller
1751 * Calling this function directly from a DeviceTree-supported
1752 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
1753 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
1754 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
1756 int gpiochip_add_pingroup_range(struct gpio_chip *gc,
1757 struct pinctrl_dev *pctldev,
1758 unsigned int gpio_offset, const char *pin_group)
1760 struct gpio_pin_range *pin_range;
1761 struct gpio_device *gdev = gc->gpiodev;
1764 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1766 chip_err(gc, "failed to allocate pin ranges\n");
1770 /* Use local offset as range ID */
1771 pin_range->range.id = gpio_offset;
1772 pin_range->range.gc = gc;
1773 pin_range->range.name = gc->label;
1774 pin_range->range.base = gdev->base + gpio_offset;
1775 pin_range->pctldev = pctldev;
1777 ret = pinctrl_get_group_pins(pctldev, pin_group,
1778 &pin_range->range.pins,
1779 &pin_range->range.npins);
1785 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1787 chip_dbg(gc, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1788 gpio_offset, gpio_offset + pin_range->range.npins - 1,
1789 pinctrl_dev_get_devname(pctldev), pin_group);
1791 list_add_tail(&pin_range->node, &gdev->pin_ranges);
1795 EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1798 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1799 * @gc: the gpiochip to add the range for
1800 * @pinctl_name: the dev_name() of the pin controller to map to
1801 * @gpio_offset: the start offset in the current gpio_chip number space
1802 * @pin_offset: the start offset in the pin controller number space
1803 * @npins: the number of pins from the offset of each pin space (GPIO and
1804 * pin controller) to accumulate in this range
1807 * 0 on success, or a negative error-code on failure.
1809 * Calling this function directly from a DeviceTree-supported
1810 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
1811 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
1812 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
1814 int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
1815 unsigned int gpio_offset, unsigned int pin_offset,
1818 struct gpio_pin_range *pin_range;
1819 struct gpio_device *gdev = gc->gpiodev;
1822 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1824 chip_err(gc, "failed to allocate pin ranges\n");
1828 /* Use local offset as range ID */
1829 pin_range->range.id = gpio_offset;
1830 pin_range->range.gc = gc;
1831 pin_range->range.name = gc->label;
1832 pin_range->range.base = gdev->base + gpio_offset;
1833 pin_range->range.pin_base = pin_offset;
1834 pin_range->range.npins = npins;
1835 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
1837 if (IS_ERR(pin_range->pctldev)) {
1838 ret = PTR_ERR(pin_range->pctldev);
1839 chip_err(gc, "could not create pin range\n");
1843 chip_dbg(gc, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1844 gpio_offset, gpio_offset + npins - 1,
1846 pin_offset, pin_offset + npins - 1);
1848 list_add_tail(&pin_range->node, &gdev->pin_ranges);
1852 EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
1855 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1856 * @gc: the chip to remove all the mappings for
1858 void gpiochip_remove_pin_ranges(struct gpio_chip *gc)
1860 struct gpio_pin_range *pin_range, *tmp;
1861 struct gpio_device *gdev = gc->gpiodev;
1863 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
1864 list_del(&pin_range->node);
1865 pinctrl_remove_gpio_range(pin_range->pctldev,
1870 EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1872 #endif /* CONFIG_PINCTRL */
1874 /* These "optional" allocation calls help prevent drivers from stomping
1875 * on each other, and help provide better diagnostics in debugfs.
1876 * They're called even less than the "set direction" calls.
1878 static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
1880 struct gpio_chip *gc = desc->gdev->chip;
1882 unsigned long flags;
1886 label = kstrdup_const(label, GFP_KERNEL);
1891 spin_lock_irqsave(&gpio_lock, flags);
1893 /* NOTE: gpio_request() can be called in early boot,
1894 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
1897 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
1898 desc_set_label(desc, label ? : "?");
1901 goto out_free_unlock;
1905 /* gc->request may sleep */
1906 spin_unlock_irqrestore(&gpio_lock, flags);
1907 offset = gpio_chip_hwgpio(desc);
1908 if (gpiochip_line_is_valid(gc, offset))
1909 ret = gc->request(gc, offset);
1912 spin_lock_irqsave(&gpio_lock, flags);
1915 desc_set_label(desc, NULL);
1916 clear_bit(FLAG_REQUESTED, &desc->flags);
1917 goto out_free_unlock;
1920 if (gc->get_direction) {
1921 /* gc->get_direction may sleep */
1922 spin_unlock_irqrestore(&gpio_lock, flags);
1923 gpiod_get_direction(desc);
1924 spin_lock_irqsave(&gpio_lock, flags);
1926 spin_unlock_irqrestore(&gpio_lock, flags);
1930 spin_unlock_irqrestore(&gpio_lock, flags);
1936 * This descriptor validation needs to be inserted verbatim into each
1937 * function taking a descriptor, so we need to use a preprocessor
1938 * macro to avoid endless duplication. If the desc is NULL it is an
1939 * optional GPIO and calls should just bail out.
1941 static int validate_desc(const struct gpio_desc *desc, const char *func)
1946 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
1947 return PTR_ERR(desc);
1950 pr_warn("%s: invalid GPIO (no device)\n", func);
1953 if (!desc->gdev->chip) {
1954 dev_warn(&desc->gdev->dev,
1955 "%s: backing chip is gone\n", func);
1961 #define VALIDATE_DESC(desc) do { \
1962 int __valid = validate_desc(desc, __func__); \
1967 #define VALIDATE_DESC_VOID(desc) do { \
1968 int __valid = validate_desc(desc, __func__); \
1973 int gpiod_request(struct gpio_desc *desc, const char *label)
1975 int ret = -EPROBE_DEFER;
1976 struct gpio_device *gdev;
1978 VALIDATE_DESC(desc);
1981 if (try_module_get(gdev->owner)) {
1982 ret = gpiod_request_commit(desc, label);
1984 module_put(gdev->owner);
1986 get_device(&gdev->dev);
1990 gpiod_dbg(desc, "%s: status %d\n", __func__, ret);
1995 static bool gpiod_free_commit(struct gpio_desc *desc)
1998 unsigned long flags;
1999 struct gpio_chip *gc;
2003 gpiod_unexport(desc);
2005 spin_lock_irqsave(&gpio_lock, flags);
2007 gc = desc->gdev->chip;
2008 if (gc && test_bit(FLAG_REQUESTED, &desc->flags)) {
2010 spin_unlock_irqrestore(&gpio_lock, flags);
2011 might_sleep_if(gc->can_sleep);
2012 gc->free(gc, gpio_chip_hwgpio(desc));
2013 spin_lock_irqsave(&gpio_lock, flags);
2015 kfree_const(desc->label);
2016 desc_set_label(desc, NULL);
2017 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
2018 clear_bit(FLAG_REQUESTED, &desc->flags);
2019 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
2020 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
2021 clear_bit(FLAG_PULL_UP, &desc->flags);
2022 clear_bit(FLAG_PULL_DOWN, &desc->flags);
2023 clear_bit(FLAG_BIAS_DISABLE, &desc->flags);
2024 clear_bit(FLAG_EDGE_RISING, &desc->flags);
2025 clear_bit(FLAG_EDGE_FALLING, &desc->flags);
2026 clear_bit(FLAG_IS_HOGGED, &desc->flags);
2027 #ifdef CONFIG_OF_DYNAMIC
2030 #ifdef CONFIG_GPIO_CDEV
2031 WRITE_ONCE(desc->debounce_period_us, 0);
2036 spin_unlock_irqrestore(&gpio_lock, flags);
2037 blocking_notifier_call_chain(&desc->gdev->notifier,
2038 GPIOLINE_CHANGED_RELEASED, desc);
2043 void gpiod_free(struct gpio_desc *desc)
2045 if (desc && desc->gdev && gpiod_free_commit(desc)) {
2046 module_put(desc->gdev->owner);
2047 put_device(&desc->gdev->dev);
2049 WARN_ON(extra_checks);
2054 * gpiochip_is_requested - return string iff signal was requested
2055 * @gc: controller managing the signal
2056 * @offset: of signal within controller's 0..(ngpio - 1) range
2058 * Returns NULL if the GPIO is not currently requested, else a string.
2059 * The string returned is the label passed to gpio_request(); if none has been
2060 * passed it is a meaningless, non-NULL constant.
2062 * This function is for use by GPIO controller drivers. The label can
2063 * help with diagnostics, and knowing that the signal is used as a GPIO
2064 * can help avoid accidentally multiplexing it to another controller.
2066 const char *gpiochip_is_requested(struct gpio_chip *gc, unsigned int offset)
2068 struct gpio_desc *desc;
2070 desc = gpiochip_get_desc(gc, offset);
2074 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
2078 EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2081 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2083 * @hwnum: hardware number of the GPIO for which to request the descriptor
2084 * @label: label for the GPIO
2085 * @lflags: lookup flags for this GPIO or 0 if default, this can be used to
2086 * specify things like line inversion semantics with the machine flags
2087 * such as GPIO_OUT_LOW
2088 * @dflags: descriptor request flags for this GPIO or 0 if default, this
2089 * can be used to specify consumer semantics such as open drain
2091 * Function allows GPIO chip drivers to request and use their own GPIO
2092 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2093 * function will not increase reference count of the GPIO chip module. This
2094 * allows the GPIO chip module to be unloaded as needed (we assume that the
2095 * GPIO chip driver handles freeing the GPIOs it has requested).
2098 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2101 struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc,
2104 enum gpio_lookup_flags lflags,
2105 enum gpiod_flags dflags)
2107 struct gpio_desc *desc = gpiochip_get_desc(gc, hwnum);
2111 chip_err(gc, "failed to get GPIO descriptor\n");
2115 ret = gpiod_request_commit(desc, label);
2117 return ERR_PTR(ret);
2119 ret = gpiod_configure_flags(desc, label, lflags, dflags);
2121 chip_err(gc, "setup of own GPIO %s failed\n", label);
2122 gpiod_free_commit(desc);
2123 return ERR_PTR(ret);
2128 EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
2131 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2132 * @desc: GPIO descriptor to free
2134 * Function frees the given GPIO requested previously with
2135 * gpiochip_request_own_desc().
2137 void gpiochip_free_own_desc(struct gpio_desc *desc)
2140 gpiod_free_commit(desc);
2142 EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
2145 * Drivers MUST set GPIO direction before making get/set calls. In
2146 * some cases this is done in early boot, before IRQs are enabled.
2148 * As a rule these aren't called more than once (except for drivers
2149 * using the open-drain emulation idiom) so these are natural places
2150 * to accumulate extra debugging checks. Note that we can't (yet)
2151 * rely on gpio_request() having been called beforehand.
2154 static int gpio_do_set_config(struct gpio_chip *gc, unsigned int offset,
2155 unsigned long config)
2157 if (!gc->set_config)
2160 return gc->set_config(gc, offset, config);
2163 static int gpio_set_config_with_argument(struct gpio_desc *desc,
2164 enum pin_config_param mode,
2167 struct gpio_chip *gc = desc->gdev->chip;
2168 unsigned long config;
2170 config = pinconf_to_config_packed(mode, argument);
2171 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2174 static int gpio_set_config_with_argument_optional(struct gpio_desc *desc,
2175 enum pin_config_param mode,
2178 struct device *dev = &desc->gdev->dev;
2179 int gpio = gpio_chip_hwgpio(desc);
2182 ret = gpio_set_config_with_argument(desc, mode, argument);
2183 if (ret != -ENOTSUPP)
2187 case PIN_CONFIG_PERSIST_STATE:
2188 dev_dbg(dev, "Persistence not supported for GPIO %d\n", gpio);
2197 static int gpio_set_config(struct gpio_desc *desc, enum pin_config_param mode)
2199 return gpio_set_config_with_argument(desc, mode, 0);
2202 static int gpio_set_bias(struct gpio_desc *desc)
2204 enum pin_config_param bias;
2207 if (test_bit(FLAG_BIAS_DISABLE, &desc->flags))
2208 bias = PIN_CONFIG_BIAS_DISABLE;
2209 else if (test_bit(FLAG_PULL_UP, &desc->flags))
2210 bias = PIN_CONFIG_BIAS_PULL_UP;
2211 else if (test_bit(FLAG_PULL_DOWN, &desc->flags))
2212 bias = PIN_CONFIG_BIAS_PULL_DOWN;
2217 case PIN_CONFIG_BIAS_PULL_DOWN:
2218 case PIN_CONFIG_BIAS_PULL_UP:
2227 return gpio_set_config_with_argument_optional(desc, bias, arg);
2230 int gpio_set_debounce_timeout(struct gpio_desc *desc, unsigned int debounce)
2232 return gpio_set_config_with_argument_optional(desc,
2233 PIN_CONFIG_INPUT_DEBOUNCE,
2238 * gpiod_direction_input - set the GPIO direction to input
2239 * @desc: GPIO to set to input
2241 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2242 * be called safely on it.
2244 * Return 0 in case of success, else an error code.
2246 int gpiod_direction_input(struct gpio_desc *desc)
2248 struct gpio_chip *gc;
2251 VALIDATE_DESC(desc);
2252 gc = desc->gdev->chip;
2255 * It is legal to have no .get() and .direction_input() specified if
2256 * the chip is output-only, but you can't specify .direction_input()
2257 * and not support the .get() operation, that doesn't make sense.
2259 if (!gc->get && gc->direction_input) {
2261 "%s: missing get() but have direction_input()\n",
2267 * If we have a .direction_input() callback, things are simple,
2268 * just call it. Else we are some input-only chip so try to check the
2269 * direction (if .get_direction() is supported) else we silently
2270 * assume we are in input mode after this.
2272 if (gc->direction_input) {
2273 ret = gc->direction_input(gc, gpio_chip_hwgpio(desc));
2274 } else if (gc->get_direction &&
2275 (gc->get_direction(gc, gpio_chip_hwgpio(desc)) != 1)) {
2277 "%s: missing direction_input() operation and line is output\n",
2282 clear_bit(FLAG_IS_OUT, &desc->flags);
2283 ret = gpio_set_bias(desc);
2286 trace_gpio_direction(desc_to_gpio(desc), 1, ret);
2290 EXPORT_SYMBOL_GPL(gpiod_direction_input);
2292 static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
2294 struct gpio_chip *gc = desc->gdev->chip;
2299 * It's OK not to specify .direction_output() if the gpiochip is
2300 * output-only, but if there is then not even a .set() operation it
2301 * is pretty tricky to drive the output line.
2303 if (!gc->set && !gc->direction_output) {
2305 "%s: missing set() and direction_output() operations\n",
2310 if (gc->direction_output) {
2311 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2313 /* Check that we are in output mode if we can */
2314 if (gc->get_direction &&
2315 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2317 "%s: missing direction_output() operation\n",
2322 * If we can't actively set the direction, we are some
2323 * output-only chip, so just drive the output as desired.
2325 gc->set(gc, gpio_chip_hwgpio(desc), val);
2329 set_bit(FLAG_IS_OUT, &desc->flags);
2330 trace_gpio_value(desc_to_gpio(desc), 0, val);
2331 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2336 * gpiod_direction_output_raw - set the GPIO direction to output
2337 * @desc: GPIO to set to output
2338 * @value: initial output value of the GPIO
2340 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2341 * be called safely on it. The initial value of the output must be specified
2342 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2344 * Return 0 in case of success, else an error code.
2346 int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2348 VALIDATE_DESC(desc);
2349 return gpiod_direction_output_raw_commit(desc, value);
2351 EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2354 * gpiod_direction_output - set the GPIO direction to output
2355 * @desc: GPIO to set to output
2356 * @value: initial output value of the GPIO
2358 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2359 * be called safely on it. The initial value of the output must be specified
2360 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2363 * Return 0 in case of success, else an error code.
2365 int gpiod_direction_output(struct gpio_desc *desc, int value)
2369 VALIDATE_DESC(desc);
2370 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2375 /* GPIOs used for enabled IRQs shall not be set as output */
2376 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2377 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
2379 "%s: tried to set a GPIO tied to an IRQ as output\n",
2384 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2385 /* First see if we can enable open drain in hardware */
2386 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_DRAIN);
2388 goto set_output_value;
2389 /* Emulate open drain by not actively driving the line high */
2391 ret = gpiod_direction_input(desc);
2392 goto set_output_flag;
2395 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2396 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_SOURCE);
2398 goto set_output_value;
2399 /* Emulate open source by not actively driving the line low */
2401 ret = gpiod_direction_input(desc);
2402 goto set_output_flag;
2405 gpio_set_config(desc, PIN_CONFIG_DRIVE_PUSH_PULL);
2409 ret = gpio_set_bias(desc);
2412 return gpiod_direction_output_raw_commit(desc, value);
2416 * When emulating open-source or open-drain functionalities by not
2417 * actively driving the line (setting mode to input) we still need to
2418 * set the IS_OUT flag or otherwise we won't be able to set the line
2422 set_bit(FLAG_IS_OUT, &desc->flags);
2425 EXPORT_SYMBOL_GPL(gpiod_direction_output);
2428 * gpiod_set_config - sets @config for a GPIO
2429 * @desc: descriptor of the GPIO for which to set the configuration
2430 * @config: Same packed config format as generic pinconf
2433 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2436 int gpiod_set_config(struct gpio_desc *desc, unsigned long config)
2438 struct gpio_chip *gc;
2440 VALIDATE_DESC(desc);
2441 gc = desc->gdev->chip;
2443 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2445 EXPORT_SYMBOL_GPL(gpiod_set_config);
2448 * gpiod_set_debounce - sets @debounce time for a GPIO
2449 * @desc: descriptor of the GPIO for which to set debounce time
2450 * @debounce: debounce time in microseconds
2453 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2456 int gpiod_set_debounce(struct gpio_desc *desc, unsigned int debounce)
2458 unsigned long config;
2460 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2461 return gpiod_set_config(desc, config);
2463 EXPORT_SYMBOL_GPL(gpiod_set_debounce);
2466 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2467 * @desc: descriptor of the GPIO for which to configure persistence
2468 * @transitory: True to lose state on suspend or reset, false for persistence
2471 * 0 on success, otherwise a negative error code.
2473 int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2475 VALIDATE_DESC(desc);
2477 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2478 * persistence state.
2480 assign_bit(FLAG_TRANSITORY, &desc->flags, transitory);
2482 /* If the driver supports it, set the persistence state now */
2483 return gpio_set_config_with_argument_optional(desc,
2484 PIN_CONFIG_PERSIST_STATE,
2487 EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2490 * gpiod_is_active_low - test whether a GPIO is active-low or not
2491 * @desc: the gpio descriptor to test
2493 * Returns 1 if the GPIO is active-low, 0 otherwise.
2495 int gpiod_is_active_low(const struct gpio_desc *desc)
2497 VALIDATE_DESC(desc);
2498 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
2500 EXPORT_SYMBOL_GPL(gpiod_is_active_low);
2503 * gpiod_toggle_active_low - toggle whether a GPIO is active-low or not
2504 * @desc: the gpio descriptor to change
2506 void gpiod_toggle_active_low(struct gpio_desc *desc)
2508 VALIDATE_DESC_VOID(desc);
2509 change_bit(FLAG_ACTIVE_LOW, &desc->flags);
2511 EXPORT_SYMBOL_GPL(gpiod_toggle_active_low);
2513 /* I/O calls are only valid after configuration completed; the relevant
2514 * "is this a valid GPIO" error checks should already have been done.
2516 * "Get" operations are often inlinable as reading a pin value register,
2517 * and masking the relevant bit in that register.
2519 * When "set" operations are inlinable, they involve writing that mask to
2520 * one register to set a low value, or a different register to set it high.
2521 * Otherwise locking is needed, so there may be little value to inlining.
2523 *------------------------------------------------------------------------
2525 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2526 * have requested the GPIO. That can include implicit requesting by
2527 * a direction setting call. Marking a gpio as requested locks its chip
2528 * in memory, guaranteeing that these table lookups need no more locking
2529 * and that gpiochip_remove() will fail.
2531 * REVISIT when debugging, consider adding some instrumentation to ensure
2532 * that the GPIO was actually requested.
2535 static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
2537 struct gpio_chip *gc;
2541 gc = desc->gdev->chip;
2542 offset = gpio_chip_hwgpio(desc);
2543 value = gc->get ? gc->get(gc, offset) : -EIO;
2544 value = value < 0 ? value : !!value;
2545 trace_gpio_value(desc_to_gpio(desc), 1, value);
2549 static int gpio_chip_get_multiple(struct gpio_chip *gc,
2550 unsigned long *mask, unsigned long *bits)
2552 if (gc->get_multiple) {
2553 return gc->get_multiple(gc, mask, bits);
2554 } else if (gc->get) {
2557 for_each_set_bit(i, mask, gc->ngpio) {
2558 value = gc->get(gc, i);
2561 __assign_bit(i, bits, value);
2568 int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2569 unsigned int array_size,
2570 struct gpio_desc **desc_array,
2571 struct gpio_array *array_info,
2572 unsigned long *value_bitmap)
2577 * Validate array_info against desc_array and its size.
2578 * It should immediately follow desc_array if both
2579 * have been obtained from the same gpiod_get_array() call.
2581 if (array_info && array_info->desc == desc_array &&
2582 array_size <= array_info->size &&
2583 (void *)array_info == desc_array + array_info->size) {
2585 WARN_ON(array_info->chip->can_sleep);
2587 ret = gpio_chip_get_multiple(array_info->chip,
2588 array_info->get_mask,
2593 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2594 bitmap_xor(value_bitmap, value_bitmap,
2595 array_info->invert_mask, array_size);
2597 i = find_first_zero_bit(array_info->get_mask, array_size);
2598 if (i == array_size)
2604 while (i < array_size) {
2605 struct gpio_chip *gc = desc_array[i]->gdev->chip;
2606 DECLARE_BITMAP(fastpath_mask, FASTPATH_NGPIO);
2607 DECLARE_BITMAP(fastpath_bits, FASTPATH_NGPIO);
2608 unsigned long *mask, *bits;
2611 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
2612 mask = fastpath_mask;
2613 bits = fastpath_bits;
2615 gfp_t flags = can_sleep ? GFP_KERNEL : GFP_ATOMIC;
2617 mask = bitmap_alloc(gc->ngpio, flags);
2621 bits = bitmap_alloc(gc->ngpio, flags);
2628 bitmap_zero(mask, gc->ngpio);
2631 WARN_ON(gc->can_sleep);
2633 /* collect all inputs belonging to the same chip */
2636 const struct gpio_desc *desc = desc_array[i];
2637 int hwgpio = gpio_chip_hwgpio(desc);
2639 __set_bit(hwgpio, mask);
2643 i = find_next_zero_bit(array_info->get_mask,
2645 } while ((i < array_size) &&
2646 (desc_array[i]->gdev->chip == gc));
2648 ret = gpio_chip_get_multiple(gc, mask, bits);
2650 if (mask != fastpath_mask)
2652 if (bits != fastpath_bits)
2657 for (j = first; j < i; ) {
2658 const struct gpio_desc *desc = desc_array[j];
2659 int hwgpio = gpio_chip_hwgpio(desc);
2660 int value = test_bit(hwgpio, bits);
2662 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2664 __assign_bit(j, value_bitmap, value);
2665 trace_gpio_value(desc_to_gpio(desc), 1, value);
2669 j = find_next_zero_bit(array_info->get_mask, i,
2673 if (mask != fastpath_mask)
2675 if (bits != fastpath_bits)
2682 * gpiod_get_raw_value() - return a gpio's raw value
2683 * @desc: gpio whose value will be returned
2685 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
2686 * its ACTIVE_LOW status, or negative errno on failure.
2688 * This function can be called from contexts where we cannot sleep, and will
2689 * complain if the GPIO chip functions potentially sleep.
2691 int gpiod_get_raw_value(const struct gpio_desc *desc)
2693 VALIDATE_DESC(desc);
2694 /* Should be using gpiod_get_raw_value_cansleep() */
2695 WARN_ON(desc->gdev->chip->can_sleep);
2696 return gpiod_get_raw_value_commit(desc);
2698 EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
2701 * gpiod_get_value() - return a gpio's value
2702 * @desc: gpio whose value will be returned
2704 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
2705 * account, or negative errno on failure.
2707 * This function can be called from contexts where we cannot sleep, and will
2708 * complain if the GPIO chip functions potentially sleep.
2710 int gpiod_get_value(const struct gpio_desc *desc)
2714 VALIDATE_DESC(desc);
2715 /* Should be using gpiod_get_value_cansleep() */
2716 WARN_ON(desc->gdev->chip->can_sleep);
2718 value = gpiod_get_raw_value_commit(desc);
2722 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2727 EXPORT_SYMBOL_GPL(gpiod_get_value);
2730 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
2731 * @array_size: number of elements in the descriptor array / value bitmap
2732 * @desc_array: array of GPIO descriptors whose values will be read
2733 * @array_info: information on applicability of fast bitmap processing path
2734 * @value_bitmap: bitmap to store the read values
2736 * Read the raw values of the GPIOs, i.e. the values of the physical lines
2737 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
2738 * else an error code.
2740 * This function can be called from contexts where we cannot sleep,
2741 * and it will complain if the GPIO chip functions potentially sleep.
2743 int gpiod_get_raw_array_value(unsigned int array_size,
2744 struct gpio_desc **desc_array,
2745 struct gpio_array *array_info,
2746 unsigned long *value_bitmap)
2750 return gpiod_get_array_value_complex(true, false, array_size,
2751 desc_array, array_info,
2754 EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
2757 * gpiod_get_array_value() - read values from an array of GPIOs
2758 * @array_size: number of elements in the descriptor array / value bitmap
2759 * @desc_array: array of GPIO descriptors whose values will be read
2760 * @array_info: information on applicability of fast bitmap processing path
2761 * @value_bitmap: bitmap to store the read values
2763 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2764 * into account. Return 0 in case of success, else an error code.
2766 * This function can be called from contexts where we cannot sleep,
2767 * and it will complain if the GPIO chip functions potentially sleep.
2769 int gpiod_get_array_value(unsigned int array_size,
2770 struct gpio_desc **desc_array,
2771 struct gpio_array *array_info,
2772 unsigned long *value_bitmap)
2776 return gpiod_get_array_value_complex(false, false, array_size,
2777 desc_array, array_info,
2780 EXPORT_SYMBOL_GPL(gpiod_get_array_value);
2783 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
2784 * @desc: gpio descriptor whose state need to be set.
2785 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
2787 static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
2790 struct gpio_chip *gc = desc->gdev->chip;
2791 int offset = gpio_chip_hwgpio(desc);
2794 ret = gc->direction_input(gc, offset);
2796 ret = gc->direction_output(gc, offset, 0);
2798 set_bit(FLAG_IS_OUT, &desc->flags);
2800 trace_gpio_direction(desc_to_gpio(desc), value, ret);
2803 "%s: Error in set_value for open drain err %d\n",
2808 * _gpio_set_open_source_value() - Set the open source gpio's value.
2809 * @desc: gpio descriptor whose state need to be set.
2810 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
2812 static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
2815 struct gpio_chip *gc = desc->gdev->chip;
2816 int offset = gpio_chip_hwgpio(desc);
2819 ret = gc->direction_output(gc, offset, 1);
2821 set_bit(FLAG_IS_OUT, &desc->flags);
2823 ret = gc->direction_input(gc, offset);
2825 trace_gpio_direction(desc_to_gpio(desc), !value, ret);
2828 "%s: Error in set_value for open source err %d\n",
2832 static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
2834 struct gpio_chip *gc;
2836 gc = desc->gdev->chip;
2837 trace_gpio_value(desc_to_gpio(desc), 0, value);
2838 gc->set(gc, gpio_chip_hwgpio(desc), value);
2842 * set multiple outputs on the same chip;
2843 * use the chip's set_multiple function if available;
2844 * otherwise set the outputs sequentially;
2845 * @chip: the GPIO chip we operate on
2846 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2847 * defines which outputs are to be changed
2848 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2849 * defines the values the outputs specified by mask are to be set to
2851 static void gpio_chip_set_multiple(struct gpio_chip *gc,
2852 unsigned long *mask, unsigned long *bits)
2854 if (gc->set_multiple) {
2855 gc->set_multiple(gc, mask, bits);
2859 /* set outputs if the corresponding mask bit is set */
2860 for_each_set_bit(i, mask, gc->ngpio)
2861 gc->set(gc, i, test_bit(i, bits));
2865 int gpiod_set_array_value_complex(bool raw, bool can_sleep,
2866 unsigned int array_size,
2867 struct gpio_desc **desc_array,
2868 struct gpio_array *array_info,
2869 unsigned long *value_bitmap)
2874 * Validate array_info against desc_array and its size.
2875 * It should immediately follow desc_array if both
2876 * have been obtained from the same gpiod_get_array() call.
2878 if (array_info && array_info->desc == desc_array &&
2879 array_size <= array_info->size &&
2880 (void *)array_info == desc_array + array_info->size) {
2882 WARN_ON(array_info->chip->can_sleep);
2884 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2885 bitmap_xor(value_bitmap, value_bitmap,
2886 array_info->invert_mask, array_size);
2888 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
2891 i = find_first_zero_bit(array_info->set_mask, array_size);
2892 if (i == array_size)
2898 while (i < array_size) {
2899 struct gpio_chip *gc = desc_array[i]->gdev->chip;
2900 DECLARE_BITMAP(fastpath_mask, FASTPATH_NGPIO);
2901 DECLARE_BITMAP(fastpath_bits, FASTPATH_NGPIO);
2902 unsigned long *mask, *bits;
2905 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
2906 mask = fastpath_mask;
2907 bits = fastpath_bits;
2909 gfp_t flags = can_sleep ? GFP_KERNEL : GFP_ATOMIC;
2911 mask = bitmap_alloc(gc->ngpio, flags);
2915 bits = bitmap_alloc(gc->ngpio, flags);
2922 bitmap_zero(mask, gc->ngpio);
2925 WARN_ON(gc->can_sleep);
2928 struct gpio_desc *desc = desc_array[i];
2929 int hwgpio = gpio_chip_hwgpio(desc);
2930 int value = test_bit(i, value_bitmap);
2933 * Pins applicable for fast input but not for
2934 * fast output processing may have been already
2935 * inverted inside the fast path, skip them.
2937 if (!raw && !(array_info &&
2938 test_bit(i, array_info->invert_mask)) &&
2939 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2941 trace_gpio_value(desc_to_gpio(desc), 0, value);
2943 * collect all normal outputs belonging to the same chip
2944 * open drain and open source outputs are set individually
2946 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
2947 gpio_set_open_drain_value_commit(desc, value);
2948 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
2949 gpio_set_open_source_value_commit(desc, value);
2951 __set_bit(hwgpio, mask);
2952 __assign_bit(hwgpio, bits, value);
2958 i = find_next_zero_bit(array_info->set_mask,
2960 } while ((i < array_size) &&
2961 (desc_array[i]->gdev->chip == gc));
2962 /* push collected bits to outputs */
2964 gpio_chip_set_multiple(gc, mask, bits);
2966 if (mask != fastpath_mask)
2968 if (bits != fastpath_bits)
2975 * gpiod_set_raw_value() - assign a gpio's raw value
2976 * @desc: gpio whose value will be assigned
2977 * @value: value to assign
2979 * Set the raw value of the GPIO, i.e. the value of its physical line without
2980 * regard for its ACTIVE_LOW status.
2982 * This function can be called from contexts where we cannot sleep, and will
2983 * complain if the GPIO chip functions potentially sleep.
2985 void gpiod_set_raw_value(struct gpio_desc *desc, int value)
2987 VALIDATE_DESC_VOID(desc);
2988 /* Should be using gpiod_set_raw_value_cansleep() */
2989 WARN_ON(desc->gdev->chip->can_sleep);
2990 gpiod_set_raw_value_commit(desc, value);
2992 EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
2995 * gpiod_set_value_nocheck() - set a GPIO line value without checking
2996 * @desc: the descriptor to set the value on
2997 * @value: value to set
2999 * This sets the value of a GPIO line backing a descriptor, applying
3000 * different semantic quirks like active low and open drain/source
3003 static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3005 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3007 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3008 gpio_set_open_drain_value_commit(desc, value);
3009 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3010 gpio_set_open_source_value_commit(desc, value);
3012 gpiod_set_raw_value_commit(desc, value);
3016 * gpiod_set_value() - assign a gpio's value
3017 * @desc: gpio whose value will be assigned
3018 * @value: value to assign
3020 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3021 * OPEN_DRAIN and OPEN_SOURCE flags into account.
3023 * This function can be called from contexts where we cannot sleep, and will
3024 * complain if the GPIO chip functions potentially sleep.
3026 void gpiod_set_value(struct gpio_desc *desc, int value)
3028 VALIDATE_DESC_VOID(desc);
3029 /* Should be using gpiod_set_value_cansleep() */
3030 WARN_ON(desc->gdev->chip->can_sleep);
3031 gpiod_set_value_nocheck(desc, value);
3033 EXPORT_SYMBOL_GPL(gpiod_set_value);
3036 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
3037 * @array_size: number of elements in the descriptor array / value bitmap
3038 * @desc_array: array of GPIO descriptors whose values will be assigned
3039 * @array_info: information on applicability of fast bitmap processing path
3040 * @value_bitmap: bitmap of values to assign
3042 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3043 * without regard for their ACTIVE_LOW status.
3045 * This function can be called from contexts where we cannot sleep, and will
3046 * complain if the GPIO chip functions potentially sleep.
3048 int gpiod_set_raw_array_value(unsigned int array_size,
3049 struct gpio_desc **desc_array,
3050 struct gpio_array *array_info,
3051 unsigned long *value_bitmap)
3055 return gpiod_set_array_value_complex(true, false, array_size,
3056 desc_array, array_info, value_bitmap);
3058 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
3061 * gpiod_set_array_value() - assign values to an array of GPIOs
3062 * @array_size: number of elements in the descriptor array / value bitmap
3063 * @desc_array: array of GPIO descriptors whose values will be assigned
3064 * @array_info: information on applicability of fast bitmap processing path
3065 * @value_bitmap: bitmap of values to assign
3067 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3070 * This function can be called from contexts where we cannot sleep, and will
3071 * complain if the GPIO chip functions potentially sleep.
3073 int gpiod_set_array_value(unsigned int array_size,
3074 struct gpio_desc **desc_array,
3075 struct gpio_array *array_info,
3076 unsigned long *value_bitmap)
3080 return gpiod_set_array_value_complex(false, false, array_size,
3081 desc_array, array_info,
3084 EXPORT_SYMBOL_GPL(gpiod_set_array_value);
3087 * gpiod_cansleep() - report whether gpio value access may sleep
3088 * @desc: gpio to check
3091 int gpiod_cansleep(const struct gpio_desc *desc)
3093 VALIDATE_DESC(desc);
3094 return desc->gdev->chip->can_sleep;
3096 EXPORT_SYMBOL_GPL(gpiod_cansleep);
3099 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3100 * @desc: gpio to set the consumer name on
3101 * @name: the new consumer name
3103 int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
3105 VALIDATE_DESC(desc);
3107 name = kstrdup_const(name, GFP_KERNEL);
3112 kfree_const(desc->label);
3113 desc_set_label(desc, name);
3117 EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3120 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3121 * @desc: gpio whose IRQ will be returned (already requested)
3123 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3126 int gpiod_to_irq(const struct gpio_desc *desc)
3128 struct gpio_chip *gc;
3132 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3133 * requires this function to not return zero on an invalid descriptor
3134 * but rather a negative error number.
3136 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
3139 gc = desc->gdev->chip;
3140 offset = gpio_chip_hwgpio(desc);
3142 int retirq = gc->to_irq(gc, offset);
3144 /* Zero means NO_IRQ */
3152 EXPORT_SYMBOL_GPL(gpiod_to_irq);
3155 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
3156 * @gc: the chip the GPIO to lock belongs to
3157 * @offset: the offset of the GPIO to lock as IRQ
3159 * This is used directly by GPIO drivers that want to lock down
3160 * a certain GPIO line to be used for IRQs.
3162 int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset)
3164 struct gpio_desc *desc;
3166 desc = gpiochip_get_desc(gc, offset);
3168 return PTR_ERR(desc);
3171 * If it's fast: flush the direction setting if something changed
3174 if (!gc->can_sleep && gc->get_direction) {
3175 int dir = gpiod_get_direction(desc);
3178 chip_err(gc, "%s: cannot get GPIO direction\n",
3184 /* To be valid for IRQ the line needs to be input or open drain */
3185 if (test_bit(FLAG_IS_OUT, &desc->flags) &&
3186 !test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
3188 "%s: tried to flag a GPIO set as output for IRQ\n",
3193 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
3194 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3197 * If the consumer has not set up a label (such as when the
3198 * IRQ is referenced from .to_irq()) we set up a label here
3199 * so it is clear this is used as an interrupt.
3202 desc_set_label(desc, "interrupt");
3206 EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
3209 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
3210 * @gc: the chip the GPIO to lock belongs to
3211 * @offset: the offset of the GPIO to lock as IRQ
3213 * This is used directly by GPIO drivers that want to indicate
3214 * that a certain GPIO is no longer used exclusively for IRQ.
3216 void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset)
3218 struct gpio_desc *desc;
3220 desc = gpiochip_get_desc(gc, offset);
3224 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
3225 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3227 /* If we only had this marking, erase it */
3228 if (desc->label && !strcmp(desc->label, "interrupt"))
3229 desc_set_label(desc, NULL);
3231 EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
3233 void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset)
3235 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
3237 if (!IS_ERR(desc) &&
3238 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3239 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3241 EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3243 void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset)
3245 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
3247 if (!IS_ERR(desc) &&
3248 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3250 * We must not be output when using IRQ UNLESS we are
3253 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags) &&
3254 !test_bit(FLAG_OPEN_DRAIN, &desc->flags));
3255 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3258 EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3260 bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset)
3262 if (offset >= gc->ngpio)
3265 return test_bit(FLAG_USED_AS_IRQ, &gc->gpiodev->descs[offset].flags);
3267 EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3269 int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset)
3273 if (!try_module_get(gc->gpiodev->owner))
3276 ret = gpiochip_lock_as_irq(gc, offset);
3278 chip_err(gc, "unable to lock HW IRQ %u for IRQ\n", offset);
3279 module_put(gc->gpiodev->owner);
3284 EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3286 void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset)
3288 gpiochip_unlock_as_irq(gc, offset);
3289 module_put(gc->gpiodev->owner);
3291 EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3293 bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset)
3295 if (offset >= gc->ngpio)
3298 return test_bit(FLAG_OPEN_DRAIN, &gc->gpiodev->descs[offset].flags);
3300 EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3302 bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset)
3304 if (offset >= gc->ngpio)
3307 return test_bit(FLAG_OPEN_SOURCE, &gc->gpiodev->descs[offset].flags);
3309 EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3311 bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset)
3313 if (offset >= gc->ngpio)
3316 return !test_bit(FLAG_TRANSITORY, &gc->gpiodev->descs[offset].flags);
3318 EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3321 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3322 * @desc: gpio whose value will be returned
3324 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
3325 * its ACTIVE_LOW status, or negative errno on failure.
3327 * This function is to be called from contexts that can sleep.
3329 int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
3331 might_sleep_if(extra_checks);
3332 VALIDATE_DESC(desc);
3333 return gpiod_get_raw_value_commit(desc);
3335 EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
3338 * gpiod_get_value_cansleep() - return a gpio's value
3339 * @desc: gpio whose value will be returned
3341 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
3342 * account, or negative errno on failure.
3344 * This function is to be called from contexts that can sleep.
3346 int gpiod_get_value_cansleep(const struct gpio_desc *desc)
3350 might_sleep_if(extra_checks);
3351 VALIDATE_DESC(desc);
3352 value = gpiod_get_raw_value_commit(desc);
3356 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3361 EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
3364 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
3365 * @array_size: number of elements in the descriptor array / value bitmap
3366 * @desc_array: array of GPIO descriptors whose values will be read
3367 * @array_info: information on applicability of fast bitmap processing path
3368 * @value_bitmap: bitmap to store the read values
3370 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3371 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3372 * else an error code.
3374 * This function is to be called from contexts that can sleep.
3376 int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3377 struct gpio_desc **desc_array,
3378 struct gpio_array *array_info,
3379 unsigned long *value_bitmap)
3381 might_sleep_if(extra_checks);
3384 return gpiod_get_array_value_complex(true, true, array_size,
3385 desc_array, array_info,
3388 EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3391 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
3392 * @array_size: number of elements in the descriptor array / value bitmap
3393 * @desc_array: array of GPIO descriptors whose values will be read
3394 * @array_info: information on applicability of fast bitmap processing path
3395 * @value_bitmap: bitmap to store the read values
3397 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3398 * into account. Return 0 in case of success, else an error code.
3400 * This function is to be called from contexts that can sleep.
3402 int gpiod_get_array_value_cansleep(unsigned int array_size,
3403 struct gpio_desc **desc_array,
3404 struct gpio_array *array_info,
3405 unsigned long *value_bitmap)
3407 might_sleep_if(extra_checks);
3410 return gpiod_get_array_value_complex(false, true, array_size,
3411 desc_array, array_info,
3414 EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3417 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3418 * @desc: gpio whose value will be assigned
3419 * @value: value to assign
3421 * Set the raw value of the GPIO, i.e. the value of its physical line without
3422 * regard for its ACTIVE_LOW status.
3424 * This function is to be called from contexts that can sleep.
3426 void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
3428 might_sleep_if(extra_checks);
3429 VALIDATE_DESC_VOID(desc);
3430 gpiod_set_raw_value_commit(desc, value);
3432 EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
3435 * gpiod_set_value_cansleep() - assign a gpio's value
3436 * @desc: gpio whose value will be assigned
3437 * @value: value to assign
3439 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3442 * This function is to be called from contexts that can sleep.
3444 void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
3446 might_sleep_if(extra_checks);
3447 VALIDATE_DESC_VOID(desc);
3448 gpiod_set_value_nocheck(desc, value);
3450 EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
3453 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
3454 * @array_size: number of elements in the descriptor array / value bitmap
3455 * @desc_array: array of GPIO descriptors whose values will be assigned
3456 * @array_info: information on applicability of fast bitmap processing path
3457 * @value_bitmap: bitmap of values to assign
3459 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3460 * without regard for their ACTIVE_LOW status.
3462 * This function is to be called from contexts that can sleep.
3464 int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
3465 struct gpio_desc **desc_array,
3466 struct gpio_array *array_info,
3467 unsigned long *value_bitmap)
3469 might_sleep_if(extra_checks);
3472 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
3473 array_info, value_bitmap);
3475 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
3478 * gpiod_add_lookup_tables() - register GPIO device consumers
3479 * @tables: list of tables of consumers to register
3480 * @n: number of tables in the list
3482 void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3486 mutex_lock(&gpio_lookup_lock);
3488 for (i = 0; i < n; i++)
3489 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3491 mutex_unlock(&gpio_lookup_lock);
3495 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
3496 * @array_size: number of elements in the descriptor array / value bitmap
3497 * @desc_array: array of GPIO descriptors whose values will be assigned
3498 * @array_info: information on applicability of fast bitmap processing path
3499 * @value_bitmap: bitmap of values to assign
3501 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3504 * This function is to be called from contexts that can sleep.
3506 int gpiod_set_array_value_cansleep(unsigned int array_size,
3507 struct gpio_desc **desc_array,
3508 struct gpio_array *array_info,
3509 unsigned long *value_bitmap)
3511 might_sleep_if(extra_checks);
3514 return gpiod_set_array_value_complex(false, true, array_size,
3515 desc_array, array_info,
3518 EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
3521 * gpiod_add_lookup_table() - register GPIO device consumers
3522 * @table: table of consumers to register
3524 void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
3526 gpiod_add_lookup_tables(&table, 1);
3528 EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
3531 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3532 * @table: table of consumers to unregister
3534 void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3536 /* Nothing to remove */
3540 mutex_lock(&gpio_lookup_lock);
3542 list_del(&table->list);
3544 mutex_unlock(&gpio_lookup_lock);
3546 EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
3549 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3550 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3552 void gpiod_add_hogs(struct gpiod_hog *hogs)
3554 struct gpio_chip *gc;
3555 struct gpiod_hog *hog;
3557 mutex_lock(&gpio_machine_hogs_mutex);
3559 for (hog = &hogs[0]; hog->chip_label; hog++) {
3560 list_add_tail(&hog->list, &gpio_machine_hogs);
3563 * The chip may have been registered earlier, so check if it
3564 * exists and, if so, try to hog the line now.
3566 gc = find_chip_by_name(hog->chip_label);
3568 gpiochip_machine_hog(gc, hog);
3571 mutex_unlock(&gpio_machine_hogs_mutex);
3573 EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3575 void gpiod_remove_hogs(struct gpiod_hog *hogs)
3577 struct gpiod_hog *hog;
3579 mutex_lock(&gpio_machine_hogs_mutex);
3580 for (hog = &hogs[0]; hog->chip_label; hog++)
3581 list_del(&hog->list);
3582 mutex_unlock(&gpio_machine_hogs_mutex);
3584 EXPORT_SYMBOL_GPL(gpiod_remove_hogs);
3586 static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3588 const char *dev_id = dev ? dev_name(dev) : NULL;
3589 struct gpiod_lookup_table *table;
3591 mutex_lock(&gpio_lookup_lock);
3593 list_for_each_entry(table, &gpio_lookup_list, list) {
3594 if (table->dev_id && dev_id) {
3596 * Valid strings on both ends, must be identical to have
3599 if (!strcmp(table->dev_id, dev_id))
3603 * One of the pointers is NULL, so both must be to have
3606 if (dev_id == table->dev_id)
3613 mutex_unlock(&gpio_lookup_lock);
3617 static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
3618 unsigned int idx, unsigned long *flags)
3620 struct gpio_desc *desc = ERR_PTR(-ENOENT);
3621 struct gpiod_lookup_table *table;
3622 struct gpiod_lookup *p;
3624 table = gpiod_find_lookup_table(dev);
3628 for (p = &table->table[0]; p->key; p++) {
3629 struct gpio_chip *gc;
3631 /* idx must always match exactly */
3635 /* If the lookup entry has a con_id, require exact match */
3636 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3639 if (p->chip_hwnum == U16_MAX) {
3640 desc = gpio_name_to_desc(p->key);
3646 dev_warn(dev, "cannot find GPIO line %s, deferring\n",
3648 return ERR_PTR(-EPROBE_DEFER);
3651 gc = find_chip_by_name(p->key);
3655 * As the lookup table indicates a chip with
3656 * p->key should exist, assume it may
3657 * still appear later and let the interested
3658 * consumer be probed again or let the Deferred
3659 * Probe infrastructure handle the error.
3661 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
3663 return ERR_PTR(-EPROBE_DEFER);
3666 if (gc->ngpio <= p->chip_hwnum) {
3668 "requested GPIO %u (%u) is out of range [0..%u] for chip %s\n",
3669 idx, p->chip_hwnum, gc->ngpio - 1,
3671 return ERR_PTR(-EINVAL);
3674 desc = gpiochip_get_desc(gc, p->chip_hwnum);
3683 static int platform_gpio_count(struct device *dev, const char *con_id)
3685 struct gpiod_lookup_table *table;
3686 struct gpiod_lookup *p;
3687 unsigned int count = 0;
3689 table = gpiod_find_lookup_table(dev);
3693 for (p = &table->table[0]; p->key; p++) {
3694 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3695 (!con_id && !p->con_id))
3705 * fwnode_gpiod_get_index - obtain a GPIO from firmware node
3706 * @fwnode: handle of the firmware node
3707 * @con_id: function within the GPIO consumer
3708 * @index: index of the GPIO to obtain for the consumer
3709 * @flags: GPIO initialization flags
3710 * @label: label to attach to the requested GPIO
3712 * This function can be used for drivers that get their configuration
3713 * from opaque firmware.
3715 * The function properly finds the corresponding GPIO using whatever is the
3716 * underlying firmware interface and then makes sure that the GPIO
3717 * descriptor is requested before it is returned to the caller.
3720 * On successful request the GPIO pin is configured in accordance with
3723 * In case of error an ERR_PTR() is returned.
3725 struct gpio_desc *fwnode_gpiod_get_index(struct fwnode_handle *fwnode,
3726 const char *con_id, int index,
3727 enum gpiod_flags flags,
3730 struct gpio_desc *desc;
3731 char prop_name[32]; /* 32 is max size of property name */
3734 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3736 snprintf(prop_name, sizeof(prop_name), "%s-%s",
3737 con_id, gpio_suffixes[i]);
3739 snprintf(prop_name, sizeof(prop_name), "%s",
3742 desc = fwnode_get_named_gpiod(fwnode, prop_name, index, flags,
3744 if (!gpiod_not_found(desc))
3750 EXPORT_SYMBOL_GPL(fwnode_gpiod_get_index);
3753 * gpiod_count - return the number of GPIOs associated with a device / function
3754 * or -ENOENT if no GPIO has been assigned to the requested function
3755 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3756 * @con_id: function within the GPIO consumer
3758 int gpiod_count(struct device *dev, const char *con_id)
3760 const struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
3761 int count = -ENOENT;
3763 if (is_of_node(fwnode))
3764 count = of_gpio_get_count(dev, con_id);
3765 else if (is_acpi_node(fwnode))
3766 count = acpi_gpio_count(dev, con_id);
3769 count = platform_gpio_count(dev, con_id);
3773 EXPORT_SYMBOL_GPL(gpiod_count);
3776 * gpiod_get - obtain a GPIO for a given GPIO function
3777 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3778 * @con_id: function within the GPIO consumer
3779 * @flags: optional GPIO initialization flags
3781 * Return the GPIO descriptor corresponding to the function con_id of device
3782 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
3783 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
3785 struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
3786 enum gpiod_flags flags)
3788 return gpiod_get_index(dev, con_id, 0, flags);
3790 EXPORT_SYMBOL_GPL(gpiod_get);
3793 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3794 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3795 * @con_id: function within the GPIO consumer
3796 * @flags: optional GPIO initialization flags
3798 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3799 * the requested function it will return NULL. This is convenient for drivers
3800 * that need to handle optional GPIOs.
3802 struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
3804 enum gpiod_flags flags)
3806 return gpiod_get_index_optional(dev, con_id, 0, flags);
3808 EXPORT_SYMBOL_GPL(gpiod_get_optional);
3812 * gpiod_configure_flags - helper function to configure a given GPIO
3813 * @desc: gpio whose value will be assigned
3814 * @con_id: function within the GPIO consumer
3815 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
3816 * of_find_gpio() or of_get_gpio_hog()
3817 * @dflags: gpiod_flags - optional GPIO initialization flags
3819 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3820 * requested function and/or index, or another IS_ERR() code if an error
3821 * occurred while trying to acquire the GPIO.
3823 int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
3824 unsigned long lflags, enum gpiod_flags dflags)
3828 if (lflags & GPIO_ACTIVE_LOW)
3829 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3831 if (lflags & GPIO_OPEN_DRAIN)
3832 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3833 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
3835 * This enforces open drain mode from the consumer side.
3836 * This is necessary for some busses like I2C, but the lookup
3837 * should *REALLY* have specified them as open drain in the
3838 * first place, so print a little warning here.
3840 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3842 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
3845 if (lflags & GPIO_OPEN_SOURCE)
3846 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3848 if ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) {
3850 "both pull-up and pull-down enabled, invalid configuration\n");
3854 if (lflags & GPIO_PULL_UP)
3855 set_bit(FLAG_PULL_UP, &desc->flags);
3856 else if (lflags & GPIO_PULL_DOWN)
3857 set_bit(FLAG_PULL_DOWN, &desc->flags);
3859 ret = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
3863 /* No particular flag request, return here... */
3864 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3865 gpiod_dbg(desc, "no flags found for %s\n", con_id);
3870 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3871 ret = gpiod_direction_output(desc,
3872 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
3874 ret = gpiod_direction_input(desc);
3880 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
3881 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3882 * @con_id: function within the GPIO consumer
3883 * @idx: index of the GPIO to obtain in the consumer
3884 * @flags: optional GPIO initialization flags
3886 * This variant of gpiod_get() allows to access GPIOs other than the first
3887 * defined one for functions that define several GPIOs.
3889 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3890 * requested function and/or index, or another IS_ERR() code if an error
3891 * occurred while trying to acquire the GPIO.
3893 struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
3896 enum gpiod_flags flags)
3898 unsigned long lookupflags = GPIO_LOOKUP_FLAGS_DEFAULT;
3899 struct gpio_desc *desc = NULL;
3901 /* Maybe we have a device name, maybe not */
3902 const char *devname = dev ? dev_name(dev) : "?";
3903 const struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
3905 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3907 /* Using device tree? */
3908 if (is_of_node(fwnode)) {
3909 dev_dbg(dev, "using device tree for GPIO lookup\n");
3910 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3911 } else if (is_acpi_node(fwnode)) {
3912 dev_dbg(dev, "using ACPI for GPIO lookup\n");
3913 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
3917 * Either we are not using DT or ACPI, or their lookup did not return
3918 * a result. In that case, use platform lookup as a fallback.
3920 if (!desc || gpiod_not_found(desc)) {
3921 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
3922 desc = gpiod_find(dev, con_id, idx, &lookupflags);
3926 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
3931 * If a connection label was passed use that, else attempt to use
3932 * the device name as label
3934 ret = gpiod_request(desc, con_id ? con_id : devname);
3936 if (ret == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) {
3938 * This happens when there are several consumers for
3939 * the same GPIO line: we just return here without
3940 * further initialization. It is a bit if a hack.
3941 * This is necessary to support fixed regulators.
3943 * FIXME: Make this more sane and safe.
3945 dev_info(dev, "nonexclusive access to GPIO for %s\n",
3946 con_id ? con_id : devname);
3949 return ERR_PTR(ret);
3953 ret = gpiod_configure_flags(desc, con_id, lookupflags, flags);
3955 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3957 return ERR_PTR(ret);
3960 blocking_notifier_call_chain(&desc->gdev->notifier,
3961 GPIOLINE_CHANGED_REQUESTED, desc);
3965 EXPORT_SYMBOL_GPL(gpiod_get_index);
3968 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3969 * @fwnode: handle of the firmware node
3970 * @propname: name of the firmware property representing the GPIO
3971 * @index: index of the GPIO to obtain for the consumer
3972 * @dflags: GPIO initialization flags
3973 * @label: label to attach to the requested GPIO
3975 * This function can be used for drivers that get their configuration
3976 * from opaque firmware.
3978 * The function properly finds the corresponding GPIO using whatever is the
3979 * underlying firmware interface and then makes sure that the GPIO
3980 * descriptor is requested before it is returned to the caller.
3983 * On successful request the GPIO pin is configured in accordance with
3986 * In case of error an ERR_PTR() is returned.
3988 struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3989 const char *propname, int index,
3990 enum gpiod_flags dflags,
3993 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
3994 struct gpio_desc *desc = ERR_PTR(-ENODEV);
3997 if (is_of_node(fwnode)) {
3998 desc = gpiod_get_from_of_node(to_of_node(fwnode),
4003 } else if (is_acpi_node(fwnode)) {
4004 struct acpi_gpio_info info;
4006 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
4010 acpi_gpio_update_gpiod_flags(&dflags, &info);
4011 acpi_gpio_update_gpiod_lookup_flags(&lflags, &info);
4013 return ERR_PTR(-EINVAL);
4015 /* Currently only ACPI takes this path */
4016 ret = gpiod_request(desc, label);
4018 return ERR_PTR(ret);
4020 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4023 return ERR_PTR(ret);
4026 blocking_notifier_call_chain(&desc->gdev->notifier,
4027 GPIOLINE_CHANGED_REQUESTED, desc);
4031 EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
4034 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
4036 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4037 * @con_id: function within the GPIO consumer
4038 * @index: index of the GPIO to obtain in the consumer
4039 * @flags: optional GPIO initialization flags
4041 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4042 * specified index was assigned to the requested function it will return NULL.
4043 * This is convenient for drivers that need to handle optional GPIOs.
4045 struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
4048 enum gpiod_flags flags)
4050 struct gpio_desc *desc;
4052 desc = gpiod_get_index(dev, con_id, index, flags);
4053 if (gpiod_not_found(desc))
4058 EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4061 * gpiod_hog - Hog the specified GPIO desc given the provided flags
4062 * @desc: gpio whose value will be assigned
4063 * @name: gpio line name
4064 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4065 * of_find_gpio() or of_get_gpio_hog()
4066 * @dflags: gpiod_flags - optional GPIO initialization flags
4068 int gpiod_hog(struct gpio_desc *desc, const char *name,
4069 unsigned long lflags, enum gpiod_flags dflags)
4071 struct gpio_chip *gc;
4072 struct gpio_desc *local_desc;
4076 gc = gpiod_to_chip(desc);
4077 hwnum = gpio_chip_hwgpio(desc);
4079 local_desc = gpiochip_request_own_desc(gc, hwnum, name,
4081 if (IS_ERR(local_desc)) {
4082 ret = PTR_ERR(local_desc);
4083 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
4084 name, gc->label, hwnum, ret);
4088 /* Mark GPIO as hogged so it can be identified and removed later */
4089 set_bit(FLAG_IS_HOGGED, &desc->flags);
4091 gpiod_info(desc, "hogged as %s%s\n",
4092 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4093 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ?
4094 (dflags & GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low" : "");
4100 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4101 * @gc: gpio chip to act on
4103 static void gpiochip_free_hogs(struct gpio_chip *gc)
4107 for (id = 0; id < gc->ngpio; id++) {
4108 if (test_bit(FLAG_IS_HOGGED, &gc->gpiodev->descs[id].flags))
4109 gpiochip_free_own_desc(&gc->gpiodev->descs[id]);
4114 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4115 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4116 * @con_id: function within the GPIO consumer
4117 * @flags: optional GPIO initialization flags
4119 * This function acquires all the GPIOs defined under a given function.
4121 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4122 * no GPIO has been assigned to the requested function, or another IS_ERR()
4123 * code if an error occurred while trying to acquire the GPIOs.
4125 struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4127 enum gpiod_flags flags)
4129 struct gpio_desc *desc;
4130 struct gpio_descs *descs;
4131 struct gpio_array *array_info = NULL;
4132 struct gpio_chip *gc;
4133 int count, bitmap_size;
4135 count = gpiod_count(dev, con_id);
4137 return ERR_PTR(count);
4139 descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL);
4141 return ERR_PTR(-ENOMEM);
4143 for (descs->ndescs = 0; descs->ndescs < count; ) {
4144 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4146 gpiod_put_array(descs);
4147 return ERR_CAST(desc);
4150 descs->desc[descs->ndescs] = desc;
4152 gc = gpiod_to_chip(desc);
4154 * If pin hardware number of array member 0 is also 0, select
4155 * its chip as a candidate for fast bitmap processing path.
4157 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
4158 struct gpio_descs *array;
4160 bitmap_size = BITS_TO_LONGS(gc->ngpio > count ?
4163 array = kzalloc(struct_size(descs, desc, count) +
4164 struct_size(array_info, invert_mask,
4165 3 * bitmap_size), GFP_KERNEL);
4167 gpiod_put_array(descs);
4168 return ERR_PTR(-ENOMEM);
4171 memcpy(array, descs,
4172 struct_size(descs, desc, descs->ndescs + 1));
4176 array_info = (void *)(descs->desc + count);
4177 array_info->get_mask = array_info->invert_mask +
4179 array_info->set_mask = array_info->get_mask +
4182 array_info->desc = descs->desc;
4183 array_info->size = count;
4184 array_info->chip = gc;
4185 bitmap_set(array_info->get_mask, descs->ndescs,
4186 count - descs->ndescs);
4187 bitmap_set(array_info->set_mask, descs->ndescs,
4188 count - descs->ndescs);
4189 descs->info = array_info;
4191 /* Unmark array members which don't belong to the 'fast' chip */
4192 if (array_info && array_info->chip != gc) {
4193 __clear_bit(descs->ndescs, array_info->get_mask);
4194 __clear_bit(descs->ndescs, array_info->set_mask);
4197 * Detect array members which belong to the 'fast' chip
4198 * but their pins are not in hardware order.
4200 else if (array_info &&
4201 gpio_chip_hwgpio(desc) != descs->ndescs) {
4203 * Don't use fast path if all array members processed so
4204 * far belong to the same chip as this one but its pin
4205 * hardware number is different from its array index.
4207 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4210 __clear_bit(descs->ndescs,
4211 array_info->get_mask);
4212 __clear_bit(descs->ndescs,
4213 array_info->set_mask);
4215 } else if (array_info) {
4216 /* Exclude open drain or open source from fast output */
4217 if (gpiochip_line_is_open_drain(gc, descs->ndescs) ||
4218 gpiochip_line_is_open_source(gc, descs->ndescs))
4219 __clear_bit(descs->ndescs,
4220 array_info->set_mask);
4221 /* Identify 'fast' pins which require invertion */
4222 if (gpiod_is_active_low(desc))
4223 __set_bit(descs->ndescs,
4224 array_info->invert_mask);
4231 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4232 array_info->chip->label, array_info->size,
4233 *array_info->get_mask, *array_info->set_mask,
4234 *array_info->invert_mask);
4237 EXPORT_SYMBOL_GPL(gpiod_get_array);
4240 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4242 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4243 * @con_id: function within the GPIO consumer
4244 * @flags: optional GPIO initialization flags
4246 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4247 * assigned to the requested function it will return NULL.
4249 struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4251 enum gpiod_flags flags)
4253 struct gpio_descs *descs;
4255 descs = gpiod_get_array(dev, con_id, flags);
4256 if (gpiod_not_found(descs))
4261 EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4264 * gpiod_put - dispose of a GPIO descriptor
4265 * @desc: GPIO descriptor to dispose of
4267 * No descriptor can be used after gpiod_put() has been called on it.
4269 void gpiod_put(struct gpio_desc *desc)
4274 EXPORT_SYMBOL_GPL(gpiod_put);
4277 * gpiod_put_array - dispose of multiple GPIO descriptors
4278 * @descs: struct gpio_descs containing an array of descriptors
4280 void gpiod_put_array(struct gpio_descs *descs)
4284 for (i = 0; i < descs->ndescs; i++)
4285 gpiod_put(descs->desc[i]);
4289 EXPORT_SYMBOL_GPL(gpiod_put_array);
4292 static int gpio_bus_match(struct device *dev, struct device_driver *drv)
4294 struct fwnode_handle *fwnode = dev_fwnode(dev);
4297 * Only match if the fwnode doesn't already have a proper struct device
4300 if (fwnode && fwnode->dev != dev)
4305 static int gpio_stub_drv_probe(struct device *dev)
4308 * The DT node of some GPIO chips have a "compatible" property, but
4309 * never have a struct device added and probed by a driver to register
4310 * the GPIO chip with gpiolib. In such cases, fw_devlink=on will cause
4311 * the consumers of the GPIO chip to get probe deferred forever because
4312 * they will be waiting for a device associated with the GPIO chip
4313 * firmware node to get added and bound to a driver.
4315 * To allow these consumers to probe, we associate the struct
4316 * gpio_device of the GPIO chip with the firmware node and then simply
4317 * bind it to this stub driver.
4322 static struct device_driver gpio_stub_drv = {
4323 .name = "gpio_stub_drv",
4324 .bus = &gpio_bus_type,
4325 .probe = gpio_stub_drv_probe,
4328 static int __init gpiolib_dev_init(void)
4332 /* Register GPIO sysfs bus */
4333 ret = bus_register(&gpio_bus_type);
4335 pr_err("gpiolib: could not register GPIO bus type\n");
4339 ret = driver_register(&gpio_stub_drv);
4341 pr_err("gpiolib: could not register GPIO stub driver\n");
4342 bus_unregister(&gpio_bus_type);
4346 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, GPIOCHIP_NAME);
4348 pr_err("gpiolib: failed to allocate char dev region\n");
4349 driver_unregister(&gpio_stub_drv);
4350 bus_unregister(&gpio_bus_type);
4354 gpiolib_initialized = true;
4355 gpiochip_setup_devs();
4357 #if IS_ENABLED(CONFIG_OF_DYNAMIC) && IS_ENABLED(CONFIG_OF_GPIO)
4358 WARN_ON(of_reconfig_notifier_register(&gpio_of_notifier));
4359 #endif /* CONFIG_OF_DYNAMIC && CONFIG_OF_GPIO */
4363 core_initcall(gpiolib_dev_init);
4365 #ifdef CONFIG_DEBUG_FS
4367 static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
4370 struct gpio_chip *gc = gdev->chip;
4371 unsigned gpio = gdev->base;
4372 struct gpio_desc *gdesc = &gdev->descs[0];
4377 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
4378 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4380 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4386 gpiod_get_direction(gdesc);
4387 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
4388 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
4389 active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags);
4390 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s",
4391 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
4392 is_out ? "out" : "in ",
4393 gc->get ? (gc->get(gc, i) ? "hi" : "lo") : "? ",
4394 is_irq ? "IRQ " : "",
4395 active_low ? "ACTIVE LOW" : "");
4396 seq_printf(s, "\n");
4400 static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4402 unsigned long flags;
4403 struct gpio_device *gdev = NULL;
4404 loff_t index = *pos;
4408 spin_lock_irqsave(&gpio_lock, flags);
4409 list_for_each_entry(gdev, &gpio_devices, list)
4411 spin_unlock_irqrestore(&gpio_lock, flags);
4414 spin_unlock_irqrestore(&gpio_lock, flags);
4419 static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4421 unsigned long flags;
4422 struct gpio_device *gdev = v;
4425 spin_lock_irqsave(&gpio_lock, flags);
4426 if (list_is_last(&gdev->list, &gpio_devices))
4429 ret = list_entry(gdev->list.next, struct gpio_device, list);
4430 spin_unlock_irqrestore(&gpio_lock, flags);
4438 static void gpiolib_seq_stop(struct seq_file *s, void *v)
4442 static int gpiolib_seq_show(struct seq_file *s, void *v)
4444 struct gpio_device *gdev = v;
4445 struct gpio_chip *gc = gdev->chip;
4446 struct device *parent;
4449 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4450 dev_name(&gdev->dev));
4454 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4455 dev_name(&gdev->dev),
4456 gdev->base, gdev->base + gdev->ngpio - 1);
4457 parent = gc->parent;
4459 seq_printf(s, ", parent: %s/%s",
4460 parent->bus ? parent->bus->name : "no-bus",
4463 seq_printf(s, ", %s", gc->label);
4465 seq_printf(s, ", can sleep");
4466 seq_printf(s, ":\n");
4469 gc->dbg_show(s, gc);
4471 gpiolib_dbg_show(s, gdev);
4476 static const struct seq_operations gpiolib_sops = {
4477 .start = gpiolib_seq_start,
4478 .next = gpiolib_seq_next,
4479 .stop = gpiolib_seq_stop,
4480 .show = gpiolib_seq_show,
4482 DEFINE_SEQ_ATTRIBUTE(gpiolib);
4484 static int __init gpiolib_debugfs_init(void)
4486 /* /sys/kernel/debug/gpio */
4487 debugfs_create_file("gpio", 0444, NULL, NULL, &gpiolib_fops);
4490 subsys_initcall(gpiolib_debugfs_init);
4492 #endif /* DEBUG_FS */