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