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