pinctrl: sunxi: Be sure to clamp return value
[deliverable/linux.git] / drivers / gpio / gpiolib.c
CommitLineData
d2876d08
DB
1#include <linux/kernel.h>
2#include <linux/module.h>
ff77c352 3#include <linux/interrupt.h>
d2876d08
DB
4#include <linux/irq.h>
5#include <linux/spinlock.h>
1a989d0f 6#include <linux/list.h>
d8f388d8
DB
7#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/debugfs.h>
10#include <linux/seq_file.h>
11#include <linux/gpio.h>
391c970c 12#include <linux/of_gpio.h>
ff77c352 13#include <linux/idr.h>
5a0e3ad6 14#include <linux/slab.h>
7b199811 15#include <linux/acpi.h>
53e7cac3 16#include <linux/gpio/driver.h>
0a6d3158 17#include <linux/gpio/machine.h>
c771c2f4 18#include <linux/pinctrl/consumer.h>
d2876d08 19
664e3e5a
MW
20#include "gpiolib.h"
21
3f397c21
UKK
22#define CREATE_TRACE_POINTS
23#include <trace/events/gpio.h>
d2876d08 24
79a9becd 25/* Implementation infrastructure for GPIO interfaces.
d2876d08 26 *
79a9becd
AC
27 * The GPIO programming interface allows for inlining speed-critical
28 * get/set operations for common cases, so that access to SOC-integrated
29 * GPIOs can sometimes cost only an instruction or two per bit.
d2876d08
DB
30 */
31
32
33/* When debugging, extend minimal trust to callers and platform code.
34 * Also emit diagnostic messages that may help initial bringup, when
35 * board setup or driver bugs are most common.
36 *
37 * Otherwise, minimize overhead in what may be bitbanging codepaths.
38 */
39#ifdef DEBUG
40#define extra_checks 1
41#else
42#define extra_checks 0
43#endif
44
45/* gpio_lock prevents conflicts during gpio_desc[] table updates.
46 * While any GPIO is requested, its gpio_chip is not removable;
47 * each GPIO's "requested" flag serves as a lock and refcount.
48 */
0eb4c6c2 49DEFINE_SPINLOCK(gpio_lock);
d2876d08 50
bae48da2
AC
51static DEFINE_MUTEX(gpio_lookup_lock);
52static LIST_HEAD(gpio_lookup_list);
0eb4c6c2 53LIST_HEAD(gpio_chips);
1a2a99c6 54
6d86750c
JH
55
56static void gpiochip_free_hogs(struct gpio_chip *chip);
57static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
58
59
d2876d08
DB
60static inline void desc_set_label(struct gpio_desc *d, const char *label)
61{
d2876d08 62 d->label = label;
d2876d08
DB
63}
64
372e722e
AC
65/**
66 * Convert a GPIO number to its descriptor
67 */
79a9becd 68struct gpio_desc *gpio_to_desc(unsigned gpio)
372e722e 69{
14e85c0e
AC
70 struct gpio_chip *chip;
71 unsigned long flags;
72
73 spin_lock_irqsave(&gpio_lock, flags);
74
75 list_for_each_entry(chip, &gpio_chips, list) {
76 if (chip->base <= gpio && chip->base + chip->ngpio > gpio) {
77 spin_unlock_irqrestore(&gpio_lock, flags);
78 return &chip->desc[gpio - chip->base];
79 }
80 }
81
82 spin_unlock_irqrestore(&gpio_lock, flags);
83
0e9a5edf
AC
84 if (!gpio_is_valid(gpio))
85 WARN(1, "invalid GPIO %d\n", gpio);
86
14e85c0e 87 return NULL;
372e722e 88}
79a9becd 89EXPORT_SYMBOL_GPL(gpio_to_desc);
372e722e 90
d468bf9e 91/**
bb1e88cc 92 * Get the GPIO descriptor corresponding to the given hw number for this chip.
d468bf9e 93 */
bb1e88cc
AC
94struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
95 u16 hwnum)
d468bf9e 96{
bb1e88cc 97 if (hwnum >= chip->ngpio)
b7d0a28a 98 return ERR_PTR(-EINVAL);
d468bf9e 99
bb1e88cc 100 return &chip->desc[hwnum];
d468bf9e 101}
372e722e
AC
102
103/**
104 * Convert a GPIO descriptor to the integer namespace.
105 * This should disappear in the future but is needed since we still
106 * use GPIO numbers for error messages and sysfs nodes
107 */
79a9becd 108int desc_to_gpio(const struct gpio_desc *desc)
372e722e 109{
14e85c0e 110 return desc->chip->base + (desc - &desc->chip->desc[0]);
372e722e 111}
79a9becd 112EXPORT_SYMBOL_GPL(desc_to_gpio);
372e722e
AC
113
114
79a9becd
AC
115/**
116 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
117 * @desc: descriptor to return the chip of
118 */
119struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
372e722e 120{
bcabdef1 121 return desc ? desc->chip : NULL;
372e722e 122}
79a9becd 123EXPORT_SYMBOL_GPL(gpiod_to_chip);
d2876d08 124
8d0aab2f
AV
125/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
126static int gpiochip_find_base(int ngpio)
127{
83cabe33
AC
128 struct gpio_chip *chip;
129 int base = ARCH_NR_GPIOS - ngpio;
8d0aab2f 130
83cabe33
AC
131 list_for_each_entry_reverse(chip, &gpio_chips, list) {
132 /* found a free space? */
133 if (chip->base + chip->ngpio <= base)
134 break;
135 else
136 /* nope, check the space right before the chip */
137 base = chip->base - ngpio;
8d0aab2f
AV
138 }
139
83cabe33 140 if (gpio_is_valid(base)) {
8d0aab2f 141 pr_debug("%s: found new base at %d\n", __func__, base);
83cabe33
AC
142 return base;
143 } else {
144 pr_err("%s: cannot find free range\n", __func__);
145 return -ENOSPC;
169b6a7a 146 }
169b6a7a
AV
147}
148
79a9becd
AC
149/**
150 * gpiod_get_direction - return the current direction of a GPIO
151 * @desc: GPIO to get the direction of
152 *
153 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
154 *
155 * This function may sleep if gpiod_cansleep() is true.
156 */
8e53b0f1 157int gpiod_get_direction(struct gpio_desc *desc)
80b0a602
MN
158{
159 struct gpio_chip *chip;
372e722e 160 unsigned offset;
80b0a602
MN
161 int status = -EINVAL;
162
372e722e
AC
163 chip = gpiod_to_chip(desc);
164 offset = gpio_chip_hwgpio(desc);
80b0a602
MN
165
166 if (!chip->get_direction)
167 return status;
168
372e722e 169 status = chip->get_direction(chip, offset);
80b0a602
MN
170 if (status > 0) {
171 /* GPIOF_DIR_IN, or other positive */
172 status = 1;
8e53b0f1 173 clear_bit(FLAG_IS_OUT, &desc->flags);
80b0a602
MN
174 }
175 if (status == 0) {
176 /* GPIOF_DIR_OUT */
8e53b0f1 177 set_bit(FLAG_IS_OUT, &desc->flags);
80b0a602
MN
178 }
179 return status;
180}
79a9becd 181EXPORT_SYMBOL_GPL(gpiod_get_direction);
80b0a602 182
1a989d0f
AC
183/*
184 * Add a new chip to the global chips list, keeping the list of chips sorted
ef7c7553 185 * by range(means [base, base + ngpio - 1]) order.
1a989d0f
AC
186 *
187 * Return -EBUSY if the new chip overlaps with some other chip's integer
188 * space.
189 */
190static int gpiochip_add_to_list(struct gpio_chip *chip)
191{
d1aceb80 192 struct list_head *pos;
ef7c7553
BJZ
193 struct gpio_chip *iterator;
194 struct gpio_chip *previous = NULL;
1a989d0f 195
ef7c7553
BJZ
196 if (list_empty(&gpio_chips)) {
197 pos = gpio_chips.next;
198 goto found;
1a989d0f
AC
199 }
200
ef7c7553
BJZ
201 list_for_each(pos, &gpio_chips) {
202 iterator = list_entry(pos, struct gpio_chip, list);
203 if (iterator->base >= chip->base + chip->ngpio) {
204 /*
205 * Iterator is the first GPIO chip so there is no
206 * previous one
207 */
208 if (previous == NULL) {
209 goto found;
210 } else {
211 /*
212 * We found a valid range(means
213 * [base, base + ngpio - 1]) between previous
214 * and iterator chip.
215 */
216 if (previous->base + previous->ngpio
217 <= chip->base)
218 goto found;
219 }
1a989d0f 220 }
ef7c7553 221 previous = iterator;
1a989d0f
AC
222 }
223
ef7c7553
BJZ
224 /* We are beyond the last chip in the list */
225 if (iterator->base + iterator->ngpio <= chip->base)
226 goto found;
227
228 dev_err(chip->parent,
229 "GPIO integer space overlap, cannot add chip\n");
230 return -EBUSY;
1a989d0f 231
ef7c7553
BJZ
232found:
233 list_add_tail(&chip->list, pos);
234 return 0;
1a989d0f
AC
235}
236
f881bab0
LW
237/**
238 * Convert a GPIO name to its descriptor
239 */
240static struct gpio_desc *gpio_name_to_desc(const char * const name)
241{
242 struct gpio_chip *chip;
243 unsigned long flags;
244
245 spin_lock_irqsave(&gpio_lock, flags);
246
247 list_for_each_entry(chip, &gpio_chips, list) {
248 int i;
249
250 for (i = 0; i != chip->ngpio; ++i) {
251 struct gpio_desc *gpio = &chip->desc[i];
252
d06165b3 253 if (!gpio->name || !name)
f881bab0
LW
254 continue;
255
256 if (!strcmp(gpio->name, name)) {
257 spin_unlock_irqrestore(&gpio_lock, flags);
258 return gpio;
259 }
260 }
261 }
262
263 spin_unlock_irqrestore(&gpio_lock, flags);
264
265 return NULL;
266}
267
5f3ca732
MP
268/*
269 * Takes the names from gc->names and checks if they are all unique. If they
270 * are, they are assigned to their gpio descriptors.
271 *
ed37915c 272 * Warning if one of the names is already used for a different GPIO.
5f3ca732
MP
273 */
274static int gpiochip_set_desc_names(struct gpio_chip *gc)
275{
276 int i;
277
278 if (!gc->names)
279 return 0;
280
281 /* First check all names if they are unique */
282 for (i = 0; i != gc->ngpio; ++i) {
283 struct gpio_desc *gpio;
284
285 gpio = gpio_name_to_desc(gc->names[i]);
f881bab0 286 if (gpio)
58383c78 287 dev_warn(gc->parent, "Detected name collision for "
f881bab0
LW
288 "GPIO name '%s'\n",
289 gc->names[i]);
5f3ca732
MP
290 }
291
292 /* Then add all names to the GPIO descriptors */
293 for (i = 0; i != gc->ngpio; ++i)
294 gc->desc[i].name = gc->names[i];
295
296 return 0;
297}
298
d2876d08
DB
299/**
300 * gpiochip_add() - register a gpio_chip
301 * @chip: the chip to register, with chip->base initialized
14e85c0e 302 * Context: potentially before irqs will work
d2876d08
DB
303 *
304 * Returns a negative errno if the chip can't be registered, such as
305 * because the chip->base is invalid or already associated with a
306 * different chip. Otherwise it returns zero as a success code.
8d0aab2f 307 *
d8f388d8 308 * When gpiochip_add() is called very early during boot, so that GPIOs
c88402c2 309 * can be freely used, the chip->parent device must be registered before
d8f388d8
DB
310 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
311 * for GPIOs will fail rudely.
312 *
8d0aab2f
AV
313 * If chip->base is negative, this requests dynamic assignment of
314 * a range of valid GPIOs.
d2876d08
DB
315 */
316int gpiochip_add(struct gpio_chip *chip)
317{
318 unsigned long flags;
319 int status = 0;
320 unsigned id;
8d0aab2f 321 int base = chip->base;
14e85c0e 322 struct gpio_desc *descs;
d2876d08 323
14e85c0e
AC
324 descs = kcalloc(chip->ngpio, sizeof(descs[0]), GFP_KERNEL);
325 if (!descs)
326 return -ENOMEM;
d2876d08 327
5ed41cc4
BJZ
328 if (chip->ngpio == 0) {
329 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
330 return -EINVAL;
331 }
332
d2876d08
DB
333 spin_lock_irqsave(&gpio_lock, flags);
334
8d0aab2f
AV
335 if (base < 0) {
336 base = gpiochip_find_base(chip->ngpio);
337 if (base < 0) {
338 status = base;
225fce83
JH
339 spin_unlock_irqrestore(&gpio_lock, flags);
340 goto err_free_descs;
8d0aab2f
AV
341 }
342 chip->base = base;
343 }
344
1a989d0f 345 status = gpiochip_add_to_list(chip);
05aa5203
JH
346 if (status) {
347 spin_unlock_irqrestore(&gpio_lock, flags);
348 goto err_free_descs;
349 }
1a989d0f 350
05aa5203
JH
351 for (id = 0; id < chip->ngpio; id++) {
352 struct gpio_desc *desc = &descs[id];
353
354 desc->chip = chip;
355
356 /* REVISIT: most hardware initializes GPIOs as inputs (often
357 * with pullups enabled) so power usage is minimized. Linux
358 * code should set the gpio direction first thing; but until
359 * it does, and in case chip->get_direction is not set, we may
360 * expose the wrong direction in sysfs.
361 */
362 desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0;
d2876d08
DB
363 }
364
14e85c0e
AC
365 chip->desc = descs;
366
3bae4811
ZG
367 spin_unlock_irqrestore(&gpio_lock, flags);
368
f23f1516
SH
369#ifdef CONFIG_PINCTRL
370 INIT_LIST_HEAD(&chip->pin_ranges);
371#endif
372
58383c78
LW
373 if (!chip->owner && chip->parent && chip->parent->driver)
374 chip->owner = chip->parent->driver->owner;
3726960e 375
5f3ca732
MP
376 status = gpiochip_set_desc_names(chip);
377 if (status)
378 goto err_remove_from_list;
379
28355f81
TV
380 status = of_gpiochip_add(chip);
381 if (status)
382 goto err_remove_chip;
383
664e3e5a 384 acpi_gpiochip_add(chip);
391c970c 385
426577bd 386 status = gpiochip_sysfs_register(chip);
225fce83
JH
387 if (status)
388 goto err_remove_chip;
cedb1881 389
7589e59f 390 pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__,
64842aad
GL
391 chip->base, chip->base + chip->ngpio - 1,
392 chip->label ? : "generic");
393
cedb1881 394 return 0;
3bae4811 395
225fce83
JH
396err_remove_chip:
397 acpi_gpiochip_remove(chip);
6d86750c 398 gpiochip_free_hogs(chip);
225fce83 399 of_gpiochip_remove(chip);
5f3ca732 400err_remove_from_list:
225fce83
JH
401 spin_lock_irqsave(&gpio_lock, flags);
402 list_del(&chip->list);
3bae4811 403 spin_unlock_irqrestore(&gpio_lock, flags);
05aa5203 404 chip->desc = NULL;
225fce83 405err_free_descs:
14e85c0e 406 kfree(descs);
14e85c0e 407
d2876d08 408 /* failures here can mean systems won't boot... */
7589e59f 409 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
cedb1881
AV
410 chip->base, chip->base + chip->ngpio - 1,
411 chip->label ? : "generic");
d2876d08
DB
412 return status;
413}
414EXPORT_SYMBOL_GPL(gpiochip_add);
415
416/**
417 * gpiochip_remove() - unregister a gpio_chip
418 * @chip: the chip to unregister
419 *
420 * A gpio_chip with any GPIOs still requested may not be removed.
421 */
e1db1706 422void gpiochip_remove(struct gpio_chip *chip)
d2876d08 423{
fab28b89 424 struct gpio_desc *desc;
d2876d08 425 unsigned long flags;
d2876d08 426 unsigned id;
fab28b89 427 bool requested = false;
d2876d08 428
426577bd 429 gpiochip_sysfs_unregister(chip);
01cca93a 430
00acc3dc
JH
431 gpiochip_irqchip_remove(chip);
432
6072b9dc 433 acpi_gpiochip_remove(chip);
9ef0d6f7 434 gpiochip_remove_pin_ranges(chip);
f625d460 435 gpiochip_free_hogs(chip);
391c970c
AV
436 of_gpiochip_remove(chip);
437
6798acaa 438 spin_lock_irqsave(&gpio_lock, flags);
6c0b4e6c 439 for (id = 0; id < chip->ngpio; id++) {
fab28b89
JH
440 desc = &chip->desc[id];
441 desc->chip = NULL;
442 if (test_bit(FLAG_REQUESTED, &desc->flags))
443 requested = true;
d2876d08 444 }
e1db1706 445 list_del(&chip->list);
d2876d08 446 spin_unlock_irqrestore(&gpio_lock, flags);
14e85c0e 447
fab28b89 448 if (requested)
58383c78
LW
449 dev_crit(chip->parent,
450 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
fab28b89 451
14e85c0e
AC
452 kfree(chip->desc);
453 chip->desc = NULL;
d2876d08
DB
454}
455EXPORT_SYMBOL_GPL(gpiochip_remove);
456
594fa265
GL
457/**
458 * gpiochip_find() - iterator for locating a specific gpio_chip
459 * @data: data to pass to match function
460 * @callback: Callback function to check gpio_chip
461 *
462 * Similar to bus_find_device. It returns a reference to a gpio_chip as
463 * determined by a user supplied @match callback. The callback should return
464 * 0 if the device doesn't match and non-zero if it does. If the callback is
465 * non-zero, this function will return to the caller and not iterate over any
466 * more gpio_chips.
467 */
07ce8ec7 468struct gpio_chip *gpiochip_find(void *data,
6e2cf651 469 int (*match)(struct gpio_chip *chip,
3d0f7cf0 470 void *data))
594fa265 471{
125eef96 472 struct gpio_chip *chip;
594fa265 473 unsigned long flags;
594fa265
GL
474
475 spin_lock_irqsave(&gpio_lock, flags);
125eef96
AC
476 list_for_each_entry(chip, &gpio_chips, list)
477 if (match(chip, data))
594fa265 478 break;
125eef96
AC
479
480 /* No match? */
481 if (&chip->list == &gpio_chips)
482 chip = NULL;
594fa265
GL
483 spin_unlock_irqrestore(&gpio_lock, flags);
484
485 return chip;
486}
8fa0c9bf 487EXPORT_SYMBOL_GPL(gpiochip_find);
d2876d08 488
79697ef9
AC
489static int gpiochip_match_name(struct gpio_chip *chip, void *data)
490{
491 const char *name = data;
492
493 return !strcmp(chip->label, name);
494}
495
496static struct gpio_chip *find_chip_by_name(const char *name)
497{
498 return gpiochip_find((void *)name, gpiochip_match_name);
499}
500
14250520
LW
501#ifdef CONFIG_GPIOLIB_IRQCHIP
502
503/*
504 * The following is irqchip helper code for gpiochips.
505 */
506
507/**
3f97d5fc
LW
508 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
509 * @gpiochip: the gpiochip to set the irqchip chain to
510 * @irqchip: the irqchip to chain to the gpiochip
14250520
LW
511 * @parent_irq: the irq number corresponding to the parent IRQ for this
512 * chained irqchip
513 * @parent_handler: the parent interrupt handler for the accumulated IRQ
3f97d5fc
LW
514 * coming out of the gpiochip. If the interrupt is nested rather than
515 * cascaded, pass NULL in this handler argument
14250520
LW
516 */
517void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
518 struct irq_chip *irqchip,
519 int parent_irq,
520 irq_flow_handler_t parent_handler)
521{
83141a77
LW
522 unsigned int offset;
523
83141a77
LW
524 if (!gpiochip->irqdomain) {
525 chip_err(gpiochip, "called %s before setting up irqchip\n",
526 __func__);
1c8732bb
LW
527 return;
528 }
529
3f97d5fc
LW
530 if (parent_handler) {
531 if (gpiochip->can_sleep) {
532 chip_err(gpiochip,
533 "you cannot have chained interrupts on a "
534 "chip that may sleep\n");
535 return;
536 }
3f97d5fc
LW
537 /*
538 * The parent irqchip is already using the chip_data for this
539 * irqchip, so our callbacks simply use the handler_data.
540 */
f7f87753
TG
541 irq_set_chained_handler_and_data(parent_irq, parent_handler,
542 gpiochip);
25e4fe92
DES
543
544 gpiochip->irq_parent = parent_irq;
3f97d5fc 545 }
83141a77
LW
546
547 /* Set the parent IRQ for all affected IRQs */
548 for (offset = 0; offset < gpiochip->ngpio; offset++)
549 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
550 parent_irq);
14250520
LW
551}
552EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
553
554/**
555 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
556 * @d: the irqdomain used by this irqchip
557 * @irq: the global irq number used by this GPIO irqchip irq
558 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
559 *
560 * This function will set up the mapping for a certain IRQ line on a
561 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
562 * stored inside the gpiochip.
563 */
564static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
565 irq_hw_number_t hwirq)
566{
567 struct gpio_chip *chip = d->host_data;
568
14250520 569 irq_set_chip_data(irq, chip);
a0a8bcf4
GS
570 /*
571 * This lock class tells lockdep that GPIO irqs are in a different
572 * category than their parents, so it won't report false recursion.
573 */
574 irq_set_lockdep_class(irq, chip->lock_key);
7633fb95 575 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
1c8732bb 576 /* Chips that can sleep need nested thread handlers */
295494af 577 if (chip->can_sleep && !chip->irq_not_threaded)
1c8732bb 578 irq_set_nested_thread(irq, 1);
14250520 579 irq_set_noprobe(irq);
23393d49 580
1333b90f
LW
581 /*
582 * No set-up of the hardware will happen if IRQ_TYPE_NONE
583 * is passed as default type.
584 */
585 if (chip->irq_default_type != IRQ_TYPE_NONE)
586 irq_set_irq_type(irq, chip->irq_default_type);
14250520
LW
587
588 return 0;
589}
590
c3626fde
LW
591static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
592{
1c8732bb
LW
593 struct gpio_chip *chip = d->host_data;
594
1c8732bb
LW
595 if (chip->can_sleep)
596 irq_set_nested_thread(irq, 0);
c3626fde
LW
597 irq_set_chip_and_handler(irq, NULL, NULL);
598 irq_set_chip_data(irq, NULL);
599}
600
14250520
LW
601static const struct irq_domain_ops gpiochip_domain_ops = {
602 .map = gpiochip_irq_map,
c3626fde 603 .unmap = gpiochip_irq_unmap,
14250520
LW
604 /* Virtually all GPIO irqchips are twocell:ed */
605 .xlate = irq_domain_xlate_twocell,
606};
607
608static int gpiochip_irq_reqres(struct irq_data *d)
609{
610 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
611
5b76e79c
GS
612 if (!try_module_get(chip->owner))
613 return -ENODEV;
614
e3a2e878 615 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
14250520
LW
616 chip_err(chip,
617 "unable to lock HW IRQ %lu for IRQ\n",
618 d->hwirq);
5b76e79c 619 module_put(chip->owner);
14250520
LW
620 return -EINVAL;
621 }
622 return 0;
623}
624
625static void gpiochip_irq_relres(struct irq_data *d)
626{
627 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
628
e3a2e878 629 gpiochip_unlock_as_irq(chip, d->hwirq);
5b76e79c 630 module_put(chip->owner);
14250520
LW
631}
632
633static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
634{
635 return irq_find_mapping(chip->irqdomain, offset);
636}
637
638/**
639 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
640 * @gpiochip: the gpiochip to remove the irqchip from
641 *
642 * This is called only from gpiochip_remove()
643 */
644static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
645{
c3626fde
LW
646 unsigned int offset;
647
afa82fab
MW
648 acpi_gpiochip_free_interrupts(gpiochip);
649
25e4fe92
DES
650 if (gpiochip->irq_parent) {
651 irq_set_chained_handler(gpiochip->irq_parent, NULL);
652 irq_set_handler_data(gpiochip->irq_parent, NULL);
653 }
654
c3626fde
LW
655 /* Remove all IRQ mappings and delete the domain */
656 if (gpiochip->irqdomain) {
657 for (offset = 0; offset < gpiochip->ngpio; offset++)
e3893386
GS
658 irq_dispose_mapping(
659 irq_find_mapping(gpiochip->irqdomain, offset));
14250520 660 irq_domain_remove(gpiochip->irqdomain);
c3626fde 661 }
14250520
LW
662
663 if (gpiochip->irqchip) {
664 gpiochip->irqchip->irq_request_resources = NULL;
665 gpiochip->irqchip->irq_release_resources = NULL;
666 gpiochip->irqchip = NULL;
667 }
668}
669
670/**
671 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
672 * @gpiochip: the gpiochip to add the irqchip to
673 * @irqchip: the irqchip to add to the gpiochip
674 * @first_irq: if not dynamically assigned, the base (first) IRQ to
675 * allocate gpiochip irqs from
676 * @handler: the irq handler to use (often a predefined irq core function)
1333b90f
LW
677 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
678 * to have the core avoid setting up any default type in the hardware.
a0a8bcf4 679 * @lock_key: lockdep class
14250520
LW
680 *
681 * This function closely associates a certain irqchip with a certain
682 * gpiochip, providing an irq domain to translate the local IRQs to
683 * global irqs in the gpiolib core, and making sure that the gpiochip
684 * is passed as chip data to all related functions. Driver callbacks
685 * need to use container_of() to get their local state containers back
686 * from the gpiochip passed as chip data. An irqdomain will be stored
687 * in the gpiochip that shall be used by the driver to handle IRQ number
688 * translation. The gpiochip will need to be initialized and registered
689 * before calling this function.
690 *
c3626fde
LW
691 * This function will handle two cell:ed simple IRQs and assumes all
692 * the pins on the gpiochip can generate a unique IRQ. Everything else
14250520
LW
693 * need to be open coded.
694 */
a0a8bcf4
GS
695int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
696 struct irq_chip *irqchip,
697 unsigned int first_irq,
698 irq_flow_handler_t handler,
699 unsigned int type,
700 struct lock_class_key *lock_key)
14250520
LW
701{
702 struct device_node *of_node;
703 unsigned int offset;
c3626fde 704 unsigned irq_base = 0;
14250520
LW
705
706 if (!gpiochip || !irqchip)
707 return -EINVAL;
708
58383c78 709 if (!gpiochip->parent) {
14250520
LW
710 pr_err("missing gpiochip .dev parent pointer\n");
711 return -EINVAL;
712 }
58383c78 713 of_node = gpiochip->parent->of_node;
14250520
LW
714#ifdef CONFIG_OF_GPIO
715 /*
20a8a968 716 * If the gpiochip has an assigned OF node this takes precedence
c88402c2
BJZ
717 * FIXME: get rid of this and use gpiochip->parent->of_node
718 * everywhere
14250520
LW
719 */
720 if (gpiochip->of_node)
721 of_node = gpiochip->of_node;
722#endif
723 gpiochip->irqchip = irqchip;
724 gpiochip->irq_handler = handler;
725 gpiochip->irq_default_type = type;
726 gpiochip->to_irq = gpiochip_to_irq;
a0a8bcf4 727 gpiochip->lock_key = lock_key;
14250520
LW
728 gpiochip->irqdomain = irq_domain_add_simple(of_node,
729 gpiochip->ngpio, first_irq,
730 &gpiochip_domain_ops, gpiochip);
731 if (!gpiochip->irqdomain) {
732 gpiochip->irqchip = NULL;
733 return -EINVAL;
734 }
8b67a1f0
RV
735
736 /*
737 * It is possible for a driver to override this, but only if the
738 * alternative functions are both implemented.
739 */
740 if (!irqchip->irq_request_resources &&
741 !irqchip->irq_release_resources) {
742 irqchip->irq_request_resources = gpiochip_irq_reqres;
743 irqchip->irq_release_resources = gpiochip_irq_relres;
744 }
14250520
LW
745
746 /*
747 * Prepare the mapping since the irqchip shall be orthogonal to
748 * any gpiochip calls. If the first_irq was zero, this is
749 * necessary to allocate descriptors for all IRQs.
750 */
c3626fde
LW
751 for (offset = 0; offset < gpiochip->ngpio; offset++) {
752 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
753 if (offset == 0)
754 /*
755 * Store the base into the gpiochip to be used when
756 * unmapping the irqs.
757 */
758 gpiochip->irq_base = irq_base;
759 }
14250520 760
afa82fab
MW
761 acpi_gpiochip_request_interrupts(gpiochip);
762
14250520
LW
763 return 0;
764}
a0a8bcf4 765EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add);
14250520
LW
766
767#else /* CONFIG_GPIOLIB_IRQCHIP */
768
769static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
770
771#endif /* CONFIG_GPIOLIB_IRQCHIP */
772
c771c2f4
JG
773/**
774 * gpiochip_generic_request() - request the gpio function for a pin
775 * @chip: the gpiochip owning the GPIO
776 * @offset: the offset of the GPIO to request for GPIO function
777 */
778int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
779{
780 return pinctrl_request_gpio(chip->base + offset);
781}
782EXPORT_SYMBOL_GPL(gpiochip_generic_request);
783
784/**
785 * gpiochip_generic_free() - free the gpio function from a pin
786 * @chip: the gpiochip to request the gpio function for
787 * @offset: the offset of the GPIO to free from GPIO function
788 */
789void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
790{
791 pinctrl_free_gpio(chip->base + offset);
792}
793EXPORT_SYMBOL_GPL(gpiochip_generic_free);
794
f23f1516 795#ifdef CONFIG_PINCTRL
165adc9c 796
586a87e6
CR
797/**
798 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
799 * @chip: the gpiochip to add the range for
d32651f6 800 * @pctldev: the pin controller to map to
586a87e6
CR
801 * @gpio_offset: the start offset in the current gpio_chip number space
802 * @pin_group: name of the pin group inside the pin controller
803 */
804int gpiochip_add_pingroup_range(struct gpio_chip *chip,
805 struct pinctrl_dev *pctldev,
806 unsigned int gpio_offset, const char *pin_group)
807{
808 struct gpio_pin_range *pin_range;
809 int ret;
810
811 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
812 if (!pin_range) {
1a2a99c6 813 chip_err(chip, "failed to allocate pin ranges\n");
586a87e6
CR
814 return -ENOMEM;
815 }
816
817 /* Use local offset as range ID */
818 pin_range->range.id = gpio_offset;
819 pin_range->range.gc = chip;
820 pin_range->range.name = chip->label;
821 pin_range->range.base = chip->base + gpio_offset;
822 pin_range->pctldev = pctldev;
823
824 ret = pinctrl_get_group_pins(pctldev, pin_group,
825 &pin_range->range.pins,
826 &pin_range->range.npins);
61c6375d
MN
827 if (ret < 0) {
828 kfree(pin_range);
586a87e6 829 return ret;
61c6375d 830 }
586a87e6
CR
831
832 pinctrl_add_gpio_range(pctldev, &pin_range->range);
833
1a2a99c6
AS
834 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
835 gpio_offset, gpio_offset + pin_range->range.npins - 1,
586a87e6
CR
836 pinctrl_dev_get_devname(pctldev), pin_group);
837
838 list_add_tail(&pin_range->node, &chip->pin_ranges);
839
840 return 0;
841}
842EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
843
3f0f8670
LW
844/**
845 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
846 * @chip: the gpiochip to add the range for
847 * @pinctrl_name: the dev_name() of the pin controller to map to
316511c0
LW
848 * @gpio_offset: the start offset in the current gpio_chip number space
849 * @pin_offset: the start offset in the pin controller number space
3f0f8670
LW
850 * @npins: the number of pins from the offset of each pin space (GPIO and
851 * pin controller) to accumulate in this range
852 */
1e63d7b9 853int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
316511c0 854 unsigned int gpio_offset, unsigned int pin_offset,
3f0f8670 855 unsigned int npins)
f23f1516
SH
856{
857 struct gpio_pin_range *pin_range;
b4d4b1f0 858 int ret;
f23f1516 859
3f0f8670 860 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
f23f1516 861 if (!pin_range) {
1a2a99c6 862 chip_err(chip, "failed to allocate pin ranges\n");
1e63d7b9 863 return -ENOMEM;
f23f1516
SH
864 }
865
3f0f8670 866 /* Use local offset as range ID */
316511c0 867 pin_range->range.id = gpio_offset;
3f0f8670 868 pin_range->range.gc = chip;
f23f1516 869 pin_range->range.name = chip->label;
316511c0
LW
870 pin_range->range.base = chip->base + gpio_offset;
871 pin_range->range.pin_base = pin_offset;
f23f1516 872 pin_range->range.npins = npins;
192c369c 873 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
f23f1516 874 &pin_range->range);
8f23ca1a 875 if (IS_ERR(pin_range->pctldev)) {
b4d4b1f0 876 ret = PTR_ERR(pin_range->pctldev);
1a2a99c6 877 chip_err(chip, "could not create pin range\n");
3f0f8670 878 kfree(pin_range);
b4d4b1f0 879 return ret;
3f0f8670 880 }
1a2a99c6
AS
881 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
882 gpio_offset, gpio_offset + npins - 1,
316511c0
LW
883 pinctl_name,
884 pin_offset, pin_offset + npins - 1);
f23f1516
SH
885
886 list_add_tail(&pin_range->node, &chip->pin_ranges);
1e63d7b9
LW
887
888 return 0;
f23f1516 889}
165adc9c 890EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
f23f1516 891
3f0f8670
LW
892/**
893 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
894 * @chip: the chip to remove all the mappings for
895 */
f23f1516
SH
896void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
897{
898 struct gpio_pin_range *pin_range, *tmp;
899
900 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) {
901 list_del(&pin_range->node);
902 pinctrl_remove_gpio_range(pin_range->pctldev,
903 &pin_range->range);
3f0f8670 904 kfree(pin_range);
f23f1516
SH
905 }
906}
165adc9c
LW
907EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
908
909#endif /* CONFIG_PINCTRL */
f23f1516 910
d2876d08
DB
911/* These "optional" allocation calls help prevent drivers from stomping
912 * on each other, and help provide better diagnostics in debugfs.
913 * They're called even less than the "set direction" calls.
914 */
77c2d792 915static int __gpiod_request(struct gpio_desc *desc, const char *label)
d2876d08 916{
77c2d792
MW
917 struct gpio_chip *chip = desc->chip;
918 int status;
d2876d08
DB
919 unsigned long flags;
920
bcabdef1
AC
921 spin_lock_irqsave(&gpio_lock, flags);
922
d2876d08 923 /* NOTE: gpio_request() can be called in early boot,
35e8bb51 924 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
d2876d08
DB
925 */
926
927 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
928 desc_set_label(desc, label ? : "?");
929 status = 0;
438d8908 930 } else {
d2876d08 931 status = -EBUSY;
7460db56 932 goto done;
35e8bb51
DB
933 }
934
935 if (chip->request) {
936 /* chip->request may sleep */
937 spin_unlock_irqrestore(&gpio_lock, flags);
372e722e 938 status = chip->request(chip, gpio_chip_hwgpio(desc));
35e8bb51
DB
939 spin_lock_irqsave(&gpio_lock, flags);
940
941 if (status < 0) {
942 desc_set_label(desc, NULL);
35e8bb51 943 clear_bit(FLAG_REQUESTED, &desc->flags);
80b0a602 944 goto done;
35e8bb51 945 }
438d8908 946 }
80b0a602
MN
947 if (chip->get_direction) {
948 /* chip->get_direction may sleep */
949 spin_unlock_irqrestore(&gpio_lock, flags);
372e722e 950 gpiod_get_direction(desc);
80b0a602
MN
951 spin_lock_irqsave(&gpio_lock, flags);
952 }
77c2d792 953done:
923b93e4
LP
954 if (status < 0) {
955 /* Clear flags that might have been set by the caller before
956 * requesting the GPIO.
957 */
958 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
959 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
960 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
961 }
77c2d792
MW
962 spin_unlock_irqrestore(&gpio_lock, flags);
963 return status;
964}
965
0eb4c6c2 966int gpiod_request(struct gpio_desc *desc, const char *label)
77c2d792
MW
967{
968 int status = -EPROBE_DEFER;
969 struct gpio_chip *chip;
970
971 if (!desc) {
972 pr_warn("%s: invalid GPIO\n", __func__);
973 return -EINVAL;
974 }
975
976 chip = desc->chip;
977 if (!chip)
978 goto done;
979
980 if (try_module_get(chip->owner)) {
981 status = __gpiod_request(desc, label);
982 if (status < 0)
983 module_put(chip->owner);
984 }
985
d2876d08
DB
986done:
987 if (status)
7589e59f 988 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
77c2d792 989
d2876d08
DB
990 return status;
991}
372e722e 992
77c2d792 993static bool __gpiod_free(struct gpio_desc *desc)
d2876d08 994{
77c2d792 995 bool ret = false;
d2876d08 996 unsigned long flags;
35e8bb51 997 struct gpio_chip *chip;
d2876d08 998
3d599d1c
UKK
999 might_sleep();
1000
372e722e 1001 gpiod_unexport(desc);
d8f388d8 1002
d2876d08
DB
1003 spin_lock_irqsave(&gpio_lock, flags);
1004
35e8bb51
DB
1005 chip = desc->chip;
1006 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
1007 if (chip->free) {
1008 spin_unlock_irqrestore(&gpio_lock, flags);
9c4ba946 1009 might_sleep_if(chip->can_sleep);
372e722e 1010 chip->free(chip, gpio_chip_hwgpio(desc));
35e8bb51
DB
1011 spin_lock_irqsave(&gpio_lock, flags);
1012 }
d2876d08 1013 desc_set_label(desc, NULL);
07697461 1014 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
35e8bb51 1015 clear_bit(FLAG_REQUESTED, &desc->flags);
aca5ce14 1016 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
25553ff0 1017 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
f625d460 1018 clear_bit(FLAG_IS_HOGGED, &desc->flags);
77c2d792
MW
1019 ret = true;
1020 }
d2876d08
DB
1021
1022 spin_unlock_irqrestore(&gpio_lock, flags);
77c2d792
MW
1023 return ret;
1024}
1025
0eb4c6c2 1026void gpiod_free(struct gpio_desc *desc)
77c2d792
MW
1027{
1028 if (desc && __gpiod_free(desc))
1029 module_put(desc->chip->owner);
1030 else
1031 WARN_ON(extra_checks);
d2876d08 1032}
372e722e 1033
d2876d08
DB
1034/**
1035 * gpiochip_is_requested - return string iff signal was requested
1036 * @chip: controller managing the signal
1037 * @offset: of signal within controller's 0..(ngpio - 1) range
1038 *
1039 * Returns NULL if the GPIO is not currently requested, else a string.
9c8318ff
AC
1040 * The string returned is the label passed to gpio_request(); if none has been
1041 * passed it is a meaningless, non-NULL constant.
d2876d08
DB
1042 *
1043 * This function is for use by GPIO controller drivers. The label can
1044 * help with diagnostics, and knowing that the signal is used as a GPIO
1045 * can help avoid accidentally multiplexing it to another controller.
1046 */
1047const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
1048{
6c0b4e6c 1049 struct gpio_desc *desc;
d2876d08 1050
48b5953e 1051 if (offset >= chip->ngpio)
d2876d08 1052 return NULL;
6c0b4e6c
AC
1053
1054 desc = &chip->desc[offset];
1055
372e722e 1056 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
d2876d08 1057 return NULL;
372e722e 1058 return desc->label;
d2876d08
DB
1059}
1060EXPORT_SYMBOL_GPL(gpiochip_is_requested);
1061
77c2d792
MW
1062/**
1063 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
1064 * @desc: GPIO descriptor to request
1065 * @label: label for the GPIO
1066 *
1067 * Function allows GPIO chip drivers to request and use their own GPIO
1068 * descriptors via gpiolib API. Difference to gpiod_request() is that this
1069 * function will not increase reference count of the GPIO chip module. This
1070 * allows the GPIO chip module to be unloaded as needed (we assume that the
1071 * GPIO chip driver handles freeing the GPIOs it has requested).
1072 */
abdc08a3
AC
1073struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
1074 const char *label)
77c2d792 1075{
abdc08a3
AC
1076 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
1077 int err;
77c2d792 1078
abdc08a3
AC
1079 if (IS_ERR(desc)) {
1080 chip_err(chip, "failed to get GPIO descriptor\n");
1081 return desc;
1082 }
1083
1084 err = __gpiod_request(desc, label);
1085 if (err < 0)
1086 return ERR_PTR(err);
77c2d792 1087
abdc08a3 1088 return desc;
77c2d792 1089}
f7d4ad98 1090EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
77c2d792
MW
1091
1092/**
1093 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
1094 * @desc: GPIO descriptor to free
1095 *
1096 * Function frees the given GPIO requested previously with
1097 * gpiochip_request_own_desc().
1098 */
1099void gpiochip_free_own_desc(struct gpio_desc *desc)
1100{
1101 if (desc)
1102 __gpiod_free(desc);
1103}
f7d4ad98 1104EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
d2876d08
DB
1105
1106/* Drivers MUST set GPIO direction before making get/set calls. In
1107 * some cases this is done in early boot, before IRQs are enabled.
1108 *
1109 * As a rule these aren't called more than once (except for drivers
1110 * using the open-drain emulation idiom) so these are natural places
1111 * to accumulate extra debugging checks. Note that we can't (yet)
1112 * rely on gpio_request() having been called beforehand.
1113 */
1114
79a9becd
AC
1115/**
1116 * gpiod_direction_input - set the GPIO direction to input
1117 * @desc: GPIO to set to input
1118 *
1119 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
1120 * be called safely on it.
1121 *
1122 * Return 0 in case of success, else an error code.
1123 */
1124int gpiod_direction_input(struct gpio_desc *desc)
d2876d08 1125{
d2876d08 1126 struct gpio_chip *chip;
d2876d08
DB
1127 int status = -EINVAL;
1128
be1a4b13 1129 if (!desc || !desc->chip) {
bcabdef1
AC
1130 pr_warn("%s: invalid GPIO\n", __func__);
1131 return -EINVAL;
1132 }
1133
be1a4b13
LW
1134 chip = desc->chip;
1135 if (!chip->get || !chip->direction_input) {
6424de5a
MB
1136 gpiod_warn(desc,
1137 "%s: missing get() or direction_input() operations\n",
7589e59f 1138 __func__);
be1a4b13
LW
1139 return -EIO;
1140 }
1141
d82da797 1142 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
d2876d08
DB
1143 if (status == 0)
1144 clear_bit(FLAG_IS_OUT, &desc->flags);
3f397c21 1145
372e722e 1146 trace_gpio_direction(desc_to_gpio(desc), 1, status);
d82da797 1147
d2876d08
DB
1148 return status;
1149}
79a9becd 1150EXPORT_SYMBOL_GPL(gpiod_direction_input);
372e722e 1151
ef70bbe1 1152static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
d2876d08 1153{
d2876d08 1154 struct gpio_chip *chip;
d2876d08
DB
1155 int status = -EINVAL;
1156
d468bf9e
LW
1157 /* GPIOs used for IRQs shall not be set as output */
1158 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
1159 gpiod_err(desc,
1160 "%s: tried to set a GPIO tied to an IRQ as output\n",
1161 __func__);
1162 return -EIO;
1163 }
1164
aca5ce14
LD
1165 /* Open drain pin should not be driven to 1 */
1166 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
372e722e 1167 return gpiod_direction_input(desc);
aca5ce14 1168
25553ff0
LD
1169 /* Open source pin should not be driven to 0 */
1170 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
372e722e 1171 return gpiod_direction_input(desc);
25553ff0 1172
be1a4b13
LW
1173 chip = desc->chip;
1174 if (!chip->set || !chip->direction_output) {
6424de5a
MB
1175 gpiod_warn(desc,
1176 "%s: missing set() or direction_output() operations\n",
1177 __func__);
be1a4b13
LW
1178 return -EIO;
1179 }
1180
d82da797 1181 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
d2876d08
DB
1182 if (status == 0)
1183 set_bit(FLAG_IS_OUT, &desc->flags);
372e722e
AC
1184 trace_gpio_value(desc_to_gpio(desc), 0, value);
1185 trace_gpio_direction(desc_to_gpio(desc), 0, status);
d2876d08
DB
1186 return status;
1187}
ef70bbe1
PZ
1188
1189/**
1190 * gpiod_direction_output_raw - set the GPIO direction to output
1191 * @desc: GPIO to set to output
1192 * @value: initial output value of the GPIO
1193 *
1194 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1195 * be called safely on it. The initial value of the output must be specified
1196 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1197 *
1198 * Return 0 in case of success, else an error code.
1199 */
1200int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1201{
1202 if (!desc || !desc->chip) {
1203 pr_warn("%s: invalid GPIO\n", __func__);
1204 return -EINVAL;
1205 }
1206 return _gpiod_direction_output_raw(desc, value);
1207}
1208EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1209
1210/**
90df4fe0 1211 * gpiod_direction_output - set the GPIO direction to output
ef70bbe1
PZ
1212 * @desc: GPIO to set to output
1213 * @value: initial output value of the GPIO
1214 *
1215 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1216 * be called safely on it. The initial value of the output must be specified
1217 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1218 * account.
1219 *
1220 * Return 0 in case of success, else an error code.
1221 */
1222int gpiod_direction_output(struct gpio_desc *desc, int value)
1223{
1224 if (!desc || !desc->chip) {
1225 pr_warn("%s: invalid GPIO\n", __func__);
1226 return -EINVAL;
1227 }
1228 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1229 value = !value;
1230 return _gpiod_direction_output_raw(desc, value);
1231}
79a9becd 1232EXPORT_SYMBOL_GPL(gpiod_direction_output);
d2876d08 1233
c4b5be98 1234/**
79a9becd 1235 * gpiod_set_debounce - sets @debounce time for a @gpio
c4b5be98
FB
1236 * @gpio: the gpio to set debounce time
1237 * @debounce: debounce time is microseconds
65d87656
LW
1238 *
1239 * returns -ENOTSUPP if the controller does not support setting
1240 * debounce.
c4b5be98 1241 */
79a9becd 1242int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
c4b5be98 1243{
c4b5be98 1244 struct gpio_chip *chip;
c4b5be98 1245
be1a4b13 1246 if (!desc || !desc->chip) {
bcabdef1
AC
1247 pr_warn("%s: invalid GPIO\n", __func__);
1248 return -EINVAL;
1249 }
1250
c4b5be98 1251 chip = desc->chip;
be1a4b13 1252 if (!chip->set || !chip->set_debounce) {
6424de5a
MB
1253 gpiod_dbg(desc,
1254 "%s: missing set() or set_debounce() operations\n",
1255 __func__);
65d87656 1256 return -ENOTSUPP;
be1a4b13
LW
1257 }
1258
d82da797 1259 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
c4b5be98 1260}
79a9becd 1261EXPORT_SYMBOL_GPL(gpiod_set_debounce);
372e722e 1262
79a9becd
AC
1263/**
1264 * gpiod_is_active_low - test whether a GPIO is active-low or not
1265 * @desc: the gpio descriptor to test
1266 *
1267 * Returns 1 if the GPIO is active-low, 0 otherwise.
1268 */
1269int gpiod_is_active_low(const struct gpio_desc *desc)
372e722e 1270{
79a9becd 1271 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
372e722e 1272}
79a9becd 1273EXPORT_SYMBOL_GPL(gpiod_is_active_low);
d2876d08
DB
1274
1275/* I/O calls are only valid after configuration completed; the relevant
1276 * "is this a valid GPIO" error checks should already have been done.
1277 *
1278 * "Get" operations are often inlinable as reading a pin value register,
1279 * and masking the relevant bit in that register.
1280 *
1281 * When "set" operations are inlinable, they involve writing that mask to
1282 * one register to set a low value, or a different register to set it high.
1283 * Otherwise locking is needed, so there may be little value to inlining.
1284 *
1285 *------------------------------------------------------------------------
1286 *
1287 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1288 * have requested the GPIO. That can include implicit requesting by
1289 * a direction setting call. Marking a gpio as requested locks its chip
1290 * in memory, guaranteeing that these table lookups need no more locking
1291 * and that gpiochip_remove() will fail.
1292 *
1293 * REVISIT when debugging, consider adding some instrumentation to ensure
1294 * that the GPIO was actually requested.
1295 */
1296
e20538b8 1297static int _gpiod_get_raw_value(const struct gpio_desc *desc)
d2876d08
DB
1298{
1299 struct gpio_chip *chip;
372e722e 1300 int offset;
e20538b8 1301 int value;
d2876d08 1302
372e722e
AC
1303 chip = desc->chip;
1304 offset = gpio_chip_hwgpio(desc);
e20538b8 1305 value = chip->get ? chip->get(chip, offset) : -EIO;
45ad7db9
LW
1306 /*
1307 * FIXME: fix all drivers to clamp to [0,1] or return negative,
1308 * then change this to:
1309 * value = value < 0 ? value : !!value;
1310 * so we can properly propagate error codes.
1311 */
1312 value = !!value;
372e722e 1313 trace_gpio_value(desc_to_gpio(desc), 1, value);
3f397c21 1314 return value;
d2876d08 1315}
372e722e 1316
d2876d08 1317/**
79a9becd
AC
1318 * gpiod_get_raw_value() - return a gpio's raw value
1319 * @desc: gpio whose value will be returned
d2876d08 1320 *
79a9becd 1321 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
e20538b8 1322 * its ACTIVE_LOW status, or negative errno on failure.
79a9becd
AC
1323 *
1324 * This function should be called from contexts where we cannot sleep, and will
1325 * complain if the GPIO chip functions potentially sleep.
d2876d08 1326 */
79a9becd 1327int gpiod_get_raw_value(const struct gpio_desc *desc)
d2876d08 1328{
bcabdef1
AC
1329 if (!desc)
1330 return 0;
e4e449e8 1331 /* Should be using gpio_get_value_cansleep() */
d8e0ac08 1332 WARN_ON(desc->chip->can_sleep);
79a9becd 1333 return _gpiod_get_raw_value(desc);
d2876d08 1334}
79a9becd 1335EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
372e722e 1336
79a9becd
AC
1337/**
1338 * gpiod_get_value() - return a gpio's value
1339 * @desc: gpio whose value will be returned
1340 *
1341 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
e20538b8 1342 * account, or negative errno on failure.
79a9becd
AC
1343 *
1344 * This function should be called from contexts where we cannot sleep, and will
1345 * complain if the GPIO chip functions potentially sleep.
1346 */
1347int gpiod_get_value(const struct gpio_desc *desc)
372e722e 1348{
79a9becd
AC
1349 int value;
1350 if (!desc)
1351 return 0;
1352 /* Should be using gpio_get_value_cansleep() */
1353 WARN_ON(desc->chip->can_sleep);
1354
1355 value = _gpiod_get_raw_value(desc);
e20538b8
BA
1356 if (value < 0)
1357 return value;
1358
79a9becd
AC
1359 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1360 value = !value;
1361
1362 return value;
372e722e 1363}
79a9becd 1364EXPORT_SYMBOL_GPL(gpiod_get_value);
d2876d08 1365
aca5ce14
LD
1366/*
1367 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
79a9becd 1368 * @desc: gpio descriptor whose state need to be set.
20a8a968 1369 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
aca5ce14 1370 */
23600969 1371static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
aca5ce14
LD
1372{
1373 int err = 0;
372e722e
AC
1374 struct gpio_chip *chip = desc->chip;
1375 int offset = gpio_chip_hwgpio(desc);
1376
aca5ce14 1377 if (value) {
372e722e 1378 err = chip->direction_input(chip, offset);
aca5ce14 1379 if (!err)
372e722e 1380 clear_bit(FLAG_IS_OUT, &desc->flags);
aca5ce14 1381 } else {
372e722e 1382 err = chip->direction_output(chip, offset, 0);
aca5ce14 1383 if (!err)
372e722e 1384 set_bit(FLAG_IS_OUT, &desc->flags);
aca5ce14 1385 }
372e722e 1386 trace_gpio_direction(desc_to_gpio(desc), value, err);
aca5ce14 1387 if (err < 0)
6424de5a
MB
1388 gpiod_err(desc,
1389 "%s: Error in set_value for open drain err %d\n",
1390 __func__, err);
aca5ce14
LD
1391}
1392
25553ff0 1393/*
79a9becd
AC
1394 * _gpio_set_open_source_value() - Set the open source gpio's value.
1395 * @desc: gpio descriptor whose state need to be set.
20a8a968 1396 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
25553ff0 1397 */
23600969 1398static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
25553ff0
LD
1399{
1400 int err = 0;
372e722e
AC
1401 struct gpio_chip *chip = desc->chip;
1402 int offset = gpio_chip_hwgpio(desc);
1403
25553ff0 1404 if (value) {
372e722e 1405 err = chip->direction_output(chip, offset, 1);
25553ff0 1406 if (!err)
372e722e 1407 set_bit(FLAG_IS_OUT, &desc->flags);
25553ff0 1408 } else {
372e722e 1409 err = chip->direction_input(chip, offset);
25553ff0 1410 if (!err)
372e722e 1411 clear_bit(FLAG_IS_OUT, &desc->flags);
25553ff0 1412 }
372e722e 1413 trace_gpio_direction(desc_to_gpio(desc), !value, err);
25553ff0 1414 if (err < 0)
6424de5a
MB
1415 gpiod_err(desc,
1416 "%s: Error in set_value for open source err %d\n",
1417 __func__, err);
25553ff0
LD
1418}
1419
23600969 1420static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
d2876d08
DB
1421{
1422 struct gpio_chip *chip;
1423
372e722e 1424 chip = desc->chip;
372e722e
AC
1425 trace_gpio_value(desc_to_gpio(desc), 0, value);
1426 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1427 _gpio_set_open_drain_value(desc, value);
1428 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1429 _gpio_set_open_source_value(desc, value);
aca5ce14 1430 else
372e722e
AC
1431 chip->set(chip, gpio_chip_hwgpio(desc), value);
1432}
1433
5f424243
RI
1434/*
1435 * set multiple outputs on the same chip;
1436 * use the chip's set_multiple function if available;
1437 * otherwise set the outputs sequentially;
1438 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
1439 * defines which outputs are to be changed
1440 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
1441 * defines the values the outputs specified by mask are to be set to
1442 */
1443static void gpio_chip_set_multiple(struct gpio_chip *chip,
1444 unsigned long *mask, unsigned long *bits)
1445{
1446 if (chip->set_multiple) {
1447 chip->set_multiple(chip, mask, bits);
1448 } else {
1449 int i;
1450 for (i = 0; i < chip->ngpio; i++) {
1451 if (mask[BIT_WORD(i)] == 0) {
1452 /* no more set bits in this mask word;
1453 * skip ahead to the next word */
1454 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
1455 continue;
1456 }
1457 /* set outputs if the corresponding mask bit is set */
38e003f4 1458 if (__test_and_clear_bit(i, mask))
5f424243 1459 chip->set(chip, i, test_bit(i, bits));
5f424243
RI
1460 }
1461 }
1462}
1463
3fff99bc
RI
1464static void gpiod_set_array_value_priv(bool raw, bool can_sleep,
1465 unsigned int array_size,
1466 struct gpio_desc **desc_array,
1467 int *value_array)
5f424243
RI
1468{
1469 int i = 0;
1470
1471 while (i < array_size) {
1472 struct gpio_chip *chip = desc_array[i]->chip;
1473 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
1474 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
1475 int count = 0;
1476
38e003f4 1477 if (!can_sleep)
5f424243 1478 WARN_ON(chip->can_sleep);
38e003f4 1479
5f424243
RI
1480 memset(mask, 0, sizeof(mask));
1481 do {
1482 struct gpio_desc *desc = desc_array[i];
1483 int hwgpio = gpio_chip_hwgpio(desc);
1484 int value = value_array[i];
1485
1486 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1487 value = !value;
1488 trace_gpio_value(desc_to_gpio(desc), 0, value);
1489 /*
1490 * collect all normal outputs belonging to the same chip
1491 * open drain and open source outputs are set individually
1492 */
1493 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
38e003f4 1494 _gpio_set_open_drain_value(desc, value);
5f424243
RI
1495 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
1496 _gpio_set_open_source_value(desc, value);
1497 } else {
1498 __set_bit(hwgpio, mask);
38e003f4 1499 if (value)
5f424243 1500 __set_bit(hwgpio, bits);
38e003f4 1501 else
5f424243 1502 __clear_bit(hwgpio, bits);
5f424243
RI
1503 count++;
1504 }
1505 i++;
1506 } while ((i < array_size) && (desc_array[i]->chip == chip));
1507 /* push collected bits to outputs */
38e003f4 1508 if (count != 0)
5f424243 1509 gpio_chip_set_multiple(chip, mask, bits);
5f424243
RI
1510 }
1511}
1512
d2876d08 1513/**
79a9becd
AC
1514 * gpiod_set_raw_value() - assign a gpio's raw value
1515 * @desc: gpio whose value will be assigned
d2876d08 1516 * @value: value to assign
d2876d08 1517 *
79a9becd
AC
1518 * Set the raw value of the GPIO, i.e. the value of its physical line without
1519 * regard for its ACTIVE_LOW status.
1520 *
1521 * This function should be called from contexts where we cannot sleep, and will
1522 * complain if the GPIO chip functions potentially sleep.
d2876d08 1523 */
79a9becd 1524void gpiod_set_raw_value(struct gpio_desc *desc, int value)
372e722e 1525{
bcabdef1
AC
1526 if (!desc)
1527 return;
e4e449e8 1528 /* Should be using gpio_set_value_cansleep() */
d8e0ac08 1529 WARN_ON(desc->chip->can_sleep);
79a9becd 1530 _gpiod_set_raw_value(desc, value);
d2876d08 1531}
79a9becd 1532EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
d2876d08
DB
1533
1534/**
79a9becd
AC
1535 * gpiod_set_value() - assign a gpio's value
1536 * @desc: gpio whose value will be assigned
1537 * @value: value to assign
1538 *
1539 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1540 * account
d2876d08 1541 *
79a9becd
AC
1542 * This function should be called from contexts where we cannot sleep, and will
1543 * complain if the GPIO chip functions potentially sleep.
d2876d08 1544 */
79a9becd 1545void gpiod_set_value(struct gpio_desc *desc, int value)
d2876d08 1546{
bcabdef1 1547 if (!desc)
79a9becd
AC
1548 return;
1549 /* Should be using gpio_set_value_cansleep() */
1550 WARN_ON(desc->chip->can_sleep);
1551 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1552 value = !value;
1553 _gpiod_set_raw_value(desc, value);
372e722e 1554}
79a9becd 1555EXPORT_SYMBOL_GPL(gpiod_set_value);
d2876d08 1556
5f424243 1557/**
3fff99bc 1558 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
5f424243
RI
1559 * @array_size: number of elements in the descriptor / value arrays
1560 * @desc_array: array of GPIO descriptors whose values will be assigned
1561 * @value_array: array of values to assign
1562 *
1563 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1564 * without regard for their ACTIVE_LOW status.
1565 *
1566 * This function should be called from contexts where we cannot sleep, and will
1567 * complain if the GPIO chip functions potentially sleep.
1568 */
3fff99bc 1569void gpiod_set_raw_array_value(unsigned int array_size,
5f424243
RI
1570 struct gpio_desc **desc_array, int *value_array)
1571{
1572 if (!desc_array)
1573 return;
3fff99bc
RI
1574 gpiod_set_array_value_priv(true, false, array_size, desc_array,
1575 value_array);
5f424243 1576}
3fff99bc 1577EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
5f424243
RI
1578
1579/**
3fff99bc 1580 * gpiod_set_array_value() - assign values to an array of GPIOs
5f424243
RI
1581 * @array_size: number of elements in the descriptor / value arrays
1582 * @desc_array: array of GPIO descriptors whose values will be assigned
1583 * @value_array: array of values to assign
1584 *
1585 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1586 * into account.
1587 *
1588 * This function should be called from contexts where we cannot sleep, and will
1589 * complain if the GPIO chip functions potentially sleep.
1590 */
3fff99bc
RI
1591void gpiod_set_array_value(unsigned int array_size,
1592 struct gpio_desc **desc_array, int *value_array)
5f424243
RI
1593{
1594 if (!desc_array)
1595 return;
3fff99bc
RI
1596 gpiod_set_array_value_priv(false, false, array_size, desc_array,
1597 value_array);
5f424243 1598}
3fff99bc 1599EXPORT_SYMBOL_GPL(gpiod_set_array_value);
5f424243 1600
d2876d08 1601/**
79a9becd
AC
1602 * gpiod_cansleep() - report whether gpio value access may sleep
1603 * @desc: gpio to check
d2876d08 1604 *
d2876d08 1605 */
79a9becd 1606int gpiod_cansleep(const struct gpio_desc *desc)
372e722e 1607{
bcabdef1
AC
1608 if (!desc)
1609 return 0;
372e722e 1610 return desc->chip->can_sleep;
d2876d08 1611}
79a9becd 1612EXPORT_SYMBOL_GPL(gpiod_cansleep);
d2876d08 1613
0f6d504e 1614/**
79a9becd
AC
1615 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1616 * @desc: gpio whose IRQ will be returned (already requested)
0f6d504e 1617 *
79a9becd
AC
1618 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1619 * error.
0f6d504e 1620 */
79a9becd 1621int gpiod_to_irq(const struct gpio_desc *desc)
0f6d504e
DB
1622{
1623 struct gpio_chip *chip;
372e722e 1624 int offset;
0f6d504e 1625
bcabdef1
AC
1626 if (!desc)
1627 return -EINVAL;
372e722e
AC
1628 chip = desc->chip;
1629 offset = gpio_chip_hwgpio(desc);
1630 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
0f6d504e 1631}
79a9becd 1632EXPORT_SYMBOL_GPL(gpiod_to_irq);
0f6d504e 1633
d468bf9e 1634/**
e3a2e878 1635 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
d74be6df
AC
1636 * @chip: the chip the GPIO to lock belongs to
1637 * @offset: the offset of the GPIO to lock as IRQ
d468bf9e
LW
1638 *
1639 * This is used directly by GPIO drivers that want to lock down
f438acdf 1640 * a certain GPIO line to be used for IRQs.
d468bf9e 1641 */
e3a2e878 1642int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
372e722e 1643{
d74be6df 1644 if (offset >= chip->ngpio)
d468bf9e
LW
1645 return -EINVAL;
1646
d74be6df
AC
1647 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) {
1648 chip_err(chip,
d468bf9e
LW
1649 "%s: tried to flag a GPIO set as output for IRQ\n",
1650 __func__);
1651 return -EIO;
1652 }
1653
d74be6df 1654 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
d468bf9e 1655 return 0;
372e722e 1656}
e3a2e878 1657EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
d2876d08 1658
d468bf9e 1659/**
e3a2e878 1660 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
d74be6df
AC
1661 * @chip: the chip the GPIO to lock belongs to
1662 * @offset: the offset of the GPIO to lock as IRQ
d468bf9e
LW
1663 *
1664 * This is used directly by GPIO drivers that want to indicate
1665 * that a certain GPIO is no longer used exclusively for IRQ.
d2876d08 1666 */
e3a2e878 1667void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
d468bf9e 1668{
d74be6df 1669 if (offset >= chip->ngpio)
d468bf9e 1670 return;
d2876d08 1671
d74be6df 1672 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
d468bf9e 1673}
e3a2e878 1674EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
d468bf9e 1675
79a9becd
AC
1676/**
1677 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
1678 * @desc: gpio whose value will be returned
1679 *
1680 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
e20538b8 1681 * its ACTIVE_LOW status, or negative errno on failure.
79a9becd
AC
1682 *
1683 * This function is to be called from contexts that can sleep.
d2876d08 1684 */
79a9becd 1685int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
d2876d08 1686{
d2876d08 1687 might_sleep_if(extra_checks);
bcabdef1
AC
1688 if (!desc)
1689 return 0;
79a9becd 1690 return _gpiod_get_raw_value(desc);
d2876d08 1691}
79a9becd 1692EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
372e722e 1693
79a9becd
AC
1694/**
1695 * gpiod_get_value_cansleep() - return a gpio's value
1696 * @desc: gpio whose value will be returned
1697 *
1698 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
e20538b8 1699 * account, or negative errno on failure.
79a9becd
AC
1700 *
1701 * This function is to be called from contexts that can sleep.
1702 */
1703int gpiod_get_value_cansleep(const struct gpio_desc *desc)
d2876d08 1704{
3f397c21 1705 int value;
d2876d08
DB
1706
1707 might_sleep_if(extra_checks);
bcabdef1
AC
1708 if (!desc)
1709 return 0;
79a9becd
AC
1710
1711 value = _gpiod_get_raw_value(desc);
e20538b8
BA
1712 if (value < 0)
1713 return value;
1714
79a9becd
AC
1715 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1716 value = !value;
1717
3f397c21 1718 return value;
d2876d08 1719}
79a9becd 1720EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
372e722e 1721
79a9becd
AC
1722/**
1723 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
1724 * @desc: gpio whose value will be assigned
1725 * @value: value to assign
1726 *
1727 * Set the raw value of the GPIO, i.e. the value of its physical line without
1728 * regard for its ACTIVE_LOW status.
1729 *
1730 * This function is to be called from contexts that can sleep.
1731 */
1732void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
372e722e 1733{
d2876d08 1734 might_sleep_if(extra_checks);
bcabdef1
AC
1735 if (!desc)
1736 return;
79a9becd 1737 _gpiod_set_raw_value(desc, value);
372e722e 1738}
79a9becd 1739EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
d2876d08 1740
79a9becd
AC
1741/**
1742 * gpiod_set_value_cansleep() - assign a gpio's value
1743 * @desc: gpio whose value will be assigned
1744 * @value: value to assign
1745 *
1746 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1747 * account
1748 *
1749 * This function is to be called from contexts that can sleep.
1750 */
1751void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
d2876d08 1752{
d2876d08 1753 might_sleep_if(extra_checks);
bcabdef1
AC
1754 if (!desc)
1755 return;
79a9becd
AC
1756
1757 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1758 value = !value;
1759 _gpiod_set_raw_value(desc, value);
372e722e 1760}
79a9becd 1761EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
d2876d08 1762
5f424243 1763/**
3fff99bc 1764 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
5f424243
RI
1765 * @array_size: number of elements in the descriptor / value arrays
1766 * @desc_array: array of GPIO descriptors whose values will be assigned
1767 * @value_array: array of values to assign
1768 *
1769 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1770 * without regard for their ACTIVE_LOW status.
1771 *
1772 * This function is to be called from contexts that can sleep.
1773 */
3fff99bc
RI
1774void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
1775 struct gpio_desc **desc_array,
1776 int *value_array)
5f424243
RI
1777{
1778 might_sleep_if(extra_checks);
1779 if (!desc_array)
1780 return;
3fff99bc
RI
1781 gpiod_set_array_value_priv(true, true, array_size, desc_array,
1782 value_array);
5f424243 1783}
3fff99bc 1784EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
5f424243
RI
1785
1786/**
3fff99bc 1787 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
5f424243
RI
1788 * @array_size: number of elements in the descriptor / value arrays
1789 * @desc_array: array of GPIO descriptors whose values will be assigned
1790 * @value_array: array of values to assign
1791 *
1792 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1793 * into account.
1794 *
1795 * This function is to be called from contexts that can sleep.
1796 */
3fff99bc
RI
1797void gpiod_set_array_value_cansleep(unsigned int array_size,
1798 struct gpio_desc **desc_array,
1799 int *value_array)
5f424243
RI
1800{
1801 might_sleep_if(extra_checks);
1802 if (!desc_array)
1803 return;
3fff99bc
RI
1804 gpiod_set_array_value_priv(false, true, array_size, desc_array,
1805 value_array);
5f424243 1806}
3fff99bc 1807EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
5f424243 1808
bae48da2 1809/**
ad824783
AC
1810 * gpiod_add_lookup_table() - register GPIO device consumers
1811 * @table: table of consumers to register
bae48da2 1812 */
ad824783 1813void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
bae48da2
AC
1814{
1815 mutex_lock(&gpio_lookup_lock);
1816
ad824783 1817 list_add_tail(&table->list, &gpio_lookup_list);
bae48da2
AC
1818
1819 mutex_unlock(&gpio_lookup_lock);
1820}
1821
be9015ab
SK
1822/**
1823 * gpiod_remove_lookup_table() - unregister GPIO device consumers
1824 * @table: table of consumers to unregister
1825 */
1826void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
1827{
1828 mutex_lock(&gpio_lookup_lock);
1829
1830 list_del(&table->list);
1831
1832 mutex_unlock(&gpio_lookup_lock);
1833}
1834
bae48da2 1835static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
53e7cac3
AC
1836 unsigned int idx,
1837 enum gpio_lookup_flags *flags)
bae48da2
AC
1838{
1839 char prop_name[32]; /* 32 is max size of property name */
1840 enum of_gpio_flags of_flags;
1841 struct gpio_desc *desc;
dd34c37a 1842 unsigned int i;
bae48da2 1843
7f2e553a 1844 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
dd34c37a 1845 if (con_id)
9e089246 1846 snprintf(prop_name, sizeof(prop_name), "%s-%s", con_id,
7f2e553a 1847 gpio_suffixes[i]);
dd34c37a 1848 else
9e089246 1849 snprintf(prop_name, sizeof(prop_name), "%s",
7f2e553a 1850 gpio_suffixes[i]);
bae48da2 1851
dd34c37a
TR
1852 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
1853 &of_flags);
06fc3b70 1854 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
dd34c37a
TR
1855 break;
1856 }
bae48da2
AC
1857
1858 if (IS_ERR(desc))
1859 return desc;
1860
1861 if (of_flags & OF_GPIO_ACTIVE_LOW)
53e7cac3 1862 *flags |= GPIO_ACTIVE_LOW;
bae48da2 1863
90b665f6
LP
1864 if (of_flags & OF_GPIO_SINGLE_ENDED) {
1865 if (of_flags & OF_GPIO_ACTIVE_LOW)
1866 *flags |= GPIO_OPEN_DRAIN;
1867 else
1868 *flags |= GPIO_OPEN_SOURCE;
1869 }
1870
bae48da2
AC
1871 return desc;
1872}
d2876d08 1873
81f59e9d 1874static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id,
53e7cac3
AC
1875 unsigned int idx,
1876 enum gpio_lookup_flags *flags)
372e722e 1877{
0d9a693c 1878 struct acpi_device *adev = ACPI_COMPANION(dev);
e01f440a
MW
1879 struct acpi_gpio_info info;
1880 struct gpio_desc *desc;
0d9a693c
MW
1881 char propname[32];
1882 int i;
e01f440a 1883
0d9a693c 1884 /* Try first from _DSD */
7f2e553a 1885 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
0d9a693c
MW
1886 if (con_id && strcmp(con_id, "gpios")) {
1887 snprintf(propname, sizeof(propname), "%s-%s",
7f2e553a 1888 con_id, gpio_suffixes[i]);
0d9a693c
MW
1889 } else {
1890 snprintf(propname, sizeof(propname), "%s",
7f2e553a 1891 gpio_suffixes[i]);
0d9a693c
MW
1892 }
1893
1894 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
1895 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
1896 break;
1897 }
1898
1899 /* Then from plain _CRS GPIOs */
1900 if (IS_ERR(desc)) {
9c3c9bc9
DT
1901 if (!acpi_can_fallback_to_crs(adev, con_id))
1902 return ERR_PTR(-ENOENT);
1903
0d9a693c
MW
1904 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
1905 if (IS_ERR(desc))
1906 return desc;
1907 }
e01f440a 1908
0d9a693c 1909 if (info.active_low)
53e7cac3 1910 *flags |= GPIO_ACTIVE_LOW;
e01f440a
MW
1911
1912 return desc;
81f59e9d
MW
1913}
1914
ad824783 1915static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
bae48da2
AC
1916{
1917 const char *dev_id = dev ? dev_name(dev) : NULL;
ad824783 1918 struct gpiod_lookup_table *table;
bae48da2
AC
1919
1920 mutex_lock(&gpio_lookup_lock);
1921
ad824783
AC
1922 list_for_each_entry(table, &gpio_lookup_list, list) {
1923 if (table->dev_id && dev_id) {
1924 /*
1925 * Valid strings on both ends, must be identical to have
1926 * a match
1927 */
1928 if (!strcmp(table->dev_id, dev_id))
1929 goto found;
1930 } else {
1931 /*
1932 * One of the pointers is NULL, so both must be to have
1933 * a match
1934 */
1935 if (dev_id == table->dev_id)
1936 goto found;
1937 }
1938 }
1939 table = NULL;
bae48da2 1940
ad824783
AC
1941found:
1942 mutex_unlock(&gpio_lookup_lock);
1943 return table;
1944}
bae48da2 1945
ad824783
AC
1946static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
1947 unsigned int idx,
1948 enum gpio_lookup_flags *flags)
1949{
2a3cf6a3 1950 struct gpio_desc *desc = ERR_PTR(-ENOENT);
ad824783
AC
1951 struct gpiod_lookup_table *table;
1952 struct gpiod_lookup *p;
bae48da2 1953
ad824783
AC
1954 table = gpiod_find_lookup_table(dev);
1955 if (!table)
1956 return desc;
bae48da2 1957
ad824783
AC
1958 for (p = &table->table[0]; p->chip_label; p++) {
1959 struct gpio_chip *chip;
bae48da2 1960
ad824783 1961 /* idx must always match exactly */
bae48da2
AC
1962 if (p->idx != idx)
1963 continue;
1964
ad824783
AC
1965 /* If the lookup entry has a con_id, require exact match */
1966 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
1967 continue;
bae48da2 1968
ad824783 1969 chip = find_chip_by_name(p->chip_label);
bae48da2 1970
ad824783 1971 if (!chip) {
2a3cf6a3
AC
1972 dev_err(dev, "cannot find GPIO chip %s\n",
1973 p->chip_label);
1974 return ERR_PTR(-ENODEV);
ad824783 1975 }
bae48da2 1976
ad824783 1977 if (chip->ngpio <= p->chip_hwnum) {
2a3cf6a3
AC
1978 dev_err(dev,
1979 "requested GPIO %d is out of range [0..%d] for chip %s\n",
1980 idx, chip->ngpio, chip->label);
1981 return ERR_PTR(-EINVAL);
bae48da2 1982 }
bae48da2 1983
bb1e88cc 1984 desc = gpiochip_get_desc(chip, p->chip_hwnum);
ad824783 1985 *flags = p->flags;
bae48da2 1986
2a3cf6a3 1987 return desc;
bae48da2
AC
1988 }
1989
bae48da2
AC
1990 return desc;
1991}
1992
66858527
RI
1993static int dt_gpio_count(struct device *dev, const char *con_id)
1994{
1995 int ret;
1996 char propname[32];
1997 unsigned int i;
1998
1999 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
2000 if (con_id)
2001 snprintf(propname, sizeof(propname), "%s-%s",
2002 con_id, gpio_suffixes[i]);
2003 else
2004 snprintf(propname, sizeof(propname), "%s",
2005 gpio_suffixes[i]);
2006
2007 ret = of_gpio_named_count(dev->of_node, propname);
2008 if (ret >= 0)
2009 break;
2010 }
2011 return ret;
2012}
2013
2014static int platform_gpio_count(struct device *dev, const char *con_id)
2015{
2016 struct gpiod_lookup_table *table;
2017 struct gpiod_lookup *p;
2018 unsigned int count = 0;
2019
2020 table = gpiod_find_lookup_table(dev);
2021 if (!table)
2022 return -ENOENT;
2023
2024 for (p = &table->table[0]; p->chip_label; p++) {
2025 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
2026 (!con_id && !p->con_id))
2027 count++;
2028 }
2029 if (!count)
2030 return -ENOENT;
2031
2032 return count;
2033}
2034
2035/**
2036 * gpiod_count - return the number of GPIOs associated with a device / function
2037 * or -ENOENT if no GPIO has been assigned to the requested function
2038 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2039 * @con_id: function within the GPIO consumer
2040 */
2041int gpiod_count(struct device *dev, const char *con_id)
2042{
2043 int count = -ENOENT;
2044
2045 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
2046 count = dt_gpio_count(dev, con_id);
2047 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
2048 count = acpi_gpio_count(dev, con_id);
2049
2050 if (count < 0)
2051 count = platform_gpio_count(dev, con_id);
2052
2053 return count;
2054}
2055EXPORT_SYMBOL_GPL(gpiod_count);
2056
bae48da2 2057/**
0879162f 2058 * gpiod_get - obtain a GPIO for a given GPIO function
ad824783 2059 * @dev: GPIO consumer, can be NULL for system-global GPIOs
bae48da2 2060 * @con_id: function within the GPIO consumer
39b2bbe3 2061 * @flags: optional GPIO initialization flags
bae48da2
AC
2062 *
2063 * Return the GPIO descriptor corresponding to the function con_id of device
2a3cf6a3 2064 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
20a8a968 2065 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
bae48da2 2066 */
b17d1bf1 2067struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
39b2bbe3 2068 enum gpiod_flags flags)
bae48da2 2069{
39b2bbe3 2070 return gpiod_get_index(dev, con_id, 0, flags);
bae48da2 2071}
b17d1bf1 2072EXPORT_SYMBOL_GPL(gpiod_get);
bae48da2 2073
29a1f233
TR
2074/**
2075 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
2076 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2077 * @con_id: function within the GPIO consumer
39b2bbe3 2078 * @flags: optional GPIO initialization flags
29a1f233
TR
2079 *
2080 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
2081 * the requested function it will return NULL. This is convenient for drivers
2082 * that need to handle optional GPIOs.
2083 */
b17d1bf1 2084struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
39b2bbe3
AC
2085 const char *con_id,
2086 enum gpiod_flags flags)
29a1f233 2087{
39b2bbe3 2088 return gpiod_get_index_optional(dev, con_id, 0, flags);
29a1f233 2089}
b17d1bf1 2090EXPORT_SYMBOL_GPL(gpiod_get_optional);
29a1f233 2091
923b93e4
LP
2092/**
2093 * gpiod_parse_flags - helper function to parse GPIO lookup flags
2094 * @desc: gpio to be setup
2095 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2096 * of_get_gpio_hog()
2097 *
2098 * Set the GPIO descriptor flags based on the given GPIO lookup flags.
2099 */
2100static void gpiod_parse_flags(struct gpio_desc *desc, unsigned long lflags)
2101{
2102 if (lflags & GPIO_ACTIVE_LOW)
2103 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2104 if (lflags & GPIO_OPEN_DRAIN)
2105 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
2106 if (lflags & GPIO_OPEN_SOURCE)
2107 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
2108}
f625d460
BP
2109
2110/**
2111 * gpiod_configure_flags - helper function to configure a given GPIO
2112 * @desc: gpio whose value will be assigned
2113 * @con_id: function within the GPIO consumer
f625d460
BP
2114 * @dflags: gpiod_flags - optional GPIO initialization flags
2115 *
2116 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
2117 * requested function and/or index, or another IS_ERR() code if an error
2118 * occurred while trying to acquire the GPIO.
2119 */
2120static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
923b93e4 2121 enum gpiod_flags dflags)
f625d460
BP
2122{
2123 int status;
2124
f625d460
BP
2125 /* No particular flag request, return here... */
2126 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
2127 pr_debug("no flags found for %s\n", con_id);
2128 return 0;
2129 }
2130
2131 /* Process flags */
2132 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
2133 status = gpiod_direction_output(desc,
2134 dflags & GPIOD_FLAGS_BIT_DIR_VAL);
2135 else
2136 status = gpiod_direction_input(desc);
2137
2138 return status;
2139}
2140
bae48da2
AC
2141/**
2142 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
fdd6a5fe 2143 * @dev: GPIO consumer, can be NULL for system-global GPIOs
bae48da2
AC
2144 * @con_id: function within the GPIO consumer
2145 * @idx: index of the GPIO to obtain in the consumer
39b2bbe3 2146 * @flags: optional GPIO initialization flags
bae48da2
AC
2147 *
2148 * This variant of gpiod_get() allows to access GPIOs other than the first
2149 * defined one for functions that define several GPIOs.
2150 *
2a3cf6a3
AC
2151 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
2152 * requested function and/or index, or another IS_ERR() code if an error
20a8a968 2153 * occurred while trying to acquire the GPIO.
bae48da2 2154 */
b17d1bf1 2155struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
bae48da2 2156 const char *con_id,
39b2bbe3
AC
2157 unsigned int idx,
2158 enum gpiod_flags flags)
bae48da2 2159{
35c5d7fd 2160 struct gpio_desc *desc = NULL;
bae48da2 2161 int status;
39b2bbe3 2162 enum gpio_lookup_flags lookupflags = 0;
bae48da2
AC
2163
2164 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
2165
4d8440b9
RW
2166 if (dev) {
2167 /* Using device tree? */
2168 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
2169 dev_dbg(dev, "using device tree for GPIO lookup\n");
2170 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
2171 } else if (ACPI_COMPANION(dev)) {
2172 dev_dbg(dev, "using ACPI for GPIO lookup\n");
2173 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags);
2174 }
35c5d7fd
AC
2175 }
2176
2177 /*
2178 * Either we are not using DT or ACPI, or their lookup did not return
2179 * a result. In that case, use platform lookup as a fallback.
2180 */
2a3cf6a3 2181 if (!desc || desc == ERR_PTR(-ENOENT)) {
43a8785a 2182 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
39b2bbe3 2183 desc = gpiod_find(dev, con_id, idx, &lookupflags);
bae48da2
AC
2184 }
2185
2186 if (IS_ERR(desc)) {
351cfe0f 2187 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
bae48da2
AC
2188 return desc;
2189 }
2190
923b93e4
LP
2191 gpiod_parse_flags(desc, lookupflags);
2192
bae48da2 2193 status = gpiod_request(desc, con_id);
bae48da2
AC
2194 if (status < 0)
2195 return ERR_PTR(status);
2196
923b93e4 2197 status = gpiod_configure_flags(desc, con_id, flags);
39b2bbe3
AC
2198 if (status < 0) {
2199 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
2200 gpiod_put(desc);
2201 return ERR_PTR(status);
2202 }
2203
bae48da2
AC
2204 return desc;
2205}
b17d1bf1 2206EXPORT_SYMBOL_GPL(gpiod_get_index);
bae48da2 2207
40b73183
MW
2208/**
2209 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
2210 * @fwnode: handle of the firmware node
2211 * @propname: name of the firmware property representing the GPIO
2212 *
2213 * This function can be used for drivers that get their configuration
2214 * from firmware.
2215 *
2216 * Function properly finds the corresponding GPIO using whatever is the
2217 * underlying firmware interface and then makes sure that the GPIO
2218 * descriptor is requested before it is returned to the caller.
2219 *
2220 * In case of error an ERR_PTR() is returned.
2221 */
2222struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
2223 const char *propname)
2224{
2225 struct gpio_desc *desc = ERR_PTR(-ENODEV);
2226 bool active_low = false;
90b665f6 2227 bool single_ended = false;
40b73183
MW
2228 int ret;
2229
2230 if (!fwnode)
2231 return ERR_PTR(-EINVAL);
2232
2233 if (is_of_node(fwnode)) {
2234 enum of_gpio_flags flags;
2235
c181fb3e 2236 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
40b73183 2237 &flags);
90b665f6 2238 if (!IS_ERR(desc)) {
40b73183 2239 active_low = flags & OF_GPIO_ACTIVE_LOW;
90b665f6
LP
2240 single_ended = flags & OF_GPIO_SINGLE_ENDED;
2241 }
40b73183
MW
2242 } else if (is_acpi_node(fwnode)) {
2243 struct acpi_gpio_info info;
2244
504a3374 2245 desc = acpi_node_get_gpiod(fwnode, propname, 0, &info);
40b73183
MW
2246 if (!IS_ERR(desc))
2247 active_low = info.active_low;
2248 }
2249
2250 if (IS_ERR(desc))
2251 return desc;
2252
40b73183
MW
2253 if (active_low)
2254 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2255
90b665f6
LP
2256 if (single_ended) {
2257 if (active_low)
2258 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
2259 else
2260 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
2261 }
2262
923b93e4
LP
2263 ret = gpiod_request(desc, NULL);
2264 if (ret)
2265 return ERR_PTR(ret);
2266
40b73183
MW
2267 return desc;
2268}
2269EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
2270
29a1f233
TR
2271/**
2272 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
2273 * function
2274 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2275 * @con_id: function within the GPIO consumer
2276 * @index: index of the GPIO to obtain in the consumer
39b2bbe3 2277 * @flags: optional GPIO initialization flags
29a1f233
TR
2278 *
2279 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
2280 * specified index was assigned to the requested function it will return NULL.
2281 * This is convenient for drivers that need to handle optional GPIOs.
2282 */
b17d1bf1 2283struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
29a1f233 2284 const char *con_id,
39b2bbe3
AC
2285 unsigned int index,
2286 enum gpiod_flags flags)
29a1f233
TR
2287{
2288 struct gpio_desc *desc;
2289
39b2bbe3 2290 desc = gpiod_get_index(dev, con_id, index, flags);
29a1f233
TR
2291 if (IS_ERR(desc)) {
2292 if (PTR_ERR(desc) == -ENOENT)
2293 return NULL;
2294 }
2295
2296 return desc;
2297}
b17d1bf1 2298EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
29a1f233 2299
f625d460
BP
2300/**
2301 * gpiod_hog - Hog the specified GPIO desc given the provided flags
2302 * @desc: gpio whose value will be assigned
2303 * @name: gpio line name
2304 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2305 * of_get_gpio_hog()
2306 * @dflags: gpiod_flags - optional GPIO initialization flags
2307 */
2308int gpiod_hog(struct gpio_desc *desc, const char *name,
2309 unsigned long lflags, enum gpiod_flags dflags)
2310{
2311 struct gpio_chip *chip;
2312 struct gpio_desc *local_desc;
2313 int hwnum;
2314 int status;
2315
2316 chip = gpiod_to_chip(desc);
2317 hwnum = gpio_chip_hwgpio(desc);
2318
923b93e4
LP
2319 gpiod_parse_flags(desc, lflags);
2320
f625d460
BP
2321 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
2322 if (IS_ERR(local_desc)) {
a713890d
LW
2323 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed\n",
2324 name, chip->label, hwnum);
f625d460
BP
2325 return PTR_ERR(local_desc);
2326 }
2327
923b93e4 2328 status = gpiod_configure_flags(desc, name, dflags);
f625d460 2329 if (status < 0) {
a713890d
LW
2330 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed\n",
2331 name, chip->label, hwnum);
f625d460
BP
2332 gpiochip_free_own_desc(desc);
2333 return status;
2334 }
2335
2336 /* Mark GPIO as hogged so it can be identified and removed later */
2337 set_bit(FLAG_IS_HOGGED, &desc->flags);
2338
2339 pr_info("GPIO line %d (%s) hogged as %s%s\n",
2340 desc_to_gpio(desc), name,
2341 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
2342 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
2343 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
2344
2345 return 0;
2346}
2347
2348/**
2349 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
2350 * @chip: gpio chip to act on
2351 *
2352 * This is only used by of_gpiochip_remove to free hogged gpios
2353 */
2354static void gpiochip_free_hogs(struct gpio_chip *chip)
2355{
2356 int id;
2357
2358 for (id = 0; id < chip->ngpio; id++) {
2359 if (test_bit(FLAG_IS_HOGGED, &chip->desc[id].flags))
2360 gpiochip_free_own_desc(&chip->desc[id]);
2361 }
2362}
2363
66858527
RI
2364/**
2365 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
2366 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2367 * @con_id: function within the GPIO consumer
2368 * @flags: optional GPIO initialization flags
2369 *
2370 * This function acquires all the GPIOs defined under a given function.
2371 *
2372 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
2373 * no GPIO has been assigned to the requested function, or another IS_ERR()
2374 * code if an error occurred while trying to acquire the GPIOs.
2375 */
2376struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
2377 const char *con_id,
2378 enum gpiod_flags flags)
2379{
2380 struct gpio_desc *desc;
2381 struct gpio_descs *descs;
2382 int count;
2383
2384 count = gpiod_count(dev, con_id);
2385 if (count < 0)
2386 return ERR_PTR(count);
2387
2388 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
2389 GFP_KERNEL);
2390 if (!descs)
2391 return ERR_PTR(-ENOMEM);
2392
2393 for (descs->ndescs = 0; descs->ndescs < count; ) {
2394 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
2395 if (IS_ERR(desc)) {
2396 gpiod_put_array(descs);
2397 return ERR_CAST(desc);
2398 }
2399 descs->desc[descs->ndescs] = desc;
2400 descs->ndescs++;
2401 }
2402 return descs;
2403}
2404EXPORT_SYMBOL_GPL(gpiod_get_array);
2405
2406/**
2407 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
2408 * function
2409 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2410 * @con_id: function within the GPIO consumer
2411 * @flags: optional GPIO initialization flags
2412 *
2413 * This is equivalent to gpiod_get_array(), except that when no GPIO was
2414 * assigned to the requested function it will return NULL.
2415 */
2416struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
2417 const char *con_id,
2418 enum gpiod_flags flags)
2419{
2420 struct gpio_descs *descs;
2421
2422 descs = gpiod_get_array(dev, con_id, flags);
2423 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
2424 return NULL;
2425
2426 return descs;
2427}
2428EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
2429
bae48da2
AC
2430/**
2431 * gpiod_put - dispose of a GPIO descriptor
2432 * @desc: GPIO descriptor to dispose of
2433 *
2434 * No descriptor can be used after gpiod_put() has been called on it.
2435 */
2436void gpiod_put(struct gpio_desc *desc)
2437{
2438 gpiod_free(desc);
372e722e 2439}
bae48da2 2440EXPORT_SYMBOL_GPL(gpiod_put);
d2876d08 2441
66858527
RI
2442/**
2443 * gpiod_put_array - dispose of multiple GPIO descriptors
2444 * @descs: struct gpio_descs containing an array of descriptors
2445 */
2446void gpiod_put_array(struct gpio_descs *descs)
2447{
2448 unsigned int i;
2449
2450 for (i = 0; i < descs->ndescs; i++)
2451 gpiod_put(descs->desc[i]);
2452
2453 kfree(descs);
2454}
2455EXPORT_SYMBOL_GPL(gpiod_put_array);
2456
d2876d08
DB
2457#ifdef CONFIG_DEBUG_FS
2458
d2876d08
DB
2459static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
2460{
2461 unsigned i;
2462 unsigned gpio = chip->base;
6c0b4e6c 2463 struct gpio_desc *gdesc = &chip->desc[0];
d2876d08 2464 int is_out;
d468bf9e 2465 int is_irq;
d2876d08
DB
2466
2467 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
ced433e2
MP
2468 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
2469 if (gdesc->name) {
2470 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
2471 gpio, gdesc->name);
2472 }
d2876d08 2473 continue;
ced433e2 2474 }
d2876d08 2475
372e722e 2476 gpiod_get_direction(gdesc);
d2876d08 2477 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
d468bf9e 2478 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
ced433e2
MP
2479 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
2480 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
d2876d08
DB
2481 is_out ? "out" : "in ",
2482 chip->get
2483 ? (chip->get(chip, i) ? "hi" : "lo")
d468bf9e
LW
2484 : "? ",
2485 is_irq ? "IRQ" : " ");
d2876d08
DB
2486 seq_printf(s, "\n");
2487 }
2488}
2489
f9c4a31f 2490static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
d2876d08 2491{
362432ae 2492 unsigned long flags;
f9c4a31f 2493 struct gpio_chip *chip = NULL;
cb1650d4 2494 loff_t index = *pos;
d2876d08 2495
f9c4a31f 2496 s->private = "";
d2876d08 2497
362432ae 2498 spin_lock_irqsave(&gpio_lock, flags);
cb1650d4 2499 list_for_each_entry(chip, &gpio_chips, list)
362432ae
GL
2500 if (index-- == 0) {
2501 spin_unlock_irqrestore(&gpio_lock, flags);
cb1650d4 2502 return chip;
f9c4a31f 2503 }
362432ae 2504 spin_unlock_irqrestore(&gpio_lock, flags);
f9c4a31f 2505
cb1650d4 2506 return NULL;
f9c4a31f
TR
2507}
2508
2509static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
2510{
362432ae 2511 unsigned long flags;
f9c4a31f 2512 struct gpio_chip *chip = v;
f9c4a31f
TR
2513 void *ret = NULL;
2514
362432ae 2515 spin_lock_irqsave(&gpio_lock, flags);
cb1650d4
AC
2516 if (list_is_last(&chip->list, &gpio_chips))
2517 ret = NULL;
2518 else
2519 ret = list_entry(chip->list.next, struct gpio_chip, list);
362432ae 2520 spin_unlock_irqrestore(&gpio_lock, flags);
f9c4a31f
TR
2521
2522 s->private = "\n";
2523 ++*pos;
2524
2525 return ret;
2526}
2527
2528static void gpiolib_seq_stop(struct seq_file *s, void *v)
2529{
2530}
2531
2532static int gpiolib_seq_show(struct seq_file *s, void *v)
2533{
2534 struct gpio_chip *chip = v;
2535 struct device *dev;
2536
2537 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private,
2538 chip->base, chip->base + chip->ngpio - 1);
58383c78 2539 dev = chip->parent;
f9c4a31f
TR
2540 if (dev)
2541 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus",
2542 dev_name(dev));
2543 if (chip->label)
2544 seq_printf(s, ", %s", chip->label);
2545 if (chip->can_sleep)
2546 seq_printf(s, ", can sleep");
2547 seq_printf(s, ":\n");
2548
2549 if (chip->dbg_show)
2550 chip->dbg_show(s, chip);
2551 else
2552 gpiolib_dbg_show(s, chip);
2553
d2876d08
DB
2554 return 0;
2555}
2556
f9c4a31f
TR
2557static const struct seq_operations gpiolib_seq_ops = {
2558 .start = gpiolib_seq_start,
2559 .next = gpiolib_seq_next,
2560 .stop = gpiolib_seq_stop,
2561 .show = gpiolib_seq_show,
2562};
2563
d2876d08
DB
2564static int gpiolib_open(struct inode *inode, struct file *file)
2565{
f9c4a31f 2566 return seq_open(file, &gpiolib_seq_ops);
d2876d08
DB
2567}
2568
828c0950 2569static const struct file_operations gpiolib_operations = {
f9c4a31f 2570 .owner = THIS_MODULE,
d2876d08
DB
2571 .open = gpiolib_open,
2572 .read = seq_read,
2573 .llseek = seq_lseek,
f9c4a31f 2574 .release = seq_release,
d2876d08
DB
2575};
2576
2577static int __init gpiolib_debugfs_init(void)
2578{
2579 /* /sys/kernel/debug/gpio */
2580 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
2581 NULL, NULL, &gpiolib_operations);
2582 return 0;
2583}
2584subsys_initcall(gpiolib_debugfs_init);
2585
2586#endif /* DEBUG_FS */
This page took 0.699768 seconds and 5 git commands to generate.