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