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