1#include <linux/bitmap.h>
2#include <linux/kernel.h>
3#include <linux/module.h>
4#include <linux/interrupt.h>
5#include <linux/irq.h>
6#include <linux/spinlock.h>
7#include <linux/list.h>
8#include <linux/device.h>
9#include <linux/err.h>
10#include <linux/debugfs.h>
11#include <linux/seq_file.h>
12#include <linux/gpio.h>
13#include <linux/of_gpio.h>
14#include <linux/idr.h>
15#include <linux/slab.h>
16#include <linux/acpi.h>
17#include <linux/gpio/driver.h>
18#include <linux/gpio/machine.h>
19#include <linux/pinctrl/consumer.h>
20#include <linux/cdev.h>
21#include <linux/fs.h>
22#include <linux/uaccess.h>
23#include <linux/compat.h>
24#include <linux/anon_inodes.h>
25#include <linux/file.h>
26#include <linux/kfifo.h>
27#include <linux/poll.h>
28#include <linux/timekeeping.h>
29#include <uapi/linux/gpio.h>
30
31#include "gpiolib.h"
32
33#define CREATE_TRACE_POINTS
34#include <trace/events/gpio.h>
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50#ifdef DEBUG
51#define extra_checks 1
52#else
53#define extra_checks 0
54#endif
55
56
57static DEFINE_IDA(gpio_ida);
58static dev_t gpio_devt;
59#define GPIO_DEV_MAX 256
60static struct bus_type gpio_bus_type = {
61 .name = "gpio",
62};
63
64
65
66
67
68DEFINE_SPINLOCK(gpio_lock);
69
70static DEFINE_MUTEX(gpio_lookup_lock);
71static LIST_HEAD(gpio_lookup_list);
72LIST_HEAD(gpio_devices);
73
74static void gpiochip_free_hogs(struct gpio_chip *chip);
75static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
76 struct lock_class_key *lock_key,
77 struct lock_class_key *request_key);
78static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
79static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
80static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
81
82static bool gpiolib_initialized;
83
84static inline void desc_set_label(struct gpio_desc *d, const char *label)
85{
86 d->label = label;
87}
88
89
90
91
92
93
94
95
96
97struct gpio_desc *gpio_to_desc(unsigned gpio)
98{
99 struct gpio_device *gdev;
100 unsigned long flags;
101
102 spin_lock_irqsave(&gpio_lock, flags);
103
104 list_for_each_entry(gdev, &gpio_devices, list) {
105 if (gdev->base <= gpio &&
106 gdev->base + gdev->ngpio > gpio) {
107 spin_unlock_irqrestore(&gpio_lock, flags);
108 return &gdev->descs[gpio - gdev->base];
109 }
110 }
111
112 spin_unlock_irqrestore(&gpio_lock, flags);
113
114 if (!gpio_is_valid(gpio))
115 WARN(1, "invalid GPIO %d\n", gpio);
116
117 return NULL;
118}
119EXPORT_SYMBOL_GPL(gpio_to_desc);
120
121
122
123
124
125
126
127
128
129
130
131struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
132 u16 hwnum)
133{
134 struct gpio_device *gdev = chip->gpiodev;
135
136 if (hwnum >= gdev->ngpio)
137 return ERR_PTR(-EINVAL);
138
139 return &gdev->descs[hwnum];
140}
141
142
143
144
145
146
147
148
149
150
151
152int desc_to_gpio(const struct gpio_desc *desc)
153{
154 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
155}
156EXPORT_SYMBOL_GPL(desc_to_gpio);
157
158
159
160
161
162
163struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
164{
165 if (!desc || !desc->gdev)
166 return NULL;
167 return desc->gdev->chip;
168}
169EXPORT_SYMBOL_GPL(gpiod_to_chip);
170
171
172static int gpiochip_find_base(int ngpio)
173{
174 struct gpio_device *gdev;
175 int base = ARCH_NR_GPIOS - ngpio;
176
177 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
178
179 if (gdev->base + gdev->ngpio <= base)
180 break;
181 else
182
183 base = gdev->base - ngpio;
184 }
185
186 if (gpio_is_valid(base)) {
187 pr_debug("%s: found new base at %d\n", __func__, base);
188 return base;
189 } else {
190 pr_err("%s: cannot find free range\n", __func__);
191 return -ENOSPC;
192 }
193}
194
195
196
197
198
199
200
201
202
203int gpiod_get_direction(struct gpio_desc *desc)
204{
205 struct gpio_chip *chip;
206 unsigned offset;
207 int status = -EINVAL;
208
209 chip = gpiod_to_chip(desc);
210 offset = gpio_chip_hwgpio(desc);
211
212 if (!chip->get_direction)
213 return status;
214
215 status = chip->get_direction(chip, offset);
216 if (status > 0) {
217
218 status = 1;
219 clear_bit(FLAG_IS_OUT, &desc->flags);
220 }
221 if (status == 0) {
222
223 set_bit(FLAG_IS_OUT, &desc->flags);
224 }
225 return status;
226}
227EXPORT_SYMBOL_GPL(gpiod_get_direction);
228
229
230
231
232
233
234
235
236static int gpiodev_add_to_list(struct gpio_device *gdev)
237{
238 struct gpio_device *prev, *next;
239
240 if (list_empty(&gpio_devices)) {
241
242 list_add_tail(&gdev->list, &gpio_devices);
243 return 0;
244 }
245
246 next = list_entry(gpio_devices.next, struct gpio_device, list);
247 if (gdev->base + gdev->ngpio <= next->base) {
248
249 list_add(&gdev->list, &gpio_devices);
250 return 0;
251 }
252
253 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
254 if (prev->base + prev->ngpio <= gdev->base) {
255
256 list_add_tail(&gdev->list, &gpio_devices);
257 return 0;
258 }
259
260 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
261
262 if (&next->list == &gpio_devices)
263 break;
264
265
266 if (prev->base + prev->ngpio <= gdev->base
267 && gdev->base + gdev->ngpio <= next->base) {
268 list_add(&gdev->list, &prev->list);
269 return 0;
270 }
271 }
272
273 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
274 return -EBUSY;
275}
276
277
278
279
280static struct gpio_desc *gpio_name_to_desc(const char * const name)
281{
282 struct gpio_device *gdev;
283 unsigned long flags;
284
285 spin_lock_irqsave(&gpio_lock, flags);
286
287 list_for_each_entry(gdev, &gpio_devices, list) {
288 int i;
289
290 for (i = 0; i != gdev->ngpio; ++i) {
291 struct gpio_desc *desc = &gdev->descs[i];
292
293 if (!desc->name || !name)
294 continue;
295
296 if (!strcmp(desc->name, name)) {
297 spin_unlock_irqrestore(&gpio_lock, flags);
298 return desc;
299 }
300 }
301 }
302
303 spin_unlock_irqrestore(&gpio_lock, flags);
304
305 return NULL;
306}
307
308
309
310
311
312
313
314static int gpiochip_set_desc_names(struct gpio_chip *gc)
315{
316 struct gpio_device *gdev = gc->gpiodev;
317 int i;
318
319 if (!gc->names)
320 return 0;
321
322
323 for (i = 0; i != gc->ngpio; ++i) {
324 struct gpio_desc *gpio;
325
326 gpio = gpio_name_to_desc(gc->names[i]);
327 if (gpio)
328 dev_warn(&gdev->dev,
329 "Detected name collision for GPIO name '%s'\n",
330 gc->names[i]);
331 }
332
333
334 for (i = 0; i != gc->ngpio; ++i)
335 gdev->descs[i].name = gc->names[i];
336
337 return 0;
338}
339
340static unsigned long *gpiochip_allocate_mask(struct gpio_chip *chip)
341{
342 unsigned long *p;
343
344 p = kmalloc_array(BITS_TO_LONGS(chip->ngpio), sizeof(*p), GFP_KERNEL);
345 if (!p)
346 return NULL;
347
348
349 bitmap_fill(p, chip->ngpio);
350
351 return p;
352}
353
354static int gpiochip_init_valid_mask(struct gpio_chip *gpiochip)
355{
356#ifdef CONFIG_OF_GPIO
357 int size;
358 struct device_node *np = gpiochip->of_node;
359
360 size = of_property_count_u32_elems(np, "gpio-reserved-ranges");
361 if (size > 0 && size % 2 == 0)
362 gpiochip->need_valid_mask = true;
363#endif
364
365 if (!gpiochip->need_valid_mask)
366 return 0;
367
368 gpiochip->valid_mask = gpiochip_allocate_mask(gpiochip);
369 if (!gpiochip->valid_mask)
370 return -ENOMEM;
371
372 return 0;
373}
374
375static void gpiochip_free_valid_mask(struct gpio_chip *gpiochip)
376{
377 kfree(gpiochip->valid_mask);
378 gpiochip->valid_mask = NULL;
379}
380
381bool gpiochip_line_is_valid(const struct gpio_chip *gpiochip,
382 unsigned int offset)
383{
384
385 if (likely(!gpiochip->valid_mask))
386 return true;
387 return test_bit(offset, gpiochip->valid_mask);
388}
389EXPORT_SYMBOL_GPL(gpiochip_line_is_valid);
390
391
392
393
394
395
396
397
398
399
400
401
402struct linehandle_state {
403 struct gpio_device *gdev;
404 const char *label;
405 struct gpio_desc *descs[GPIOHANDLES_MAX];
406 u32 numdescs;
407};
408
409#define GPIOHANDLE_REQUEST_VALID_FLAGS \
410 (GPIOHANDLE_REQUEST_INPUT | \
411 GPIOHANDLE_REQUEST_OUTPUT | \
412 GPIOHANDLE_REQUEST_ACTIVE_LOW | \
413 GPIOHANDLE_REQUEST_OPEN_DRAIN | \
414 GPIOHANDLE_REQUEST_OPEN_SOURCE)
415
416static long linehandle_ioctl(struct file *filep, unsigned int cmd,
417 unsigned long arg)
418{
419 struct linehandle_state *lh = filep->private_data;
420 void __user *ip = (void __user *)arg;
421 struct gpiohandle_data ghd;
422 int vals[GPIOHANDLES_MAX];
423 int i;
424
425 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
426
427 int ret = gpiod_get_array_value_complex(false,
428 true,
429 lh->numdescs,
430 lh->descs,
431 vals);
432 if (ret)
433 return ret;
434
435 memset(&ghd, 0, sizeof(ghd));
436 for (i = 0; i < lh->numdescs; i++)
437 ghd.values[i] = vals[i];
438
439 if (copy_to_user(ip, &ghd, sizeof(ghd)))
440 return -EFAULT;
441
442 return 0;
443 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
444
445 if (copy_from_user(&ghd, ip, sizeof(ghd)))
446 return -EFAULT;
447
448
449 for (i = 0; i < lh->numdescs; i++)
450 vals[i] = !!ghd.values[i];
451
452
453 gpiod_set_array_value_complex(false,
454 true,
455 lh->numdescs,
456 lh->descs,
457 vals);
458 return 0;
459 }
460 return -EINVAL;
461}
462
463#ifdef CONFIG_COMPAT
464static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
465 unsigned long arg)
466{
467 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
468}
469#endif
470
471static int linehandle_release(struct inode *inode, struct file *filep)
472{
473 struct linehandle_state *lh = filep->private_data;
474 struct gpio_device *gdev = lh->gdev;
475 int i;
476
477 for (i = 0; i < lh->numdescs; i++)
478 gpiod_free(lh->descs[i]);
479 kfree(lh->label);
480 kfree(lh);
481 put_device(&gdev->dev);
482 return 0;
483}
484
485static const struct file_operations linehandle_fileops = {
486 .release = linehandle_release,
487 .owner = THIS_MODULE,
488 .llseek = noop_llseek,
489 .unlocked_ioctl = linehandle_ioctl,
490#ifdef CONFIG_COMPAT
491 .compat_ioctl = linehandle_ioctl_compat,
492#endif
493};
494
495static int linehandle_create(struct gpio_device *gdev, void __user *ip)
496{
497 struct gpiohandle_request handlereq;
498 struct linehandle_state *lh;
499 struct file *file;
500 int fd, i, count = 0, ret;
501 u32 lflags;
502
503 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
504 return -EFAULT;
505 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
506 return -EINVAL;
507
508 lflags = handlereq.flags;
509
510
511 if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS)
512 return -EINVAL;
513
514
515
516
517
518
519 if ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) &&
520 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE))
521 return -EINVAL;
522
523
524 if (!(lflags & GPIOHANDLE_REQUEST_OUTPUT) &&
525 ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) ||
526 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)))
527 return -EINVAL;
528
529 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
530 if (!lh)
531 return -ENOMEM;
532 lh->gdev = gdev;
533 get_device(&gdev->dev);
534
535
536 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
537 if (strlen(handlereq.consumer_label)) {
538 lh->label = kstrdup(handlereq.consumer_label,
539 GFP_KERNEL);
540 if (!lh->label) {
541 ret = -ENOMEM;
542 goto out_free_lh;
543 }
544 }
545
546
547 for (i = 0; i < handlereq.lines; i++) {
548 u32 offset = handlereq.lineoffsets[i];
549 struct gpio_desc *desc;
550
551 if (offset >= gdev->ngpio) {
552 ret = -EINVAL;
553 goto out_free_descs;
554 }
555
556 desc = &gdev->descs[offset];
557 ret = gpiod_request(desc, lh->label);
558 if (ret)
559 goto out_free_descs;
560 lh->descs[i] = desc;
561 count = i;
562
563 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
564 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
565 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
566 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
567 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
568 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
569
570 ret = gpiod_set_transitory(desc, false);
571 if (ret < 0)
572 goto out_free_descs;
573
574
575
576
577
578 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
579 int val = !!handlereq.default_values[i];
580
581 ret = gpiod_direction_output(desc, val);
582 if (ret)
583 goto out_free_descs;
584 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
585 ret = gpiod_direction_input(desc);
586 if (ret)
587 goto out_free_descs;
588 }
589 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
590 offset);
591 }
592
593 i--;
594 lh->numdescs = handlereq.lines;
595
596 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
597 if (fd < 0) {
598 ret = fd;
599 goto out_free_descs;
600 }
601
602 file = anon_inode_getfile("gpio-linehandle",
603 &linehandle_fileops,
604 lh,
605 O_RDONLY | O_CLOEXEC);
606 if (IS_ERR(file)) {
607 ret = PTR_ERR(file);
608 goto out_put_unused_fd;
609 }
610
611 handlereq.fd = fd;
612 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
613
614
615
616
617 fput(file);
618 put_unused_fd(fd);
619 return -EFAULT;
620 }
621
622 fd_install(fd, file);
623
624 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
625 lh->numdescs);
626
627 return 0;
628
629out_put_unused_fd:
630 put_unused_fd(fd);
631out_free_descs:
632 for (i = 0; i < count; i++)
633 gpiod_free(lh->descs[i]);
634 kfree(lh->label);
635out_free_lh:
636 kfree(lh);
637 put_device(&gdev->dev);
638 return ret;
639}
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660struct lineevent_state {
661 struct gpio_device *gdev;
662 const char *label;
663 struct gpio_desc *desc;
664 u32 eflags;
665 int irq;
666 wait_queue_head_t wait;
667 DECLARE_KFIFO(events, struct gpioevent_data, 16);
668 struct mutex read_lock;
669 u64 timestamp;
670};
671
672#define GPIOEVENT_REQUEST_VALID_FLAGS \
673 (GPIOEVENT_REQUEST_RISING_EDGE | \
674 GPIOEVENT_REQUEST_FALLING_EDGE)
675
676static __poll_t lineevent_poll(struct file *filep,
677 struct poll_table_struct *wait)
678{
679 struct lineevent_state *le = filep->private_data;
680 __poll_t events = 0;
681
682 poll_wait(filep, &le->wait, wait);
683
684 if (!kfifo_is_empty(&le->events))
685 events = EPOLLIN | EPOLLRDNORM;
686
687 return events;
688}
689
690
691static ssize_t lineevent_read(struct file *filep,
692 char __user *buf,
693 size_t count,
694 loff_t *f_ps)
695{
696 struct lineevent_state *le = filep->private_data;
697 unsigned int copied;
698 int ret;
699
700 if (count < sizeof(struct gpioevent_data))
701 return -EINVAL;
702
703 do {
704 if (kfifo_is_empty(&le->events)) {
705 if (filep->f_flags & O_NONBLOCK)
706 return -EAGAIN;
707
708 ret = wait_event_interruptible(le->wait,
709 !kfifo_is_empty(&le->events));
710 if (ret)
711 return ret;
712 }
713
714 if (mutex_lock_interruptible(&le->read_lock))
715 return -ERESTARTSYS;
716 ret = kfifo_to_user(&le->events, buf, count, &copied);
717 mutex_unlock(&le->read_lock);
718
719 if (ret)
720 return ret;
721
722
723
724
725
726
727
728 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
729 return -EAGAIN;
730
731 } while (copied == 0);
732
733 return copied;
734}
735
736static int lineevent_release(struct inode *inode, struct file *filep)
737{
738 struct lineevent_state *le = filep->private_data;
739 struct gpio_device *gdev = le->gdev;
740
741 free_irq(le->irq, le);
742 gpiod_free(le->desc);
743 kfree(le->label);
744 kfree(le);
745 put_device(&gdev->dev);
746 return 0;
747}
748
749static long lineevent_ioctl(struct file *filep, unsigned int cmd,
750 unsigned long arg)
751{
752 struct lineevent_state *le = filep->private_data;
753 void __user *ip = (void __user *)arg;
754 struct gpiohandle_data ghd;
755
756
757
758
759
760 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
761 int val;
762
763 memset(&ghd, 0, sizeof(ghd));
764
765 val = gpiod_get_value_cansleep(le->desc);
766 if (val < 0)
767 return val;
768 ghd.values[0] = val;
769
770 if (copy_to_user(ip, &ghd, sizeof(ghd)))
771 return -EFAULT;
772
773 return 0;
774 }
775 return -EINVAL;
776}
777
778#ifdef CONFIG_COMPAT
779static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
780 unsigned long arg)
781{
782 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
783}
784#endif
785
786static const struct file_operations lineevent_fileops = {
787 .release = lineevent_release,
788 .read = lineevent_read,
789 .poll = lineevent_poll,
790 .owner = THIS_MODULE,
791 .llseek = noop_llseek,
792 .unlocked_ioctl = lineevent_ioctl,
793#ifdef CONFIG_COMPAT
794 .compat_ioctl = lineevent_ioctl_compat,
795#endif
796};
797
798static irqreturn_t lineevent_irq_thread(int irq, void *p)
799{
800 struct lineevent_state *le = p;
801 struct gpioevent_data ge;
802 int ret, level;
803
804
805 memset(&ge, 0, sizeof(ge));
806
807 ge.timestamp = le->timestamp;
808 level = gpiod_get_value_cansleep(le->desc);
809
810 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
811 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
812 if (level)
813
814 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
815 else
816
817 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
818 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE && level) {
819
820 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
821 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE && !level) {
822
823 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
824 } else {
825 return IRQ_NONE;
826 }
827
828 ret = kfifo_put(&le->events, ge);
829 if (ret != 0)
830 wake_up_poll(&le->wait, EPOLLIN);
831
832 return IRQ_HANDLED;
833}
834
835static irqreturn_t lineevent_irq_handler(int irq, void *p)
836{
837 struct lineevent_state *le = p;
838
839
840
841
842
843 le->timestamp = ktime_get_real_ns();
844
845 return IRQ_WAKE_THREAD;
846}
847
848static int lineevent_create(struct gpio_device *gdev, void __user *ip)
849{
850 struct gpioevent_request eventreq;
851 struct lineevent_state *le;
852 struct gpio_desc *desc;
853 struct file *file;
854 u32 offset;
855 u32 lflags;
856 u32 eflags;
857 int fd;
858 int ret;
859 int irqflags = 0;
860
861 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
862 return -EFAULT;
863
864 le = kzalloc(sizeof(*le), GFP_KERNEL);
865 if (!le)
866 return -ENOMEM;
867 le->gdev = gdev;
868 get_device(&gdev->dev);
869
870
871 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
872 if (strlen(eventreq.consumer_label)) {
873 le->label = kstrdup(eventreq.consumer_label,
874 GFP_KERNEL);
875 if (!le->label) {
876 ret = -ENOMEM;
877 goto out_free_le;
878 }
879 }
880
881 offset = eventreq.lineoffset;
882 lflags = eventreq.handleflags;
883 eflags = eventreq.eventflags;
884
885 if (offset >= gdev->ngpio) {
886 ret = -EINVAL;
887 goto out_free_label;
888 }
889
890
891 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
892 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
893 ret = -EINVAL;
894 goto out_free_label;
895 }
896
897
898 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
899 ret = -EINVAL;
900 goto out_free_label;
901 }
902
903 desc = &gdev->descs[offset];
904 ret = gpiod_request(desc, le->label);
905 if (ret)
906 goto out_free_label;
907 le->desc = desc;
908 le->eflags = eflags;
909
910 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
911 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
912 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
913 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
914 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
915 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
916
917 ret = gpiod_direction_input(desc);
918 if (ret)
919 goto out_free_desc;
920
921 le->irq = gpiod_to_irq(desc);
922 if (le->irq <= 0) {
923 ret = -ENODEV;
924 goto out_free_desc;
925 }
926
927 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
928 irqflags |= IRQF_TRIGGER_RISING;
929 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
930 irqflags |= IRQF_TRIGGER_FALLING;
931 irqflags |= IRQF_ONESHOT;
932 irqflags |= IRQF_SHARED;
933
934 INIT_KFIFO(le->events);
935 init_waitqueue_head(&le->wait);
936 mutex_init(&le->read_lock);
937
938
939 ret = request_threaded_irq(le->irq,
940 lineevent_irq_handler,
941 lineevent_irq_thread,
942 irqflags,
943 le->label,
944 le);
945 if (ret)
946 goto out_free_desc;
947
948 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
949 if (fd < 0) {
950 ret = fd;
951 goto out_free_irq;
952 }
953
954 file = anon_inode_getfile("gpio-event",
955 &lineevent_fileops,
956 le,
957 O_RDONLY | O_CLOEXEC);
958 if (IS_ERR(file)) {
959 ret = PTR_ERR(file);
960 goto out_put_unused_fd;
961 }
962
963 eventreq.fd = fd;
964 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
965
966
967
968
969 fput(file);
970 put_unused_fd(fd);
971 return -EFAULT;
972 }
973
974 fd_install(fd, file);
975
976 return 0;
977
978out_put_unused_fd:
979 put_unused_fd(fd);
980out_free_irq:
981 free_irq(le->irq, le);
982out_free_desc:
983 gpiod_free(le->desc);
984out_free_label:
985 kfree(le->label);
986out_free_le:
987 kfree(le);
988 put_device(&gdev->dev);
989 return ret;
990}
991
992
993
994
995static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
996{
997 struct gpio_device *gdev = filp->private_data;
998 struct gpio_chip *chip = gdev->chip;
999 void __user *ip = (void __user *)arg;
1000
1001
1002 if (!chip)
1003 return -ENODEV;
1004
1005
1006 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
1007 struct gpiochip_info chipinfo;
1008
1009 memset(&chipinfo, 0, sizeof(chipinfo));
1010
1011 strncpy(chipinfo.name, dev_name(&gdev->dev),
1012 sizeof(chipinfo.name));
1013 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
1014 strncpy(chipinfo.label, gdev->label,
1015 sizeof(chipinfo.label));
1016 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
1017 chipinfo.lines = gdev->ngpio;
1018 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
1019 return -EFAULT;
1020 return 0;
1021 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
1022 struct gpioline_info lineinfo;
1023 struct gpio_desc *desc;
1024
1025 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
1026 return -EFAULT;
1027 if (lineinfo.line_offset >= gdev->ngpio)
1028 return -EINVAL;
1029
1030 desc = &gdev->descs[lineinfo.line_offset];
1031 if (desc->name) {
1032 strncpy(lineinfo.name, desc->name,
1033 sizeof(lineinfo.name));
1034 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
1035 } else {
1036 lineinfo.name[0] = '\0';
1037 }
1038 if (desc->label) {
1039 strncpy(lineinfo.consumer, desc->label,
1040 sizeof(lineinfo.consumer));
1041 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
1042 } else {
1043 lineinfo.consumer[0] = '\0';
1044 }
1045
1046
1047
1048
1049
1050 lineinfo.flags = 0;
1051 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
1052 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
1053 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
1054 test_bit(FLAG_EXPORT, &desc->flags) ||
1055 test_bit(FLAG_SYSFS, &desc->flags))
1056 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
1057 if (test_bit(FLAG_IS_OUT, &desc->flags))
1058 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
1059 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1060 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
1061 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1062 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
1063 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1064 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
1065
1066 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
1067 return -EFAULT;
1068 return 0;
1069 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
1070 return linehandle_create(gdev, ip);
1071 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
1072 return lineevent_create(gdev, ip);
1073 }
1074 return -EINVAL;
1075}
1076
1077#ifdef CONFIG_COMPAT
1078static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
1079 unsigned long arg)
1080{
1081 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1082}
1083#endif
1084
1085
1086
1087
1088
1089
1090
1091static int gpio_chrdev_open(struct inode *inode, struct file *filp)
1092{
1093 struct gpio_device *gdev = container_of(inode->i_cdev,
1094 struct gpio_device, chrdev);
1095
1096
1097 if (!gdev->chip)
1098 return -ENODEV;
1099 get_device(&gdev->dev);
1100 filp->private_data = gdev;
1101
1102 return nonseekable_open(inode, filp);
1103}
1104
1105
1106
1107
1108
1109
1110
1111static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1112{
1113 struct gpio_device *gdev = container_of(inode->i_cdev,
1114 struct gpio_device, chrdev);
1115
1116 put_device(&gdev->dev);
1117 return 0;
1118}
1119
1120
1121static const struct file_operations gpio_fileops = {
1122 .release = gpio_chrdev_release,
1123 .open = gpio_chrdev_open,
1124 .owner = THIS_MODULE,
1125 .llseek = no_llseek,
1126 .unlocked_ioctl = gpio_ioctl,
1127#ifdef CONFIG_COMPAT
1128 .compat_ioctl = gpio_ioctl_compat,
1129#endif
1130};
1131
1132static void gpiodevice_release(struct device *dev)
1133{
1134 struct gpio_device *gdev = dev_get_drvdata(dev);
1135
1136 list_del(&gdev->list);
1137 ida_simple_remove(&gpio_ida, gdev->id);
1138 kfree_const(gdev->label);
1139 kfree(gdev->descs);
1140 kfree(gdev);
1141}
1142
1143static int gpiochip_setup_dev(struct gpio_device *gdev)
1144{
1145 int status;
1146
1147 cdev_init(&gdev->chrdev, &gpio_fileops);
1148 gdev->chrdev.owner = THIS_MODULE;
1149 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
1150
1151 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
1152 if (status)
1153 return status;
1154
1155 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1156 MAJOR(gpio_devt), gdev->id);
1157
1158 status = gpiochip_sysfs_register(gdev);
1159 if (status)
1160 goto err_remove_device;
1161
1162
1163 gdev->dev.release = gpiodevice_release;
1164 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1165 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1166 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1167
1168 return 0;
1169
1170err_remove_device:
1171 cdev_device_del(&gdev->chrdev, &gdev->dev);
1172 return status;
1173}
1174
1175static void gpiochip_setup_devs(void)
1176{
1177 struct gpio_device *gdev;
1178 int err;
1179
1180 list_for_each_entry(gdev, &gpio_devices, list) {
1181 err = gpiochip_setup_dev(gdev);
1182 if (err)
1183 pr_err("%s: Failed to initialize gpio device (%d)\n",
1184 dev_name(&gdev->dev), err);
1185 }
1186}
1187
1188int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
1189 struct lock_class_key *lock_key,
1190 struct lock_class_key *request_key)
1191{
1192 unsigned long flags;
1193 int status = 0;
1194 unsigned i;
1195 int base = chip->base;
1196 struct gpio_device *gdev;
1197
1198
1199
1200
1201
1202 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
1203 if (!gdev)
1204 return -ENOMEM;
1205 gdev->dev.bus = &gpio_bus_type;
1206 gdev->chip = chip;
1207 chip->gpiodev = gdev;
1208 if (chip->parent) {
1209 gdev->dev.parent = chip->parent;
1210 gdev->dev.of_node = chip->parent->of_node;
1211 }
1212
1213#ifdef CONFIG_OF_GPIO
1214
1215 if (chip->of_node)
1216 gdev->dev.of_node = chip->of_node;
1217#endif
1218
1219 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1220 if (gdev->id < 0) {
1221 status = gdev->id;
1222 goto err_free_gdev;
1223 }
1224 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1225 device_initialize(&gdev->dev);
1226 dev_set_drvdata(&gdev->dev, gdev);
1227 if (chip->parent && chip->parent->driver)
1228 gdev->owner = chip->parent->driver->owner;
1229 else if (chip->owner)
1230
1231 gdev->owner = chip->owner;
1232 else
1233 gdev->owner = THIS_MODULE;
1234
1235 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
1236 if (!gdev->descs) {
1237 status = -ENOMEM;
1238 goto err_free_gdev;
1239 }
1240
1241 if (chip->ngpio == 0) {
1242 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
1243 status = -EINVAL;
1244 goto err_free_descs;
1245 }
1246
1247 gdev->label = kstrdup_const(chip->label ?: "unknown", GFP_KERNEL);
1248 if (!gdev->label) {
1249 status = -ENOMEM;
1250 goto err_free_descs;
1251 }
1252
1253 gdev->ngpio = chip->ngpio;
1254 gdev->data = data;
1255
1256 spin_lock_irqsave(&gpio_lock, flags);
1257
1258
1259
1260
1261
1262
1263
1264
1265 if (base < 0) {
1266 base = gpiochip_find_base(chip->ngpio);
1267 if (base < 0) {
1268 status = base;
1269 spin_unlock_irqrestore(&gpio_lock, flags);
1270 goto err_free_label;
1271 }
1272
1273
1274
1275
1276
1277
1278 chip->base = base;
1279 }
1280 gdev->base = base;
1281
1282 status = gpiodev_add_to_list(gdev);
1283 if (status) {
1284 spin_unlock_irqrestore(&gpio_lock, flags);
1285 goto err_free_label;
1286 }
1287
1288 spin_unlock_irqrestore(&gpio_lock, flags);
1289
1290 for (i = 0; i < chip->ngpio; i++) {
1291 struct gpio_desc *desc = &gdev->descs[i];
1292
1293 desc->gdev = gdev;
1294
1295
1296
1297
1298
1299
1300
1301 desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0;
1302 }
1303
1304#ifdef CONFIG_PINCTRL
1305 INIT_LIST_HEAD(&gdev->pin_ranges);
1306#endif
1307
1308 status = gpiochip_set_desc_names(chip);
1309 if (status)
1310 goto err_remove_from_list;
1311
1312 status = gpiochip_irqchip_init_valid_mask(chip);
1313 if (status)
1314 goto err_remove_from_list;
1315
1316 status = gpiochip_init_valid_mask(chip);
1317 if (status)
1318 goto err_remove_irqchip_mask;
1319
1320 status = gpiochip_add_irqchip(chip, lock_key, request_key);
1321 if (status)
1322 goto err_remove_chip;
1323
1324 status = of_gpiochip_add(chip);
1325 if (status)
1326 goto err_remove_chip;
1327
1328 acpi_gpiochip_add(chip);
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338 if (gpiolib_initialized) {
1339 status = gpiochip_setup_dev(gdev);
1340 if (status)
1341 goto err_remove_chip;
1342 }
1343 return 0;
1344
1345err_remove_chip:
1346 acpi_gpiochip_remove(chip);
1347 gpiochip_free_hogs(chip);
1348 of_gpiochip_remove(chip);
1349 gpiochip_free_valid_mask(chip);
1350err_remove_irqchip_mask:
1351 gpiochip_irqchip_free_valid_mask(chip);
1352err_remove_from_list:
1353 spin_lock_irqsave(&gpio_lock, flags);
1354 list_del(&gdev->list);
1355 spin_unlock_irqrestore(&gpio_lock, flags);
1356err_free_label:
1357 kfree_const(gdev->label);
1358err_free_descs:
1359 kfree(gdev->descs);
1360err_free_gdev:
1361 ida_simple_remove(&gpio_ida, gdev->id);
1362
1363 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
1364 gdev->base, gdev->base + gdev->ngpio - 1,
1365 chip->label ? : "generic");
1366 kfree(gdev);
1367 return status;
1368}
1369EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
1370
1371
1372
1373
1374
1375
1376
1377
1378void *gpiochip_get_data(struct gpio_chip *chip)
1379{
1380 return chip->gpiodev->data;
1381}
1382EXPORT_SYMBOL_GPL(gpiochip_get_data);
1383
1384
1385
1386
1387
1388
1389
1390void gpiochip_remove(struct gpio_chip *chip)
1391{
1392 struct gpio_device *gdev = chip->gpiodev;
1393 struct gpio_desc *desc;
1394 unsigned long flags;
1395 unsigned i;
1396 bool requested = false;
1397
1398
1399 gpiochip_sysfs_unregister(gdev);
1400 gpiochip_free_hogs(chip);
1401
1402 gdev->chip = NULL;
1403 gpiochip_irqchip_remove(chip);
1404 acpi_gpiochip_remove(chip);
1405 gpiochip_remove_pin_ranges(chip);
1406 of_gpiochip_remove(chip);
1407 gpiochip_free_valid_mask(chip);
1408
1409
1410
1411
1412 gdev->data = NULL;
1413
1414 spin_lock_irqsave(&gpio_lock, flags);
1415 for (i = 0; i < gdev->ngpio; i++) {
1416 desc = &gdev->descs[i];
1417 if (test_bit(FLAG_REQUESTED, &desc->flags))
1418 requested = true;
1419 }
1420 spin_unlock_irqrestore(&gpio_lock, flags);
1421
1422 if (requested)
1423 dev_crit(&gdev->dev,
1424 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
1425
1426
1427
1428
1429
1430
1431
1432 cdev_device_del(&gdev->chrdev, &gdev->dev);
1433 put_device(&gdev->dev);
1434}
1435EXPORT_SYMBOL_GPL(gpiochip_remove);
1436
1437static void devm_gpio_chip_release(struct device *dev, void *res)
1438{
1439 struct gpio_chip *chip = *(struct gpio_chip **)res;
1440
1441 gpiochip_remove(chip);
1442}
1443
1444static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1445
1446{
1447 struct gpio_chip **r = res;
1448
1449 if (!r || !*r) {
1450 WARN_ON(!r || !*r);
1451 return 0;
1452 }
1453
1454 return *r == data;
1455}
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1473 void *data)
1474{
1475 struct gpio_chip **ptr;
1476 int ret;
1477
1478 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1479 GFP_KERNEL);
1480 if (!ptr)
1481 return -ENOMEM;
1482
1483 ret = gpiochip_add_data(chip, data);
1484 if (ret < 0) {
1485 devres_free(ptr);
1486 return ret;
1487 }
1488
1489 *ptr = chip;
1490 devres_add(dev, ptr);
1491
1492 return 0;
1493}
1494EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1495
1496
1497
1498
1499
1500
1501
1502
1503void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1504{
1505 int ret;
1506
1507 ret = devres_release(dev, devm_gpio_chip_release,
1508 devm_gpio_chip_match, chip);
1509 WARN_ON(ret);
1510}
1511EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524struct gpio_chip *gpiochip_find(void *data,
1525 int (*match)(struct gpio_chip *chip,
1526 void *data))
1527{
1528 struct gpio_device *gdev;
1529 struct gpio_chip *chip = NULL;
1530 unsigned long flags;
1531
1532 spin_lock_irqsave(&gpio_lock, flags);
1533 list_for_each_entry(gdev, &gpio_devices, list)
1534 if (gdev->chip && match(gdev->chip, data)) {
1535 chip = gdev->chip;
1536 break;
1537 }
1538
1539 spin_unlock_irqrestore(&gpio_lock, flags);
1540
1541 return chip;
1542}
1543EXPORT_SYMBOL_GPL(gpiochip_find);
1544
1545static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1546{
1547 const char *name = data;
1548
1549 return !strcmp(chip->label, name);
1550}
1551
1552static struct gpio_chip *find_chip_by_name(const char *name)
1553{
1554 return gpiochip_find((void *)name, gpiochip_match_name);
1555}
1556
1557#ifdef CONFIG_GPIOLIB_IRQCHIP
1558
1559
1560
1561
1562
1563static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1564{
1565 if (!gpiochip->irq.need_valid_mask)
1566 return 0;
1567
1568 gpiochip->irq.valid_mask = gpiochip_allocate_mask(gpiochip);
1569 if (!gpiochip->irq.valid_mask)
1570 return -ENOMEM;
1571
1572 return 0;
1573}
1574
1575static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1576{
1577 kfree(gpiochip->irq.valid_mask);
1578 gpiochip->irq.valid_mask = NULL;
1579}
1580
1581bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1582 unsigned int offset)
1583{
1584 if (!gpiochip_line_is_valid(gpiochip, offset))
1585 return false;
1586
1587 if (likely(!gpiochip->irq.valid_mask))
1588 return true;
1589 return test_bit(offset, gpiochip->irq.valid_mask);
1590}
1591EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1604 struct irq_chip *irqchip,
1605 unsigned int parent_irq,
1606 irq_flow_handler_t parent_handler)
1607{
1608 unsigned int offset;
1609
1610 if (!gpiochip->irq.domain) {
1611 chip_err(gpiochip, "called %s before setting up irqchip\n",
1612 __func__);
1613 return;
1614 }
1615
1616 if (parent_handler) {
1617 if (gpiochip->can_sleep) {
1618 chip_err(gpiochip,
1619 "you cannot have chained interrupts on a "
1620 "chip that may sleep\n");
1621 return;
1622 }
1623
1624
1625
1626
1627 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1628 gpiochip);
1629
1630 gpiochip->irq.parents = &parent_irq;
1631 gpiochip->irq.num_parents = 1;
1632 }
1633
1634
1635 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1636 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1637 continue;
1638 irq_set_parent(irq_find_mapping(gpiochip->irq.domain, offset),
1639 parent_irq);
1640 }
1641}
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1654 struct irq_chip *irqchip,
1655 unsigned int parent_irq,
1656 irq_flow_handler_t parent_handler)
1657{
1658 if (gpiochip->irq.threaded) {
1659 chip_err(gpiochip, "tried to chain a threaded gpiochip\n");
1660 return;
1661 }
1662
1663 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1664 parent_handler);
1665}
1666EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1667
1668
1669
1670
1671
1672
1673
1674
1675void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1676 struct irq_chip *irqchip,
1677 unsigned int parent_irq)
1678{
1679 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1680 NULL);
1681}
1682EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1695 irq_hw_number_t hwirq)
1696{
1697 struct gpio_chip *chip = d->host_data;
1698 int err = 0;
1699
1700 if (!gpiochip_irqchip_irq_valid(chip, hwirq))
1701 return -ENXIO;
1702
1703 irq_set_chip_data(irq, chip);
1704
1705
1706
1707
1708 irq_set_lockdep_class(irq, chip->irq.lock_key, chip->irq.request_key);
1709 irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler);
1710
1711 if (chip->irq.threaded)
1712 irq_set_nested_thread(irq, 1);
1713 irq_set_noprobe(irq);
1714
1715 if (chip->irq.num_parents == 1)
1716 err = irq_set_parent(irq, chip->irq.parents[0]);
1717 else if (chip->irq.map)
1718 err = irq_set_parent(irq, chip->irq.map[hwirq]);
1719
1720 if (err < 0)
1721 return err;
1722
1723
1724
1725
1726
1727 if (chip->irq.default_type != IRQ_TYPE_NONE)
1728 irq_set_irq_type(irq, chip->irq.default_type);
1729
1730 return 0;
1731}
1732EXPORT_SYMBOL_GPL(gpiochip_irq_map);
1733
1734void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1735{
1736 struct gpio_chip *chip = d->host_data;
1737
1738 if (chip->irq.threaded)
1739 irq_set_nested_thread(irq, 0);
1740 irq_set_chip_and_handler(irq, NULL, NULL);
1741 irq_set_chip_data(irq, NULL);
1742}
1743EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
1744
1745static const struct irq_domain_ops gpiochip_domain_ops = {
1746 .map = gpiochip_irq_map,
1747 .unmap = gpiochip_irq_unmap,
1748
1749 .xlate = irq_domain_xlate_twocell,
1750};
1751
1752static int gpiochip_irq_reqres(struct irq_data *d)
1753{
1754 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1755
1756 if (!try_module_get(chip->gpiodev->owner))
1757 return -ENODEV;
1758
1759 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
1760 chip_err(chip,
1761 "unable to lock HW IRQ %lu for IRQ\n",
1762 d->hwirq);
1763 module_put(chip->gpiodev->owner);
1764 return -EINVAL;
1765 }
1766 return 0;
1767}
1768
1769static void gpiochip_irq_relres(struct irq_data *d)
1770{
1771 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1772
1773 gpiochip_unlock_as_irq(chip, d->hwirq);
1774 module_put(chip->gpiodev->owner);
1775}
1776
1777static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1778{
1779 if (!gpiochip_irqchip_irq_valid(chip, offset))
1780 return -ENXIO;
1781
1782 return irq_create_mapping(chip->irq.domain, offset);
1783}
1784
1785
1786
1787
1788
1789
1790
1791static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
1792 struct lock_class_key *lock_key,
1793 struct lock_class_key *request_key)
1794{
1795 struct irq_chip *irqchip = gpiochip->irq.chip;
1796 const struct irq_domain_ops *ops;
1797 struct device_node *np;
1798 unsigned int type;
1799 unsigned int i;
1800
1801 if (!irqchip)
1802 return 0;
1803
1804 if (gpiochip->irq.parent_handler && gpiochip->can_sleep) {
1805 chip_err(gpiochip, "you cannot have chained interrupts on a "
1806 "chip that may sleep\n");
1807 return -EINVAL;
1808 }
1809
1810 np = gpiochip->gpiodev->dev.of_node;
1811 type = gpiochip->irq.default_type;
1812
1813
1814
1815
1816
1817
1818 if (WARN(np && type != IRQ_TYPE_NONE,
1819 "%s: Ignoring %u default trigger\n", np->full_name, type))
1820 type = IRQ_TYPE_NONE;
1821
1822 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1823 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1824 "Ignoring %u default trigger\n", type);
1825 type = IRQ_TYPE_NONE;
1826 }
1827
1828 gpiochip->to_irq = gpiochip_to_irq;
1829 gpiochip->irq.default_type = type;
1830 gpiochip->irq.lock_key = lock_key;
1831 gpiochip->irq.request_key = request_key;
1832
1833 if (gpiochip->irq.domain_ops)
1834 ops = gpiochip->irq.domain_ops;
1835 else
1836 ops = &gpiochip_domain_ops;
1837
1838 gpiochip->irq.domain = irq_domain_add_simple(np, gpiochip->ngpio,
1839 gpiochip->irq.first,
1840 ops, gpiochip);
1841 if (!gpiochip->irq.domain)
1842 return -EINVAL;
1843
1844
1845
1846
1847
1848 if (!irqchip->irq_request_resources &&
1849 !irqchip->irq_release_resources) {
1850 irqchip->irq_request_resources = gpiochip_irq_reqres;
1851 irqchip->irq_release_resources = gpiochip_irq_relres;
1852 }
1853
1854 if (gpiochip->irq.parent_handler) {
1855 void *data = gpiochip->irq.parent_handler_data ?: gpiochip;
1856
1857 for (i = 0; i < gpiochip->irq.num_parents; i++) {
1858
1859
1860
1861
1862
1863 irq_set_chained_handler_and_data(gpiochip->irq.parents[i],
1864 gpiochip->irq.parent_handler,
1865 data);
1866 }
1867 }
1868
1869 acpi_gpiochip_request_interrupts(gpiochip);
1870
1871 return 0;
1872}
1873
1874
1875
1876
1877
1878
1879
1880static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1881{
1882 unsigned int offset;
1883
1884 acpi_gpiochip_free_interrupts(gpiochip);
1885
1886 if (gpiochip->irq.chip && gpiochip->irq.parent_handler) {
1887 struct gpio_irq_chip *irq = &gpiochip->irq;
1888 unsigned int i;
1889
1890 for (i = 0; i < irq->num_parents; i++)
1891 irq_set_chained_handler_and_data(irq->parents[i],
1892 NULL, NULL);
1893 }
1894
1895
1896 if (gpiochip->irq.domain) {
1897 unsigned int irq;
1898
1899 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1900 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1901 continue;
1902
1903 irq = irq_find_mapping(gpiochip->irq.domain, offset);
1904 irq_dispose_mapping(irq);
1905 }
1906
1907 irq_domain_remove(gpiochip->irq.domain);
1908 }
1909
1910 if (gpiochip->irq.chip) {
1911 gpiochip->irq.chip->irq_request_resources = NULL;
1912 gpiochip->irq.chip->irq_release_resources = NULL;
1913 gpiochip->irq.chip = NULL;
1914 }
1915
1916 gpiochip_irqchip_free_valid_mask(gpiochip);
1917}
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
1947 struct irq_chip *irqchip,
1948 unsigned int first_irq,
1949 irq_flow_handler_t handler,
1950 unsigned int type,
1951 bool threaded,
1952 struct lock_class_key *lock_key,
1953 struct lock_class_key *request_key)
1954{
1955 struct device_node *of_node;
1956
1957 if (!gpiochip || !irqchip)
1958 return -EINVAL;
1959
1960 if (!gpiochip->parent) {
1961 pr_err("missing gpiochip .dev parent pointer\n");
1962 return -EINVAL;
1963 }
1964 gpiochip->irq.threaded = threaded;
1965 of_node = gpiochip->parent->of_node;
1966#ifdef CONFIG_OF_GPIO
1967
1968
1969
1970
1971
1972 if (gpiochip->of_node)
1973 of_node = gpiochip->of_node;
1974#endif
1975
1976
1977
1978
1979
1980 if (WARN(of_node && type != IRQ_TYPE_NONE,
1981 "%pOF: Ignoring %d default trigger\n", of_node, type))
1982 type = IRQ_TYPE_NONE;
1983 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1984 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1985 "Ignoring %d default trigger\n", type);
1986 type = IRQ_TYPE_NONE;
1987 }
1988
1989 gpiochip->irq.chip = irqchip;
1990 gpiochip->irq.handler = handler;
1991 gpiochip->irq.default_type = type;
1992 gpiochip->to_irq = gpiochip_to_irq;
1993 gpiochip->irq.lock_key = lock_key;
1994 gpiochip->irq.request_key = request_key;
1995 gpiochip->irq.domain = irq_domain_add_simple(of_node,
1996 gpiochip->ngpio, first_irq,
1997 &gpiochip_domain_ops, gpiochip);
1998 if (!gpiochip->irq.domain) {
1999 gpiochip->irq.chip = NULL;
2000 return -EINVAL;
2001 }
2002
2003
2004
2005
2006
2007 if (!irqchip->irq_request_resources &&
2008 !irqchip->irq_release_resources) {
2009 irqchip->irq_request_resources = gpiochip_irq_reqres;
2010 irqchip->irq_release_resources = gpiochip_irq_relres;
2011 }
2012
2013 acpi_gpiochip_request_interrupts(gpiochip);
2014
2015 return 0;
2016}
2017EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
2018
2019#else
2020
2021static inline int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
2022 struct lock_class_key *lock_key,
2023 struct lock_class_key *request_key)
2024{
2025 return 0;
2026}
2027
2028static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
2029static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
2030{
2031 return 0;
2032}
2033static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
2034{ }
2035
2036#endif
2037
2038
2039
2040
2041
2042
2043int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
2044{
2045 return pinctrl_gpio_request(chip->gpiodev->base + offset);
2046}
2047EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2048
2049
2050
2051
2052
2053
2054void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
2055{
2056 pinctrl_gpio_free(chip->gpiodev->base + offset);
2057}
2058EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2059
2060
2061
2062
2063
2064
2065
2066int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
2067 unsigned long config)
2068{
2069 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
2070}
2071EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2072
2073#ifdef CONFIG_PINCTRL
2074
2075
2076
2077
2078
2079
2080
2081
2082int gpiochip_add_pingroup_range(struct gpio_chip *chip,
2083 struct pinctrl_dev *pctldev,
2084 unsigned int gpio_offset, const char *pin_group)
2085{
2086 struct gpio_pin_range *pin_range;
2087 struct gpio_device *gdev = chip->gpiodev;
2088 int ret;
2089
2090 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2091 if (!pin_range) {
2092 chip_err(chip, "failed to allocate pin ranges\n");
2093 return -ENOMEM;
2094 }
2095
2096
2097 pin_range->range.id = gpio_offset;
2098 pin_range->range.gc = chip;
2099 pin_range->range.name = chip->label;
2100 pin_range->range.base = gdev->base + gpio_offset;
2101 pin_range->pctldev = pctldev;
2102
2103 ret = pinctrl_get_group_pins(pctldev, pin_group,
2104 &pin_range->range.pins,
2105 &pin_range->range.npins);
2106 if (ret < 0) {
2107 kfree(pin_range);
2108 return ret;
2109 }
2110
2111 pinctrl_add_gpio_range(pctldev, &pin_range->range);
2112
2113 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2114 gpio_offset, gpio_offset + pin_range->range.npins - 1,
2115 pinctrl_dev_get_devname(pctldev), pin_group);
2116
2117 list_add_tail(&pin_range->node, &gdev->pin_ranges);
2118
2119 return 0;
2120}
2121EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
2136 unsigned int gpio_offset, unsigned int pin_offset,
2137 unsigned int npins)
2138{
2139 struct gpio_pin_range *pin_range;
2140 struct gpio_device *gdev = chip->gpiodev;
2141 int ret;
2142
2143 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2144 if (!pin_range) {
2145 chip_err(chip, "failed to allocate pin ranges\n");
2146 return -ENOMEM;
2147 }
2148
2149
2150 pin_range->range.id = gpio_offset;
2151 pin_range->range.gc = chip;
2152 pin_range->range.name = chip->label;
2153 pin_range->range.base = gdev->base + gpio_offset;
2154 pin_range->range.pin_base = pin_offset;
2155 pin_range->range.npins = npins;
2156 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
2157 &pin_range->range);
2158 if (IS_ERR(pin_range->pctldev)) {
2159 ret = PTR_ERR(pin_range->pctldev);
2160 chip_err(chip, "could not create pin range\n");
2161 kfree(pin_range);
2162 return ret;
2163 }
2164 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2165 gpio_offset, gpio_offset + npins - 1,
2166 pinctl_name,
2167 pin_offset, pin_offset + npins - 1);
2168
2169 list_add_tail(&pin_range->node, &gdev->pin_ranges);
2170
2171 return 0;
2172}
2173EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
2174
2175
2176
2177
2178
2179void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
2180{
2181 struct gpio_pin_range *pin_range, *tmp;
2182 struct gpio_device *gdev = chip->gpiodev;
2183
2184 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
2185 list_del(&pin_range->node);
2186 pinctrl_remove_gpio_range(pin_range->pctldev,
2187 &pin_range->range);
2188 kfree(pin_range);
2189 }
2190}
2191EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2192
2193#endif
2194
2195
2196
2197
2198
2199static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
2200{
2201 struct gpio_chip *chip = desc->gdev->chip;
2202 int status;
2203 unsigned long flags;
2204
2205 spin_lock_irqsave(&gpio_lock, flags);
2206
2207
2208
2209
2210
2211 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2212 desc_set_label(desc, label ? : "?");
2213 status = 0;
2214 } else {
2215 status = -EBUSY;
2216 goto done;
2217 }
2218
2219 if (chip->request) {
2220
2221 spin_unlock_irqrestore(&gpio_lock, flags);
2222 status = chip->request(chip, gpio_chip_hwgpio(desc));
2223 spin_lock_irqsave(&gpio_lock, flags);
2224
2225 if (status < 0) {
2226 desc_set_label(desc, NULL);
2227 clear_bit(FLAG_REQUESTED, &desc->flags);
2228 goto done;
2229 }
2230 }
2231 if (chip->get_direction) {
2232
2233 spin_unlock_irqrestore(&gpio_lock, flags);
2234 gpiod_get_direction(desc);
2235 spin_lock_irqsave(&gpio_lock, flags);
2236 }
2237done:
2238 spin_unlock_irqrestore(&gpio_lock, flags);
2239 return status;
2240}
2241
2242
2243
2244
2245
2246
2247
2248static int validate_desc(const struct gpio_desc *desc, const char *func)
2249{
2250 if (!desc)
2251 return 0;
2252 if (IS_ERR(desc)) {
2253 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2254 return PTR_ERR(desc);
2255 }
2256 if (!desc->gdev) {
2257 pr_warn("%s: invalid GPIO (no device)\n", func);
2258 return -EINVAL;
2259 }
2260 if (!desc->gdev->chip) {
2261 dev_warn(&desc->gdev->dev,
2262 "%s: backing chip is gone\n", func);
2263 return 0;
2264 }
2265 return 1;
2266}
2267
2268#define VALIDATE_DESC(desc) do { \
2269 int __valid = validate_desc(desc, __func__); \
2270 if (__valid <= 0) \
2271 return __valid; \
2272 } while (0)
2273
2274#define VALIDATE_DESC_VOID(desc) do { \
2275 int __valid = validate_desc(desc, __func__); \
2276 if (__valid <= 0) \
2277 return; \
2278 } while (0)
2279
2280int gpiod_request(struct gpio_desc *desc, const char *label)
2281{
2282 int status = -EPROBE_DEFER;
2283 struct gpio_device *gdev;
2284
2285 VALIDATE_DESC(desc);
2286 gdev = desc->gdev;
2287
2288 if (try_module_get(gdev->owner)) {
2289 status = gpiod_request_commit(desc, label);
2290 if (status < 0)
2291 module_put(gdev->owner);
2292 else
2293 get_device(&gdev->dev);
2294 }
2295
2296 if (status)
2297 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
2298
2299 return status;
2300}
2301
2302static bool gpiod_free_commit(struct gpio_desc *desc)
2303{
2304 bool ret = false;
2305 unsigned long flags;
2306 struct gpio_chip *chip;
2307
2308 might_sleep();
2309
2310 gpiod_unexport(desc);
2311
2312 spin_lock_irqsave(&gpio_lock, flags);
2313
2314 chip = desc->gdev->chip;
2315 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2316 if (chip->free) {
2317 spin_unlock_irqrestore(&gpio_lock, flags);
2318 might_sleep_if(chip->can_sleep);
2319 chip->free(chip, gpio_chip_hwgpio(desc));
2320 spin_lock_irqsave(&gpio_lock, flags);
2321 }
2322 desc_set_label(desc, NULL);
2323 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
2324 clear_bit(FLAG_REQUESTED, &desc->flags);
2325 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
2326 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
2327 clear_bit(FLAG_IS_HOGGED, &desc->flags);
2328 ret = true;
2329 }
2330
2331 spin_unlock_irqrestore(&gpio_lock, flags);
2332 return ret;
2333}
2334
2335void gpiod_free(struct gpio_desc *desc)
2336{
2337 if (desc && desc->gdev && gpiod_free_commit(desc)) {
2338 module_put(desc->gdev->owner);
2339 put_device(&desc->gdev->dev);
2340 } else {
2341 WARN_ON(extra_checks);
2342 }
2343}
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2359{
2360 struct gpio_desc *desc;
2361
2362 if (offset >= chip->ngpio)
2363 return NULL;
2364
2365 desc = &chip->gpiodev->descs[offset];
2366
2367 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
2368 return NULL;
2369 return desc->label;
2370}
2371EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2390 const char *label)
2391{
2392 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2393 int err;
2394
2395 if (IS_ERR(desc)) {
2396 chip_err(chip, "failed to get GPIO descriptor\n");
2397 return desc;
2398 }
2399
2400 err = gpiod_request_commit(desc, label);
2401 if (err < 0)
2402 return ERR_PTR(err);
2403
2404 return desc;
2405}
2406EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
2407
2408
2409
2410
2411
2412
2413
2414
2415void gpiochip_free_own_desc(struct gpio_desc *desc)
2416{
2417 if (desc)
2418 gpiod_free_commit(desc);
2419}
2420EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441int gpiod_direction_input(struct gpio_desc *desc)
2442{
2443 struct gpio_chip *chip;
2444 int status = -EINVAL;
2445
2446 VALIDATE_DESC(desc);
2447 chip = desc->gdev->chip;
2448
2449 if (!chip->get || !chip->direction_input) {
2450 gpiod_warn(desc,
2451 "%s: missing get() or direction_input() operations\n",
2452 __func__);
2453 return -EIO;
2454 }
2455
2456 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
2457 if (status == 0)
2458 clear_bit(FLAG_IS_OUT, &desc->flags);
2459
2460 trace_gpio_direction(desc_to_gpio(desc), 1, status);
2461
2462 return status;
2463}
2464EXPORT_SYMBOL_GPL(gpiod_direction_input);
2465
2466static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2467 enum pin_config_param mode)
2468{
2469 unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2470
2471 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2472}
2473
2474static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
2475{
2476 struct gpio_chip *gc = desc->gdev->chip;
2477 int val = !!value;
2478 int ret;
2479
2480 if (!gc->set || !gc->direction_output) {
2481 gpiod_warn(desc,
2482 "%s: missing set() or direction_output() operations\n",
2483 __func__);
2484 return -EIO;
2485 }
2486
2487 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2488 if (!ret)
2489 set_bit(FLAG_IS_OUT, &desc->flags);
2490 trace_gpio_value(desc_to_gpio(desc), 0, val);
2491 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2492 return ret;
2493}
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2507{
2508 VALIDATE_DESC(desc);
2509 return gpiod_direction_output_raw_commit(desc, value);
2510}
2511EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525int gpiod_direction_output(struct gpio_desc *desc, int value)
2526{
2527 struct gpio_chip *gc;
2528 int ret;
2529
2530 VALIDATE_DESC(desc);
2531 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2532 value = !value;
2533 else
2534 value = !!value;
2535
2536
2537 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2538 gpiod_err(desc,
2539 "%s: tried to set a GPIO tied to an IRQ as output\n",
2540 __func__);
2541 return -EIO;
2542 }
2543
2544 gc = desc->gdev->chip;
2545 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2546
2547 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2548 PIN_CONFIG_DRIVE_OPEN_DRAIN);
2549 if (!ret)
2550 goto set_output_value;
2551
2552 if (value)
2553 return gpiod_direction_input(desc);
2554 }
2555 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2556 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2557 PIN_CONFIG_DRIVE_OPEN_SOURCE);
2558 if (!ret)
2559 goto set_output_value;
2560
2561 if (!value)
2562 return gpiod_direction_input(desc);
2563 } else {
2564 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2565 PIN_CONFIG_DRIVE_PUSH_PULL);
2566 }
2567
2568set_output_value:
2569 return gpiod_direction_output_raw_commit(desc, value);
2570}
2571EXPORT_SYMBOL_GPL(gpiod_direction_output);
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
2583{
2584 struct gpio_chip *chip;
2585 unsigned long config;
2586
2587 VALIDATE_DESC(desc);
2588 chip = desc->gdev->chip;
2589 if (!chip->set || !chip->set_config) {
2590 gpiod_dbg(desc,
2591 "%s: missing set() or set_config() operations\n",
2592 __func__);
2593 return -ENOTSUPP;
2594 }
2595
2596 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2597 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
2598}
2599EXPORT_SYMBOL_GPL(gpiod_set_debounce);
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2610{
2611 struct gpio_chip *chip;
2612 unsigned long packed;
2613 int gpio;
2614 int rc;
2615
2616 VALIDATE_DESC(desc);
2617
2618
2619
2620
2621 if (transitory)
2622 set_bit(FLAG_TRANSITORY, &desc->flags);
2623 else
2624 clear_bit(FLAG_TRANSITORY, &desc->flags);
2625
2626
2627 chip = desc->gdev->chip;
2628 if (!chip->set_config)
2629 return 0;
2630
2631 packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE,
2632 !transitory);
2633 gpio = gpio_chip_hwgpio(desc);
2634 rc = chip->set_config(chip, gpio, packed);
2635 if (rc == -ENOTSUPP) {
2636 dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n",
2637 gpio);
2638 return 0;
2639 }
2640
2641 return rc;
2642}
2643EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2644
2645
2646
2647
2648
2649
2650
2651int gpiod_is_active_low(const struct gpio_desc *desc)
2652{
2653 VALIDATE_DESC(desc);
2654 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
2655}
2656EXPORT_SYMBOL_GPL(gpiod_is_active_low);
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
2681{
2682 struct gpio_chip *chip;
2683 int offset;
2684 int value;
2685
2686 chip = desc->gdev->chip;
2687 offset = gpio_chip_hwgpio(desc);
2688 value = chip->get ? chip->get(chip, offset) : -EIO;
2689 value = value < 0 ? value : !!value;
2690 trace_gpio_value(desc_to_gpio(desc), 1, value);
2691 return value;
2692}
2693
2694static int gpio_chip_get_multiple(struct gpio_chip *chip,
2695 unsigned long *mask, unsigned long *bits)
2696{
2697 if (chip->get_multiple) {
2698 return chip->get_multiple(chip, mask, bits);
2699 } else if (chip->get) {
2700 int i, value;
2701
2702 for_each_set_bit(i, mask, chip->ngpio) {
2703 value = chip->get(chip, i);
2704 if (value < 0)
2705 return value;
2706 __assign_bit(i, bits, value);
2707 }
2708 return 0;
2709 }
2710 return -EIO;
2711}
2712
2713int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2714 unsigned int array_size,
2715 struct gpio_desc **desc_array,
2716 int *value_array)
2717{
2718 int i = 0;
2719
2720 while (i < array_size) {
2721 struct gpio_chip *chip = desc_array[i]->gdev->chip;
2722 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2723 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2724 int first, j, ret;
2725
2726 if (!can_sleep)
2727 WARN_ON(chip->can_sleep);
2728
2729
2730 first = i;
2731 memset(mask, 0, sizeof(mask));
2732 do {
2733 const struct gpio_desc *desc = desc_array[i];
2734 int hwgpio = gpio_chip_hwgpio(desc);
2735
2736 __set_bit(hwgpio, mask);
2737 i++;
2738 } while ((i < array_size) &&
2739 (desc_array[i]->gdev->chip == chip));
2740
2741 ret = gpio_chip_get_multiple(chip, mask, bits);
2742 if (ret)
2743 return ret;
2744
2745 for (j = first; j < i; j++) {
2746 const struct gpio_desc *desc = desc_array[j];
2747 int hwgpio = gpio_chip_hwgpio(desc);
2748 int value = test_bit(hwgpio, bits);
2749
2750 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2751 value = !value;
2752 value_array[j] = value;
2753 trace_gpio_value(desc_to_gpio(desc), 1, value);
2754 }
2755 }
2756 return 0;
2757}
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769int gpiod_get_raw_value(const struct gpio_desc *desc)
2770{
2771 VALIDATE_DESC(desc);
2772
2773 WARN_ON(desc->gdev->chip->can_sleep);
2774 return gpiod_get_raw_value_commit(desc);
2775}
2776EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788int gpiod_get_value(const struct gpio_desc *desc)
2789{
2790 int value;
2791
2792 VALIDATE_DESC(desc);
2793
2794 WARN_ON(desc->gdev->chip->can_sleep);
2795
2796 value = gpiod_get_raw_value_commit(desc);
2797 if (value < 0)
2798 return value;
2799
2800 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2801 value = !value;
2802
2803 return value;
2804}
2805EXPORT_SYMBOL_GPL(gpiod_get_value);
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820int gpiod_get_raw_array_value(unsigned int array_size,
2821 struct gpio_desc **desc_array, int *value_array)
2822{
2823 if (!desc_array)
2824 return -EINVAL;
2825 return gpiod_get_array_value_complex(true, false, array_size,
2826 desc_array, value_array);
2827}
2828EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842int gpiod_get_array_value(unsigned int array_size,
2843 struct gpio_desc **desc_array, int *value_array)
2844{
2845 if (!desc_array)
2846 return -EINVAL;
2847 return gpiod_get_array_value_complex(false, false, array_size,
2848 desc_array, value_array);
2849}
2850EXPORT_SYMBOL_GPL(gpiod_get_array_value);
2851
2852
2853
2854
2855
2856
2857static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
2858{
2859 int err = 0;
2860 struct gpio_chip *chip = desc->gdev->chip;
2861 int offset = gpio_chip_hwgpio(desc);
2862
2863 if (value) {
2864 err = chip->direction_input(chip, offset);
2865 if (!err)
2866 clear_bit(FLAG_IS_OUT, &desc->flags);
2867 } else {
2868 err = chip->direction_output(chip, offset, 0);
2869 if (!err)
2870 set_bit(FLAG_IS_OUT, &desc->flags);
2871 }
2872 trace_gpio_direction(desc_to_gpio(desc), value, err);
2873 if (err < 0)
2874 gpiod_err(desc,
2875 "%s: Error in set_value for open drain err %d\n",
2876 __func__, err);
2877}
2878
2879
2880
2881
2882
2883
2884static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
2885{
2886 int err = 0;
2887 struct gpio_chip *chip = desc->gdev->chip;
2888 int offset = gpio_chip_hwgpio(desc);
2889
2890 if (value) {
2891 err = chip->direction_output(chip, offset, 1);
2892 if (!err)
2893 set_bit(FLAG_IS_OUT, &desc->flags);
2894 } else {
2895 err = chip->direction_input(chip, offset);
2896 if (!err)
2897 clear_bit(FLAG_IS_OUT, &desc->flags);
2898 }
2899 trace_gpio_direction(desc_to_gpio(desc), !value, err);
2900 if (err < 0)
2901 gpiod_err(desc,
2902 "%s: Error in set_value for open source err %d\n",
2903 __func__, err);
2904}
2905
2906static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
2907{
2908 struct gpio_chip *chip;
2909
2910 chip = desc->gdev->chip;
2911 trace_gpio_value(desc_to_gpio(desc), 0, value);
2912 chip->set(chip, gpio_chip_hwgpio(desc), value);
2913}
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924static void gpio_chip_set_multiple(struct gpio_chip *chip,
2925 unsigned long *mask, unsigned long *bits)
2926{
2927 if (chip->set_multiple) {
2928 chip->set_multiple(chip, mask, bits);
2929 } else {
2930 unsigned int i;
2931
2932
2933 for_each_set_bit(i, mask, chip->ngpio)
2934 chip->set(chip, i, test_bit(i, bits));
2935 }
2936}
2937
2938void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2939 unsigned int array_size,
2940 struct gpio_desc **desc_array,
2941 int *value_array)
2942{
2943 int i = 0;
2944
2945 while (i < array_size) {
2946 struct gpio_chip *chip = desc_array[i]->gdev->chip;
2947 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2948 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2949 int count = 0;
2950
2951 if (!can_sleep)
2952 WARN_ON(chip->can_sleep);
2953
2954 memset(mask, 0, sizeof(mask));
2955 do {
2956 struct gpio_desc *desc = desc_array[i];
2957 int hwgpio = gpio_chip_hwgpio(desc);
2958 int value = value_array[i];
2959
2960 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2961 value = !value;
2962 trace_gpio_value(desc_to_gpio(desc), 0, value);
2963
2964
2965
2966
2967 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
2968 gpio_set_open_drain_value_commit(desc, value);
2969 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
2970 gpio_set_open_source_value_commit(desc, value);
2971 } else {
2972 __set_bit(hwgpio, mask);
2973 if (value)
2974 __set_bit(hwgpio, bits);
2975 else
2976 __clear_bit(hwgpio, bits);
2977 count++;
2978 }
2979 i++;
2980 } while ((i < array_size) &&
2981 (desc_array[i]->gdev->chip == chip));
2982
2983 if (count != 0)
2984 gpio_chip_set_multiple(chip, mask, bits);
2985 }
2986}
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999void gpiod_set_raw_value(struct gpio_desc *desc, int value)
3000{
3001 VALIDATE_DESC_VOID(desc);
3002
3003 WARN_ON(desc->gdev->chip->can_sleep);
3004 gpiod_set_raw_value_commit(desc, value);
3005}
3006EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3018{
3019 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3020 value = !value;
3021 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3022 gpio_set_open_drain_value_commit(desc, value);
3023 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3024 gpio_set_open_source_value_commit(desc, value);
3025 else
3026 gpiod_set_raw_value_commit(desc, value);
3027}
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040void gpiod_set_value(struct gpio_desc *desc, int value)
3041{
3042 VALIDATE_DESC_VOID(desc);
3043 WARN_ON(desc->gdev->chip->can_sleep);
3044 gpiod_set_value_nocheck(desc, value);
3045}
3046EXPORT_SYMBOL_GPL(gpiod_set_value);
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060void gpiod_set_raw_array_value(unsigned int array_size,
3061 struct gpio_desc **desc_array, int *value_array)
3062{
3063 if (!desc_array)
3064 return;
3065 gpiod_set_array_value_complex(true, false, array_size, desc_array,
3066 value_array);
3067}
3068EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082void gpiod_set_array_value(unsigned int array_size,
3083 struct gpio_desc **desc_array, int *value_array)
3084{
3085 if (!desc_array)
3086 return;
3087 gpiod_set_array_value_complex(false, false, array_size, desc_array,
3088 value_array);
3089}
3090EXPORT_SYMBOL_GPL(gpiod_set_array_value);
3091
3092
3093
3094
3095
3096
3097int gpiod_cansleep(const struct gpio_desc *desc)
3098{
3099 VALIDATE_DESC(desc);
3100 return desc->gdev->chip->can_sleep;
3101}
3102EXPORT_SYMBOL_GPL(gpiod_cansleep);
3103
3104
3105
3106
3107
3108
3109
3110
3111int gpiod_to_irq(const struct gpio_desc *desc)
3112{
3113 struct gpio_chip *chip;
3114 int offset;
3115
3116
3117
3118
3119
3120
3121 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
3122 return -EINVAL;
3123
3124 chip = desc->gdev->chip;
3125 offset = gpio_chip_hwgpio(desc);
3126 if (chip->to_irq) {
3127 int retirq = chip->to_irq(chip, offset);
3128
3129
3130 if (!retirq)
3131 return -ENXIO;
3132
3133 return retirq;
3134 }
3135 return -ENXIO;
3136}
3137EXPORT_SYMBOL_GPL(gpiod_to_irq);
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
3148{
3149 struct gpio_desc *desc;
3150
3151 desc = gpiochip_get_desc(chip, offset);
3152 if (IS_ERR(desc))
3153 return PTR_ERR(desc);
3154
3155
3156
3157
3158
3159 if (!chip->can_sleep && chip->get_direction) {
3160 int dir = chip->get_direction(chip, offset);
3161
3162 if (dir)
3163 clear_bit(FLAG_IS_OUT, &desc->flags);
3164 else
3165 set_bit(FLAG_IS_OUT, &desc->flags);
3166 }
3167
3168 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
3169 chip_err(chip,
3170 "%s: tried to flag a GPIO set as output for IRQ\n",
3171 __func__);
3172 return -EIO;
3173 }
3174
3175 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
3176
3177
3178
3179
3180
3181
3182 if (!desc->label)
3183 desc_set_label(desc, "interrupt");
3184
3185 return 0;
3186}
3187EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
3198{
3199 struct gpio_desc *desc;
3200
3201 desc = gpiochip_get_desc(chip, offset);
3202 if (IS_ERR(desc))
3203 return;
3204
3205 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
3206
3207
3208 if (desc->label && !strcmp(desc->label, "interrupt"))
3209 desc_set_label(desc, NULL);
3210}
3211EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
3212
3213bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
3214{
3215 if (offset >= chip->ngpio)
3216 return false;
3217
3218 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
3219}
3220EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3221
3222bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
3223{
3224 if (offset >= chip->ngpio)
3225 return false;
3226
3227 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
3228}
3229EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3230
3231bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
3232{
3233 if (offset >= chip->ngpio)
3234 return false;
3235
3236 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
3237}
3238EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3239
3240bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
3241{
3242 if (offset >= chip->ngpio)
3243 return false;
3244
3245 return !test_bit(FLAG_TRANSITORY, &chip->gpiodev->descs[offset].flags);
3246}
3247EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
3259{
3260 might_sleep_if(extra_checks);
3261 VALIDATE_DESC(desc);
3262 return gpiod_get_raw_value_commit(desc);
3263}
3264EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275int gpiod_get_value_cansleep(const struct gpio_desc *desc)
3276{
3277 int value;
3278
3279 might_sleep_if(extra_checks);
3280 VALIDATE_DESC(desc);
3281 value = gpiod_get_raw_value_commit(desc);
3282 if (value < 0)
3283 return value;
3284
3285 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3286 value = !value;
3287
3288 return value;
3289}
3290EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3305 struct gpio_desc **desc_array,
3306 int *value_array)
3307{
3308 might_sleep_if(extra_checks);
3309 if (!desc_array)
3310 return -EINVAL;
3311 return gpiod_get_array_value_complex(true, true, array_size,
3312 desc_array, value_array);
3313}
3314EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327int gpiod_get_array_value_cansleep(unsigned int array_size,
3328 struct gpio_desc **desc_array,
3329 int *value_array)
3330{
3331 might_sleep_if(extra_checks);
3332 if (!desc_array)
3333 return -EINVAL;
3334 return gpiod_get_array_value_complex(false, true, array_size,
3335 desc_array, value_array);
3336}
3337EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
3350{
3351 might_sleep_if(extra_checks);
3352 VALIDATE_DESC_VOID(desc);
3353 gpiod_set_raw_value_commit(desc, value);
3354}
3355EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
3368{
3369 might_sleep_if(extra_checks);
3370 VALIDATE_DESC_VOID(desc);
3371 gpiod_set_value_nocheck(desc, value);
3372}
3373EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
3387 struct gpio_desc **desc_array,
3388 int *value_array)
3389{
3390 might_sleep_if(extra_checks);
3391 if (!desc_array)
3392 return;
3393 gpiod_set_array_value_complex(true, true, array_size, desc_array,
3394 value_array);
3395}
3396EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
3397
3398
3399
3400
3401
3402
3403void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3404{
3405 unsigned int i;
3406
3407 mutex_lock(&gpio_lookup_lock);
3408
3409 for (i = 0; i < n; i++)
3410 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3411
3412 mutex_unlock(&gpio_lookup_lock);
3413}
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426void gpiod_set_array_value_cansleep(unsigned int array_size,
3427 struct gpio_desc **desc_array,
3428 int *value_array)
3429{
3430 might_sleep_if(extra_checks);
3431 if (!desc_array)
3432 return;
3433 gpiod_set_array_value_complex(false, true, array_size, desc_array,
3434 value_array);
3435}
3436EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
3437
3438
3439
3440
3441
3442void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
3443{
3444 mutex_lock(&gpio_lookup_lock);
3445
3446 list_add_tail(&table->list, &gpio_lookup_list);
3447
3448 mutex_unlock(&gpio_lookup_lock);
3449}
3450EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
3451
3452
3453
3454
3455
3456void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3457{
3458 mutex_lock(&gpio_lookup_lock);
3459
3460 list_del(&table->list);
3461
3462 mutex_unlock(&gpio_lookup_lock);
3463}
3464EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
3465
3466static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3467{
3468 const char *dev_id = dev ? dev_name(dev) : NULL;
3469 struct gpiod_lookup_table *table;
3470
3471 mutex_lock(&gpio_lookup_lock);
3472
3473 list_for_each_entry(table, &gpio_lookup_list, list) {
3474 if (table->dev_id && dev_id) {
3475
3476
3477
3478
3479 if (!strcmp(table->dev_id, dev_id))
3480 goto found;
3481 } else {
3482
3483
3484
3485
3486 if (dev_id == table->dev_id)
3487 goto found;
3488 }
3489 }
3490 table = NULL;
3491
3492found:
3493 mutex_unlock(&gpio_lookup_lock);
3494 return table;
3495}
3496
3497static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
3498 unsigned int idx,
3499 enum gpio_lookup_flags *flags)
3500{
3501 struct gpio_desc *desc = ERR_PTR(-ENOENT);
3502 struct gpiod_lookup_table *table;
3503 struct gpiod_lookup *p;
3504
3505 table = gpiod_find_lookup_table(dev);
3506 if (!table)
3507 return desc;
3508
3509 for (p = &table->table[0]; p->chip_label; p++) {
3510 struct gpio_chip *chip;
3511
3512
3513 if (p->idx != idx)
3514 continue;
3515
3516
3517 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3518 continue;
3519
3520 chip = find_chip_by_name(p->chip_label);
3521
3522 if (!chip) {
3523 dev_err(dev, "cannot find GPIO chip %s\n",
3524 p->chip_label);
3525 return ERR_PTR(-ENODEV);
3526 }
3527
3528 if (chip->ngpio <= p->chip_hwnum) {
3529 dev_err(dev,
3530 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3531 idx, chip->ngpio, chip->label);
3532 return ERR_PTR(-EINVAL);
3533 }
3534
3535 desc = gpiochip_get_desc(chip, p->chip_hwnum);
3536 *flags = p->flags;
3537
3538 return desc;
3539 }
3540
3541 return desc;
3542}
3543
3544static int dt_gpio_count(struct device *dev, const char *con_id)
3545{
3546 int ret;
3547 char propname[32];
3548 unsigned int i;
3549
3550 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3551 if (con_id)
3552 snprintf(propname, sizeof(propname), "%s-%s",
3553 con_id, gpio_suffixes[i]);
3554 else
3555 snprintf(propname, sizeof(propname), "%s",
3556 gpio_suffixes[i]);
3557
3558 ret = of_gpio_named_count(dev->of_node, propname);
3559 if (ret > 0)
3560 break;
3561 }
3562 return ret ? ret : -ENOENT;
3563}
3564
3565static int platform_gpio_count(struct device *dev, const char *con_id)
3566{
3567 struct gpiod_lookup_table *table;
3568 struct gpiod_lookup *p;
3569 unsigned int count = 0;
3570
3571 table = gpiod_find_lookup_table(dev);
3572 if (!table)
3573 return -ENOENT;
3574
3575 for (p = &table->table[0]; p->chip_label; p++) {
3576 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3577 (!con_id && !p->con_id))
3578 count++;
3579 }
3580 if (!count)
3581 return -ENOENT;
3582
3583 return count;
3584}
3585
3586
3587
3588
3589
3590
3591
3592int gpiod_count(struct device *dev, const char *con_id)
3593{
3594 int count = -ENOENT;
3595
3596 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3597 count = dt_gpio_count(dev, con_id);
3598 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3599 count = acpi_gpio_count(dev, con_id);
3600
3601 if (count < 0)
3602 count = platform_gpio_count(dev, con_id);
3603
3604 return count;
3605}
3606EXPORT_SYMBOL_GPL(gpiod_count);
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
3619 enum gpiod_flags flags)
3620{
3621 return gpiod_get_index(dev, con_id, 0, flags);
3622}
3623EXPORT_SYMBOL_GPL(gpiod_get);
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
3636 const char *con_id,
3637 enum gpiod_flags flags)
3638{
3639 return gpiod_get_index_optional(dev, con_id, 0, flags);
3640}
3641EXPORT_SYMBOL_GPL(gpiod_get_optional);
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
3657 unsigned long lflags, enum gpiod_flags dflags)
3658{
3659 int status;
3660
3661 if (lflags & GPIO_ACTIVE_LOW)
3662 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3663
3664 if (lflags & GPIO_OPEN_DRAIN)
3665 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3666 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
3667
3668
3669
3670
3671
3672
3673 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3674 gpiod_warn(desc,
3675 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
3676 }
3677
3678 if (lflags & GPIO_OPEN_SOURCE)
3679 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3680
3681 status = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
3682 if (status < 0)
3683 return status;
3684
3685
3686 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3687 pr_debug("no flags found for %s\n", con_id);
3688 return 0;
3689 }
3690
3691
3692 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3693 status = gpiod_direction_output(desc,
3694 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
3695 else
3696 status = gpiod_direction_input(desc);
3697
3698 return status;
3699}
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
3716 const char *con_id,
3717 unsigned int idx,
3718 enum gpiod_flags flags)
3719{
3720 struct gpio_desc *desc = NULL;
3721 int status;
3722 enum gpio_lookup_flags lookupflags = 0;
3723
3724 const char *devname = dev ? dev_name(dev) : "?";
3725
3726 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3727
3728 if (dev) {
3729
3730 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3731 dev_dbg(dev, "using device tree for GPIO lookup\n");
3732 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3733 } else if (ACPI_COMPANION(dev)) {
3734 dev_dbg(dev, "using ACPI for GPIO lookup\n");
3735 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
3736 }
3737 }
3738
3739
3740
3741
3742
3743 if (!desc || desc == ERR_PTR(-ENOENT)) {
3744 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
3745 desc = gpiod_find(dev, con_id, idx, &lookupflags);
3746 }
3747
3748 if (IS_ERR(desc)) {
3749 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
3750 return desc;
3751 }
3752
3753
3754
3755
3756
3757 status = gpiod_request(desc, con_id ? con_id : devname);
3758 if (status < 0)
3759 return ERR_PTR(status);
3760
3761 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
3762 if (status < 0) {
3763 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3764 gpiod_put(desc);
3765 return ERR_PTR(status);
3766 }
3767
3768 return desc;
3769}
3770EXPORT_SYMBOL_GPL(gpiod_get_index);
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787struct gpio_desc *gpiod_get_from_of_node(struct device_node *node,
3788 const char *propname, int index,
3789 enum gpiod_flags dflags,
3790 const char *label)
3791{
3792 struct gpio_desc *desc;
3793 unsigned long lflags = 0;
3794 enum of_gpio_flags flags;
3795 bool active_low = false;
3796 bool single_ended = false;
3797 bool open_drain = false;
3798 bool transitory = false;
3799 int ret;
3800
3801 desc = of_get_named_gpiod_flags(node, propname,
3802 index, &flags);
3803
3804 if (!desc || IS_ERR(desc)) {
3805
3806 if (PTR_ERR(desc) == -ENOENT)
3807 return NULL;
3808 return desc;
3809 }
3810
3811 active_low = flags & OF_GPIO_ACTIVE_LOW;
3812 single_ended = flags & OF_GPIO_SINGLE_ENDED;
3813 open_drain = flags & OF_GPIO_OPEN_DRAIN;
3814 transitory = flags & OF_GPIO_TRANSITORY;
3815
3816 ret = gpiod_request(desc, label);
3817 if (ret)
3818 return ERR_PTR(ret);
3819
3820 if (active_low)
3821 lflags |= GPIO_ACTIVE_LOW;
3822
3823 if (single_ended) {
3824 if (open_drain)
3825 lflags |= GPIO_OPEN_DRAIN;
3826 else
3827 lflags |= GPIO_OPEN_SOURCE;
3828 }
3829
3830 if (transitory)
3831 lflags |= GPIO_TRANSITORY;
3832
3833 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3834 if (ret < 0) {
3835 gpiod_put(desc);
3836 return ERR_PTR(ret);
3837 }
3838
3839 return desc;
3840}
3841EXPORT_SYMBOL(gpiod_get_from_of_node);
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3865 const char *propname, int index,
3866 enum gpiod_flags dflags,
3867 const char *label)
3868{
3869 struct gpio_desc *desc = ERR_PTR(-ENODEV);
3870 unsigned long lflags = 0;
3871 int ret;
3872
3873 if (!fwnode)
3874 return ERR_PTR(-EINVAL);
3875
3876 if (is_of_node(fwnode)) {
3877 desc = gpiod_get_from_of_node(to_of_node(fwnode),
3878 propname, index,
3879 dflags,
3880 label);
3881 return desc;
3882 } else if (is_acpi_node(fwnode)) {
3883 struct acpi_gpio_info info;
3884
3885 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
3886 if (IS_ERR(desc))
3887 return desc;
3888
3889 acpi_gpio_update_gpiod_flags(&dflags, &info);
3890
3891 if (info.polarity == GPIO_ACTIVE_LOW)
3892 lflags |= GPIO_ACTIVE_LOW;
3893 }
3894
3895
3896 ret = gpiod_request(desc, label);
3897 if (ret)
3898 return ERR_PTR(ret);
3899
3900 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3901 if (ret < 0) {
3902 gpiod_put(desc);
3903 return ERR_PTR(ret);
3904 }
3905
3906 return desc;
3907}
3908EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
3923 const char *con_id,
3924 unsigned int index,
3925 enum gpiod_flags flags)
3926{
3927 struct gpio_desc *desc;
3928
3929 desc = gpiod_get_index(dev, con_id, index, flags);
3930 if (IS_ERR(desc)) {
3931 if (PTR_ERR(desc) == -ENOENT)
3932 return NULL;
3933 }
3934
3935 return desc;
3936}
3937EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947int gpiod_hog(struct gpio_desc *desc, const char *name,
3948 unsigned long lflags, enum gpiod_flags dflags)
3949{
3950 struct gpio_chip *chip;
3951 struct gpio_desc *local_desc;
3952 int hwnum;
3953 int status;
3954
3955 chip = gpiod_to_chip(desc);
3956 hwnum = gpio_chip_hwgpio(desc);
3957
3958 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3959 if (IS_ERR(local_desc)) {
3960 status = PTR_ERR(local_desc);
3961 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3962 name, chip->label, hwnum, status);
3963 return status;
3964 }
3965
3966 status = gpiod_configure_flags(desc, name, lflags, dflags);
3967 if (status < 0) {
3968 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3969 name, chip->label, hwnum, status);
3970 gpiochip_free_own_desc(desc);
3971 return status;
3972 }
3973
3974
3975 set_bit(FLAG_IS_HOGGED, &desc->flags);
3976
3977 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3978 desc_to_gpio(desc), name,
3979 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3980 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3981 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3982
3983 return 0;
3984}
3985
3986
3987
3988
3989
3990
3991
3992static void gpiochip_free_hogs(struct gpio_chip *chip)
3993{
3994 int id;
3995
3996 for (id = 0; id < chip->ngpio; id++) {
3997 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3998 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
3999 }
4000}
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4015 const char *con_id,
4016 enum gpiod_flags flags)
4017{
4018 struct gpio_desc *desc;
4019 struct gpio_descs *descs;
4020 int count;
4021
4022 count = gpiod_count(dev, con_id);
4023 if (count < 0)
4024 return ERR_PTR(count);
4025
4026 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
4027 GFP_KERNEL);
4028 if (!descs)
4029 return ERR_PTR(-ENOMEM);
4030
4031 for (descs->ndescs = 0; descs->ndescs < count; ) {
4032 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4033 if (IS_ERR(desc)) {
4034 gpiod_put_array(descs);
4035 return ERR_CAST(desc);
4036 }
4037 descs->desc[descs->ndescs] = desc;
4038 descs->ndescs++;
4039 }
4040 return descs;
4041}
4042EXPORT_SYMBOL_GPL(gpiod_get_array);
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4055 const char *con_id,
4056 enum gpiod_flags flags)
4057{
4058 struct gpio_descs *descs;
4059
4060 descs = gpiod_get_array(dev, con_id, flags);
4061 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
4062 return NULL;
4063
4064 return descs;
4065}
4066EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4067
4068
4069
4070
4071
4072
4073
4074void gpiod_put(struct gpio_desc *desc)
4075{
4076 gpiod_free(desc);
4077}
4078EXPORT_SYMBOL_GPL(gpiod_put);
4079
4080
4081
4082
4083
4084void gpiod_put_array(struct gpio_descs *descs)
4085{
4086 unsigned int i;
4087
4088 for (i = 0; i < descs->ndescs; i++)
4089 gpiod_put(descs->desc[i]);
4090
4091 kfree(descs);
4092}
4093EXPORT_SYMBOL_GPL(gpiod_put_array);
4094
4095static int __init gpiolib_dev_init(void)
4096{
4097 int ret;
4098
4099
4100 ret = bus_register(&gpio_bus_type);
4101 if (ret < 0) {
4102 pr_err("gpiolib: could not register GPIO bus type\n");
4103 return ret;
4104 }
4105
4106 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
4107 if (ret < 0) {
4108 pr_err("gpiolib: failed to allocate char dev region\n");
4109 bus_unregister(&gpio_bus_type);
4110 } else {
4111 gpiolib_initialized = true;
4112 gpiochip_setup_devs();
4113 }
4114 return ret;
4115}
4116core_initcall(gpiolib_dev_init);
4117
4118#ifdef CONFIG_DEBUG_FS
4119
4120static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
4121{
4122 unsigned i;
4123 struct gpio_chip *chip = gdev->chip;
4124 unsigned gpio = gdev->base;
4125 struct gpio_desc *gdesc = &gdev->descs[0];
4126 int is_out;
4127 int is_irq;
4128
4129 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
4130 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4131 if (gdesc->name) {
4132 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4133 gpio, gdesc->name);
4134 }
4135 continue;
4136 }
4137
4138 gpiod_get_direction(gdesc);
4139 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
4140 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
4141 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
4142 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
4143 is_out ? "out" : "in ",
4144 chip->get
4145 ? (chip->get(chip, i) ? "hi" : "lo")
4146 : "? ",
4147 is_irq ? "IRQ" : " ");
4148 seq_printf(s, "\n");
4149 }
4150}
4151
4152static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4153{
4154 unsigned long flags;
4155 struct gpio_device *gdev = NULL;
4156 loff_t index = *pos;
4157
4158 s->private = "";
4159
4160 spin_lock_irqsave(&gpio_lock, flags);
4161 list_for_each_entry(gdev, &gpio_devices, list)
4162 if (index-- == 0) {
4163 spin_unlock_irqrestore(&gpio_lock, flags);
4164 return gdev;
4165 }
4166 spin_unlock_irqrestore(&gpio_lock, flags);
4167
4168 return NULL;
4169}
4170
4171static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4172{
4173 unsigned long flags;
4174 struct gpio_device *gdev = v;
4175 void *ret = NULL;
4176
4177 spin_lock_irqsave(&gpio_lock, flags);
4178 if (list_is_last(&gdev->list, &gpio_devices))
4179 ret = NULL;
4180 else
4181 ret = list_entry(gdev->list.next, struct gpio_device, list);
4182 spin_unlock_irqrestore(&gpio_lock, flags);
4183
4184 s->private = "\n";
4185 ++*pos;
4186
4187 return ret;
4188}
4189
4190static void gpiolib_seq_stop(struct seq_file *s, void *v)
4191{
4192}
4193
4194static int gpiolib_seq_show(struct seq_file *s, void *v)
4195{
4196 struct gpio_device *gdev = v;
4197 struct gpio_chip *chip = gdev->chip;
4198 struct device *parent;
4199
4200 if (!chip) {
4201 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4202 dev_name(&gdev->dev));
4203 return 0;
4204 }
4205
4206 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4207 dev_name(&gdev->dev),
4208 gdev->base, gdev->base + gdev->ngpio - 1);
4209 parent = chip->parent;
4210 if (parent)
4211 seq_printf(s, ", parent: %s/%s",
4212 parent->bus ? parent->bus->name : "no-bus",
4213 dev_name(parent));
4214 if (chip->label)
4215 seq_printf(s, ", %s", chip->label);
4216 if (chip->can_sleep)
4217 seq_printf(s, ", can sleep");
4218 seq_printf(s, ":\n");
4219
4220 if (chip->dbg_show)
4221 chip->dbg_show(s, chip);
4222 else
4223 gpiolib_dbg_show(s, gdev);
4224
4225 return 0;
4226}
4227
4228static const struct seq_operations gpiolib_seq_ops = {
4229 .start = gpiolib_seq_start,
4230 .next = gpiolib_seq_next,
4231 .stop = gpiolib_seq_stop,
4232 .show = gpiolib_seq_show,
4233};
4234
4235static int gpiolib_open(struct inode *inode, struct file *file)
4236{
4237 return seq_open(file, &gpiolib_seq_ops);
4238}
4239
4240static const struct file_operations gpiolib_operations = {
4241 .owner = THIS_MODULE,
4242 .open = gpiolib_open,
4243 .read = seq_read,
4244 .llseek = seq_lseek,
4245 .release = seq_release,
4246};
4247
4248static int __init gpiolib_debugfs_init(void)
4249{
4250
4251 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
4252 NULL, NULL, &gpiolib_operations);
4253 return 0;
4254}
4255subsys_initcall(gpiolib_debugfs_init);
4256
4257#endif
4258