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