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