]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpio/gpiolib.c
usb: musb: Fix trying to suspend while active for OTG configurations
[mirror_ubuntu-artful-kernel.git] / drivers / gpio / gpiolib.c
CommitLineData
5e4e6fb3 1#include <linux/bitops.h>
d2876d08
DB
2#include <linux/kernel.h>
3#include <linux/module.h>
ff77c352 4#include <linux/interrupt.h>
d2876d08
DB
5#include <linux/irq.h>
6#include <linux/spinlock.h>
1a989d0f 7#include <linux/list.h>
d8f388d8
DB
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>
391c970c 13#include <linux/of_gpio.h>
ff77c352 14#include <linux/idr.h>
5a0e3ad6 15#include <linux/slab.h>
7b199811 16#include <linux/acpi.h>
53e7cac3 17#include <linux/gpio/driver.h>
0a6d3158 18#include <linux/gpio/machine.h>
c771c2f4 19#include <linux/pinctrl/consumer.h>
3c702e99
LW
20#include <linux/cdev.h>
21#include <linux/fs.h>
22#include <linux/uaccess.h>
8b92e17e 23#include <linux/compat.h>
d7c51b47 24#include <linux/anon_inodes.h>
953b956a 25#include <linux/file.h>
61f922db
LW
26#include <linux/kfifo.h>
27#include <linux/poll.h>
28#include <linux/timekeeping.h>
3c702e99 29#include <uapi/linux/gpio.h>
d2876d08 30
664e3e5a
MW
31#include "gpiolib.h"
32
3f397c21
UKK
33#define CREATE_TRACE_POINTS
34#include <trace/events/gpio.h>
d2876d08 35
79a9becd 36/* Implementation infrastructure for GPIO interfaces.
d2876d08 37 *
79a9becd
AC
38 * The GPIO programming interface allows for inlining speed-critical
39 * get/set operations for common cases, so that access to SOC-integrated
40 * GPIOs can sometimes cost only an instruction or two per bit.
d2876d08
DB
41 */
42
43
44/* When debugging, extend minimal trust to callers and platform code.
45 * Also emit diagnostic messages that may help initial bringup, when
46 * board setup or driver bugs are most common.
47 *
48 * Otherwise, minimize overhead in what may be bitbanging codepaths.
49 */
50#ifdef DEBUG
51#define extra_checks 1
52#else
53#define extra_checks 0
54#endif
55
ff2b1359
LW
56/* Device and char device-related information */
57static DEFINE_IDA(gpio_ida);
3c702e99
LW
58static dev_t gpio_devt;
59#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
60static struct bus_type gpio_bus_type = {
61 .name = "gpio",
62};
ff2b1359 63
d2876d08
DB
64/* gpio_lock prevents conflicts during gpio_desc[] table updates.
65 * While any GPIO is requested, its gpio_chip is not removable;
66 * each GPIO's "requested" flag serves as a lock and refcount.
67 */
0eb4c6c2 68DEFINE_SPINLOCK(gpio_lock);
d2876d08 69
bae48da2
AC
70static DEFINE_MUTEX(gpio_lookup_lock);
71static LIST_HEAD(gpio_lookup_list);
ff2b1359 72LIST_HEAD(gpio_devices);
6d86750c
JH
73
74static void gpiochip_free_hogs(struct gpio_chip *chip);
75static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
79b804cb
MW
76static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
77static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
6d86750c 78
159f3cd9 79static bool gpiolib_initialized;
6d86750c 80
d2876d08
DB
81static inline void desc_set_label(struct gpio_desc *d, const char *label)
82{
d2876d08 83 d->label = label;
d2876d08
DB
84}
85
372e722e
AC
86/**
87 * Convert a GPIO number to its descriptor
88 */
79a9becd 89struct gpio_desc *gpio_to_desc(unsigned gpio)
372e722e 90{
ff2b1359 91 struct gpio_device *gdev;
14e85c0e
AC
92 unsigned long flags;
93
94 spin_lock_irqsave(&gpio_lock, flags);
95
ff2b1359 96 list_for_each_entry(gdev, &gpio_devices, list) {
fdeb8e15
LW
97 if (gdev->base <= gpio &&
98 gdev->base + gdev->ngpio > gpio) {
14e85c0e 99 spin_unlock_irqrestore(&gpio_lock, flags);
fdeb8e15 100 return &gdev->descs[gpio - gdev->base];
14e85c0e
AC
101 }
102 }
103
104 spin_unlock_irqrestore(&gpio_lock, flags);
105
0e9a5edf
AC
106 if (!gpio_is_valid(gpio))
107 WARN(1, "invalid GPIO %d\n", gpio);
108
14e85c0e 109 return NULL;
372e722e 110}
79a9becd 111EXPORT_SYMBOL_GPL(gpio_to_desc);
372e722e 112
d468bf9e 113/**
bb1e88cc 114 * Get the GPIO descriptor corresponding to the given hw number for this chip.
d468bf9e 115 */
bb1e88cc
AC
116struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
117 u16 hwnum)
d468bf9e 118{
fdeb8e15
LW
119 struct gpio_device *gdev = chip->gpiodev;
120
121 if (hwnum >= gdev->ngpio)
b7d0a28a 122 return ERR_PTR(-EINVAL);
d468bf9e 123
fdeb8e15 124 return &gdev->descs[hwnum];
d468bf9e 125}
372e722e
AC
126
127/**
128 * Convert a GPIO descriptor to the integer namespace.
129 * This should disappear in the future but is needed since we still
130 * use GPIO numbers for error messages and sysfs nodes
131 */
79a9becd 132int desc_to_gpio(const struct gpio_desc *desc)
372e722e 133{
fdeb8e15 134 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
372e722e 135}
79a9becd 136EXPORT_SYMBOL_GPL(desc_to_gpio);
372e722e
AC
137
138
79a9becd
AC
139/**
140 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
141 * @desc: descriptor to return the chip of
142 */
143struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
372e722e 144{
fdeb8e15
LW
145 if (!desc || !desc->gdev || !desc->gdev->chip)
146 return NULL;
147 return desc->gdev->chip;
372e722e 148}
79a9becd 149EXPORT_SYMBOL_GPL(gpiod_to_chip);
d2876d08 150
8d0aab2f
AV
151/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
152static int gpiochip_find_base(int ngpio)
153{
ff2b1359 154 struct gpio_device *gdev;
83cabe33 155 int base = ARCH_NR_GPIOS - ngpio;
8d0aab2f 156
ff2b1359 157 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
83cabe33 158 /* found a free space? */
fdeb8e15 159 if (gdev->base + gdev->ngpio <= base)
83cabe33
AC
160 break;
161 else
162 /* nope, check the space right before the chip */
fdeb8e15 163 base = gdev->base - ngpio;
8d0aab2f
AV
164 }
165
83cabe33 166 if (gpio_is_valid(base)) {
8d0aab2f 167 pr_debug("%s: found new base at %d\n", __func__, base);
83cabe33
AC
168 return base;
169 } else {
170 pr_err("%s: cannot find free range\n", __func__);
171 return -ENOSPC;
169b6a7a 172 }
169b6a7a
AV
173}
174
79a9becd
AC
175/**
176 * gpiod_get_direction - return the current direction of a GPIO
177 * @desc: GPIO to get the direction of
178 *
179 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
180 *
181 * This function may sleep if gpiod_cansleep() is true.
182 */
8e53b0f1 183int gpiod_get_direction(struct gpio_desc *desc)
80b0a602
MN
184{
185 struct gpio_chip *chip;
372e722e 186 unsigned offset;
80b0a602
MN
187 int status = -EINVAL;
188
372e722e
AC
189 chip = gpiod_to_chip(desc);
190 offset = gpio_chip_hwgpio(desc);
80b0a602
MN
191
192 if (!chip->get_direction)
193 return status;
194
372e722e 195 status = chip->get_direction(chip, offset);
80b0a602
MN
196 if (status > 0) {
197 /* GPIOF_DIR_IN, or other positive */
198 status = 1;
8e53b0f1 199 clear_bit(FLAG_IS_OUT, &desc->flags);
80b0a602
MN
200 }
201 if (status == 0) {
202 /* GPIOF_DIR_OUT */
8e53b0f1 203 set_bit(FLAG_IS_OUT, &desc->flags);
80b0a602
MN
204 }
205 return status;
206}
79a9becd 207EXPORT_SYMBOL_GPL(gpiod_get_direction);
80b0a602 208
1a989d0f
AC
209/*
210 * Add a new chip to the global chips list, keeping the list of chips sorted
ef7c7553 211 * by range(means [base, base + ngpio - 1]) order.
1a989d0f
AC
212 *
213 * Return -EBUSY if the new chip overlaps with some other chip's integer
214 * space.
215 */
ff2b1359 216static int gpiodev_add_to_list(struct gpio_device *gdev)
1a989d0f 217{
a961f9b4 218 struct gpio_device *prev, *next;
1a989d0f 219
ff2b1359 220 if (list_empty(&gpio_devices)) {
a961f9b4 221 /* initial entry in list */
ff2b1359 222 list_add_tail(&gdev->list, &gpio_devices);
e28ecca6 223 return 0;
1a989d0f
AC
224 }
225
a961f9b4
BJZ
226 next = list_entry(gpio_devices.next, struct gpio_device, list);
227 if (gdev->base + gdev->ngpio <= next->base) {
228 /* add before first entry */
229 list_add(&gdev->list, &gpio_devices);
230 return 0;
1a989d0f
AC
231 }
232
a961f9b4
BJZ
233 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
234 if (prev->base + prev->ngpio <= gdev->base) {
235 /* add behind last entry */
236 list_add_tail(&gdev->list, &gpio_devices);
96098df1 237 return 0;
1a989d0f
AC
238 }
239
a961f9b4
BJZ
240 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
241 /* at the end of the list */
242 if (&next->list == &gpio_devices)
243 break;
1a989d0f 244
a961f9b4
BJZ
245 /* add between prev and next */
246 if (prev->base + prev->ngpio <= gdev->base
247 && gdev->base + gdev->ngpio <= next->base) {
248 list_add(&gdev->list, &prev->list);
249 return 0;
250 }
251 }
252
253 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
254 return -EBUSY;
1a989d0f
AC
255}
256
f881bab0
LW
257/**
258 * Convert a GPIO name to its descriptor
259 */
260static struct gpio_desc *gpio_name_to_desc(const char * const name)
261{
ff2b1359 262 struct gpio_device *gdev;
f881bab0
LW
263 unsigned long flags;
264
265 spin_lock_irqsave(&gpio_lock, flags);
266
ff2b1359 267 list_for_each_entry(gdev, &gpio_devices, list) {
f881bab0
LW
268 int i;
269
fdeb8e15
LW
270 for (i = 0; i != gdev->ngpio; ++i) {
271 struct gpio_desc *desc = &gdev->descs[i];
f881bab0 272
fdeb8e15 273 if (!desc->name || !name)
f881bab0
LW
274 continue;
275
fdeb8e15 276 if (!strcmp(desc->name, name)) {
f881bab0 277 spin_unlock_irqrestore(&gpio_lock, flags);
fdeb8e15 278 return desc;
f881bab0
LW
279 }
280 }
281 }
282
283 spin_unlock_irqrestore(&gpio_lock, flags);
284
285 return NULL;
286}
287
5f3ca732
MP
288/*
289 * Takes the names from gc->names and checks if they are all unique. If they
290 * are, they are assigned to their gpio descriptors.
291 *
ed37915c 292 * Warning if one of the names is already used for a different GPIO.
5f3ca732
MP
293 */
294static int gpiochip_set_desc_names(struct gpio_chip *gc)
295{
fdeb8e15 296 struct gpio_device *gdev = gc->gpiodev;
5f3ca732
MP
297 int i;
298
299 if (!gc->names)
300 return 0;
301
302 /* First check all names if they are unique */
303 for (i = 0; i != gc->ngpio; ++i) {
304 struct gpio_desc *gpio;
305
306 gpio = gpio_name_to_desc(gc->names[i]);
f881bab0 307 if (gpio)
fdeb8e15 308 dev_warn(&gdev->dev,
34ffd85d 309 "Detected name collision for GPIO name '%s'\n",
f881bab0 310 gc->names[i]);
5f3ca732
MP
311 }
312
313 /* Then add all names to the GPIO descriptors */
314 for (i = 0; i != gc->ngpio; ++i)
fdeb8e15 315 gdev->descs[i].name = gc->names[i];
5f3ca732
MP
316
317 return 0;
318}
319
d7c51b47
LW
320/*
321 * GPIO line handle management
322 */
323
324/**
325 * struct linehandle_state - contains the state of a userspace handle
326 * @gdev: the GPIO device the handle pertains to
327 * @label: consumer label used to tag descriptors
328 * @descs: the GPIO descriptors held by this handle
329 * @numdescs: the number of descriptors held in the descs array
330 */
331struct linehandle_state {
332 struct gpio_device *gdev;
333 const char *label;
334 struct gpio_desc *descs[GPIOHANDLES_MAX];
335 u32 numdescs;
336};
337
e3e847c7
LPC
338#define GPIOHANDLE_REQUEST_VALID_FLAGS \
339 (GPIOHANDLE_REQUEST_INPUT | \
340 GPIOHANDLE_REQUEST_OUTPUT | \
341 GPIOHANDLE_REQUEST_ACTIVE_LOW | \
342 GPIOHANDLE_REQUEST_OPEN_DRAIN | \
343 GPIOHANDLE_REQUEST_OPEN_SOURCE)
344
d7c51b47
LW
345static long linehandle_ioctl(struct file *filep, unsigned int cmd,
346 unsigned long arg)
347{
348 struct linehandle_state *lh = filep->private_data;
349 void __user *ip = (void __user *)arg;
350 struct gpiohandle_data ghd;
351 int i;
352
353 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
354 int val;
355
3eded5d8
LPC
356 memset(&ghd, 0, sizeof(ghd));
357
d7c51b47
LW
358 /* TODO: check if descriptors are really input */
359 for (i = 0; i < lh->numdescs; i++) {
360 val = gpiod_get_value_cansleep(lh->descs[i]);
361 if (val < 0)
362 return val;
363 ghd.values[i] = val;
364 }
365
366 if (copy_to_user(ip, &ghd, sizeof(ghd)))
367 return -EFAULT;
368
369 return 0;
370 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
371 int vals[GPIOHANDLES_MAX];
372
373 /* TODO: check if descriptors are really output */
374 if (copy_from_user(&ghd, ip, sizeof(ghd)))
375 return -EFAULT;
376
377 /* Clamp all values to [0,1] */
378 for (i = 0; i < lh->numdescs; i++)
379 vals[i] = !!ghd.values[i];
380
381 /* Reuse the array setting function */
382 gpiod_set_array_value_complex(false,
383 true,
384 lh->numdescs,
385 lh->descs,
386 vals);
387 return 0;
388 }
389 return -EINVAL;
390}
391
392#ifdef CONFIG_COMPAT
393static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
394 unsigned long arg)
395{
396 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
397}
398#endif
399
400static int linehandle_release(struct inode *inode, struct file *filep)
401{
402 struct linehandle_state *lh = filep->private_data;
403 struct gpio_device *gdev = lh->gdev;
404 int i;
405
406 for (i = 0; i < lh->numdescs; i++)
407 gpiod_free(lh->descs[i]);
408 kfree(lh->label);
409 kfree(lh);
410 put_device(&gdev->dev);
411 return 0;
412}
413
414static const struct file_operations linehandle_fileops = {
415 .release = linehandle_release,
416 .owner = THIS_MODULE,
417 .llseek = noop_llseek,
418 .unlocked_ioctl = linehandle_ioctl,
419#ifdef CONFIG_COMPAT
420 .compat_ioctl = linehandle_ioctl_compat,
421#endif
422};
423
424static int linehandle_create(struct gpio_device *gdev, void __user *ip)
425{
426 struct gpiohandle_request handlereq;
427 struct linehandle_state *lh;
953b956a 428 struct file *file;
d7c51b47
LW
429 int fd, i, ret;
430
431 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
432 return -EFAULT;
433 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
434 return -EINVAL;
435
436 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
437 if (!lh)
438 return -ENOMEM;
439 lh->gdev = gdev;
440 get_device(&gdev->dev);
441
442 /* Make sure this is terminated */
443 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
444 if (strlen(handlereq.consumer_label)) {
445 lh->label = kstrdup(handlereq.consumer_label,
446 GFP_KERNEL);
447 if (!lh->label) {
448 ret = -ENOMEM;
449 goto out_free_lh;
450 }
451 }
452
453 /* Request each GPIO */
454 for (i = 0; i < handlereq.lines; i++) {
455 u32 offset = handlereq.lineoffsets[i];
456 u32 lflags = handlereq.flags;
457 struct gpio_desc *desc;
458
e405f9fc
LPC
459 if (offset >= gdev->ngpio) {
460 ret = -EINVAL;
461 goto out_free_descs;
462 }
463
e3e847c7
LPC
464 /* Return an error if a unknown flag is set */
465 if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) {
466 ret = -EINVAL;
467 goto out_free_descs;
468 }
469
d7c51b47
LW
470 desc = &gdev->descs[offset];
471 ret = gpiod_request(desc, lh->label);
472 if (ret)
473 goto out_free_descs;
474 lh->descs[i] = desc;
475
476 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
477 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
478 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
479 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
480 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
481 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
482
483 /*
484 * Lines have to be requested explicitly for input
485 * or output, else the line will be treated "as is".
486 */
487 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
488 int val = !!handlereq.default_values[i];
489
490 ret = gpiod_direction_output(desc, val);
491 if (ret)
492 goto out_free_descs;
493 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
494 ret = gpiod_direction_input(desc);
495 if (ret)
496 goto out_free_descs;
497 }
498 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
499 offset);
500 }
e2f608be
LW
501 /* Let i point at the last handle */
502 i--;
d7c51b47
LW
503 lh->numdescs = handlereq.lines;
504
953b956a 505 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
d7c51b47
LW
506 if (fd < 0) {
507 ret = fd;
508 goto out_free_descs;
509 }
510
953b956a
LPC
511 file = anon_inode_getfile("gpio-linehandle",
512 &linehandle_fileops,
513 lh,
514 O_RDONLY | O_CLOEXEC);
515 if (IS_ERR(file)) {
516 ret = PTR_ERR(file);
517 goto out_put_unused_fd;
518 }
519
d7c51b47 520 handlereq.fd = fd;
d932cd49 521 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
953b956a
LPC
522 /*
523 * fput() will trigger the release() callback, so do not go onto
524 * the regular error cleanup path here.
525 */
526 fput(file);
527 put_unused_fd(fd);
528 return -EFAULT;
d932cd49 529 }
d7c51b47 530
953b956a
LPC
531 fd_install(fd, file);
532
d7c51b47
LW
533 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
534 lh->numdescs);
535
536 return 0;
537
953b956a
LPC
538out_put_unused_fd:
539 put_unused_fd(fd);
d7c51b47
LW
540out_free_descs:
541 for (; i >= 0; i--)
542 gpiod_free(lh->descs[i]);
543 kfree(lh->label);
544out_free_lh:
545 kfree(lh);
546 put_device(&gdev->dev);
547 return ret;
548}
549
61f922db
LW
550/*
551 * GPIO line event management
552 */
553
554/**
555 * struct lineevent_state - contains the state of a userspace event
556 * @gdev: the GPIO device the event pertains to
557 * @label: consumer label used to tag descriptors
558 * @desc: the GPIO descriptor held by this event
559 * @eflags: the event flags this line was requested with
560 * @irq: the interrupt that trigger in response to events on this GPIO
561 * @wait: wait queue that handles blocking reads of events
562 * @events: KFIFO for the GPIO events
563 * @read_lock: mutex lock to protect reads from colliding with adding
564 * new events to the FIFO
565 */
566struct lineevent_state {
567 struct gpio_device *gdev;
568 const char *label;
569 struct gpio_desc *desc;
570 u32 eflags;
571 int irq;
572 wait_queue_head_t wait;
573 DECLARE_KFIFO(events, struct gpioevent_data, 16);
574 struct mutex read_lock;
575};
576
ac7dbb99
LPC
577#define GPIOEVENT_REQUEST_VALID_FLAGS \
578 (GPIOEVENT_REQUEST_RISING_EDGE | \
579 GPIOEVENT_REQUEST_FALLING_EDGE)
580
61f922db
LW
581static unsigned int lineevent_poll(struct file *filep,
582 struct poll_table_struct *wait)
583{
584 struct lineevent_state *le = filep->private_data;
585 unsigned int events = 0;
586
587 poll_wait(filep, &le->wait, wait);
588
589 if (!kfifo_is_empty(&le->events))
590 events = POLLIN | POLLRDNORM;
591
592 return events;
593}
594
595
596static ssize_t lineevent_read(struct file *filep,
597 char __user *buf,
598 size_t count,
599 loff_t *f_ps)
600{
601 struct lineevent_state *le = filep->private_data;
602 unsigned int copied;
603 int ret;
604
605 if (count < sizeof(struct gpioevent_data))
606 return -EINVAL;
607
608 do {
609 if (kfifo_is_empty(&le->events)) {
610 if (filep->f_flags & O_NONBLOCK)
611 return -EAGAIN;
612
613 ret = wait_event_interruptible(le->wait,
614 !kfifo_is_empty(&le->events));
615 if (ret)
616 return ret;
617 }
618
619 if (mutex_lock_interruptible(&le->read_lock))
620 return -ERESTARTSYS;
621 ret = kfifo_to_user(&le->events, buf, count, &copied);
622 mutex_unlock(&le->read_lock);
623
624 if (ret)
625 return ret;
626
627 /*
628 * If we couldn't read anything from the fifo (a different
629 * thread might have been faster) we either return -EAGAIN if
630 * the file descriptor is non-blocking, otherwise we go back to
631 * sleep and wait for more data to arrive.
632 */
633 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
634 return -EAGAIN;
635
636 } while (copied == 0);
637
638 return copied;
639}
640
641static int lineevent_release(struct inode *inode, struct file *filep)
642{
643 struct lineevent_state *le = filep->private_data;
644 struct gpio_device *gdev = le->gdev;
645
646 free_irq(le->irq, le);
647 gpiod_free(le->desc);
648 kfree(le->label);
649 kfree(le);
650 put_device(&gdev->dev);
651 return 0;
652}
653
654static long lineevent_ioctl(struct file *filep, unsigned int cmd,
655 unsigned long arg)
656{
657 struct lineevent_state *le = filep->private_data;
658 void __user *ip = (void __user *)arg;
659 struct gpiohandle_data ghd;
660
661 /*
662 * We can get the value for an event line but not set it,
663 * because it is input by definition.
664 */
665 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
666 int val;
667
d82aa4a8
LPC
668 memset(&ghd, 0, sizeof(ghd));
669
61f922db
LW
670 val = gpiod_get_value_cansleep(le->desc);
671 if (val < 0)
672 return val;
673 ghd.values[0] = val;
674
675 if (copy_to_user(ip, &ghd, sizeof(ghd)))
676 return -EFAULT;
677
678 return 0;
679 }
680 return -EINVAL;
681}
682
683#ifdef CONFIG_COMPAT
684static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
685 unsigned long arg)
686{
687 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
688}
689#endif
690
691static const struct file_operations lineevent_fileops = {
692 .release = lineevent_release,
693 .read = lineevent_read,
694 .poll = lineevent_poll,
695 .owner = THIS_MODULE,
696 .llseek = noop_llseek,
697 .unlocked_ioctl = lineevent_ioctl,
698#ifdef CONFIG_COMPAT
699 .compat_ioctl = lineevent_ioctl_compat,
700#endif
701};
702
33265b17 703static irqreturn_t lineevent_irq_thread(int irq, void *p)
61f922db
LW
704{
705 struct lineevent_state *le = p;
706 struct gpioevent_data ge;
707 int ret;
708
709 ge.timestamp = ktime_get_real_ns();
710
711 if (le->eflags & GPIOEVENT_REQUEST_BOTH_EDGES) {
712 int level = gpiod_get_value_cansleep(le->desc);
713
714 if (level)
715 /* Emit low-to-high event */
716 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
717 else
718 /* Emit high-to-low event */
719 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
720 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
721 /* Emit low-to-high event */
722 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
723 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
724 /* Emit high-to-low event */
725 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
bc0207a5
AB
726 } else {
727 return IRQ_NONE;
61f922db
LW
728 }
729
730 ret = kfifo_put(&le->events, ge);
731 if (ret != 0)
732 wake_up_poll(&le->wait, POLLIN);
733
734 return IRQ_HANDLED;
735}
736
737static int lineevent_create(struct gpio_device *gdev, void __user *ip)
738{
739 struct gpioevent_request eventreq;
740 struct lineevent_state *le;
741 struct gpio_desc *desc;
953b956a 742 struct file *file;
61f922db
LW
743 u32 offset;
744 u32 lflags;
745 u32 eflags;
746 int fd;
747 int ret;
748 int irqflags = 0;
749
750 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
751 return -EFAULT;
752
753 le = kzalloc(sizeof(*le), GFP_KERNEL);
754 if (!le)
755 return -ENOMEM;
756 le->gdev = gdev;
757 get_device(&gdev->dev);
758
759 /* Make sure this is terminated */
760 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
761 if (strlen(eventreq.consumer_label)) {
762 le->label = kstrdup(eventreq.consumer_label,
763 GFP_KERNEL);
764 if (!le->label) {
765 ret = -ENOMEM;
766 goto out_free_le;
767 }
768 }
769
770 offset = eventreq.lineoffset;
771 lflags = eventreq.handleflags;
772 eflags = eventreq.eventflags;
773
b8b0e3d3
LPC
774 if (offset >= gdev->ngpio) {
775 ret = -EINVAL;
776 goto out_free_label;
777 }
778
ac7dbb99
LPC
779 /* Return an error if a unknown flag is set */
780 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
781 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
782 ret = -EINVAL;
783 goto out_free_label;
784 }
785
61f922db
LW
786 /* This is just wrong: we don't look for events on output lines */
787 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
788 ret = -EINVAL;
789 goto out_free_label;
790 }
791
792 desc = &gdev->descs[offset];
793 ret = gpiod_request(desc, le->label);
794 if (ret)
795 goto out_free_desc;
796 le->desc = desc;
797 le->eflags = eflags;
798
799 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
800 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
801 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
802 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
803 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
804 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
805
806 ret = gpiod_direction_input(desc);
807 if (ret)
808 goto out_free_desc;
809
810 le->irq = gpiod_to_irq(desc);
811 if (le->irq <= 0) {
812 ret = -ENODEV;
813 goto out_free_desc;
814 }
815
816 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
817 irqflags |= IRQF_TRIGGER_RISING;
818 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
819 irqflags |= IRQF_TRIGGER_FALLING;
820 irqflags |= IRQF_ONESHOT;
821 irqflags |= IRQF_SHARED;
822
823 INIT_KFIFO(le->events);
824 init_waitqueue_head(&le->wait);
825 mutex_init(&le->read_lock);
826
827 /* Request a thread to read the events */
828 ret = request_threaded_irq(le->irq,
829 NULL,
830 lineevent_irq_thread,
831 irqflags,
832 le->label,
833 le);
834 if (ret)
835 goto out_free_desc;
836
953b956a 837 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
61f922db
LW
838 if (fd < 0) {
839 ret = fd;
840 goto out_free_irq;
841 }
842
953b956a
LPC
843 file = anon_inode_getfile("gpio-event",
844 &lineevent_fileops,
845 le,
846 O_RDONLY | O_CLOEXEC);
847 if (IS_ERR(file)) {
848 ret = PTR_ERR(file);
849 goto out_put_unused_fd;
850 }
851
61f922db 852 eventreq.fd = fd;
d932cd49 853 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
953b956a
LPC
854 /*
855 * fput() will trigger the release() callback, so do not go onto
856 * the regular error cleanup path here.
857 */
858 fput(file);
859 put_unused_fd(fd);
860 return -EFAULT;
d932cd49 861 }
61f922db 862
953b956a
LPC
863 fd_install(fd, file);
864
61f922db
LW
865 return 0;
866
953b956a
LPC
867out_put_unused_fd:
868 put_unused_fd(fd);
61f922db
LW
869out_free_irq:
870 free_irq(le->irq, le);
871out_free_desc:
872 gpiod_free(le->desc);
873out_free_label:
874 kfree(le->label);
875out_free_le:
876 kfree(le);
877 put_device(&gdev->dev);
878 return ret;
879}
880
3c702e99
LW
881/**
882 * gpio_ioctl() - ioctl handler for the GPIO chardev
883 */
884static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
885{
886 struct gpio_device *gdev = filp->private_data;
887 struct gpio_chip *chip = gdev->chip;
8b92e17e 888 void __user *ip = (void __user *)arg;
3c702e99
LW
889
890 /* We fail any subsequent ioctl():s when the chip is gone */
891 if (!chip)
892 return -ENODEV;
893
521a2ad6 894 /* Fill in the struct and pass to userspace */
3c702e99 895 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
521a2ad6
LW
896 struct gpiochip_info chipinfo;
897
0f4bbb23
LPC
898 memset(&chipinfo, 0, sizeof(chipinfo));
899
3c702e99
LW
900 strncpy(chipinfo.name, dev_name(&gdev->dev),
901 sizeof(chipinfo.name));
902 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
df4878e9
LW
903 strncpy(chipinfo.label, gdev->label,
904 sizeof(chipinfo.label));
905 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
fdeb8e15 906 chipinfo.lines = gdev->ngpio;
3c702e99
LW
907 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
908 return -EFAULT;
909 return 0;
521a2ad6
LW
910 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
911 struct gpioline_info lineinfo;
912 struct gpio_desc *desc;
913
914 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
915 return -EFAULT;
1f1cc456 916 if (lineinfo.line_offset >= gdev->ngpio)
521a2ad6
LW
917 return -EINVAL;
918
919 desc = &gdev->descs[lineinfo.line_offset];
920 if (desc->name) {
921 strncpy(lineinfo.name, desc->name,
922 sizeof(lineinfo.name));
923 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
924 } else {
925 lineinfo.name[0] = '\0';
926 }
927 if (desc->label) {
214338e3
LW
928 strncpy(lineinfo.consumer, desc->label,
929 sizeof(lineinfo.consumer));
930 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
521a2ad6 931 } else {
214338e3 932 lineinfo.consumer[0] = '\0';
521a2ad6
LW
933 }
934
935 /*
936 * Userspace only need to know that the kernel is using
937 * this GPIO so it can't use it.
938 */
939 lineinfo.flags = 0;
9d8cc89c
LW
940 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
941 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
942 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
943 test_bit(FLAG_EXPORT, &desc->flags) ||
944 test_bit(FLAG_SYSFS, &desc->flags))
521a2ad6 945 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
9d8cc89c 946 if (test_bit(FLAG_IS_OUT, &desc->flags))
521a2ad6 947 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
9d8cc89c 948 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
521a2ad6 949 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
9d8cc89c 950 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
521a2ad6 951 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
9d8cc89c 952 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
521a2ad6
LW
953 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
954
955 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
956 return -EFAULT;
957 return 0;
d7c51b47
LW
958 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
959 return linehandle_create(gdev, ip);
61f922db
LW
960 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
961 return lineevent_create(gdev, ip);
3c702e99
LW
962 }
963 return -EINVAL;
964}
965
8b92e17e
LW
966#ifdef CONFIG_COMPAT
967static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
968 unsigned long arg)
969{
970 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
971}
972#endif
973
3c702e99
LW
974/**
975 * gpio_chrdev_open() - open the chardev for ioctl operations
976 * @inode: inode for this chardev
977 * @filp: file struct for storing private data
978 * Returns 0 on success
979 */
980static int gpio_chrdev_open(struct inode *inode, struct file *filp)
981{
982 struct gpio_device *gdev = container_of(inode->i_cdev,
983 struct gpio_device, chrdev);
984
985 /* Fail on open if the backing gpiochip is gone */
fb505747 986 if (!gdev->chip)
3c702e99
LW
987 return -ENODEV;
988 get_device(&gdev->dev);
989 filp->private_data = gdev;
f4e81c52
LPC
990
991 return nonseekable_open(inode, filp);
3c702e99
LW
992}
993
994/**
995 * gpio_chrdev_release() - close chardev after ioctl operations
996 * @inode: inode for this chardev
997 * @filp: file struct for storing private data
998 * Returns 0 on success
999 */
1000static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1001{
1002 struct gpio_device *gdev = container_of(inode->i_cdev,
1003 struct gpio_device, chrdev);
1004
3c702e99
LW
1005 put_device(&gdev->dev);
1006 return 0;
1007}
1008
1009
1010static const struct file_operations gpio_fileops = {
1011 .release = gpio_chrdev_release,
1012 .open = gpio_chrdev_open,
1013 .owner = THIS_MODULE,
f4e81c52 1014 .llseek = no_llseek,
3c702e99 1015 .unlocked_ioctl = gpio_ioctl,
8b92e17e
LW
1016#ifdef CONFIG_COMPAT
1017 .compat_ioctl = gpio_ioctl_compat,
1018#endif
3c702e99
LW
1019};
1020
ff2b1359
LW
1021static void gpiodevice_release(struct device *dev)
1022{
1023 struct gpio_device *gdev = dev_get_drvdata(dev);
1024
1025 list_del(&gdev->list);
1026 ida_simple_remove(&gpio_ida, gdev->id);
476e2fc5
GR
1027 kfree(gdev->label);
1028 kfree(gdev->descs);
9efd9e69 1029 kfree(gdev);
ff2b1359
LW
1030}
1031
159f3cd9
GR
1032static int gpiochip_setup_dev(struct gpio_device *gdev)
1033{
1034 int status;
1035
1036 cdev_init(&gdev->chrdev, &gpio_fileops);
1037 gdev->chrdev.owner = THIS_MODULE;
159f3cd9 1038 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
111379dc
LG
1039
1040 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
159f3cd9 1041 if (status)
111379dc
LG
1042 return status;
1043
1044 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1045 MAJOR(gpio_devt), gdev->id);
159f3cd9
GR
1046
1047 status = gpiochip_sysfs_register(gdev);
1048 if (status)
1049 goto err_remove_device;
1050
1051 /* From this point, the .release() function cleans up gpio_device */
1052 gdev->dev.release = gpiodevice_release;
159f3cd9
GR
1053 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1054 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1055 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1056
1057 return 0;
1058
1059err_remove_device:
111379dc 1060 cdev_device_del(&gdev->chrdev, &gdev->dev);
159f3cd9
GR
1061 return status;
1062}
1063
1064static void gpiochip_setup_devs(void)
1065{
1066 struct gpio_device *gdev;
1067 int err;
1068
1069 list_for_each_entry(gdev, &gpio_devices, list) {
1070 err = gpiochip_setup_dev(gdev);
1071 if (err)
1072 pr_err("%s: Failed to initialize gpio device (%d)\n",
1073 dev_name(&gdev->dev), err);
1074 }
1075}
1076
d2876d08 1077/**
b08ea35a 1078 * gpiochip_add_data() - register a gpio_chip
d2876d08 1079 * @chip: the chip to register, with chip->base initialized
14e85c0e 1080 * Context: potentially before irqs will work
d2876d08
DB
1081 *
1082 * Returns a negative errno if the chip can't be registered, such as
1083 * because the chip->base is invalid or already associated with a
1084 * different chip. Otherwise it returns zero as a success code.
8d0aab2f 1085 *
b08ea35a 1086 * When gpiochip_add_data() is called very early during boot, so that GPIOs
c88402c2 1087 * can be freely used, the chip->parent device must be registered before
d8f388d8
DB
1088 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1089 * for GPIOs will fail rudely.
1090 *
159f3cd9
GR
1091 * gpiochip_add_data() must only be called after gpiolib initialization,
1092 * ie after core_initcall().
1093 *
8d0aab2f
AV
1094 * If chip->base is negative, this requests dynamic assignment of
1095 * a range of valid GPIOs.
d2876d08 1096 */
b08ea35a 1097int gpiochip_add_data(struct gpio_chip *chip, void *data)
d2876d08
DB
1098{
1099 unsigned long flags;
1100 int status = 0;
ff2b1359 1101 unsigned i;
8d0aab2f 1102 int base = chip->base;
ff2b1359 1103 struct gpio_device *gdev;
d2876d08 1104
ff2b1359
LW
1105 /*
1106 * First: allocate and populate the internal stat container, and
1107 * set up the struct device.
1108 */
969f07b4 1109 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
ff2b1359 1110 if (!gdev)
14e85c0e 1111 return -ENOMEM;
3c702e99 1112 gdev->dev.bus = &gpio_bus_type;
ff2b1359
LW
1113 gdev->chip = chip;
1114 chip->gpiodev = gdev;
1115 if (chip->parent) {
1116 gdev->dev.parent = chip->parent;
1117 gdev->dev.of_node = chip->parent->of_node;
acc6e331
TR
1118 }
1119
ff2b1359
LW
1120#ifdef CONFIG_OF_GPIO
1121 /* If the gpiochip has an assigned OF node this takes precedence */
acc6e331
TR
1122 if (chip->of_node)
1123 gdev->dev.of_node = chip->of_node;
ff2b1359 1124#endif
acc6e331 1125
ff2b1359
LW
1126 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1127 if (gdev->id < 0) {
1128 status = gdev->id;
1129 goto err_free_gdev;
1130 }
1131 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1132 device_initialize(&gdev->dev);
1133 dev_set_drvdata(&gdev->dev, gdev);
1134 if (chip->parent && chip->parent->driver)
1135 gdev->owner = chip->parent->driver->owner;
1136 else if (chip->owner)
1137 /* TODO: remove chip->owner */
1138 gdev->owner = chip->owner;
1139 else
1140 gdev->owner = THIS_MODULE;
d2876d08 1141
476e2fc5 1142 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
1c3cdb18 1143 if (!gdev->descs) {
ff2b1359
LW
1144 status = -ENOMEM;
1145 goto err_free_gdev;
1146 }
1147
5ed41cc4
BJZ
1148 if (chip->ngpio == 0) {
1149 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
ff2b1359 1150 status = -EINVAL;
159f3cd9 1151 goto err_free_descs;
5ed41cc4 1152 }
df4878e9
LW
1153
1154 if (chip->label)
476e2fc5 1155 gdev->label = kstrdup(chip->label, GFP_KERNEL);
df4878e9 1156 else
476e2fc5 1157 gdev->label = kstrdup("unknown", GFP_KERNEL);
df4878e9
LW
1158 if (!gdev->label) {
1159 status = -ENOMEM;
476e2fc5 1160 goto err_free_descs;
df4878e9
LW
1161 }
1162
fdeb8e15 1163 gdev->ngpio = chip->ngpio;
43c54eca 1164 gdev->data = data;
5ed41cc4 1165
d2876d08
DB
1166 spin_lock_irqsave(&gpio_lock, flags);
1167
fdeb8e15
LW
1168 /*
1169 * TODO: this allocates a Linux GPIO number base in the global
1170 * GPIO numberspace for this chip. In the long run we want to
1171 * get *rid* of this numberspace and use only descriptors, but
1172 * it may be a pipe dream. It will not happen before we get rid
1173 * of the sysfs interface anyways.
1174 */
8d0aab2f
AV
1175 if (base < 0) {
1176 base = gpiochip_find_base(chip->ngpio);
1177 if (base < 0) {
1178 status = base;
225fce83 1179 spin_unlock_irqrestore(&gpio_lock, flags);
476e2fc5 1180 goto err_free_label;
8d0aab2f 1181 }
fdeb8e15
LW
1182 /*
1183 * TODO: it should not be necessary to reflect the assigned
1184 * base outside of the GPIO subsystem. Go over drivers and
1185 * see if anyone makes use of this, else drop this and assign
1186 * a poison instead.
1187 */
8d0aab2f
AV
1188 chip->base = base;
1189 }
fdeb8e15 1190 gdev->base = base;
8d0aab2f 1191
ff2b1359 1192 status = gpiodev_add_to_list(gdev);
05aa5203
JH
1193 if (status) {
1194 spin_unlock_irqrestore(&gpio_lock, flags);
476e2fc5 1195 goto err_free_label;
05aa5203 1196 }
1a989d0f 1197
545ebd9a
LW
1198 spin_unlock_irqrestore(&gpio_lock, flags);
1199
ff2b1359 1200 for (i = 0; i < chip->ngpio; i++) {
1c3cdb18 1201 struct gpio_desc *desc = &gdev->descs[i];
05aa5203 1202
fdeb8e15 1203 desc->gdev = gdev;
72d32000
LW
1204 /*
1205 * REVISIT: most hardware initializes GPIOs as inputs
1206 * (often with pullups enabled) so power usage is
1207 * minimized. Linux code should set the gpio direction
1208 * first thing; but until it does, and in case
1209 * chip->get_direction is not set, we may expose the
1210 * wrong direction in sysfs.
05aa5203 1211 */
72d32000
LW
1212
1213 if (chip->get_direction) {
1214 /*
1215 * If we have .get_direction, set up the initial
1216 * direction flag from the hardware.
1217 */
1218 int dir = chip->get_direction(chip, i);
1219
1220 if (!dir)
1221 set_bit(FLAG_IS_OUT, &desc->flags);
1222 } else if (!chip->direction_input) {
1223 /*
1224 * If the chip lacks the .direction_input callback
1225 * we logically assume all lines are outputs.
1226 */
1227 set_bit(FLAG_IS_OUT, &desc->flags);
1228 }
d2876d08 1229 }
14e85c0e 1230
f23f1516 1231#ifdef CONFIG_PINCTRL
20ec3e39 1232 INIT_LIST_HEAD(&gdev->pin_ranges);
f23f1516
SH
1233#endif
1234
5f3ca732
MP
1235 status = gpiochip_set_desc_names(chip);
1236 if (status)
1237 goto err_remove_from_list;
1238
79b804cb
MW
1239 status = gpiochip_irqchip_init_valid_mask(chip);
1240 if (status)
1241 goto err_remove_from_list;
1242
28355f81
TV
1243 status = of_gpiochip_add(chip);
1244 if (status)
1245 goto err_remove_chip;
1246
664e3e5a 1247 acpi_gpiochip_add(chip);
391c970c 1248
3c702e99
LW
1249 /*
1250 * By first adding the chardev, and then adding the device,
1251 * we get a device node entry in sysfs under
1252 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1253 * coldplug of device nodes and other udev business.
159f3cd9
GR
1254 * We can do this only if gpiolib has been initialized.
1255 * Otherwise, defer until later.
3c702e99 1256 */
159f3cd9
GR
1257 if (gpiolib_initialized) {
1258 status = gpiochip_setup_dev(gdev);
1259 if (status)
1260 goto err_remove_chip;
1261 }
cedb1881 1262 return 0;
3bae4811 1263
225fce83
JH
1264err_remove_chip:
1265 acpi_gpiochip_remove(chip);
6d86750c 1266 gpiochip_free_hogs(chip);
225fce83 1267 of_gpiochip_remove(chip);
79b804cb 1268 gpiochip_irqchip_free_valid_mask(chip);
5f3ca732 1269err_remove_from_list:
225fce83 1270 spin_lock_irqsave(&gpio_lock, flags);
ff2b1359 1271 list_del(&gdev->list);
3bae4811 1272 spin_unlock_irqrestore(&gpio_lock, flags);
476e2fc5
GR
1273err_free_label:
1274 kfree(gdev->label);
1275err_free_descs:
1276 kfree(gdev->descs);
ff2b1359
LW
1277err_free_gdev:
1278 ida_simple_remove(&gpio_ida, gdev->id);
d2876d08 1279 /* failures here can mean systems won't boot... */
7589e59f 1280 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
fdeb8e15
LW
1281 gdev->base, gdev->base + gdev->ngpio - 1,
1282 chip->label ? : "generic");
1283 kfree(gdev);
d2876d08
DB
1284 return status;
1285}
b08ea35a 1286EXPORT_SYMBOL_GPL(gpiochip_add_data);
d2876d08 1287
43c54eca
LW
1288/**
1289 * gpiochip_get_data() - get per-subdriver data for the chip
1290 */
1291void *gpiochip_get_data(struct gpio_chip *chip)
1292{
1293 return chip->gpiodev->data;
1294}
1295EXPORT_SYMBOL_GPL(gpiochip_get_data);
1296
d2876d08
DB
1297/**
1298 * gpiochip_remove() - unregister a gpio_chip
1299 * @chip: the chip to unregister
1300 *
1301 * A gpio_chip with any GPIOs still requested may not be removed.
1302 */
e1db1706 1303void gpiochip_remove(struct gpio_chip *chip)
d2876d08 1304{
ff2b1359 1305 struct gpio_device *gdev = chip->gpiodev;
fab28b89 1306 struct gpio_desc *desc;
d2876d08 1307 unsigned long flags;
1c3cdb18 1308 unsigned i;
fab28b89 1309 bool requested = false;
d2876d08 1310
ff2b1359 1311 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
afbc4f31 1312 gpiochip_sysfs_unregister(gdev);
5018ada6 1313 gpiochip_free_hogs(chip);
bd203bd5
BJZ
1314 /* Numb the device, cancelling all outstanding operations */
1315 gdev->chip = NULL;
00acc3dc 1316 gpiochip_irqchip_remove(chip);
6072b9dc 1317 acpi_gpiochip_remove(chip);
9ef0d6f7 1318 gpiochip_remove_pin_ranges(chip);
391c970c 1319 of_gpiochip_remove(chip);
43c54eca
LW
1320 /*
1321 * We accept no more calls into the driver from this point, so
1322 * NULL the driver data pointer
1323 */
1324 gdev->data = NULL;
391c970c 1325
6798acaa 1326 spin_lock_irqsave(&gpio_lock, flags);
fdeb8e15 1327 for (i = 0; i < gdev->ngpio; i++) {
1c3cdb18 1328 desc = &gdev->descs[i];
fab28b89
JH
1329 if (test_bit(FLAG_REQUESTED, &desc->flags))
1330 requested = true;
d2876d08 1331 }
d2876d08 1332 spin_unlock_irqrestore(&gpio_lock, flags);
14e85c0e 1333
fab28b89 1334 if (requested)
fdeb8e15 1335 dev_crit(&gdev->dev,
58383c78 1336 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
fab28b89 1337
ff2b1359
LW
1338 /*
1339 * The gpiochip side puts its use of the device to rest here:
1340 * if there are no userspace clients, the chardev and device will
1341 * be removed, else it will be dangling until the last user is
1342 * gone.
1343 */
111379dc 1344 cdev_device_del(&gdev->chrdev, &gdev->dev);
ff2b1359 1345 put_device(&gdev->dev);
d2876d08
DB
1346}
1347EXPORT_SYMBOL_GPL(gpiochip_remove);
1348
0cf3292c
LD
1349static void devm_gpio_chip_release(struct device *dev, void *res)
1350{
1351 struct gpio_chip *chip = *(struct gpio_chip **)res;
1352
1353 gpiochip_remove(chip);
1354}
1355
1356static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1357
1358{
1359 struct gpio_chip **r = res;
1360
1361 if (!r || !*r) {
1362 WARN_ON(!r || !*r);
1363 return 0;
1364 }
1365
1366 return *r == data;
1367}
1368
1369/**
1370 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1371 * @dev: the device pointer on which irq_chip belongs to.
1372 * @chip: the chip to register, with chip->base initialized
1373 * Context: potentially before irqs will work
1374 *
1375 * Returns a negative errno if the chip can't be registered, such as
1376 * because the chip->base is invalid or already associated with a
1377 * different chip. Otherwise it returns zero as a success code.
1378 *
1379 * The gpio chip automatically be released when the device is unbound.
1380 */
1381int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1382 void *data)
1383{
1384 struct gpio_chip **ptr;
1385 int ret;
1386
1387 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1388 GFP_KERNEL);
1389 if (!ptr)
1390 return -ENOMEM;
1391
1392 ret = gpiochip_add_data(chip, data);
1393 if (ret < 0) {
1394 devres_free(ptr);
1395 return ret;
1396 }
1397
1398 *ptr = chip;
1399 devres_add(dev, ptr);
1400
1401 return 0;
1402}
1403EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1404
1405/**
1406 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1407 * @dev: device for which which resource was allocated
1408 * @chip: the chip to remove
1409 *
1410 * A gpio_chip with any GPIOs still requested may not be removed.
1411 */
1412void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1413{
1414 int ret;
1415
1416 ret = devres_release(dev, devm_gpio_chip_release,
1417 devm_gpio_chip_match, chip);
3988d663 1418 WARN_ON(ret);
0cf3292c
LD
1419}
1420EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1421
594fa265
GL
1422/**
1423 * gpiochip_find() - iterator for locating a specific gpio_chip
1424 * @data: data to pass to match function
1425 * @callback: Callback function to check gpio_chip
1426 *
1427 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1428 * determined by a user supplied @match callback. The callback should return
1429 * 0 if the device doesn't match and non-zero if it does. If the callback is
1430 * non-zero, this function will return to the caller and not iterate over any
1431 * more gpio_chips.
1432 */
07ce8ec7 1433struct gpio_chip *gpiochip_find(void *data,
6e2cf651 1434 int (*match)(struct gpio_chip *chip,
3d0f7cf0 1435 void *data))
594fa265 1436{
ff2b1359 1437 struct gpio_device *gdev;
acf06ff7 1438 struct gpio_chip *chip = NULL;
594fa265 1439 unsigned long flags;
594fa265
GL
1440
1441 spin_lock_irqsave(&gpio_lock, flags);
ff2b1359 1442 list_for_each_entry(gdev, &gpio_devices, list)
acf06ff7
MY
1443 if (gdev->chip && match(gdev->chip, data)) {
1444 chip = gdev->chip;
594fa265 1445 break;
acf06ff7 1446 }
ff2b1359 1447
594fa265
GL
1448 spin_unlock_irqrestore(&gpio_lock, flags);
1449
1450 return chip;
1451}
8fa0c9bf 1452EXPORT_SYMBOL_GPL(gpiochip_find);
d2876d08 1453
79697ef9
AC
1454static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1455{
1456 const char *name = data;
1457
1458 return !strcmp(chip->label, name);
1459}
1460
1461static struct gpio_chip *find_chip_by_name(const char *name)
1462{
1463 return gpiochip_find((void *)name, gpiochip_match_name);
1464}
1465
14250520
LW
1466#ifdef CONFIG_GPIOLIB_IRQCHIP
1467
1468/*
1469 * The following is irqchip helper code for gpiochips.
1470 */
1471
79b804cb
MW
1472static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1473{
1474 int i;
1475
1476 if (!gpiochip->irq_need_valid_mask)
1477 return 0;
1478
1479 gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
1480 sizeof(long), GFP_KERNEL);
1481 if (!gpiochip->irq_valid_mask)
1482 return -ENOMEM;
1483
1484 /* Assume by default all GPIOs are valid */
1485 for (i = 0; i < gpiochip->ngpio; i++)
1486 set_bit(i, gpiochip->irq_valid_mask);
1487
1488 return 0;
1489}
1490
1491static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1492{
1493 kfree(gpiochip->irq_valid_mask);
1494 gpiochip->irq_valid_mask = NULL;
1495}
1496
1497static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1498 unsigned int offset)
1499{
1500 /* No mask means all valid */
1501 if (likely(!gpiochip->irq_valid_mask))
1502 return true;
1503 return test_bit(offset, gpiochip->irq_valid_mask);
1504}
1505
14250520 1506/**
d245b3f9 1507 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
3f97d5fc
LW
1508 * @gpiochip: the gpiochip to set the irqchip chain to
1509 * @irqchip: the irqchip to chain to the gpiochip
14250520
LW
1510 * @parent_irq: the irq number corresponding to the parent IRQ for this
1511 * chained irqchip
1512 * @parent_handler: the parent interrupt handler for the accumulated IRQ
3f97d5fc
LW
1513 * coming out of the gpiochip. If the interrupt is nested rather than
1514 * cascaded, pass NULL in this handler argument
14250520 1515 */
d245b3f9
LW
1516static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1517 struct irq_chip *irqchip,
6f79309a 1518 unsigned int parent_irq,
d245b3f9 1519 irq_flow_handler_t parent_handler)
14250520 1520{
83141a77
LW
1521 unsigned int offset;
1522
83141a77
LW
1523 if (!gpiochip->irqdomain) {
1524 chip_err(gpiochip, "called %s before setting up irqchip\n",
1525 __func__);
1c8732bb
LW
1526 return;
1527 }
1528
3f97d5fc
LW
1529 if (parent_handler) {
1530 if (gpiochip->can_sleep) {
1531 chip_err(gpiochip,
1532 "you cannot have chained interrupts on a "
1533 "chip that may sleep\n");
1534 return;
1535 }
3f97d5fc
LW
1536 /*
1537 * The parent irqchip is already using the chip_data for this
1538 * irqchip, so our callbacks simply use the handler_data.
1539 */
f7f87753
TG
1540 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1541 gpiochip);
25e4fe92 1542
d245b3f9 1543 gpiochip->irq_chained_parent = parent_irq;
3f97d5fc 1544 }
83141a77
LW
1545
1546 /* Set the parent IRQ for all affected IRQs */
79b804cb
MW
1547 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1548 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1549 continue;
83141a77
LW
1550 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
1551 parent_irq);
79b804cb 1552 }
14250520 1553}
d245b3f9
LW
1554
1555/**
1556 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1557 * @gpiochip: the gpiochip to set the irqchip chain to
1558 * @irqchip: the irqchip to chain to the gpiochip
1559 * @parent_irq: the irq number corresponding to the parent IRQ for this
1560 * chained irqchip
1561 * @parent_handler: the parent interrupt handler for the accumulated IRQ
1562 * coming out of the gpiochip. If the interrupt is nested rather than
1563 * cascaded, pass NULL in this handler argument
1564 */
1565void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1566 struct irq_chip *irqchip,
6f79309a 1567 unsigned int parent_irq,
d245b3f9
LW
1568 irq_flow_handler_t parent_handler)
1569{
1570 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1571 parent_handler);
1572}
14250520
LW
1573EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1574
d245b3f9
LW
1575/**
1576 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1577 * @gpiochip: the gpiochip to set the irqchip nested handler to
1578 * @irqchip: the irqchip to nest to the gpiochip
1579 * @parent_irq: the irq number corresponding to the parent IRQ for this
1580 * nested irqchip
1581 */
1582void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1583 struct irq_chip *irqchip,
6f79309a 1584 unsigned int parent_irq)
d245b3f9
LW
1585{
1586 if (!gpiochip->irq_nested) {
1587 chip_err(gpiochip, "tried to nest a chained gpiochip\n");
1588 return;
1589 }
1590 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1591 NULL);
1592}
1593EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1594
14250520
LW
1595/**
1596 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1597 * @d: the irqdomain used by this irqchip
1598 * @irq: the global irq number used by this GPIO irqchip irq
1599 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1600 *
1601 * This function will set up the mapping for a certain IRQ line on a
1602 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1603 * stored inside the gpiochip.
1604 */
1605static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1606 irq_hw_number_t hwirq)
1607{
1608 struct gpio_chip *chip = d->host_data;
1609
14250520 1610 irq_set_chip_data(irq, chip);
a0a8bcf4
GS
1611 /*
1612 * This lock class tells lockdep that GPIO irqs are in a different
1613 * category than their parents, so it won't report false recursion.
1614 */
1615 irq_set_lockdep_class(irq, chip->lock_key);
7633fb95 1616 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
d245b3f9
LW
1617 /* Chips that use nested thread handlers have them marked */
1618 if (chip->irq_nested)
1c8732bb 1619 irq_set_nested_thread(irq, 1);
14250520 1620 irq_set_noprobe(irq);
23393d49 1621
1333b90f
LW
1622 /*
1623 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1624 * is passed as default type.
1625 */
1626 if (chip->irq_default_type != IRQ_TYPE_NONE)
1627 irq_set_irq_type(irq, chip->irq_default_type);
14250520
LW
1628
1629 return 0;
1630}
1631
c3626fde
LW
1632static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1633{
1c8732bb
LW
1634 struct gpio_chip *chip = d->host_data;
1635
d245b3f9 1636 if (chip->irq_nested)
1c8732bb 1637 irq_set_nested_thread(irq, 0);
c3626fde
LW
1638 irq_set_chip_and_handler(irq, NULL, NULL);
1639 irq_set_chip_data(irq, NULL);
1640}
1641
14250520
LW
1642static const struct irq_domain_ops gpiochip_domain_ops = {
1643 .map = gpiochip_irq_map,
c3626fde 1644 .unmap = gpiochip_irq_unmap,
14250520
LW
1645 /* Virtually all GPIO irqchips are twocell:ed */
1646 .xlate = irq_domain_xlate_twocell,
1647};
1648
1649static int gpiochip_irq_reqres(struct irq_data *d)
1650{
1651 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1652
ff2b1359 1653 if (!try_module_get(chip->gpiodev->owner))
5b76e79c
GS
1654 return -ENODEV;
1655
e3a2e878 1656 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
14250520
LW
1657 chip_err(chip,
1658 "unable to lock HW IRQ %lu for IRQ\n",
1659 d->hwirq);
ff2b1359 1660 module_put(chip->gpiodev->owner);
14250520
LW
1661 return -EINVAL;
1662 }
1663 return 0;
1664}
1665
1666static void gpiochip_irq_relres(struct irq_data *d)
1667{
1668 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1669
e3a2e878 1670 gpiochip_unlock_as_irq(chip, d->hwirq);
ff2b1359 1671 module_put(chip->gpiodev->owner);
14250520
LW
1672}
1673
1674static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1675{
1676 return irq_find_mapping(chip->irqdomain, offset);
1677}
1678
1679/**
1680 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1681 * @gpiochip: the gpiochip to remove the irqchip from
1682 *
1683 * This is called only from gpiochip_remove()
1684 */
1685static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1686{
c3626fde
LW
1687 unsigned int offset;
1688
afa82fab
MW
1689 acpi_gpiochip_free_interrupts(gpiochip);
1690
d245b3f9
LW
1691 if (gpiochip->irq_chained_parent) {
1692 irq_set_chained_handler(gpiochip->irq_chained_parent, NULL);
1693 irq_set_handler_data(gpiochip->irq_chained_parent, NULL);
25e4fe92
DES
1694 }
1695
c3626fde
LW
1696 /* Remove all IRQ mappings and delete the domain */
1697 if (gpiochip->irqdomain) {
79b804cb
MW
1698 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1699 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1700 continue;
e3893386
GS
1701 irq_dispose_mapping(
1702 irq_find_mapping(gpiochip->irqdomain, offset));
79b804cb 1703 }
14250520 1704 irq_domain_remove(gpiochip->irqdomain);
c3626fde 1705 }
14250520
LW
1706
1707 if (gpiochip->irqchip) {
1708 gpiochip->irqchip->irq_request_resources = NULL;
1709 gpiochip->irqchip->irq_release_resources = NULL;
1710 gpiochip->irqchip = NULL;
1711 }
79b804cb
MW
1712
1713 gpiochip_irqchip_free_valid_mask(gpiochip);
14250520
LW
1714}
1715
1716/**
739e6f59 1717 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
14250520
LW
1718 * @gpiochip: the gpiochip to add the irqchip to
1719 * @irqchip: the irqchip to add to the gpiochip
1720 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1721 * allocate gpiochip irqs from
1722 * @handler: the irq handler to use (often a predefined irq core function)
1333b90f
LW
1723 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1724 * to have the core avoid setting up any default type in the hardware.
d245b3f9
LW
1725 * @nested: whether this is a nested irqchip calling handle_nested_irq()
1726 * in its IRQ handler
a0a8bcf4 1727 * @lock_key: lockdep class
14250520
LW
1728 *
1729 * This function closely associates a certain irqchip with a certain
1730 * gpiochip, providing an irq domain to translate the local IRQs to
1731 * global irqs in the gpiolib core, and making sure that the gpiochip
1732 * is passed as chip data to all related functions. Driver callbacks
09dd5f9e 1733 * need to use gpiochip_get_data() to get their local state containers back
14250520
LW
1734 * from the gpiochip passed as chip data. An irqdomain will be stored
1735 * in the gpiochip that shall be used by the driver to handle IRQ number
1736 * translation. The gpiochip will need to be initialized and registered
1737 * before calling this function.
1738 *
c3626fde
LW
1739 * This function will handle two cell:ed simple IRQs and assumes all
1740 * the pins on the gpiochip can generate a unique IRQ. Everything else
14250520
LW
1741 * need to be open coded.
1742 */
739e6f59
LW
1743int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
1744 struct irq_chip *irqchip,
1745 unsigned int first_irq,
1746 irq_flow_handler_t handler,
1747 unsigned int type,
1748 bool nested,
1749 struct lock_class_key *lock_key)
14250520
LW
1750{
1751 struct device_node *of_node;
79b804cb 1752 bool irq_base_set = false;
14250520 1753 unsigned int offset;
c3626fde 1754 unsigned irq_base = 0;
14250520
LW
1755
1756 if (!gpiochip || !irqchip)
1757 return -EINVAL;
1758
58383c78 1759 if (!gpiochip->parent) {
14250520
LW
1760 pr_err("missing gpiochip .dev parent pointer\n");
1761 return -EINVAL;
1762 }
d245b3f9 1763 gpiochip->irq_nested = nested;
58383c78 1764 of_node = gpiochip->parent->of_node;
14250520
LW
1765#ifdef CONFIG_OF_GPIO
1766 /*
20a8a968 1767 * If the gpiochip has an assigned OF node this takes precedence
c88402c2
BJZ
1768 * FIXME: get rid of this and use gpiochip->parent->of_node
1769 * everywhere
14250520
LW
1770 */
1771 if (gpiochip->of_node)
1772 of_node = gpiochip->of_node;
1773#endif
332e99d5 1774 /*
0a1e0053 1775 * Specifying a default trigger is a terrible idea if DT or ACPI is
332e99d5
MZ
1776 * used to configure the interrupts, as you may end-up with
1777 * conflicting triggers. Tell the user, and reset to NONE.
1778 */
1779 if (WARN(of_node && type != IRQ_TYPE_NONE,
1780 "%s: Ignoring %d default trigger\n", of_node->full_name, type))
1781 type = IRQ_TYPE_NONE;
0a1e0053
MW
1782 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1783 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1784 "Ignoring %d default trigger\n", type);
1785 type = IRQ_TYPE_NONE;
1786 }
332e99d5 1787
14250520
LW
1788 gpiochip->irqchip = irqchip;
1789 gpiochip->irq_handler = handler;
1790 gpiochip->irq_default_type = type;
1791 gpiochip->to_irq = gpiochip_to_irq;
a0a8bcf4 1792 gpiochip->lock_key = lock_key;
14250520
LW
1793 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1794 gpiochip->ngpio, first_irq,
1795 &gpiochip_domain_ops, gpiochip);
1796 if (!gpiochip->irqdomain) {
1797 gpiochip->irqchip = NULL;
1798 return -EINVAL;
1799 }
8b67a1f0
RV
1800
1801 /*
1802 * It is possible for a driver to override this, but only if the
1803 * alternative functions are both implemented.
1804 */
1805 if (!irqchip->irq_request_resources &&
1806 !irqchip->irq_release_resources) {
1807 irqchip->irq_request_resources = gpiochip_irq_reqres;
1808 irqchip->irq_release_resources = gpiochip_irq_relres;
1809 }
14250520
LW
1810
1811 /*
1812 * Prepare the mapping since the irqchip shall be orthogonal to
1813 * any gpiochip calls. If the first_irq was zero, this is
1814 * necessary to allocate descriptors for all IRQs.
1815 */
c3626fde 1816 for (offset = 0; offset < gpiochip->ngpio; offset++) {
79b804cb
MW
1817 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1818 continue;
c3626fde 1819 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
79b804cb 1820 if (!irq_base_set) {
c3626fde
LW
1821 /*
1822 * Store the base into the gpiochip to be used when
1823 * unmapping the irqs.
1824 */
1825 gpiochip->irq_base = irq_base;
79b804cb
MW
1826 irq_base_set = true;
1827 }
c3626fde 1828 }
14250520 1829
afa82fab
MW
1830 acpi_gpiochip_request_interrupts(gpiochip);
1831
14250520
LW
1832 return 0;
1833}
739e6f59 1834EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
14250520
LW
1835
1836#else /* CONFIG_GPIOLIB_IRQCHIP */
1837
1838static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
79b804cb
MW
1839static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1840{
1841 return 0;
1842}
1843static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1844{ }
14250520
LW
1845
1846#endif /* CONFIG_GPIOLIB_IRQCHIP */
1847
c771c2f4
JG
1848/**
1849 * gpiochip_generic_request() - request the gpio function for a pin
1850 * @chip: the gpiochip owning the GPIO
1851 * @offset: the offset of the GPIO to request for GPIO function
1852 */
1853int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1854{
fdeb8e15 1855 return pinctrl_request_gpio(chip->gpiodev->base + offset);
c771c2f4
JG
1856}
1857EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1858
1859/**
1860 * gpiochip_generic_free() - free the gpio function from a pin
1861 * @chip: the gpiochip to request the gpio function for
1862 * @offset: the offset of the GPIO to free from GPIO function
1863 */
1864void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1865{
fdeb8e15 1866 pinctrl_free_gpio(chip->gpiodev->base + offset);
c771c2f4
JG
1867}
1868EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1869
2956b5d9
MW
1870/**
1871 * gpiochip_generic_config() - apply configuration for a pin
1872 * @chip: the gpiochip owning the GPIO
1873 * @offset: the offset of the GPIO to apply the configuration
1874 * @config: the configuration to be applied
1875 */
1876int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
1877 unsigned long config)
1878{
1879 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
1880}
1881EXPORT_SYMBOL_GPL(gpiochip_generic_config);
1882
f23f1516 1883#ifdef CONFIG_PINCTRL
165adc9c 1884
586a87e6
CR
1885/**
1886 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1887 * @chip: the gpiochip to add the range for
d32651f6 1888 * @pctldev: the pin controller to map to
586a87e6
CR
1889 * @gpio_offset: the start offset in the current gpio_chip number space
1890 * @pin_group: name of the pin group inside the pin controller
1891 */
1892int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1893 struct pinctrl_dev *pctldev,
1894 unsigned int gpio_offset, const char *pin_group)
1895{
1896 struct gpio_pin_range *pin_range;
fdeb8e15 1897 struct gpio_device *gdev = chip->gpiodev;
586a87e6
CR
1898 int ret;
1899
1900 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1901 if (!pin_range) {
1a2a99c6 1902 chip_err(chip, "failed to allocate pin ranges\n");
586a87e6
CR
1903 return -ENOMEM;
1904 }
1905
1906 /* Use local offset as range ID */
1907 pin_range->range.id = gpio_offset;
1908 pin_range->range.gc = chip;
1909 pin_range->range.name = chip->label;
fdeb8e15 1910 pin_range->range.base = gdev->base + gpio_offset;
586a87e6
CR
1911 pin_range->pctldev = pctldev;
1912
1913 ret = pinctrl_get_group_pins(pctldev, pin_group,
1914 &pin_range->range.pins,
1915 &pin_range->range.npins);
61c6375d
MN
1916 if (ret < 0) {
1917 kfree(pin_range);
586a87e6 1918 return ret;
61c6375d 1919 }
586a87e6
CR
1920
1921 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1922
1a2a99c6
AS
1923 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1924 gpio_offset, gpio_offset + pin_range->range.npins - 1,
586a87e6
CR
1925 pinctrl_dev_get_devname(pctldev), pin_group);
1926
20ec3e39 1927 list_add_tail(&pin_range->node, &gdev->pin_ranges);
586a87e6
CR
1928
1929 return 0;
1930}
1931EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1932
3f0f8670
LW
1933/**
1934 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1935 * @chip: the gpiochip to add the range for
1936 * @pinctrl_name: the dev_name() of the pin controller to map to
316511c0
LW
1937 * @gpio_offset: the start offset in the current gpio_chip number space
1938 * @pin_offset: the start offset in the pin controller number space
3f0f8670
LW
1939 * @npins: the number of pins from the offset of each pin space (GPIO and
1940 * pin controller) to accumulate in this range
1941 */
1e63d7b9 1942int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
316511c0 1943 unsigned int gpio_offset, unsigned int pin_offset,
3f0f8670 1944 unsigned int npins)
f23f1516
SH
1945{
1946 struct gpio_pin_range *pin_range;
fdeb8e15 1947 struct gpio_device *gdev = chip->gpiodev;
b4d4b1f0 1948 int ret;
f23f1516 1949
3f0f8670 1950 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
f23f1516 1951 if (!pin_range) {
1a2a99c6 1952 chip_err(chip, "failed to allocate pin ranges\n");
1e63d7b9 1953 return -ENOMEM;
f23f1516
SH
1954 }
1955
3f0f8670 1956 /* Use local offset as range ID */
316511c0 1957 pin_range->range.id = gpio_offset;
3f0f8670 1958 pin_range->range.gc = chip;
f23f1516 1959 pin_range->range.name = chip->label;
fdeb8e15 1960 pin_range->range.base = gdev->base + gpio_offset;
316511c0 1961 pin_range->range.pin_base = pin_offset;
f23f1516 1962 pin_range->range.npins = npins;
192c369c 1963 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
f23f1516 1964 &pin_range->range);
8f23ca1a 1965 if (IS_ERR(pin_range->pctldev)) {
b4d4b1f0 1966 ret = PTR_ERR(pin_range->pctldev);
1a2a99c6 1967 chip_err(chip, "could not create pin range\n");
3f0f8670 1968 kfree(pin_range);
b4d4b1f0 1969 return ret;
3f0f8670 1970 }
1a2a99c6
AS
1971 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1972 gpio_offset, gpio_offset + npins - 1,
316511c0
LW
1973 pinctl_name,
1974 pin_offset, pin_offset + npins - 1);
f23f1516 1975
20ec3e39 1976 list_add_tail(&pin_range->node, &gdev->pin_ranges);
1e63d7b9
LW
1977
1978 return 0;
f23f1516 1979}
165adc9c 1980EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
f23f1516 1981
3f0f8670
LW
1982/**
1983 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1984 * @chip: the chip to remove all the mappings for
1985 */
f23f1516
SH
1986void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1987{
1988 struct gpio_pin_range *pin_range, *tmp;
20ec3e39 1989 struct gpio_device *gdev = chip->gpiodev;
f23f1516 1990
20ec3e39 1991 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
f23f1516
SH
1992 list_del(&pin_range->node);
1993 pinctrl_remove_gpio_range(pin_range->pctldev,
1994 &pin_range->range);
3f0f8670 1995 kfree(pin_range);
f23f1516
SH
1996 }
1997}
165adc9c
LW
1998EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1999
2000#endif /* CONFIG_PINCTRL */
f23f1516 2001
d2876d08
DB
2002/* These "optional" allocation calls help prevent drivers from stomping
2003 * on each other, and help provide better diagnostics in debugfs.
2004 * They're called even less than the "set direction" calls.
2005 */
77c2d792 2006static int __gpiod_request(struct gpio_desc *desc, const char *label)
d2876d08 2007{
fdeb8e15 2008 struct gpio_chip *chip = desc->gdev->chip;
77c2d792 2009 int status;
d2876d08
DB
2010 unsigned long flags;
2011
bcabdef1
AC
2012 spin_lock_irqsave(&gpio_lock, flags);
2013
d2876d08 2014 /* NOTE: gpio_request() can be called in early boot,
35e8bb51 2015 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
d2876d08
DB
2016 */
2017
2018 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2019 desc_set_label(desc, label ? : "?");
2020 status = 0;
438d8908 2021 } else {
d2876d08 2022 status = -EBUSY;
7460db56 2023 goto done;
35e8bb51
DB
2024 }
2025
2026 if (chip->request) {
2027 /* chip->request may sleep */
2028 spin_unlock_irqrestore(&gpio_lock, flags);
372e722e 2029 status = chip->request(chip, gpio_chip_hwgpio(desc));
35e8bb51
DB
2030 spin_lock_irqsave(&gpio_lock, flags);
2031
2032 if (status < 0) {
2033 desc_set_label(desc, NULL);
35e8bb51 2034 clear_bit(FLAG_REQUESTED, &desc->flags);
80b0a602 2035 goto done;
35e8bb51 2036 }
438d8908 2037 }
80b0a602
MN
2038 if (chip->get_direction) {
2039 /* chip->get_direction may sleep */
2040 spin_unlock_irqrestore(&gpio_lock, flags);
372e722e 2041 gpiod_get_direction(desc);
80b0a602
MN
2042 spin_lock_irqsave(&gpio_lock, flags);
2043 }
77c2d792
MW
2044done:
2045 spin_unlock_irqrestore(&gpio_lock, flags);
2046 return status;
2047}
2048
fdeb8e15
LW
2049/*
2050 * This descriptor validation needs to be inserted verbatim into each
2051 * function taking a descriptor, so we need to use a preprocessor
54d77198
LW
2052 * macro to avoid endless duplication. If the desc is NULL it is an
2053 * optional GPIO and calls should just bail out.
fdeb8e15
LW
2054 */
2055#define VALIDATE_DESC(desc) do { \
54d77198
LW
2056 if (!desc) \
2057 return 0; \
bfbbe44d
LW
2058 if (IS_ERR(desc)) { \
2059 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2060 return PTR_ERR(desc); \
2061 } \
54d77198 2062 if (!desc->gdev) { \
bfbbe44d 2063 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
fdeb8e15
LW
2064 return -EINVAL; \
2065 } \
2066 if ( !desc->gdev->chip ) { \
2067 dev_warn(&desc->gdev->dev, \
2068 "%s: backing chip is gone\n", __func__); \
2069 return 0; \
2070 } } while (0)
2071
2072#define VALIDATE_DESC_VOID(desc) do { \
54d77198
LW
2073 if (!desc) \
2074 return; \
bfbbe44d
LW
2075 if (IS_ERR(desc)) { \
2076 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2077 return; \
2078 } \
54d77198 2079 if (!desc->gdev) { \
bfbbe44d 2080 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
fdeb8e15
LW
2081 return; \
2082 } \
2083 if (!desc->gdev->chip) { \
2084 dev_warn(&desc->gdev->dev, \
2085 "%s: backing chip is gone\n", __func__); \
2086 return; \
2087 } } while (0)
2088
2089
0eb4c6c2 2090int gpiod_request(struct gpio_desc *desc, const char *label)
77c2d792
MW
2091{
2092 int status = -EPROBE_DEFER;
fdeb8e15 2093 struct gpio_device *gdev;
77c2d792 2094
fdeb8e15
LW
2095 VALIDATE_DESC(desc);
2096 gdev = desc->gdev;
77c2d792 2097
fdeb8e15 2098 if (try_module_get(gdev->owner)) {
77c2d792
MW
2099 status = __gpiod_request(desc, label);
2100 if (status < 0)
fdeb8e15 2101 module_put(gdev->owner);
33a68e86
LW
2102 else
2103 get_device(&gdev->dev);
77c2d792
MW
2104 }
2105
d2876d08 2106 if (status)
7589e59f 2107 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
77c2d792 2108
d2876d08
DB
2109 return status;
2110}
372e722e 2111
77c2d792 2112static bool __gpiod_free(struct gpio_desc *desc)
d2876d08 2113{
77c2d792 2114 bool ret = false;
d2876d08 2115 unsigned long flags;
35e8bb51 2116 struct gpio_chip *chip;
d2876d08 2117
3d599d1c
UKK
2118 might_sleep();
2119
372e722e 2120 gpiod_unexport(desc);
d8f388d8 2121
d2876d08
DB
2122 spin_lock_irqsave(&gpio_lock, flags);
2123
fdeb8e15 2124 chip = desc->gdev->chip;
35e8bb51
DB
2125 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2126 if (chip->free) {
2127 spin_unlock_irqrestore(&gpio_lock, flags);
9c4ba946 2128 might_sleep_if(chip->can_sleep);
372e722e 2129 chip->free(chip, gpio_chip_hwgpio(desc));
35e8bb51
DB
2130 spin_lock_irqsave(&gpio_lock, flags);
2131 }
d2876d08 2132 desc_set_label(desc, NULL);
07697461 2133 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
35e8bb51 2134 clear_bit(FLAG_REQUESTED, &desc->flags);
aca5ce14 2135 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
25553ff0 2136 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
f625d460 2137 clear_bit(FLAG_IS_HOGGED, &desc->flags);
77c2d792
MW
2138 ret = true;
2139 }
d2876d08
DB
2140
2141 spin_unlock_irqrestore(&gpio_lock, flags);
77c2d792
MW
2142 return ret;
2143}
2144
0eb4c6c2 2145void gpiod_free(struct gpio_desc *desc)
77c2d792 2146{
33a68e86 2147 if (desc && desc->gdev && __gpiod_free(desc)) {
fdeb8e15 2148 module_put(desc->gdev->owner);
33a68e86
LW
2149 put_device(&desc->gdev->dev);
2150 } else {
77c2d792 2151 WARN_ON(extra_checks);
33a68e86 2152 }
d2876d08 2153}
372e722e 2154
d2876d08
DB
2155/**
2156 * gpiochip_is_requested - return string iff signal was requested
2157 * @chip: controller managing the signal
2158 * @offset: of signal within controller's 0..(ngpio - 1) range
2159 *
2160 * Returns NULL if the GPIO is not currently requested, else a string.
9c8318ff
AC
2161 * The string returned is the label passed to gpio_request(); if none has been
2162 * passed it is a meaningless, non-NULL constant.
d2876d08
DB
2163 *
2164 * This function is for use by GPIO controller drivers. The label can
2165 * help with diagnostics, and knowing that the signal is used as a GPIO
2166 * can help avoid accidentally multiplexing it to another controller.
2167 */
2168const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2169{
6c0b4e6c 2170 struct gpio_desc *desc;
d2876d08 2171
48b5953e 2172 if (offset >= chip->ngpio)
d2876d08 2173 return NULL;
6c0b4e6c 2174
1c3cdb18 2175 desc = &chip->gpiodev->descs[offset];
6c0b4e6c 2176
372e722e 2177 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
d2876d08 2178 return NULL;
372e722e 2179 return desc->label;
d2876d08
DB
2180}
2181EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2182
77c2d792
MW
2183/**
2184 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2185 * @desc: GPIO descriptor to request
2186 * @label: label for the GPIO
2187 *
2188 * Function allows GPIO chip drivers to request and use their own GPIO
2189 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2190 * function will not increase reference count of the GPIO chip module. This
2191 * allows the GPIO chip module to be unloaded as needed (we assume that the
2192 * GPIO chip driver handles freeing the GPIOs it has requested).
2193 */
abdc08a3
AC
2194struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2195 const char *label)
77c2d792 2196{
abdc08a3
AC
2197 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2198 int err;
77c2d792 2199
abdc08a3
AC
2200 if (IS_ERR(desc)) {
2201 chip_err(chip, "failed to get GPIO descriptor\n");
2202 return desc;
2203 }
2204
2205 err = __gpiod_request(desc, label);
2206 if (err < 0)
2207 return ERR_PTR(err);
77c2d792 2208
abdc08a3 2209 return desc;
77c2d792 2210}
f7d4ad98 2211EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
77c2d792
MW
2212
2213/**
2214 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2215 * @desc: GPIO descriptor to free
2216 *
2217 * Function frees the given GPIO requested previously with
2218 * gpiochip_request_own_desc().
2219 */
2220void gpiochip_free_own_desc(struct gpio_desc *desc)
2221{
2222 if (desc)
2223 __gpiod_free(desc);
2224}
f7d4ad98 2225EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
d2876d08 2226
fdeb8e15
LW
2227/*
2228 * Drivers MUST set GPIO direction before making get/set calls. In
d2876d08
DB
2229 * some cases this is done in early boot, before IRQs are enabled.
2230 *
2231 * As a rule these aren't called more than once (except for drivers
2232 * using the open-drain emulation idiom) so these are natural places
2233 * to accumulate extra debugging checks. Note that we can't (yet)
2234 * rely on gpio_request() having been called beforehand.
2235 */
2236
79a9becd
AC
2237/**
2238 * gpiod_direction_input - set the GPIO direction to input
2239 * @desc: GPIO to set to input
2240 *
2241 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2242 * be called safely on it.
2243 *
2244 * Return 0 in case of success, else an error code.
2245 */
2246int gpiod_direction_input(struct gpio_desc *desc)
d2876d08 2247{
d2876d08 2248 struct gpio_chip *chip;
d2876d08
DB
2249 int status = -EINVAL;
2250
fdeb8e15
LW
2251 VALIDATE_DESC(desc);
2252 chip = desc->gdev->chip;
bcabdef1 2253
be1a4b13 2254 if (!chip->get || !chip->direction_input) {
6424de5a
MB
2255 gpiod_warn(desc,
2256 "%s: missing get() or direction_input() operations\n",
7589e59f 2257 __func__);
be1a4b13
LW
2258 return -EIO;
2259 }
2260
d82da797 2261 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
d2876d08
DB
2262 if (status == 0)
2263 clear_bit(FLAG_IS_OUT, &desc->flags);
3f397c21 2264
372e722e 2265 trace_gpio_direction(desc_to_gpio(desc), 1, status);
d82da797 2266
d2876d08
DB
2267 return status;
2268}
79a9becd 2269EXPORT_SYMBOL_GPL(gpiod_direction_input);
372e722e 2270
2956b5d9
MW
2271static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2272 enum pin_config_param mode)
2273{
2274 unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2275
2276 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2277}
2278
ef70bbe1 2279static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
d2876d08 2280{
c663e5f5 2281 struct gpio_chip *gc = desc->gdev->chip;
ad17731d 2282 int val = !!value;
c663e5f5 2283 int ret;
d2876d08 2284
d468bf9e
LW
2285 /* GPIOs used for IRQs shall not be set as output */
2286 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2287 gpiod_err(desc,
2288 "%s: tried to set a GPIO tied to an IRQ as output\n",
2289 __func__);
2290 return -EIO;
2291 }
2292
c663e5f5
LW
2293 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2294 /* First see if we can enable open drain in hardware */
2956b5d9
MW
2295 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2296 PIN_CONFIG_DRIVE_OPEN_DRAIN);
2297 if (!ret)
2298 goto set_output_value;
c663e5f5 2299 /* Emulate open drain by not actively driving the line high */
ad17731d 2300 if (val)
c663e5f5
LW
2301 return gpiod_direction_input(desc);
2302 }
2303 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2956b5d9
MW
2304 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2305 PIN_CONFIG_DRIVE_OPEN_SOURCE);
2306 if (!ret)
2307 goto set_output_value;
c663e5f5 2308 /* Emulate open source by not actively driving the line low */
ad17731d 2309 if (!val)
c663e5f5
LW
2310 return gpiod_direction_input(desc);
2311 } else {
2956b5d9
MW
2312 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2313 PIN_CONFIG_DRIVE_PUSH_PULL);
c663e5f5 2314 }
25553ff0 2315
c663e5f5
LW
2316set_output_value:
2317 if (!gc->set || !gc->direction_output) {
6424de5a
MB
2318 gpiod_warn(desc,
2319 "%s: missing set() or direction_output() operations\n",
2320 __func__);
be1a4b13
LW
2321 return -EIO;
2322 }
2323
ad17731d 2324 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
c663e5f5 2325 if (!ret)
d2876d08 2326 set_bit(FLAG_IS_OUT, &desc->flags);
ad17731d 2327 trace_gpio_value(desc_to_gpio(desc), 0, val);
c663e5f5
LW
2328 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2329 return ret;
d2876d08 2330}
ef70bbe1
PZ
2331
2332/**
2333 * gpiod_direction_output_raw - set the GPIO direction to output
2334 * @desc: GPIO to set to output
2335 * @value: initial output value of the GPIO
2336 *
2337 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2338 * be called safely on it. The initial value of the output must be specified
2339 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2340 *
2341 * Return 0 in case of success, else an error code.
2342 */
2343int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2344{
fdeb8e15 2345 VALIDATE_DESC(desc);
ef70bbe1
PZ
2346 return _gpiod_direction_output_raw(desc, value);
2347}
2348EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2349
2350/**
90df4fe0 2351 * gpiod_direction_output - set the GPIO direction to output
ef70bbe1
PZ
2352 * @desc: GPIO to set to output
2353 * @value: initial output value of the GPIO
2354 *
2355 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2356 * be called safely on it. The initial value of the output must be specified
2357 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2358 * account.
2359 *
2360 * Return 0 in case of success, else an error code.
2361 */
2362int gpiod_direction_output(struct gpio_desc *desc, int value)
2363{
fdeb8e15 2364 VALIDATE_DESC(desc);
ef70bbe1
PZ
2365 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2366 value = !value;
ad17731d
LW
2367 else
2368 value = !!value;
ef70bbe1
PZ
2369 return _gpiod_direction_output_raw(desc, value);
2370}
79a9becd 2371EXPORT_SYMBOL_GPL(gpiod_direction_output);
d2876d08 2372
c4b5be98 2373/**
79a9becd 2374 * gpiod_set_debounce - sets @debounce time for a @gpio
c4b5be98
FB
2375 * @gpio: the gpio to set debounce time
2376 * @debounce: debounce time is microseconds
65d87656
LW
2377 *
2378 * returns -ENOTSUPP if the controller does not support setting
2379 * debounce.
c4b5be98 2380 */
79a9becd 2381int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
c4b5be98 2382{
c4b5be98 2383 struct gpio_chip *chip;
2956b5d9 2384 unsigned long config;
c4b5be98 2385
fdeb8e15
LW
2386 VALIDATE_DESC(desc);
2387 chip = desc->gdev->chip;
2956b5d9 2388 if (!chip->set || !chip->set_config) {
6424de5a 2389 gpiod_dbg(desc,
2956b5d9 2390 "%s: missing set() or set_config() operations\n",
6424de5a 2391 __func__);
65d87656 2392 return -ENOTSUPP;
be1a4b13
LW
2393 }
2394
2956b5d9
MW
2395 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2396 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
c4b5be98 2397}
79a9becd 2398EXPORT_SYMBOL_GPL(gpiod_set_debounce);
372e722e 2399
79a9becd
AC
2400/**
2401 * gpiod_is_active_low - test whether a GPIO is active-low or not
2402 * @desc: the gpio descriptor to test
2403 *
2404 * Returns 1 if the GPIO is active-low, 0 otherwise.
2405 */
2406int gpiod_is_active_low(const struct gpio_desc *desc)
372e722e 2407{
fdeb8e15 2408 VALIDATE_DESC(desc);
79a9becd 2409 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
372e722e 2410}
79a9becd 2411EXPORT_SYMBOL_GPL(gpiod_is_active_low);
d2876d08
DB
2412
2413/* I/O calls are only valid after configuration completed; the relevant
2414 * "is this a valid GPIO" error checks should already have been done.
2415 *
2416 * "Get" operations are often inlinable as reading a pin value register,
2417 * and masking the relevant bit in that register.
2418 *
2419 * When "set" operations are inlinable, they involve writing that mask to
2420 * one register to set a low value, or a different register to set it high.
2421 * Otherwise locking is needed, so there may be little value to inlining.
2422 *
2423 *------------------------------------------------------------------------
2424 *
2425 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2426 * have requested the GPIO. That can include implicit requesting by
2427 * a direction setting call. Marking a gpio as requested locks its chip
2428 * in memory, guaranteeing that these table lookups need no more locking
2429 * and that gpiochip_remove() will fail.
2430 *
2431 * REVISIT when debugging, consider adding some instrumentation to ensure
2432 * that the GPIO was actually requested.
2433 */
2434
e20538b8 2435static int _gpiod_get_raw_value(const struct gpio_desc *desc)
d2876d08
DB
2436{
2437 struct gpio_chip *chip;
372e722e 2438 int offset;
e20538b8 2439 int value;
d2876d08 2440
fdeb8e15 2441 chip = desc->gdev->chip;
372e722e 2442 offset = gpio_chip_hwgpio(desc);
e20538b8 2443 value = chip->get ? chip->get(chip, offset) : -EIO;
723a6303 2444 value = value < 0 ? value : !!value;
372e722e 2445 trace_gpio_value(desc_to_gpio(desc), 1, value);
3f397c21 2446 return value;
d2876d08 2447}
372e722e 2448
d2876d08 2449/**
79a9becd
AC
2450 * gpiod_get_raw_value() - return a gpio's raw value
2451 * @desc: gpio whose value will be returned
d2876d08 2452 *
79a9becd 2453 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
e20538b8 2454 * its ACTIVE_LOW status, or negative errno on failure.
79a9becd
AC
2455 *
2456 * This function should be called from contexts where we cannot sleep, and will
2457 * complain if the GPIO chip functions potentially sleep.
d2876d08 2458 */
79a9becd 2459int gpiod_get_raw_value(const struct gpio_desc *desc)
d2876d08 2460{
fdeb8e15 2461 VALIDATE_DESC(desc);
e4e449e8 2462 /* Should be using gpio_get_value_cansleep() */
fdeb8e15 2463 WARN_ON(desc->gdev->chip->can_sleep);
79a9becd 2464 return _gpiod_get_raw_value(desc);
d2876d08 2465}
79a9becd 2466EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
372e722e 2467
79a9becd
AC
2468/**
2469 * gpiod_get_value() - return a gpio's value
2470 * @desc: gpio whose value will be returned
2471 *
2472 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
e20538b8 2473 * account, or negative errno on failure.
79a9becd
AC
2474 *
2475 * This function should be called from contexts where we cannot sleep, and will
2476 * complain if the GPIO chip functions potentially sleep.
2477 */
2478int gpiod_get_value(const struct gpio_desc *desc)
372e722e 2479{
79a9becd 2480 int value;
fdeb8e15
LW
2481
2482 VALIDATE_DESC(desc);
79a9becd 2483 /* Should be using gpio_get_value_cansleep() */
fdeb8e15 2484 WARN_ON(desc->gdev->chip->can_sleep);
79a9becd
AC
2485
2486 value = _gpiod_get_raw_value(desc);
e20538b8
BA
2487 if (value < 0)
2488 return value;
2489
79a9becd
AC
2490 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2491 value = !value;
2492
2493 return value;
372e722e 2494}
79a9becd 2495EXPORT_SYMBOL_GPL(gpiod_get_value);
d2876d08 2496
aca5ce14
LD
2497/*
2498 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
79a9becd 2499 * @desc: gpio descriptor whose state need to be set.
20a8a968 2500 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
aca5ce14 2501 */
23600969 2502static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
aca5ce14
LD
2503{
2504 int err = 0;
fdeb8e15 2505 struct gpio_chip *chip = desc->gdev->chip;
372e722e
AC
2506 int offset = gpio_chip_hwgpio(desc);
2507
aca5ce14 2508 if (value) {
372e722e 2509 err = chip->direction_input(chip, offset);
aca5ce14 2510 if (!err)
372e722e 2511 clear_bit(FLAG_IS_OUT, &desc->flags);
aca5ce14 2512 } else {
372e722e 2513 err = chip->direction_output(chip, offset, 0);
aca5ce14 2514 if (!err)
372e722e 2515 set_bit(FLAG_IS_OUT, &desc->flags);
aca5ce14 2516 }
372e722e 2517 trace_gpio_direction(desc_to_gpio(desc), value, err);
aca5ce14 2518 if (err < 0)
6424de5a
MB
2519 gpiod_err(desc,
2520 "%s: Error in set_value for open drain err %d\n",
2521 __func__, err);
aca5ce14
LD
2522}
2523
25553ff0 2524/*
79a9becd
AC
2525 * _gpio_set_open_source_value() - Set the open source gpio's value.
2526 * @desc: gpio descriptor whose state need to be set.
20a8a968 2527 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
25553ff0 2528 */
23600969 2529static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
25553ff0
LD
2530{
2531 int err = 0;
fdeb8e15 2532 struct gpio_chip *chip = desc->gdev->chip;
372e722e
AC
2533 int offset = gpio_chip_hwgpio(desc);
2534
25553ff0 2535 if (value) {
372e722e 2536 err = chip->direction_output(chip, offset, 1);
25553ff0 2537 if (!err)
372e722e 2538 set_bit(FLAG_IS_OUT, &desc->flags);
25553ff0 2539 } else {
372e722e 2540 err = chip->direction_input(chip, offset);
25553ff0 2541 if (!err)
372e722e 2542 clear_bit(FLAG_IS_OUT, &desc->flags);
25553ff0 2543 }
372e722e 2544 trace_gpio_direction(desc_to_gpio(desc), !value, err);
25553ff0 2545 if (err < 0)
6424de5a
MB
2546 gpiod_err(desc,
2547 "%s: Error in set_value for open source err %d\n",
2548 __func__, err);
25553ff0
LD
2549}
2550
23600969 2551static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
d2876d08
DB
2552{
2553 struct gpio_chip *chip;
2554
fdeb8e15 2555 chip = desc->gdev->chip;
372e722e
AC
2556 trace_gpio_value(desc_to_gpio(desc), 0, value);
2557 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2558 _gpio_set_open_drain_value(desc, value);
2559 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2560 _gpio_set_open_source_value(desc, value);
aca5ce14 2561 else
372e722e
AC
2562 chip->set(chip, gpio_chip_hwgpio(desc), value);
2563}
2564
5f424243
RI
2565/*
2566 * set multiple outputs on the same chip;
2567 * use the chip's set_multiple function if available;
2568 * otherwise set the outputs sequentially;
2569 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2570 * defines which outputs are to be changed
2571 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2572 * defines the values the outputs specified by mask are to be set to
2573 */
2574static void gpio_chip_set_multiple(struct gpio_chip *chip,
2575 unsigned long *mask, unsigned long *bits)
2576{
2577 if (chip->set_multiple) {
2578 chip->set_multiple(chip, mask, bits);
2579 } else {
5e4e6fb3
AS
2580 unsigned int i;
2581
2582 /* set outputs if the corresponding mask bit is set */
2583 for_each_set_bit(i, mask, chip->ngpio)
2584 chip->set(chip, i, test_bit(i, bits));
5f424243
RI
2585 }
2586}
2587
44c7288f
LW
2588void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2589 unsigned int array_size,
2590 struct gpio_desc **desc_array,
2591 int *value_array)
5f424243
RI
2592{
2593 int i = 0;
2594
2595 while (i < array_size) {
fdeb8e15 2596 struct gpio_chip *chip = desc_array[i]->gdev->chip;
5f424243
RI
2597 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2598 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2599 int count = 0;
2600
38e003f4 2601 if (!can_sleep)
5f424243 2602 WARN_ON(chip->can_sleep);
38e003f4 2603
5f424243
RI
2604 memset(mask, 0, sizeof(mask));
2605 do {
2606 struct gpio_desc *desc = desc_array[i];
2607 int hwgpio = gpio_chip_hwgpio(desc);
2608 int value = value_array[i];
2609
2610 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2611 value = !value;
2612 trace_gpio_value(desc_to_gpio(desc), 0, value);
2613 /*
2614 * collect all normal outputs belonging to the same chip
2615 * open drain and open source outputs are set individually
2616 */
2617 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
38e003f4 2618 _gpio_set_open_drain_value(desc, value);
5f424243
RI
2619 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2620 _gpio_set_open_source_value(desc, value);
2621 } else {
2622 __set_bit(hwgpio, mask);
38e003f4 2623 if (value)
5f424243 2624 __set_bit(hwgpio, bits);
38e003f4 2625 else
5f424243 2626 __clear_bit(hwgpio, bits);
5f424243
RI
2627 count++;
2628 }
2629 i++;
fdeb8e15
LW
2630 } while ((i < array_size) &&
2631 (desc_array[i]->gdev->chip == chip));
5f424243 2632 /* push collected bits to outputs */
38e003f4 2633 if (count != 0)
5f424243 2634 gpio_chip_set_multiple(chip, mask, bits);
5f424243
RI
2635 }
2636}
2637
d2876d08 2638/**
79a9becd
AC
2639 * gpiod_set_raw_value() - assign a gpio's raw value
2640 * @desc: gpio whose value will be assigned
d2876d08 2641 * @value: value to assign
d2876d08 2642 *
79a9becd
AC
2643 * Set the raw value of the GPIO, i.e. the value of its physical line without
2644 * regard for its ACTIVE_LOW status.
2645 *
2646 * This function should be called from contexts where we cannot sleep, and will
2647 * complain if the GPIO chip functions potentially sleep.
d2876d08 2648 */
79a9becd 2649void gpiod_set_raw_value(struct gpio_desc *desc, int value)
372e722e 2650{
fdeb8e15 2651 VALIDATE_DESC_VOID(desc);
1cfab8f8 2652 /* Should be using gpiod_set_value_cansleep() */
fdeb8e15 2653 WARN_ON(desc->gdev->chip->can_sleep);
79a9becd 2654 _gpiod_set_raw_value(desc, value);
d2876d08 2655}
79a9becd 2656EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
d2876d08
DB
2657
2658/**
79a9becd
AC
2659 * gpiod_set_value() - assign a gpio's value
2660 * @desc: gpio whose value will be assigned
2661 * @value: value to assign
2662 *
2663 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2664 * account
d2876d08 2665 *
79a9becd
AC
2666 * This function should be called from contexts where we cannot sleep, and will
2667 * complain if the GPIO chip functions potentially sleep.
d2876d08 2668 */
79a9becd 2669void gpiod_set_value(struct gpio_desc *desc, int value)
d2876d08 2670{
fdeb8e15 2671 VALIDATE_DESC_VOID(desc);
1cfab8f8 2672 /* Should be using gpiod_set_value_cansleep() */
fdeb8e15 2673 WARN_ON(desc->gdev->chip->can_sleep);
79a9becd
AC
2674 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2675 value = !value;
2676 _gpiod_set_raw_value(desc, value);
372e722e 2677}
79a9becd 2678EXPORT_SYMBOL_GPL(gpiod_set_value);
d2876d08 2679
5f424243 2680/**
3fff99bc 2681 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
5f424243
RI
2682 * @array_size: number of elements in the descriptor / value arrays
2683 * @desc_array: array of GPIO descriptors whose values will be assigned
2684 * @value_array: array of values to assign
2685 *
2686 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2687 * without regard for their ACTIVE_LOW status.
2688 *
2689 * This function should be called from contexts where we cannot sleep, and will
2690 * complain if the GPIO chip functions potentially sleep.
2691 */
3fff99bc 2692void gpiod_set_raw_array_value(unsigned int array_size,
5f424243
RI
2693 struct gpio_desc **desc_array, int *value_array)
2694{
2695 if (!desc_array)
2696 return;
44c7288f
LW
2697 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2698 value_array);
5f424243 2699}
3fff99bc 2700EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
5f424243
RI
2701
2702/**
3fff99bc 2703 * gpiod_set_array_value() - assign values to an array of GPIOs
5f424243
RI
2704 * @array_size: number of elements in the descriptor / value arrays
2705 * @desc_array: array of GPIO descriptors whose values will be assigned
2706 * @value_array: array of values to assign
2707 *
2708 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2709 * into account.
2710 *
2711 * This function should be called from contexts where we cannot sleep, and will
2712 * complain if the GPIO chip functions potentially sleep.
2713 */
3fff99bc
RI
2714void gpiod_set_array_value(unsigned int array_size,
2715 struct gpio_desc **desc_array, int *value_array)
5f424243
RI
2716{
2717 if (!desc_array)
2718 return;
44c7288f
LW
2719 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2720 value_array);
5f424243 2721}
3fff99bc 2722EXPORT_SYMBOL_GPL(gpiod_set_array_value);
5f424243 2723
d2876d08 2724/**
79a9becd
AC
2725 * gpiod_cansleep() - report whether gpio value access may sleep
2726 * @desc: gpio to check
d2876d08 2727 *
d2876d08 2728 */
79a9becd 2729int gpiod_cansleep(const struct gpio_desc *desc)
372e722e 2730{
fdeb8e15
LW
2731 VALIDATE_DESC(desc);
2732 return desc->gdev->chip->can_sleep;
d2876d08 2733}
79a9becd 2734EXPORT_SYMBOL_GPL(gpiod_cansleep);
d2876d08 2735
0f6d504e 2736/**
79a9becd
AC
2737 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2738 * @desc: gpio whose IRQ will be returned (already requested)
0f6d504e 2739 *
79a9becd
AC
2740 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2741 * error.
0f6d504e 2742 */
79a9becd 2743int gpiod_to_irq(const struct gpio_desc *desc)
0f6d504e 2744{
4c37ce86
LW
2745 struct gpio_chip *chip;
2746 int offset;
0f6d504e 2747
79bb71bd
LW
2748 /*
2749 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2750 * requires this function to not return zero on an invalid descriptor
2751 * but rather a negative error number.
2752 */
bfbbe44d 2753 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
79bb71bd
LW
2754 return -EINVAL;
2755
fdeb8e15 2756 chip = desc->gdev->chip;
372e722e 2757 offset = gpio_chip_hwgpio(desc);
4c37ce86
LW
2758 if (chip->to_irq) {
2759 int retirq = chip->to_irq(chip, offset);
2760
2761 /* Zero means NO_IRQ */
2762 if (!retirq)
2763 return -ENXIO;
2764
2765 return retirq;
2766 }
2767 return -ENXIO;
0f6d504e 2768}
79a9becd 2769EXPORT_SYMBOL_GPL(gpiod_to_irq);
0f6d504e 2770
d468bf9e 2771/**
e3a2e878 2772 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
d74be6df
AC
2773 * @chip: the chip the GPIO to lock belongs to
2774 * @offset: the offset of the GPIO to lock as IRQ
d468bf9e
LW
2775 *
2776 * This is used directly by GPIO drivers that want to lock down
f438acdf 2777 * a certain GPIO line to be used for IRQs.
d468bf9e 2778 */
e3a2e878 2779int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
372e722e 2780{
9c10280d
LW
2781 struct gpio_desc *desc;
2782
2783 desc = gpiochip_get_desc(chip, offset);
2784 if (IS_ERR(desc))
2785 return PTR_ERR(desc);
2786
60f8339e
LW
2787 /*
2788 * If it's fast: flush the direction setting if something changed
2789 * behind our back
2790 */
2791 if (!chip->can_sleep && chip->get_direction) {
9c10280d
LW
2792 int dir = chip->get_direction(chip, offset);
2793
2794 if (dir)
2795 clear_bit(FLAG_IS_OUT, &desc->flags);
2796 else
2797 set_bit(FLAG_IS_OUT, &desc->flags);
2798 }
d468bf9e 2799
9c10280d 2800 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
d74be6df 2801 chip_err(chip,
d468bf9e
LW
2802 "%s: tried to flag a GPIO set as output for IRQ\n",
2803 __func__);
2804 return -EIO;
2805 }
2806
9c10280d 2807 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
3940c34a
LW
2808
2809 /*
2810 * If the consumer has not set up a label (such as when the
2811 * IRQ is referenced from .to_irq()) we set up a label here
2812 * so it is clear this is used as an interrupt.
2813 */
2814 if (!desc->label)
2815 desc_set_label(desc, "interrupt");
2816
d468bf9e 2817 return 0;
372e722e 2818}
e3a2e878 2819EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
d2876d08 2820
d468bf9e 2821/**
e3a2e878 2822 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
d74be6df
AC
2823 * @chip: the chip the GPIO to lock belongs to
2824 * @offset: the offset of the GPIO to lock as IRQ
d468bf9e
LW
2825 *
2826 * This is used directly by GPIO drivers that want to indicate
2827 * that a certain GPIO is no longer used exclusively for IRQ.
d2876d08 2828 */
e3a2e878 2829void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
d468bf9e 2830{
3940c34a
LW
2831 struct gpio_desc *desc;
2832
2833 desc = gpiochip_get_desc(chip, offset);
2834 if (IS_ERR(desc))
d468bf9e 2835 return;
d2876d08 2836
3940c34a
LW
2837 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
2838
2839 /* If we only had this marking, erase it */
2840 if (desc->label && !strcmp(desc->label, "interrupt"))
2841 desc_set_label(desc, NULL);
d468bf9e 2842}
e3a2e878 2843EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
d468bf9e 2844
6cee3821
LW
2845bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2846{
2847 if (offset >= chip->ngpio)
2848 return false;
2849
2850 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2851}
2852EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2853
143b65d6
LW
2854bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2855{
2856 if (offset >= chip->ngpio)
2857 return false;
2858
2859 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2860}
2861EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2862
2863bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2864{
2865 if (offset >= chip->ngpio)
2866 return false;
2867
2868 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2869}
2870EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2871
79a9becd
AC
2872/**
2873 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2874 * @desc: gpio whose value will be returned
2875 *
2876 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
e20538b8 2877 * its ACTIVE_LOW status, or negative errno on failure.
79a9becd
AC
2878 *
2879 * This function is to be called from contexts that can sleep.
d2876d08 2880 */
79a9becd 2881int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
d2876d08 2882{
d2876d08 2883 might_sleep_if(extra_checks);
fdeb8e15 2884 VALIDATE_DESC(desc);
79a9becd 2885 return _gpiod_get_raw_value(desc);
d2876d08 2886}
79a9becd 2887EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
372e722e 2888
79a9becd
AC
2889/**
2890 * gpiod_get_value_cansleep() - return a gpio's value
2891 * @desc: gpio whose value will be returned
2892 *
2893 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
e20538b8 2894 * account, or negative errno on failure.
79a9becd
AC
2895 *
2896 * This function is to be called from contexts that can sleep.
2897 */
2898int gpiod_get_value_cansleep(const struct gpio_desc *desc)
d2876d08 2899{
3f397c21 2900 int value;
d2876d08
DB
2901
2902 might_sleep_if(extra_checks);
fdeb8e15 2903 VALIDATE_DESC(desc);
79a9becd 2904 value = _gpiod_get_raw_value(desc);
e20538b8
BA
2905 if (value < 0)
2906 return value;
2907
79a9becd
AC
2908 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2909 value = !value;
2910
3f397c21 2911 return value;
d2876d08 2912}
79a9becd 2913EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
372e722e 2914
79a9becd
AC
2915/**
2916 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2917 * @desc: gpio whose value will be assigned
2918 * @value: value to assign
2919 *
2920 * Set the raw value of the GPIO, i.e. the value of its physical line without
2921 * regard for its ACTIVE_LOW status.
2922 *
2923 * This function is to be called from contexts that can sleep.
2924 */
2925void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
372e722e 2926{
d2876d08 2927 might_sleep_if(extra_checks);
fdeb8e15 2928 VALIDATE_DESC_VOID(desc);
79a9becd 2929 _gpiod_set_raw_value(desc, value);
372e722e 2930}
79a9becd 2931EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
d2876d08 2932
79a9becd
AC
2933/**
2934 * gpiod_set_value_cansleep() - assign a gpio's value
2935 * @desc: gpio whose value will be assigned
2936 * @value: value to assign
2937 *
2938 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2939 * account
2940 *
2941 * This function is to be called from contexts that can sleep.
2942 */
2943void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
d2876d08 2944{
d2876d08 2945 might_sleep_if(extra_checks);
fdeb8e15 2946 VALIDATE_DESC_VOID(desc);
79a9becd
AC
2947 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2948 value = !value;
2949 _gpiod_set_raw_value(desc, value);
372e722e 2950}
79a9becd 2951EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
d2876d08 2952
5f424243 2953/**
3fff99bc 2954 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
5f424243
RI
2955 * @array_size: number of elements in the descriptor / value arrays
2956 * @desc_array: array of GPIO descriptors whose values will be assigned
2957 * @value_array: array of values to assign
2958 *
2959 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2960 * without regard for their ACTIVE_LOW status.
2961 *
2962 * This function is to be called from contexts that can sleep.
2963 */
3fff99bc
RI
2964void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2965 struct gpio_desc **desc_array,
2966 int *value_array)
5f424243
RI
2967{
2968 might_sleep_if(extra_checks);
2969 if (!desc_array)
2970 return;
44c7288f
LW
2971 gpiod_set_array_value_complex(true, true, array_size, desc_array,
2972 value_array);
5f424243 2973}
3fff99bc 2974EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
5f424243
RI
2975
2976/**
3fff99bc 2977 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
5f424243
RI
2978 * @array_size: number of elements in the descriptor / value arrays
2979 * @desc_array: array of GPIO descriptors whose values will be assigned
2980 * @value_array: array of values to assign
2981 *
2982 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2983 * into account.
2984 *
2985 * This function is to be called from contexts that can sleep.
2986 */
3fff99bc
RI
2987void gpiod_set_array_value_cansleep(unsigned int array_size,
2988 struct gpio_desc **desc_array,
2989 int *value_array)
5f424243
RI
2990{
2991 might_sleep_if(extra_checks);
2992 if (!desc_array)
2993 return;
44c7288f
LW
2994 gpiod_set_array_value_complex(false, true, array_size, desc_array,
2995 value_array);
5f424243 2996}
3fff99bc 2997EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
5f424243 2998
bae48da2 2999/**
ad824783
AC
3000 * gpiod_add_lookup_table() - register GPIO device consumers
3001 * @table: table of consumers to register
bae48da2 3002 */
ad824783 3003void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
bae48da2
AC
3004{
3005 mutex_lock(&gpio_lookup_lock);
3006
ad824783 3007 list_add_tail(&table->list, &gpio_lookup_list);
bae48da2
AC
3008
3009 mutex_unlock(&gpio_lookup_lock);
3010}
3011
be9015ab
SK
3012/**
3013 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3014 * @table: table of consumers to unregister
3015 */
3016void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3017{
3018 mutex_lock(&gpio_lookup_lock);
3019
3020 list_del(&table->list);
3021
3022 mutex_unlock(&gpio_lookup_lock);
3023}
3024
ad824783 3025static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
bae48da2
AC
3026{
3027 const char *dev_id = dev ? dev_name(dev) : NULL;
ad824783 3028 struct gpiod_lookup_table *table;
bae48da2
AC
3029
3030 mutex_lock(&gpio_lookup_lock);
3031
ad824783
AC
3032 list_for_each_entry(table, &gpio_lookup_list, list) {
3033 if (table->dev_id && dev_id) {
3034 /*
3035 * Valid strings on both ends, must be identical to have
3036 * a match
3037 */
3038 if (!strcmp(table->dev_id, dev_id))
3039 goto found;
3040 } else {
3041 /*
3042 * One of the pointers is NULL, so both must be to have
3043 * a match
3044 */
3045 if (dev_id == table->dev_id)
3046 goto found;
3047 }
3048 }
3049 table = NULL;
bae48da2 3050
ad824783
AC
3051found:
3052 mutex_unlock(&gpio_lookup_lock);
3053 return table;
3054}
bae48da2 3055
ad824783
AC
3056static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
3057 unsigned int idx,
3058 enum gpio_lookup_flags *flags)
3059{
2a3cf6a3 3060 struct gpio_desc *desc = ERR_PTR(-ENOENT);
ad824783
AC
3061 struct gpiod_lookup_table *table;
3062 struct gpiod_lookup *p;
bae48da2 3063
ad824783
AC
3064 table = gpiod_find_lookup_table(dev);
3065 if (!table)
3066 return desc;
bae48da2 3067
ad824783
AC
3068 for (p = &table->table[0]; p->chip_label; p++) {
3069 struct gpio_chip *chip;
bae48da2 3070
ad824783 3071 /* idx must always match exactly */
bae48da2
AC
3072 if (p->idx != idx)
3073 continue;
3074
ad824783
AC
3075 /* If the lookup entry has a con_id, require exact match */
3076 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3077 continue;
bae48da2 3078
ad824783 3079 chip = find_chip_by_name(p->chip_label);
bae48da2 3080
ad824783 3081 if (!chip) {
2a3cf6a3
AC
3082 dev_err(dev, "cannot find GPIO chip %s\n",
3083 p->chip_label);
3084 return ERR_PTR(-ENODEV);
ad824783 3085 }
bae48da2 3086
ad824783 3087 if (chip->ngpio <= p->chip_hwnum) {
2a3cf6a3
AC
3088 dev_err(dev,
3089 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3090 idx, chip->ngpio, chip->label);
3091 return ERR_PTR(-EINVAL);
bae48da2 3092 }
bae48da2 3093
bb1e88cc 3094 desc = gpiochip_get_desc(chip, p->chip_hwnum);
ad824783 3095 *flags = p->flags;
bae48da2 3096
2a3cf6a3 3097 return desc;
bae48da2
AC
3098 }
3099
bae48da2
AC
3100 return desc;
3101}
3102
66858527
RI
3103static int dt_gpio_count(struct device *dev, const char *con_id)
3104{
3105 int ret;
3106 char propname[32];
3107 unsigned int i;
3108
3109 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3110 if (con_id)
3111 snprintf(propname, sizeof(propname), "%s-%s",
3112 con_id, gpio_suffixes[i]);
3113 else
3114 snprintf(propname, sizeof(propname), "%s",
3115 gpio_suffixes[i]);
3116
3117 ret = of_gpio_named_count(dev->of_node, propname);
4033d4a4 3118 if (ret > 0)
66858527
RI
3119 break;
3120 }
4033d4a4 3121 return ret ? ret : -ENOENT;
66858527
RI
3122}
3123
3124static int platform_gpio_count(struct device *dev, const char *con_id)
3125{
3126 struct gpiod_lookup_table *table;
3127 struct gpiod_lookup *p;
3128 unsigned int count = 0;
3129
3130 table = gpiod_find_lookup_table(dev);
3131 if (!table)
3132 return -ENOENT;
3133
3134 for (p = &table->table[0]; p->chip_label; p++) {
3135 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3136 (!con_id && !p->con_id))
3137 count++;
3138 }
3139 if (!count)
3140 return -ENOENT;
3141
3142 return count;
3143}
3144
3145/**
3146 * gpiod_count - return the number of GPIOs associated with a device / function
3147 * or -ENOENT if no GPIO has been assigned to the requested function
3148 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3149 * @con_id: function within the GPIO consumer
3150 */
3151int gpiod_count(struct device *dev, const char *con_id)
3152{
3153 int count = -ENOENT;
3154
3155 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3156 count = dt_gpio_count(dev, con_id);
3157 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3158 count = acpi_gpio_count(dev, con_id);
3159
3160 if (count < 0)
3161 count = platform_gpio_count(dev, con_id);
3162
3163 return count;
3164}
3165EXPORT_SYMBOL_GPL(gpiod_count);
3166
bae48da2 3167/**
0879162f 3168 * gpiod_get - obtain a GPIO for a given GPIO function
ad824783 3169 * @dev: GPIO consumer, can be NULL for system-global GPIOs
bae48da2 3170 * @con_id: function within the GPIO consumer
39b2bbe3 3171 * @flags: optional GPIO initialization flags
bae48da2
AC
3172 *
3173 * Return the GPIO descriptor corresponding to the function con_id of device
2a3cf6a3 3174 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
20a8a968 3175 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
bae48da2 3176 */
b17d1bf1 3177struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
39b2bbe3 3178 enum gpiod_flags flags)
bae48da2 3179{
39b2bbe3 3180 return gpiod_get_index(dev, con_id, 0, flags);
bae48da2 3181}
b17d1bf1 3182EXPORT_SYMBOL_GPL(gpiod_get);
bae48da2 3183
29a1f233
TR
3184/**
3185 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3186 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3187 * @con_id: function within the GPIO consumer
39b2bbe3 3188 * @flags: optional GPIO initialization flags
29a1f233
TR
3189 *
3190 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3191 * the requested function it will return NULL. This is convenient for drivers
3192 * that need to handle optional GPIOs.
3193 */
b17d1bf1 3194struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
39b2bbe3
AC
3195 const char *con_id,
3196 enum gpiod_flags flags)
29a1f233 3197{
39b2bbe3 3198 return gpiod_get_index_optional(dev, con_id, 0, flags);
29a1f233 3199}
b17d1bf1 3200EXPORT_SYMBOL_GPL(gpiod_get_optional);
29a1f233 3201
f625d460
BP
3202
3203/**
3204 * gpiod_configure_flags - helper function to configure a given GPIO
3205 * @desc: gpio whose value will be assigned
3206 * @con_id: function within the GPIO consumer
85b03b30
JH
3207 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3208 * of_get_gpio_hog()
f625d460
BP
3209 * @dflags: gpiod_flags - optional GPIO initialization flags
3210 *
3211 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3212 * requested function and/or index, or another IS_ERR() code if an error
3213 * occurred while trying to acquire the GPIO.
3214 */
3215static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
85b03b30 3216 unsigned long lflags, enum gpiod_flags dflags)
f625d460
BP
3217{
3218 int status;
3219
85b03b30
JH
3220 if (lflags & GPIO_ACTIVE_LOW)
3221 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3222 if (lflags & GPIO_OPEN_DRAIN)
3223 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3224 if (lflags & GPIO_OPEN_SOURCE)
3225 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3226
f625d460
BP
3227 /* No particular flag request, return here... */
3228 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3229 pr_debug("no flags found for %s\n", con_id);
3230 return 0;
3231 }
3232
3233 /* Process flags */
3234 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3235 status = gpiod_direction_output(desc,
ad17731d 3236 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
f625d460
BP
3237 else
3238 status = gpiod_direction_input(desc);
3239
3240 return status;
3241}
3242
bae48da2
AC
3243/**
3244 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
fdd6a5fe 3245 * @dev: GPIO consumer, can be NULL for system-global GPIOs
bae48da2
AC
3246 * @con_id: function within the GPIO consumer
3247 * @idx: index of the GPIO to obtain in the consumer
39b2bbe3 3248 * @flags: optional GPIO initialization flags
bae48da2
AC
3249 *
3250 * This variant of gpiod_get() allows to access GPIOs other than the first
3251 * defined one for functions that define several GPIOs.
3252 *
2a3cf6a3
AC
3253 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3254 * requested function and/or index, or another IS_ERR() code if an error
20a8a968 3255 * occurred while trying to acquire the GPIO.
bae48da2 3256 */
b17d1bf1 3257struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
bae48da2 3258 const char *con_id,
39b2bbe3
AC
3259 unsigned int idx,
3260 enum gpiod_flags flags)
bae48da2 3261{
35c5d7fd 3262 struct gpio_desc *desc = NULL;
bae48da2 3263 int status;
39b2bbe3 3264 enum gpio_lookup_flags lookupflags = 0;
bae48da2
AC
3265
3266 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3267
4d8440b9
RW
3268 if (dev) {
3269 /* Using device tree? */
3270 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3271 dev_dbg(dev, "using device tree for GPIO lookup\n");
3272 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3273 } else if (ACPI_COMPANION(dev)) {
3274 dev_dbg(dev, "using ACPI for GPIO lookup\n");
25487533 3275 desc = acpi_find_gpio(dev, con_id, idx, flags, &lookupflags);
4d8440b9 3276 }
35c5d7fd
AC
3277 }
3278
3279 /*
3280 * Either we are not using DT or ACPI, or their lookup did not return
3281 * a result. In that case, use platform lookup as a fallback.
3282 */
2a3cf6a3 3283 if (!desc || desc == ERR_PTR(-ENOENT)) {
43a8785a 3284 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
39b2bbe3 3285 desc = gpiod_find(dev, con_id, idx, &lookupflags);
bae48da2
AC
3286 }
3287
3288 if (IS_ERR(desc)) {
351cfe0f 3289 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
bae48da2
AC
3290 return desc;
3291 }
3292
3293 status = gpiod_request(desc, con_id);
bae48da2
AC
3294 if (status < 0)
3295 return ERR_PTR(status);
3296
85b03b30 3297 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
39b2bbe3
AC
3298 if (status < 0) {
3299 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3300 gpiod_put(desc);
3301 return ERR_PTR(status);
3302 }
3303
bae48da2
AC
3304 return desc;
3305}
b17d1bf1 3306EXPORT_SYMBOL_GPL(gpiod_get_index);
bae48da2 3307
40b73183
MW
3308/**
3309 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3310 * @fwnode: handle of the firmware node
3311 * @propname: name of the firmware property representing the GPIO
537b94da 3312 * @index: index of the GPIO to obtain in the consumer
a264d10f 3313 * @dflags: GPIO initialization flags
40b73183
MW
3314 *
3315 * This function can be used for drivers that get their configuration
3316 * from firmware.
3317 *
3318 * Function properly finds the corresponding GPIO using whatever is the
3319 * underlying firmware interface and then makes sure that the GPIO
3320 * descriptor is requested before it is returned to the caller.
3321 *
ff21378a 3322 * On successful request the GPIO pin is configured in accordance with
a264d10f
AS
3323 * provided @dflags.
3324 *
40b73183
MW
3325 * In case of error an ERR_PTR() is returned.
3326 */
3327struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
537b94da 3328 const char *propname, int index,
b2987d74
AS
3329 enum gpiod_flags dflags,
3330 const char *label)
40b73183
MW
3331{
3332 struct gpio_desc *desc = ERR_PTR(-ENODEV);
a264d10f 3333 unsigned long lflags = 0;
40b73183 3334 bool active_low = false;
90b665f6 3335 bool single_ended = false;
4c0facdd 3336 bool open_drain = false;
40b73183
MW
3337 int ret;
3338
3339 if (!fwnode)
3340 return ERR_PTR(-EINVAL);
3341
3342 if (is_of_node(fwnode)) {
3343 enum of_gpio_flags flags;
3344
537b94da
BB
3345 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname,
3346 index, &flags);
90b665f6 3347 if (!IS_ERR(desc)) {
40b73183 3348 active_low = flags & OF_GPIO_ACTIVE_LOW;
90b665f6 3349 single_ended = flags & OF_GPIO_SINGLE_ENDED;
4c0facdd 3350 open_drain = flags & OF_GPIO_OPEN_DRAIN;
90b665f6 3351 }
40b73183
MW
3352 } else if (is_acpi_node(fwnode)) {
3353 struct acpi_gpio_info info;
3354
537b94da 3355 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
40b73183 3356 if (!IS_ERR(desc))
52044723 3357 active_low = info.polarity == GPIO_ACTIVE_LOW;
40b73183
MW
3358 }
3359
3360 if (IS_ERR(desc))
3361 return desc;
3362
b2987d74 3363 ret = gpiod_request(desc, label);
85b03b30
JH
3364 if (ret)
3365 return ERR_PTR(ret);
3366
40b73183 3367 if (active_low)
a264d10f 3368 lflags |= GPIO_ACTIVE_LOW;
40b73183 3369
90b665f6 3370 if (single_ended) {
4c0facdd 3371 if (open_drain)
a264d10f 3372 lflags |= GPIO_OPEN_DRAIN;
90b665f6 3373 else
a264d10f
AS
3374 lflags |= GPIO_OPEN_SOURCE;
3375 }
3376
3377 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3378 if (ret < 0) {
3379 gpiod_put(desc);
3380 return ERR_PTR(ret);
90b665f6
LP
3381 }
3382
40b73183
MW
3383 return desc;
3384}
3385EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3386
29a1f233
TR
3387/**
3388 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3389 * function
3390 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3391 * @con_id: function within the GPIO consumer
3392 * @index: index of the GPIO to obtain in the consumer
39b2bbe3 3393 * @flags: optional GPIO initialization flags
29a1f233
TR
3394 *
3395 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3396 * specified index was assigned to the requested function it will return NULL.
3397 * This is convenient for drivers that need to handle optional GPIOs.
3398 */
b17d1bf1 3399struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
29a1f233 3400 const char *con_id,
39b2bbe3
AC
3401 unsigned int index,
3402 enum gpiod_flags flags)
29a1f233
TR
3403{
3404 struct gpio_desc *desc;
3405
39b2bbe3 3406 desc = gpiod_get_index(dev, con_id, index, flags);
29a1f233
TR
3407 if (IS_ERR(desc)) {
3408 if (PTR_ERR(desc) == -ENOENT)
3409 return NULL;
3410 }
3411
3412 return desc;
3413}
b17d1bf1 3414EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
29a1f233 3415
f625d460
BP
3416/**
3417 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3418 * @desc: gpio whose value will be assigned
3419 * @name: gpio line name
3420 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3421 * of_get_gpio_hog()
3422 * @dflags: gpiod_flags - optional GPIO initialization flags
3423 */
3424int gpiod_hog(struct gpio_desc *desc, const char *name,
3425 unsigned long lflags, enum gpiod_flags dflags)
3426{
3427 struct gpio_chip *chip;
3428 struct gpio_desc *local_desc;
3429 int hwnum;
3430 int status;
3431
3432 chip = gpiod_to_chip(desc);
3433 hwnum = gpio_chip_hwgpio(desc);
3434
3435 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3436 if (IS_ERR(local_desc)) {
c31a571d
LD
3437 status = PTR_ERR(local_desc);
3438 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3439 name, chip->label, hwnum, status);
3440 return status;
f625d460
BP
3441 }
3442
85b03b30 3443 status = gpiod_configure_flags(desc, name, lflags, dflags);
f625d460 3444 if (status < 0) {
c31a571d
LD
3445 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3446 name, chip->label, hwnum, status);
f625d460
BP
3447 gpiochip_free_own_desc(desc);
3448 return status;
3449 }
3450
3451 /* Mark GPIO as hogged so it can be identified and removed later */
3452 set_bit(FLAG_IS_HOGGED, &desc->flags);
3453
3454 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3455 desc_to_gpio(desc), name,
3456 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3457 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3458 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3459
3460 return 0;
3461}
3462
3463/**
3464 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3465 * @chip: gpio chip to act on
3466 *
3467 * This is only used by of_gpiochip_remove to free hogged gpios
3468 */
3469static void gpiochip_free_hogs(struct gpio_chip *chip)
3470{
3471 int id;
3472
3473 for (id = 0; id < chip->ngpio; id++) {
1c3cdb18
LW
3474 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3475 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
f625d460
BP
3476 }
3477}
3478
66858527
RI
3479/**
3480 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3481 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3482 * @con_id: function within the GPIO consumer
3483 * @flags: optional GPIO initialization flags
3484 *
3485 * This function acquires all the GPIOs defined under a given function.
3486 *
3487 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3488 * no GPIO has been assigned to the requested function, or another IS_ERR()
3489 * code if an error occurred while trying to acquire the GPIOs.
3490 */
3491struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3492 const char *con_id,
3493 enum gpiod_flags flags)
3494{
3495 struct gpio_desc *desc;
3496 struct gpio_descs *descs;
3497 int count;
3498
3499 count = gpiod_count(dev, con_id);
3500 if (count < 0)
3501 return ERR_PTR(count);
3502
3503 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3504 GFP_KERNEL);
3505 if (!descs)
3506 return ERR_PTR(-ENOMEM);
3507
3508 for (descs->ndescs = 0; descs->ndescs < count; ) {
3509 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3510 if (IS_ERR(desc)) {
3511 gpiod_put_array(descs);
3512 return ERR_CAST(desc);
3513 }
3514 descs->desc[descs->ndescs] = desc;
3515 descs->ndescs++;
3516 }
3517 return descs;
3518}
3519EXPORT_SYMBOL_GPL(gpiod_get_array);
3520
3521/**
3522 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3523 * function
3524 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3525 * @con_id: function within the GPIO consumer
3526 * @flags: optional GPIO initialization flags
3527 *
3528 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3529 * assigned to the requested function it will return NULL.
3530 */
3531struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3532 const char *con_id,
3533 enum gpiod_flags flags)
3534{
3535 struct gpio_descs *descs;
3536
3537 descs = gpiod_get_array(dev, con_id, flags);
3538 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3539 return NULL;
3540
3541 return descs;
3542}
3543EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3544
bae48da2
AC
3545/**
3546 * gpiod_put - dispose of a GPIO descriptor
3547 * @desc: GPIO descriptor to dispose of
3548 *
3549 * No descriptor can be used after gpiod_put() has been called on it.
3550 */
3551void gpiod_put(struct gpio_desc *desc)
3552{
3553 gpiod_free(desc);
372e722e 3554}
bae48da2 3555EXPORT_SYMBOL_GPL(gpiod_put);
d2876d08 3556
66858527
RI
3557/**
3558 * gpiod_put_array - dispose of multiple GPIO descriptors
3559 * @descs: struct gpio_descs containing an array of descriptors
3560 */
3561void gpiod_put_array(struct gpio_descs *descs)
3562{
3563 unsigned int i;
3564
3565 for (i = 0; i < descs->ndescs; i++)
3566 gpiod_put(descs->desc[i]);
3567
3568 kfree(descs);
3569}
3570EXPORT_SYMBOL_GPL(gpiod_put_array);
3571
3c702e99
LW
3572static int __init gpiolib_dev_init(void)
3573{
3574 int ret;
3575
3576 /* Register GPIO sysfs bus */
3577 ret = bus_register(&gpio_bus_type);
3578 if (ret < 0) {
3579 pr_err("gpiolib: could not register GPIO bus type\n");
3580 return ret;
3581 }
3582
3583 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3584 if (ret < 0) {
3585 pr_err("gpiolib: failed to allocate char dev region\n");
3586 bus_unregister(&gpio_bus_type);
159f3cd9
GR
3587 } else {
3588 gpiolib_initialized = true;
3589 gpiochip_setup_devs();
3c702e99
LW
3590 }
3591 return ret;
3592}
3593core_initcall(gpiolib_dev_init);
3594
d2876d08
DB
3595#ifdef CONFIG_DEBUG_FS
3596
fdeb8e15 3597static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
d2876d08
DB
3598{
3599 unsigned i;
fdeb8e15
LW
3600 struct gpio_chip *chip = gdev->chip;
3601 unsigned gpio = gdev->base;
3602 struct gpio_desc *gdesc = &gdev->descs[0];
d2876d08 3603 int is_out;
d468bf9e 3604 int is_irq;
d2876d08 3605
fdeb8e15 3606 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
ced433e2
MP
3607 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3608 if (gdesc->name) {
3609 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3610 gpio, gdesc->name);
3611 }
d2876d08 3612 continue;
ced433e2 3613 }
d2876d08 3614
372e722e 3615 gpiod_get_direction(gdesc);
d2876d08 3616 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
d468bf9e 3617 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
ced433e2
MP
3618 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3619 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
d2876d08
DB
3620 is_out ? "out" : "in ",
3621 chip->get
3622 ? (chip->get(chip, i) ? "hi" : "lo")
d468bf9e
LW
3623 : "? ",
3624 is_irq ? "IRQ" : " ");
d2876d08
DB
3625 seq_printf(s, "\n");
3626 }
3627}
3628
f9c4a31f 3629static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
d2876d08 3630{
362432ae 3631 unsigned long flags;
ff2b1359 3632 struct gpio_device *gdev = NULL;
cb1650d4 3633 loff_t index = *pos;
d2876d08 3634
f9c4a31f 3635 s->private = "";
d2876d08 3636
362432ae 3637 spin_lock_irqsave(&gpio_lock, flags);
ff2b1359 3638 list_for_each_entry(gdev, &gpio_devices, list)
362432ae
GL
3639 if (index-- == 0) {
3640 spin_unlock_irqrestore(&gpio_lock, flags);
ff2b1359 3641 return gdev;
f9c4a31f 3642 }
362432ae 3643 spin_unlock_irqrestore(&gpio_lock, flags);
f9c4a31f 3644
cb1650d4 3645 return NULL;
f9c4a31f
TR
3646}
3647
3648static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3649{
362432ae 3650 unsigned long flags;
ff2b1359 3651 struct gpio_device *gdev = v;
f9c4a31f
TR
3652 void *ret = NULL;
3653
362432ae 3654 spin_lock_irqsave(&gpio_lock, flags);
ff2b1359 3655 if (list_is_last(&gdev->list, &gpio_devices))
cb1650d4
AC
3656 ret = NULL;
3657 else
ff2b1359 3658 ret = list_entry(gdev->list.next, struct gpio_device, list);
362432ae 3659 spin_unlock_irqrestore(&gpio_lock, flags);
f9c4a31f
TR
3660
3661 s->private = "\n";
3662 ++*pos;
3663
3664 return ret;
3665}
3666
3667static void gpiolib_seq_stop(struct seq_file *s, void *v)
3668{
3669}
3670
3671static int gpiolib_seq_show(struct seq_file *s, void *v)
3672{
ff2b1359
LW
3673 struct gpio_device *gdev = v;
3674 struct gpio_chip *chip = gdev->chip;
3675 struct device *parent;
3676
3677 if (!chip) {
3678 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3679 dev_name(&gdev->dev));
3680 return 0;
3681 }
f9c4a31f 3682
ff2b1359
LW
3683 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3684 dev_name(&gdev->dev),
fdeb8e15 3685 gdev->base, gdev->base + gdev->ngpio - 1);
ff2b1359
LW
3686 parent = chip->parent;
3687 if (parent)
3688 seq_printf(s, ", parent: %s/%s",
3689 parent->bus ? parent->bus->name : "no-bus",
3690 dev_name(parent));
f9c4a31f
TR
3691 if (chip->label)
3692 seq_printf(s, ", %s", chip->label);
3693 if (chip->can_sleep)
3694 seq_printf(s, ", can sleep");
3695 seq_printf(s, ":\n");
3696
3697 if (chip->dbg_show)
3698 chip->dbg_show(s, chip);
3699 else
fdeb8e15 3700 gpiolib_dbg_show(s, gdev);
f9c4a31f 3701
d2876d08
DB
3702 return 0;
3703}
3704
f9c4a31f
TR
3705static const struct seq_operations gpiolib_seq_ops = {
3706 .start = gpiolib_seq_start,
3707 .next = gpiolib_seq_next,
3708 .stop = gpiolib_seq_stop,
3709 .show = gpiolib_seq_show,
3710};
3711
d2876d08
DB
3712static int gpiolib_open(struct inode *inode, struct file *file)
3713{
f9c4a31f 3714 return seq_open(file, &gpiolib_seq_ops);
d2876d08
DB
3715}
3716
828c0950 3717static const struct file_operations gpiolib_operations = {
f9c4a31f 3718 .owner = THIS_MODULE,
d2876d08
DB
3719 .open = gpiolib_open,
3720 .read = seq_read,
3721 .llseek = seq_lseek,
f9c4a31f 3722 .release = seq_release,
d2876d08
DB
3723};
3724
3725static int __init gpiolib_debugfs_init(void)
3726{
3727 /* /sys/kernel/debug/gpio */
3728 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3729 NULL, NULL, &gpiolib_operations);
3730 return 0;
3731}
3732subsys_initcall(gpiolib_debugfs_init);
3733
3734#endif /* DEBUG_FS */