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