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