1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/acpi.h>
4 #include <linux/bitmap.h>
5 #include <linux/compat.h>
6 #include <linux/debugfs.h>
7 #include <linux/device.h>
9 #include <linux/errno.h>
10 #include <linux/file.h>
12 #include <linux/idr.h>
13 #include <linux/interrupt.h>
14 #include <linux/irq.h>
15 #include <linux/kernel.h>
16 #include <linux/list.h>
17 #include <linux/module.h>
19 #include <linux/pinctrl/consumer.h>
20 #include <linux/seq_file.h>
21 #include <linux/slab.h>
22 #include <linux/spinlock.h>
23 #include <linux/string.h>
25 #include <linux/gpio.h>
26 #include <linux/gpio/driver.h>
27 #include <linux/gpio/machine.h>
29 #include <uapi/linux/gpio.h>
31 #include "gpiolib-acpi.h"
32 #include "gpiolib-cdev.h"
33 #include "gpiolib-of.h"
34 #include "gpiolib-swnode.h"
35 #include "gpiolib-sysfs.h"
38 #define CREATE_TRACE_POINTS
39 #include <trace/events/gpio.h>
41 /* Implementation infrastructure for GPIO interfaces.
43 * The GPIO programming interface allows for inlining speed-critical
44 * get/set operations for common cases, so that access to SOC-integrated
45 * GPIOs can sometimes cost only an instruction or two per bit.
49 /* When debugging, extend minimal trust to callers and platform code.
50 * Also emit diagnostic messages that may help initial bringup, when
51 * board setup or driver bugs are most common.
53 * Otherwise, minimize overhead in what may be bitbanging codepaths.
56 #define extra_checks 1
58 #define extra_checks 0
61 /* Device and char device-related information */
62 static DEFINE_IDA(gpio_ida);
63 static dev_t gpio_devt;
64 #define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
66 static int gpio_bus_match(struct device *dev, struct device_driver *drv)
68 struct fwnode_handle *fwnode = dev_fwnode(dev);
71 * Only match if the fwnode doesn't already have a proper struct device
74 if (fwnode && fwnode->dev != dev)
79 static struct bus_type gpio_bus_type = {
81 .match = gpio_bus_match,
85 * Number of GPIOs to use for the fast path in set array
87 #define FASTPATH_NGPIO CONFIG_GPIOLIB_FASTPATH_LIMIT
89 /* gpio_lock prevents conflicts during gpio_desc[] table updates.
90 * While any GPIO is requested, its gpio_chip is not removable;
91 * each GPIO's "requested" flag serves as a lock and refcount.
93 DEFINE_SPINLOCK(gpio_lock);
95 static DEFINE_MUTEX(gpio_lookup_lock);
96 static LIST_HEAD(gpio_lookup_list);
97 LIST_HEAD(gpio_devices);
99 static DEFINE_MUTEX(gpio_machine_hogs_mutex);
100 static LIST_HEAD(gpio_machine_hogs);
102 static void gpiochip_free_hogs(struct gpio_chip *gc);
103 static int gpiochip_add_irqchip(struct gpio_chip *gc,
104 struct lock_class_key *lock_key,
105 struct lock_class_key *request_key);
106 static void gpiochip_irqchip_remove(struct gpio_chip *gc);
107 static int gpiochip_irqchip_init_hw(struct gpio_chip *gc);
108 static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc);
109 static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc);
111 static bool gpiolib_initialized;
113 static inline void desc_set_label(struct gpio_desc *d, const char *label)
119 * gpio_to_desc - Convert a GPIO number to its descriptor
120 * @gpio: global GPIO number
123 * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO
124 * with the given number exists in the system.
126 struct gpio_desc *gpio_to_desc(unsigned gpio)
128 struct gpio_device *gdev;
131 spin_lock_irqsave(&gpio_lock, flags);
133 list_for_each_entry(gdev, &gpio_devices, list) {
134 if (gdev->base <= gpio &&
135 gdev->base + gdev->ngpio > gpio) {
136 spin_unlock_irqrestore(&gpio_lock, flags);
137 return &gdev->descs[gpio - gdev->base];
141 spin_unlock_irqrestore(&gpio_lock, flags);
143 if (!gpio_is_valid(gpio))
144 pr_warn("invalid GPIO %d\n", gpio);
148 EXPORT_SYMBOL_GPL(gpio_to_desc);
150 /* This function is deprecated and will be removed soon, don't use. */
151 struct gpio_desc *gpiochip_get_desc(struct gpio_chip *gc,
154 return gpio_device_get_desc(gc->gpiodev, hwnum);
156 EXPORT_SYMBOL_GPL(gpiochip_get_desc);
159 * gpio_device_get_desc() - get the GPIO descriptor corresponding to the given
160 * hardware number for this GPIO device
161 * @gdev: GPIO device to get the descriptor from
162 * @hwnum: hardware number of the GPIO for this chip
165 * A pointer to the GPIO descriptor or %EINVAL if no GPIO exists in the given
166 * chip for the specified hardware number or %ENODEV if the underlying chip
169 * The reference count of struct gpio_device is *NOT* increased like when the
170 * GPIO is being requested for exclusive usage. It's up to the caller to make
171 * sure the GPIO device will stay alive together with the descriptor returned
175 gpio_device_get_desc(struct gpio_device *gdev, unsigned int hwnum)
177 struct gpio_chip *gc;
180 * FIXME: This will be locked once we protect gdev->chip everywhere
185 return ERR_PTR(-ENODEV);
187 if (hwnum >= gdev->ngpio)
188 return ERR_PTR(-EINVAL);
190 return &gdev->descs[hwnum];
192 EXPORT_SYMBOL_GPL(gpio_device_get_desc);
195 * desc_to_gpio - convert a GPIO descriptor to the integer namespace
196 * @desc: GPIO descriptor
198 * This should disappear in the future but is needed since we still
199 * use GPIO numbers for error messages and sysfs nodes.
202 * The global GPIO number for the GPIO specified by its descriptor.
204 int desc_to_gpio(const struct gpio_desc *desc)
206 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
208 EXPORT_SYMBOL_GPL(desc_to_gpio);
212 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
213 * @desc: descriptor to return the chip of
215 struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
217 if (!desc || !desc->gdev)
219 return desc->gdev->chip;
221 EXPORT_SYMBOL_GPL(gpiod_to_chip);
224 * gpiod_to_gpio_device() - Return the GPIO device to which this descriptor
226 * @desc: Descriptor for which to return the GPIO device.
228 * This *DOES NOT* increase the reference count of the GPIO device as it's
229 * expected that the descriptor is requested and the users already holds a
230 * reference to the device.
233 * Address of the GPIO device owning this descriptor.
235 struct gpio_device *gpiod_to_gpio_device(struct gpio_desc *desc)
242 EXPORT_SYMBOL_GPL(gpiod_to_gpio_device);
245 * gpio_device_get_base() - Get the base GPIO number allocated by this device
249 * First GPIO number in the global GPIO numberspace for this device.
251 int gpio_device_get_base(struct gpio_device *gdev)
255 EXPORT_SYMBOL_GPL(gpio_device_get_base);
258 * gpio_device_get_chip() - Get the gpio_chip implementation of this GPIO device
262 * Address of the GPIO chip backing this device.
264 * Until we can get rid of all non-driver users of struct gpio_chip, we must
265 * provide a way of retrieving the pointer to it from struct gpio_device. This
266 * is *NOT* safe as the GPIO API is considered to be hot-unpluggable and the
267 * chip can dissapear at any moment (unlike reference-counted struct
270 * Use at your own risk.
272 struct gpio_chip *gpio_device_get_chip(struct gpio_device *gdev)
276 EXPORT_SYMBOL_GPL(gpio_device_get_chip);
278 /* dynamic allocation of GPIOs, e.g. on a hotplugged device */
279 static int gpiochip_find_base(int ngpio)
281 struct gpio_device *gdev;
282 int base = GPIO_DYNAMIC_BASE;
284 list_for_each_entry(gdev, &gpio_devices, list) {
285 /* found a free space? */
286 if (gdev->base >= base + ngpio)
288 /* nope, check the space right after the chip */
289 base = gdev->base + gdev->ngpio;
290 if (base < GPIO_DYNAMIC_BASE)
291 base = GPIO_DYNAMIC_BASE;
294 if (gpio_is_valid(base)) {
295 pr_debug("%s: found new base at %d\n", __func__, base);
298 pr_err("%s: cannot find free range\n", __func__);
304 * gpiod_get_direction - return the current direction of a GPIO
305 * @desc: GPIO to get the direction of
307 * Returns 0 for output, 1 for input, or an error code in case of error.
309 * This function may sleep if gpiod_cansleep() is true.
311 int gpiod_get_direction(struct gpio_desc *desc)
313 struct gpio_chip *gc;
317 gc = gpiod_to_chip(desc);
318 offset = gpio_chip_hwgpio(desc);
321 * Open drain emulation using input mode may incorrectly report
322 * input here, fix that up.
324 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) &&
325 test_bit(FLAG_IS_OUT, &desc->flags))
328 if (!gc->get_direction)
331 ret = gc->get_direction(gc, offset);
335 /* GPIOF_DIR_IN or other positive, otherwise GPIOF_DIR_OUT */
339 assign_bit(FLAG_IS_OUT, &desc->flags, !ret);
343 EXPORT_SYMBOL_GPL(gpiod_get_direction);
346 * Add a new chip to the global chips list, keeping the list of chips sorted
347 * by range(means [base, base + ngpio - 1]) order.
349 * Return -EBUSY if the new chip overlaps with some other chip's integer
352 static int gpiodev_add_to_list(struct gpio_device *gdev)
354 struct gpio_device *prev, *next;
356 if (list_empty(&gpio_devices)) {
357 /* initial entry in list */
358 list_add_tail(&gdev->list, &gpio_devices);
362 next = list_first_entry(&gpio_devices, struct gpio_device, list);
363 if (gdev->base + gdev->ngpio <= next->base) {
364 /* add before first entry */
365 list_add(&gdev->list, &gpio_devices);
369 prev = list_last_entry(&gpio_devices, struct gpio_device, list);
370 if (prev->base + prev->ngpio <= gdev->base) {
371 /* add behind last entry */
372 list_add_tail(&gdev->list, &gpio_devices);
376 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
377 /* at the end of the list */
378 if (&next->list == &gpio_devices)
381 /* add between prev and next */
382 if (prev->base + prev->ngpio <= gdev->base
383 && gdev->base + gdev->ngpio <= next->base) {
384 list_add(&gdev->list, &prev->list);
393 * Convert a GPIO name to its descriptor
394 * Note that there is no guarantee that GPIO names are globally unique!
395 * Hence this function will return, if it exists, a reference to the first GPIO
396 * line found that matches the given name.
398 static struct gpio_desc *gpio_name_to_desc(const char * const name)
400 struct gpio_device *gdev;
406 spin_lock_irqsave(&gpio_lock, flags);
408 list_for_each_entry(gdev, &gpio_devices, list) {
409 struct gpio_desc *desc;
411 for_each_gpio_desc(gdev->chip, desc) {
412 if (desc->name && !strcmp(desc->name, name)) {
413 spin_unlock_irqrestore(&gpio_lock, flags);
419 spin_unlock_irqrestore(&gpio_lock, flags);
425 * Take the names from gc->names and assign them to their GPIO descriptors.
426 * Warn if a name is already used for a GPIO line on a different GPIO chip.
429 * 1. Non-unique names are still accepted,
430 * 2. Name collisions within the same GPIO chip are not reported.
432 static int gpiochip_set_desc_names(struct gpio_chip *gc)
434 struct gpio_device *gdev = gc->gpiodev;
437 /* First check all names if they are unique */
438 for (i = 0; i != gc->ngpio; ++i) {
439 struct gpio_desc *gpio;
441 gpio = gpio_name_to_desc(gc->names[i]);
444 "Detected name collision for GPIO name '%s'\n",
448 /* Then add all names to the GPIO descriptors */
449 for (i = 0; i != gc->ngpio; ++i)
450 gdev->descs[i].name = gc->names[i];
456 * gpiochip_set_names - Set GPIO line names using device properties
457 * @chip: GPIO chip whose lines should be named, if possible
459 * Looks for device property "gpio-line-names" and if it exists assigns
460 * GPIO line names for the chip. The memory allocated for the assigned
461 * names belong to the underlying firmware node and should not be released
464 static int gpiochip_set_names(struct gpio_chip *chip)
466 struct gpio_device *gdev = chip->gpiodev;
467 struct device *dev = &gdev->dev;
472 count = device_property_string_array_count(dev, "gpio-line-names");
477 * When offset is set in the driver side we assume the driver internally
478 * is using more than one gpiochip per the same device. We have to stop
479 * setting friendly names if the specified ones with 'gpio-line-names'
480 * are less than the offset in the device itself. This means all the
481 * lines are not present for every single pin within all the internal
484 if (count <= chip->offset) {
485 dev_warn(dev, "gpio-line-names too short (length %d), cannot map names for the gpiochip at offset %u\n",
486 count, chip->offset);
490 names = kcalloc(count, sizeof(*names), GFP_KERNEL);
494 ret = device_property_read_string_array(dev, "gpio-line-names",
497 dev_warn(dev, "failed to read GPIO line names\n");
503 * When more that one gpiochip per device is used, 'count' can
504 * contain at most number gpiochips x chip->ngpio. We have to
505 * correctly distribute all defined lines taking into account
506 * chip->offset as starting point from where we will assign
507 * the names to pins from the 'names' array. Since property
508 * 'gpio-line-names' cannot contains gaps, we have to be sure
509 * we only assign those pins that really exists since chip->ngpio
510 * can be different of the chip->offset.
512 count = (count > chip->offset) ? count - chip->offset : count;
513 if (count > chip->ngpio)
516 for (i = 0; i < count; i++) {
518 * Allow overriding "fixed" names provided by the GPIO
519 * provider. The "fixed" names are more often than not
520 * generic and less informative than the names given in
523 if (names[chip->offset + i] && names[chip->offset + i][0])
524 gdev->descs[i].name = names[chip->offset + i];
532 static unsigned long *gpiochip_allocate_mask(struct gpio_chip *gc)
536 p = bitmap_alloc(gc->ngpio, GFP_KERNEL);
540 /* Assume by default all GPIOs are valid */
541 bitmap_fill(p, gc->ngpio);
546 static void gpiochip_free_mask(unsigned long **p)
552 static unsigned int gpiochip_count_reserved_ranges(struct gpio_chip *gc)
554 struct device *dev = &gc->gpiodev->dev;
557 /* Format is "start, count, ..." */
558 size = device_property_count_u32(dev, "gpio-reserved-ranges");
559 if (size > 0 && size % 2 == 0)
565 static int gpiochip_apply_reserved_ranges(struct gpio_chip *gc)
567 struct device *dev = &gc->gpiodev->dev;
572 size = gpiochip_count_reserved_ranges(gc);
576 ranges = kmalloc_array(size, sizeof(*ranges), GFP_KERNEL);
580 ret = device_property_read_u32_array(dev, "gpio-reserved-ranges",
588 u32 count = ranges[--size];
589 u32 start = ranges[--size];
591 if (start >= gc->ngpio || start + count > gc->ngpio)
594 bitmap_clear(gc->valid_mask, start, count);
601 static int gpiochip_init_valid_mask(struct gpio_chip *gc)
605 if (!(gpiochip_count_reserved_ranges(gc) || gc->init_valid_mask))
608 gc->valid_mask = gpiochip_allocate_mask(gc);
612 ret = gpiochip_apply_reserved_ranges(gc);
616 if (gc->init_valid_mask)
617 return gc->init_valid_mask(gc,
624 static void gpiochip_free_valid_mask(struct gpio_chip *gc)
626 gpiochip_free_mask(&gc->valid_mask);
629 static int gpiochip_add_pin_ranges(struct gpio_chip *gc)
632 * Device Tree platforms are supposed to use "gpio-ranges"
633 * property. This check ensures that the ->add_pin_ranges()
634 * won't be called for them.
636 if (device_property_present(&gc->gpiodev->dev, "gpio-ranges"))
639 if (gc->add_pin_ranges)
640 return gc->add_pin_ranges(gc);
645 bool gpiochip_line_is_valid(const struct gpio_chip *gc,
648 /* No mask means all valid */
649 if (likely(!gc->valid_mask))
651 return test_bit(offset, gc->valid_mask);
653 EXPORT_SYMBOL_GPL(gpiochip_line_is_valid);
655 static void gpiodev_release(struct device *dev)
657 struct gpio_device *gdev = to_gpio_device(dev);
660 spin_lock_irqsave(&gpio_lock, flags);
661 list_del(&gdev->list);
662 spin_unlock_irqrestore(&gpio_lock, flags);
664 ida_free(&gpio_ida, gdev->id);
665 kfree_const(gdev->label);
670 #ifdef CONFIG_GPIO_CDEV
671 #define gcdev_register(gdev, devt) gpiolib_cdev_register((gdev), (devt))
672 #define gcdev_unregister(gdev) gpiolib_cdev_unregister((gdev))
675 * gpiolib_cdev_register() indirectly calls device_add(), which is still
676 * required even when cdev is not selected.
678 #define gcdev_register(gdev, devt) device_add(&(gdev)->dev)
679 #define gcdev_unregister(gdev) device_del(&(gdev)->dev)
682 static int gpiochip_setup_dev(struct gpio_device *gdev)
684 struct fwnode_handle *fwnode = dev_fwnode(&gdev->dev);
688 * If fwnode doesn't belong to another device, it's safe to clear its
691 if (fwnode && !fwnode->dev)
692 fwnode_dev_initialized(fwnode, false);
694 ret = gcdev_register(gdev, gpio_devt);
698 /* From this point, the .release() function cleans up gpio_device */
699 gdev->dev.release = gpiodev_release;
701 ret = gpiochip_sysfs_register(gdev);
703 goto err_remove_device;
705 dev_dbg(&gdev->dev, "registered GPIOs %d to %d on %s\n", gdev->base,
706 gdev->base + gdev->ngpio - 1, gdev->chip->label ? : "generic");
711 gcdev_unregister(gdev);
715 static void gpiochip_machine_hog(struct gpio_chip *gc, struct gpiod_hog *hog)
717 struct gpio_desc *desc;
720 desc = gpiochip_get_desc(gc, hog->chip_hwnum);
722 chip_err(gc, "%s: unable to get GPIO desc: %ld\n", __func__,
727 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
730 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
732 gpiod_err(desc, "%s: unable to hog GPIO line (%s:%u): %d\n",
733 __func__, gc->label, hog->chip_hwnum, rv);
736 static void machine_gpiochip_add(struct gpio_chip *gc)
738 struct gpiod_hog *hog;
740 mutex_lock(&gpio_machine_hogs_mutex);
742 list_for_each_entry(hog, &gpio_machine_hogs, list) {
743 if (!strcmp(gc->label, hog->chip_label))
744 gpiochip_machine_hog(gc, hog);
747 mutex_unlock(&gpio_machine_hogs_mutex);
750 static void gpiochip_setup_devs(void)
752 struct gpio_device *gdev;
755 list_for_each_entry(gdev, &gpio_devices, list) {
756 ret = gpiochip_setup_dev(gdev);
759 "Failed to initialize gpio device (%d)\n", ret);
763 static void gpiochip_set_data(struct gpio_chip *gc, void *data)
765 gc->gpiodev->data = data;
769 * gpiochip_get_data() - get per-subdriver data for the chip
773 * The per-subdriver data for the chip.
775 void *gpiochip_get_data(struct gpio_chip *gc)
777 return gc->gpiodev->data;
779 EXPORT_SYMBOL_GPL(gpiochip_get_data);
781 int gpiochip_get_ngpios(struct gpio_chip *gc, struct device *dev)
783 u32 ngpios = gc->ngpio;
787 ret = device_property_read_u32(dev, "ngpios", &ngpios);
790 * -ENODATA means that there is no property found and
791 * we want to issue the error message to the user.
792 * Besides that, we want to return different error code
793 * to state that supplied value is not valid.
802 if (gc->ngpio == 0) {
803 chip_err(gc, "tried to insert a GPIO chip with zero lines\n");
807 if (gc->ngpio > FASTPATH_NGPIO)
808 chip_warn(gc, "line cnt %u is greater than fast path cnt %u\n",
809 gc->ngpio, FASTPATH_NGPIO);
813 EXPORT_SYMBOL_GPL(gpiochip_get_ngpios);
815 int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
816 struct lock_class_key *lock_key,
817 struct lock_class_key *request_key)
819 struct gpio_device *gdev;
826 * First: allocate and populate the internal stat container, and
827 * set up the struct device.
829 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
832 gdev->dev.bus = &gpio_bus_type;
833 gdev->dev.parent = gc->parent;
837 gpiochip_set_data(gc, data);
840 * If the calling driver did not initialize firmware node,
841 * do it here using the parent device, if any.
844 device_set_node(&gdev->dev, gc->fwnode);
846 device_set_node(&gdev->dev, dev_fwnode(gc->parent));
848 gdev->id = ida_alloc(&gpio_ida, GFP_KERNEL);
854 ret = dev_set_name(&gdev->dev, GPIOCHIP_NAME "%d", gdev->id);
858 device_initialize(&gdev->dev);
859 if (gc->parent && gc->parent->driver)
860 gdev->owner = gc->parent->driver->owner;
862 /* TODO: remove chip->owner */
863 gdev->owner = gc->owner;
865 gdev->owner = THIS_MODULE;
867 ret = gpiochip_get_ngpios(gc, &gdev->dev);
869 goto err_free_dev_name;
871 gdev->descs = kcalloc(gc->ngpio, sizeof(*gdev->descs), GFP_KERNEL);
874 goto err_free_dev_name;
877 gdev->label = kstrdup_const(gc->label ?: "unknown", GFP_KERNEL);
883 gdev->ngpio = gc->ngpio;
885 spin_lock_irqsave(&gpio_lock, flags);
888 * TODO: this allocates a Linux GPIO number base in the global
889 * GPIO numberspace for this chip. In the long run we want to
890 * get *rid* of this numberspace and use only descriptors, but
891 * it may be a pipe dream. It will not happen before we get rid
892 * of the sysfs interface anyways.
896 base = gpiochip_find_base(gc->ngpio);
898 spin_unlock_irqrestore(&gpio_lock, flags);
904 * TODO: it should not be necessary to reflect the assigned
905 * base outside of the GPIO subsystem. Go over drivers and
906 * see if anyone makes use of this, else drop this and assign
912 "Static allocation of GPIO base is deprecated, use dynamic allocation.\n");
916 ret = gpiodev_add_to_list(gdev);
918 spin_unlock_irqrestore(&gpio_lock, flags);
919 chip_err(gc, "GPIO integer space overlap, cannot add chip\n");
923 for (i = 0; i < gc->ngpio; i++)
924 gdev->descs[i].gdev = gdev;
926 spin_unlock_irqrestore(&gpio_lock, flags);
928 BLOCKING_INIT_NOTIFIER_HEAD(&gdev->line_state_notifier);
929 BLOCKING_INIT_NOTIFIER_HEAD(&gdev->device_notifier);
930 init_rwsem(&gdev->sem);
932 #ifdef CONFIG_PINCTRL
933 INIT_LIST_HEAD(&gdev->pin_ranges);
937 ret = gpiochip_set_desc_names(gc);
939 goto err_remove_from_list;
941 ret = gpiochip_set_names(gc);
943 goto err_remove_from_list;
945 ret = gpiochip_init_valid_mask(gc);
947 goto err_remove_from_list;
949 ret = of_gpiochip_add(gc);
951 goto err_free_gpiochip_mask;
953 for (i = 0; i < gc->ngpio; i++) {
954 struct gpio_desc *desc = &gdev->descs[i];
956 if (gc->get_direction && gpiochip_line_is_valid(gc, i)) {
957 assign_bit(FLAG_IS_OUT,
958 &desc->flags, !gc->get_direction(gc, i));
960 assign_bit(FLAG_IS_OUT,
961 &desc->flags, !gc->direction_input);
965 ret = gpiochip_add_pin_ranges(gc);
967 goto err_remove_of_chip;
969 acpi_gpiochip_add(gc);
971 machine_gpiochip_add(gc);
973 ret = gpiochip_irqchip_init_valid_mask(gc);
975 goto err_remove_acpi_chip;
977 ret = gpiochip_irqchip_init_hw(gc);
979 goto err_remove_acpi_chip;
981 ret = gpiochip_add_irqchip(gc, lock_key, request_key);
983 goto err_remove_irqchip_mask;
986 * By first adding the chardev, and then adding the device,
987 * we get a device node entry in sysfs under
988 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
989 * coldplug of device nodes and other udev business.
990 * We can do this only if gpiolib has been initialized.
991 * Otherwise, defer until later.
993 if (gpiolib_initialized) {
994 ret = gpiochip_setup_dev(gdev);
996 goto err_remove_irqchip;
1001 gpiochip_irqchip_remove(gc);
1002 err_remove_irqchip_mask:
1003 gpiochip_irqchip_free_valid_mask(gc);
1004 err_remove_acpi_chip:
1005 acpi_gpiochip_remove(gc);
1007 gpiochip_free_hogs(gc);
1008 of_gpiochip_remove(gc);
1009 err_free_gpiochip_mask:
1010 gpiochip_remove_pin_ranges(gc);
1011 gpiochip_free_valid_mask(gc);
1012 if (gdev->dev.release) {
1013 /* release() has been registered by gpiochip_setup_dev() */
1014 gpio_device_put(gdev);
1015 goto err_print_message;
1017 err_remove_from_list:
1018 spin_lock_irqsave(&gpio_lock, flags);
1019 list_del(&gdev->list);
1020 spin_unlock_irqrestore(&gpio_lock, flags);
1022 kfree_const(gdev->label);
1026 kfree(dev_name(&gdev->dev));
1028 ida_free(&gpio_ida, gdev->id);
1032 /* failures here can mean systems won't boot... */
1033 if (ret != -EPROBE_DEFER) {
1034 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
1035 base, base + (int)gc->ngpio - 1,
1036 gc->label ? : "generic", ret);
1040 EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
1043 * gpiochip_remove() - unregister a gpio_chip
1044 * @gc: the chip to unregister
1046 * A gpio_chip with any GPIOs still requested may not be removed.
1048 void gpiochip_remove(struct gpio_chip *gc)
1050 struct gpio_device *gdev = gc->gpiodev;
1051 unsigned long flags;
1054 down_write(&gdev->sem);
1056 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
1057 gpiochip_sysfs_unregister(gdev);
1058 gpiochip_free_hogs(gc);
1059 /* Numb the device, cancelling all outstanding operations */
1061 gpiochip_irqchip_remove(gc);
1062 acpi_gpiochip_remove(gc);
1063 of_gpiochip_remove(gc);
1064 gpiochip_remove_pin_ranges(gc);
1065 gpiochip_free_valid_mask(gc);
1067 * We accept no more calls into the driver from this point, so
1068 * NULL the driver data pointer.
1070 gpiochip_set_data(gc, NULL);
1072 spin_lock_irqsave(&gpio_lock, flags);
1073 for (i = 0; i < gdev->ngpio; i++) {
1074 if (gpiochip_is_requested(gc, i))
1077 spin_unlock_irqrestore(&gpio_lock, flags);
1079 if (i != gdev->ngpio)
1080 dev_crit(&gdev->dev,
1081 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
1084 * The gpiochip side puts its use of the device to rest here:
1085 * if there are no userspace clients, the chardev and device will
1086 * be removed, else it will be dangling until the last user is
1089 gcdev_unregister(gdev);
1090 up_write(&gdev->sem);
1091 gpio_device_put(gdev);
1093 EXPORT_SYMBOL_GPL(gpiochip_remove);
1096 * FIXME: This will be removed soon.
1098 * This function is depracated, don't use.
1100 struct gpio_chip *gpiochip_find(void *data,
1101 int (*match)(struct gpio_chip *gc,
1104 struct gpio_device *gdev;
1105 struct gpio_chip *gc = NULL;
1107 gdev = gpio_device_find(data, match);
1110 gpio_device_put(gdev);
1115 EXPORT_SYMBOL_GPL(gpiochip_find);
1118 * gpio_device_find() - find a specific GPIO device
1119 * @data: data to pass to match function
1120 * @match: Callback function to check gpio_chip
1123 * New reference to struct gpio_device.
1125 * Similar to bus_find_device(). It returns a reference to a gpio_device as
1126 * determined by a user supplied @match callback. The callback should return
1127 * 0 if the device doesn't match and non-zero if it does. If the callback
1128 * returns non-zero, this function will return to the caller and not iterate
1129 * over any more gpio_devices.
1131 * The callback takes the GPIO chip structure as argument. During the execution
1132 * of the callback function the chip is protected from being freed. TODO: This
1133 * actually has yet to be implemented.
1135 * If the function returns non-NULL, the returned reference must be freed by
1136 * the caller using gpio_device_put().
1138 struct gpio_device *gpio_device_find(void *data,
1139 int (*match)(struct gpio_chip *gc,
1142 struct gpio_device *gdev;
1145 * Not yet but in the future the spinlock below will become a mutex.
1146 * Annotate this function before anyone tries to use it in interrupt
1147 * context like it happened with gpiochip_find().
1151 guard(spinlock_irqsave)(&gpio_lock);
1153 list_for_each_entry(gdev, &gpio_devices, list) {
1154 if (gdev->chip && match(gdev->chip, data))
1155 return gpio_device_get(gdev);
1160 EXPORT_SYMBOL_GPL(gpio_device_find);
1162 static int gpio_chip_match_by_label(struct gpio_chip *gc, void *label)
1164 return gc->label && !strcmp(gc->label, label);
1168 * gpio_device_find_by_label() - wrapper around gpio_device_find() finding the
1169 * GPIO device by its backing chip's label
1170 * @label: Label to lookup
1173 * Reference to the GPIO device or NULL. Reference must be released with
1174 * gpio_device_put().
1176 struct gpio_device *gpio_device_find_by_label(const char *label)
1178 return gpio_device_find((void *)label, gpio_chip_match_by_label);
1180 EXPORT_SYMBOL_GPL(gpio_device_find_by_label);
1182 static int gpio_chip_match_by_fwnode(struct gpio_chip *gc, void *fwnode)
1184 return device_match_fwnode(&gc->gpiodev->dev, fwnode);
1188 * gpio_device_find_by_fwnode() - wrapper around gpio_device_find() finding
1189 * the GPIO device by its fwnode
1190 * @fwnode: Firmware node to lookup
1193 * Reference to the GPIO device or NULL. Reference must be released with
1194 * gpio_device_put().
1196 struct gpio_device *gpio_device_find_by_fwnode(const struct fwnode_handle *fwnode)
1198 return gpio_device_find((void *)fwnode, gpio_chip_match_by_fwnode);
1200 EXPORT_SYMBOL_GPL(gpio_device_find_by_fwnode);
1203 * gpio_device_get() - Increase the reference count of this GPIO device
1204 * @gdev: GPIO device to increase the refcount for
1209 struct gpio_device *gpio_device_get(struct gpio_device *gdev)
1211 return to_gpio_device(get_device(&gdev->dev));
1213 EXPORT_SYMBOL_GPL(gpio_device_get);
1216 * gpio_device_put() - Decrease the reference count of this GPIO device and
1217 * possibly free all resources associated with it.
1218 * @gdev: GPIO device to decrease the reference count for
1220 void gpio_device_put(struct gpio_device *gdev)
1222 put_device(&gdev->dev);
1224 EXPORT_SYMBOL_GPL(gpio_device_put);
1227 * gpio_device_to_device() - Retrieve the address of the underlying struct
1229 * @gdev: GPIO device for which to return the address.
1231 * This does not increase the reference count of the GPIO device nor the
1232 * underlying struct device.
1235 * Address of struct device backing this GPIO device.
1237 struct device *gpio_device_to_device(struct gpio_device *gdev)
1241 EXPORT_SYMBOL_GPL(gpio_device_to_device);
1243 #ifdef CONFIG_GPIOLIB_IRQCHIP
1246 * The following is irqchip helper code for gpiochips.
1249 static int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
1251 struct gpio_irq_chip *girq = &gc->irq;
1256 return girq->init_hw(gc);
1259 static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
1261 struct gpio_irq_chip *girq = &gc->irq;
1263 if (!girq->init_valid_mask)
1266 girq->valid_mask = gpiochip_allocate_mask(gc);
1267 if (!girq->valid_mask)
1270 girq->init_valid_mask(gc, girq->valid_mask, gc->ngpio);
1275 static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
1277 gpiochip_free_mask(&gc->irq.valid_mask);
1280 bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gc,
1281 unsigned int offset)
1283 if (!gpiochip_line_is_valid(gc, offset))
1285 /* No mask means all valid */
1286 if (likely(!gc->irq.valid_mask))
1288 return test_bit(offset, gc->irq.valid_mask);
1290 EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
1292 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1295 * gpiochip_set_hierarchical_irqchip() - connects a hierarchical irqchip
1297 * @gc: the gpiochip to set the irqchip hierarchical handler to
1298 * @irqchip: the irqchip to handle this level of the hierarchy, the interrupt
1299 * will then percolate up to the parent
1301 static void gpiochip_set_hierarchical_irqchip(struct gpio_chip *gc,
1302 struct irq_chip *irqchip)
1304 /* DT will deal with mapping each IRQ as we go along */
1305 if (is_of_node(gc->irq.fwnode))
1309 * This is for legacy and boardfile "irqchip" fwnodes: allocate
1310 * irqs upfront instead of dynamically since we don't have the
1311 * dynamic type of allocation that hardware description languages
1312 * provide. Once all GPIO drivers using board files are gone from
1313 * the kernel we can delete this code, but for a transitional period
1314 * it is necessary to keep this around.
1316 if (is_fwnode_irqchip(gc->irq.fwnode)) {
1320 for (i = 0; i < gc->ngpio; i++) {
1321 struct irq_fwspec fwspec;
1322 unsigned int parent_hwirq;
1323 unsigned int parent_type;
1324 struct gpio_irq_chip *girq = &gc->irq;
1327 * We call the child to parent translation function
1328 * only to check if the child IRQ is valid or not.
1329 * Just pick the rising edge type here as that is what
1330 * we likely need to support.
1332 ret = girq->child_to_parent_hwirq(gc, i,
1333 IRQ_TYPE_EDGE_RISING,
1337 chip_err(gc, "skip set-up on hwirq %d\n",
1342 fwspec.fwnode = gc->irq.fwnode;
1343 /* This is the hwirq for the GPIO line side of things */
1344 fwspec.param[0] = girq->child_offset_to_irq(gc, i);
1345 /* Just pick something */
1346 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
1347 fwspec.param_count = 2;
1348 ret = irq_domain_alloc_irqs(gc->irq.domain, 1,
1349 NUMA_NO_NODE, &fwspec);
1352 "can not allocate irq for GPIO line %d parent hwirq %d in hierarchy domain: %d\n",
1359 chip_err(gc, "%s unknown fwnode type proceed anyway\n", __func__);
1364 static int gpiochip_hierarchy_irq_domain_translate(struct irq_domain *d,
1365 struct irq_fwspec *fwspec,
1366 unsigned long *hwirq,
1369 /* We support standard DT translation */
1370 if (is_of_node(fwspec->fwnode) && fwspec->param_count == 2) {
1371 return irq_domain_translate_twocell(d, fwspec, hwirq, type);
1374 /* This is for board files and others not using DT */
1375 if (is_fwnode_irqchip(fwspec->fwnode)) {
1378 ret = irq_domain_translate_twocell(d, fwspec, hwirq, type);
1381 WARN_ON(*type == IRQ_TYPE_NONE);
1387 static int gpiochip_hierarchy_irq_domain_alloc(struct irq_domain *d,
1389 unsigned int nr_irqs,
1392 struct gpio_chip *gc = d->host_data;
1393 irq_hw_number_t hwirq;
1394 unsigned int type = IRQ_TYPE_NONE;
1395 struct irq_fwspec *fwspec = data;
1396 union gpio_irq_fwspec gpio_parent_fwspec = {};
1397 unsigned int parent_hwirq;
1398 unsigned int parent_type;
1399 struct gpio_irq_chip *girq = &gc->irq;
1403 * The nr_irqs parameter is always one except for PCI multi-MSI
1404 * so this should not happen.
1406 WARN_ON(nr_irqs != 1);
1408 ret = gc->irq.child_irq_domain_ops.translate(d, fwspec, &hwirq, &type);
1412 chip_dbg(gc, "allocate IRQ %d, hwirq %lu\n", irq, hwirq);
1414 ret = girq->child_to_parent_hwirq(gc, hwirq, type,
1415 &parent_hwirq, &parent_type);
1417 chip_err(gc, "can't look up hwirq %lu\n", hwirq);
1420 chip_dbg(gc, "found parent hwirq %u\n", parent_hwirq);
1423 * We set handle_bad_irq because the .set_type() should
1424 * always be invoked and set the right type of handler.
1426 irq_domain_set_info(d,
1435 /* This parent only handles asserted level IRQs */
1436 ret = girq->populate_parent_alloc_arg(gc, &gpio_parent_fwspec,
1437 parent_hwirq, parent_type);
1441 chip_dbg(gc, "alloc_irqs_parent for %d parent hwirq %d\n",
1443 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1444 ret = irq_domain_alloc_irqs_parent(d, irq, 1, &gpio_parent_fwspec);
1446 * If the parent irqdomain is msi, the interrupts have already
1447 * been allocated, so the EEXIST is good.
1449 if (irq_domain_is_msi(d->parent) && (ret == -EEXIST))
1453 "failed to allocate parent hwirq %d for hwirq %lu\n",
1454 parent_hwirq, hwirq);
1459 static unsigned int gpiochip_child_offset_to_irq_noop(struct gpio_chip *gc,
1460 unsigned int offset)
1465 static void gpiochip_hierarchy_setup_domain_ops(struct irq_domain_ops *ops)
1467 ops->activate = gpiochip_irq_domain_activate;
1468 ops->deactivate = gpiochip_irq_domain_deactivate;
1469 ops->alloc = gpiochip_hierarchy_irq_domain_alloc;
1472 * We only allow overriding the translate() and free() functions for
1473 * hierarchical chips, and this should only be done if the user
1474 * really need something other than 1:1 translation for translate()
1475 * callback and free if user wants to free up any resources which
1476 * were allocated during callbacks, for example populate_parent_alloc_arg.
1478 if (!ops->translate)
1479 ops->translate = gpiochip_hierarchy_irq_domain_translate;
1481 ops->free = irq_domain_free_irqs_common;
1484 static struct irq_domain *gpiochip_hierarchy_create_domain(struct gpio_chip *gc)
1486 struct irq_domain *domain;
1488 if (!gc->irq.child_to_parent_hwirq ||
1490 chip_err(gc, "missing irqdomain vital data\n");
1491 return ERR_PTR(-EINVAL);
1494 if (!gc->irq.child_offset_to_irq)
1495 gc->irq.child_offset_to_irq = gpiochip_child_offset_to_irq_noop;
1497 if (!gc->irq.populate_parent_alloc_arg)
1498 gc->irq.populate_parent_alloc_arg =
1499 gpiochip_populate_parent_fwspec_twocell;
1501 gpiochip_hierarchy_setup_domain_ops(&gc->irq.child_irq_domain_ops);
1503 domain = irq_domain_create_hierarchy(
1504 gc->irq.parent_domain,
1508 &gc->irq.child_irq_domain_ops,
1512 return ERR_PTR(-ENOMEM);
1514 gpiochip_set_hierarchical_irqchip(gc, gc->irq.chip);
1519 static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1521 return !!gc->irq.parent_domain;
1524 int gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc,
1525 union gpio_irq_fwspec *gfwspec,
1526 unsigned int parent_hwirq,
1527 unsigned int parent_type)
1529 struct irq_fwspec *fwspec = &gfwspec->fwspec;
1531 fwspec->fwnode = gc->irq.parent_domain->fwnode;
1532 fwspec->param_count = 2;
1533 fwspec->param[0] = parent_hwirq;
1534 fwspec->param[1] = parent_type;
1538 EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_twocell);
1540 int gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc,
1541 union gpio_irq_fwspec *gfwspec,
1542 unsigned int parent_hwirq,
1543 unsigned int parent_type)
1545 struct irq_fwspec *fwspec = &gfwspec->fwspec;
1547 fwspec->fwnode = gc->irq.parent_domain->fwnode;
1548 fwspec->param_count = 4;
1549 fwspec->param[0] = 0;
1550 fwspec->param[1] = parent_hwirq;
1551 fwspec->param[2] = 0;
1552 fwspec->param[3] = parent_type;
1556 EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_fourcell);
1560 static struct irq_domain *gpiochip_hierarchy_create_domain(struct gpio_chip *gc)
1562 return ERR_PTR(-EINVAL);
1565 static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1570 #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
1573 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1574 * @d: the irqdomain used by this irqchip
1575 * @irq: the global irq number used by this GPIO irqchip irq
1576 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1578 * This function will set up the mapping for a certain IRQ line on a
1579 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1580 * stored inside the gpiochip.
1582 int gpiochip_irq_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hwirq)
1584 struct gpio_chip *gc = d->host_data;
1587 if (!gpiochip_irqchip_irq_valid(gc, hwirq))
1590 irq_set_chip_data(irq, gc);
1592 * This lock class tells lockdep that GPIO irqs are in a different
1593 * category than their parents, so it won't report false recursion.
1595 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1596 irq_set_chip_and_handler(irq, gc->irq.chip, gc->irq.handler);
1597 /* Chips that use nested thread handlers have them marked */
1598 if (gc->irq.threaded)
1599 irq_set_nested_thread(irq, 1);
1600 irq_set_noprobe(irq);
1602 if (gc->irq.num_parents == 1)
1603 ret = irq_set_parent(irq, gc->irq.parents[0]);
1604 else if (gc->irq.map)
1605 ret = irq_set_parent(irq, gc->irq.map[hwirq]);
1611 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1612 * is passed as default type.
1614 if (gc->irq.default_type != IRQ_TYPE_NONE)
1615 irq_set_irq_type(irq, gc->irq.default_type);
1619 EXPORT_SYMBOL_GPL(gpiochip_irq_map);
1621 void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1623 struct gpio_chip *gc = d->host_data;
1625 if (gc->irq.threaded)
1626 irq_set_nested_thread(irq, 0);
1627 irq_set_chip_and_handler(irq, NULL, NULL);
1628 irq_set_chip_data(irq, NULL);
1630 EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
1632 static const struct irq_domain_ops gpiochip_domain_ops = {
1633 .map = gpiochip_irq_map,
1634 .unmap = gpiochip_irq_unmap,
1635 /* Virtually all GPIO irqchips are twocell:ed */
1636 .xlate = irq_domain_xlate_twocell,
1639 static struct irq_domain *gpiochip_simple_create_domain(struct gpio_chip *gc)
1641 struct fwnode_handle *fwnode = dev_fwnode(&gc->gpiodev->dev);
1642 struct irq_domain *domain;
1644 domain = irq_domain_create_simple(fwnode, gc->ngpio, gc->irq.first,
1645 &gpiochip_domain_ops, gc);
1647 return ERR_PTR(-EINVAL);
1653 * TODO: move these activate/deactivate in under the hierarchicial
1654 * irqchip implementation as static once SPMI and SSBI (all external
1655 * users) are phased over.
1658 * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ
1659 * @domain: The IRQ domain used by this IRQ chip
1660 * @data: Outermost irq_data associated with the IRQ
1661 * @reserve: If set, only reserve an interrupt vector instead of assigning one
1663 * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be
1664 * used as the activate function for the &struct irq_domain_ops. The host_data
1665 * for the IRQ domain must be the &struct gpio_chip.
1667 int gpiochip_irq_domain_activate(struct irq_domain *domain,
1668 struct irq_data *data, bool reserve)
1670 struct gpio_chip *gc = domain->host_data;
1671 unsigned int hwirq = irqd_to_hwirq(data);
1673 return gpiochip_lock_as_irq(gc, hwirq);
1675 EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate);
1678 * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ
1679 * @domain: The IRQ domain used by this IRQ chip
1680 * @data: Outermost irq_data associated with the IRQ
1682 * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to
1683 * be used as the deactivate function for the &struct irq_domain_ops. The
1684 * host_data for the IRQ domain must be the &struct gpio_chip.
1686 void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
1687 struct irq_data *data)
1689 struct gpio_chip *gc = domain->host_data;
1690 unsigned int hwirq = irqd_to_hwirq(data);
1692 return gpiochip_unlock_as_irq(gc, hwirq);
1694 EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate);
1696 static int gpiochip_to_irq(struct gpio_chip *gc, unsigned int offset)
1698 struct irq_domain *domain = gc->irq.domain;
1700 #ifdef CONFIG_GPIOLIB_IRQCHIP
1702 * Avoid race condition with other code, which tries to lookup
1703 * an IRQ before the irqchip has been properly registered,
1704 * i.e. while gpiochip is still being brought up.
1706 if (!gc->irq.initialized)
1707 return -EPROBE_DEFER;
1710 if (!gpiochip_irqchip_irq_valid(gc, offset))
1713 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1714 if (irq_domain_is_hierarchy(domain)) {
1715 struct irq_fwspec spec;
1717 spec.fwnode = domain->fwnode;
1718 spec.param_count = 2;
1719 spec.param[0] = gc->irq.child_offset_to_irq(gc, offset);
1720 spec.param[1] = IRQ_TYPE_NONE;
1722 return irq_create_fwspec_mapping(&spec);
1726 return irq_create_mapping(domain, offset);
1729 int gpiochip_irq_reqres(struct irq_data *d)
1731 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1732 unsigned int hwirq = irqd_to_hwirq(d);
1734 return gpiochip_reqres_irq(gc, hwirq);
1736 EXPORT_SYMBOL(gpiochip_irq_reqres);
1738 void gpiochip_irq_relres(struct irq_data *d)
1740 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1741 unsigned int hwirq = irqd_to_hwirq(d);
1743 gpiochip_relres_irq(gc, hwirq);
1745 EXPORT_SYMBOL(gpiochip_irq_relres);
1747 static void gpiochip_irq_mask(struct irq_data *d)
1749 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1750 unsigned int hwirq = irqd_to_hwirq(d);
1752 if (gc->irq.irq_mask)
1753 gc->irq.irq_mask(d);
1754 gpiochip_disable_irq(gc, hwirq);
1757 static void gpiochip_irq_unmask(struct irq_data *d)
1759 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1760 unsigned int hwirq = irqd_to_hwirq(d);
1762 gpiochip_enable_irq(gc, hwirq);
1763 if (gc->irq.irq_unmask)
1764 gc->irq.irq_unmask(d);
1767 static void gpiochip_irq_enable(struct irq_data *d)
1769 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1770 unsigned int hwirq = irqd_to_hwirq(d);
1772 gpiochip_enable_irq(gc, hwirq);
1773 gc->irq.irq_enable(d);
1776 static void gpiochip_irq_disable(struct irq_data *d)
1778 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1779 unsigned int hwirq = irqd_to_hwirq(d);
1781 gc->irq.irq_disable(d);
1782 gpiochip_disable_irq(gc, hwirq);
1785 static void gpiochip_set_irq_hooks(struct gpio_chip *gc)
1787 struct irq_chip *irqchip = gc->irq.chip;
1789 if (irqchip->flags & IRQCHIP_IMMUTABLE)
1792 chip_warn(gc, "not an immutable chip, please consider fixing it!\n");
1794 if (!irqchip->irq_request_resources &&
1795 !irqchip->irq_release_resources) {
1796 irqchip->irq_request_resources = gpiochip_irq_reqres;
1797 irqchip->irq_release_resources = gpiochip_irq_relres;
1799 if (WARN_ON(gc->irq.irq_enable))
1801 /* Check if the irqchip already has this hook... */
1802 if (irqchip->irq_enable == gpiochip_irq_enable ||
1803 irqchip->irq_mask == gpiochip_irq_mask) {
1805 * ...and if so, give a gentle warning that this is bad
1809 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1813 if (irqchip->irq_disable) {
1814 gc->irq.irq_disable = irqchip->irq_disable;
1815 irqchip->irq_disable = gpiochip_irq_disable;
1817 gc->irq.irq_mask = irqchip->irq_mask;
1818 irqchip->irq_mask = gpiochip_irq_mask;
1821 if (irqchip->irq_enable) {
1822 gc->irq.irq_enable = irqchip->irq_enable;
1823 irqchip->irq_enable = gpiochip_irq_enable;
1825 gc->irq.irq_unmask = irqchip->irq_unmask;
1826 irqchip->irq_unmask = gpiochip_irq_unmask;
1830 static int gpiochip_irqchip_add_allocated_domain(struct gpio_chip *gc,
1831 struct irq_domain *domain,
1832 bool allocated_externally)
1838 chip_warn(gc, "to_irq is redefined in %s and you shouldn't rely on it\n", __func__);
1840 gc->to_irq = gpiochip_to_irq;
1841 gc->irq.domain = domain;
1842 gc->irq.domain_is_allocated_externally = allocated_externally;
1845 * Using barrier() here to prevent compiler from reordering
1846 * gc->irq.initialized before adding irqdomain.
1850 gc->irq.initialized = true;
1856 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1857 * @gc: the GPIO chip to add the IRQ chip to
1858 * @lock_key: lockdep class for IRQ lock
1859 * @request_key: lockdep class for IRQ request
1861 static int gpiochip_add_irqchip(struct gpio_chip *gc,
1862 struct lock_class_key *lock_key,
1863 struct lock_class_key *request_key)
1865 struct fwnode_handle *fwnode = dev_fwnode(&gc->gpiodev->dev);
1866 struct irq_chip *irqchip = gc->irq.chip;
1867 struct irq_domain *domain;
1875 if (gc->irq.parent_handler && gc->can_sleep) {
1876 chip_err(gc, "you cannot have chained interrupts on a chip that may sleep\n");
1880 type = gc->irq.default_type;
1883 * Specifying a default trigger is a terrible idea if DT or ACPI is
1884 * used to configure the interrupts, as you may end up with
1885 * conflicting triggers. Tell the user, and reset to NONE.
1887 if (WARN(fwnode && type != IRQ_TYPE_NONE,
1888 "%pfw: Ignoring %u default trigger\n", fwnode, type))
1889 type = IRQ_TYPE_NONE;
1891 gc->irq.default_type = type;
1892 gc->irq.lock_key = lock_key;
1893 gc->irq.request_key = request_key;
1895 /* If a parent irqdomain is provided, let's build a hierarchy */
1896 if (gpiochip_hierarchy_is_hierarchical(gc)) {
1897 domain = gpiochip_hierarchy_create_domain(gc);
1899 domain = gpiochip_simple_create_domain(gc);
1902 return PTR_ERR(domain);
1904 if (gc->irq.parent_handler) {
1905 for (i = 0; i < gc->irq.num_parents; i++) {
1908 if (gc->irq.per_parent_data)
1909 data = gc->irq.parent_handler_data_array[i];
1911 data = gc->irq.parent_handler_data ?: gc;
1914 * The parent IRQ chip is already using the chip_data
1915 * for this IRQ chip, so our callbacks simply use the
1918 irq_set_chained_handler_and_data(gc->irq.parents[i],
1919 gc->irq.parent_handler,
1924 gpiochip_set_irq_hooks(gc);
1926 ret = gpiochip_irqchip_add_allocated_domain(gc, domain, false);
1930 acpi_gpiochip_request_interrupts(gc);
1936 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1937 * @gc: the gpiochip to remove the irqchip from
1939 * This is called only from gpiochip_remove()
1941 static void gpiochip_irqchip_remove(struct gpio_chip *gc)
1943 struct irq_chip *irqchip = gc->irq.chip;
1944 unsigned int offset;
1946 acpi_gpiochip_free_interrupts(gc);
1948 if (irqchip && gc->irq.parent_handler) {
1949 struct gpio_irq_chip *irq = &gc->irq;
1952 for (i = 0; i < irq->num_parents; i++)
1953 irq_set_chained_handler_and_data(irq->parents[i],
1957 /* Remove all IRQ mappings and delete the domain */
1958 if (!gc->irq.domain_is_allocated_externally && gc->irq.domain) {
1961 for (offset = 0; offset < gc->ngpio; offset++) {
1962 if (!gpiochip_irqchip_irq_valid(gc, offset))
1965 irq = irq_find_mapping(gc->irq.domain, offset);
1966 irq_dispose_mapping(irq);
1969 irq_domain_remove(gc->irq.domain);
1972 if (irqchip && !(irqchip->flags & IRQCHIP_IMMUTABLE)) {
1973 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
1974 irqchip->irq_request_resources = NULL;
1975 irqchip->irq_release_resources = NULL;
1977 if (irqchip->irq_enable == gpiochip_irq_enable) {
1978 irqchip->irq_enable = gc->irq.irq_enable;
1979 irqchip->irq_disable = gc->irq.irq_disable;
1982 gc->irq.irq_enable = NULL;
1983 gc->irq.irq_disable = NULL;
1984 gc->irq.chip = NULL;
1986 gpiochip_irqchip_free_valid_mask(gc);
1990 * gpiochip_irqchip_add_domain() - adds an irqdomain to a gpiochip
1991 * @gc: the gpiochip to add the irqchip to
1992 * @domain: the irqdomain to add to the gpiochip
1994 * This function adds an IRQ domain to the gpiochip.
1996 int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
1997 struct irq_domain *domain)
1999 return gpiochip_irqchip_add_allocated_domain(gc, domain, true);
2001 EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_domain);
2003 #else /* CONFIG_GPIOLIB_IRQCHIP */
2005 static inline int gpiochip_add_irqchip(struct gpio_chip *gc,
2006 struct lock_class_key *lock_key,
2007 struct lock_class_key *request_key)
2011 static void gpiochip_irqchip_remove(struct gpio_chip *gc) {}
2013 static inline int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
2018 static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
2022 static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
2025 #endif /* CONFIG_GPIOLIB_IRQCHIP */
2028 * gpiochip_generic_request() - request the gpio function for a pin
2029 * @gc: the gpiochip owning the GPIO
2030 * @offset: the offset of the GPIO to request for GPIO function
2032 int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset)
2034 #ifdef CONFIG_PINCTRL
2035 if (list_empty(&gc->gpiodev->pin_ranges))
2039 return pinctrl_gpio_request(gc->gpiodev->base + offset);
2041 EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2044 * gpiochip_generic_free() - free the gpio function from a pin
2045 * @gc: the gpiochip to request the gpio function for
2046 * @offset: the offset of the GPIO to free from GPIO function
2048 void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset)
2050 #ifdef CONFIG_PINCTRL
2051 if (list_empty(&gc->gpiodev->pin_ranges))
2055 pinctrl_gpio_free(gc->gpiodev->base + offset);
2057 EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2060 * gpiochip_generic_config() - apply configuration for a pin
2061 * @gc: the gpiochip owning the GPIO
2062 * @offset: the offset of the GPIO to apply the configuration
2063 * @config: the configuration to be applied
2065 int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset,
2066 unsigned long config)
2068 return pinctrl_gpio_set_config(gc->gpiodev->base + offset, config);
2070 EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2072 #ifdef CONFIG_PINCTRL
2075 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
2076 * @gc: the gpiochip to add the range for
2077 * @pctldev: the pin controller to map to
2078 * @gpio_offset: the start offset in the current gpio_chip number space
2079 * @pin_group: name of the pin group inside the pin controller
2081 * Calling this function directly from a DeviceTree-supported
2082 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2083 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2084 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
2086 int gpiochip_add_pingroup_range(struct gpio_chip *gc,
2087 struct pinctrl_dev *pctldev,
2088 unsigned int gpio_offset, const char *pin_group)
2090 struct gpio_pin_range *pin_range;
2091 struct gpio_device *gdev = gc->gpiodev;
2094 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2096 chip_err(gc, "failed to allocate pin ranges\n");
2100 /* Use local offset as range ID */
2101 pin_range->range.id = gpio_offset;
2102 pin_range->range.gc = gc;
2103 pin_range->range.name = gc->label;
2104 pin_range->range.base = gdev->base + gpio_offset;
2105 pin_range->pctldev = pctldev;
2107 ret = pinctrl_get_group_pins(pctldev, pin_group,
2108 &pin_range->range.pins,
2109 &pin_range->range.npins);
2115 pinctrl_add_gpio_range(pctldev, &pin_range->range);
2117 chip_dbg(gc, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2118 gpio_offset, gpio_offset + pin_range->range.npins - 1,
2119 pinctrl_dev_get_devname(pctldev), pin_group);
2121 list_add_tail(&pin_range->node, &gdev->pin_ranges);
2125 EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2128 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
2129 * @gc: the gpiochip to add the range for
2130 * @pinctl_name: the dev_name() of the pin controller to map to
2131 * @gpio_offset: the start offset in the current gpio_chip number space
2132 * @pin_offset: the start offset in the pin controller number space
2133 * @npins: the number of pins from the offset of each pin space (GPIO and
2134 * pin controller) to accumulate in this range
2137 * 0 on success, or a negative error-code on failure.
2139 * Calling this function directly from a DeviceTree-supported
2140 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2141 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2142 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
2144 int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
2145 unsigned int gpio_offset, unsigned int pin_offset,
2148 struct gpio_pin_range *pin_range;
2149 struct gpio_device *gdev = gc->gpiodev;
2152 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2154 chip_err(gc, "failed to allocate pin ranges\n");
2158 /* Use local offset as range ID */
2159 pin_range->range.id = gpio_offset;
2160 pin_range->range.gc = gc;
2161 pin_range->range.name = gc->label;
2162 pin_range->range.base = gdev->base + gpio_offset;
2163 pin_range->range.pin_base = pin_offset;
2164 pin_range->range.npins = npins;
2165 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
2167 if (IS_ERR(pin_range->pctldev)) {
2168 ret = PTR_ERR(pin_range->pctldev);
2169 chip_err(gc, "could not create pin range\n");
2173 chip_dbg(gc, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2174 gpio_offset, gpio_offset + npins - 1,
2176 pin_offset, pin_offset + npins - 1);
2178 list_add_tail(&pin_range->node, &gdev->pin_ranges);
2182 EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
2185 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2186 * @gc: the chip to remove all the mappings for
2188 void gpiochip_remove_pin_ranges(struct gpio_chip *gc)
2190 struct gpio_pin_range *pin_range, *tmp;
2191 struct gpio_device *gdev = gc->gpiodev;
2193 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
2194 list_del(&pin_range->node);
2195 pinctrl_remove_gpio_range(pin_range->pctldev,
2200 EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2202 #endif /* CONFIG_PINCTRL */
2204 /* These "optional" allocation calls help prevent drivers from stomping
2205 * on each other, and help provide better diagnostics in debugfs.
2206 * They're called even less than the "set direction" calls.
2208 static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
2210 struct gpio_chip *gc = desc->gdev->chip;
2212 unsigned long flags;
2216 label = kstrdup_const(label, GFP_KERNEL);
2221 spin_lock_irqsave(&gpio_lock, flags);
2223 /* NOTE: gpio_request() can be called in early boot,
2224 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
2227 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2228 desc_set_label(desc, label ? : "?");
2231 goto out_free_unlock;
2235 /* gc->request may sleep */
2236 spin_unlock_irqrestore(&gpio_lock, flags);
2237 offset = gpio_chip_hwgpio(desc);
2238 if (gpiochip_line_is_valid(gc, offset))
2239 ret = gc->request(gc, offset);
2242 spin_lock_irqsave(&gpio_lock, flags);
2245 desc_set_label(desc, NULL);
2246 clear_bit(FLAG_REQUESTED, &desc->flags);
2247 goto out_free_unlock;
2250 if (gc->get_direction) {
2251 /* gc->get_direction may sleep */
2252 spin_unlock_irqrestore(&gpio_lock, flags);
2253 gpiod_get_direction(desc);
2254 spin_lock_irqsave(&gpio_lock, flags);
2256 spin_unlock_irqrestore(&gpio_lock, flags);
2260 spin_unlock_irqrestore(&gpio_lock, flags);
2266 * This descriptor validation needs to be inserted verbatim into each
2267 * function taking a descriptor, so we need to use a preprocessor
2268 * macro to avoid endless duplication. If the desc is NULL it is an
2269 * optional GPIO and calls should just bail out.
2271 static int validate_desc(const struct gpio_desc *desc, const char *func)
2276 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2277 return PTR_ERR(desc);
2280 pr_warn("%s: invalid GPIO (no device)\n", func);
2283 if (!desc->gdev->chip) {
2284 dev_warn(&desc->gdev->dev,
2285 "%s: backing chip is gone\n", func);
2291 #define VALIDATE_DESC(desc) do { \
2292 int __valid = validate_desc(desc, __func__); \
2297 #define VALIDATE_DESC_VOID(desc) do { \
2298 int __valid = validate_desc(desc, __func__); \
2303 int gpiod_request(struct gpio_desc *desc, const char *label)
2305 int ret = -EPROBE_DEFER;
2307 VALIDATE_DESC(desc);
2309 if (try_module_get(desc->gdev->owner)) {
2310 ret = gpiod_request_commit(desc, label);
2312 module_put(desc->gdev->owner);
2314 gpio_device_get(desc->gdev);
2318 gpiod_dbg(desc, "%s: status %d\n", __func__, ret);
2323 static bool gpiod_free_commit(struct gpio_desc *desc)
2326 unsigned long flags;
2327 struct gpio_chip *gc;
2331 spin_lock_irqsave(&gpio_lock, flags);
2333 gc = desc->gdev->chip;
2334 if (gc && test_bit(FLAG_REQUESTED, &desc->flags)) {
2336 spin_unlock_irqrestore(&gpio_lock, flags);
2337 might_sleep_if(gc->can_sleep);
2338 gc->free(gc, gpio_chip_hwgpio(desc));
2339 spin_lock_irqsave(&gpio_lock, flags);
2341 kfree_const(desc->label);
2342 desc_set_label(desc, NULL);
2343 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
2344 clear_bit(FLAG_REQUESTED, &desc->flags);
2345 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
2346 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
2347 clear_bit(FLAG_PULL_UP, &desc->flags);
2348 clear_bit(FLAG_PULL_DOWN, &desc->flags);
2349 clear_bit(FLAG_BIAS_DISABLE, &desc->flags);
2350 clear_bit(FLAG_EDGE_RISING, &desc->flags);
2351 clear_bit(FLAG_EDGE_FALLING, &desc->flags);
2352 clear_bit(FLAG_IS_HOGGED, &desc->flags);
2353 #ifdef CONFIG_OF_DYNAMIC
2356 #ifdef CONFIG_GPIO_CDEV
2357 WRITE_ONCE(desc->debounce_period_us, 0);
2362 spin_unlock_irqrestore(&gpio_lock, flags);
2363 gpiod_line_state_notify(desc, GPIOLINE_CHANGED_RELEASED);
2368 void gpiod_free(struct gpio_desc *desc)
2371 * We must not use VALIDATE_DESC_VOID() as the underlying gdev->chip
2372 * may already be NULL but we still want to put the references.
2377 if (!gpiod_free_commit(desc))
2378 WARN_ON(extra_checks);
2380 module_put(desc->gdev->owner);
2381 gpio_device_put(desc->gdev);
2385 * gpiochip_is_requested - return string iff signal was requested
2386 * @gc: controller managing the signal
2387 * @offset: of signal within controller's 0..(ngpio - 1) range
2389 * Returns NULL if the GPIO is not currently requested, else a string.
2390 * The string returned is the label passed to gpio_request(); if none has been
2391 * passed it is a meaningless, non-NULL constant.
2393 * This function is for use by GPIO controller drivers. The label can
2394 * help with diagnostics, and knowing that the signal is used as a GPIO
2395 * can help avoid accidentally multiplexing it to another controller.
2397 const char *gpiochip_is_requested(struct gpio_chip *gc, unsigned int offset)
2399 struct gpio_desc *desc;
2401 desc = gpiochip_get_desc(gc, offset);
2405 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
2409 EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2412 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2414 * @hwnum: hardware number of the GPIO for which to request the descriptor
2415 * @label: label for the GPIO
2416 * @lflags: lookup flags for this GPIO or 0 if default, this can be used to
2417 * specify things like line inversion semantics with the machine flags
2418 * such as GPIO_OUT_LOW
2419 * @dflags: descriptor request flags for this GPIO or 0 if default, this
2420 * can be used to specify consumer semantics such as open drain
2422 * Function allows GPIO chip drivers to request and use their own GPIO
2423 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2424 * function will not increase reference count of the GPIO chip module. This
2425 * allows the GPIO chip module to be unloaded as needed (we assume that the
2426 * GPIO chip driver handles freeing the GPIOs it has requested).
2429 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2432 struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc,
2435 enum gpio_lookup_flags lflags,
2436 enum gpiod_flags dflags)
2438 struct gpio_desc *desc = gpiochip_get_desc(gc, hwnum);
2442 chip_err(gc, "failed to get GPIO descriptor\n");
2446 ret = gpiod_request_commit(desc, label);
2448 return ERR_PTR(ret);
2450 ret = gpiod_configure_flags(desc, label, lflags, dflags);
2452 chip_err(gc, "setup of own GPIO %s failed\n", label);
2453 gpiod_free_commit(desc);
2454 return ERR_PTR(ret);
2459 EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
2462 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2463 * @desc: GPIO descriptor to free
2465 * Function frees the given GPIO requested previously with
2466 * gpiochip_request_own_desc().
2468 void gpiochip_free_own_desc(struct gpio_desc *desc)
2471 gpiod_free_commit(desc);
2473 EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
2476 * Drivers MUST set GPIO direction before making get/set calls. In
2477 * some cases this is done in early boot, before IRQs are enabled.
2479 * As a rule these aren't called more than once (except for drivers
2480 * using the open-drain emulation idiom) so these are natural places
2481 * to accumulate extra debugging checks. Note that we can't (yet)
2482 * rely on gpio_request() having been called beforehand.
2485 static int gpio_do_set_config(struct gpio_chip *gc, unsigned int offset,
2486 unsigned long config)
2488 if (!gc->set_config)
2491 return gc->set_config(gc, offset, config);
2494 static int gpio_set_config_with_argument(struct gpio_desc *desc,
2495 enum pin_config_param mode,
2498 struct gpio_chip *gc = desc->gdev->chip;
2499 unsigned long config;
2501 config = pinconf_to_config_packed(mode, argument);
2502 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2505 static int gpio_set_config_with_argument_optional(struct gpio_desc *desc,
2506 enum pin_config_param mode,
2509 struct device *dev = &desc->gdev->dev;
2510 int gpio = gpio_chip_hwgpio(desc);
2513 ret = gpio_set_config_with_argument(desc, mode, argument);
2514 if (ret != -ENOTSUPP)
2518 case PIN_CONFIG_PERSIST_STATE:
2519 dev_dbg(dev, "Persistence not supported for GPIO %d\n", gpio);
2528 static int gpio_set_config(struct gpio_desc *desc, enum pin_config_param mode)
2530 return gpio_set_config_with_argument(desc, mode, 0);
2533 static int gpio_set_bias(struct gpio_desc *desc)
2535 enum pin_config_param bias;
2538 if (test_bit(FLAG_BIAS_DISABLE, &desc->flags))
2539 bias = PIN_CONFIG_BIAS_DISABLE;
2540 else if (test_bit(FLAG_PULL_UP, &desc->flags))
2541 bias = PIN_CONFIG_BIAS_PULL_UP;
2542 else if (test_bit(FLAG_PULL_DOWN, &desc->flags))
2543 bias = PIN_CONFIG_BIAS_PULL_DOWN;
2548 case PIN_CONFIG_BIAS_PULL_DOWN:
2549 case PIN_CONFIG_BIAS_PULL_UP:
2558 return gpio_set_config_with_argument_optional(desc, bias, arg);
2562 * gpio_set_debounce_timeout() - Set debounce timeout
2563 * @desc: GPIO descriptor to set the debounce timeout
2564 * @debounce: Debounce timeout in microseconds
2566 * The function calls the certain GPIO driver to set debounce timeout
2569 * Returns 0 on success, or negative error code otherwise.
2571 int gpio_set_debounce_timeout(struct gpio_desc *desc, unsigned int debounce)
2573 return gpio_set_config_with_argument_optional(desc,
2574 PIN_CONFIG_INPUT_DEBOUNCE,
2579 * gpiod_direction_input - set the GPIO direction to input
2580 * @desc: GPIO to set to input
2582 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2583 * be called safely on it.
2585 * Return 0 in case of success, else an error code.
2587 int gpiod_direction_input(struct gpio_desc *desc)
2589 struct gpio_chip *gc;
2592 VALIDATE_DESC(desc);
2593 gc = desc->gdev->chip;
2596 * It is legal to have no .get() and .direction_input() specified if
2597 * the chip is output-only, but you can't specify .direction_input()
2598 * and not support the .get() operation, that doesn't make sense.
2600 if (!gc->get && gc->direction_input) {
2602 "%s: missing get() but have direction_input()\n",
2608 * If we have a .direction_input() callback, things are simple,
2609 * just call it. Else we are some input-only chip so try to check the
2610 * direction (if .get_direction() is supported) else we silently
2611 * assume we are in input mode after this.
2613 if (gc->direction_input) {
2614 ret = gc->direction_input(gc, gpio_chip_hwgpio(desc));
2615 } else if (gc->get_direction &&
2616 (gc->get_direction(gc, gpio_chip_hwgpio(desc)) != 1)) {
2618 "%s: missing direction_input() operation and line is output\n",
2623 clear_bit(FLAG_IS_OUT, &desc->flags);
2624 ret = gpio_set_bias(desc);
2627 trace_gpio_direction(desc_to_gpio(desc), 1, ret);
2631 EXPORT_SYMBOL_GPL(gpiod_direction_input);
2633 static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
2635 struct gpio_chip *gc = desc->gdev->chip;
2640 * It's OK not to specify .direction_output() if the gpiochip is
2641 * output-only, but if there is then not even a .set() operation it
2642 * is pretty tricky to drive the output line.
2644 if (!gc->set && !gc->direction_output) {
2646 "%s: missing set() and direction_output() operations\n",
2651 if (gc->direction_output) {
2652 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2654 /* Check that we are in output mode if we can */
2655 if (gc->get_direction &&
2656 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2658 "%s: missing direction_output() operation\n",
2663 * If we can't actively set the direction, we are some
2664 * output-only chip, so just drive the output as desired.
2666 gc->set(gc, gpio_chip_hwgpio(desc), val);
2670 set_bit(FLAG_IS_OUT, &desc->flags);
2671 trace_gpio_value(desc_to_gpio(desc), 0, val);
2672 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2677 * gpiod_direction_output_raw - set the GPIO direction to output
2678 * @desc: GPIO to set to output
2679 * @value: initial output value of the GPIO
2681 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2682 * be called safely on it. The initial value of the output must be specified
2683 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2685 * Return 0 in case of success, else an error code.
2687 int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2689 VALIDATE_DESC(desc);
2690 return gpiod_direction_output_raw_commit(desc, value);
2692 EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2695 * gpiod_direction_output - set the GPIO direction to output
2696 * @desc: GPIO to set to output
2697 * @value: initial output value of the GPIO
2699 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2700 * be called safely on it. The initial value of the output must be specified
2701 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2704 * Return 0 in case of success, else an error code.
2706 int gpiod_direction_output(struct gpio_desc *desc, int value)
2710 VALIDATE_DESC(desc);
2711 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2716 /* GPIOs used for enabled IRQs shall not be set as output */
2717 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2718 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
2720 "%s: tried to set a GPIO tied to an IRQ as output\n",
2725 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2726 /* First see if we can enable open drain in hardware */
2727 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_DRAIN);
2729 goto set_output_value;
2730 /* Emulate open drain by not actively driving the line high */
2732 ret = gpiod_direction_input(desc);
2733 goto set_output_flag;
2735 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2736 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_SOURCE);
2738 goto set_output_value;
2739 /* Emulate open source by not actively driving the line low */
2741 ret = gpiod_direction_input(desc);
2742 goto set_output_flag;
2745 gpio_set_config(desc, PIN_CONFIG_DRIVE_PUSH_PULL);
2749 ret = gpio_set_bias(desc);
2752 return gpiod_direction_output_raw_commit(desc, value);
2756 * When emulating open-source or open-drain functionalities by not
2757 * actively driving the line (setting mode to input) we still need to
2758 * set the IS_OUT flag or otherwise we won't be able to set the line
2762 set_bit(FLAG_IS_OUT, &desc->flags);
2765 EXPORT_SYMBOL_GPL(gpiod_direction_output);
2768 * gpiod_enable_hw_timestamp_ns - Enable hardware timestamp in nanoseconds.
2770 * @desc: GPIO to enable.
2771 * @flags: Flags related to GPIO edge.
2773 * Return 0 in case of success, else negative error code.
2775 int gpiod_enable_hw_timestamp_ns(struct gpio_desc *desc, unsigned long flags)
2778 struct gpio_chip *gc;
2780 VALIDATE_DESC(desc);
2782 gc = desc->gdev->chip;
2783 if (!gc->en_hw_timestamp) {
2784 gpiod_warn(desc, "%s: hw ts not supported\n", __func__);
2788 ret = gc->en_hw_timestamp(gc, gpio_chip_hwgpio(desc), flags);
2790 gpiod_warn(desc, "%s: hw ts request failed\n", __func__);
2794 EXPORT_SYMBOL_GPL(gpiod_enable_hw_timestamp_ns);
2797 * gpiod_disable_hw_timestamp_ns - Disable hardware timestamp.
2799 * @desc: GPIO to disable.
2800 * @flags: Flags related to GPIO edge, same value as used during enable call.
2802 * Return 0 in case of success, else negative error code.
2804 int gpiod_disable_hw_timestamp_ns(struct gpio_desc *desc, unsigned long flags)
2807 struct gpio_chip *gc;
2809 VALIDATE_DESC(desc);
2811 gc = desc->gdev->chip;
2812 if (!gc->dis_hw_timestamp) {
2813 gpiod_warn(desc, "%s: hw ts not supported\n", __func__);
2817 ret = gc->dis_hw_timestamp(gc, gpio_chip_hwgpio(desc), flags);
2819 gpiod_warn(desc, "%s: hw ts release failed\n", __func__);
2823 EXPORT_SYMBOL_GPL(gpiod_disable_hw_timestamp_ns);
2826 * gpiod_set_config - sets @config for a GPIO
2827 * @desc: descriptor of the GPIO for which to set the configuration
2828 * @config: Same packed config format as generic pinconf
2831 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2834 int gpiod_set_config(struct gpio_desc *desc, unsigned long config)
2836 struct gpio_chip *gc;
2838 VALIDATE_DESC(desc);
2839 gc = desc->gdev->chip;
2841 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2843 EXPORT_SYMBOL_GPL(gpiod_set_config);
2846 * gpiod_set_debounce - sets @debounce time for a GPIO
2847 * @desc: descriptor of the GPIO for which to set debounce time
2848 * @debounce: debounce time in microseconds
2851 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2854 int gpiod_set_debounce(struct gpio_desc *desc, unsigned int debounce)
2856 unsigned long config;
2858 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2859 return gpiod_set_config(desc, config);
2861 EXPORT_SYMBOL_GPL(gpiod_set_debounce);
2864 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2865 * @desc: descriptor of the GPIO for which to configure persistence
2866 * @transitory: True to lose state on suspend or reset, false for persistence
2869 * 0 on success, otherwise a negative error code.
2871 int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2873 VALIDATE_DESC(desc);
2875 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2876 * persistence state.
2878 assign_bit(FLAG_TRANSITORY, &desc->flags, transitory);
2880 /* If the driver supports it, set the persistence state now */
2881 return gpio_set_config_with_argument_optional(desc,
2882 PIN_CONFIG_PERSIST_STATE,
2887 * gpiod_is_active_low - test whether a GPIO is active-low or not
2888 * @desc: the gpio descriptor to test
2890 * Returns 1 if the GPIO is active-low, 0 otherwise.
2892 int gpiod_is_active_low(const struct gpio_desc *desc)
2894 VALIDATE_DESC(desc);
2895 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
2897 EXPORT_SYMBOL_GPL(gpiod_is_active_low);
2900 * gpiod_toggle_active_low - toggle whether a GPIO is active-low or not
2901 * @desc: the gpio descriptor to change
2903 void gpiod_toggle_active_low(struct gpio_desc *desc)
2905 VALIDATE_DESC_VOID(desc);
2906 change_bit(FLAG_ACTIVE_LOW, &desc->flags);
2908 EXPORT_SYMBOL_GPL(gpiod_toggle_active_low);
2910 static int gpio_chip_get_value(struct gpio_chip *gc, const struct gpio_desc *desc)
2912 return gc->get ? gc->get(gc, gpio_chip_hwgpio(desc)) : -EIO;
2915 /* I/O calls are only valid after configuration completed; the relevant
2916 * "is this a valid GPIO" error checks should already have been done.
2918 * "Get" operations are often inlinable as reading a pin value register,
2919 * and masking the relevant bit in that register.
2921 * When "set" operations are inlinable, they involve writing that mask to
2922 * one register to set a low value, or a different register to set it high.
2923 * Otherwise locking is needed, so there may be little value to inlining.
2925 *------------------------------------------------------------------------
2927 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2928 * have requested the GPIO. That can include implicit requesting by
2929 * a direction setting call. Marking a gpio as requested locks its chip
2930 * in memory, guaranteeing that these table lookups need no more locking
2931 * and that gpiochip_remove() will fail.
2933 * REVISIT when debugging, consider adding some instrumentation to ensure
2934 * that the GPIO was actually requested.
2937 static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
2939 struct gpio_chip *gc;
2942 gc = desc->gdev->chip;
2943 value = gpio_chip_get_value(gc, desc);
2944 value = value < 0 ? value : !!value;
2945 trace_gpio_value(desc_to_gpio(desc), 1, value);
2949 static int gpio_chip_get_multiple(struct gpio_chip *gc,
2950 unsigned long *mask, unsigned long *bits)
2952 if (gc->get_multiple)
2953 return gc->get_multiple(gc, mask, bits);
2957 for_each_set_bit(i, mask, gc->ngpio) {
2958 value = gc->get(gc, i);
2961 __assign_bit(i, bits, value);
2968 int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2969 unsigned int array_size,
2970 struct gpio_desc **desc_array,
2971 struct gpio_array *array_info,
2972 unsigned long *value_bitmap)
2977 * Validate array_info against desc_array and its size.
2978 * It should immediately follow desc_array if both
2979 * have been obtained from the same gpiod_get_array() call.
2981 if (array_info && array_info->desc == desc_array &&
2982 array_size <= array_info->size &&
2983 (void *)array_info == desc_array + array_info->size) {
2985 WARN_ON(array_info->chip->can_sleep);
2987 ret = gpio_chip_get_multiple(array_info->chip,
2988 array_info->get_mask,
2993 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2994 bitmap_xor(value_bitmap, value_bitmap,
2995 array_info->invert_mask, array_size);
2997 i = find_first_zero_bit(array_info->get_mask, array_size);
2998 if (i == array_size)
3004 while (i < array_size) {
3005 struct gpio_chip *gc = desc_array[i]->gdev->chip;
3006 DECLARE_BITMAP(fastpath_mask, FASTPATH_NGPIO);
3007 DECLARE_BITMAP(fastpath_bits, FASTPATH_NGPIO);
3008 unsigned long *mask, *bits;
3011 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
3012 mask = fastpath_mask;
3013 bits = fastpath_bits;
3015 gfp_t flags = can_sleep ? GFP_KERNEL : GFP_ATOMIC;
3017 mask = bitmap_alloc(gc->ngpio, flags);
3021 bits = bitmap_alloc(gc->ngpio, flags);
3028 bitmap_zero(mask, gc->ngpio);
3031 WARN_ON(gc->can_sleep);
3033 /* collect all inputs belonging to the same chip */
3036 const struct gpio_desc *desc = desc_array[i];
3037 int hwgpio = gpio_chip_hwgpio(desc);
3039 __set_bit(hwgpio, mask);
3043 i = find_next_zero_bit(array_info->get_mask,
3045 } while ((i < array_size) &&
3046 (desc_array[i]->gdev->chip == gc));
3048 ret = gpio_chip_get_multiple(gc, mask, bits);
3050 if (mask != fastpath_mask)
3052 if (bits != fastpath_bits)
3057 for (j = first; j < i; ) {
3058 const struct gpio_desc *desc = desc_array[j];
3059 int hwgpio = gpio_chip_hwgpio(desc);
3060 int value = test_bit(hwgpio, bits);
3062 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3064 __assign_bit(j, value_bitmap, value);
3065 trace_gpio_value(desc_to_gpio(desc), 1, value);
3069 j = find_next_zero_bit(array_info->get_mask, i,
3073 if (mask != fastpath_mask)
3075 if (bits != fastpath_bits)
3082 * gpiod_get_raw_value() - return a gpio's raw value
3083 * @desc: gpio whose value will be returned
3085 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
3086 * its ACTIVE_LOW status, or negative errno on failure.
3088 * This function can be called from contexts where we cannot sleep, and will
3089 * complain if the GPIO chip functions potentially sleep.
3091 int gpiod_get_raw_value(const struct gpio_desc *desc)
3093 VALIDATE_DESC(desc);
3094 /* Should be using gpiod_get_raw_value_cansleep() */
3095 WARN_ON(desc->gdev->chip->can_sleep);
3096 return gpiod_get_raw_value_commit(desc);
3098 EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
3101 * gpiod_get_value() - return a gpio's value
3102 * @desc: gpio whose value will be returned
3104 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
3105 * account, or negative errno on failure.
3107 * This function can be called from contexts where we cannot sleep, and will
3108 * complain if the GPIO chip functions potentially sleep.
3110 int gpiod_get_value(const struct gpio_desc *desc)
3114 VALIDATE_DESC(desc);
3115 /* Should be using gpiod_get_value_cansleep() */
3116 WARN_ON(desc->gdev->chip->can_sleep);
3118 value = gpiod_get_raw_value_commit(desc);
3122 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3127 EXPORT_SYMBOL_GPL(gpiod_get_value);
3130 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
3131 * @array_size: number of elements in the descriptor array / value bitmap
3132 * @desc_array: array of GPIO descriptors whose values will be read
3133 * @array_info: information on applicability of fast bitmap processing path
3134 * @value_bitmap: bitmap to store the read values
3136 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3137 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3138 * else an error code.
3140 * This function can be called from contexts where we cannot sleep,
3141 * and it will complain if the GPIO chip functions potentially sleep.
3143 int gpiod_get_raw_array_value(unsigned int array_size,
3144 struct gpio_desc **desc_array,
3145 struct gpio_array *array_info,
3146 unsigned long *value_bitmap)
3150 return gpiod_get_array_value_complex(true, false, array_size,
3151 desc_array, array_info,
3154 EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
3157 * gpiod_get_array_value() - read values from an array of GPIOs
3158 * @array_size: number of elements in the descriptor array / value bitmap
3159 * @desc_array: array of GPIO descriptors whose values will be read
3160 * @array_info: information on applicability of fast bitmap processing path
3161 * @value_bitmap: bitmap to store the read values
3163 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3164 * into account. Return 0 in case of success, else an error code.
3166 * This function can be called from contexts where we cannot sleep,
3167 * and it will complain if the GPIO chip functions potentially sleep.
3169 int gpiod_get_array_value(unsigned int array_size,
3170 struct gpio_desc **desc_array,
3171 struct gpio_array *array_info,
3172 unsigned long *value_bitmap)
3176 return gpiod_get_array_value_complex(false, false, array_size,
3177 desc_array, array_info,
3180 EXPORT_SYMBOL_GPL(gpiod_get_array_value);
3183 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
3184 * @desc: gpio descriptor whose state need to be set.
3185 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
3187 static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
3190 struct gpio_chip *gc = desc->gdev->chip;
3191 int offset = gpio_chip_hwgpio(desc);
3194 ret = gc->direction_input(gc, offset);
3196 ret = gc->direction_output(gc, offset, 0);
3198 set_bit(FLAG_IS_OUT, &desc->flags);
3200 trace_gpio_direction(desc_to_gpio(desc), value, ret);
3203 "%s: Error in set_value for open drain err %d\n",
3208 * _gpio_set_open_source_value() - Set the open source gpio's value.
3209 * @desc: gpio descriptor whose state need to be set.
3210 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
3212 static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
3215 struct gpio_chip *gc = desc->gdev->chip;
3216 int offset = gpio_chip_hwgpio(desc);
3219 ret = gc->direction_output(gc, offset, 1);
3221 set_bit(FLAG_IS_OUT, &desc->flags);
3223 ret = gc->direction_input(gc, offset);
3225 trace_gpio_direction(desc_to_gpio(desc), !value, ret);
3228 "%s: Error in set_value for open source err %d\n",
3232 static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
3234 struct gpio_chip *gc;
3236 gc = desc->gdev->chip;
3237 trace_gpio_value(desc_to_gpio(desc), 0, value);
3238 gc->set(gc, gpio_chip_hwgpio(desc), value);
3242 * set multiple outputs on the same chip;
3243 * use the chip's set_multiple function if available;
3244 * otherwise set the outputs sequentially;
3245 * @chip: the GPIO chip we operate on
3246 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
3247 * defines which outputs are to be changed
3248 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
3249 * defines the values the outputs specified by mask are to be set to
3251 static void gpio_chip_set_multiple(struct gpio_chip *gc,
3252 unsigned long *mask, unsigned long *bits)
3254 if (gc->set_multiple) {
3255 gc->set_multiple(gc, mask, bits);
3259 /* set outputs if the corresponding mask bit is set */
3260 for_each_set_bit(i, mask, gc->ngpio)
3261 gc->set(gc, i, test_bit(i, bits));
3265 int gpiod_set_array_value_complex(bool raw, bool can_sleep,
3266 unsigned int array_size,
3267 struct gpio_desc **desc_array,
3268 struct gpio_array *array_info,
3269 unsigned long *value_bitmap)
3274 * Validate array_info against desc_array and its size.
3275 * It should immediately follow desc_array if both
3276 * have been obtained from the same gpiod_get_array() call.
3278 if (array_info && array_info->desc == desc_array &&
3279 array_size <= array_info->size &&
3280 (void *)array_info == desc_array + array_info->size) {
3282 WARN_ON(array_info->chip->can_sleep);
3284 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
3285 bitmap_xor(value_bitmap, value_bitmap,
3286 array_info->invert_mask, array_size);
3288 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
3291 i = find_first_zero_bit(array_info->set_mask, array_size);
3292 if (i == array_size)
3298 while (i < array_size) {
3299 struct gpio_chip *gc = desc_array[i]->gdev->chip;
3300 DECLARE_BITMAP(fastpath_mask, FASTPATH_NGPIO);
3301 DECLARE_BITMAP(fastpath_bits, FASTPATH_NGPIO);
3302 unsigned long *mask, *bits;
3305 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
3306 mask = fastpath_mask;
3307 bits = fastpath_bits;
3309 gfp_t flags = can_sleep ? GFP_KERNEL : GFP_ATOMIC;
3311 mask = bitmap_alloc(gc->ngpio, flags);
3315 bits = bitmap_alloc(gc->ngpio, flags);
3322 bitmap_zero(mask, gc->ngpio);
3325 WARN_ON(gc->can_sleep);
3328 struct gpio_desc *desc = desc_array[i];
3329 int hwgpio = gpio_chip_hwgpio(desc);
3330 int value = test_bit(i, value_bitmap);
3333 * Pins applicable for fast input but not for
3334 * fast output processing may have been already
3335 * inverted inside the fast path, skip them.
3337 if (!raw && !(array_info &&
3338 test_bit(i, array_info->invert_mask)) &&
3339 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3341 trace_gpio_value(desc_to_gpio(desc), 0, value);
3343 * collect all normal outputs belonging to the same chip
3344 * open drain and open source outputs are set individually
3346 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
3347 gpio_set_open_drain_value_commit(desc, value);
3348 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
3349 gpio_set_open_source_value_commit(desc, value);
3351 __set_bit(hwgpio, mask);
3352 __assign_bit(hwgpio, bits, value);
3358 i = find_next_zero_bit(array_info->set_mask,
3360 } while ((i < array_size) &&
3361 (desc_array[i]->gdev->chip == gc));
3362 /* push collected bits to outputs */
3364 gpio_chip_set_multiple(gc, mask, bits);
3366 if (mask != fastpath_mask)
3368 if (bits != fastpath_bits)
3375 * gpiod_set_raw_value() - assign a gpio's raw value
3376 * @desc: gpio whose value will be assigned
3377 * @value: value to assign
3379 * Set the raw value of the GPIO, i.e. the value of its physical line without
3380 * regard for its ACTIVE_LOW status.
3382 * This function can be called from contexts where we cannot sleep, and will
3383 * complain if the GPIO chip functions potentially sleep.
3385 void gpiod_set_raw_value(struct gpio_desc *desc, int value)
3387 VALIDATE_DESC_VOID(desc);
3388 /* Should be using gpiod_set_raw_value_cansleep() */
3389 WARN_ON(desc->gdev->chip->can_sleep);
3390 gpiod_set_raw_value_commit(desc, value);
3392 EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
3395 * gpiod_set_value_nocheck() - set a GPIO line value without checking
3396 * @desc: the descriptor to set the value on
3397 * @value: value to set
3399 * This sets the value of a GPIO line backing a descriptor, applying
3400 * different semantic quirks like active low and open drain/source
3403 static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3405 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3407 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3408 gpio_set_open_drain_value_commit(desc, value);
3409 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3410 gpio_set_open_source_value_commit(desc, value);
3412 gpiod_set_raw_value_commit(desc, value);
3416 * gpiod_set_value() - assign a gpio's value
3417 * @desc: gpio whose value will be assigned
3418 * @value: value to assign
3420 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3421 * OPEN_DRAIN and OPEN_SOURCE flags into account.
3423 * This function can be called from contexts where we cannot sleep, and will
3424 * complain if the GPIO chip functions potentially sleep.
3426 void gpiod_set_value(struct gpio_desc *desc, int value)
3428 VALIDATE_DESC_VOID(desc);
3429 /* Should be using gpiod_set_value_cansleep() */
3430 WARN_ON(desc->gdev->chip->can_sleep);
3431 gpiod_set_value_nocheck(desc, value);
3433 EXPORT_SYMBOL_GPL(gpiod_set_value);
3436 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
3437 * @array_size: number of elements in the descriptor array / value bitmap
3438 * @desc_array: array of GPIO descriptors whose values will be assigned
3439 * @array_info: information on applicability of fast bitmap processing path
3440 * @value_bitmap: bitmap of values to assign
3442 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3443 * without regard for their ACTIVE_LOW status.
3445 * This function can be called from contexts where we cannot sleep, and will
3446 * complain if the GPIO chip functions potentially sleep.
3448 int gpiod_set_raw_array_value(unsigned int array_size,
3449 struct gpio_desc **desc_array,
3450 struct gpio_array *array_info,
3451 unsigned long *value_bitmap)
3455 return gpiod_set_array_value_complex(true, false, array_size,
3456 desc_array, array_info, value_bitmap);
3458 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
3461 * gpiod_set_array_value() - assign values to an array of GPIOs
3462 * @array_size: number of elements in the descriptor array / value bitmap
3463 * @desc_array: array of GPIO descriptors whose values will be assigned
3464 * @array_info: information on applicability of fast bitmap processing path
3465 * @value_bitmap: bitmap of values to assign
3467 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3470 * This function can be called from contexts where we cannot sleep, and will
3471 * complain if the GPIO chip functions potentially sleep.
3473 int gpiod_set_array_value(unsigned int array_size,
3474 struct gpio_desc **desc_array,
3475 struct gpio_array *array_info,
3476 unsigned long *value_bitmap)
3480 return gpiod_set_array_value_complex(false, false, array_size,
3481 desc_array, array_info,
3484 EXPORT_SYMBOL_GPL(gpiod_set_array_value);
3487 * gpiod_cansleep() - report whether gpio value access may sleep
3488 * @desc: gpio to check
3491 int gpiod_cansleep(const struct gpio_desc *desc)
3493 VALIDATE_DESC(desc);
3494 return desc->gdev->chip->can_sleep;
3496 EXPORT_SYMBOL_GPL(gpiod_cansleep);
3499 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3500 * @desc: gpio to set the consumer name on
3501 * @name: the new consumer name
3503 int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
3505 VALIDATE_DESC(desc);
3507 name = kstrdup_const(name, GFP_KERNEL);
3512 kfree_const(desc->label);
3513 desc_set_label(desc, name);
3517 EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3520 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3521 * @desc: gpio whose IRQ will be returned (already requested)
3523 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3526 int gpiod_to_irq(const struct gpio_desc *desc)
3528 struct gpio_chip *gc;
3532 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3533 * requires this function to not return zero on an invalid descriptor
3534 * but rather a negative error number.
3536 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
3539 gc = desc->gdev->chip;
3540 offset = gpio_chip_hwgpio(desc);
3542 int retirq = gc->to_irq(gc, offset);
3544 /* Zero means NO_IRQ */
3550 #ifdef CONFIG_GPIOLIB_IRQCHIP
3553 * Avoid race condition with other code, which tries to lookup
3554 * an IRQ before the irqchip has been properly registered,
3555 * i.e. while gpiochip is still being brought up.
3557 return -EPROBE_DEFER;
3562 EXPORT_SYMBOL_GPL(gpiod_to_irq);
3565 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
3566 * @gc: the chip the GPIO to lock belongs to
3567 * @offset: the offset of the GPIO to lock as IRQ
3569 * This is used directly by GPIO drivers that want to lock down
3570 * a certain GPIO line to be used for IRQs.
3572 int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset)
3574 struct gpio_desc *desc;
3576 desc = gpiochip_get_desc(gc, offset);
3578 return PTR_ERR(desc);
3581 * If it's fast: flush the direction setting if something changed
3584 if (!gc->can_sleep && gc->get_direction) {
3585 int dir = gpiod_get_direction(desc);
3588 chip_err(gc, "%s: cannot get GPIO direction\n",
3594 /* To be valid for IRQ the line needs to be input or open drain */
3595 if (test_bit(FLAG_IS_OUT, &desc->flags) &&
3596 !test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
3598 "%s: tried to flag a GPIO set as output for IRQ\n",
3603 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
3604 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3607 * If the consumer has not set up a label (such as when the
3608 * IRQ is referenced from .to_irq()) we set up a label here
3609 * so it is clear this is used as an interrupt.
3612 desc_set_label(desc, "interrupt");
3616 EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
3619 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
3620 * @gc: the chip the GPIO to lock belongs to
3621 * @offset: the offset of the GPIO to lock as IRQ
3623 * This is used directly by GPIO drivers that want to indicate
3624 * that a certain GPIO is no longer used exclusively for IRQ.
3626 void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset)
3628 struct gpio_desc *desc;
3630 desc = gpiochip_get_desc(gc, offset);
3634 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
3635 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3637 /* If we only had this marking, erase it */
3638 if (desc->label && !strcmp(desc->label, "interrupt"))
3639 desc_set_label(desc, NULL);
3641 EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
3643 void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset)
3645 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
3647 if (!IS_ERR(desc) &&
3648 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3649 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3651 EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3653 void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset)
3655 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
3657 if (!IS_ERR(desc) &&
3658 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3660 * We must not be output when using IRQ UNLESS we are
3663 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags) &&
3664 !test_bit(FLAG_OPEN_DRAIN, &desc->flags));
3665 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3668 EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3670 bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset)
3672 if (offset >= gc->ngpio)
3675 return test_bit(FLAG_USED_AS_IRQ, &gc->gpiodev->descs[offset].flags);
3677 EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3679 int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset)
3683 if (!try_module_get(gc->gpiodev->owner))
3686 ret = gpiochip_lock_as_irq(gc, offset);
3688 chip_err(gc, "unable to lock HW IRQ %u for IRQ\n", offset);
3689 module_put(gc->gpiodev->owner);
3694 EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3696 void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset)
3698 gpiochip_unlock_as_irq(gc, offset);
3699 module_put(gc->gpiodev->owner);
3701 EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3703 bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset)
3705 if (offset >= gc->ngpio)
3708 return test_bit(FLAG_OPEN_DRAIN, &gc->gpiodev->descs[offset].flags);
3710 EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3712 bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset)
3714 if (offset >= gc->ngpio)
3717 return test_bit(FLAG_OPEN_SOURCE, &gc->gpiodev->descs[offset].flags);
3719 EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3721 bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset)
3723 if (offset >= gc->ngpio)
3726 return !test_bit(FLAG_TRANSITORY, &gc->gpiodev->descs[offset].flags);
3728 EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3731 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3732 * @desc: gpio whose value will be returned
3734 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
3735 * its ACTIVE_LOW status, or negative errno on failure.
3737 * This function is to be called from contexts that can sleep.
3739 int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
3741 might_sleep_if(extra_checks);
3742 VALIDATE_DESC(desc);
3743 return gpiod_get_raw_value_commit(desc);
3745 EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
3748 * gpiod_get_value_cansleep() - return a gpio's value
3749 * @desc: gpio whose value will be returned
3751 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
3752 * account, or negative errno on failure.
3754 * This function is to be called from contexts that can sleep.
3756 int gpiod_get_value_cansleep(const struct gpio_desc *desc)
3760 might_sleep_if(extra_checks);
3761 VALIDATE_DESC(desc);
3762 value = gpiod_get_raw_value_commit(desc);
3766 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3771 EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
3774 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
3775 * @array_size: number of elements in the descriptor array / value bitmap
3776 * @desc_array: array of GPIO descriptors whose values will be read
3777 * @array_info: information on applicability of fast bitmap processing path
3778 * @value_bitmap: bitmap to store the read values
3780 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3781 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3782 * else an error code.
3784 * This function is to be called from contexts that can sleep.
3786 int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3787 struct gpio_desc **desc_array,
3788 struct gpio_array *array_info,
3789 unsigned long *value_bitmap)
3791 might_sleep_if(extra_checks);
3794 return gpiod_get_array_value_complex(true, true, array_size,
3795 desc_array, array_info,
3798 EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3801 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
3802 * @array_size: number of elements in the descriptor array / value bitmap
3803 * @desc_array: array of GPIO descriptors whose values will be read
3804 * @array_info: information on applicability of fast bitmap processing path
3805 * @value_bitmap: bitmap to store the read values
3807 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3808 * into account. Return 0 in case of success, else an error code.
3810 * This function is to be called from contexts that can sleep.
3812 int gpiod_get_array_value_cansleep(unsigned int array_size,
3813 struct gpio_desc **desc_array,
3814 struct gpio_array *array_info,
3815 unsigned long *value_bitmap)
3817 might_sleep_if(extra_checks);
3820 return gpiod_get_array_value_complex(false, true, array_size,
3821 desc_array, array_info,
3824 EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3827 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3828 * @desc: gpio whose value will be assigned
3829 * @value: value to assign
3831 * Set the raw value of the GPIO, i.e. the value of its physical line without
3832 * regard for its ACTIVE_LOW status.
3834 * This function is to be called from contexts that can sleep.
3836 void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
3838 might_sleep_if(extra_checks);
3839 VALIDATE_DESC_VOID(desc);
3840 gpiod_set_raw_value_commit(desc, value);
3842 EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
3845 * gpiod_set_value_cansleep() - assign a gpio's value
3846 * @desc: gpio whose value will be assigned
3847 * @value: value to assign
3849 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3852 * This function is to be called from contexts that can sleep.
3854 void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
3856 might_sleep_if(extra_checks);
3857 VALIDATE_DESC_VOID(desc);
3858 gpiod_set_value_nocheck(desc, value);
3860 EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
3863 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
3864 * @array_size: number of elements in the descriptor array / value bitmap
3865 * @desc_array: array of GPIO descriptors whose values will be assigned
3866 * @array_info: information on applicability of fast bitmap processing path
3867 * @value_bitmap: bitmap of values to assign
3869 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3870 * without regard for their ACTIVE_LOW status.
3872 * This function is to be called from contexts that can sleep.
3874 int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
3875 struct gpio_desc **desc_array,
3876 struct gpio_array *array_info,
3877 unsigned long *value_bitmap)
3879 might_sleep_if(extra_checks);
3882 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
3883 array_info, value_bitmap);
3885 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
3888 * gpiod_add_lookup_tables() - register GPIO device consumers
3889 * @tables: list of tables of consumers to register
3890 * @n: number of tables in the list
3892 void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3896 mutex_lock(&gpio_lookup_lock);
3898 for (i = 0; i < n; i++)
3899 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3901 mutex_unlock(&gpio_lookup_lock);
3905 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
3906 * @array_size: number of elements in the descriptor array / value bitmap
3907 * @desc_array: array of GPIO descriptors whose values will be assigned
3908 * @array_info: information on applicability of fast bitmap processing path
3909 * @value_bitmap: bitmap of values to assign
3911 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3914 * This function is to be called from contexts that can sleep.
3916 int gpiod_set_array_value_cansleep(unsigned int array_size,
3917 struct gpio_desc **desc_array,
3918 struct gpio_array *array_info,
3919 unsigned long *value_bitmap)
3921 might_sleep_if(extra_checks);
3924 return gpiod_set_array_value_complex(false, true, array_size,
3925 desc_array, array_info,
3928 EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
3930 void gpiod_line_state_notify(struct gpio_desc *desc, unsigned long action)
3932 blocking_notifier_call_chain(&desc->gdev->line_state_notifier,
3937 * gpiod_add_lookup_table() - register GPIO device consumers
3938 * @table: table of consumers to register
3940 void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
3942 gpiod_add_lookup_tables(&table, 1);
3944 EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
3947 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3948 * @table: table of consumers to unregister
3950 void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3952 /* Nothing to remove */
3956 mutex_lock(&gpio_lookup_lock);
3958 list_del(&table->list);
3960 mutex_unlock(&gpio_lookup_lock);
3962 EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
3965 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3966 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3968 void gpiod_add_hogs(struct gpiod_hog *hogs)
3970 struct gpiod_hog *hog;
3972 mutex_lock(&gpio_machine_hogs_mutex);
3974 for (hog = &hogs[0]; hog->chip_label; hog++) {
3975 list_add_tail(&hog->list, &gpio_machine_hogs);
3978 * The chip may have been registered earlier, so check if it
3979 * exists and, if so, try to hog the line now.
3981 struct gpio_device *gdev __free(gpio_device_put) =
3982 gpio_device_find_by_label(hog->chip_label);
3984 gpiochip_machine_hog(gpio_device_get_chip(gdev), hog);
3987 mutex_unlock(&gpio_machine_hogs_mutex);
3989 EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3991 void gpiod_remove_hogs(struct gpiod_hog *hogs)
3993 struct gpiod_hog *hog;
3995 mutex_lock(&gpio_machine_hogs_mutex);
3996 for (hog = &hogs[0]; hog->chip_label; hog++)
3997 list_del(&hog->list);
3998 mutex_unlock(&gpio_machine_hogs_mutex);
4000 EXPORT_SYMBOL_GPL(gpiod_remove_hogs);
4002 static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
4004 const char *dev_id = dev ? dev_name(dev) : NULL;
4005 struct gpiod_lookup_table *table;
4007 list_for_each_entry(table, &gpio_lookup_list, list) {
4008 if (table->dev_id && dev_id) {
4010 * Valid strings on both ends, must be identical to have
4013 if (!strcmp(table->dev_id, dev_id))
4017 * One of the pointers is NULL, so both must be to have
4020 if (dev_id == table->dev_id)
4028 static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
4029 unsigned int idx, unsigned long *flags)
4031 struct gpio_desc *desc = ERR_PTR(-ENOENT);
4032 struct gpiod_lookup_table *table;
4033 struct gpiod_lookup *p;
4034 struct gpio_chip *gc;
4036 guard(mutex)(&gpio_lookup_lock);
4038 table = gpiod_find_lookup_table(dev);
4042 for (p = &table->table[0]; p->key; p++) {
4043 /* idx must always match exactly */
4047 /* If the lookup entry has a con_id, require exact match */
4048 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
4051 if (p->chip_hwnum == U16_MAX) {
4052 desc = gpio_name_to_desc(p->key);
4058 dev_warn(dev, "cannot find GPIO line %s, deferring\n",
4060 return ERR_PTR(-EPROBE_DEFER);
4063 struct gpio_device *gdev __free(gpio_device_put) =
4064 gpio_device_find_by_label(p->key);
4067 * As the lookup table indicates a chip with
4068 * p->key should exist, assume it may
4069 * still appear later and let the interested
4070 * consumer be probed again or let the Deferred
4071 * Probe infrastructure handle the error.
4073 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
4075 return ERR_PTR(-EPROBE_DEFER);
4078 gc = gpio_device_get_chip(gdev);
4080 if (gc->ngpio <= p->chip_hwnum) {
4082 "requested GPIO %u (%u) is out of range [0..%u] for chip %s\n",
4083 idx, p->chip_hwnum, gc->ngpio - 1,
4085 return ERR_PTR(-EINVAL);
4088 desc = gpio_device_get_desc(gdev, p->chip_hwnum);
4097 static int platform_gpio_count(struct device *dev, const char *con_id)
4099 struct gpiod_lookup_table *table;
4100 struct gpiod_lookup *p;
4101 unsigned int count = 0;
4103 scoped_guard(mutex, &gpio_lookup_lock) {
4104 table = gpiod_find_lookup_table(dev);
4108 for (p = &table->table[0]; p->key; p++) {
4109 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
4110 (!con_id && !p->con_id))
4121 static struct gpio_desc *gpiod_find_by_fwnode(struct fwnode_handle *fwnode,
4122 struct device *consumer,
4125 enum gpiod_flags *flags,
4126 unsigned long *lookupflags)
4128 struct gpio_desc *desc = ERR_PTR(-ENOENT);
4130 if (is_of_node(fwnode)) {
4131 dev_dbg(consumer, "using DT '%pfw' for '%s' GPIO lookup\n",
4133 desc = of_find_gpio(to_of_node(fwnode), con_id, idx, lookupflags);
4134 } else if (is_acpi_node(fwnode)) {
4135 dev_dbg(consumer, "using ACPI '%pfw' for '%s' GPIO lookup\n",
4137 desc = acpi_find_gpio(fwnode, con_id, idx, flags, lookupflags);
4138 } else if (is_software_node(fwnode)) {
4139 dev_dbg(consumer, "using swnode '%pfw' for '%s' GPIO lookup\n",
4141 desc = swnode_find_gpio(fwnode, con_id, idx, lookupflags);
4147 static struct gpio_desc *gpiod_find_and_request(struct device *consumer,
4148 struct fwnode_handle *fwnode,
4151 enum gpiod_flags flags,
4153 bool platform_lookup_allowed)
4155 unsigned long lookupflags = GPIO_LOOKUP_FLAGS_DEFAULT;
4156 struct gpio_desc *desc;
4159 desc = gpiod_find_by_fwnode(fwnode, consumer, con_id, idx, &flags, &lookupflags);
4160 if (gpiod_not_found(desc) && platform_lookup_allowed) {
4162 * Either we are not using DT or ACPI, or their lookup did not
4163 * return a result. In that case, use platform lookup as a
4166 dev_dbg(consumer, "using lookup tables for GPIO lookup\n");
4167 desc = gpiod_find(consumer, con_id, idx, &lookupflags);
4171 dev_dbg(consumer, "No GPIO consumer %s found\n", con_id);
4176 * If a connection label was passed use that, else attempt to use
4177 * the device name as label
4179 ret = gpiod_request(desc, label);
4181 if (!(ret == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE))
4182 return ERR_PTR(ret);
4185 * This happens when there are several consumers for
4186 * the same GPIO line: we just return here without
4187 * further initialization. It is a bit of a hack.
4188 * This is necessary to support fixed regulators.
4190 * FIXME: Make this more sane and safe.
4193 "nonexclusive access to GPIO for %s\n", con_id);
4197 ret = gpiod_configure_flags(desc, con_id, lookupflags, flags);
4199 dev_dbg(consumer, "setup of GPIO %s failed\n", con_id);
4201 return ERR_PTR(ret);
4204 gpiod_line_state_notify(desc, GPIOLINE_CHANGED_REQUESTED);
4210 * fwnode_gpiod_get_index - obtain a GPIO from firmware node
4211 * @fwnode: handle of the firmware node
4212 * @con_id: function within the GPIO consumer
4213 * @index: index of the GPIO to obtain for the consumer
4214 * @flags: GPIO initialization flags
4215 * @label: label to attach to the requested GPIO
4217 * This function can be used for drivers that get their configuration
4218 * from opaque firmware.
4220 * The function properly finds the corresponding GPIO using whatever is the
4221 * underlying firmware interface and then makes sure that the GPIO
4222 * descriptor is requested before it is returned to the caller.
4225 * On successful request the GPIO pin is configured in accordance with
4228 * In case of error an ERR_PTR() is returned.
4230 struct gpio_desc *fwnode_gpiod_get_index(struct fwnode_handle *fwnode,
4233 enum gpiod_flags flags,
4236 return gpiod_find_and_request(NULL, fwnode, con_id, index, flags, label, false);
4238 EXPORT_SYMBOL_GPL(fwnode_gpiod_get_index);
4241 * gpiod_count - return the number of GPIOs associated with a device / function
4242 * or -ENOENT if no GPIO has been assigned to the requested function
4243 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4244 * @con_id: function within the GPIO consumer
4246 int gpiod_count(struct device *dev, const char *con_id)
4248 const struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
4249 int count = -ENOENT;
4251 if (is_of_node(fwnode))
4252 count = of_gpio_get_count(dev, con_id);
4253 else if (is_acpi_node(fwnode))
4254 count = acpi_gpio_count(dev, con_id);
4255 else if (is_software_node(fwnode))
4256 count = swnode_gpio_count(fwnode, con_id);
4259 count = platform_gpio_count(dev, con_id);
4263 EXPORT_SYMBOL_GPL(gpiod_count);
4266 * gpiod_get - obtain a GPIO for a given GPIO function
4267 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4268 * @con_id: function within the GPIO consumer
4269 * @flags: optional GPIO initialization flags
4271 * Return the GPIO descriptor corresponding to the function con_id of device
4272 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
4273 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
4275 struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
4276 enum gpiod_flags flags)
4278 return gpiod_get_index(dev, con_id, 0, flags);
4280 EXPORT_SYMBOL_GPL(gpiod_get);
4283 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
4284 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4285 * @con_id: function within the GPIO consumer
4286 * @flags: optional GPIO initialization flags
4288 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
4289 * the requested function it will return NULL. This is convenient for drivers
4290 * that need to handle optional GPIOs.
4292 struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
4294 enum gpiod_flags flags)
4296 return gpiod_get_index_optional(dev, con_id, 0, flags);
4298 EXPORT_SYMBOL_GPL(gpiod_get_optional);
4302 * gpiod_configure_flags - helper function to configure a given GPIO
4303 * @desc: gpio whose value will be assigned
4304 * @con_id: function within the GPIO consumer
4305 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4306 * of_find_gpio() or of_get_gpio_hog()
4307 * @dflags: gpiod_flags - optional GPIO initialization flags
4309 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
4310 * requested function and/or index, or another IS_ERR() code if an error
4311 * occurred while trying to acquire the GPIO.
4313 int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
4314 unsigned long lflags, enum gpiod_flags dflags)
4318 if (lflags & GPIO_ACTIVE_LOW)
4319 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
4321 if (lflags & GPIO_OPEN_DRAIN)
4322 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4323 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
4325 * This enforces open drain mode from the consumer side.
4326 * This is necessary for some busses like I2C, but the lookup
4327 * should *REALLY* have specified them as open drain in the
4328 * first place, so print a little warning here.
4330 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4332 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
4335 if (lflags & GPIO_OPEN_SOURCE)
4336 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
4338 if (((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) ||
4339 ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DISABLE)) ||
4340 ((lflags & GPIO_PULL_DOWN) && (lflags & GPIO_PULL_DISABLE))) {
4342 "multiple pull-up, pull-down or pull-disable enabled, invalid configuration\n");
4346 if (lflags & GPIO_PULL_UP)
4347 set_bit(FLAG_PULL_UP, &desc->flags);
4348 else if (lflags & GPIO_PULL_DOWN)
4349 set_bit(FLAG_PULL_DOWN, &desc->flags);
4350 else if (lflags & GPIO_PULL_DISABLE)
4351 set_bit(FLAG_BIAS_DISABLE, &desc->flags);
4353 ret = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
4357 /* No particular flag request, return here... */
4358 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
4359 gpiod_dbg(desc, "no flags found for %s\n", con_id);
4364 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
4365 ret = gpiod_direction_output(desc,
4366 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
4368 ret = gpiod_direction_input(desc);
4374 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
4375 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4376 * @con_id: function within the GPIO consumer
4377 * @idx: index of the GPIO to obtain in the consumer
4378 * @flags: optional GPIO initialization flags
4380 * This variant of gpiod_get() allows to access GPIOs other than the first
4381 * defined one for functions that define several GPIOs.
4383 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
4384 * requested function and/or index, or another IS_ERR() code if an error
4385 * occurred while trying to acquire the GPIO.
4387 struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
4390 enum gpiod_flags flags)
4392 struct fwnode_handle *fwnode = dev ? dev_fwnode(dev) : NULL;
4393 const char *devname = dev ? dev_name(dev) : "?";
4394 const char *label = con_id ?: devname;
4396 return gpiod_find_and_request(dev, fwnode, con_id, idx, flags, label, true);
4398 EXPORT_SYMBOL_GPL(gpiod_get_index);
4401 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
4403 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4404 * @con_id: function within the GPIO consumer
4405 * @index: index of the GPIO to obtain in the consumer
4406 * @flags: optional GPIO initialization flags
4408 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4409 * specified index was assigned to the requested function it will return NULL.
4410 * This is convenient for drivers that need to handle optional GPIOs.
4412 struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
4415 enum gpiod_flags flags)
4417 struct gpio_desc *desc;
4419 desc = gpiod_get_index(dev, con_id, index, flags);
4420 if (gpiod_not_found(desc))
4425 EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4428 * gpiod_hog - Hog the specified GPIO desc given the provided flags
4429 * @desc: gpio whose value will be assigned
4430 * @name: gpio line name
4431 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4432 * of_find_gpio() or of_get_gpio_hog()
4433 * @dflags: gpiod_flags - optional GPIO initialization flags
4435 int gpiod_hog(struct gpio_desc *desc, const char *name,
4436 unsigned long lflags, enum gpiod_flags dflags)
4438 struct gpio_chip *gc;
4439 struct gpio_desc *local_desc;
4443 gc = gpiod_to_chip(desc);
4444 hwnum = gpio_chip_hwgpio(desc);
4446 local_desc = gpiochip_request_own_desc(gc, hwnum, name,
4448 if (IS_ERR(local_desc)) {
4449 ret = PTR_ERR(local_desc);
4450 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
4451 name, gc->label, hwnum, ret);
4455 /* Mark GPIO as hogged so it can be identified and removed later */
4456 set_bit(FLAG_IS_HOGGED, &desc->flags);
4458 gpiod_dbg(desc, "hogged as %s%s\n",
4459 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4460 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ?
4461 (dflags & GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low" : "");
4467 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4468 * @gc: gpio chip to act on
4470 static void gpiochip_free_hogs(struct gpio_chip *gc)
4472 struct gpio_desc *desc;
4474 for_each_gpio_desc_with_flag(gc, desc, FLAG_IS_HOGGED)
4475 gpiochip_free_own_desc(desc);
4479 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4480 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4481 * @con_id: function within the GPIO consumer
4482 * @flags: optional GPIO initialization flags
4484 * This function acquires all the GPIOs defined under a given function.
4486 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4487 * no GPIO has been assigned to the requested function, or another IS_ERR()
4488 * code if an error occurred while trying to acquire the GPIOs.
4490 struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4492 enum gpiod_flags flags)
4494 struct gpio_desc *desc;
4495 struct gpio_descs *descs;
4496 struct gpio_array *array_info = NULL;
4497 struct gpio_chip *gc;
4498 int count, bitmap_size;
4501 count = gpiod_count(dev, con_id);
4503 return ERR_PTR(count);
4505 descs_size = struct_size(descs, desc, count);
4506 descs = kzalloc(descs_size, GFP_KERNEL);
4508 return ERR_PTR(-ENOMEM);
4510 for (descs->ndescs = 0; descs->ndescs < count; descs->ndescs++) {
4511 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4513 gpiod_put_array(descs);
4514 return ERR_CAST(desc);
4517 descs->desc[descs->ndescs] = desc;
4519 gc = gpiod_to_chip(desc);
4521 * If pin hardware number of array member 0 is also 0, select
4522 * its chip as a candidate for fast bitmap processing path.
4524 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
4525 struct gpio_descs *array;
4527 bitmap_size = BITS_TO_LONGS(gc->ngpio > count ?
4530 array = krealloc(descs, descs_size +
4531 struct_size(array_info, invert_mask, 3 * bitmap_size),
4532 GFP_KERNEL | __GFP_ZERO);
4534 gpiod_put_array(descs);
4535 return ERR_PTR(-ENOMEM);
4540 array_info = (void *)descs + descs_size;
4541 array_info->get_mask = array_info->invert_mask +
4543 array_info->set_mask = array_info->get_mask +
4546 array_info->desc = descs->desc;
4547 array_info->size = count;
4548 array_info->chip = gc;
4549 bitmap_set(array_info->get_mask, descs->ndescs,
4550 count - descs->ndescs);
4551 bitmap_set(array_info->set_mask, descs->ndescs,
4552 count - descs->ndescs);
4553 descs->info = array_info;
4556 /* If there is no cache for fast bitmap processing path, continue */
4560 /* Unmark array members which don't belong to the 'fast' chip */
4561 if (array_info->chip != gc) {
4562 __clear_bit(descs->ndescs, array_info->get_mask);
4563 __clear_bit(descs->ndescs, array_info->set_mask);
4566 * Detect array members which belong to the 'fast' chip
4567 * but their pins are not in hardware order.
4569 else if (gpio_chip_hwgpio(desc) != descs->ndescs) {
4571 * Don't use fast path if all array members processed so
4572 * far belong to the same chip as this one but its pin
4573 * hardware number is different from its array index.
4575 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4578 __clear_bit(descs->ndescs,
4579 array_info->get_mask);
4580 __clear_bit(descs->ndescs,
4581 array_info->set_mask);
4584 /* Exclude open drain or open source from fast output */
4585 if (gpiochip_line_is_open_drain(gc, descs->ndescs) ||
4586 gpiochip_line_is_open_source(gc, descs->ndescs))
4587 __clear_bit(descs->ndescs,
4588 array_info->set_mask);
4589 /* Identify 'fast' pins which require invertion */
4590 if (gpiod_is_active_low(desc))
4591 __set_bit(descs->ndescs,
4592 array_info->invert_mask);
4597 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4598 array_info->chip->label, array_info->size,
4599 *array_info->get_mask, *array_info->set_mask,
4600 *array_info->invert_mask);
4603 EXPORT_SYMBOL_GPL(gpiod_get_array);
4606 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4608 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4609 * @con_id: function within the GPIO consumer
4610 * @flags: optional GPIO initialization flags
4612 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4613 * assigned to the requested function it will return NULL.
4615 struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4617 enum gpiod_flags flags)
4619 struct gpio_descs *descs;
4621 descs = gpiod_get_array(dev, con_id, flags);
4622 if (gpiod_not_found(descs))
4627 EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4630 * gpiod_put - dispose of a GPIO descriptor
4631 * @desc: GPIO descriptor to dispose of
4633 * No descriptor can be used after gpiod_put() has been called on it.
4635 void gpiod_put(struct gpio_desc *desc)
4640 EXPORT_SYMBOL_GPL(gpiod_put);
4643 * gpiod_put_array - dispose of multiple GPIO descriptors
4644 * @descs: struct gpio_descs containing an array of descriptors
4646 void gpiod_put_array(struct gpio_descs *descs)
4650 for (i = 0; i < descs->ndescs; i++)
4651 gpiod_put(descs->desc[i]);
4655 EXPORT_SYMBOL_GPL(gpiod_put_array);
4657 static int gpio_stub_drv_probe(struct device *dev)
4660 * The DT node of some GPIO chips have a "compatible" property, but
4661 * never have a struct device added and probed by a driver to register
4662 * the GPIO chip with gpiolib. In such cases, fw_devlink=on will cause
4663 * the consumers of the GPIO chip to get probe deferred forever because
4664 * they will be waiting for a device associated with the GPIO chip
4665 * firmware node to get added and bound to a driver.
4667 * To allow these consumers to probe, we associate the struct
4668 * gpio_device of the GPIO chip with the firmware node and then simply
4669 * bind it to this stub driver.
4674 static struct device_driver gpio_stub_drv = {
4675 .name = "gpio_stub_drv",
4676 .bus = &gpio_bus_type,
4677 .probe = gpio_stub_drv_probe,
4680 static int __init gpiolib_dev_init(void)
4684 /* Register GPIO sysfs bus */
4685 ret = bus_register(&gpio_bus_type);
4687 pr_err("gpiolib: could not register GPIO bus type\n");
4691 ret = driver_register(&gpio_stub_drv);
4693 pr_err("gpiolib: could not register GPIO stub driver\n");
4694 bus_unregister(&gpio_bus_type);
4698 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, GPIOCHIP_NAME);
4700 pr_err("gpiolib: failed to allocate char dev region\n");
4701 driver_unregister(&gpio_stub_drv);
4702 bus_unregister(&gpio_bus_type);
4706 gpiolib_initialized = true;
4707 gpiochip_setup_devs();
4709 #if IS_ENABLED(CONFIG_OF_DYNAMIC) && IS_ENABLED(CONFIG_OF_GPIO)
4710 WARN_ON(of_reconfig_notifier_register(&gpio_of_notifier));
4711 #endif /* CONFIG_OF_DYNAMIC && CONFIG_OF_GPIO */
4715 core_initcall(gpiolib_dev_init);
4717 #ifdef CONFIG_DEBUG_FS
4719 static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
4721 struct gpio_chip *gc = gdev->chip;
4722 struct gpio_desc *desc;
4723 unsigned gpio = gdev->base;
4729 for_each_gpio_desc(gc, desc) {
4730 if (test_bit(FLAG_REQUESTED, &desc->flags)) {
4731 gpiod_get_direction(desc);
4732 is_out = test_bit(FLAG_IS_OUT, &desc->flags);
4733 value = gpio_chip_get_value(gc, desc);
4734 is_irq = test_bit(FLAG_USED_AS_IRQ, &desc->flags);
4735 active_low = test_bit(FLAG_ACTIVE_LOW, &desc->flags);
4736 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s\n",
4737 gpio, desc->name ?: "", desc->label,
4738 is_out ? "out" : "in ",
4739 value >= 0 ? (value ? "hi" : "lo") : "? ",
4740 is_irq ? "IRQ " : "",
4741 active_low ? "ACTIVE LOW" : "");
4742 } else if (desc->name) {
4743 seq_printf(s, " gpio-%-3d (%-20.20s)\n", gpio, desc->name);
4750 static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4752 unsigned long flags;
4753 struct gpio_device *gdev = NULL;
4754 loff_t index = *pos;
4758 spin_lock_irqsave(&gpio_lock, flags);
4759 list_for_each_entry(gdev, &gpio_devices, list)
4761 spin_unlock_irqrestore(&gpio_lock, flags);
4764 spin_unlock_irqrestore(&gpio_lock, flags);
4769 static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4771 unsigned long flags;
4772 struct gpio_device *gdev = v;
4775 spin_lock_irqsave(&gpio_lock, flags);
4776 if (list_is_last(&gdev->list, &gpio_devices))
4779 ret = list_first_entry(&gdev->list, struct gpio_device, list);
4780 spin_unlock_irqrestore(&gpio_lock, flags);
4788 static void gpiolib_seq_stop(struct seq_file *s, void *v)
4792 static int gpiolib_seq_show(struct seq_file *s, void *v)
4794 struct gpio_device *gdev = v;
4795 struct gpio_chip *gc = gdev->chip;
4796 struct device *parent;
4799 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4800 dev_name(&gdev->dev));
4804 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4805 dev_name(&gdev->dev),
4806 gdev->base, gdev->base + gdev->ngpio - 1);
4807 parent = gc->parent;
4809 seq_printf(s, ", parent: %s/%s",
4810 parent->bus ? parent->bus->name : "no-bus",
4813 seq_printf(s, ", %s", gc->label);
4815 seq_printf(s, ", can sleep");
4816 seq_printf(s, ":\n");
4819 gc->dbg_show(s, gc);
4821 gpiolib_dbg_show(s, gdev);
4826 static const struct seq_operations gpiolib_sops = {
4827 .start = gpiolib_seq_start,
4828 .next = gpiolib_seq_next,
4829 .stop = gpiolib_seq_stop,
4830 .show = gpiolib_seq_show,
4832 DEFINE_SEQ_ATTRIBUTE(gpiolib);
4834 static int __init gpiolib_debugfs_init(void)
4836 /* /sys/kernel/debug/gpio */
4837 debugfs_create_file("gpio", 0444, NULL, NULL, &gpiolib_fops);
4840 subsys_initcall(gpiolib_debugfs_init);
4842 #endif /* DEBUG_FS */