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