17dc23055755a5045797faafc643ca2a371efb20
[sfrench/cifs-2.6.git] / drivers / gpio / gpiolib.c
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 */
58 static DEFINE_IDA(gpio_ida);
59 static dev_t gpio_devt;
60 #define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
61 static 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  */
74 DEFINE_SPINLOCK(gpio_lock);
75
76 static DEFINE_MUTEX(gpio_lookup_lock);
77 static LIST_HEAD(gpio_lookup_list);
78 LIST_HEAD(gpio_devices);
79
80 static DEFINE_MUTEX(gpio_machine_hogs_mutex);
81 static LIST_HEAD(gpio_machine_hogs);
82
83 static void gpiochip_free_hogs(struct gpio_chip *chip);
84 static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
85                                 struct lock_class_key *lock_key,
86                                 struct lock_class_key *request_key);
87 static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
88 static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
89 static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
90
91 static bool gpiolib_initialized;
92
93 static 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  */
106 struct 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 }
128 EXPORT_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  */
140 struct 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  */
161 int desc_to_gpio(const struct gpio_desc *desc)
162 {
163         return desc->gdev->base + (desc - &desc->gdev->descs[0]);
164 }
165 EXPORT_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  */
172 struct 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 }
178 EXPORT_SYMBOL_GPL(gpiod_to_chip);
179
180 /* dynamic allocation of GPIOs, e.g. on a hotplugged device */
181 static 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  */
212 int 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 }
236 EXPORT_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  */
245 static 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  */
289 static 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  */
323 static 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
349 static 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
363 static 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
384 static 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
392 static void gpiochip_free_valid_mask(struct gpio_chip *gpiochip)
393 {
394         kfree(gpiochip->valid_mask);
395         gpiochip->valid_mask = NULL;
396 }
397
398 bool 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 }
406 EXPORT_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  */
419 struct 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
433 static 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
488 static 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
495 static 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
509 static 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
519 static 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
653 out_put_unused_fd:
654         put_unused_fd(fd);
655 out_free_descs:
656         for (i = 0; i < count; i++)
657                 gpiod_free(lh->descs[i]);
658         kfree(lh->label);
659 out_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  */
684 struct 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
700 static __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
715 static 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
760 static 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
773 static 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
803 static 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
810 static 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
822 static 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
859 static 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
872 static 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
1001 out_put_unused_fd:
1002         put_unused_fd(fd);
1003 out_free_irq:
1004         free_irq(le->irq, le);
1005 out_free_desc:
1006         gpiod_free(le->desc);
1007 out_free_label:
1008         kfree(le->label);
1009 out_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  */
1018 static 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
1101 static 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  */
1114 static 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  */
1134 static 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
1144 static 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
1155 static 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
1166 static 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
1193 err_remove_device:
1194         cdev_device_del(&gdev->chrdev, &gdev->dev);
1195         return status;
1196 }
1197
1198 static 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
1219 static 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
1233 static 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
1246 int 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
1415 err_remove_chip:
1416         acpi_gpiochip_remove(chip);
1417         gpiochip_free_hogs(chip);
1418         of_gpiochip_remove(chip);
1419         gpiochip_free_valid_mask(chip);
1420 err_remove_irqchip_mask:
1421         gpiochip_irqchip_free_valid_mask(chip);
1422 err_remove_from_list:
1423         spin_lock_irqsave(&gpio_lock, flags);
1424         list_del(&gdev->list);
1425         spin_unlock_irqrestore(&gpio_lock, flags);
1426 err_free_label:
1427         kfree_const(gdev->label);
1428 err_free_descs:
1429         kfree(gdev->descs);
1430 err_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 }
1439 EXPORT_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  */
1448 void *gpiochip_get_data(struct gpio_chip *chip)
1449 {
1450         return chip->gpiodev->data;
1451 }
1452 EXPORT_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  */
1460 void 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 }
1505 EXPORT_SYMBOL_GPL(gpiochip_remove);
1506
1507 static 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
1514 static 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  */
1542 int 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 }
1564 EXPORT_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  */
1573 void 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 }
1581 EXPORT_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  */
1594 struct 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 }
1613 EXPORT_SYMBOL_GPL(gpiochip_find);
1614
1615 static 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
1622 static 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
1633 static 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
1645 static 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
1651 bool 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 }
1661 EXPORT_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  * @parent_irq: the irq number corresponding to the parent IRQ for this
1667  * chained irqchip
1668  * @parent_handler: the parent interrupt handler for the accumulated IRQ
1669  * coming out of the gpiochip. If the interrupt is nested rather than
1670  * cascaded, pass NULL in this handler argument
1671  */
1672 static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1673                                           unsigned int parent_irq,
1674                                           irq_flow_handler_t parent_handler)
1675 {
1676         if (!gpiochip->irq.domain) {
1677                 chip_err(gpiochip, "called %s before setting up irqchip\n",
1678                          __func__);
1679                 return;
1680         }
1681
1682         if (parent_handler) {
1683                 if (gpiochip->can_sleep) {
1684                         chip_err(gpiochip,
1685                                  "you cannot have chained interrupts on a chip that may sleep\n");
1686                         return;
1687                 }
1688                 /*
1689                  * The parent irqchip is already using the chip_data for this
1690                  * irqchip, so our callbacks simply use the handler_data.
1691                  */
1692                 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1693                                                  gpiochip);
1694
1695                 gpiochip->irq.parents = &parent_irq;
1696                 gpiochip->irq.num_parents = 1;
1697         }
1698 }
1699
1700 /**
1701  * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1702  * @gpiochip: the gpiochip to set the irqchip chain to
1703  * @irqchip: the irqchip to chain to the gpiochip
1704  * @parent_irq: the irq number corresponding to the parent IRQ for this
1705  * chained irqchip
1706  * @parent_handler: the parent interrupt handler for the accumulated IRQ
1707  * coming out of the gpiochip.
1708  */
1709 void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1710                                   struct irq_chip *irqchip,
1711                                   unsigned int parent_irq,
1712                                   irq_flow_handler_t parent_handler)
1713 {
1714         if (gpiochip->irq.threaded) {
1715                 chip_err(gpiochip, "tried to chain a threaded gpiochip\n");
1716                 return;
1717         }
1718
1719         gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, parent_handler);
1720 }
1721 EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1722
1723 /**
1724  * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1725  * @gpiochip: the gpiochip to set the irqchip nested handler to
1726  * @irqchip: the irqchip to nest to the gpiochip
1727  * @parent_irq: the irq number corresponding to the parent IRQ for this
1728  * nested irqchip
1729  */
1730 void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1731                                  struct irq_chip *irqchip,
1732                                  unsigned int parent_irq)
1733 {
1734         gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, NULL);
1735 }
1736 EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1737
1738 /**
1739  * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1740  * @d: the irqdomain used by this irqchip
1741  * @irq: the global irq number used by this GPIO irqchip irq
1742  * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1743  *
1744  * This function will set up the mapping for a certain IRQ line on a
1745  * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1746  * stored inside the gpiochip.
1747  */
1748 int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1749                      irq_hw_number_t hwirq)
1750 {
1751         struct gpio_chip *chip = d->host_data;
1752         int err = 0;
1753
1754         if (!gpiochip_irqchip_irq_valid(chip, hwirq))
1755                 return -ENXIO;
1756
1757         irq_set_chip_data(irq, chip);
1758         /*
1759          * This lock class tells lockdep that GPIO irqs are in a different
1760          * category than their parents, so it won't report false recursion.
1761          */
1762         irq_set_lockdep_class(irq, chip->irq.lock_key, chip->irq.request_key);
1763         irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler);
1764         /* Chips that use nested thread handlers have them marked */
1765         if (chip->irq.threaded)
1766                 irq_set_nested_thread(irq, 1);
1767         irq_set_noprobe(irq);
1768
1769         if (chip->irq.num_parents == 1)
1770                 err = irq_set_parent(irq, chip->irq.parents[0]);
1771         else if (chip->irq.map)
1772                 err = irq_set_parent(irq, chip->irq.map[hwirq]);
1773
1774         if (err < 0)
1775                 return err;
1776
1777         /*
1778          * No set-up of the hardware will happen if IRQ_TYPE_NONE
1779          * is passed as default type.
1780          */
1781         if (chip->irq.default_type != IRQ_TYPE_NONE)
1782                 irq_set_irq_type(irq, chip->irq.default_type);
1783
1784         return 0;
1785 }
1786 EXPORT_SYMBOL_GPL(gpiochip_irq_map);
1787
1788 void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1789 {
1790         struct gpio_chip *chip = d->host_data;
1791
1792         if (chip->irq.threaded)
1793                 irq_set_nested_thread(irq, 0);
1794         irq_set_chip_and_handler(irq, NULL, NULL);
1795         irq_set_chip_data(irq, NULL);
1796 }
1797 EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
1798
1799 static const struct irq_domain_ops gpiochip_domain_ops = {
1800         .map    = gpiochip_irq_map,
1801         .unmap  = gpiochip_irq_unmap,
1802         /* Virtually all GPIO irqchips are twocell:ed */
1803         .xlate  = irq_domain_xlate_twocell,
1804 };
1805
1806 static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1807 {
1808         if (!gpiochip_irqchip_irq_valid(chip, offset))
1809                 return -ENXIO;
1810
1811         return irq_create_mapping(chip->irq.domain, offset);
1812 }
1813
1814 static int gpiochip_irq_reqres(struct irq_data *d)
1815 {
1816         struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1817
1818         return gpiochip_reqres_irq(chip, d->hwirq);
1819 }
1820
1821 static void gpiochip_irq_relres(struct irq_data *d)
1822 {
1823         struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1824
1825         gpiochip_relres_irq(chip, d->hwirq);
1826 }
1827
1828 static void gpiochip_irq_enable(struct irq_data *d)
1829 {
1830         struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1831
1832         gpiochip_enable_irq(chip, d->hwirq);
1833         if (chip->irq.irq_enable)
1834                 chip->irq.irq_enable(d);
1835         else
1836                 chip->irq.chip->irq_unmask(d);
1837 }
1838
1839 static void gpiochip_irq_disable(struct irq_data *d)
1840 {
1841         struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1842
1843         if (chip->irq.irq_disable)
1844                 chip->irq.irq_disable(d);
1845         else
1846                 chip->irq.chip->irq_mask(d);
1847         gpiochip_disable_irq(chip, d->hwirq);
1848 }
1849
1850 static void gpiochip_set_irq_hooks(struct gpio_chip *gpiochip)
1851 {
1852         struct irq_chip *irqchip = gpiochip->irq.chip;
1853
1854         if (!irqchip->irq_request_resources &&
1855             !irqchip->irq_release_resources) {
1856                 irqchip->irq_request_resources = gpiochip_irq_reqres;
1857                 irqchip->irq_release_resources = gpiochip_irq_relres;
1858         }
1859         if (WARN_ON(gpiochip->irq.irq_enable))
1860                 return;
1861         /* Check if the irqchip already has this hook... */
1862         if (irqchip->irq_enable == gpiochip_irq_enable) {
1863                 /*
1864                  * ...and if so, give a gentle warning that this is bad
1865                  * practice.
1866                  */
1867                 chip_info(gpiochip,
1868                           "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1869                 return;
1870         }
1871         gpiochip->irq.irq_enable = irqchip->irq_enable;
1872         gpiochip->irq.irq_disable = irqchip->irq_disable;
1873         irqchip->irq_enable = gpiochip_irq_enable;
1874         irqchip->irq_disable = gpiochip_irq_disable;
1875 }
1876
1877 /**
1878  * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1879  * @gpiochip: the GPIO chip to add the IRQ chip to
1880  * @lock_key: lockdep class for IRQ lock
1881  * @request_key: lockdep class for IRQ request
1882  */
1883 static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
1884                                 struct lock_class_key *lock_key,
1885                                 struct lock_class_key *request_key)
1886 {
1887         struct irq_chip *irqchip = gpiochip->irq.chip;
1888         const struct irq_domain_ops *ops;
1889         struct device_node *np;
1890         unsigned int type;
1891         unsigned int i;
1892
1893         if (!irqchip)
1894                 return 0;
1895
1896         if (gpiochip->irq.parent_handler && gpiochip->can_sleep) {
1897                 chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n");
1898                 return -EINVAL;
1899         }
1900
1901         np = gpiochip->gpiodev->dev.of_node;
1902         type = gpiochip->irq.default_type;
1903
1904         /*
1905          * Specifying a default trigger is a terrible idea if DT or ACPI is
1906          * used to configure the interrupts, as you may end up with
1907          * conflicting triggers. Tell the user, and reset to NONE.
1908          */
1909         if (WARN(np && type != IRQ_TYPE_NONE,
1910                  "%s: Ignoring %u default trigger\n", np->full_name, type))
1911                 type = IRQ_TYPE_NONE;
1912
1913         if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1914                 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1915                                  "Ignoring %u default trigger\n", type);
1916                 type = IRQ_TYPE_NONE;
1917         }
1918
1919         gpiochip->to_irq = gpiochip_to_irq;
1920         gpiochip->irq.default_type = type;
1921         gpiochip->irq.lock_key = lock_key;
1922         gpiochip->irq.request_key = request_key;
1923
1924         if (gpiochip->irq.domain_ops)
1925                 ops = gpiochip->irq.domain_ops;
1926         else
1927                 ops = &gpiochip_domain_ops;
1928
1929         gpiochip->irq.domain = irq_domain_add_simple(np, gpiochip->ngpio,
1930                                                      gpiochip->irq.first,
1931                                                      ops, gpiochip);
1932         if (!gpiochip->irq.domain)
1933                 return -EINVAL;
1934
1935         if (gpiochip->irq.parent_handler) {
1936                 void *data = gpiochip->irq.parent_handler_data ?: gpiochip;
1937
1938                 for (i = 0; i < gpiochip->irq.num_parents; i++) {
1939                         /*
1940                          * The parent IRQ chip is already using the chip_data
1941                          * for this IRQ chip, so our callbacks simply use the
1942                          * handler_data.
1943                          */
1944                         irq_set_chained_handler_and_data(gpiochip->irq.parents[i],
1945                                                          gpiochip->irq.parent_handler,
1946                                                          data);
1947                 }
1948         }
1949
1950         gpiochip_set_irq_hooks(gpiochip);
1951
1952         acpi_gpiochip_request_interrupts(gpiochip);
1953
1954         return 0;
1955 }
1956
1957 /**
1958  * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1959  * @gpiochip: the gpiochip to remove the irqchip from
1960  *
1961  * This is called only from gpiochip_remove()
1962  */
1963 static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1964 {
1965         struct irq_chip *irqchip = gpiochip->irq.chip;
1966         unsigned int offset;
1967
1968         acpi_gpiochip_free_interrupts(gpiochip);
1969
1970         if (irqchip && gpiochip->irq.parent_handler) {
1971                 struct gpio_irq_chip *irq = &gpiochip->irq;
1972                 unsigned int i;
1973
1974                 for (i = 0; i < irq->num_parents; i++)
1975                         irq_set_chained_handler_and_data(irq->parents[i],
1976                                                          NULL, NULL);
1977         }
1978
1979         /* Remove all IRQ mappings and delete the domain */
1980         if (gpiochip->irq.domain) {
1981                 unsigned int irq;
1982
1983                 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1984                         if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1985                                 continue;
1986
1987                         irq = irq_find_mapping(gpiochip->irq.domain, offset);
1988                         irq_dispose_mapping(irq);
1989                 }
1990
1991                 irq_domain_remove(gpiochip->irq.domain);
1992         }
1993
1994         if (irqchip) {
1995                 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
1996                         irqchip->irq_request_resources = NULL;
1997                         irqchip->irq_release_resources = NULL;
1998                 }
1999                 if (irqchip->irq_enable == gpiochip_irq_enable) {
2000                         irqchip->irq_enable = gpiochip->irq.irq_enable;
2001                         irqchip->irq_disable = gpiochip->irq.irq_disable;
2002                 }
2003         }
2004         gpiochip->irq.irq_enable = NULL;
2005         gpiochip->irq.irq_disable = NULL;
2006         gpiochip->irq.chip = NULL;
2007
2008         gpiochip_irqchip_free_valid_mask(gpiochip);
2009 }
2010
2011 /**
2012  * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
2013  * @gpiochip: the gpiochip to add the irqchip to
2014  * @irqchip: the irqchip to add to the gpiochip
2015  * @first_irq: if not dynamically assigned, the base (first) IRQ to
2016  * allocate gpiochip irqs from
2017  * @handler: the irq handler to use (often a predefined irq core function)
2018  * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
2019  * to have the core avoid setting up any default type in the hardware.
2020  * @threaded: whether this irqchip uses a nested thread handler
2021  * @lock_key: lockdep class for IRQ lock
2022  * @request_key: lockdep class for IRQ request
2023  *
2024  * This function closely associates a certain irqchip with a certain
2025  * gpiochip, providing an irq domain to translate the local IRQs to
2026  * global irqs in the gpiolib core, and making sure that the gpiochip
2027  * is passed as chip data to all related functions. Driver callbacks
2028  * need to use gpiochip_get_data() to get their local state containers back
2029  * from the gpiochip passed as chip data. An irqdomain will be stored
2030  * in the gpiochip that shall be used by the driver to handle IRQ number
2031  * translation. The gpiochip will need to be initialized and registered
2032  * before calling this function.
2033  *
2034  * This function will handle two cell:ed simple IRQs and assumes all
2035  * the pins on the gpiochip can generate a unique IRQ. Everything else
2036  * need to be open coded.
2037  */
2038 int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
2039                              struct irq_chip *irqchip,
2040                              unsigned int first_irq,
2041                              irq_flow_handler_t handler,
2042                              unsigned int type,
2043                              bool threaded,
2044                              struct lock_class_key *lock_key,
2045                              struct lock_class_key *request_key)
2046 {
2047         struct device_node *of_node;
2048
2049         if (!gpiochip || !irqchip)
2050                 return -EINVAL;
2051
2052         if (!gpiochip->parent) {
2053                 pr_err("missing gpiochip .dev parent pointer\n");
2054                 return -EINVAL;
2055         }
2056         gpiochip->irq.threaded = threaded;
2057         of_node = gpiochip->parent->of_node;
2058 #ifdef CONFIG_OF_GPIO
2059         /*
2060          * If the gpiochip has an assigned OF node this takes precedence
2061          * FIXME: get rid of this and use gpiochip->parent->of_node
2062          * everywhere
2063          */
2064         if (gpiochip->of_node)
2065                 of_node = gpiochip->of_node;
2066 #endif
2067         /*
2068          * Specifying a default trigger is a terrible idea if DT or ACPI is
2069          * used to configure the interrupts, as you may end-up with
2070          * conflicting triggers. Tell the user, and reset to NONE.
2071          */
2072         if (WARN(of_node && type != IRQ_TYPE_NONE,
2073                  "%pOF: Ignoring %d default trigger\n", of_node, type))
2074                 type = IRQ_TYPE_NONE;
2075         if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
2076                 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
2077                                  "Ignoring %d default trigger\n", type);
2078                 type = IRQ_TYPE_NONE;
2079         }
2080
2081         gpiochip->irq.chip = irqchip;
2082         gpiochip->irq.handler = handler;
2083         gpiochip->irq.default_type = type;
2084         gpiochip->to_irq = gpiochip_to_irq;
2085         gpiochip->irq.lock_key = lock_key;
2086         gpiochip->irq.request_key = request_key;
2087         gpiochip->irq.domain = irq_domain_add_simple(of_node,
2088                                         gpiochip->ngpio, first_irq,
2089                                         &gpiochip_domain_ops, gpiochip);
2090         if (!gpiochip->irq.domain) {
2091                 gpiochip->irq.chip = NULL;
2092                 return -EINVAL;
2093         }
2094
2095         gpiochip_set_irq_hooks(gpiochip);
2096
2097         acpi_gpiochip_request_interrupts(gpiochip);
2098
2099         return 0;
2100 }
2101 EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
2102
2103 #else /* CONFIG_GPIOLIB_IRQCHIP */
2104
2105 static inline int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
2106                                        struct lock_class_key *lock_key,
2107                                        struct lock_class_key *request_key)
2108 {
2109         return 0;
2110 }
2111
2112 static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
2113 static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
2114 {
2115         return 0;
2116 }
2117 static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
2118 { }
2119
2120 #endif /* CONFIG_GPIOLIB_IRQCHIP */
2121
2122 /**
2123  * gpiochip_generic_request() - request the gpio function for a pin
2124  * @chip: the gpiochip owning the GPIO
2125  * @offset: the offset of the GPIO to request for GPIO function
2126  */
2127 int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
2128 {
2129         return pinctrl_gpio_request(chip->gpiodev->base + offset);
2130 }
2131 EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2132
2133 /**
2134  * gpiochip_generic_free() - free the gpio function from a pin
2135  * @chip: the gpiochip to request the gpio function for
2136  * @offset: the offset of the GPIO to free from GPIO function
2137  */
2138 void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
2139 {
2140         pinctrl_gpio_free(chip->gpiodev->base + offset);
2141 }
2142 EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2143
2144 /**
2145  * gpiochip_generic_config() - apply configuration for a pin
2146  * @chip: the gpiochip owning the GPIO
2147  * @offset: the offset of the GPIO to apply the configuration
2148  * @config: the configuration to be applied
2149  */
2150 int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
2151                             unsigned long config)
2152 {
2153         return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
2154 }
2155 EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2156
2157 #ifdef CONFIG_PINCTRL
2158
2159 /**
2160  * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
2161  * @chip: the gpiochip to add the range for
2162  * @pctldev: the pin controller to map to
2163  * @gpio_offset: the start offset in the current gpio_chip number space
2164  * @pin_group: name of the pin group inside the pin controller
2165  *
2166  * Calling this function directly from a DeviceTree-supported
2167  * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2168  * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2169  * bind pinctrl and gpio drivers via the "gpio-ranges" property.
2170  */
2171 int gpiochip_add_pingroup_range(struct gpio_chip *chip,
2172                         struct pinctrl_dev *pctldev,
2173                         unsigned int gpio_offset, const char *pin_group)
2174 {
2175         struct gpio_pin_range *pin_range;
2176         struct gpio_device *gdev = chip->gpiodev;
2177         int ret;
2178
2179         pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2180         if (!pin_range) {
2181                 chip_err(chip, "failed to allocate pin ranges\n");
2182                 return -ENOMEM;
2183         }
2184
2185         /* Use local offset as range ID */
2186         pin_range->range.id = gpio_offset;
2187         pin_range->range.gc = chip;
2188         pin_range->range.name = chip->label;
2189         pin_range->range.base = gdev->base + gpio_offset;
2190         pin_range->pctldev = pctldev;
2191
2192         ret = pinctrl_get_group_pins(pctldev, pin_group,
2193                                         &pin_range->range.pins,
2194                                         &pin_range->range.npins);
2195         if (ret < 0) {
2196                 kfree(pin_range);
2197                 return ret;
2198         }
2199
2200         pinctrl_add_gpio_range(pctldev, &pin_range->range);
2201
2202         chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2203                  gpio_offset, gpio_offset + pin_range->range.npins - 1,
2204                  pinctrl_dev_get_devname(pctldev), pin_group);
2205
2206         list_add_tail(&pin_range->node, &gdev->pin_ranges);
2207
2208         return 0;
2209 }
2210 EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2211
2212 /**
2213  * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
2214  * @chip: the gpiochip to add the range for
2215  * @pinctl_name: the dev_name() of the pin controller to map to
2216  * @gpio_offset: the start offset in the current gpio_chip number space
2217  * @pin_offset: the start offset in the pin controller number space
2218  * @npins: the number of pins from the offset of each pin space (GPIO and
2219  *      pin controller) to accumulate in this range
2220  *
2221  * Returns:
2222  * 0 on success, or a negative error-code on failure.
2223  *
2224  * Calling this function directly from a DeviceTree-supported
2225  * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2226  * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2227  * bind pinctrl and gpio drivers via the "gpio-ranges" property.
2228  */
2229 int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
2230                            unsigned int gpio_offset, unsigned int pin_offset,
2231                            unsigned int npins)
2232 {
2233         struct gpio_pin_range *pin_range;
2234         struct gpio_device *gdev = chip->gpiodev;
2235         int ret;
2236
2237         pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2238         if (!pin_range) {
2239                 chip_err(chip, "failed to allocate pin ranges\n");
2240                 return -ENOMEM;
2241         }
2242
2243         /* Use local offset as range ID */
2244         pin_range->range.id = gpio_offset;
2245         pin_range->range.gc = chip;
2246         pin_range->range.name = chip->label;
2247         pin_range->range.base = gdev->base + gpio_offset;
2248         pin_range->range.pin_base = pin_offset;
2249         pin_range->range.npins = npins;
2250         pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
2251                         &pin_range->range);
2252         if (IS_ERR(pin_range->pctldev)) {
2253                 ret = PTR_ERR(pin_range->pctldev);
2254                 chip_err(chip, "could not create pin range\n");
2255                 kfree(pin_range);
2256                 return ret;
2257         }
2258         chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2259                  gpio_offset, gpio_offset + npins - 1,
2260                  pinctl_name,
2261                  pin_offset, pin_offset + npins - 1);
2262
2263         list_add_tail(&pin_range->node, &gdev->pin_ranges);
2264
2265         return 0;
2266 }
2267 EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
2268
2269 /**
2270  * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2271  * @chip: the chip to remove all the mappings for
2272  */
2273 void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
2274 {
2275         struct gpio_pin_range *pin_range, *tmp;
2276         struct gpio_device *gdev = chip->gpiodev;
2277
2278         list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
2279                 list_del(&pin_range->node);
2280                 pinctrl_remove_gpio_range(pin_range->pctldev,
2281                                 &pin_range->range);
2282                 kfree(pin_range);
2283         }
2284 }
2285 EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2286
2287 #endif /* CONFIG_PINCTRL */
2288
2289 /* These "optional" allocation calls help prevent drivers from stomping
2290  * on each other, and help provide better diagnostics in debugfs.
2291  * They're called even less than the "set direction" calls.
2292  */
2293 static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
2294 {
2295         struct gpio_chip        *chip = desc->gdev->chip;
2296         int                     status;
2297         unsigned long           flags;
2298         unsigned                offset;
2299
2300         spin_lock_irqsave(&gpio_lock, flags);
2301
2302         /* NOTE:  gpio_request() can be called in early boot,
2303          * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
2304          */
2305
2306         if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2307                 desc_set_label(desc, label ? : "?");
2308                 status = 0;
2309         } else {
2310                 status = -EBUSY;
2311                 goto done;
2312         }
2313
2314         if (chip->request) {
2315                 /* chip->request may sleep */
2316                 spin_unlock_irqrestore(&gpio_lock, flags);
2317                 offset = gpio_chip_hwgpio(desc);
2318                 if (gpiochip_line_is_valid(chip, offset))
2319                         status = chip->request(chip, offset);
2320                 else
2321                         status = -EINVAL;
2322                 spin_lock_irqsave(&gpio_lock, flags);
2323
2324                 if (status < 0) {
2325                         desc_set_label(desc, NULL);
2326                         clear_bit(FLAG_REQUESTED, &desc->flags);
2327                         goto done;
2328                 }
2329         }
2330         if (chip->get_direction) {
2331                 /* chip->get_direction may sleep */
2332                 spin_unlock_irqrestore(&gpio_lock, flags);
2333                 gpiod_get_direction(desc);
2334                 spin_lock_irqsave(&gpio_lock, flags);
2335         }
2336 done:
2337         spin_unlock_irqrestore(&gpio_lock, flags);
2338         return status;
2339 }
2340
2341 /*
2342  * This descriptor validation needs to be inserted verbatim into each
2343  * function taking a descriptor, so we need to use a preprocessor
2344  * macro to avoid endless duplication. If the desc is NULL it is an
2345  * optional GPIO and calls should just bail out.
2346  */
2347 static int validate_desc(const struct gpio_desc *desc, const char *func)
2348 {
2349         if (!desc)
2350                 return 0;
2351         if (IS_ERR(desc)) {
2352                 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2353                 return PTR_ERR(desc);
2354         }
2355         if (!desc->gdev) {
2356                 pr_warn("%s: invalid GPIO (no device)\n", func);
2357                 return -EINVAL;
2358         }
2359         if (!desc->gdev->chip) {
2360                 dev_warn(&desc->gdev->dev,
2361                          "%s: backing chip is gone\n", func);
2362                 return 0;
2363         }
2364         return 1;
2365 }
2366
2367 #define VALIDATE_DESC(desc) do { \
2368         int __valid = validate_desc(desc, __func__); \
2369         if (__valid <= 0) \
2370                 return __valid; \
2371         } while (0)
2372
2373 #define VALIDATE_DESC_VOID(desc) do { \
2374         int __valid = validate_desc(desc, __func__); \
2375         if (__valid <= 0) \
2376                 return; \
2377         } while (0)
2378
2379 int gpiod_request(struct gpio_desc *desc, const char *label)
2380 {
2381         int status = -EPROBE_DEFER;
2382         struct gpio_device *gdev;
2383
2384         VALIDATE_DESC(desc);
2385         gdev = desc->gdev;
2386
2387         if (try_module_get(gdev->owner)) {
2388                 status = gpiod_request_commit(desc, label);
2389                 if (status < 0)
2390                         module_put(gdev->owner);
2391                 else
2392                         get_device(&gdev->dev);
2393         }
2394
2395         if (status)
2396                 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
2397
2398         return status;
2399 }
2400
2401 static bool gpiod_free_commit(struct gpio_desc *desc)
2402 {
2403         bool                    ret = false;
2404         unsigned long           flags;
2405         struct gpio_chip        *chip;
2406
2407         might_sleep();
2408
2409         gpiod_unexport(desc);
2410
2411         spin_lock_irqsave(&gpio_lock, flags);
2412
2413         chip = desc->gdev->chip;
2414         if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2415                 if (chip->free) {
2416                         spin_unlock_irqrestore(&gpio_lock, flags);
2417                         might_sleep_if(chip->can_sleep);
2418                         chip->free(chip, gpio_chip_hwgpio(desc));
2419                         spin_lock_irqsave(&gpio_lock, flags);
2420                 }
2421                 desc_set_label(desc, NULL);
2422                 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
2423                 clear_bit(FLAG_REQUESTED, &desc->flags);
2424                 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
2425                 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
2426                 clear_bit(FLAG_IS_HOGGED, &desc->flags);
2427                 ret = true;
2428         }
2429
2430         spin_unlock_irqrestore(&gpio_lock, flags);
2431         return ret;
2432 }
2433
2434 void gpiod_free(struct gpio_desc *desc)
2435 {
2436         if (desc && desc->gdev && gpiod_free_commit(desc)) {
2437                 module_put(desc->gdev->owner);
2438                 put_device(&desc->gdev->dev);
2439         } else {
2440                 WARN_ON(extra_checks);
2441         }
2442 }
2443
2444 /**
2445  * gpiochip_is_requested - return string iff signal was requested
2446  * @chip: controller managing the signal
2447  * @offset: of signal within controller's 0..(ngpio - 1) range
2448  *
2449  * Returns NULL if the GPIO is not currently requested, else a string.
2450  * The string returned is the label passed to gpio_request(); if none has been
2451  * passed it is a meaningless, non-NULL constant.
2452  *
2453  * This function is for use by GPIO controller drivers.  The label can
2454  * help with diagnostics, and knowing that the signal is used as a GPIO
2455  * can help avoid accidentally multiplexing it to another controller.
2456  */
2457 const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2458 {
2459         struct gpio_desc *desc;
2460
2461         if (offset >= chip->ngpio)
2462                 return NULL;
2463
2464         desc = &chip->gpiodev->descs[offset];
2465
2466         if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
2467                 return NULL;
2468         return desc->label;
2469 }
2470 EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2471
2472 /**
2473  * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2474  * @chip: GPIO chip
2475  * @hwnum: hardware number of the GPIO for which to request the descriptor
2476  * @label: label for the GPIO
2477  *
2478  * Function allows GPIO chip drivers to request and use their own GPIO
2479  * descriptors via gpiolib API. Difference to gpiod_request() is that this
2480  * function will not increase reference count of the GPIO chip module. This
2481  * allows the GPIO chip module to be unloaded as needed (we assume that the
2482  * GPIO chip driver handles freeing the GPIOs it has requested).
2483  *
2484  * Returns:
2485  * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2486  * code on failure.
2487  */
2488 struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2489                                             const char *label)
2490 {
2491         struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2492         int err;
2493
2494         if (IS_ERR(desc)) {
2495                 chip_err(chip, "failed to get GPIO descriptor\n");
2496                 return desc;
2497         }
2498
2499         err = gpiod_request_commit(desc, label);
2500         if (err < 0)
2501                 return ERR_PTR(err);
2502
2503         return desc;
2504 }
2505 EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
2506
2507 /**
2508  * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2509  * @desc: GPIO descriptor to free
2510  *
2511  * Function frees the given GPIO requested previously with
2512  * gpiochip_request_own_desc().
2513  */
2514 void gpiochip_free_own_desc(struct gpio_desc *desc)
2515 {
2516         if (desc)
2517                 gpiod_free_commit(desc);
2518 }
2519 EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
2520
2521 /*
2522  * Drivers MUST set GPIO direction before making get/set calls.  In
2523  * some cases this is done in early boot, before IRQs are enabled.
2524  *
2525  * As a rule these aren't called more than once (except for drivers
2526  * using the open-drain emulation idiom) so these are natural places
2527  * to accumulate extra debugging checks.  Note that we can't (yet)
2528  * rely on gpio_request() having been called beforehand.
2529  */
2530
2531 /**
2532  * gpiod_direction_input - set the GPIO direction to input
2533  * @desc:       GPIO to set to input
2534  *
2535  * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2536  * be called safely on it.
2537  *
2538  * Return 0 in case of success, else an error code.
2539  */
2540 int gpiod_direction_input(struct gpio_desc *desc)
2541 {
2542         struct gpio_chip        *chip;
2543         int                     status = 0;
2544
2545         VALIDATE_DESC(desc);
2546         chip = desc->gdev->chip;
2547
2548         /*
2549          * It is legal to have no .get() and .direction_input() specified if
2550          * the chip is output-only, but you can't specify .direction_input()
2551          * and not support the .get() operation, that doesn't make sense.
2552          */
2553         if (!chip->get && chip->direction_input) {
2554                 gpiod_warn(desc,
2555                            "%s: missing get() but have direction_input()\n",
2556                            __func__);
2557                 return -EIO;
2558         }
2559
2560         /*
2561          * If we have a .direction_input() callback, things are simple,
2562          * just call it. Else we are some input-only chip so try to check the
2563          * direction (if .get_direction() is supported) else we silently
2564          * assume we are in input mode after this.
2565          */
2566         if (chip->direction_input) {
2567                 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
2568         } else if (chip->get_direction &&
2569                   (chip->get_direction(chip, gpio_chip_hwgpio(desc)) != 1)) {
2570                 gpiod_warn(desc,
2571                            "%s: missing direction_input() operation and line is output\n",
2572                            __func__);
2573                 return -EIO;
2574         }
2575         if (status == 0)
2576                 clear_bit(FLAG_IS_OUT, &desc->flags);
2577
2578         trace_gpio_direction(desc_to_gpio(desc), 1, status);
2579
2580         return status;
2581 }
2582 EXPORT_SYMBOL_GPL(gpiod_direction_input);
2583
2584 static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2585                                        enum pin_config_param mode)
2586 {
2587         unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2588
2589         return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2590 }
2591
2592 static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
2593 {
2594         struct gpio_chip *gc = desc->gdev->chip;
2595         int val = !!value;
2596         int ret = 0;
2597
2598         /*
2599          * It's OK not to specify .direction_output() if the gpiochip is
2600          * output-only, but if there is then not even a .set() operation it
2601          * is pretty tricky to drive the output line.
2602          */
2603         if (!gc->set && !gc->direction_output) {
2604                 gpiod_warn(desc,
2605                            "%s: missing set() and direction_output() operations\n",
2606                            __func__);
2607                 return -EIO;
2608         }
2609
2610         if (gc->direction_output) {
2611                 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2612         } else {
2613                 /* Check that we are in output mode if we can */
2614                 if (gc->get_direction &&
2615                     gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2616                         gpiod_warn(desc,
2617                                 "%s: missing direction_output() operation\n",
2618                                 __func__);
2619                         return -EIO;
2620                 }
2621                 /*
2622                  * If we can't actively set the direction, we are some
2623                  * output-only chip, so just drive the output as desired.
2624                  */
2625                 gc->set(gc, gpio_chip_hwgpio(desc), val);
2626         }
2627
2628         if (!ret)
2629                 set_bit(FLAG_IS_OUT, &desc->flags);
2630         trace_gpio_value(desc_to_gpio(desc), 0, val);
2631         trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2632         return ret;
2633 }
2634
2635 /**
2636  * gpiod_direction_output_raw - set the GPIO direction to output
2637  * @desc:       GPIO to set to output
2638  * @value:      initial output value of the GPIO
2639  *
2640  * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2641  * be called safely on it. The initial value of the output must be specified
2642  * as raw value on the physical line without regard for the ACTIVE_LOW status.
2643  *
2644  * Return 0 in case of success, else an error code.
2645  */
2646 int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2647 {
2648         VALIDATE_DESC(desc);
2649         return gpiod_direction_output_raw_commit(desc, value);
2650 }
2651 EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2652
2653 /**
2654  * gpiod_direction_output - set the GPIO direction to output
2655  * @desc:       GPIO to set to output
2656  * @value:      initial output value of the GPIO
2657  *
2658  * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2659  * be called safely on it. The initial value of the output must be specified
2660  * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2661  * account.
2662  *
2663  * Return 0 in case of success, else an error code.
2664  */
2665 int gpiod_direction_output(struct gpio_desc *desc, int value)
2666 {
2667         struct gpio_chip *gc;
2668         int ret;
2669
2670         VALIDATE_DESC(desc);
2671         if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2672                 value = !value;
2673         else
2674                 value = !!value;
2675
2676         /* GPIOs used for enabled IRQs shall not be set as output */
2677         if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2678             test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
2679                 gpiod_err(desc,
2680                           "%s: tried to set a GPIO tied to an IRQ as output\n",
2681                           __func__);
2682                 return -EIO;
2683         }
2684
2685         gc = desc->gdev->chip;
2686         if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2687                 /* First see if we can enable open drain in hardware */
2688                 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2689                                                   PIN_CONFIG_DRIVE_OPEN_DRAIN);
2690                 if (!ret)
2691                         goto set_output_value;
2692                 /* Emulate open drain by not actively driving the line high */
2693                 if (value)
2694                         return gpiod_direction_input(desc);
2695         }
2696         else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2697                 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2698                                                   PIN_CONFIG_DRIVE_OPEN_SOURCE);
2699                 if (!ret)
2700                         goto set_output_value;
2701                 /* Emulate open source by not actively driving the line low */
2702                 if (!value)
2703                         return gpiod_direction_input(desc);
2704         } else {
2705                 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2706                                             PIN_CONFIG_DRIVE_PUSH_PULL);
2707         }
2708
2709 set_output_value:
2710         return gpiod_direction_output_raw_commit(desc, value);
2711 }
2712 EXPORT_SYMBOL_GPL(gpiod_direction_output);
2713
2714 /**
2715  * gpiod_set_debounce - sets @debounce time for a GPIO
2716  * @desc: descriptor of the GPIO for which to set debounce time
2717  * @debounce: debounce time in microseconds
2718  *
2719  * Returns:
2720  * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2721  * debounce time.
2722  */
2723 int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
2724 {
2725         struct gpio_chip        *chip;
2726         unsigned long           config;
2727
2728         VALIDATE_DESC(desc);
2729         chip = desc->gdev->chip;
2730         if (!chip->set || !chip->set_config) {
2731                 gpiod_dbg(desc,
2732                           "%s: missing set() or set_config() operations\n",
2733                           __func__);
2734                 return -ENOTSUPP;
2735         }
2736
2737         config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2738         return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
2739 }
2740 EXPORT_SYMBOL_GPL(gpiod_set_debounce);
2741
2742 /**
2743  * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2744  * @desc: descriptor of the GPIO for which to configure persistence
2745  * @transitory: True to lose state on suspend or reset, false for persistence
2746  *
2747  * Returns:
2748  * 0 on success, otherwise a negative error code.
2749  */
2750 int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2751 {
2752         struct gpio_chip *chip;
2753         unsigned long packed;
2754         int gpio;
2755         int rc;
2756
2757         VALIDATE_DESC(desc);
2758         /*
2759          * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2760          * persistence state.
2761          */
2762         if (transitory)
2763                 set_bit(FLAG_TRANSITORY, &desc->flags);
2764         else
2765                 clear_bit(FLAG_TRANSITORY, &desc->flags);
2766
2767         /* If the driver supports it, set the persistence state now */
2768         chip = desc->gdev->chip;
2769         if (!chip->set_config)
2770                 return 0;
2771
2772         packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE,
2773                                           !transitory);
2774         gpio = gpio_chip_hwgpio(desc);
2775         rc = chip->set_config(chip, gpio, packed);
2776         if (rc == -ENOTSUPP) {
2777                 dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n",
2778                                 gpio);
2779                 return 0;
2780         }
2781
2782         return rc;
2783 }
2784 EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2785
2786 /**
2787  * gpiod_is_active_low - test whether a GPIO is active-low or not
2788  * @desc: the gpio descriptor to test
2789  *
2790  * Returns 1 if the GPIO is active-low, 0 otherwise.
2791  */
2792 int gpiod_is_active_low(const struct gpio_desc *desc)
2793 {
2794         VALIDATE_DESC(desc);
2795         return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
2796 }
2797 EXPORT_SYMBOL_GPL(gpiod_is_active_low);
2798
2799 /* I/O calls are only valid after configuration completed; the relevant
2800  * "is this a valid GPIO" error checks should already have been done.
2801  *
2802  * "Get" operations are often inlinable as reading a pin value register,
2803  * and masking the relevant bit in that register.
2804  *
2805  * When "set" operations are inlinable, they involve writing that mask to
2806  * one register to set a low value, or a different register to set it high.
2807  * Otherwise locking is needed, so there may be little value to inlining.
2808  *
2809  *------------------------------------------------------------------------
2810  *
2811  * IMPORTANT!!!  The hot paths -- get/set value -- assume that callers
2812  * have requested the GPIO.  That can include implicit requesting by
2813  * a direction setting call.  Marking a gpio as requested locks its chip
2814  * in memory, guaranteeing that these table lookups need no more locking
2815  * and that gpiochip_remove() will fail.
2816  *
2817  * REVISIT when debugging, consider adding some instrumentation to ensure
2818  * that the GPIO was actually requested.
2819  */
2820
2821 static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
2822 {
2823         struct gpio_chip        *chip;
2824         int offset;
2825         int value;
2826
2827         chip = desc->gdev->chip;
2828         offset = gpio_chip_hwgpio(desc);
2829         value = chip->get ? chip->get(chip, offset) : -EIO;
2830         value = value < 0 ? value : !!value;
2831         trace_gpio_value(desc_to_gpio(desc), 1, value);
2832         return value;
2833 }
2834
2835 static int gpio_chip_get_multiple(struct gpio_chip *chip,
2836                                   unsigned long *mask, unsigned long *bits)
2837 {
2838         if (chip->get_multiple) {
2839                 return chip->get_multiple(chip, mask, bits);
2840         } else if (chip->get) {
2841                 int i, value;
2842
2843                 for_each_set_bit(i, mask, chip->ngpio) {
2844                         value = chip->get(chip, i);
2845                         if (value < 0)
2846                                 return value;
2847                         __assign_bit(i, bits, value);
2848                 }
2849                 return 0;
2850         }
2851         return -EIO;
2852 }
2853
2854 int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2855                                   unsigned int array_size,
2856                                   struct gpio_desc **desc_array,
2857                                   struct gpio_array *array_info,
2858                                   unsigned long *value_bitmap)
2859 {
2860         int err, i = 0;
2861
2862         /*
2863          * Validate array_info against desc_array and its size.
2864          * It should immediately follow desc_array if both
2865          * have been obtained from the same gpiod_get_array() call.
2866          */
2867         if (array_info && array_info->desc == desc_array &&
2868             array_size <= array_info->size &&
2869             (void *)array_info == desc_array + array_info->size) {
2870                 if (!can_sleep)
2871                         WARN_ON(array_info->chip->can_sleep);
2872
2873                 err = gpio_chip_get_multiple(array_info->chip,
2874                                              array_info->get_mask,
2875                                              value_bitmap);
2876                 if (err)
2877                         return err;
2878
2879                 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2880                         bitmap_xor(value_bitmap, value_bitmap,
2881                                    array_info->invert_mask, array_size);
2882
2883                 if (bitmap_full(array_info->get_mask, array_size))
2884                         return 0;
2885
2886                 i = find_first_zero_bit(array_info->get_mask, array_size);
2887         } else {
2888                 array_info = NULL;
2889         }
2890
2891         while (i < array_size) {
2892                 struct gpio_chip *chip = desc_array[i]->gdev->chip;
2893                 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
2894                 unsigned long *mask, *bits;
2895                 int first, j, ret;
2896
2897                 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
2898                         mask = fastpath;
2899                 } else {
2900                         mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
2901                                            sizeof(*mask),
2902                                            can_sleep ? GFP_KERNEL : GFP_ATOMIC);
2903                         if (!mask)
2904                                 return -ENOMEM;
2905                 }
2906
2907                 bits = mask + BITS_TO_LONGS(chip->ngpio);
2908                 bitmap_zero(mask, chip->ngpio);
2909
2910                 if (!can_sleep)
2911                         WARN_ON(chip->can_sleep);
2912
2913                 /* collect all inputs belonging to the same chip */
2914                 first = i;
2915                 do {
2916                         const struct gpio_desc *desc = desc_array[i];
2917                         int hwgpio = gpio_chip_hwgpio(desc);
2918
2919                         __set_bit(hwgpio, mask);
2920                         i++;
2921
2922                         if (array_info)
2923                                 i = find_next_zero_bit(array_info->get_mask,
2924                                                        array_size, i);
2925                 } while ((i < array_size) &&
2926                          (desc_array[i]->gdev->chip == chip));
2927
2928                 ret = gpio_chip_get_multiple(chip, mask, bits);
2929                 if (ret) {
2930                         if (mask != fastpath)
2931                                 kfree(mask);
2932                         return ret;
2933                 }
2934
2935                 for (j = first; j < i; ) {
2936                         const struct gpio_desc *desc = desc_array[j];
2937                         int hwgpio = gpio_chip_hwgpio(desc);
2938                         int value = test_bit(hwgpio, bits);
2939
2940                         if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2941                                 value = !value;
2942                         __assign_bit(j, value_bitmap, value);
2943                         trace_gpio_value(desc_to_gpio(desc), 1, value);
2944                         j++;
2945
2946                         if (array_info)
2947                                 j = find_next_zero_bit(array_info->get_mask, i,
2948                                                        j);
2949                 }
2950
2951                 if (mask != fastpath)
2952                         kfree(mask);
2953         }
2954         return 0;
2955 }
2956
2957 /**
2958  * gpiod_get_raw_value() - return a gpio's raw value
2959  * @desc: gpio whose value will be returned
2960  *
2961  * Return the GPIO's raw value, i.e. the value of the physical line disregarding
2962  * its ACTIVE_LOW status, or negative errno on failure.
2963  *
2964  * This function should be called from contexts where we cannot sleep, and will
2965  * complain if the GPIO chip functions potentially sleep.
2966  */
2967 int gpiod_get_raw_value(const struct gpio_desc *desc)
2968 {
2969         VALIDATE_DESC(desc);
2970         /* Should be using gpio_get_value_cansleep() */
2971         WARN_ON(desc->gdev->chip->can_sleep);
2972         return gpiod_get_raw_value_commit(desc);
2973 }
2974 EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
2975
2976 /**
2977  * gpiod_get_value() - return a gpio's value
2978  * @desc: gpio whose value will be returned
2979  *
2980  * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
2981  * account, or negative errno on failure.
2982  *
2983  * This function should be called from contexts where we cannot sleep, and will
2984  * complain if the GPIO chip functions potentially sleep.
2985  */
2986 int gpiod_get_value(const struct gpio_desc *desc)
2987 {
2988         int value;
2989
2990         VALIDATE_DESC(desc);
2991         /* Should be using gpio_get_value_cansleep() */
2992         WARN_ON(desc->gdev->chip->can_sleep);
2993
2994         value = gpiod_get_raw_value_commit(desc);
2995         if (value < 0)
2996                 return value;
2997
2998         if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2999                 value = !value;
3000
3001         return value;
3002 }
3003 EXPORT_SYMBOL_GPL(gpiod_get_value);
3004
3005 /**
3006  * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
3007  * @array_size: number of elements in the descriptor array / value bitmap
3008  * @desc_array: array of GPIO descriptors whose values will be read
3009  * @array_info: information on applicability of fast bitmap processing path
3010  * @value_bitmap: bitmap to store the read values
3011  *
3012  * Read the raw values of the GPIOs, i.e. the values of the physical lines
3013  * without regard for their ACTIVE_LOW status.  Return 0 in case of success,
3014  * else an error code.
3015  *
3016  * This function should be called from contexts where we cannot sleep,
3017  * and it will complain if the GPIO chip functions potentially sleep.
3018  */
3019 int gpiod_get_raw_array_value(unsigned int array_size,
3020                               struct gpio_desc **desc_array,
3021                               struct gpio_array *array_info,
3022                               unsigned long *value_bitmap)
3023 {
3024         if (!desc_array)
3025                 return -EINVAL;
3026         return gpiod_get_array_value_complex(true, false, array_size,
3027                                              desc_array, array_info,
3028                                              value_bitmap);
3029 }
3030 EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
3031
3032 /**
3033  * gpiod_get_array_value() - read values from an array of GPIOs
3034  * @array_size: number of elements in the descriptor array / value bitmap
3035  * @desc_array: array of GPIO descriptors whose values will be read
3036  * @array_info: information on applicability of fast bitmap processing path
3037  * @value_bitmap: bitmap to store the read values
3038  *
3039  * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3040  * into account.  Return 0 in case of success, else an error code.
3041  *
3042  * This function should be called from contexts where we cannot sleep,
3043  * and it will complain if the GPIO chip functions potentially sleep.
3044  */
3045 int gpiod_get_array_value(unsigned int array_size,
3046                           struct gpio_desc **desc_array,
3047                           struct gpio_array *array_info,
3048                           unsigned long *value_bitmap)
3049 {
3050         if (!desc_array)
3051                 return -EINVAL;
3052         return gpiod_get_array_value_complex(false, false, array_size,
3053                                              desc_array, array_info,
3054                                              value_bitmap);
3055 }
3056 EXPORT_SYMBOL_GPL(gpiod_get_array_value);
3057
3058 /*
3059  *  gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
3060  * @desc: gpio descriptor whose state need to be set.
3061  * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
3062  */
3063 static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
3064 {
3065         int err = 0;
3066         struct gpio_chip *chip = desc->gdev->chip;
3067         int offset = gpio_chip_hwgpio(desc);
3068
3069         if (value) {
3070                 err = chip->direction_input(chip, offset);
3071                 if (!err)
3072                         clear_bit(FLAG_IS_OUT, &desc->flags);
3073         } else {
3074                 err = chip->direction_output(chip, offset, 0);
3075                 if (!err)
3076                         set_bit(FLAG_IS_OUT, &desc->flags);
3077         }
3078         trace_gpio_direction(desc_to_gpio(desc), value, err);
3079         if (err < 0)
3080                 gpiod_err(desc,
3081                           "%s: Error in set_value for open drain err %d\n",
3082                           __func__, err);
3083 }
3084
3085 /*
3086  *  _gpio_set_open_source_value() - Set the open source gpio's value.
3087  * @desc: gpio descriptor whose state need to be set.
3088  * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
3089  */
3090 static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
3091 {
3092         int err = 0;
3093         struct gpio_chip *chip = desc->gdev->chip;
3094         int offset = gpio_chip_hwgpio(desc);
3095
3096         if (value) {
3097                 err = chip->direction_output(chip, offset, 1);
3098                 if (!err)
3099                         set_bit(FLAG_IS_OUT, &desc->flags);
3100         } else {
3101                 err = chip->direction_input(chip, offset);
3102                 if (!err)
3103                         clear_bit(FLAG_IS_OUT, &desc->flags);
3104         }
3105         trace_gpio_direction(desc_to_gpio(desc), !value, err);
3106         if (err < 0)
3107                 gpiod_err(desc,
3108                           "%s: Error in set_value for open source err %d\n",
3109                           __func__, err);
3110 }
3111
3112 static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
3113 {
3114         struct gpio_chip        *chip;
3115
3116         chip = desc->gdev->chip;
3117         trace_gpio_value(desc_to_gpio(desc), 0, value);
3118         chip->set(chip, gpio_chip_hwgpio(desc), value);
3119 }
3120
3121 /*
3122  * set multiple outputs on the same chip;
3123  * use the chip's set_multiple function if available;
3124  * otherwise set the outputs sequentially;
3125  * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
3126  *        defines which outputs are to be changed
3127  * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
3128  *        defines the values the outputs specified by mask are to be set to
3129  */
3130 static void gpio_chip_set_multiple(struct gpio_chip *chip,
3131                                    unsigned long *mask, unsigned long *bits)
3132 {
3133         if (chip->set_multiple) {
3134                 chip->set_multiple(chip, mask, bits);
3135         } else {
3136                 unsigned int i;
3137
3138                 /* set outputs if the corresponding mask bit is set */
3139                 for_each_set_bit(i, mask, chip->ngpio)
3140                         chip->set(chip, i, test_bit(i, bits));
3141         }
3142 }
3143
3144 int gpiod_set_array_value_complex(bool raw, bool can_sleep,
3145                                   unsigned int array_size,
3146                                   struct gpio_desc **desc_array,
3147                                   struct gpio_array *array_info,
3148                                   unsigned long *value_bitmap)
3149 {
3150         int i = 0;
3151
3152         /*
3153          * Validate array_info against desc_array and its size.
3154          * It should immediately follow desc_array if both
3155          * have been obtained from the same gpiod_get_array() call.
3156          */
3157         if (array_info && array_info->desc == desc_array &&
3158             array_size <= array_info->size &&
3159             (void *)array_info == desc_array + array_info->size) {
3160                 if (!can_sleep)
3161                         WARN_ON(array_info->chip->can_sleep);
3162
3163                 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
3164                         bitmap_xor(value_bitmap, value_bitmap,
3165                                    array_info->invert_mask, array_size);
3166
3167                 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
3168                                        value_bitmap);
3169
3170                 if (bitmap_full(array_info->set_mask, array_size))
3171                         return 0;
3172
3173                 i = find_first_zero_bit(array_info->set_mask, array_size);
3174         } else {
3175                 array_info = NULL;
3176         }
3177
3178         while (i < array_size) {
3179                 struct gpio_chip *chip = desc_array[i]->gdev->chip;
3180                 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
3181                 unsigned long *mask, *bits;
3182                 int count = 0;
3183
3184                 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
3185                         mask = fastpath;
3186                 } else {
3187                         mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
3188                                            sizeof(*mask),
3189                                            can_sleep ? GFP_KERNEL : GFP_ATOMIC);
3190                         if (!mask)
3191                                 return -ENOMEM;
3192                 }
3193
3194                 bits = mask + BITS_TO_LONGS(chip->ngpio);
3195                 bitmap_zero(mask, chip->ngpio);
3196
3197                 if (!can_sleep)
3198                         WARN_ON(chip->can_sleep);
3199
3200                 do {
3201                         struct gpio_desc *desc = desc_array[i];
3202                         int hwgpio = gpio_chip_hwgpio(desc);
3203                         int value = test_bit(i, value_bitmap);
3204
3205                         /*
3206                          * Pins applicable for fast input but not for
3207                          * fast output processing may have been already
3208                          * inverted inside the fast path, skip them.
3209                          */
3210                         if (!raw && !(array_info &&
3211                             test_bit(i, array_info->invert_mask)) &&
3212                             test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3213                                 value = !value;
3214                         trace_gpio_value(desc_to_gpio(desc), 0, value);
3215                         /*
3216                          * collect all normal outputs belonging to the same chip
3217                          * open drain and open source outputs are set individually
3218                          */
3219                         if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
3220                                 gpio_set_open_drain_value_commit(desc, value);
3221                         } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
3222                                 gpio_set_open_source_value_commit(desc, value);
3223                         } else {
3224                                 __set_bit(hwgpio, mask);
3225                                 if (value)
3226                                         __set_bit(hwgpio, bits);
3227                                 else
3228                                         __clear_bit(hwgpio, bits);
3229                                 count++;
3230                         }
3231                         i++;
3232
3233                         if (array_info)
3234                                 i = find_next_zero_bit(array_info->set_mask,
3235                                                        array_size, i);
3236                 } while ((i < array_size) &&
3237                          (desc_array[i]->gdev->chip == chip));
3238                 /* push collected bits to outputs */
3239                 if (count != 0)
3240                         gpio_chip_set_multiple(chip, mask, bits);
3241
3242                 if (mask != fastpath)
3243                         kfree(mask);
3244         }
3245         return 0;
3246 }
3247
3248 /**
3249  * gpiod_set_raw_value() - assign a gpio's raw value
3250  * @desc: gpio whose value will be assigned
3251  * @value: value to assign
3252  *
3253  * Set the raw value of the GPIO, i.e. the value of its physical line without
3254  * regard for its ACTIVE_LOW status.
3255  *
3256  * This function should be called from contexts where we cannot sleep, and will
3257  * complain if the GPIO chip functions potentially sleep.
3258  */
3259 void gpiod_set_raw_value(struct gpio_desc *desc, int value)
3260 {
3261         VALIDATE_DESC_VOID(desc);
3262         /* Should be using gpiod_set_value_cansleep() */
3263         WARN_ON(desc->gdev->chip->can_sleep);
3264         gpiod_set_raw_value_commit(desc, value);
3265 }
3266 EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
3267
3268 /**
3269  * gpiod_set_value_nocheck() - set a GPIO line value without checking
3270  * @desc: the descriptor to set the value on
3271  * @value: value to set
3272  *
3273  * This sets the value of a GPIO line backing a descriptor, applying
3274  * different semantic quirks like active low and open drain/source
3275  * handling.
3276  */
3277 static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3278 {
3279         if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3280                 value = !value;
3281         if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3282                 gpio_set_open_drain_value_commit(desc, value);
3283         else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3284                 gpio_set_open_source_value_commit(desc, value);
3285         else
3286                 gpiod_set_raw_value_commit(desc, value);
3287 }
3288
3289 /**
3290  * gpiod_set_value() - assign a gpio's value
3291  * @desc: gpio whose value will be assigned
3292  * @value: value to assign
3293  *
3294  * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3295  * OPEN_DRAIN and OPEN_SOURCE flags into account.
3296  *
3297  * This function should be called from contexts where we cannot sleep, and will
3298  * complain if the GPIO chip functions potentially sleep.
3299  */
3300 void gpiod_set_value(struct gpio_desc *desc, int value)
3301 {
3302         VALIDATE_DESC_VOID(desc);
3303         WARN_ON(desc->gdev->chip->can_sleep);
3304         gpiod_set_value_nocheck(desc, value);
3305 }
3306 EXPORT_SYMBOL_GPL(gpiod_set_value);
3307
3308 /**
3309  * gpiod_set_raw_array_value() - assign values to an array of GPIOs
3310  * @array_size: number of elements in the descriptor array / value bitmap
3311  * @desc_array: array of GPIO descriptors whose values will be assigned
3312  * @array_info: information on applicability of fast bitmap processing path
3313  * @value_bitmap: bitmap of values to assign
3314  *
3315  * Set the raw values of the GPIOs, i.e. the values of the physical lines
3316  * without regard for their ACTIVE_LOW status.
3317  *
3318  * This function should be called from contexts where we cannot sleep, and will
3319  * complain if the GPIO chip functions potentially sleep.
3320  */
3321 int gpiod_set_raw_array_value(unsigned int array_size,
3322                               struct gpio_desc **desc_array,
3323                               struct gpio_array *array_info,
3324                               unsigned long *value_bitmap)
3325 {
3326         if (!desc_array)
3327                 return -EINVAL;
3328         return gpiod_set_array_value_complex(true, false, array_size,
3329                                         desc_array, array_info, value_bitmap);
3330 }
3331 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
3332
3333 /**
3334  * gpiod_set_array_value() - assign values to an array of GPIOs
3335  * @array_size: number of elements in the descriptor array / value bitmap
3336  * @desc_array: array of GPIO descriptors whose values will be assigned
3337  * @array_info: information on applicability of fast bitmap processing path
3338  * @value_bitmap: bitmap of values to assign
3339  *
3340  * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3341  * into account.
3342  *
3343  * This function should be called from contexts where we cannot sleep, and will
3344  * complain if the GPIO chip functions potentially sleep.
3345  */
3346 int gpiod_set_array_value(unsigned int array_size,
3347                           struct gpio_desc **desc_array,
3348                           struct gpio_array *array_info,
3349                           unsigned long *value_bitmap)
3350 {
3351         if (!desc_array)
3352                 return -EINVAL;
3353         return gpiod_set_array_value_complex(false, false, array_size,
3354                                              desc_array, array_info,
3355                                              value_bitmap);
3356 }
3357 EXPORT_SYMBOL_GPL(gpiod_set_array_value);
3358
3359 /**
3360  * gpiod_cansleep() - report whether gpio value access may sleep
3361  * @desc: gpio to check
3362  *
3363  */
3364 int gpiod_cansleep(const struct gpio_desc *desc)
3365 {
3366         VALIDATE_DESC(desc);
3367         return desc->gdev->chip->can_sleep;
3368 }
3369 EXPORT_SYMBOL_GPL(gpiod_cansleep);
3370
3371 /**
3372  * gpiod_set_consumer_name() - set the consumer name for the descriptor
3373  * @desc: gpio to set the consumer name on
3374  * @name: the new consumer name
3375  */
3376 void gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
3377 {
3378         VALIDATE_DESC_VOID(desc);
3379         /* Just overwrite whatever the previous name was */
3380         desc->label = name;
3381 }
3382 EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3383
3384 /**
3385  * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3386  * @desc: gpio whose IRQ will be returned (already requested)
3387  *
3388  * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3389  * error.
3390  */
3391 int gpiod_to_irq(const struct gpio_desc *desc)
3392 {
3393         struct gpio_chip *chip;
3394         int offset;
3395
3396         /*
3397          * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3398          * requires this function to not return zero on an invalid descriptor
3399          * but rather a negative error number.
3400          */
3401         if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
3402                 return -EINVAL;
3403
3404         chip = desc->gdev->chip;
3405         offset = gpio_chip_hwgpio(desc);
3406         if (chip->to_irq) {
3407                 int retirq = chip->to_irq(chip, offset);
3408
3409                 /* Zero means NO_IRQ */
3410                 if (!retirq)
3411                         return -ENXIO;
3412
3413                 return retirq;
3414         }
3415         return -ENXIO;
3416 }
3417 EXPORT_SYMBOL_GPL(gpiod_to_irq);
3418
3419 /**
3420  * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
3421  * @chip: the chip the GPIO to lock belongs to
3422  * @offset: the offset of the GPIO to lock as IRQ
3423  *
3424  * This is used directly by GPIO drivers that want to lock down
3425  * a certain GPIO line to be used for IRQs.
3426  */
3427 int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
3428 {
3429         struct gpio_desc *desc;
3430
3431         desc = gpiochip_get_desc(chip, offset);
3432         if (IS_ERR(desc))
3433                 return PTR_ERR(desc);
3434
3435         /*
3436          * If it's fast: flush the direction setting if something changed
3437          * behind our back
3438          */
3439         if (!chip->can_sleep && chip->get_direction) {
3440                 int dir = gpiod_get_direction(desc);
3441
3442                 if (dir < 0) {
3443                         chip_err(chip, "%s: cannot get GPIO direction\n",
3444                                  __func__);
3445                         return dir;
3446                 }
3447         }
3448
3449         if (test_bit(FLAG_IS_OUT, &desc->flags)) {
3450                 chip_err(chip,
3451                          "%s: tried to flag a GPIO set as output for IRQ\n",
3452                          __func__);
3453                 return -EIO;
3454         }
3455
3456         set_bit(FLAG_USED_AS_IRQ, &desc->flags);
3457         set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3458
3459         /*
3460          * If the consumer has not set up a label (such as when the
3461          * IRQ is referenced from .to_irq()) we set up a label here
3462          * so it is clear this is used as an interrupt.
3463          */
3464         if (!desc->label)
3465                 desc_set_label(desc, "interrupt");
3466
3467         return 0;
3468 }
3469 EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
3470
3471 /**
3472  * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
3473  * @chip: the chip the GPIO to lock belongs to
3474  * @offset: the offset of the GPIO to lock as IRQ
3475  *
3476  * This is used directly by GPIO drivers that want to indicate
3477  * that a certain GPIO is no longer used exclusively for IRQ.
3478  */
3479 void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
3480 {
3481         struct gpio_desc *desc;
3482
3483         desc = gpiochip_get_desc(chip, offset);
3484         if (IS_ERR(desc))
3485                 return;
3486
3487         clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
3488         clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3489
3490         /* If we only had this marking, erase it */
3491         if (desc->label && !strcmp(desc->label, "interrupt"))
3492                 desc_set_label(desc, NULL);
3493 }
3494 EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
3495
3496 void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset)
3497 {
3498         struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3499
3500         if (!IS_ERR(desc) &&
3501             !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3502                 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3503 }
3504 EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3505
3506 void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset)
3507 {
3508         struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3509
3510         if (!IS_ERR(desc) &&
3511             !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3512                 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags));
3513                 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3514         }
3515 }
3516 EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3517
3518 bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
3519 {
3520         if (offset >= chip->ngpio)
3521                 return false;
3522
3523         return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
3524 }
3525 EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3526
3527 int gpiochip_reqres_irq(struct gpio_chip *chip, unsigned int offset)
3528 {
3529         int ret;
3530
3531         if (!try_module_get(chip->gpiodev->owner))
3532                 return -ENODEV;
3533
3534         ret = gpiochip_lock_as_irq(chip, offset);
3535         if (ret) {
3536                 chip_err(chip, "unable to lock HW IRQ %u for IRQ\n", offset);
3537                 module_put(chip->gpiodev->owner);
3538                 return ret;
3539         }
3540         return 0;
3541 }
3542 EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3543
3544 void gpiochip_relres_irq(struct gpio_chip *chip, unsigned int offset)
3545 {
3546         gpiochip_unlock_as_irq(chip, offset);
3547         module_put(chip->gpiodev->owner);
3548 }
3549 EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3550
3551 bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
3552 {
3553         if (offset >= chip->ngpio)
3554                 return false;
3555
3556         return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
3557 }
3558 EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3559
3560 bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
3561 {
3562         if (offset >= chip->ngpio)
3563                 return false;
3564
3565         return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
3566 }
3567 EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3568
3569 bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
3570 {
3571         if (offset >= chip->ngpio)
3572                 return false;
3573
3574         return !test_bit(FLAG_TRANSITORY, &chip->gpiodev->descs[offset].flags);
3575 }
3576 EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3577
3578 /**
3579  * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3580  * @desc: gpio whose value will be returned
3581  *
3582  * Return the GPIO's raw value, i.e. the value of the physical line disregarding
3583  * its ACTIVE_LOW status, or negative errno on failure.
3584  *
3585  * This function is to be called from contexts that can sleep.
3586  */
3587 int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
3588 {
3589         might_sleep_if(extra_checks);
3590         VALIDATE_DESC(desc);
3591         return gpiod_get_raw_value_commit(desc);
3592 }
3593 EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
3594
3595 /**
3596  * gpiod_get_value_cansleep() - return a gpio's value
3597  * @desc: gpio whose value will be returned
3598  *
3599  * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
3600  * account, or negative errno on failure.
3601  *
3602  * This function is to be called from contexts that can sleep.
3603  */
3604 int gpiod_get_value_cansleep(const struct gpio_desc *desc)
3605 {
3606         int value;
3607
3608         might_sleep_if(extra_checks);
3609         VALIDATE_DESC(desc);
3610         value = gpiod_get_raw_value_commit(desc);
3611         if (value < 0)
3612                 return value;
3613
3614         if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3615                 value = !value;
3616
3617         return value;
3618 }
3619 EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
3620
3621 /**
3622  * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
3623  * @array_size: number of elements in the descriptor array / value bitmap
3624  * @desc_array: array of GPIO descriptors whose values will be read
3625  * @array_info: information on applicability of fast bitmap processing path
3626  * @value_bitmap: bitmap to store the read values
3627  *
3628  * Read the raw values of the GPIOs, i.e. the values of the physical lines
3629  * without regard for their ACTIVE_LOW status.  Return 0 in case of success,
3630  * else an error code.
3631  *
3632  * This function is to be called from contexts that can sleep.
3633  */
3634 int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3635                                        struct gpio_desc **desc_array,
3636                                        struct gpio_array *array_info,
3637                                        unsigned long *value_bitmap)
3638 {
3639         might_sleep_if(extra_checks);
3640         if (!desc_array)
3641                 return -EINVAL;
3642         return gpiod_get_array_value_complex(true, true, array_size,
3643                                              desc_array, array_info,
3644                                              value_bitmap);
3645 }
3646 EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3647
3648 /**
3649  * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
3650  * @array_size: number of elements in the descriptor array / value bitmap
3651  * @desc_array: array of GPIO descriptors whose values will be read
3652  * @array_info: information on applicability of fast bitmap processing path
3653  * @value_bitmap: bitmap to store the read values
3654  *
3655  * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3656  * into account.  Return 0 in case of success, else an error code.
3657  *
3658  * This function is to be called from contexts that can sleep.
3659  */
3660 int gpiod_get_array_value_cansleep(unsigned int array_size,
3661                                    struct gpio_desc **desc_array,
3662                                    struct gpio_array *array_info,
3663                                    unsigned long *value_bitmap)
3664 {
3665         might_sleep_if(extra_checks);
3666         if (!desc_array)
3667                 return -EINVAL;
3668         return gpiod_get_array_value_complex(false, true, array_size,
3669                                              desc_array, array_info,
3670                                              value_bitmap);
3671 }
3672 EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3673
3674 /**
3675  * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3676  * @desc: gpio whose value will be assigned
3677  * @value: value to assign
3678  *
3679  * Set the raw value of the GPIO, i.e. the value of its physical line without
3680  * regard for its ACTIVE_LOW status.
3681  *
3682  * This function is to be called from contexts that can sleep.
3683  */
3684 void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
3685 {
3686         might_sleep_if(extra_checks);
3687         VALIDATE_DESC_VOID(desc);
3688         gpiod_set_raw_value_commit(desc, value);
3689 }
3690 EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
3691
3692 /**
3693  * gpiod_set_value_cansleep() - assign a gpio's value
3694  * @desc: gpio whose value will be assigned
3695  * @value: value to assign
3696  *
3697  * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3698  * account
3699  *
3700  * This function is to be called from contexts that can sleep.
3701  */
3702 void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
3703 {
3704         might_sleep_if(extra_checks);
3705         VALIDATE_DESC_VOID(desc);
3706         gpiod_set_value_nocheck(desc, value);
3707 }
3708 EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
3709
3710 /**
3711  * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
3712  * @array_size: number of elements in the descriptor array / value bitmap
3713  * @desc_array: array of GPIO descriptors whose values will be assigned
3714  * @array_info: information on applicability of fast bitmap processing path
3715  * @value_bitmap: bitmap of values to assign
3716  *
3717  * Set the raw values of the GPIOs, i.e. the values of the physical lines
3718  * without regard for their ACTIVE_LOW status.
3719  *
3720  * This function is to be called from contexts that can sleep.
3721  */
3722 int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
3723                                        struct gpio_desc **desc_array,
3724                                        struct gpio_array *array_info,
3725                                        unsigned long *value_bitmap)
3726 {
3727         might_sleep_if(extra_checks);
3728         if (!desc_array)
3729                 return -EINVAL;
3730         return gpiod_set_array_value_complex(true, true, array_size, desc_array,
3731                                       array_info, value_bitmap);
3732 }
3733 EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
3734
3735 /**
3736  * gpiod_add_lookup_tables() - register GPIO device consumers
3737  * @tables: list of tables of consumers to register
3738  * @n: number of tables in the list
3739  */
3740 void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3741 {
3742         unsigned int i;
3743
3744         mutex_lock(&gpio_lookup_lock);
3745
3746         for (i = 0; i < n; i++)
3747                 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3748
3749         mutex_unlock(&gpio_lookup_lock);
3750 }
3751
3752 /**
3753  * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
3754  * @array_size: number of elements in the descriptor array / value bitmap
3755  * @desc_array: array of GPIO descriptors whose values will be assigned
3756  * @array_info: information on applicability of fast bitmap processing path
3757  * @value_bitmap: bitmap of values to assign
3758  *
3759  * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3760  * into account.
3761  *
3762  * This function is to be called from contexts that can sleep.
3763  */
3764 int gpiod_set_array_value_cansleep(unsigned int array_size,
3765                                    struct gpio_desc **desc_array,
3766                                    struct gpio_array *array_info,
3767                                    unsigned long *value_bitmap)
3768 {
3769         might_sleep_if(extra_checks);
3770         if (!desc_array)
3771                 return -EINVAL;
3772         return gpiod_set_array_value_complex(false, true, array_size,
3773                                              desc_array, array_info,
3774                                              value_bitmap);
3775 }
3776 EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
3777
3778 /**
3779  * gpiod_add_lookup_table() - register GPIO device consumers
3780  * @table: table of consumers to register
3781  */
3782 void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
3783 {
3784         mutex_lock(&gpio_lookup_lock);
3785
3786         list_add_tail(&table->list, &gpio_lookup_list);
3787
3788         mutex_unlock(&gpio_lookup_lock);
3789 }
3790 EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
3791
3792 /**
3793  * gpiod_remove_lookup_table() - unregister GPIO device consumers
3794  * @table: table of consumers to unregister
3795  */
3796 void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3797 {
3798         mutex_lock(&gpio_lookup_lock);
3799
3800         list_del(&table->list);
3801
3802         mutex_unlock(&gpio_lookup_lock);
3803 }
3804 EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
3805
3806 /**
3807  * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3808  * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3809  */
3810 void gpiod_add_hogs(struct gpiod_hog *hogs)
3811 {
3812         struct gpio_chip *chip;
3813         struct gpiod_hog *hog;
3814
3815         mutex_lock(&gpio_machine_hogs_mutex);
3816
3817         for (hog = &hogs[0]; hog->chip_label; hog++) {
3818                 list_add_tail(&hog->list, &gpio_machine_hogs);
3819
3820                 /*
3821                  * The chip may have been registered earlier, so check if it
3822                  * exists and, if so, try to hog the line now.
3823                  */
3824                 chip = find_chip_by_name(hog->chip_label);
3825                 if (chip)
3826                         gpiochip_machine_hog(chip, hog);
3827         }
3828
3829         mutex_unlock(&gpio_machine_hogs_mutex);
3830 }
3831 EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3832
3833 static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3834 {
3835         const char *dev_id = dev ? dev_name(dev) : NULL;
3836         struct gpiod_lookup_table *table;
3837
3838         mutex_lock(&gpio_lookup_lock);
3839
3840         list_for_each_entry(table, &gpio_lookup_list, list) {
3841                 if (table->dev_id && dev_id) {
3842                         /*
3843                          * Valid strings on both ends, must be identical to have
3844                          * a match
3845                          */
3846                         if (!strcmp(table->dev_id, dev_id))
3847                                 goto found;
3848                 } else {
3849                         /*
3850                          * One of the pointers is NULL, so both must be to have
3851                          * a match
3852                          */
3853                         if (dev_id == table->dev_id)
3854                                 goto found;
3855                 }
3856         }
3857         table = NULL;
3858
3859 found:
3860         mutex_unlock(&gpio_lookup_lock);
3861         return table;
3862 }
3863
3864 static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
3865                                     unsigned int idx,
3866                                     enum gpio_lookup_flags *flags)
3867 {
3868         struct gpio_desc *desc = ERR_PTR(-ENOENT);
3869         struct gpiod_lookup_table *table;
3870         struct gpiod_lookup *p;
3871
3872         table = gpiod_find_lookup_table(dev);
3873         if (!table)
3874                 return desc;
3875
3876         for (p = &table->table[0]; p->chip_label; p++) {
3877                 struct gpio_chip *chip;
3878
3879                 /* idx must always match exactly */
3880                 if (p->idx != idx)
3881                         continue;
3882
3883                 /* If the lookup entry has a con_id, require exact match */
3884                 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3885                         continue;
3886
3887                 chip = find_chip_by_name(p->chip_label);
3888
3889                 if (!chip) {
3890                         /*
3891                          * As the lookup table indicates a chip with
3892                          * p->chip_label should exist, assume it may
3893                          * still appear later and let the interested
3894                          * consumer be probed again or let the Deferred
3895                          * Probe infrastructure handle the error.
3896                          */
3897                         dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
3898                                  p->chip_label);
3899                         return ERR_PTR(-EPROBE_DEFER);
3900                 }
3901
3902                 if (chip->ngpio <= p->chip_hwnum) {
3903                         dev_err(dev,
3904                                 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3905                                 idx, chip->ngpio, chip->label);
3906                         return ERR_PTR(-EINVAL);
3907                 }
3908
3909                 desc = gpiochip_get_desc(chip, p->chip_hwnum);
3910                 *flags = p->flags;
3911
3912                 return desc;
3913         }
3914
3915         return desc;
3916 }
3917
3918 static int dt_gpio_count(struct device *dev, const char *con_id)
3919 {
3920         int ret;
3921         char propname[32];
3922         unsigned int i;
3923
3924         for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3925                 if (con_id)
3926                         snprintf(propname, sizeof(propname), "%s-%s",
3927                                  con_id, gpio_suffixes[i]);
3928                 else
3929                         snprintf(propname, sizeof(propname), "%s",
3930                                  gpio_suffixes[i]);
3931
3932                 ret = of_gpio_named_count(dev->of_node, propname);
3933                 if (ret > 0)
3934                         break;
3935         }
3936         return ret ? ret : -ENOENT;
3937 }
3938
3939 static int platform_gpio_count(struct device *dev, const char *con_id)
3940 {
3941         struct gpiod_lookup_table *table;
3942         struct gpiod_lookup *p;
3943         unsigned int count = 0;
3944
3945         table = gpiod_find_lookup_table(dev);
3946         if (!table)
3947                 return -ENOENT;
3948
3949         for (p = &table->table[0]; p->chip_label; p++) {
3950                 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3951                     (!con_id && !p->con_id))
3952                         count++;
3953         }
3954         if (!count)
3955                 return -ENOENT;
3956
3957         return count;
3958 }
3959
3960 /**
3961  * gpiod_count - return the number of GPIOs associated with a device / function
3962  *              or -ENOENT if no GPIO has been assigned to the requested function
3963  * @dev:        GPIO consumer, can be NULL for system-global GPIOs
3964  * @con_id:     function within the GPIO consumer
3965  */
3966 int gpiod_count(struct device *dev, const char *con_id)
3967 {
3968         int count = -ENOENT;
3969
3970         if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3971                 count = dt_gpio_count(dev, con_id);
3972         else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3973                 count = acpi_gpio_count(dev, con_id);
3974
3975         if (count < 0)
3976                 count = platform_gpio_count(dev, con_id);
3977
3978         return count;
3979 }
3980 EXPORT_SYMBOL_GPL(gpiod_count);
3981
3982 /**
3983  * gpiod_get - obtain a GPIO for a given GPIO function
3984  * @dev:        GPIO consumer, can be NULL for system-global GPIOs
3985  * @con_id:     function within the GPIO consumer
3986  * @flags:      optional GPIO initialization flags
3987  *
3988  * Return the GPIO descriptor corresponding to the function con_id of device
3989  * dev, -ENOENT if no GPIO has been assigned to the requested function, or
3990  * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
3991  */
3992 struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
3993                                          enum gpiod_flags flags)
3994 {
3995         return gpiod_get_index(dev, con_id, 0, flags);
3996 }
3997 EXPORT_SYMBOL_GPL(gpiod_get);
3998
3999 /**
4000  * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
4001  * @dev: GPIO consumer, can be NULL for system-global GPIOs
4002  * @con_id: function within the GPIO consumer
4003  * @flags: optional GPIO initialization flags
4004  *
4005  * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
4006  * the requested function it will return NULL. This is convenient for drivers
4007  * that need to handle optional GPIOs.
4008  */
4009 struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
4010                                                   const char *con_id,
4011                                                   enum gpiod_flags flags)
4012 {
4013         return gpiod_get_index_optional(dev, con_id, 0, flags);
4014 }
4015 EXPORT_SYMBOL_GPL(gpiod_get_optional);
4016
4017
4018 /**
4019  * gpiod_configure_flags - helper function to configure a given GPIO
4020  * @desc:       gpio whose value will be assigned
4021  * @con_id:     function within the GPIO consumer
4022  * @lflags:     gpio_lookup_flags - returned from of_find_gpio() or
4023  *              of_get_gpio_hog()
4024  * @dflags:     gpiod_flags - optional GPIO initialization flags
4025  *
4026  * Return 0 on success, -ENOENT if no GPIO has been assigned to the
4027  * requested function and/or index, or another IS_ERR() code if an error
4028  * occurred while trying to acquire the GPIO.
4029  */
4030 int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
4031                 unsigned long lflags, enum gpiod_flags dflags)
4032 {
4033         int status;
4034
4035         if (lflags & GPIO_ACTIVE_LOW)
4036                 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
4037
4038         if (lflags & GPIO_OPEN_DRAIN)
4039                 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4040         else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
4041                 /*
4042                  * This enforces open drain mode from the consumer side.
4043                  * This is necessary for some busses like I2C, but the lookup
4044                  * should *REALLY* have specified them as open drain in the
4045                  * first place, so print a little warning here.
4046                  */
4047                 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4048                 gpiod_warn(desc,
4049                            "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
4050         }
4051
4052         if (lflags & GPIO_OPEN_SOURCE)
4053                 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
4054
4055         status = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
4056         if (status < 0)
4057                 return status;
4058
4059         /* No particular flag request, return here... */
4060         if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
4061                 pr_debug("no flags found for %s\n", con_id);
4062                 return 0;
4063         }
4064
4065         /* Process flags */
4066         if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
4067                 status = gpiod_direction_output(desc,
4068                                 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
4069         else
4070                 status = gpiod_direction_input(desc);
4071
4072         return status;
4073 }
4074
4075 /**
4076  * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
4077  * @dev:        GPIO consumer, can be NULL for system-global GPIOs
4078  * @con_id:     function within the GPIO consumer
4079  * @idx:        index of the GPIO to obtain in the consumer
4080  * @flags:      optional GPIO initialization flags
4081  *
4082  * This variant of gpiod_get() allows to access GPIOs other than the first
4083  * defined one for functions that define several GPIOs.
4084  *
4085  * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
4086  * requested function and/or index, or another IS_ERR() code if an error
4087  * occurred while trying to acquire the GPIO.
4088  */
4089 struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
4090                                                const char *con_id,
4091                                                unsigned int idx,
4092                                                enum gpiod_flags flags)
4093 {
4094         struct gpio_desc *desc = NULL;
4095         int status;
4096         enum gpio_lookup_flags lookupflags = 0;
4097         /* Maybe we have a device name, maybe not */
4098         const char *devname = dev ? dev_name(dev) : "?";
4099
4100         dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
4101
4102         if (dev) {
4103                 /* Using device tree? */
4104                 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
4105                         dev_dbg(dev, "using device tree for GPIO lookup\n");
4106                         desc = of_find_gpio(dev, con_id, idx, &lookupflags);
4107                 } else if (ACPI_COMPANION(dev)) {
4108                         dev_dbg(dev, "using ACPI for GPIO lookup\n");
4109                         desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
4110                 }
4111         }
4112
4113         /*
4114          * Either we are not using DT or ACPI, or their lookup did not return
4115          * a result. In that case, use platform lookup as a fallback.
4116          */
4117         if (!desc || desc == ERR_PTR(-ENOENT)) {
4118                 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
4119                 desc = gpiod_find(dev, con_id, idx, &lookupflags);
4120         }
4121
4122         if (IS_ERR(desc)) {
4123                 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
4124                 return desc;
4125         }
4126
4127         /*
4128          * If a connection label was passed use that, else attempt to use
4129          * the device name as label
4130          */
4131         status = gpiod_request(desc, con_id ? con_id : devname);
4132         if (status < 0)
4133                 return ERR_PTR(status);
4134
4135         status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
4136         if (status < 0) {
4137                 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
4138                 gpiod_put(desc);
4139                 return ERR_PTR(status);
4140         }
4141
4142         return desc;
4143 }
4144 EXPORT_SYMBOL_GPL(gpiod_get_index);
4145
4146 /**
4147  * gpiod_get_from_of_node() - obtain a GPIO from an OF node
4148  * @node:       handle of the OF node
4149  * @propname:   name of the DT property representing the GPIO
4150  * @index:      index of the GPIO to obtain for the consumer
4151  * @dflags:     GPIO initialization flags
4152  * @label:      label to attach to the requested GPIO
4153  *
4154  * Returns:
4155  * On successful request the GPIO pin is configured in accordance with
4156  * provided @dflags. If the node does not have the requested GPIO
4157  * property, NULL is returned.
4158  *
4159  * In case of error an ERR_PTR() is returned.
4160  */
4161 struct gpio_desc *gpiod_get_from_of_node(struct device_node *node,
4162                                          const char *propname, int index,
4163                                          enum gpiod_flags dflags,
4164                                          const char *label)
4165 {
4166         struct gpio_desc *desc;
4167         unsigned long lflags = 0;
4168         enum of_gpio_flags flags;
4169         bool active_low = false;
4170         bool single_ended = false;
4171         bool open_drain = false;
4172         bool transitory = false;
4173         int ret;
4174
4175         desc = of_get_named_gpiod_flags(node, propname,
4176                                         index, &flags);
4177
4178         if (!desc || IS_ERR(desc)) {
4179                 /* If it is not there, just return NULL */
4180                 if (PTR_ERR(desc) == -ENOENT)
4181                         return NULL;
4182                 return desc;
4183         }
4184
4185         active_low = flags & OF_GPIO_ACTIVE_LOW;
4186         single_ended = flags & OF_GPIO_SINGLE_ENDED;
4187         open_drain = flags & OF_GPIO_OPEN_DRAIN;
4188         transitory = flags & OF_GPIO_TRANSITORY;
4189
4190         ret = gpiod_request(desc, label);
4191         if (ret)
4192                 return ERR_PTR(ret);
4193
4194         if (active_low)
4195                 lflags |= GPIO_ACTIVE_LOW;
4196
4197         if (single_ended) {
4198                 if (open_drain)
4199                         lflags |= GPIO_OPEN_DRAIN;
4200                 else
4201                         lflags |= GPIO_OPEN_SOURCE;
4202         }
4203
4204         if (transitory)
4205                 lflags |= GPIO_TRANSITORY;
4206
4207         ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4208         if (ret < 0) {
4209                 gpiod_put(desc);
4210                 return ERR_PTR(ret);
4211         }
4212
4213         return desc;
4214 }
4215 EXPORT_SYMBOL(gpiod_get_from_of_node);
4216
4217 /**
4218  * fwnode_get_named_gpiod - obtain a GPIO from firmware node
4219  * @fwnode:     handle of the firmware node
4220  * @propname:   name of the firmware property representing the GPIO
4221  * @index:      index of the GPIO to obtain for the consumer
4222  * @dflags:     GPIO initialization flags
4223  * @label:      label to attach to the requested GPIO
4224  *
4225  * This function can be used for drivers that get their configuration
4226  * from opaque firmware.
4227  *
4228  * The function properly finds the corresponding GPIO using whatever is the
4229  * underlying firmware interface and then makes sure that the GPIO
4230  * descriptor is requested before it is returned to the caller.
4231  *
4232  * Returns:
4233  * On successful request the GPIO pin is configured in accordance with
4234  * provided @dflags.
4235  *
4236  * In case of error an ERR_PTR() is returned.
4237  */
4238 struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
4239                                          const char *propname, int index,
4240                                          enum gpiod_flags dflags,
4241                                          const char *label)
4242 {
4243         struct gpio_desc *desc = ERR_PTR(-ENODEV);
4244         unsigned long lflags = 0;
4245         int ret;
4246
4247         if (!fwnode)
4248                 return ERR_PTR(-EINVAL);
4249
4250         if (is_of_node(fwnode)) {
4251                 desc = gpiod_get_from_of_node(to_of_node(fwnode),
4252                                               propname, index,
4253                                               dflags,
4254                                               label);
4255                 return desc;
4256         } else if (is_acpi_node(fwnode)) {
4257                 struct acpi_gpio_info info;
4258
4259                 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
4260                 if (IS_ERR(desc))
4261                         return desc;
4262
4263                 acpi_gpio_update_gpiod_flags(&dflags, &info);
4264
4265                 if (info.polarity == GPIO_ACTIVE_LOW)
4266                         lflags |= GPIO_ACTIVE_LOW;
4267         }
4268
4269         /* Currently only ACPI takes this path */
4270         ret = gpiod_request(desc, label);
4271         if (ret)
4272                 return ERR_PTR(ret);
4273
4274         ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4275         if (ret < 0) {
4276                 gpiod_put(desc);
4277                 return ERR_PTR(ret);
4278         }
4279
4280         return desc;
4281 }
4282 EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
4283
4284 /**
4285  * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
4286  *                            function
4287  * @dev: GPIO consumer, can be NULL for system-global GPIOs
4288  * @con_id: function within the GPIO consumer
4289  * @index: index of the GPIO to obtain in the consumer
4290  * @flags: optional GPIO initialization flags
4291  *
4292  * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4293  * specified index was assigned to the requested function it will return NULL.
4294  * This is convenient for drivers that need to handle optional GPIOs.
4295  */
4296 struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
4297                                                         const char *con_id,
4298                                                         unsigned int index,
4299                                                         enum gpiod_flags flags)
4300 {
4301         struct gpio_desc *desc;
4302
4303         desc = gpiod_get_index(dev, con_id, index, flags);
4304         if (IS_ERR(desc)) {
4305                 if (PTR_ERR(desc) == -ENOENT)
4306                         return NULL;
4307         }
4308
4309         return desc;
4310 }
4311 EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4312
4313 /**
4314  * gpiod_hog - Hog the specified GPIO desc given the provided flags
4315  * @desc:       gpio whose value will be assigned
4316  * @name:       gpio line name
4317  * @lflags:     gpio_lookup_flags - returned from of_find_gpio() or
4318  *              of_get_gpio_hog()
4319  * @dflags:     gpiod_flags - optional GPIO initialization flags
4320  */
4321 int gpiod_hog(struct gpio_desc *desc, const char *name,
4322               unsigned long lflags, enum gpiod_flags dflags)
4323 {
4324         struct gpio_chip *chip;
4325         struct gpio_desc *local_desc;
4326         int hwnum;
4327         int status;
4328
4329         chip = gpiod_to_chip(desc);
4330         hwnum = gpio_chip_hwgpio(desc);
4331
4332         local_desc = gpiochip_request_own_desc(chip, hwnum, name);
4333         if (IS_ERR(local_desc)) {
4334                 status = PTR_ERR(local_desc);
4335                 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
4336                        name, chip->label, hwnum, status);
4337                 return status;
4338         }
4339
4340         status = gpiod_configure_flags(desc, name, lflags, dflags);
4341         if (status < 0) {
4342                 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
4343                        name, chip->label, hwnum, status);
4344                 gpiochip_free_own_desc(desc);
4345                 return status;
4346         }
4347
4348         /* Mark GPIO as hogged so it can be identified and removed later */
4349         set_bit(FLAG_IS_HOGGED, &desc->flags);
4350
4351         pr_info("GPIO line %d (%s) hogged as %s%s\n",
4352                 desc_to_gpio(desc), name,
4353                 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4354                 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
4355                   (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
4356
4357         return 0;
4358 }
4359
4360 /**
4361  * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4362  * @chip:       gpio chip to act on
4363  *
4364  * This is only used by of_gpiochip_remove to free hogged gpios
4365  */
4366 static void gpiochip_free_hogs(struct gpio_chip *chip)
4367 {
4368         int id;
4369
4370         for (id = 0; id < chip->ngpio; id++) {
4371                 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
4372                         gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
4373         }
4374 }
4375
4376 /**
4377  * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4378  * @dev:        GPIO consumer, can be NULL for system-global GPIOs
4379  * @con_id:     function within the GPIO consumer
4380  * @flags:      optional GPIO initialization flags
4381  *
4382  * This function acquires all the GPIOs defined under a given function.
4383  *
4384  * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4385  * no GPIO has been assigned to the requested function, or another IS_ERR()
4386  * code if an error occurred while trying to acquire the GPIOs.
4387  */
4388 struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4389                                                 const char *con_id,
4390                                                 enum gpiod_flags flags)
4391 {
4392         struct gpio_desc *desc;
4393         struct gpio_descs *descs;
4394         struct gpio_array *array_info = NULL;
4395         struct gpio_chip *chip;
4396         int count, bitmap_size;
4397
4398         count = gpiod_count(dev, con_id);
4399         if (count < 0)
4400                 return ERR_PTR(count);
4401
4402         descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL);
4403         if (!descs)
4404                 return ERR_PTR(-ENOMEM);
4405
4406         for (descs->ndescs = 0; descs->ndescs < count; ) {
4407                 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4408                 if (IS_ERR(desc)) {
4409                         gpiod_put_array(descs);
4410                         return ERR_CAST(desc);
4411                 }
4412
4413                 descs->desc[descs->ndescs] = desc;
4414
4415                 chip = gpiod_to_chip(desc);
4416                 /*
4417                  * If pin hardware number of array member 0 is also 0, select
4418                  * its chip as a candidate for fast bitmap processing path.
4419                  */
4420                 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
4421                         struct gpio_descs *array;
4422
4423                         bitmap_size = BITS_TO_LONGS(chip->ngpio > count ?
4424                                                     chip->ngpio : count);
4425
4426                         array = kzalloc(struct_size(descs, desc, count) +
4427                                         struct_size(array_info, invert_mask,
4428                                         3 * bitmap_size), GFP_KERNEL);
4429                         if (!array) {
4430                                 gpiod_put_array(descs);
4431                                 return ERR_PTR(-ENOMEM);
4432                         }
4433
4434                         memcpy(array, descs,
4435                                struct_size(descs, desc, descs->ndescs + 1));
4436                         kfree(descs);
4437
4438                         descs = array;
4439                         array_info = (void *)(descs->desc + count);
4440                         array_info->get_mask = array_info->invert_mask +
4441                                                   bitmap_size;
4442                         array_info->set_mask = array_info->get_mask +
4443                                                   bitmap_size;
4444
4445                         array_info->desc = descs->desc;
4446                         array_info->size = count;
4447                         array_info->chip = chip;
4448                         bitmap_set(array_info->get_mask, descs->ndescs,
4449                                    count - descs->ndescs);
4450                         bitmap_set(array_info->set_mask, descs->ndescs,
4451                                    count - descs->ndescs);
4452                         descs->info = array_info;
4453                 }
4454                 /* Unmark array members which don't belong to the 'fast' chip */
4455                 if (array_info && array_info->chip != chip) {
4456                         __clear_bit(descs->ndescs, array_info->get_mask);
4457                         __clear_bit(descs->ndescs, array_info->set_mask);
4458                 }
4459                 /*
4460                  * Detect array members which belong to the 'fast' chip
4461                  * but their pins are not in hardware order.
4462                  */
4463                 else if (array_info &&
4464                            gpio_chip_hwgpio(desc) != descs->ndescs) {
4465                         /*
4466                          * Don't use fast path if all array members processed so
4467                          * far belong to the same chip as this one but its pin
4468                          * hardware number is different from its array index.
4469                          */
4470                         if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4471                                 array_info = NULL;
4472                         } else {
4473                                 __clear_bit(descs->ndescs,
4474                                             array_info->get_mask);
4475                                 __clear_bit(descs->ndescs,
4476                                             array_info->set_mask);
4477                         }
4478                 } else if (array_info) {
4479                         /* Exclude open drain or open source from fast output */
4480                         if (gpiochip_line_is_open_drain(chip, descs->ndescs) ||
4481                             gpiochip_line_is_open_source(chip, descs->ndescs))
4482                                 __clear_bit(descs->ndescs,
4483                                             array_info->set_mask);
4484                         /* Identify 'fast' pins which require invertion */
4485                         if (gpiod_is_active_low(desc))
4486                                 __set_bit(descs->ndescs,
4487                                           array_info->invert_mask);
4488                 }
4489
4490                 descs->ndescs++;
4491         }
4492         if (array_info)
4493                 dev_dbg(dev,
4494                         "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4495                         array_info->chip->label, array_info->size,
4496                         *array_info->get_mask, *array_info->set_mask,
4497                         *array_info->invert_mask);
4498         return descs;
4499 }
4500 EXPORT_SYMBOL_GPL(gpiod_get_array);
4501
4502 /**
4503  * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4504  *                            function
4505  * @dev:        GPIO consumer, can be NULL for system-global GPIOs
4506  * @con_id:     function within the GPIO consumer
4507  * @flags:      optional GPIO initialization flags
4508  *
4509  * This is equivalent to gpiod_get_array(), except that when no GPIO was
4510  * assigned to the requested function it will return NULL.
4511  */
4512 struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4513                                                         const char *con_id,
4514                                                         enum gpiod_flags flags)
4515 {
4516         struct gpio_descs *descs;
4517
4518         descs = gpiod_get_array(dev, con_id, flags);
4519         if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
4520                 return NULL;
4521
4522         return descs;
4523 }
4524 EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4525
4526 /**
4527  * gpiod_put - dispose of a GPIO descriptor
4528  * @desc:       GPIO descriptor to dispose of
4529  *
4530  * No descriptor can be used after gpiod_put() has been called on it.
4531  */
4532 void gpiod_put(struct gpio_desc *desc)
4533 {
4534         gpiod_free(desc);
4535 }
4536 EXPORT_SYMBOL_GPL(gpiod_put);
4537
4538 /**
4539  * gpiod_put_array - dispose of multiple GPIO descriptors
4540  * @descs:      struct gpio_descs containing an array of descriptors
4541  */
4542 void gpiod_put_array(struct gpio_descs *descs)
4543 {
4544         unsigned int i;
4545
4546         for (i = 0; i < descs->ndescs; i++)
4547                 gpiod_put(descs->desc[i]);
4548
4549         kfree(descs);
4550 }
4551 EXPORT_SYMBOL_GPL(gpiod_put_array);
4552
4553 static int __init gpiolib_dev_init(void)
4554 {
4555         int ret;
4556
4557         /* Register GPIO sysfs bus */
4558         ret = bus_register(&gpio_bus_type);
4559         if (ret < 0) {
4560                 pr_err("gpiolib: could not register GPIO bus type\n");
4561                 return ret;
4562         }
4563
4564         ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
4565         if (ret < 0) {
4566                 pr_err("gpiolib: failed to allocate char dev region\n");
4567                 bus_unregister(&gpio_bus_type);
4568         } else {
4569                 gpiolib_initialized = true;
4570                 gpiochip_setup_devs();
4571         }
4572         return ret;
4573 }
4574 core_initcall(gpiolib_dev_init);
4575
4576 #ifdef CONFIG_DEBUG_FS
4577
4578 static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
4579 {
4580         unsigned                i;
4581         struct gpio_chip        *chip = gdev->chip;
4582         unsigned                gpio = gdev->base;
4583         struct gpio_desc        *gdesc = &gdev->descs[0];
4584         bool                    is_out;
4585         bool                    is_irq;
4586         bool                    active_low;
4587
4588         for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
4589                 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4590                         if (gdesc->name) {
4591                                 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4592                                            gpio, gdesc->name);
4593                         }
4594                         continue;
4595                 }
4596
4597                 gpiod_get_direction(gdesc);
4598                 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
4599                 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
4600                 active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags);
4601                 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s",
4602                         gpio, gdesc->name ? gdesc->name : "", gdesc->label,
4603                         is_out ? "out" : "in ",
4604                         chip->get ? (chip->get(chip, i) ? "hi" : "lo") : "?  ",
4605                         is_irq ? "IRQ " : "",
4606                         active_low ? "ACTIVE LOW" : "");
4607                 seq_printf(s, "\n");
4608         }
4609 }
4610
4611 static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4612 {
4613         unsigned long flags;
4614         struct gpio_device *gdev = NULL;
4615         loff_t index = *pos;
4616
4617         s->private = "";
4618
4619         spin_lock_irqsave(&gpio_lock, flags);
4620         list_for_each_entry(gdev, &gpio_devices, list)
4621                 if (index-- == 0) {
4622                         spin_unlock_irqrestore(&gpio_lock, flags);
4623                         return gdev;
4624                 }
4625         spin_unlock_irqrestore(&gpio_lock, flags);
4626
4627         return NULL;
4628 }
4629
4630 static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4631 {
4632         unsigned long flags;
4633         struct gpio_device *gdev = v;
4634         void *ret = NULL;
4635
4636         spin_lock_irqsave(&gpio_lock, flags);
4637         if (list_is_last(&gdev->list, &gpio_devices))
4638                 ret = NULL;
4639         else
4640                 ret = list_entry(gdev->list.next, struct gpio_device, list);
4641         spin_unlock_irqrestore(&gpio_lock, flags);
4642
4643         s->private = "\n";
4644         ++*pos;
4645
4646         return ret;
4647 }
4648
4649 static void gpiolib_seq_stop(struct seq_file *s, void *v)
4650 {
4651 }
4652
4653 static int gpiolib_seq_show(struct seq_file *s, void *v)
4654 {
4655         struct gpio_device *gdev = v;
4656         struct gpio_chip *chip = gdev->chip;
4657         struct device *parent;
4658
4659         if (!chip) {
4660                 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4661                            dev_name(&gdev->dev));
4662                 return 0;
4663         }
4664
4665         seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4666                    dev_name(&gdev->dev),
4667                    gdev->base, gdev->base + gdev->ngpio - 1);
4668         parent = chip->parent;
4669         if (parent)
4670                 seq_printf(s, ", parent: %s/%s",
4671                            parent->bus ? parent->bus->name : "no-bus",
4672                            dev_name(parent));
4673         if (chip->label)
4674                 seq_printf(s, ", %s", chip->label);
4675         if (chip->can_sleep)
4676                 seq_printf(s, ", can sleep");
4677         seq_printf(s, ":\n");
4678
4679         if (chip->dbg_show)
4680                 chip->dbg_show(s, chip);
4681         else
4682                 gpiolib_dbg_show(s, gdev);
4683
4684         return 0;
4685 }
4686
4687 static const struct seq_operations gpiolib_seq_ops = {
4688         .start = gpiolib_seq_start,
4689         .next = gpiolib_seq_next,
4690         .stop = gpiolib_seq_stop,
4691         .show = gpiolib_seq_show,
4692 };
4693
4694 static int gpiolib_open(struct inode *inode, struct file *file)
4695 {
4696         return seq_open(file, &gpiolib_seq_ops);
4697 }
4698
4699 static const struct file_operations gpiolib_operations = {
4700         .owner          = THIS_MODULE,
4701         .open           = gpiolib_open,
4702         .read           = seq_read,
4703         .llseek         = seq_lseek,
4704         .release        = seq_release,
4705 };
4706
4707 static int __init gpiolib_debugfs_init(void)
4708 {
4709         /* /sys/kernel/debug/gpio */
4710         (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
4711                                 NULL, NULL, &gpiolib_operations);
4712         return 0;
4713 }
4714 subsys_initcall(gpiolib_debugfs_init);
4715
4716 #endif  /* DEBUG_FS */