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