blob: d9074191edef4da533d27673660e6f357df32fe7 [file] [log] [blame]
Linus Walleijdae5f0a2018-09-25 09:08:48 +02001// SPDX-License-Identifier: GPL-2.0
Andy Shevchenko923a6542017-05-25 16:08:38 +03002#include <linux/bitmap.h>
David Brownelld2876d02008-02-04 22:28:20 -08003#include <linux/kernel.h>
4#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07005#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08006#include <linux/irq.h>
7#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09008#include <linux/list.h>
David Brownelld8f388d82008-07-25 01:46:07 -07009#include <linux/device.h>
10#include <linux/err.h>
11#include <linux/debugfs.h>
12#include <linux/seq_file.h>
13#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060014#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070015#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010017#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090018#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020019#include <linux/gpio/machine.h>
Jonas Gorskic771c2f2015-10-11 17:34:15 +020020#include <linux/pinctrl/consumer.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020021#include <linux/cdev.h>
22#include <linux/fs.h>
23#include <linux/uaccess.h>
Linus Walleij8b92e172016-05-27 14:24:04 +020024#include <linux/compat.h>
Linus Walleijd7c51b42016-04-26 10:35:29 +020025#include <linux/anon_inodes.h>
Lars-Peter Clausen953b9562016-10-24 13:59:15 +020026#include <linux/file.h>
Linus Walleij61f922d2016-06-02 11:30:15 +020027#include <linux/kfifo.h>
28#include <linux/poll.h>
29#include <linux/timekeeping.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020030#include <uapi/linux/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080031
Mika Westerberg664e3e52014-01-08 12:40:54 +020032#include "gpiolib.h"
33
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060034#define CREATE_TRACE_POINTS
35#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080036
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070037/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080038 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070039 * The GPIO programming interface allows for inlining speed-critical
40 * get/set operations for common cases, so that access to SOC-integrated
41 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080042 */
43
44
45/* When debugging, extend minimal trust to callers and platform code.
46 * Also emit diagnostic messages that may help initial bringup, when
47 * board setup or driver bugs are most common.
48 *
49 * Otherwise, minimize overhead in what may be bitbanging codepaths.
50 */
51#ifdef DEBUG
52#define extra_checks 1
53#else
54#define extra_checks 0
55#endif
56
Linus Walleijff2b1352015-10-20 11:10:38 +020057/* Device and char device-related information */
58static DEFINE_IDA(gpio_ida);
Linus Walleij3c702e92015-10-21 15:29:53 +020059static dev_t gpio_devt;
60#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
61static struct bus_type gpio_bus_type = {
62 .name = "gpio",
63};
Linus Walleijff2b1352015-10-20 11:10:38 +020064
Laura Abbott30277432018-05-21 10:57:07 -070065/*
66 * Number of GPIOs to use for the fast path in set array
67 */
68#define FASTPATH_NGPIO CONFIG_GPIOLIB_FASTPATH_LIMIT
69
David Brownelld2876d02008-02-04 22:28:20 -080070/* 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 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090074DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080075
Alexandre Courbotbae48da2013-10-17 10:21:38 -070076static DEFINE_MUTEX(gpio_lookup_lock);
77static LIST_HEAD(gpio_lookup_list);
Linus Walleijff2b1352015-10-20 11:10:38 +020078LIST_HEAD(gpio_devices);
Johan Hovold6d867502015-05-04 17:23:25 +020079
Bartosz Golaszewskia411e812018-04-10 22:30:28 +020080static DEFINE_MUTEX(gpio_machine_hogs_mutex);
81static LIST_HEAD(gpio_machine_hogs);
82
Johan Hovold6d867502015-05-04 17:23:25 +020083static void gpiochip_free_hogs(struct gpio_chip *chip);
Thierry Reding959bc7b2017-11-07 19:15:59 +010084static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +010085 struct lock_class_key *lock_key,
86 struct lock_class_key *request_key);
Johan Hovold6d867502015-05-04 17:23:25 +020087static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
Mika Westerberg79b804c2016-09-20 15:15:21 +030088static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
89static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
Johan Hovold6d867502015-05-04 17:23:25 +020090
Guenter Roeck159f3cd2016-03-31 08:11:30 -070091static bool gpiolib_initialized;
Johan Hovold6d867502015-05-04 17:23:25 +020092
David Brownelld2876d02008-02-04 22:28:20 -080093static inline void desc_set_label(struct gpio_desc *d, const char *label)
94{
David Brownelld2876d02008-02-04 22:28:20 -080095 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080096}
97
Alexandre Courbot372e7222013-02-03 01:29:29 +090098/**
Thierry Reding950d55f52017-07-24 16:57:22 +020099 * gpio_to_desc - Convert a GPIO number to its descriptor
100 * @gpio: global GPIO number
101 *
102 * Returns:
103 * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO
104 * with the given number exists in the system.
Alexandre Courbot372e7222013-02-03 01:29:29 +0900105 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700106struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900107{
Linus Walleijff2b1352015-10-20 11:10:38 +0200108 struct gpio_device *gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900109 unsigned long flags;
110
111 spin_lock_irqsave(&gpio_lock, flags);
112
Linus Walleijff2b1352015-10-20 11:10:38 +0200113 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100114 if (gdev->base <= gpio &&
115 gdev->base + gdev->ngpio > gpio) {
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900116 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100117 return &gdev->descs[gpio - gdev->base];
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900118 }
119 }
120
121 spin_unlock_irqrestore(&gpio_lock, flags);
122
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +0900123 if (!gpio_is_valid(gpio))
124 WARN(1, "invalid GPIO %d\n", gpio);
125
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900126 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900127}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700128EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900129
130/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200131 * gpiochip_get_desc - get the GPIO descriptor corresponding to the given
132 * hardware number for this chip
133 * @chip: GPIO chip
134 * @hwnum: hardware number of the GPIO for this chip
135 *
136 * Returns:
137 * A pointer to the GPIO descriptor or %ERR_PTR(-EINVAL) if no GPIO exists
138 * in the given chip for the specified hardware number.
Linus Walleijd468bf92013-09-24 11:54:38 +0200139 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900140struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
141 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +0200142{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100143 struct gpio_device *gdev = chip->gpiodev;
144
145 if (hwnum >= gdev->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +0900146 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +0200147
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100148 return &gdev->descs[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200149}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900150
151/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200152 * desc_to_gpio - convert a GPIO descriptor to the integer namespace
153 * @desc: GPIO descriptor
154 *
Alexandre Courbot372e7222013-02-03 01:29:29 +0900155 * This should disappear in the future but is needed since we still
Thierry Reding950d55f52017-07-24 16:57:22 +0200156 * use GPIO numbers for error messages and sysfs nodes.
157 *
158 * Returns:
159 * The global GPIO number for the GPIO specified by its descriptor.
Alexandre Courbot372e7222013-02-03 01:29:29 +0900160 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700161int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900162{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100163 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900164}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700165EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900166
167
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700168/**
169 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
170 * @desc: descriptor to return the chip of
171 */
172struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900173{
Vladimir Zapolskiydd3b9a42017-12-21 18:37:30 +0200174 if (!desc || !desc->gdev)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100175 return NULL;
176 return desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900177}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700178EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800179
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700180/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
181static int gpiochip_find_base(int ngpio)
182{
Linus Walleijff2b1352015-10-20 11:10:38 +0200183 struct gpio_device *gdev;
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900184 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700185
Linus Walleijff2b1352015-10-20 11:10:38 +0200186 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900187 /* found a free space? */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100188 if (gdev->base + gdev->ngpio <= base)
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900189 break;
190 else
191 /* nope, check the space right before the chip */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100192 base = gdev->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700193 }
194
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900195 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700196 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900197 return base;
198 } else {
199 pr_err("%s: cannot find free range\n", __func__);
200 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700201 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700202}
203
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700204/**
205 * gpiod_get_direction - return the current direction of a GPIO
206 * @desc: GPIO to get the direction of
207 *
Wolfram Sang94fc7302018-01-09 12:35:53 +0100208 * Returns 0 for output, 1 for input, or an error code in case of error.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700209 *
210 * This function may sleep if gpiod_cansleep() is true.
211 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900212int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300213{
Wolfram Sangd0121b82018-07-11 18:33:19 +0200214 struct gpio_chip *chip;
215 unsigned offset;
216 int status;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300217
Alexandre Courbot372e7222013-02-03 01:29:29 +0900218 chip = gpiod_to_chip(desc);
219 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300220
221 if (!chip->get_direction)
Wolfram Sangd0121b82018-07-11 18:33:19 +0200222 return -ENOTSUPP;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300223
Alexandre Courbot372e7222013-02-03 01:29:29 +0900224 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300225 if (status > 0) {
226 /* GPIOF_DIR_IN, or other positive */
227 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900228 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300229 }
230 if (status == 0) {
231 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900232 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300233 }
234 return status;
235}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700236EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300237
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900238/*
239 * Add a new chip to the global chips list, keeping the list of chips sorted
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800240 * by range(means [base, base + ngpio - 1]) order.
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900241 *
242 * Return -EBUSY if the new chip overlaps with some other chip's integer
243 * space.
244 */
Linus Walleijff2b1352015-10-20 11:10:38 +0200245static int gpiodev_add_to_list(struct gpio_device *gdev)
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900246{
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800247 struct gpio_device *prev, *next;
Linus Walleijff2b1352015-10-20 11:10:38 +0200248
249 if (list_empty(&gpio_devices)) {
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800250 /* initial entry in list */
Linus Walleijff2b1352015-10-20 11:10:38 +0200251 list_add_tail(&gdev->list, &gpio_devices);
Sudip Mukherjeee28ecca2015-12-27 19:06:50 +0530252 return 0;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900253 }
254
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800255 next = list_entry(gpio_devices.next, struct gpio_device, list);
256 if (gdev->base + gdev->ngpio <= next->base) {
257 /* add before first entry */
258 list_add(&gdev->list, &gpio_devices);
Julien Grossholtz96098df2016-01-07 16:46:45 -0500259 return 0;
260 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900261
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800262 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
263 if (prev->base + prev->ngpio <= gdev->base) {
264 /* add behind last entry */
265 list_add_tail(&gdev->list, &gpio_devices);
266 return 0;
267 }
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800268
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800269 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
270 /* at the end of the list */
271 if (&next->list == &gpio_devices)
272 break;
273
274 /* add between prev and next */
275 if (prev->base + prev->ngpio <= gdev->base
276 && gdev->base + gdev->ngpio <= next->base) {
277 list_add(&gdev->list, &prev->list);
278 return 0;
279 }
280 }
281
282 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
283 return -EBUSY;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900284}
285
Thierry Reding950d55f52017-07-24 16:57:22 +0200286/*
Linus Walleijf881bab02015-09-23 16:20:43 -0700287 * Convert a GPIO name to its descriptor
288 */
289static struct gpio_desc *gpio_name_to_desc(const char * const name)
290{
Linus Walleijff2b1352015-10-20 11:10:38 +0200291 struct gpio_device *gdev;
Linus Walleijf881bab02015-09-23 16:20:43 -0700292 unsigned long flags;
293
294 spin_lock_irqsave(&gpio_lock, flags);
295
Linus Walleijff2b1352015-10-20 11:10:38 +0200296 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700297 int i;
298
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100299 for (i = 0; i != gdev->ngpio; ++i) {
300 struct gpio_desc *desc = &gdev->descs[i];
Linus Walleijf881bab02015-09-23 16:20:43 -0700301
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100302 if (!desc->name || !name)
Linus Walleijf881bab02015-09-23 16:20:43 -0700303 continue;
304
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100305 if (!strcmp(desc->name, name)) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700306 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100307 return desc;
Linus Walleijf881bab02015-09-23 16:20:43 -0700308 }
309 }
310 }
311
312 spin_unlock_irqrestore(&gpio_lock, flags);
313
314 return NULL;
315}
316
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200317/*
318 * Takes the names from gc->names and checks if they are all unique. If they
319 * are, they are assigned to their gpio descriptors.
320 *
Bamvor Jian Zhanged379152015-11-14 16:43:20 +0800321 * Warning if one of the names is already used for a different GPIO.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200322 */
323static int gpiochip_set_desc_names(struct gpio_chip *gc)
324{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100325 struct gpio_device *gdev = gc->gpiodev;
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200326 int i;
327
328 if (!gc->names)
329 return 0;
330
331 /* First check all names if they are unique */
332 for (i = 0; i != gc->ngpio; ++i) {
333 struct gpio_desc *gpio;
334
335 gpio = gpio_name_to_desc(gc->names[i]);
Linus Walleijf881bab02015-09-23 16:20:43 -0700336 if (gpio)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100337 dev_warn(&gdev->dev,
Linus Walleij34ffd852015-10-20 11:31:54 +0200338 "Detected name collision for GPIO name '%s'\n",
Linus Walleijf881bab02015-09-23 16:20:43 -0700339 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200340 }
341
342 /* Then add all names to the GPIO descriptors */
343 for (i = 0; i != gc->ngpio; ++i)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100344 gdev->descs[i].name = gc->names[i];
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200345
346 return 0;
347}
348
Stephen Boyde4371f6e2018-03-23 09:34:50 -0700349static unsigned long *gpiochip_allocate_mask(struct gpio_chip *chip)
350{
351 unsigned long *p;
352
Stephen Boydace569352018-03-23 09:34:51 -0700353 p = kmalloc_array(BITS_TO_LONGS(chip->ngpio), sizeof(*p), GFP_KERNEL);
Stephen Boyde4371f6e2018-03-23 09:34:50 -0700354 if (!p)
355 return NULL;
356
357 /* Assume by default all GPIOs are valid */
358 bitmap_fill(p, chip->ngpio);
359
360 return p;
361}
362
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +0200363static int gpiochip_alloc_valid_mask(struct gpio_chip *gpiochip)
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700364{
365#ifdef CONFIG_OF_GPIO
366 int size;
367 struct device_node *np = gpiochip->of_node;
368
369 size = of_property_count_u32_elems(np, "gpio-reserved-ranges");
370 if (size > 0 && size % 2 == 0)
371 gpiochip->need_valid_mask = true;
372#endif
373
374 if (!gpiochip->need_valid_mask)
375 return 0;
376
377 gpiochip->valid_mask = gpiochip_allocate_mask(gpiochip);
378 if (!gpiochip->valid_mask)
379 return -ENOMEM;
380
381 return 0;
382}
383
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +0200384static int gpiochip_init_valid_mask(struct gpio_chip *gpiochip)
385{
386 if (gpiochip->init_valid_mask)
387 return gpiochip->init_valid_mask(gpiochip);
388
389 return 0;
390}
391
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700392static void gpiochip_free_valid_mask(struct gpio_chip *gpiochip)
393{
394 kfree(gpiochip->valid_mask);
395 gpiochip->valid_mask = NULL;
396}
397
398bool gpiochip_line_is_valid(const struct gpio_chip *gpiochip,
399 unsigned int offset)
400{
401 /* No mask means all valid */
402 if (likely(!gpiochip->valid_mask))
403 return true;
404 return test_bit(offset, gpiochip->valid_mask);
405}
406EXPORT_SYMBOL_GPL(gpiochip_line_is_valid);
407
Linus Walleijd7c51b42016-04-26 10:35:29 +0200408/*
409 * GPIO line handle management
410 */
411
412/**
413 * struct linehandle_state - contains the state of a userspace handle
414 * @gdev: the GPIO device the handle pertains to
415 * @label: consumer label used to tag descriptors
416 * @descs: the GPIO descriptors held by this handle
417 * @numdescs: the number of descriptors held in the descs array
418 */
419struct linehandle_state {
420 struct gpio_device *gdev;
421 const char *label;
422 struct gpio_desc *descs[GPIOHANDLES_MAX];
423 u32 numdescs;
424};
425
Lars-Peter Clausene3e847c2016-10-18 16:54:05 +0200426#define GPIOHANDLE_REQUEST_VALID_FLAGS \
427 (GPIOHANDLE_REQUEST_INPUT | \
428 GPIOHANDLE_REQUEST_OUTPUT | \
429 GPIOHANDLE_REQUEST_ACTIVE_LOW | \
430 GPIOHANDLE_REQUEST_OPEN_DRAIN | \
431 GPIOHANDLE_REQUEST_OPEN_SOURCE)
432
Linus Walleijd7c51b42016-04-26 10:35:29 +0200433static long linehandle_ioctl(struct file *filep, unsigned int cmd,
434 unsigned long arg)
435{
436 struct linehandle_state *lh = filep->private_data;
437 void __user *ip = (void __user *)arg;
438 struct gpiohandle_data ghd;
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +0200439 DECLARE_BITMAP(vals, GPIOHANDLES_MAX);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200440 int i;
441
442 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
Bartosz Golaszewski2b955b32018-07-16 10:34:24 +0200443 /* NOTE: It's ok to read values of output lines. */
Lukas Wunnereec1d562017-10-12 12:40:10 +0200444 int ret = gpiod_get_array_value_complex(false,
445 true,
446 lh->numdescs,
447 lh->descs,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +0200448 NULL,
Lukas Wunnereec1d562017-10-12 12:40:10 +0200449 vals);
450 if (ret)
451 return ret;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200452
Lars-Peter Clausen3eded5d2016-10-18 16:54:02 +0200453 memset(&ghd, 0, sizeof(ghd));
Lukas Wunnereec1d562017-10-12 12:40:10 +0200454 for (i = 0; i < lh->numdescs; i++)
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +0200455 ghd.values[i] = test_bit(i, vals);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200456
457 if (copy_to_user(ip, &ghd, sizeof(ghd)))
458 return -EFAULT;
459
460 return 0;
461 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
Bartosz Golaszewskie5332d52018-07-16 10:34:23 +0200462 /*
463 * All line descriptors were created at once with the same
464 * flags so just check if the first one is really output.
465 */
466 if (!test_bit(FLAG_IS_OUT, &lh->descs[0]->flags))
467 return -EPERM;
468
Linus Walleijd7c51b42016-04-26 10:35:29 +0200469 if (copy_from_user(&ghd, ip, sizeof(ghd)))
470 return -EFAULT;
471
472 /* Clamp all values to [0,1] */
473 for (i = 0; i < lh->numdescs; i++)
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +0200474 __assign_bit(i, vals, ghd.values[i]);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200475
476 /* Reuse the array setting function */
Laura Abbott30277432018-05-21 10:57:07 -0700477 return gpiod_set_array_value_complex(false,
Linus Walleijd7c51b42016-04-26 10:35:29 +0200478 true,
479 lh->numdescs,
480 lh->descs,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +0200481 NULL,
Linus Walleijd7c51b42016-04-26 10:35:29 +0200482 vals);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200483 }
484 return -EINVAL;
485}
486
487#ifdef CONFIG_COMPAT
488static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
489 unsigned long arg)
490{
491 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
492}
493#endif
494
495static int linehandle_release(struct inode *inode, struct file *filep)
496{
497 struct linehandle_state *lh = filep->private_data;
498 struct gpio_device *gdev = lh->gdev;
499 int i;
500
501 for (i = 0; i < lh->numdescs; i++)
502 gpiod_free(lh->descs[i]);
503 kfree(lh->label);
504 kfree(lh);
505 put_device(&gdev->dev);
506 return 0;
507}
508
509static const struct file_operations linehandle_fileops = {
510 .release = linehandle_release,
511 .owner = THIS_MODULE,
512 .llseek = noop_llseek,
513 .unlocked_ioctl = linehandle_ioctl,
514#ifdef CONFIG_COMPAT
515 .compat_ioctl = linehandle_ioctl_compat,
516#endif
517};
518
519static int linehandle_create(struct gpio_device *gdev, void __user *ip)
520{
521 struct gpiohandle_request handlereq;
522 struct linehandle_state *lh;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200523 struct file *file;
Timur Tabiab3dbcf2018-03-29 13:29:12 -0500524 int fd, i, count = 0, ret;
Bartosz Golaszewski418ee8e2017-10-16 11:32:29 +0200525 u32 lflags;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200526
527 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
528 return -EFAULT;
529 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
530 return -EINVAL;
531
Bartosz Golaszewski418ee8e2017-10-16 11:32:29 +0200532 lflags = handlereq.flags;
533
534 /* Return an error if an unknown flag is set */
535 if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS)
536 return -EINVAL;
537
Bartosz Golaszewski588fc3b2017-11-15 16:47:43 +0100538 /*
Kent Gibsone95fbc12019-09-09 03:22:18 +0000539 * Do not allow both INPUT & OUTPUT flags to be set as they are
540 * contradictory.
541 */
542 if ((lflags & GPIOHANDLE_REQUEST_INPUT) &&
543 (lflags & GPIOHANDLE_REQUEST_OUTPUT))
544 return -EINVAL;
545
546 /*
Bartosz Golaszewski588fc3b2017-11-15 16:47:43 +0100547 * Do not allow OPEN_SOURCE & OPEN_DRAIN flags in a single request. If
548 * the hardware actually supports enabling both at the same time the
549 * electrical result would be disastrous.
550 */
551 if ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) &&
552 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE))
553 return -EINVAL;
554
Bartosz Golaszewski609aaf62017-10-16 11:32:30 +0200555 /* OPEN_DRAIN and OPEN_SOURCE flags only make sense for output mode. */
556 if (!(lflags & GPIOHANDLE_REQUEST_OUTPUT) &&
557 ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) ||
558 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)))
559 return -EINVAL;
560
Linus Walleijd7c51b42016-04-26 10:35:29 +0200561 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
562 if (!lh)
563 return -ENOMEM;
564 lh->gdev = gdev;
565 get_device(&gdev->dev);
566
567 /* Make sure this is terminated */
568 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
569 if (strlen(handlereq.consumer_label)) {
570 lh->label = kstrdup(handlereq.consumer_label,
571 GFP_KERNEL);
572 if (!lh->label) {
573 ret = -ENOMEM;
574 goto out_free_lh;
575 }
576 }
577
578 /* Request each GPIO */
579 for (i = 0; i < handlereq.lines; i++) {
580 u32 offset = handlereq.lineoffsets[i];
Linus Walleijd7c51b42016-04-26 10:35:29 +0200581 struct gpio_desc *desc;
582
Lars-Peter Clausene405f9f2016-10-18 16:54:01 +0200583 if (offset >= gdev->ngpio) {
584 ret = -EINVAL;
585 goto out_free_descs;
586 }
587
Linus Walleijd7c51b42016-04-26 10:35:29 +0200588 desc = &gdev->descs[offset];
589 ret = gpiod_request(desc, lh->label);
590 if (ret)
591 goto out_free_descs;
592 lh->descs[i] = desc;
Ricardo Ribalda Delgado19a4fbf2018-09-13 15:37:04 +0200593 count = i + 1;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200594
595 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
596 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
597 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
598 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
599 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
600 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
601
Andrew Jefferye10f72b2017-11-30 14:25:24 +1030602 ret = gpiod_set_transitory(desc, false);
603 if (ret < 0)
604 goto out_free_descs;
605
Linus Walleijd7c51b42016-04-26 10:35:29 +0200606 /*
607 * Lines have to be requested explicitly for input
608 * or output, else the line will be treated "as is".
609 */
610 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
611 int val = !!handlereq.default_values[i];
612
613 ret = gpiod_direction_output(desc, val);
614 if (ret)
615 goto out_free_descs;
616 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
617 ret = gpiod_direction_input(desc);
618 if (ret)
619 goto out_free_descs;
620 }
621 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
622 offset);
623 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200624 /* Let i point at the last handle */
625 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200626 lh->numdescs = handlereq.lines;
627
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200628 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200629 if (fd < 0) {
630 ret = fd;
631 goto out_free_descs;
632 }
633
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200634 file = anon_inode_getfile("gpio-linehandle",
635 &linehandle_fileops,
636 lh,
637 O_RDONLY | O_CLOEXEC);
638 if (IS_ERR(file)) {
639 ret = PTR_ERR(file);
640 goto out_put_unused_fd;
641 }
642
Linus Walleijd7c51b42016-04-26 10:35:29 +0200643 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200644 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200645 /*
646 * fput() will trigger the release() callback, so do not go onto
647 * the regular error cleanup path here.
648 */
649 fput(file);
650 put_unused_fd(fd);
651 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200652 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200653
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200654 fd_install(fd, file);
655
Linus Walleijd7c51b42016-04-26 10:35:29 +0200656 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
657 lh->numdescs);
658
659 return 0;
660
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200661out_put_unused_fd:
662 put_unused_fd(fd);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200663out_free_descs:
Timur Tabiab3dbcf2018-03-29 13:29:12 -0500664 for (i = 0; i < count; i++)
Linus Walleijd7c51b42016-04-26 10:35:29 +0200665 gpiod_free(lh->descs[i]);
666 kfree(lh->label);
667out_free_lh:
668 kfree(lh);
669 put_device(&gdev->dev);
670 return ret;
671}
672
Linus Walleij61f922d2016-06-02 11:30:15 +0200673/*
674 * GPIO line event management
675 */
676
677/**
678 * struct lineevent_state - contains the state of a userspace event
679 * @gdev: the GPIO device the event pertains to
680 * @label: consumer label used to tag descriptors
681 * @desc: the GPIO descriptor held by this event
682 * @eflags: the event flags this line was requested with
683 * @irq: the interrupt that trigger in response to events on this GPIO
684 * @wait: wait queue that handles blocking reads of events
685 * @events: KFIFO for the GPIO events
686 * @read_lock: mutex lock to protect reads from colliding with adding
687 * new events to the FIFO
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100688 * @timestamp: cache for the timestamp storing it between hardirq
689 * and IRQ thread, used to bring the timestamp close to the actual
690 * event
Linus Walleij61f922d2016-06-02 11:30:15 +0200691 */
692struct lineevent_state {
693 struct gpio_device *gdev;
694 const char *label;
695 struct gpio_desc *desc;
696 u32 eflags;
697 int irq;
698 wait_queue_head_t wait;
699 DECLARE_KFIFO(events, struct gpioevent_data, 16);
700 struct mutex read_lock;
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100701 u64 timestamp;
Linus Walleij61f922d2016-06-02 11:30:15 +0200702};
703
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200704#define GPIOEVENT_REQUEST_VALID_FLAGS \
705 (GPIOEVENT_REQUEST_RISING_EDGE | \
706 GPIOEVENT_REQUEST_FALLING_EDGE)
707
Al Viroafc9a422017-07-03 06:39:46 -0400708static __poll_t lineevent_poll(struct file *filep,
Linus Walleij61f922d2016-06-02 11:30:15 +0200709 struct poll_table_struct *wait)
710{
711 struct lineevent_state *le = filep->private_data;
Al Viroafc9a422017-07-03 06:39:46 -0400712 __poll_t events = 0;
Linus Walleij61f922d2016-06-02 11:30:15 +0200713
714 poll_wait(filep, &le->wait, wait);
715
716 if (!kfifo_is_empty(&le->events))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800717 events = EPOLLIN | EPOLLRDNORM;
Linus Walleij61f922d2016-06-02 11:30:15 +0200718
719 return events;
720}
721
722
723static ssize_t lineevent_read(struct file *filep,
724 char __user *buf,
725 size_t count,
726 loff_t *f_ps)
727{
728 struct lineevent_state *le = filep->private_data;
729 unsigned int copied;
730 int ret;
731
732 if (count < sizeof(struct gpioevent_data))
733 return -EINVAL;
734
735 do {
736 if (kfifo_is_empty(&le->events)) {
737 if (filep->f_flags & O_NONBLOCK)
738 return -EAGAIN;
739
740 ret = wait_event_interruptible(le->wait,
741 !kfifo_is_empty(&le->events));
742 if (ret)
743 return ret;
744 }
745
746 if (mutex_lock_interruptible(&le->read_lock))
747 return -ERESTARTSYS;
748 ret = kfifo_to_user(&le->events, buf, count, &copied);
749 mutex_unlock(&le->read_lock);
750
751 if (ret)
752 return ret;
753
754 /*
755 * If we couldn't read anything from the fifo (a different
756 * thread might have been faster) we either return -EAGAIN if
757 * the file descriptor is non-blocking, otherwise we go back to
758 * sleep and wait for more data to arrive.
759 */
760 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
761 return -EAGAIN;
762
763 } while (copied == 0);
764
765 return copied;
766}
767
768static int lineevent_release(struct inode *inode, struct file *filep)
769{
770 struct lineevent_state *le = filep->private_data;
771 struct gpio_device *gdev = le->gdev;
772
773 free_irq(le->irq, le);
774 gpiod_free(le->desc);
775 kfree(le->label);
776 kfree(le);
777 put_device(&gdev->dev);
778 return 0;
779}
780
781static long lineevent_ioctl(struct file *filep, unsigned int cmd,
782 unsigned long arg)
783{
784 struct lineevent_state *le = filep->private_data;
785 void __user *ip = (void __user *)arg;
786 struct gpiohandle_data ghd;
787
788 /*
789 * We can get the value for an event line but not set it,
790 * because it is input by definition.
791 */
792 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
793 int val;
794
Lars-Peter Clausend82aa4a2016-10-18 16:54:04 +0200795 memset(&ghd, 0, sizeof(ghd));
796
Linus Walleij61f922d2016-06-02 11:30:15 +0200797 val = gpiod_get_value_cansleep(le->desc);
798 if (val < 0)
799 return val;
800 ghd.values[0] = val;
801
802 if (copy_to_user(ip, &ghd, sizeof(ghd)))
803 return -EFAULT;
804
805 return 0;
806 }
807 return -EINVAL;
808}
809
810#ifdef CONFIG_COMPAT
811static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
812 unsigned long arg)
813{
814 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
815}
816#endif
817
818static const struct file_operations lineevent_fileops = {
819 .release = lineevent_release,
820 .read = lineevent_read,
821 .poll = lineevent_poll,
822 .owner = THIS_MODULE,
823 .llseek = noop_llseek,
824 .unlocked_ioctl = lineevent_ioctl,
825#ifdef CONFIG_COMPAT
826 .compat_ioctl = lineevent_ioctl_compat,
827#endif
828};
829
Ben Dooks33265b12016-06-17 16:03:13 +0100830static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200831{
832 struct lineevent_state *le = p;
833 struct gpioevent_data ge;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200834 int ret;
Linus Walleij61f922d2016-06-02 11:30:15 +0200835
Linus Walleij24bd3ef2018-01-22 13:19:28 +0100836 /* Do not leak kernel stack to userspace */
837 memset(&ge, 0, sizeof(ge));
838
Bartosz Golaszewski1033be52019-01-04 11:24:20 +0100839 /*
840 * We may be running from a nested threaded interrupt in which case
841 * we didn't get the timestamp from lineevent_irq_handler().
842 */
843 if (!le->timestamp)
844 ge.timestamp = ktime_get_real_ns();
845 else
846 ge.timestamp = le->timestamp;
Linus Walleij61f922d2016-06-02 11:30:15 +0200847
Bartosz Golaszewskiad537b82017-06-23 13:45:16 +0200848 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
849 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200850 int level = gpiod_get_value_cansleep(le->desc);
Linus Walleij61f922d2016-06-02 11:30:15 +0200851 if (level)
852 /* Emit low-to-high event */
853 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
854 else
855 /* Emit high-to-low event */
856 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200857 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200858 /* Emit low-to-high event */
859 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200860 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200861 /* Emit high-to-low event */
862 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200863 } else {
864 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200865 }
866
867 ret = kfifo_put(&le->events, ge);
868 if (ret != 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800869 wake_up_poll(&le->wait, EPOLLIN);
Linus Walleij61f922d2016-06-02 11:30:15 +0200870
871 return IRQ_HANDLED;
872}
873
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100874static irqreturn_t lineevent_irq_handler(int irq, void *p)
875{
876 struct lineevent_state *le = p;
877
878 /*
879 * Just store the timestamp in hardirq context so we get it as
880 * close in time as possible to the actual event.
881 */
882 le->timestamp = ktime_get_real_ns();
883
884 return IRQ_WAKE_THREAD;
885}
886
Linus Walleij61f922d2016-06-02 11:30:15 +0200887static int lineevent_create(struct gpio_device *gdev, void __user *ip)
888{
889 struct gpioevent_request eventreq;
890 struct lineevent_state *le;
891 struct gpio_desc *desc;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200892 struct file *file;
Linus Walleij61f922d2016-06-02 11:30:15 +0200893 u32 offset;
894 u32 lflags;
895 u32 eflags;
896 int fd;
897 int ret;
898 int irqflags = 0;
899
900 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
901 return -EFAULT;
902
903 le = kzalloc(sizeof(*le), GFP_KERNEL);
904 if (!le)
905 return -ENOMEM;
906 le->gdev = gdev;
907 get_device(&gdev->dev);
908
909 /* Make sure this is terminated */
910 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
911 if (strlen(eventreq.consumer_label)) {
912 le->label = kstrdup(eventreq.consumer_label,
913 GFP_KERNEL);
914 if (!le->label) {
915 ret = -ENOMEM;
916 goto out_free_le;
917 }
918 }
919
920 offset = eventreq.lineoffset;
921 lflags = eventreq.handleflags;
922 eflags = eventreq.eventflags;
923
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200924 if (offset >= gdev->ngpio) {
925 ret = -EINVAL;
926 goto out_free_label;
927 }
928
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200929 /* Return an error if a unknown flag is set */
930 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
931 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
932 ret = -EINVAL;
933 goto out_free_label;
934 }
935
Linus Walleij61f922d2016-06-02 11:30:15 +0200936 /* This is just wrong: we don't look for events on output lines */
Kent Gibson5ca2f542019-09-09 03:24:06 +0000937 if ((lflags & GPIOHANDLE_REQUEST_OUTPUT) ||
938 (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) ||
939 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200940 ret = -EINVAL;
941 goto out_free_label;
942 }
943
944 desc = &gdev->descs[offset];
945 ret = gpiod_request(desc, le->label);
946 if (ret)
Uwe Kleine-Königf001cc32018-04-16 13:17:53 +0200947 goto out_free_label;
Linus Walleij61f922d2016-06-02 11:30:15 +0200948 le->desc = desc;
949 le->eflags = eflags;
950
951 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
952 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Linus Walleij61f922d2016-06-02 11:30:15 +0200953
954 ret = gpiod_direction_input(desc);
955 if (ret)
956 goto out_free_desc;
957
958 le->irq = gpiod_to_irq(desc);
959 if (le->irq <= 0) {
960 ret = -ENODEV;
961 goto out_free_desc;
962 }
963
964 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
Michael Wu223ecaf2019-07-08 13:23:08 +0800965 irqflags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
966 IRQF_TRIGGER_FALLING : IRQF_TRIGGER_RISING;
Linus Walleij61f922d2016-06-02 11:30:15 +0200967 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
Michael Wu223ecaf2019-07-08 13:23:08 +0800968 irqflags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ?
969 IRQF_TRIGGER_RISING : IRQF_TRIGGER_FALLING;
Linus Walleij61f922d2016-06-02 11:30:15 +0200970 irqflags |= IRQF_ONESHOT;
Linus Walleij61f922d2016-06-02 11:30:15 +0200971
972 INIT_KFIFO(le->events);
973 init_waitqueue_head(&le->wait);
974 mutex_init(&le->read_lock);
975
976 /* Request a thread to read the events */
977 ret = request_threaded_irq(le->irq,
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100978 lineevent_irq_handler,
Linus Walleij61f922d2016-06-02 11:30:15 +0200979 lineevent_irq_thread,
980 irqflags,
981 le->label,
982 le);
983 if (ret)
984 goto out_free_desc;
985
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200986 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleij61f922d2016-06-02 11:30:15 +0200987 if (fd < 0) {
988 ret = fd;
989 goto out_free_irq;
990 }
991
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200992 file = anon_inode_getfile("gpio-event",
993 &lineevent_fileops,
994 le,
995 O_RDONLY | O_CLOEXEC);
996 if (IS_ERR(file)) {
997 ret = PTR_ERR(file);
998 goto out_put_unused_fd;
999 }
1000
Linus Walleij61f922d2016-06-02 11:30:15 +02001001 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +02001002 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +02001003 /*
1004 * fput() will trigger the release() callback, so do not go onto
1005 * the regular error cleanup path here.
1006 */
1007 fput(file);
1008 put_unused_fd(fd);
1009 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +02001010 }
Linus Walleij61f922d2016-06-02 11:30:15 +02001011
Lars-Peter Clausen953b9562016-10-24 13:59:15 +02001012 fd_install(fd, file);
1013
Linus Walleij61f922d2016-06-02 11:30:15 +02001014 return 0;
1015
Lars-Peter Clausen953b9562016-10-24 13:59:15 +02001016out_put_unused_fd:
1017 put_unused_fd(fd);
Linus Walleij61f922d2016-06-02 11:30:15 +02001018out_free_irq:
1019 free_irq(le->irq, le);
1020out_free_desc:
1021 gpiod_free(le->desc);
1022out_free_label:
1023 kfree(le->label);
1024out_free_le:
1025 kfree(le);
1026 put_device(&gdev->dev);
1027 return ret;
1028}
1029
Thierry Reding950d55f52017-07-24 16:57:22 +02001030/*
Linus Walleij3c702e92015-10-21 15:29:53 +02001031 * gpio_ioctl() - ioctl handler for the GPIO chardev
1032 */
1033static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1034{
1035 struct gpio_device *gdev = filp->private_data;
1036 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +02001037 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +02001038
1039 /* We fail any subsequent ioctl():s when the chip is gone */
1040 if (!chip)
1041 return -ENODEV;
1042
Linus Walleij521a2ad2016-02-12 22:25:22 +01001043 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +02001044 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +01001045 struct gpiochip_info chipinfo;
1046
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +02001047 memset(&chipinfo, 0, sizeof(chipinfo));
1048
Linus Walleij3c702e92015-10-21 15:29:53 +02001049 strncpy(chipinfo.name, dev_name(&gdev->dev),
1050 sizeof(chipinfo.name));
1051 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +01001052 strncpy(chipinfo.label, gdev->label,
1053 sizeof(chipinfo.label));
1054 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001055 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +02001056 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
1057 return -EFAULT;
1058 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +01001059 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
1060 struct gpioline_info lineinfo;
1061 struct gpio_desc *desc;
1062
1063 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
1064 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +02001065 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +01001066 return -EINVAL;
1067
1068 desc = &gdev->descs[lineinfo.line_offset];
1069 if (desc->name) {
1070 strncpy(lineinfo.name, desc->name,
1071 sizeof(lineinfo.name));
1072 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
1073 } else {
1074 lineinfo.name[0] = '\0';
1075 }
1076 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +01001077 strncpy(lineinfo.consumer, desc->label,
1078 sizeof(lineinfo.consumer));
1079 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +01001080 } else {
Linus Walleij214338e2016-02-25 21:01:48 +01001081 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +01001082 }
1083
1084 /*
1085 * Userspace only need to know that the kernel is using
1086 * this GPIO so it can't use it.
1087 */
1088 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001089 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
1090 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
1091 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
1092 test_bit(FLAG_EXPORT, &desc->flags) ||
1093 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001094 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001095 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001096 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001097 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001098 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001099 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Bartosz Golaszewski2c60e6b2019-08-06 13:41:51 +02001100 lineinfo.flags |= (GPIOLINE_FLAG_OPEN_DRAIN |
1101 GPIOLINE_FLAG_IS_OUT);
Linus Walleij9d8cc892016-02-22 13:44:53 +01001102 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Bartosz Golaszewski2c60e6b2019-08-06 13:41:51 +02001103 lineinfo.flags |= (GPIOLINE_FLAG_OPEN_SOURCE |
1104 GPIOLINE_FLAG_IS_OUT);
Linus Walleij521a2ad2016-02-12 22:25:22 +01001105
1106 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
1107 return -EFAULT;
1108 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +02001109 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
1110 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +02001111 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
1112 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +02001113 }
1114 return -EINVAL;
1115}
1116
Linus Walleij8b92e172016-05-27 14:24:04 +02001117#ifdef CONFIG_COMPAT
1118static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
1119 unsigned long arg)
1120{
1121 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1122}
1123#endif
1124
Linus Walleij3c702e92015-10-21 15:29:53 +02001125/**
1126 * gpio_chrdev_open() - open the chardev for ioctl operations
1127 * @inode: inode for this chardev
1128 * @filp: file struct for storing private data
1129 * Returns 0 on success
1130 */
1131static int gpio_chrdev_open(struct inode *inode, struct file *filp)
1132{
1133 struct gpio_device *gdev = container_of(inode->i_cdev,
1134 struct gpio_device, chrdev);
1135
1136 /* Fail on open if the backing gpiochip is gone */
Stephen Boydfb505742017-01-09 11:47:44 -08001137 if (!gdev->chip)
Linus Walleij3c702e92015-10-21 15:29:53 +02001138 return -ENODEV;
1139 get_device(&gdev->dev);
1140 filp->private_data = gdev;
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001141
1142 return nonseekable_open(inode, filp);
Linus Walleij3c702e92015-10-21 15:29:53 +02001143}
1144
1145/**
1146 * gpio_chrdev_release() - close chardev after ioctl operations
1147 * @inode: inode for this chardev
1148 * @filp: file struct for storing private data
1149 * Returns 0 on success
1150 */
1151static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1152{
1153 struct gpio_device *gdev = container_of(inode->i_cdev,
1154 struct gpio_device, chrdev);
1155
Linus Walleij3c702e92015-10-21 15:29:53 +02001156 put_device(&gdev->dev);
1157 return 0;
1158}
1159
1160
1161static const struct file_operations gpio_fileops = {
1162 .release = gpio_chrdev_release,
1163 .open = gpio_chrdev_open,
1164 .owner = THIS_MODULE,
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001165 .llseek = no_llseek,
Linus Walleij3c702e92015-10-21 15:29:53 +02001166 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +02001167#ifdef CONFIG_COMPAT
1168 .compat_ioctl = gpio_ioctl_compat,
1169#endif
Linus Walleij3c702e92015-10-21 15:29:53 +02001170};
1171
Linus Walleijff2b1352015-10-20 11:10:38 +02001172static void gpiodevice_release(struct device *dev)
1173{
1174 struct gpio_device *gdev = dev_get_drvdata(dev);
1175
1176 list_del(&gdev->list);
1177 ida_simple_remove(&gpio_ida, gdev->id);
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001178 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001179 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +01001180 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001181}
1182
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001183static int gpiochip_setup_dev(struct gpio_device *gdev)
1184{
1185 int status;
1186
1187 cdev_init(&gdev->chrdev, &gpio_fileops);
1188 gdev->chrdev.owner = THIS_MODULE;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001189 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001190
1191 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001192 if (status)
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001193 return status;
1194
1195 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1196 MAJOR(gpio_devt), gdev->id);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001197
1198 status = gpiochip_sysfs_register(gdev);
1199 if (status)
1200 goto err_remove_device;
1201
1202 /* From this point, the .release() function cleans up gpio_device */
1203 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001204 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1205 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1206 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1207
1208 return 0;
1209
1210err_remove_device:
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001211 cdev_device_del(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001212 return status;
1213}
1214
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001215static void gpiochip_machine_hog(struct gpio_chip *chip, struct gpiod_hog *hog)
1216{
1217 struct gpio_desc *desc;
1218 int rv;
1219
1220 desc = gpiochip_get_desc(chip, hog->chip_hwnum);
1221 if (IS_ERR(desc)) {
1222 pr_err("%s: unable to get GPIO desc: %ld\n",
1223 __func__, PTR_ERR(desc));
1224 return;
1225 }
1226
Dan Carpenterba3efdf2018-05-01 10:36:39 +03001227 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001228 return;
1229
1230 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
1231 if (rv)
1232 pr_err("%s: unable to hog GPIO line (%s:%u): %d\n",
1233 __func__, chip->label, hog->chip_hwnum, rv);
1234}
1235
1236static void machine_gpiochip_add(struct gpio_chip *chip)
1237{
1238 struct gpiod_hog *hog;
1239
1240 mutex_lock(&gpio_machine_hogs_mutex);
1241
1242 list_for_each_entry(hog, &gpio_machine_hogs, list) {
1243 if (!strcmp(chip->label, hog->chip_label))
1244 gpiochip_machine_hog(chip, hog);
1245 }
1246
1247 mutex_unlock(&gpio_machine_hogs_mutex);
1248}
1249
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001250static void gpiochip_setup_devs(void)
1251{
1252 struct gpio_device *gdev;
1253 int err;
1254
1255 list_for_each_entry(gdev, &gpio_devices, list) {
1256 err = gpiochip_setup_dev(gdev);
1257 if (err)
1258 pr_err("%s: Failed to initialize gpio device (%d)\n",
1259 dev_name(&gdev->dev), err);
1260 }
1261}
1262
Thierry Reding959bc7b2017-11-07 19:15:59 +01001263int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001264 struct lock_class_key *lock_key,
1265 struct lock_class_key *request_key)
David Brownelld2876d02008-02-04 22:28:20 -08001266{
1267 unsigned long flags;
1268 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001269 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001270 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001271 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001272
Linus Walleijff2b1352015-10-20 11:10:38 +02001273 /*
1274 * First: allocate and populate the internal stat container, and
1275 * set up the struct device.
1276 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001277 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001278 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001279 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001280 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001281 gdev->chip = chip;
1282 chip->gpiodev = gdev;
1283 if (chip->parent) {
1284 gdev->dev.parent = chip->parent;
1285 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001286 }
1287
Linus Walleijff2b1352015-10-20 11:10:38 +02001288#ifdef CONFIG_OF_GPIO
1289 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001290 if (chip->of_node)
1291 gdev->dev.of_node = chip->of_node;
Biju Das6ff04972018-08-06 10:48:01 +01001292 else
1293 chip->of_node = gdev->dev.of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001294#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001295
Linus Walleijff2b1352015-10-20 11:10:38 +02001296 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1297 if (gdev->id < 0) {
1298 status = gdev->id;
1299 goto err_free_gdev;
1300 }
1301 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1302 device_initialize(&gdev->dev);
1303 dev_set_drvdata(&gdev->dev, gdev);
1304 if (chip->parent && chip->parent->driver)
1305 gdev->owner = chip->parent->driver->owner;
1306 else if (chip->owner)
1307 /* TODO: remove chip->owner */
1308 gdev->owner = chip->owner;
1309 else
1310 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001311
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001312 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001313 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001314 status = -ENOMEM;
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +02001315 goto err_free_ida;
Linus Walleijff2b1352015-10-20 11:10:38 +02001316 }
1317
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001318 if (chip->ngpio == 0) {
1319 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001320 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001321 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001322 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001323
Laura Abbott30277432018-05-21 10:57:07 -07001324 if (chip->ngpio > FASTPATH_NGPIO)
1325 chip_warn(chip, "line cnt %u is greater than fast path cnt %u\n",
1326 chip->ngpio, FASTPATH_NGPIO);
1327
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001328 gdev->label = kstrdup_const(chip->label ?: "unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001329 if (!gdev->label) {
1330 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001331 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001332 }
1333
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001334 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001335 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001336
David Brownelld2876d02008-02-04 22:28:20 -08001337 spin_lock_irqsave(&gpio_lock, flags);
1338
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001339 /*
1340 * TODO: this allocates a Linux GPIO number base in the global
1341 * GPIO numberspace for this chip. In the long run we want to
1342 * get *rid* of this numberspace and use only descriptors, but
1343 * it may be a pipe dream. It will not happen before we get rid
1344 * of the sysfs interface anyways.
1345 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001346 if (base < 0) {
1347 base = gpiochip_find_base(chip->ngpio);
1348 if (base < 0) {
1349 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001350 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001351 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001352 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001353 /*
1354 * TODO: it should not be necessary to reflect the assigned
1355 * base outside of the GPIO subsystem. Go over drivers and
1356 * see if anyone makes use of this, else drop this and assign
1357 * a poison instead.
1358 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001359 chip->base = base;
1360 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001361 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001362
Linus Walleijff2b1352015-10-20 11:10:38 +02001363 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001364 if (status) {
1365 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001366 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001367 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001368
Linus Walleij545ebd92016-05-30 17:11:59 +02001369 spin_unlock_irqrestore(&gpio_lock, flags);
1370
Ricardo Ribalda Delgado767cd172018-10-12 08:11:36 +02001371 for (i = 0; i < chip->ngpio; i++)
1372 gdev->descs[i].gdev = gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001373
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301374#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001375 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301376#endif
1377
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001378 status = gpiochip_set_desc_names(chip);
1379 if (status)
1380 goto err_remove_from_list;
1381
Linus Walleij48057ed2019-08-20 10:05:27 +02001382 status = gpiochip_alloc_valid_mask(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001383 if (status)
1384 goto err_remove_from_list;
1385
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001386 status = of_gpiochip_add(chip);
1387 if (status)
Linus Walleij48057ed2019-08-20 10:05:27 +02001388 goto err_free_gpiochip_mask;
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001389
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001390 status = gpiochip_init_valid_mask(chip);
1391 if (status)
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001392 goto err_remove_of_chip;
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001393
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +02001394 for (i = 0; i < chip->ngpio; i++) {
1395 struct gpio_desc *desc = &gdev->descs[i];
1396
Chris Packhamd95da992019-07-08 08:35:58 +12001397 if (chip->get_direction && gpiochip_line_is_valid(chip, i)) {
1398 if (!chip->get_direction(chip, i))
1399 set_bit(FLAG_IS_OUT, &desc->flags);
1400 else
1401 clear_bit(FLAG_IS_OUT, &desc->flags);
1402 } else {
1403 if (!chip->direction_input)
1404 set_bit(FLAG_IS_OUT, &desc->flags);
1405 else
1406 clear_bit(FLAG_IS_OUT, &desc->flags);
1407 }
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +02001408 }
1409
Mika Westerberg664e3e52014-01-08 12:40:54 +02001410 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001411
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001412 machine_gpiochip_add(chip);
1413
Linus Walleij48057ed2019-08-20 10:05:27 +02001414 status = gpiochip_irqchip_init_valid_mask(chip);
1415 if (status)
1416 goto err_remove_acpi_chip;
1417
1418 status = gpiochip_add_irqchip(chip, lock_key, request_key);
1419 if (status)
1420 goto err_remove_irqchip_mask;
1421
Linus Walleij3c702e92015-10-21 15:29:53 +02001422 /*
1423 * By first adding the chardev, and then adding the device,
1424 * we get a device node entry in sysfs under
1425 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1426 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001427 * We can do this only if gpiolib has been initialized.
1428 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001429 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001430 if (gpiolib_initialized) {
1431 status = gpiochip_setup_dev(gdev);
1432 if (status)
Linus Walleij48057ed2019-08-20 10:05:27 +02001433 goto err_remove_irqchip;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001434 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001435 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001436
Linus Walleij48057ed2019-08-20 10:05:27 +02001437err_remove_irqchip:
1438 gpiochip_irqchip_remove(chip);
1439err_remove_irqchip_mask:
1440 gpiochip_irqchip_free_valid_mask(chip);
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001441err_remove_acpi_chip:
Johan Hovold225fce82015-01-12 17:12:25 +01001442 acpi_gpiochip_remove(chip);
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001443err_remove_of_chip:
Johan Hovold6d867502015-05-04 17:23:25 +02001444 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001445 of_gpiochip_remove(chip);
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001446err_free_gpiochip_mask:
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001447 gpiochip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001448err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001449 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001450 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001451 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001452err_free_label:
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001453 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001454err_free_descs:
1455 kfree(gdev->descs);
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +02001456err_free_ida:
Linus Walleijff2b1352015-10-20 11:10:38 +02001457 ida_simple_remove(&gpio_ida, gdev->id);
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +02001458err_free_gdev:
David Brownelld2876d02008-02-04 22:28:20 -08001459 /* failures here can mean systems won't boot... */
Marcel Ziswiler1777fc92018-07-20 09:54:49 +02001460 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001461 gdev->base, gdev->base + gdev->ngpio - 1,
Marcel Ziswiler1777fc92018-07-20 09:54:49 +02001462 chip->label ? : "generic", status);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001463 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001464 return status;
1465}
Thierry Reding959bc7b2017-11-07 19:15:59 +01001466EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
David Brownelld2876d02008-02-04 22:28:20 -08001467
1468/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001469 * gpiochip_get_data() - get per-subdriver data for the chip
Thierry Reding950d55f52017-07-24 16:57:22 +02001470 * @chip: GPIO chip
1471 *
1472 * Returns:
1473 * The per-subdriver data for the chip.
Linus Walleij43c54ec2016-02-11 11:37:48 +01001474 */
1475void *gpiochip_get_data(struct gpio_chip *chip)
1476{
1477 return chip->gpiodev->data;
1478}
1479EXPORT_SYMBOL_GPL(gpiochip_get_data);
1480
1481/**
David Brownelld2876d02008-02-04 22:28:20 -08001482 * gpiochip_remove() - unregister a gpio_chip
1483 * @chip: the chip to unregister
1484 *
1485 * A gpio_chip with any GPIOs still requested may not be removed.
1486 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001487void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001488{
Linus Walleijff2b1352015-10-20 11:10:38 +02001489 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001490 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001491 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001492 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001493 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001494
Linus Walleijff2b1352015-10-20 11:10:38 +02001495 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001496 gpiochip_sysfs_unregister(gdev);
Geert Uytterhoeven5018ada2016-12-19 18:29:23 +01001497 gpiochip_free_hogs(chip);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001498 /* Numb the device, cancelling all outstanding operations */
1499 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001500 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001501 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001502 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001503 of_gpiochip_remove(chip);
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001504 gpiochip_free_valid_mask(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001505 /*
1506 * We accept no more calls into the driver from this point, so
1507 * NULL the driver data pointer
1508 */
1509 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001510
Johan Hovold6798aca2015-01-12 17:12:28 +01001511 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001512 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001513 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001514 if (test_bit(FLAG_REQUESTED, &desc->flags))
1515 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001516 }
David Brownelld2876d02008-02-04 22:28:20 -08001517 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001518
Johan Hovoldfab28b82015-05-04 17:10:27 +02001519 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001520 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001521 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001522
Linus Walleijff2b1352015-10-20 11:10:38 +02001523 /*
1524 * The gpiochip side puts its use of the device to rest here:
1525 * if there are no userspace clients, the chardev and device will
1526 * be removed, else it will be dangling until the last user is
1527 * gone.
1528 */
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001529 cdev_device_del(&gdev->chrdev, &gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001530 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001531}
1532EXPORT_SYMBOL_GPL(gpiochip_remove);
1533
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301534static void devm_gpio_chip_release(struct device *dev, void *res)
1535{
1536 struct gpio_chip *chip = *(struct gpio_chip **)res;
1537
1538 gpiochip_remove(chip);
1539}
1540
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301541/**
Jonathan Neuschäfer689fd022017-12-21 17:56:34 +01001542 * devm_gpiochip_add_data() - Resource manager gpiochip_add_data()
Uwe Kleine-König3925b90f2018-10-08 11:34:03 +02001543 * @dev: pointer to the device that gpio_chip belongs to.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301544 * @chip: the chip to register, with chip->base initialized
Thierry Reding950d55f52017-07-24 16:57:22 +02001545 * @data: driver-private data associated with this chip
1546 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301547 * Context: potentially before irqs will work
1548 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301549 * The gpio chip automatically be released when the device is unbound.
Thierry Reding950d55f52017-07-24 16:57:22 +02001550 *
1551 * Returns:
1552 * A negative errno if the chip can't be registered, such as because the
1553 * chip->base is invalid or already associated with a different chip.
1554 * Otherwise it returns zero as a success code.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301555 */
1556int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1557 void *data)
1558{
1559 struct gpio_chip **ptr;
1560 int ret;
1561
1562 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1563 GFP_KERNEL);
1564 if (!ptr)
1565 return -ENOMEM;
1566
1567 ret = gpiochip_add_data(chip, data);
1568 if (ret < 0) {
1569 devres_free(ptr);
1570 return ret;
1571 }
1572
1573 *ptr = chip;
1574 devres_add(dev, ptr);
1575
1576 return 0;
1577}
1578EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1579
1580/**
Grant Likely594fa262010-06-08 07:48:16 -06001581 * gpiochip_find() - iterator for locating a specific gpio_chip
1582 * @data: data to pass to match function
Thierry Reding950d55f52017-07-24 16:57:22 +02001583 * @match: Callback function to check gpio_chip
Grant Likely594fa262010-06-08 07:48:16 -06001584 *
1585 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1586 * determined by a user supplied @match callback. The callback should return
1587 * 0 if the device doesn't match and non-zero if it does. If the callback is
1588 * non-zero, this function will return to the caller and not iterate over any
1589 * more gpio_chips.
1590 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001591struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001592 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001593 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001594{
Linus Walleijff2b1352015-10-20 11:10:38 +02001595 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001596 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001597 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001598
1599 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001600 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001601 if (gdev->chip && match(gdev->chip, data)) {
1602 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001603 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001604 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001605
Grant Likely594fa262010-06-08 07:48:16 -06001606 spin_unlock_irqrestore(&gpio_lock, flags);
1607
1608 return chip;
1609}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001610EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001611
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001612static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1613{
1614 const char *name = data;
1615
1616 return !strcmp(chip->label, name);
1617}
1618
1619static struct gpio_chip *find_chip_by_name(const char *name)
1620{
1621 return gpiochip_find((void *)name, gpiochip_match_name);
1622}
1623
Linus Walleij14250522014-03-25 10:40:18 +01001624#ifdef CONFIG_GPIOLIB_IRQCHIP
1625
1626/*
1627 * The following is irqchip helper code for gpiochips.
1628 */
1629
Mika Westerberg79b804c2016-09-20 15:15:21 +03001630static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1631{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001632 if (!gpiochip->irq.need_valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001633 return 0;
1634
Stephen Boyde4371f6e2018-03-23 09:34:50 -07001635 gpiochip->irq.valid_mask = gpiochip_allocate_mask(gpiochip);
Thierry Redingdc7b0382017-11-07 19:15:52 +01001636 if (!gpiochip->irq.valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001637 return -ENOMEM;
1638
Mika Westerberg79b804c2016-09-20 15:15:21 +03001639 return 0;
1640}
1641
1642static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1643{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001644 kfree(gpiochip->irq.valid_mask);
1645 gpiochip->irq.valid_mask = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001646}
1647
Stephen Boyd64ff2c82018-01-09 17:58:46 -08001648bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1649 unsigned int offset)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001650{
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001651 if (!gpiochip_line_is_valid(gpiochip, offset))
1652 return false;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001653 /* No mask means all valid */
Thierry Redingdc7b0382017-11-07 19:15:52 +01001654 if (likely(!gpiochip->irq.valid_mask))
Mika Westerberg79b804c2016-09-20 15:15:21 +03001655 return true;
Thierry Redingdc7b0382017-11-07 19:15:52 +01001656 return test_bit(offset, gpiochip->irq.valid_mask);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001657}
Stephen Boyd64ff2c82018-01-09 17:58:46 -08001658EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001659
Linus Walleij14250522014-03-25 10:40:18 +01001660/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001661 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij4892d3a2019-06-14 10:12:26 +02001662 * @gc: the gpiochip to set the irqchip chain to
Linus Walleij14250522014-03-25 10:40:18 +01001663 * @parent_irq: the irq number corresponding to the parent IRQ for this
1664 * chained irqchip
1665 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001666 * coming out of the gpiochip. If the interrupt is nested rather than
1667 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001668 */
Linus Walleij4892d3a2019-06-14 10:12:26 +02001669static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gc,
Thierry Reding6f793092017-04-03 18:05:21 +02001670 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001671 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001672{
Linus Walleij4892d3a2019-06-14 10:12:26 +02001673 struct gpio_irq_chip *girq = &gc->irq;
1674 struct device *dev = &gc->gpiodev->dev;
1675
1676 if (!girq->domain) {
1677 chip_err(gc, "called %s before setting up irqchip\n",
Linus Walleij83141a72014-09-26 13:50:12 +02001678 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001679 return;
1680 }
1681
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001682 if (parent_handler) {
Linus Walleij4892d3a2019-06-14 10:12:26 +02001683 if (gc->can_sleep) {
1684 chip_err(gc,
Andy Shevchenkob1911712018-07-03 03:39:03 +03001685 "you cannot have chained interrupts on a chip that may sleep\n");
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001686 return;
1687 }
Linus Walleij4892d3a2019-06-14 10:12:26 +02001688 girq->parents = devm_kcalloc(dev, 1,
1689 sizeof(*girq->parents),
1690 GFP_KERNEL);
1691 if (!girq->parents) {
1692 chip_err(gc, "out of memory allocating parent IRQ\n");
1693 return;
1694 }
1695 girq->parents[0] = parent_irq;
1696 girq->num_parents = 1;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001697 /*
1698 * The parent irqchip is already using the chip_data for this
1699 * irqchip, so our callbacks simply use the handler_data.
1700 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001701 irq_set_chained_handler_and_data(parent_irq, parent_handler,
Linus Walleij4892d3a2019-06-14 10:12:26 +02001702 gc);
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001703 }
Linus Walleij14250522014-03-25 10:40:18 +01001704}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001705
1706/**
1707 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1708 * @gpiochip: the gpiochip to set the irqchip chain to
1709 * @irqchip: the irqchip to chain to the gpiochip
1710 * @parent_irq: the irq number corresponding to the parent IRQ for this
1711 * chained irqchip
1712 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Stephen Boyd40f5ff42018-10-08 09:32:16 -07001713 * coming out of the gpiochip.
Linus Walleijd245b3f2016-11-24 10:57:25 +01001714 */
1715void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1716 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001717 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001718 irq_flow_handler_t parent_handler)
1719{
Thierry Reding60ed54c2017-11-07 19:15:57 +01001720 if (gpiochip->irq.threaded) {
1721 chip_err(gpiochip, "tried to chain a threaded gpiochip\n");
1722 return;
1723 }
1724
Stephen Boyd3c1f6b22018-10-08 09:32:15 -07001725 gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, parent_handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001726}
Linus Walleij14250522014-03-25 10:40:18 +01001727EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1728
1729/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001730 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1731 * @gpiochip: the gpiochip to set the irqchip nested handler to
1732 * @irqchip: the irqchip to nest to the gpiochip
1733 * @parent_irq: the irq number corresponding to the parent IRQ for this
1734 * nested irqchip
1735 */
1736void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1737 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001738 unsigned int parent_irq)
Linus Walleijd245b3f2016-11-24 10:57:25 +01001739{
Stephen Boyd3c1f6b22018-10-08 09:32:15 -07001740 gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, NULL);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001741}
1742EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1743
1744/**
Linus Walleij14250522014-03-25 10:40:18 +01001745 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1746 * @d: the irqdomain used by this irqchip
1747 * @irq: the global irq number used by this GPIO irqchip irq
1748 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1749 *
1750 * This function will set up the mapping for a certain IRQ line on a
1751 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1752 * stored inside the gpiochip.
1753 */
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001754int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1755 irq_hw_number_t hwirq)
Linus Walleij14250522014-03-25 10:40:18 +01001756{
1757 struct gpio_chip *chip = d->host_data;
Thierry Redinge0d89722017-11-07 19:15:54 +01001758 int err = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001759
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001760 if (!gpiochip_irqchip_irq_valid(chip, hwirq))
1761 return -ENXIO;
1762
Linus Walleij14250522014-03-25 10:40:18 +01001763 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001764 /*
1765 * This lock class tells lockdep that GPIO irqs are in a different
1766 * category than their parents, so it won't report false recursion.
1767 */
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001768 irq_set_lockdep_class(irq, chip->irq.lock_key, chip->irq.request_key);
Thierry Redingc7a0aa52017-11-07 19:15:48 +01001769 irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001770 /* Chips that use nested thread handlers have them marked */
Thierry Reding60ed54c2017-11-07 19:15:57 +01001771 if (chip->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001772 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001773 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001774
Thierry Redinge0d89722017-11-07 19:15:54 +01001775 if (chip->irq.num_parents == 1)
1776 err = irq_set_parent(irq, chip->irq.parents[0]);
1777 else if (chip->irq.map)
1778 err = irq_set_parent(irq, chip->irq.map[hwirq]);
1779
1780 if (err < 0)
1781 return err;
1782
Linus Walleij1333b902014-04-23 16:45:12 +02001783 /*
1784 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1785 * is passed as default type.
1786 */
Thierry Reding3634eeb2017-11-07 19:15:49 +01001787 if (chip->irq.default_type != IRQ_TYPE_NONE)
1788 irq_set_irq_type(irq, chip->irq.default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001789
1790 return 0;
1791}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001792EXPORT_SYMBOL_GPL(gpiochip_irq_map);
Linus Walleij14250522014-03-25 10:40:18 +01001793
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001794void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
Linus Walleijc3626fd2014-03-28 20:42:01 +01001795{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001796 struct gpio_chip *chip = d->host_data;
1797
Thierry Reding60ed54c2017-11-07 19:15:57 +01001798 if (chip->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001799 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001800 irq_set_chip_and_handler(irq, NULL, NULL);
1801 irq_set_chip_data(irq, NULL);
1802}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001803EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001804
Linus Walleij14250522014-03-25 10:40:18 +01001805static const struct irq_domain_ops gpiochip_domain_ops = {
1806 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001807 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001808 /* Virtually all GPIO irqchips are twocell:ed */
1809 .xlate = irq_domain_xlate_twocell,
1810};
1811
Brian Masneyef74f702019-01-19 15:42:42 -05001812/**
1813 * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ
1814 * @domain: The IRQ domain used by this IRQ chip
1815 * @data: Outermost irq_data associated with the IRQ
1816 * @reserve: If set, only reserve an interrupt vector instead of assigning one
1817 *
1818 * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be
1819 * used as the activate function for the &struct irq_domain_ops. The host_data
1820 * for the IRQ domain must be the &struct gpio_chip.
1821 */
1822int gpiochip_irq_domain_activate(struct irq_domain *domain,
1823 struct irq_data *data, bool reserve)
1824{
1825 struct gpio_chip *chip = domain->host_data;
1826
1827 return gpiochip_lock_as_irq(chip, data->hwirq);
1828}
1829EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate);
1830
1831/**
1832 * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ
1833 * @domain: The IRQ domain used by this IRQ chip
1834 * @data: Outermost irq_data associated with the IRQ
1835 *
1836 * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to
1837 * be used as the deactivate function for the &struct irq_domain_ops. The
1838 * host_data for the IRQ domain must be the &struct gpio_chip.
1839 */
1840void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
1841 struct irq_data *data)
1842{
1843 struct gpio_chip *chip = domain->host_data;
1844
1845 return gpiochip_unlock_as_irq(chip, data->hwirq);
1846}
1847EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate);
1848
Linus Walleij14250522014-03-25 10:40:18 +01001849static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1850{
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001851 if (!gpiochip_irqchip_irq_valid(chip, offset))
1852 return -ENXIO;
Thierry Redinge0d89722017-11-07 19:15:54 +01001853
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001854 return irq_create_mapping(chip->irq.domain, offset);
Linus Walleij14250522014-03-25 10:40:18 +01001855}
1856
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001857static int gpiochip_irq_reqres(struct irq_data *d)
1858{
1859 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1860
1861 return gpiochip_reqres_irq(chip, d->hwirq);
1862}
1863
1864static void gpiochip_irq_relres(struct irq_data *d)
1865{
1866 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1867
1868 gpiochip_relres_irq(chip, d->hwirq);
1869}
1870
Hans Verkuil461c1a72018-09-08 11:23:17 +02001871static void gpiochip_irq_enable(struct irq_data *d)
1872{
1873 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1874
1875 gpiochip_enable_irq(chip, d->hwirq);
1876 if (chip->irq.irq_enable)
1877 chip->irq.irq_enable(d);
1878 else
1879 chip->irq.chip->irq_unmask(d);
1880}
1881
1882static void gpiochip_irq_disable(struct irq_data *d)
1883{
1884 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1885
1886 if (chip->irq.irq_disable)
1887 chip->irq.irq_disable(d);
1888 else
1889 chip->irq.chip->irq_mask(d);
1890 gpiochip_disable_irq(chip, d->hwirq);
1891}
1892
Hans Verkuilca620f22018-09-08 11:23:15 +02001893static void gpiochip_set_irq_hooks(struct gpio_chip *gpiochip)
1894{
1895 struct irq_chip *irqchip = gpiochip->irq.chip;
1896
1897 if (!irqchip->irq_request_resources &&
1898 !irqchip->irq_release_resources) {
1899 irqchip->irq_request_resources = gpiochip_irq_reqres;
1900 irqchip->irq_release_resources = gpiochip_irq_relres;
1901 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02001902 if (WARN_ON(gpiochip->irq.irq_enable))
1903 return;
Hans Verkuil171948e2018-09-14 10:36:39 +02001904 /* Check if the irqchip already has this hook... */
1905 if (irqchip->irq_enable == gpiochip_irq_enable) {
1906 /*
1907 * ...and if so, give a gentle warning that this is bad
1908 * practice.
1909 */
1910 chip_info(gpiochip,
1911 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1912 return;
1913 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02001914 gpiochip->irq.irq_enable = irqchip->irq_enable;
1915 gpiochip->irq.irq_disable = irqchip->irq_disable;
1916 irqchip->irq_enable = gpiochip_irq_enable;
1917 irqchip->irq_disable = gpiochip_irq_disable;
Hans Verkuilca620f22018-09-08 11:23:15 +02001918}
1919
Linus Walleij14250522014-03-25 10:40:18 +01001920/**
Thierry Redinge0d89722017-11-07 19:15:54 +01001921 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1922 * @gpiochip: the GPIO chip to add the IRQ chip to
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001923 * @lock_key: lockdep class for IRQ lock
1924 * @request_key: lockdep class for IRQ request
Thierry Redinge0d89722017-11-07 19:15:54 +01001925 */
Thierry Reding959bc7b2017-11-07 19:15:59 +01001926static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001927 struct lock_class_key *lock_key,
1928 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01001929{
1930 struct irq_chip *irqchip = gpiochip->irq.chip;
1931 const struct irq_domain_ops *ops;
1932 struct device_node *np;
1933 unsigned int type;
1934 unsigned int i;
1935
1936 if (!irqchip)
1937 return 0;
1938
1939 if (gpiochip->irq.parent_handler && gpiochip->can_sleep) {
Andy Shevchenkob1911712018-07-03 03:39:03 +03001940 chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n");
Thierry Redinge0d89722017-11-07 19:15:54 +01001941 return -EINVAL;
1942 }
1943
1944 np = gpiochip->gpiodev->dev.of_node;
1945 type = gpiochip->irq.default_type;
1946
1947 /*
1948 * Specifying a default trigger is a terrible idea if DT or ACPI is
1949 * used to configure the interrupts, as you may end up with
1950 * conflicting triggers. Tell the user, and reset to NONE.
1951 */
1952 if (WARN(np && type != IRQ_TYPE_NONE,
1953 "%s: Ignoring %u default trigger\n", np->full_name, type))
1954 type = IRQ_TYPE_NONE;
1955
1956 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1957 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1958 "Ignoring %u default trigger\n", type);
1959 type = IRQ_TYPE_NONE;
1960 }
1961
1962 gpiochip->to_irq = gpiochip_to_irq;
1963 gpiochip->irq.default_type = type;
Thierry Reding959bc7b2017-11-07 19:15:59 +01001964 gpiochip->irq.lock_key = lock_key;
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001965 gpiochip->irq.request_key = request_key;
Thierry Redinge0d89722017-11-07 19:15:54 +01001966
1967 if (gpiochip->irq.domain_ops)
1968 ops = gpiochip->irq.domain_ops;
1969 else
1970 ops = &gpiochip_domain_ops;
1971
1972 gpiochip->irq.domain = irq_domain_add_simple(np, gpiochip->ngpio,
Thierry Reding8302cf52017-11-07 19:15:58 +01001973 gpiochip->irq.first,
1974 ops, gpiochip);
Thierry Redinge0d89722017-11-07 19:15:54 +01001975 if (!gpiochip->irq.domain)
1976 return -EINVAL;
1977
Thierry Redinge0d89722017-11-07 19:15:54 +01001978 if (gpiochip->irq.parent_handler) {
1979 void *data = gpiochip->irq.parent_handler_data ?: gpiochip;
1980
1981 for (i = 0; i < gpiochip->irq.num_parents; i++) {
1982 /*
1983 * The parent IRQ chip is already using the chip_data
1984 * for this IRQ chip, so our callbacks simply use the
1985 * handler_data.
1986 */
1987 irq_set_chained_handler_and_data(gpiochip->irq.parents[i],
1988 gpiochip->irq.parent_handler,
1989 data);
1990 }
Thierry Redinge0d89722017-11-07 19:15:54 +01001991 }
1992
Hans Verkuilca620f22018-09-08 11:23:15 +02001993 gpiochip_set_irq_hooks(gpiochip);
1994
Thierry Redinge0d89722017-11-07 19:15:54 +01001995 acpi_gpiochip_request_interrupts(gpiochip);
1996
1997 return 0;
1998}
1999
2000/**
Linus Walleij14250522014-03-25 10:40:18 +01002001 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
2002 * @gpiochip: the gpiochip to remove the irqchip from
2003 *
2004 * This is called only from gpiochip_remove()
2005 */
2006static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
2007{
Hans Verkuilca620f22018-09-08 11:23:15 +02002008 struct irq_chip *irqchip = gpiochip->irq.chip;
Thierry Reding39e5f092017-11-07 19:15:50 +01002009 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01002010
Mika Westerbergafa82fa2014-07-25 09:54:48 +03002011 acpi_gpiochip_free_interrupts(gpiochip);
2012
Hans Verkuilca620f22018-09-08 11:23:15 +02002013 if (irqchip && gpiochip->irq.parent_handler) {
Thierry Reding39e5f092017-11-07 19:15:50 +01002014 struct gpio_irq_chip *irq = &gpiochip->irq;
2015 unsigned int i;
2016
2017 for (i = 0; i < irq->num_parents; i++)
2018 irq_set_chained_handler_and_data(irq->parents[i],
2019 NULL, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03002020 }
2021
Linus Walleijc3626fd2014-03-28 20:42:01 +01002022 /* Remove all IRQ mappings and delete the domain */
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002023 if (gpiochip->irq.domain) {
Thierry Reding39e5f092017-11-07 19:15:50 +01002024 unsigned int irq;
2025
Mika Westerberg79b804c2016-09-20 15:15:21 +03002026 for (offset = 0; offset < gpiochip->ngpio; offset++) {
2027 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
2028 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002029
2030 irq = irq_find_mapping(gpiochip->irq.domain, offset);
2031 irq_dispose_mapping(irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03002032 }
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002033
2034 irq_domain_remove(gpiochip->irq.domain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01002035 }
Linus Walleij14250522014-03-25 10:40:18 +01002036
Hans Verkuil461c1a72018-09-08 11:23:17 +02002037 if (irqchip) {
2038 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
2039 irqchip->irq_request_resources = NULL;
2040 irqchip->irq_release_resources = NULL;
2041 }
2042 if (irqchip->irq_enable == gpiochip_irq_enable) {
2043 irqchip->irq_enable = gpiochip->irq.irq_enable;
2044 irqchip->irq_disable = gpiochip->irq.irq_disable;
2045 }
Linus Walleij14250522014-03-25 10:40:18 +01002046 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02002047 gpiochip->irq.irq_enable = NULL;
2048 gpiochip->irq.irq_disable = NULL;
Hans Verkuilca620f22018-09-08 11:23:15 +02002049 gpiochip->irq.chip = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03002050
2051 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01002052}
2053
2054/**
Linus Walleij739e6f52017-01-11 13:37:07 +01002055 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01002056 * @gpiochip: the gpiochip to add the irqchip to
2057 * @irqchip: the irqchip to add to the gpiochip
2058 * @first_irq: if not dynamically assigned, the base (first) IRQ to
2059 * allocate gpiochip irqs from
2060 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02002061 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
2062 * to have the core avoid setting up any default type in the hardware.
Thierry Reding60ed54c2017-11-07 19:15:57 +01002063 * @threaded: whether this irqchip uses a nested thread handler
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002064 * @lock_key: lockdep class for IRQ lock
2065 * @request_key: lockdep class for IRQ request
Linus Walleij14250522014-03-25 10:40:18 +01002066 *
2067 * This function closely associates a certain irqchip with a certain
2068 * gpiochip, providing an irq domain to translate the local IRQs to
2069 * global irqs in the gpiolib core, and making sure that the gpiochip
2070 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01002071 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01002072 * from the gpiochip passed as chip data. An irqdomain will be stored
2073 * in the gpiochip that shall be used by the driver to handle IRQ number
2074 * translation. The gpiochip will need to be initialized and registered
2075 * before calling this function.
2076 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01002077 * This function will handle two cell:ed simple IRQs and assumes all
2078 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01002079 * need to be open coded.
2080 */
Linus Walleij739e6f52017-01-11 13:37:07 +01002081int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
2082 struct irq_chip *irqchip,
2083 unsigned int first_irq,
2084 irq_flow_handler_t handler,
2085 unsigned int type,
Thierry Reding60ed54c2017-11-07 19:15:57 +01002086 bool threaded,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002087 struct lock_class_key *lock_key,
2088 struct lock_class_key *request_key)
Linus Walleij14250522014-03-25 10:40:18 +01002089{
2090 struct device_node *of_node;
Linus Walleij14250522014-03-25 10:40:18 +01002091
2092 if (!gpiochip || !irqchip)
2093 return -EINVAL;
2094
Linus Walleij58383c782015-11-04 09:56:26 +01002095 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01002096 pr_err("missing gpiochip .dev parent pointer\n");
2097 return -EINVAL;
2098 }
Thierry Reding60ed54c2017-11-07 19:15:57 +01002099 gpiochip->irq.threaded = threaded;
Linus Walleij58383c782015-11-04 09:56:26 +01002100 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01002101#ifdef CONFIG_OF_GPIO
2102 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07002103 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08002104 * FIXME: get rid of this and use gpiochip->parent->of_node
2105 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01002106 */
2107 if (gpiochip->of_node)
2108 of_node = gpiochip->of_node;
2109#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01002110 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03002111 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01002112 * used to configure the interrupts, as you may end-up with
2113 * conflicting triggers. Tell the user, and reset to NONE.
2114 */
2115 if (WARN(of_node && type != IRQ_TYPE_NONE,
Rob Herring7eb6ce22017-07-18 16:43:03 -05002116 "%pOF: Ignoring %d default trigger\n", of_node, type))
Marc Zyngier332e99d2016-09-07 09:12:11 +01002117 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03002118 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
2119 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
2120 "Ignoring %d default trigger\n", type);
2121 type = IRQ_TYPE_NONE;
2122 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01002123
Thierry Redingda80ff82017-11-07 19:15:46 +01002124 gpiochip->irq.chip = irqchip;
Thierry Redingc7a0aa52017-11-07 19:15:48 +01002125 gpiochip->irq.handler = handler;
Thierry Reding3634eeb2017-11-07 19:15:49 +01002126 gpiochip->irq.default_type = type;
Linus Walleij14250522014-03-25 10:40:18 +01002127 gpiochip->to_irq = gpiochip_to_irq;
Thierry Redingca9df052017-11-07 19:15:53 +01002128 gpiochip->irq.lock_key = lock_key;
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002129 gpiochip->irq.request_key = request_key;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002130 gpiochip->irq.domain = irq_domain_add_simple(of_node,
Linus Walleij14250522014-03-25 10:40:18 +01002131 gpiochip->ngpio, first_irq,
2132 &gpiochip_domain_ops, gpiochip);
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002133 if (!gpiochip->irq.domain) {
Thierry Redingda80ff82017-11-07 19:15:46 +01002134 gpiochip->irq.chip = NULL;
Linus Walleij14250522014-03-25 10:40:18 +01002135 return -EINVAL;
2136 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02002137
Hans Verkuilca620f22018-09-08 11:23:15 +02002138 gpiochip_set_irq_hooks(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01002139
Mika Westerbergafa82fa2014-07-25 09:54:48 +03002140 acpi_gpiochip_request_interrupts(gpiochip);
2141
Linus Walleij14250522014-03-25 10:40:18 +01002142 return 0;
2143}
Linus Walleij739e6f52017-01-11 13:37:07 +01002144EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
Linus Walleij14250522014-03-25 10:40:18 +01002145
2146#else /* CONFIG_GPIOLIB_IRQCHIP */
2147
Thierry Reding959bc7b2017-11-07 19:15:59 +01002148static inline int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002149 struct lock_class_key *lock_key,
2150 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01002151{
2152 return 0;
2153}
2154
Linus Walleij14250522014-03-25 10:40:18 +01002155static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03002156static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
2157{
2158 return 0;
2159}
2160static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
2161{ }
Linus Walleij14250522014-03-25 10:40:18 +01002162
2163#endif /* CONFIG_GPIOLIB_IRQCHIP */
2164
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002165/**
2166 * gpiochip_generic_request() - request the gpio function for a pin
2167 * @chip: the gpiochip owning the GPIO
2168 * @offset: the offset of the GPIO to request for GPIO function
2169 */
2170int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
2171{
Linus Walleija9a1d2a2017-09-22 11:02:10 +02002172 return pinctrl_gpio_request(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002173}
2174EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2175
2176/**
2177 * gpiochip_generic_free() - free the gpio function from a pin
2178 * @chip: the gpiochip to request the gpio function for
2179 * @offset: the offset of the GPIO to free from GPIO function
2180 */
2181void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
2182{
Linus Walleija9a1d2a2017-09-22 11:02:10 +02002183 pinctrl_gpio_free(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002184}
2185EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2186
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002187/**
2188 * gpiochip_generic_config() - apply configuration for a pin
2189 * @chip: the gpiochip owning the GPIO
2190 * @offset: the offset of the GPIO to apply the configuration
2191 * @config: the configuration to be applied
2192 */
2193int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
2194 unsigned long config)
2195{
2196 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
2197}
2198EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2199
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302200#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01002201
Linus Walleij3f0f8672012-11-20 12:40:15 +01002202/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02002203 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
2204 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02002205 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02002206 * @gpio_offset: the start offset in the current gpio_chip number space
2207 * @pin_group: name of the pin group inside the pin controller
Christian Lamparter973c1712018-05-21 22:57:39 +02002208 *
2209 * Calling this function directly from a DeviceTree-supported
2210 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2211 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2212 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Christian Ruppert586a87e2013-10-15 15:37:54 +02002213 */
2214int gpiochip_add_pingroup_range(struct gpio_chip *chip,
2215 struct pinctrl_dev *pctldev,
2216 unsigned int gpio_offset, const char *pin_group)
2217{
2218 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002219 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02002220 int ret;
2221
2222 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2223 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002224 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02002225 return -ENOMEM;
2226 }
2227
2228 /* Use local offset as range ID */
2229 pin_range->range.id = gpio_offset;
2230 pin_range->range.gc = chip;
2231 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002232 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02002233 pin_range->pctldev = pctldev;
2234
2235 ret = pinctrl_get_group_pins(pctldev, pin_group,
2236 &pin_range->range.pins,
2237 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01002238 if (ret < 0) {
2239 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02002240 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01002241 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02002242
2243 pinctrl_add_gpio_range(pctldev, &pin_range->range);
2244
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002245 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2246 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02002247 pinctrl_dev_get_devname(pctldev), pin_group);
2248
Linus Walleij20ec3e32016-02-11 11:03:06 +01002249 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02002250
2251 return 0;
2252}
2253EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2254
2255/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01002256 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
2257 * @chip: the gpiochip to add the range for
Thierry Reding950d55f52017-07-24 16:57:22 +02002258 * @pinctl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01002259 * @gpio_offset: the start offset in the current gpio_chip number space
2260 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01002261 * @npins: the number of pins from the offset of each pin space (GPIO and
2262 * pin controller) to accumulate in this range
Thierry Reding950d55f52017-07-24 16:57:22 +02002263 *
2264 * Returns:
2265 * 0 on success, or a negative error-code on failure.
Christian Lamparter973c1712018-05-21 22:57:39 +02002266 *
2267 * Calling this function directly from a DeviceTree-supported
2268 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2269 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2270 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Linus Walleij3f0f8672012-11-20 12:40:15 +01002271 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002272int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01002273 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01002274 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302275{
2276 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002277 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08002278 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302279
Linus Walleij3f0f8672012-11-20 12:40:15 +01002280 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302281 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002282 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002283 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302284 }
2285
Linus Walleij3f0f8672012-11-20 12:40:15 +01002286 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01002287 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01002288 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302289 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002290 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01002291 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302292 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01002293 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302294 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01002295 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08002296 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002297 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01002298 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08002299 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01002300 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002301 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2302 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01002303 pinctl_name,
2304 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302305
Linus Walleij20ec3e32016-02-11 11:03:06 +01002306 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002307
2308 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302309}
Linus Walleij165adc92012-11-06 14:49:39 +01002310EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302311
Linus Walleij3f0f8672012-11-20 12:40:15 +01002312/**
2313 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2314 * @chip: the chip to remove all the mappings for
2315 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302316void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
2317{
2318 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01002319 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302320
Linus Walleij20ec3e32016-02-11 11:03:06 +01002321 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302322 list_del(&pin_range->node);
2323 pinctrl_remove_gpio_range(pin_range->pctldev,
2324 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01002325 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302326 }
2327}
Linus Walleij165adc92012-11-06 14:49:39 +01002328EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2329
2330#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302331
David Brownelld2876d02008-02-04 22:28:20 -08002332/* These "optional" allocation calls help prevent drivers from stomping
2333 * on each other, and help provide better diagnostics in debugfs.
2334 * They're called even less than the "set direction" calls.
2335 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002336static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002337{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002338 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002339 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002340 unsigned long flags;
Biju Das3789f5a2018-08-07 08:15:18 +01002341 unsigned offset;
David Brownelld2876d02008-02-04 22:28:20 -08002342
Muchun Song18534df2018-11-01 21:12:50 +08002343 if (label) {
2344 label = kstrdup_const(label, GFP_KERNEL);
2345 if (!label)
2346 return -ENOMEM;
2347 }
2348
David Brownelld2876d02008-02-04 22:28:20 -08002349 spin_lock_irqsave(&gpio_lock, flags);
2350
David Brownelld2876d02008-02-04 22:28:20 -08002351 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002352 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002353 */
2354
2355 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2356 desc_set_label(desc, label ? : "?");
2357 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002358 } else {
Muchun Song18534df2018-11-01 21:12:50 +08002359 kfree_const(label);
David Brownelld2876d02008-02-04 22:28:20 -08002360 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002361 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002362 }
2363
2364 if (chip->request) {
2365 /* chip->request may sleep */
2366 spin_unlock_irqrestore(&gpio_lock, flags);
Biju Das3789f5a2018-08-07 08:15:18 +01002367 offset = gpio_chip_hwgpio(desc);
2368 if (gpiochip_line_is_valid(chip, offset))
2369 status = chip->request(chip, offset);
2370 else
2371 status = -EINVAL;
David Brownell35e8bb52008-10-15 22:03:16 -07002372 spin_lock_irqsave(&gpio_lock, flags);
2373
2374 if (status < 0) {
2375 desc_set_label(desc, NULL);
Muchun Song18534df2018-11-01 21:12:50 +08002376 kfree_const(label);
David Brownell35e8bb52008-10-15 22:03:16 -07002377 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002378 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002379 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002380 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002381 if (chip->get_direction) {
2382 /* chip->get_direction may sleep */
2383 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002384 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002385 spin_lock_irqsave(&gpio_lock, flags);
2386 }
David Brownelld2876d02008-02-04 22:28:20 -08002387done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002388 spin_unlock_irqrestore(&gpio_lock, flags);
2389 return status;
2390}
2391
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002392/*
2393 * This descriptor validation needs to be inserted verbatim into each
2394 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002395 * macro to avoid endless duplication. If the desc is NULL it is an
2396 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002397 */
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002398static int validate_desc(const struct gpio_desc *desc, const char *func)
2399{
2400 if (!desc)
2401 return 0;
2402 if (IS_ERR(desc)) {
2403 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2404 return PTR_ERR(desc);
2405 }
2406 if (!desc->gdev) {
2407 pr_warn("%s: invalid GPIO (no device)\n", func);
2408 return -EINVAL;
2409 }
2410 if (!desc->gdev->chip) {
2411 dev_warn(&desc->gdev->dev,
2412 "%s: backing chip is gone\n", func);
2413 return 0;
2414 }
2415 return 1;
2416}
2417
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002418#define VALIDATE_DESC(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002419 int __valid = validate_desc(desc, __func__); \
2420 if (__valid <= 0) \
2421 return __valid; \
2422 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002423
2424#define VALIDATE_DESC_VOID(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002425 int __valid = validate_desc(desc, __func__); \
2426 if (__valid <= 0) \
Linus Walleij54d77192016-05-30 16:48:39 +02002427 return; \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002428 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002429
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002430int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002431{
2432 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002433 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002434
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002435 VALIDATE_DESC(desc);
2436 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002437
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002438 if (try_module_get(gdev->owner)) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002439 status = gpiod_request_commit(desc, label);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002440 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002441 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002442 else
2443 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002444 }
2445
David Brownelld2876d02008-02-04 22:28:20 -08002446 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002447 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002448
David Brownelld2876d02008-02-04 22:28:20 -08002449 return status;
2450}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002451
Linus Walleijfac9d882017-09-26 20:58:28 +02002452static bool gpiod_free_commit(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002453{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002454 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002455 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002456 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002457
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002458 might_sleep();
2459
Alexandre Courbot372e7222013-02-03 01:29:29 +09002460 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002461
David Brownelld2876d02008-02-04 22:28:20 -08002462 spin_lock_irqsave(&gpio_lock, flags);
2463
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002464 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002465 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2466 if (chip->free) {
2467 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002468 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002469 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002470 spin_lock_irqsave(&gpio_lock, flags);
2471 }
Muchun Song18534df2018-11-01 21:12:50 +08002472 kfree_const(desc->label);
David Brownelld2876d02008-02-04 22:28:20 -08002473 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002474 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002475 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302476 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302477 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002478 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002479 ret = true;
2480 }
David Brownelld2876d02008-02-04 22:28:20 -08002481
2482 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002483 return ret;
2484}
2485
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002486void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002487{
Linus Walleijfac9d882017-09-26 20:58:28 +02002488 if (desc && desc->gdev && gpiod_free_commit(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002489 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002490 put_device(&desc->gdev->dev);
2491 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002492 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002493 }
David Brownelld2876d02008-02-04 22:28:20 -08002494}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002495
David Brownelld2876d02008-02-04 22:28:20 -08002496/**
2497 * gpiochip_is_requested - return string iff signal was requested
2498 * @chip: controller managing the signal
2499 * @offset: of signal within controller's 0..(ngpio - 1) range
2500 *
2501 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002502 * The string returned is the label passed to gpio_request(); if none has been
2503 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002504 *
2505 * This function is for use by GPIO controller drivers. The label can
2506 * help with diagnostics, and knowing that the signal is used as a GPIO
2507 * can help avoid accidentally multiplexing it to another controller.
2508 */
2509const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2510{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002511 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002512
Dirk Behme48b59532015-08-18 18:02:32 +02002513 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002514 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002515
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002516 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002517
Alexandre Courbot372e7222013-02-03 01:29:29 +09002518 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002519 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002520 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002521}
2522EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2523
Mika Westerberg77c2d792014-03-10 14:54:50 +02002524/**
2525 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
Thierry Reding950d55f52017-07-24 16:57:22 +02002526 * @chip: GPIO chip
2527 * @hwnum: hardware number of the GPIO for which to request the descriptor
Mika Westerberg77c2d792014-03-10 14:54:50 +02002528 * @label: label for the GPIO
Linus Walleij5923ea62019-04-26 14:40:18 +02002529 * @lflags: lookup flags for this GPIO or 0 if default, this can be used to
2530 * specify things like line inversion semantics with the machine flags
2531 * such as GPIO_OUT_LOW
2532 * @dflags: descriptor request flags for this GPIO or 0 if default, this
2533 * can be used to specify consumer semantics such as open drain
Mika Westerberg77c2d792014-03-10 14:54:50 +02002534 *
2535 * Function allows GPIO chip drivers to request and use their own GPIO
2536 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2537 * function will not increase reference count of the GPIO chip module. This
2538 * allows the GPIO chip module to be unloaded as needed (we assume that the
2539 * GPIO chip driver handles freeing the GPIOs it has requested).
Thierry Reding950d55f52017-07-24 16:57:22 +02002540 *
2541 * Returns:
2542 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2543 * code on failure.
Mika Westerberg77c2d792014-03-10 14:54:50 +02002544 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002545struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
Linus Walleij21abf102018-09-04 13:31:45 +02002546 const char *label,
Linus Walleij5923ea62019-04-26 14:40:18 +02002547 enum gpio_lookup_flags lflags,
2548 enum gpiod_flags dflags)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002549{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002550 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2551 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002552
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002553 if (IS_ERR(desc)) {
2554 chip_err(chip, "failed to get GPIO descriptor\n");
2555 return desc;
2556 }
2557
Linus Walleijfac9d882017-09-26 20:58:28 +02002558 err = gpiod_request_commit(desc, label);
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002559 if (err < 0)
2560 return ERR_PTR(err);
2561
Linus Walleij5923ea62019-04-26 14:40:18 +02002562 err = gpiod_configure_flags(desc, label, lflags, dflags);
Linus Walleij21abf102018-09-04 13:31:45 +02002563 if (err) {
2564 chip_err(chip, "setup of own GPIO %s failed\n", label);
2565 gpiod_free_commit(desc);
2566 return ERR_PTR(err);
2567 }
2568
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002569 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002570}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002571EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002572
2573/**
2574 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2575 * @desc: GPIO descriptor to free
2576 *
2577 * Function frees the given GPIO requested previously with
2578 * gpiochip_request_own_desc().
2579 */
2580void gpiochip_free_own_desc(struct gpio_desc *desc)
2581{
2582 if (desc)
Linus Walleijfac9d882017-09-26 20:58:28 +02002583 gpiod_free_commit(desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002584}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002585EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002586
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002587/*
2588 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002589 * some cases this is done in early boot, before IRQs are enabled.
2590 *
2591 * As a rule these aren't called more than once (except for drivers
2592 * using the open-drain emulation idiom) so these are natural places
2593 * to accumulate extra debugging checks. Note that we can't (yet)
2594 * rely on gpio_request() having been called beforehand.
2595 */
2596
Thomas Petazzoni71479782019-02-07 17:28:56 +01002597static int gpio_set_config(struct gpio_chip *gc, unsigned offset,
2598 enum pin_config_param mode)
2599{
Maxime Ripard542f3612019-03-14 20:32:50 +01002600 unsigned long config;
2601 unsigned arg;
Thomas Petazzoni71479782019-02-07 17:28:56 +01002602
Maxime Ripard542f3612019-03-14 20:32:50 +01002603 switch (mode) {
2604 case PIN_CONFIG_BIAS_PULL_DOWN:
2605 case PIN_CONFIG_BIAS_PULL_UP:
2606 arg = 1;
2607 break;
2608
2609 default:
2610 arg = 0;
2611 }
2612
2613 config = PIN_CONF_PACKED(mode, arg);
Thomas Petazzoni71479782019-02-07 17:28:56 +01002614 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2615}
2616
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002617/**
2618 * gpiod_direction_input - set the GPIO direction to input
2619 * @desc: GPIO to set to input
2620 *
2621 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2622 * be called safely on it.
2623 *
2624 * Return 0 in case of success, else an error code.
2625 */
2626int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002627{
David Brownelld2876d02008-02-04 22:28:20 -08002628 struct gpio_chip *chip;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002629 int status = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002630
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002631 VALIDATE_DESC(desc);
2632 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002633
Linus Walleije48d1942018-09-25 09:54:14 +02002634 /*
2635 * It is legal to have no .get() and .direction_input() specified if
2636 * the chip is output-only, but you can't specify .direction_input()
2637 * and not support the .get() operation, that doesn't make sense.
2638 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002639 if (!chip->get && chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002640 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002641 "%s: missing get() but have direction_input()\n",
2642 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002643 return -EIO;
2644 }
2645
Linus Walleije48d1942018-09-25 09:54:14 +02002646 /*
2647 * If we have a .direction_input() callback, things are simple,
2648 * just call it. Else we are some input-only chip so try to check the
2649 * direction (if .get_direction() is supported) else we silently
2650 * assume we are in input mode after this.
2651 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002652 if (chip->direction_input) {
2653 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
2654 } else if (chip->get_direction &&
2655 (chip->get_direction(chip, gpio_chip_hwgpio(desc)) != 1)) {
2656 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002657 "%s: missing direction_input() operation and line is output\n",
2658 __func__);
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002659 return -EIO;
2660 }
David Brownelld2876d02008-02-04 22:28:20 -08002661 if (status == 0)
2662 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002663
Thomas Petazzonid4499912019-02-07 17:28:58 +01002664 if (test_bit(FLAG_PULL_UP, &desc->flags))
2665 gpio_set_config(chip, gpio_chip_hwgpio(desc),
2666 PIN_CONFIG_BIAS_PULL_UP);
2667 else if (test_bit(FLAG_PULL_DOWN, &desc->flags))
2668 gpio_set_config(chip, gpio_chip_hwgpio(desc),
2669 PIN_CONFIG_BIAS_PULL_DOWN);
2670
Alexandre Courbot372e7222013-02-03 01:29:29 +09002671 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002672
David Brownelld2876d02008-02-04 22:28:20 -08002673 return status;
2674}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002675EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002676
Linus Walleijfac9d882017-09-26 20:58:28 +02002677static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002678{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002679 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002680 int val = !!value;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002681 int ret = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002682
Linus Walleije48d1942018-09-25 09:54:14 +02002683 /*
2684 * It's OK not to specify .direction_output() if the gpiochip is
2685 * output-only, but if there is then not even a .set() operation it
2686 * is pretty tricky to drive the output line.
2687 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002688 if (!gc->set && !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002689 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002690 "%s: missing set() and direction_output() operations\n",
2691 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002692 return -EIO;
2693 }
2694
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002695 if (gc->direction_output) {
2696 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2697 } else {
Linus Walleije48d1942018-09-25 09:54:14 +02002698 /* Check that we are in output mode if we can */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002699 if (gc->get_direction &&
2700 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2701 gpiod_warn(desc,
2702 "%s: missing direction_output() operation\n",
2703 __func__);
2704 return -EIO;
2705 }
Linus Walleije48d1942018-09-25 09:54:14 +02002706 /*
2707 * If we can't actively set the direction, we are some
2708 * output-only chip, so just drive the output as desired.
2709 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002710 gc->set(gc, gpio_chip_hwgpio(desc), val);
2711 }
2712
Linus Walleijc663e5f2016-03-22 10:51:16 +01002713 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002714 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002715 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002716 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2717 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002718}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002719
2720/**
2721 * gpiod_direction_output_raw - set the GPIO direction to output
2722 * @desc: GPIO to set to output
2723 * @value: initial output value of the GPIO
2724 *
2725 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2726 * be called safely on it. The initial value of the output must be specified
2727 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2728 *
2729 * Return 0 in case of success, else an error code.
2730 */
2731int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2732{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002733 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02002734 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002735}
2736EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2737
2738/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302739 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002740 * @desc: GPIO to set to output
2741 * @value: initial output value of the GPIO
2742 *
2743 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2744 * be called safely on it. The initial value of the output must be specified
2745 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2746 * account.
2747 *
2748 * Return 0 in case of success, else an error code.
2749 */
2750int gpiod_direction_output(struct gpio_desc *desc, int value)
2751{
Vladimir Zapolskiy30322bc2017-12-21 18:37:24 +02002752 struct gpio_chip *gc;
Linus Walleij02e47982017-09-26 21:20:23 +02002753 int ret;
2754
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002755 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002756 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2757 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002758 else
2759 value = !!value;
Linus Walleij02e47982017-09-26 21:20:23 +02002760
Hans Verkuil4e9439d2018-09-08 11:23:16 +02002761 /* GPIOs used for enabled IRQs shall not be set as output */
2762 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2763 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
Linus Walleij02e47982017-09-26 21:20:23 +02002764 gpiod_err(desc,
2765 "%s: tried to set a GPIO tied to an IRQ as output\n",
2766 __func__);
2767 return -EIO;
2768 }
2769
Vladimir Zapolskiy30322bc2017-12-21 18:37:24 +02002770 gc = desc->gdev->chip;
Linus Walleij02e47982017-09-26 21:20:23 +02002771 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2772 /* First see if we can enable open drain in hardware */
Thomas Petazzoni71479782019-02-07 17:28:56 +01002773 ret = gpio_set_config(gc, gpio_chip_hwgpio(desc),
2774 PIN_CONFIG_DRIVE_OPEN_DRAIN);
Linus Walleij02e47982017-09-26 21:20:23 +02002775 if (!ret)
2776 goto set_output_value;
2777 /* Emulate open drain by not actively driving the line high */
2778 if (value)
2779 return gpiod_direction_input(desc);
2780 }
2781 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
Thomas Petazzoni71479782019-02-07 17:28:56 +01002782 ret = gpio_set_config(gc, gpio_chip_hwgpio(desc),
2783 PIN_CONFIG_DRIVE_OPEN_SOURCE);
Linus Walleij02e47982017-09-26 21:20:23 +02002784 if (!ret)
2785 goto set_output_value;
2786 /* Emulate open source by not actively driving the line low */
2787 if (!value)
2788 return gpiod_direction_input(desc);
2789 } else {
Thomas Petazzoni71479782019-02-07 17:28:56 +01002790 gpio_set_config(gc, gpio_chip_hwgpio(desc),
2791 PIN_CONFIG_DRIVE_PUSH_PULL);
Linus Walleij02e47982017-09-26 21:20:23 +02002792 }
2793
2794set_output_value:
Linus Walleijfac9d882017-09-26 20:58:28 +02002795 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002796}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002797EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002798
Felipe Balbic4b5be92010-05-26 14:42:23 -07002799/**
Thierry Reding950d55f52017-07-24 16:57:22 +02002800 * gpiod_set_debounce - sets @debounce time for a GPIO
2801 * @desc: descriptor of the GPIO for which to set debounce time
2802 * @debounce: debounce time in microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002803 *
Thierry Reding950d55f52017-07-24 16:57:22 +02002804 * Returns:
2805 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2806 * debounce time.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002807 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002808int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002809{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002810 struct gpio_chip *chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002811 unsigned long config;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002812
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002813 VALIDATE_DESC(desc);
2814 chip = desc->gdev->chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002815 if (!chip->set || !chip->set_config) {
Mark Brown6424de52013-09-09 10:33:49 +01002816 gpiod_dbg(desc,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002817 "%s: missing set() or set_config() operations\n",
Mark Brown6424de52013-09-09 10:33:49 +01002818 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002819 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002820 }
2821
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002822 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
Andrew Jefferyfa59dd232019-03-26 15:19:54 +10302823 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002824}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002825EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002826
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002827/**
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302828 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2829 * @desc: descriptor of the GPIO for which to configure persistence
2830 * @transitory: True to lose state on suspend or reset, false for persistence
2831 *
2832 * Returns:
2833 * 0 on success, otherwise a negative error code.
2834 */
2835int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2836{
2837 struct gpio_chip *chip;
2838 unsigned long packed;
2839 int gpio;
2840 int rc;
2841
Vladimir Zapolskiy156dd392017-12-21 18:37:35 +02002842 VALIDATE_DESC(desc);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302843 /*
2844 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2845 * persistence state.
2846 */
2847 if (transitory)
2848 set_bit(FLAG_TRANSITORY, &desc->flags);
2849 else
2850 clear_bit(FLAG_TRANSITORY, &desc->flags);
2851
2852 /* If the driver supports it, set the persistence state now */
2853 chip = desc->gdev->chip;
2854 if (!chip->set_config)
2855 return 0;
2856
2857 packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE,
2858 !transitory);
2859 gpio = gpio_chip_hwgpio(desc);
Andrew Jefferyfa59dd232019-03-26 15:19:54 +10302860 rc = chip->set_config(chip, gpio, packed);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302861 if (rc == -ENOTSUPP) {
2862 dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n",
2863 gpio);
2864 return 0;
2865 }
2866
2867 return rc;
2868}
2869EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2870
2871/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002872 * gpiod_is_active_low - test whether a GPIO is active-low or not
2873 * @desc: the gpio descriptor to test
2874 *
2875 * Returns 1 if the GPIO is active-low, 0 otherwise.
2876 */
2877int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002878{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002879 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002880 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002881}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002882EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002883
2884/* I/O calls are only valid after configuration completed; the relevant
2885 * "is this a valid GPIO" error checks should already have been done.
2886 *
2887 * "Get" operations are often inlinable as reading a pin value register,
2888 * and masking the relevant bit in that register.
2889 *
2890 * When "set" operations are inlinable, they involve writing that mask to
2891 * one register to set a low value, or a different register to set it high.
2892 * Otherwise locking is needed, so there may be little value to inlining.
2893 *
2894 *------------------------------------------------------------------------
2895 *
2896 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2897 * have requested the GPIO. That can include implicit requesting by
2898 * a direction setting call. Marking a gpio as requested locks its chip
2899 * in memory, guaranteeing that these table lookups need no more locking
2900 * and that gpiochip_remove() will fail.
2901 *
2902 * REVISIT when debugging, consider adding some instrumentation to ensure
2903 * that the GPIO was actually requested.
2904 */
2905
Linus Walleijfac9d882017-09-26 20:58:28 +02002906static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002907{
2908 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002909 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002910 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002911
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002912 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002913 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002914 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002915 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002916 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002917 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002918}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002919
Lukas Wunnereec1d562017-10-12 12:40:10 +02002920static int gpio_chip_get_multiple(struct gpio_chip *chip,
2921 unsigned long *mask, unsigned long *bits)
2922{
2923 if (chip->get_multiple) {
2924 return chip->get_multiple(chip, mask, bits);
2925 } else if (chip->get) {
2926 int i, value;
2927
2928 for_each_set_bit(i, mask, chip->ngpio) {
2929 value = chip->get(chip, i);
2930 if (value < 0)
2931 return value;
2932 __assign_bit(i, bits, value);
2933 }
2934 return 0;
2935 }
2936 return -EIO;
2937}
2938
2939int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2940 unsigned int array_size,
2941 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002942 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002943 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02002944{
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002945 int err, i = 0;
2946
2947 /*
2948 * Validate array_info against desc_array and its size.
2949 * It should immediately follow desc_array if both
2950 * have been obtained from the same gpiod_get_array() call.
2951 */
2952 if (array_info && array_info->desc == desc_array &&
2953 array_size <= array_info->size &&
2954 (void *)array_info == desc_array + array_info->size) {
2955 if (!can_sleep)
2956 WARN_ON(array_info->chip->can_sleep);
2957
2958 err = gpio_chip_get_multiple(array_info->chip,
2959 array_info->get_mask,
2960 value_bitmap);
2961 if (err)
2962 return err;
2963
2964 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2965 bitmap_xor(value_bitmap, value_bitmap,
2966 array_info->invert_mask, array_size);
2967
2968 if (bitmap_full(array_info->get_mask, array_size))
2969 return 0;
2970
2971 i = find_first_zero_bit(array_info->get_mask, array_size);
2972 } else {
2973 array_info = NULL;
2974 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02002975
2976 while (i < array_size) {
2977 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07002978 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
2979 unsigned long *mask, *bits;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002980 int first, j, ret;
2981
Laura Abbott30277432018-05-21 10:57:07 -07002982 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
2983 mask = fastpath;
2984 } else {
2985 mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
2986 sizeof(*mask),
2987 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
2988 if (!mask)
2989 return -ENOMEM;
2990 }
2991
2992 bits = mask + BITS_TO_LONGS(chip->ngpio);
2993 bitmap_zero(mask, chip->ngpio);
2994
Lukas Wunnereec1d562017-10-12 12:40:10 +02002995 if (!can_sleep)
2996 WARN_ON(chip->can_sleep);
2997
2998 /* collect all inputs belonging to the same chip */
2999 first = i;
Lukas Wunnereec1d562017-10-12 12:40:10 +02003000 do {
3001 const struct gpio_desc *desc = desc_array[i];
3002 int hwgpio = gpio_chip_hwgpio(desc);
3003
3004 __set_bit(hwgpio, mask);
3005 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003006
3007 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02003008 i = find_next_zero_bit(array_info->get_mask,
3009 array_size, i);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003010 } while ((i < array_size) &&
3011 (desc_array[i]->gdev->chip == chip));
3012
3013 ret = gpio_chip_get_multiple(chip, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07003014 if (ret) {
3015 if (mask != fastpath)
3016 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003017 return ret;
Laura Abbott30277432018-05-21 10:57:07 -07003018 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02003019
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003020 for (j = first; j < i; ) {
Lukas Wunnereec1d562017-10-12 12:40:10 +02003021 const struct gpio_desc *desc = desc_array[j];
3022 int hwgpio = gpio_chip_hwgpio(desc);
3023 int value = test_bit(hwgpio, bits);
3024
3025 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3026 value = !value;
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003027 __assign_bit(j, value_bitmap, value);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003028 trace_gpio_value(desc_to_gpio(desc), 1, value);
Janusz Krzysztofik799d5eb2018-09-29 14:20:22 +02003029 j++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003030
3031 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02003032 j = find_next_zero_bit(array_info->get_mask, i,
3033 j);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003034 }
Laura Abbott30277432018-05-21 10:57:07 -07003035
3036 if (mask != fastpath)
3037 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003038 }
3039 return 0;
3040}
3041
David Brownelld2876d02008-02-04 22:28:20 -08003042/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003043 * gpiod_get_raw_value() - return a gpio's raw value
3044 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08003045 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003046 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003047 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003048 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003049 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003050 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003051 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003052int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003053{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003054 VALIDATE_DESC(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003055 /* Should be using gpiod_get_raw_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003056 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02003057 return gpiod_get_raw_value_commit(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003058}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003059EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08003060
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003061/**
3062 * gpiod_get_value() - return a gpio's value
3063 * @desc: gpio whose value will be returned
3064 *
3065 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003066 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003067 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003068 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003069 * complain if the GPIO chip functions potentially sleep.
3070 */
3071int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003072{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003073 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003074
3075 VALIDATE_DESC(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003076 /* Should be using gpiod_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003077 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003078
Linus Walleijfac9d882017-09-26 20:58:28 +02003079 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003080 if (value < 0)
3081 return value;
3082
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003083 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3084 value = !value;
3085
3086 return value;
David Brownelld2876d02008-02-04 22:28:20 -08003087}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003088EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08003089
Lukas Wunnereec1d562017-10-12 12:40:10 +02003090/**
3091 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003092 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003093 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003094 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003095 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003096 *
3097 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3098 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3099 * else an error code.
3100 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003101 * This function can be called from contexts where we cannot sleep,
Lukas Wunnereec1d562017-10-12 12:40:10 +02003102 * and it will complain if the GPIO chip functions potentially sleep.
3103 */
3104int gpiod_get_raw_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003105 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003106 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003107 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003108{
3109 if (!desc_array)
3110 return -EINVAL;
3111 return gpiod_get_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003112 desc_array, array_info,
3113 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003114}
3115EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
3116
3117/**
3118 * gpiod_get_array_value() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003119 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003120 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003121 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003122 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003123 *
3124 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3125 * into account. Return 0 in case of success, else an error code.
3126 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003127 * This function can be called from contexts where we cannot sleep,
Lukas Wunnereec1d562017-10-12 12:40:10 +02003128 * and it will complain if the GPIO chip functions potentially sleep.
3129 */
3130int gpiod_get_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003131 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003132 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003133 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003134{
3135 if (!desc_array)
3136 return -EINVAL;
3137 return gpiod_get_array_value_complex(false, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003138 desc_array, array_info,
3139 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003140}
3141EXPORT_SYMBOL_GPL(gpiod_get_array_value);
3142
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303143/*
Linus Walleijfac9d882017-09-26 20:58:28 +02003144 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003145 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07003146 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303147 */
Linus Walleijfac9d882017-09-26 20:58:28 +02003148static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303149{
3150 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003151 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003152 int offset = gpio_chip_hwgpio(desc);
3153
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303154 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003155 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303156 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003157 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303158 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003159 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303160 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003161 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303162 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09003163 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303164 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01003165 gpiod_err(desc,
3166 "%s: Error in set_value for open drain err %d\n",
3167 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303168}
3169
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303170/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003171 * _gpio_set_open_source_value() - Set the open source gpio's value.
3172 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07003173 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303174 */
Linus Walleijfac9d882017-09-26 20:58:28 +02003175static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303176{
3177 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003178 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003179 int offset = gpio_chip_hwgpio(desc);
3180
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303181 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003182 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303183 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003184 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303185 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003186 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303187 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003188 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303189 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09003190 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303191 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01003192 gpiod_err(desc,
3193 "%s: Error in set_value for open source err %d\n",
3194 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303195}
3196
Linus Walleijfac9d882017-09-26 20:58:28 +02003197static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08003198{
3199 struct gpio_chip *chip;
3200
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003201 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003202 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleij02e47982017-09-26 21:20:23 +02003203 chip->set(chip, gpio_chip_hwgpio(desc), value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003204}
3205
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003206/*
3207 * set multiple outputs on the same chip;
3208 * use the chip's set_multiple function if available;
3209 * otherwise set the outputs sequentially;
3210 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
3211 * defines which outputs are to be changed
3212 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
3213 * defines the values the outputs specified by mask are to be set to
3214 */
3215static void gpio_chip_set_multiple(struct gpio_chip *chip,
3216 unsigned long *mask, unsigned long *bits)
3217{
3218 if (chip->set_multiple) {
3219 chip->set_multiple(chip, mask, bits);
3220 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02003221 unsigned int i;
3222
3223 /* set outputs if the corresponding mask bit is set */
3224 for_each_set_bit(i, mask, chip->ngpio)
3225 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003226 }
3227}
3228
Laura Abbott30277432018-05-21 10:57:07 -07003229int gpiod_set_array_value_complex(bool raw, bool can_sleep,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003230 unsigned int array_size,
3231 struct gpio_desc **desc_array,
3232 struct gpio_array *array_info,
3233 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003234{
3235 int i = 0;
3236
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003237 /*
3238 * Validate array_info against desc_array and its size.
3239 * It should immediately follow desc_array if both
3240 * have been obtained from the same gpiod_get_array() call.
3241 */
3242 if (array_info && array_info->desc == desc_array &&
3243 array_size <= array_info->size &&
3244 (void *)array_info == desc_array + array_info->size) {
3245 if (!can_sleep)
3246 WARN_ON(array_info->chip->can_sleep);
3247
3248 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
3249 bitmap_xor(value_bitmap, value_bitmap,
3250 array_info->invert_mask, array_size);
3251
3252 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
3253 value_bitmap);
3254
3255 if (bitmap_full(array_info->set_mask, array_size))
3256 return 0;
3257
3258 i = find_first_zero_bit(array_info->set_mask, array_size);
3259 } else {
3260 array_info = NULL;
3261 }
3262
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003263 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003264 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07003265 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
3266 unsigned long *mask, *bits;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003267 int count = 0;
3268
Laura Abbott30277432018-05-21 10:57:07 -07003269 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
3270 mask = fastpath;
3271 } else {
3272 mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
3273 sizeof(*mask),
3274 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
3275 if (!mask)
3276 return -ENOMEM;
3277 }
3278
3279 bits = mask + BITS_TO_LONGS(chip->ngpio);
3280 bitmap_zero(mask, chip->ngpio);
3281
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003282 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003283 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003284
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003285 do {
3286 struct gpio_desc *desc = desc_array[i];
3287 int hwgpio = gpio_chip_hwgpio(desc);
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003288 int value = test_bit(i, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003289
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003290 /*
3291 * Pins applicable for fast input but not for
3292 * fast output processing may have been already
3293 * inverted inside the fast path, skip them.
3294 */
3295 if (!raw && !(array_info &&
3296 test_bit(i, array_info->invert_mask)) &&
3297 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003298 value = !value;
3299 trace_gpio_value(desc_to_gpio(desc), 0, value);
3300 /*
3301 * collect all normal outputs belonging to the same chip
3302 * open drain and open source outputs are set individually
3303 */
Linus Walleij02e47982017-09-26 21:20:23 +02003304 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02003305 gpio_set_open_drain_value_commit(desc, value);
Linus Walleij02e47982017-09-26 21:20:23 +02003306 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02003307 gpio_set_open_source_value_commit(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003308 } else {
3309 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003310 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003311 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003312 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003313 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003314 count++;
3315 }
3316 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003317
3318 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02003319 i = find_next_zero_bit(array_info->set_mask,
3320 array_size, i);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003321 } while ((i < array_size) &&
3322 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003323 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003324 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003325 gpio_chip_set_multiple(chip, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07003326
3327 if (mask != fastpath)
3328 kfree(mask);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003329 }
Laura Abbott30277432018-05-21 10:57:07 -07003330 return 0;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003331}
3332
David Brownelld2876d02008-02-04 22:28:20 -08003333/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003334 * gpiod_set_raw_value() - assign a gpio's raw value
3335 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08003336 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08003337 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003338 * Set the raw value of the GPIO, i.e. the value of its physical line without
3339 * regard for its ACTIVE_LOW status.
3340 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003341 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003342 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003343 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003344void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003345{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003346 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003347 /* Should be using gpiod_set_raw_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003348 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02003349 gpiod_set_raw_value_commit(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003350}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003351EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08003352
3353/**
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003354 * gpiod_set_value_nocheck() - set a GPIO line value without checking
3355 * @desc: the descriptor to set the value on
3356 * @value: value to set
3357 *
3358 * This sets the value of a GPIO line backing a descriptor, applying
3359 * different semantic quirks like active low and open drain/source
3360 * handling.
3361 */
3362static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3363{
3364 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3365 value = !value;
3366 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3367 gpio_set_open_drain_value_commit(desc, value);
3368 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3369 gpio_set_open_source_value_commit(desc, value);
3370 else
3371 gpiod_set_raw_value_commit(desc, value);
3372}
3373
3374/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003375 * gpiod_set_value() - assign a gpio's value
3376 * @desc: gpio whose value will be assigned
3377 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08003378 *
Linus Walleij02e47982017-09-26 21:20:23 +02003379 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3380 * OPEN_DRAIN and OPEN_SOURCE flags into account.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003381 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003382 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003383 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003384 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003385void gpiod_set_value(struct gpio_desc *desc, int value)
3386{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003387 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003388 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003389 WARN_ON(desc->gdev->chip->can_sleep);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003390 gpiod_set_value_nocheck(desc, value);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003391}
3392EXPORT_SYMBOL_GPL(gpiod_set_value);
3393
3394/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003395 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003396 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003397 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003398 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003399 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003400 *
3401 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3402 * without regard for their ACTIVE_LOW status.
3403 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003404 * This function can be called from contexts where we cannot sleep, and will
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003405 * complain if the GPIO chip functions potentially sleep.
3406 */
Laura Abbott30277432018-05-21 10:57:07 -07003407int gpiod_set_raw_array_value(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003408 struct gpio_desc **desc_array,
3409 struct gpio_array *array_info,
3410 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003411{
3412 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003413 return -EINVAL;
3414 return gpiod_set_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003415 desc_array, array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003416}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003417EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003418
3419/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003420 * gpiod_set_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003421 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003422 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003423 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003424 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003425 *
3426 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3427 * into account.
3428 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003429 * This function can be called from contexts where we cannot sleep, and will
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003430 * complain if the GPIO chip functions potentially sleep.
3431 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003432int gpiod_set_array_value(unsigned int array_size,
3433 struct gpio_desc **desc_array,
3434 struct gpio_array *array_info,
3435 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003436{
3437 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003438 return -EINVAL;
3439 return gpiod_set_array_value_complex(false, false, array_size,
3440 desc_array, array_info,
3441 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003442}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003443EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003444
3445/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003446 * gpiod_cansleep() - report whether gpio value access may sleep
3447 * @desc: gpio to check
3448 *
3449 */
3450int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003451{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003452 VALIDATE_DESC(desc);
3453 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003454}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003455EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003456
David Brownell0f6d5042008-10-15 22:03:14 -07003457/**
Linus Walleij90b39402e2018-06-01 13:21:27 +02003458 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3459 * @desc: gpio to set the consumer name on
3460 * @name: the new consumer name
3461 */
Muchun Song18534df2018-11-01 21:12:50 +08003462int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
Linus Walleij90b39402e2018-06-01 13:21:27 +02003463{
Muchun Song18534df2018-11-01 21:12:50 +08003464 VALIDATE_DESC(desc);
3465 if (name) {
3466 name = kstrdup_const(name, GFP_KERNEL);
3467 if (!name)
3468 return -ENOMEM;
3469 }
3470
3471 kfree_const(desc->label);
3472 desc_set_label(desc, name);
3473
3474 return 0;
Linus Walleij90b39402e2018-06-01 13:21:27 +02003475}
3476EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3477
3478/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003479 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3480 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07003481 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003482 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3483 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07003484 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003485int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07003486{
Linus Walleij4c37ce82016-05-02 13:13:10 +02003487 struct gpio_chip *chip;
3488 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07003489
Linus Walleij79bb71b2016-06-15 22:57:38 +02003490 /*
3491 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3492 * requires this function to not return zero on an invalid descriptor
3493 * but rather a negative error number.
3494 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02003495 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02003496 return -EINVAL;
3497
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003498 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003499 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02003500 if (chip->to_irq) {
3501 int retirq = chip->to_irq(chip, offset);
3502
3503 /* Zero means NO_IRQ */
3504 if (!retirq)
3505 return -ENXIO;
3506
3507 return retirq;
3508 }
3509 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003510}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003511EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003512
Linus Walleijd468bf92013-09-24 11:54:38 +02003513/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003514 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003515 * @chip: the chip the GPIO to lock belongs to
3516 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003517 *
3518 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08003519 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08003520 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003521int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08003522{
Linus Walleij9c102802016-05-25 10:56:03 +02003523 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02003524
Linus Walleij9c102802016-05-25 10:56:03 +02003525 desc = gpiochip_get_desc(chip, offset);
3526 if (IS_ERR(desc))
3527 return PTR_ERR(desc);
3528
Linus Walleij60f83392016-11-12 15:01:09 +01003529 /*
3530 * If it's fast: flush the direction setting if something changed
3531 * behind our back
3532 */
3533 if (!chip->can_sleep && chip->get_direction) {
Andy Shevchenko80956792018-07-09 21:47:21 +03003534 int dir = gpiod_get_direction(desc);
Linus Walleij9c102802016-05-25 10:56:03 +02003535
Andy Shevchenko36b31272018-07-03 03:38:31 +03003536 if (dir < 0) {
3537 chip_err(chip, "%s: cannot get GPIO direction\n",
3538 __func__);
3539 return dir;
3540 }
Linus Walleij9c102802016-05-25 10:56:03 +02003541 }
3542
3543 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003544 chip_err(chip,
Andy Shevchenkob1911712018-07-03 03:39:03 +03003545 "%s: tried to flag a GPIO set as output for IRQ\n",
3546 __func__);
Linus Walleijd468bf92013-09-24 11:54:38 +02003547 return -EIO;
3548 }
3549
Linus Walleij9c102802016-05-25 10:56:03 +02003550 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003551 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003552
3553 /*
3554 * If the consumer has not set up a label (such as when the
3555 * IRQ is referenced from .to_irq()) we set up a label here
3556 * so it is clear this is used as an interrupt.
3557 */
3558 if (!desc->label)
3559 desc_set_label(desc, "interrupt");
3560
Linus Walleijd468bf92013-09-24 11:54:38 +02003561 return 0;
3562}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003563EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003564
Linus Walleijd468bf92013-09-24 11:54:38 +02003565/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003566 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003567 * @chip: the chip the GPIO to lock belongs to
3568 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003569 *
3570 * This is used directly by GPIO drivers that want to indicate
3571 * that a certain GPIO is no longer used exclusively for IRQ.
3572 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003573void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02003574{
Linus Walleij3940c342016-11-14 00:09:07 +01003575 struct gpio_desc *desc;
3576
3577 desc = gpiochip_get_desc(chip, offset);
3578 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02003579 return;
3580
Linus Walleij3940c342016-11-14 00:09:07 +01003581 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003582 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003583
3584 /* If we only had this marking, erase it */
3585 if (desc->label && !strcmp(desc->label, "interrupt"))
3586 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02003587}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003588EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003589
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003590void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset)
3591{
3592 struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3593
3594 if (!IS_ERR(desc) &&
3595 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3596 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3597}
3598EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3599
3600void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset)
3601{
3602 struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3603
3604 if (!IS_ERR(desc) &&
3605 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3606 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags));
3607 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3608 }
3609}
3610EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3611
Linus Walleij6cee3822016-02-11 20:16:45 +01003612bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
3613{
3614 if (offset >= chip->ngpio)
3615 return false;
3616
3617 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
3618}
3619EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3620
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003621int gpiochip_reqres_irq(struct gpio_chip *chip, unsigned int offset)
3622{
3623 int ret;
3624
3625 if (!try_module_get(chip->gpiodev->owner))
3626 return -ENODEV;
3627
3628 ret = gpiochip_lock_as_irq(chip, offset);
3629 if (ret) {
3630 chip_err(chip, "unable to lock HW IRQ %u for IRQ\n", offset);
3631 module_put(chip->gpiodev->owner);
3632 return ret;
3633 }
3634 return 0;
3635}
3636EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3637
3638void gpiochip_relres_irq(struct gpio_chip *chip, unsigned int offset)
3639{
3640 gpiochip_unlock_as_irq(chip, offset);
3641 module_put(chip->gpiodev->owner);
3642}
3643EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3644
Linus Walleij143b65d2016-02-16 15:41:42 +01003645bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
3646{
3647 if (offset >= chip->ngpio)
3648 return false;
3649
3650 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
3651}
3652EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3653
3654bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
3655{
3656 if (offset >= chip->ngpio)
3657 return false;
3658
3659 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
3660}
3661EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3662
Charles Keepax05f479b2017-05-23 15:47:29 +01003663bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
3664{
3665 if (offset >= chip->ngpio)
3666 return false;
3667
Andrew Jefferye10f72b2017-11-30 14:25:24 +10303668 return !test_bit(FLAG_TRANSITORY, &chip->gpiodev->descs[offset].flags);
Charles Keepax05f479b2017-05-23 15:47:29 +01003669}
3670EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3671
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003672/**
3673 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3674 * @desc: gpio whose value will be returned
3675 *
3676 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003677 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003678 *
3679 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003680 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003681int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003682{
David Brownelld2876d02008-02-04 22:28:20 -08003683 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003684 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003685 return gpiod_get_raw_value_commit(desc);
David Brownelld2876d02008-02-04 22:28:20 -08003686}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003687EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003688
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003689/**
3690 * gpiod_get_value_cansleep() - return a gpio's value
3691 * @desc: gpio whose value will be returned
3692 *
3693 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003694 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003695 *
3696 * This function is to be called from contexts that can sleep.
3697 */
3698int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003699{
David Brownelld2876d02008-02-04 22:28:20 -08003700 int value;
David Brownelld2876d02008-02-04 22:28:20 -08003701
3702 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003703 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003704 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003705 if (value < 0)
3706 return value;
3707
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003708 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3709 value = !value;
3710
David Brownelld2876d02008-02-04 22:28:20 -08003711 return value;
3712}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003713EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003714
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003715/**
Lukas Wunnereec1d562017-10-12 12:40:10 +02003716 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003717 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003718 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003719 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003720 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003721 *
3722 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3723 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3724 * else an error code.
3725 *
3726 * This function is to be called from contexts that can sleep.
3727 */
3728int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3729 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003730 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003731 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003732{
3733 might_sleep_if(extra_checks);
3734 if (!desc_array)
3735 return -EINVAL;
3736 return gpiod_get_array_value_complex(true, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003737 desc_array, array_info,
3738 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003739}
3740EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3741
3742/**
3743 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003744 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003745 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003746 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003747 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003748 *
3749 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3750 * into account. Return 0 in case of success, else an error code.
3751 *
3752 * This function is to be called from contexts that can sleep.
3753 */
3754int gpiod_get_array_value_cansleep(unsigned int array_size,
3755 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003756 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003757 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003758{
3759 might_sleep_if(extra_checks);
3760 if (!desc_array)
3761 return -EINVAL;
3762 return gpiod_get_array_value_complex(false, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003763 desc_array, array_info,
3764 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003765}
3766EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3767
3768/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003769 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3770 * @desc: gpio whose value will be assigned
3771 * @value: value to assign
3772 *
3773 * Set the raw value of the GPIO, i.e. the value of its physical line without
3774 * regard for its ACTIVE_LOW status.
3775 *
3776 * This function is to be called from contexts that can sleep.
3777 */
3778void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003779{
David Brownelld2876d02008-02-04 22:28:20 -08003780 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003781 VALIDATE_DESC_VOID(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003782 gpiod_set_raw_value_commit(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003783}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003784EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003785
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003786/**
3787 * gpiod_set_value_cansleep() - assign a gpio's value
3788 * @desc: gpio whose value will be assigned
3789 * @value: value to assign
3790 *
3791 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3792 * account
3793 *
3794 * This function is to be called from contexts that can sleep.
3795 */
3796void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003797{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003798 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003799 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003800 gpiod_set_value_nocheck(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003801}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003802EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003803
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003804/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003805 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003806 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003807 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003808 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003809 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003810 *
3811 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3812 * without regard for their ACTIVE_LOW status.
3813 *
3814 * This function is to be called from contexts that can sleep.
3815 */
Laura Abbott30277432018-05-21 10:57:07 -07003816int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003817 struct gpio_desc **desc_array,
3818 struct gpio_array *array_info,
3819 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003820{
3821 might_sleep_if(extra_checks);
3822 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003823 return -EINVAL;
3824 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003825 array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003826}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003827EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003828
3829/**
Dmitry Torokhov3946d182017-08-14 21:59:55 -07003830 * gpiod_add_lookup_tables() - register GPIO device consumers
3831 * @tables: list of tables of consumers to register
3832 * @n: number of tables in the list
3833 */
3834void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3835{
3836 unsigned int i;
3837
3838 mutex_lock(&gpio_lookup_lock);
3839
3840 for (i = 0; i < n; i++)
3841 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3842
3843 mutex_unlock(&gpio_lookup_lock);
3844}
3845
3846/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003847 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003848 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003849 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003850 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003851 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003852 *
3853 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3854 * into account.
3855 *
3856 * This function is to be called from contexts that can sleep.
3857 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003858int gpiod_set_array_value_cansleep(unsigned int array_size,
3859 struct gpio_desc **desc_array,
3860 struct gpio_array *array_info,
3861 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003862{
3863 might_sleep_if(extra_checks);
3864 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003865 return -EINVAL;
3866 return gpiod_set_array_value_complex(false, true, array_size,
3867 desc_array, array_info,
3868 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003869}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003870EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003871
3872/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003873 * gpiod_add_lookup_table() - register GPIO device consumers
3874 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003875 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003876void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003877{
3878 mutex_lock(&gpio_lookup_lock);
3879
Alexandre Courbotad824782013-12-03 12:20:11 +09003880 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003881
3882 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003883}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003884EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003885
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303886/**
3887 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3888 * @table: table of consumers to unregister
3889 */
3890void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3891{
3892 mutex_lock(&gpio_lookup_lock);
3893
3894 list_del(&table->list);
3895
3896 mutex_unlock(&gpio_lookup_lock);
3897}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003898EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303899
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02003900/**
3901 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3902 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3903 */
3904void gpiod_add_hogs(struct gpiod_hog *hogs)
3905{
3906 struct gpio_chip *chip;
3907 struct gpiod_hog *hog;
3908
3909 mutex_lock(&gpio_machine_hogs_mutex);
3910
3911 for (hog = &hogs[0]; hog->chip_label; hog++) {
3912 list_add_tail(&hog->list, &gpio_machine_hogs);
3913
3914 /*
3915 * The chip may have been registered earlier, so check if it
3916 * exists and, if so, try to hog the line now.
3917 */
3918 chip = find_chip_by_name(hog->chip_label);
3919 if (chip)
3920 gpiochip_machine_hog(chip, hog);
3921 }
3922
3923 mutex_unlock(&gpio_machine_hogs_mutex);
3924}
3925EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3926
Alexandre Courbotad824782013-12-03 12:20:11 +09003927static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3928{
3929 const char *dev_id = dev ? dev_name(dev) : NULL;
3930 struct gpiod_lookup_table *table;
3931
3932 mutex_lock(&gpio_lookup_lock);
3933
3934 list_for_each_entry(table, &gpio_lookup_list, list) {
3935 if (table->dev_id && dev_id) {
3936 /*
3937 * Valid strings on both ends, must be identical to have
3938 * a match
3939 */
3940 if (!strcmp(table->dev_id, dev_id))
3941 goto found;
3942 } else {
3943 /*
3944 * One of the pointers is NULL, so both must be to have
3945 * a match
3946 */
3947 if (dev_id == table->dev_id)
3948 goto found;
3949 }
3950 }
3951 table = NULL;
3952
3953found:
3954 mutex_unlock(&gpio_lookup_lock);
3955 return table;
3956}
3957
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003958static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Andy Shevchenkofed70262019-04-10 18:39:16 +03003959 unsigned int idx, unsigned long *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003960{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003961 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003962 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003963 struct gpiod_lookup *p;
3964
Alexandre Courbotad824782013-12-03 12:20:11 +09003965 table = gpiod_find_lookup_table(dev);
3966 if (!table)
3967 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003968
Alexandre Courbotad824782013-12-03 12:20:11 +09003969 for (p = &table->table[0]; p->chip_label; p++) {
3970 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003971
Alexandre Courbotad824782013-12-03 12:20:11 +09003972 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003973 if (p->idx != idx)
3974 continue;
3975
Alexandre Courbotad824782013-12-03 12:20:11 +09003976 /* If the lookup entry has a con_id, require exact match */
3977 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3978 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003979
Alexandre Courbotad824782013-12-03 12:20:11 +09003980 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003981
Alexandre Courbotad824782013-12-03 12:20:11 +09003982 if (!chip) {
Janusz Krzysztofik8853daf2018-07-04 00:18:19 +02003983 /*
3984 * As the lookup table indicates a chip with
3985 * p->chip_label should exist, assume it may
3986 * still appear later and let the interested
3987 * consumer be probed again or let the Deferred
3988 * Probe infrastructure handle the error.
3989 */
3990 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
3991 p->chip_label);
3992 return ERR_PTR(-EPROBE_DEFER);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003993 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003994
Alexandre Courbotad824782013-12-03 12:20:11 +09003995 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003996 dev_err(dev,
3997 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3998 idx, chip->ngpio, chip->label);
3999 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09004000 }
4001
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09004002 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09004003 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004004
4005 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09004006 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004007
4008 return desc;
4009}
4010
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004011static int dt_gpio_count(struct device *dev, const char *con_id)
4012{
4013 int ret;
4014 char propname[32];
4015 unsigned int i;
4016
4017 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
4018 if (con_id)
4019 snprintf(propname, sizeof(propname), "%s-%s",
4020 con_id, gpio_suffixes[i]);
4021 else
4022 snprintf(propname, sizeof(propname), "%s",
4023 gpio_suffixes[i]);
4024
4025 ret = of_gpio_named_count(dev->of_node, propname);
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02004026 if (ret > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004027 break;
4028 }
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02004029 return ret ? ret : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004030}
4031
4032static int platform_gpio_count(struct device *dev, const char *con_id)
4033{
4034 struct gpiod_lookup_table *table;
4035 struct gpiod_lookup *p;
4036 unsigned int count = 0;
4037
4038 table = gpiod_find_lookup_table(dev);
4039 if (!table)
4040 return -ENOENT;
4041
4042 for (p = &table->table[0]; p->chip_label; p++) {
4043 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
4044 (!con_id && !p->con_id))
4045 count++;
4046 }
4047 if (!count)
4048 return -ENOENT;
4049
4050 return count;
4051}
4052
4053/**
4054 * gpiod_count - return the number of GPIOs associated with a device / function
4055 * or -ENOENT if no GPIO has been assigned to the requested function
4056 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4057 * @con_id: function within the GPIO consumer
4058 */
4059int gpiod_count(struct device *dev, const char *con_id)
4060{
4061 int count = -ENOENT;
4062
4063 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
4064 count = dt_gpio_count(dev, con_id);
4065 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
4066 count = acpi_gpio_count(dev, con_id);
4067
4068 if (count < 0)
4069 count = platform_gpio_count(dev, con_id);
4070
4071 return count;
4072}
4073EXPORT_SYMBOL_GPL(gpiod_count);
4074
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004075/**
Thierry Reding08791622014-04-25 16:54:22 +02004076 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09004077 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004078 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004079 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004080 *
4081 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004082 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07004083 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004084 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004085struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004086 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004087{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004088 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004089}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004090EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004091
4092/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02004093 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
4094 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4095 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004096 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02004097 *
4098 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
4099 * the requested function it will return NULL. This is convenient for drivers
4100 * that need to handle optional GPIOs.
4101 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004102struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004103 const char *con_id,
4104 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02004105{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004106 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02004107}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004108EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02004109
Benoit Parrotf625d462015-02-02 11:44:44 -06004110
4111/**
4112 * gpiod_configure_flags - helper function to configure a given GPIO
4113 * @desc: gpio whose value will be assigned
4114 * @con_id: function within the GPIO consumer
Andy Shevchenkofed70262019-04-10 18:39:16 +03004115 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4116 * of_find_gpio() or of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06004117 * @dflags: gpiod_flags - optional GPIO initialization flags
4118 *
4119 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
4120 * requested function and/or index, or another IS_ERR() code if an error
4121 * occurred while trying to acquire the GPIO.
4122 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03004123int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02004124 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06004125{
4126 int status;
4127
Johan Hovold85b03b32016-07-03 18:32:05 +02004128 if (lflags & GPIO_ACTIVE_LOW)
4129 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02004130
Johan Hovold85b03b32016-07-03 18:32:05 +02004131 if (lflags & GPIO_OPEN_DRAIN)
4132 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02004133 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
4134 /*
4135 * This enforces open drain mode from the consumer side.
4136 * This is necessary for some busses like I2C, but the lookup
4137 * should *REALLY* have specified them as open drain in the
4138 * first place, so print a little warning here.
4139 */
4140 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4141 gpiod_warn(desc,
4142 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
4143 }
4144
Johan Hovold85b03b32016-07-03 18:32:05 +02004145 if (lflags & GPIO_OPEN_SOURCE)
4146 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304147
Thomas Petazzonid4499912019-02-07 17:28:58 +01004148 if ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) {
4149 gpiod_err(desc,
4150 "both pull-up and pull-down enabled, invalid configuration\n");
4151 return -EINVAL;
4152 }
4153
4154 if (lflags & GPIO_PULL_UP)
4155 set_bit(FLAG_PULL_UP, &desc->flags);
4156 else if (lflags & GPIO_PULL_DOWN)
4157 set_bit(FLAG_PULL_DOWN, &desc->flags);
4158
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304159 status = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
4160 if (status < 0)
4161 return status;
Johan Hovold85b03b32016-07-03 18:32:05 +02004162
Benoit Parrotf625d462015-02-02 11:44:44 -06004163 /* No particular flag request, return here... */
4164 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
4165 pr_debug("no flags found for %s\n", con_id);
4166 return 0;
4167 }
4168
4169 /* Process flags */
4170 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
4171 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01004172 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06004173 else
4174 status = gpiod_direction_input(desc);
4175
4176 return status;
4177}
4178
Thierry Reding29a1f2332014-04-25 17:10:06 +02004179/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004180 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02004181 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004182 * @con_id: function within the GPIO consumer
4183 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004184 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004185 *
4186 * This variant of gpiod_get() allows to access GPIOs other than the first
4187 * defined one for functions that define several GPIOs.
4188 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004189 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
4190 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07004191 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004192 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004193struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004194 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004195 unsigned int idx,
4196 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004197{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03004198 unsigned long lookupflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09004199 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004200 int status;
Linus Walleij7d18f0a2018-01-16 08:29:50 +01004201 /* Maybe we have a device name, maybe not */
4202 const char *devname = dev ? dev_name(dev) : "?";
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004203
4204 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
4205
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01004206 if (dev) {
4207 /* Using device tree? */
4208 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
4209 dev_dbg(dev, "using device tree for GPIO lookup\n");
4210 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
4211 } else if (ACPI_COMPANION(dev)) {
4212 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03004213 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01004214 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09004215 }
4216
4217 /*
4218 * Either we are not using DT or ACPI, or their lookup did not return
4219 * a result. In that case, use platform lookup as a fallback.
4220 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004221 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04004222 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004223 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004224 }
4225
4226 if (IS_ERR(desc)) {
Wang Dongsheng9d5a1f22018-02-27 00:12:13 -08004227 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004228 return desc;
4229 }
4230
Linus Walleij7d18f0a2018-01-16 08:29:50 +01004231 /*
4232 * If a connection label was passed use that, else attempt to use
4233 * the device name as label
4234 */
4235 status = gpiod_request(desc, con_id ? con_id : devname);
Linus Walleijb0ce7b292018-10-12 14:54:12 +02004236 if (status < 0) {
4237 if (status == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) {
4238 /*
4239 * This happens when there are several consumers for
4240 * the same GPIO line: we just return here without
4241 * further initialization. It is a bit if a hack.
4242 * This is necessary to support fixed regulators.
4243 *
4244 * FIXME: Make this more sane and safe.
4245 */
4246 dev_info(dev, "nonexclusive access to GPIO for %s\n",
4247 con_id ? con_id : devname);
4248 return desc;
4249 } else {
4250 return ERR_PTR(status);
4251 }
4252 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004253
Johan Hovold85b03b32016-07-03 18:32:05 +02004254 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004255 if (status < 0) {
4256 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
4257 gpiod_put(desc);
4258 return ERR_PTR(status);
4259 }
4260
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004261 return desc;
4262}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004263EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004264
4265/**
Linus Walleij6392cca2017-12-29 02:07:54 +01004266 * gpiod_get_from_of_node() - obtain a GPIO from an OF node
4267 * @node: handle of the OF node
4268 * @propname: name of the DT property representing the GPIO
4269 * @index: index of the GPIO to obtain for the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004270 * @dflags: GPIO initialization flags
Thierry Reding950d55f52017-07-24 16:57:22 +02004271 * @label: label to attach to the requested GPIO
Mika Westerberg40b73182014-10-21 13:33:59 +02004272 *
Thierry Reding950d55f52017-07-24 16:57:22 +02004273 * Returns:
Andy Shevchenkoff213782017-02-28 17:03:12 +02004274 * On successful request the GPIO pin is configured in accordance with
Waibel Georg025bf3772019-06-20 21:37:08 +00004275 * provided @dflags.
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004276 *
Mika Westerberg40b73182014-10-21 13:33:59 +02004277 * In case of error an ERR_PTR() is returned.
4278 */
Linus Walleij92542ed2017-12-29 22:52:02 +01004279struct gpio_desc *gpiod_get_from_of_node(struct device_node *node,
4280 const char *propname, int index,
4281 enum gpiod_flags dflags,
4282 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02004283{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03004284 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Colin Ian King40a3c9d2018-01-16 11:56:11 +00004285 struct gpio_desc *desc;
Linus Walleij6392cca2017-12-29 02:07:54 +01004286 enum of_gpio_flags flags;
Mika Westerberg40b73182014-10-21 13:33:59 +02004287 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004288 bool single_ended = false;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05304289 bool open_drain = false;
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304290 bool transitory = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02004291 int ret;
4292
Linus Walleij6392cca2017-12-29 02:07:54 +01004293 desc = of_get_named_gpiod_flags(node, propname,
4294 index, &flags);
Mika Westerberg40b73182014-10-21 13:33:59 +02004295
Linus Walleij6392cca2017-12-29 02:07:54 +01004296 if (!desc || IS_ERR(desc)) {
Linus Walleij6392cca2017-12-29 02:07:54 +01004297 return desc;
Mika Westerberg40b73182014-10-21 13:33:59 +02004298 }
4299
Linus Walleij6392cca2017-12-29 02:07:54 +01004300 active_low = flags & OF_GPIO_ACTIVE_LOW;
4301 single_ended = flags & OF_GPIO_SINGLE_ENDED;
4302 open_drain = flags & OF_GPIO_OPEN_DRAIN;
4303 transitory = flags & OF_GPIO_TRANSITORY;
Mika Westerberg40b73182014-10-21 13:33:59 +02004304
Alexander Steinb2987d72017-01-12 17:39:24 +01004305 ret = gpiod_request(desc, label);
Linus Walleijec757002018-12-06 13:43:44 +01004306 if (ret == -EBUSY && (flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE))
4307 return desc;
Johan Hovold85b03b32016-07-03 18:32:05 +02004308 if (ret)
4309 return ERR_PTR(ret);
4310
Mika Westerberg40b73182014-10-21 13:33:59 +02004311 if (active_low)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004312 lflags |= GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02004313
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004314 if (single_ended) {
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05304315 if (open_drain)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004316 lflags |= GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004317 else
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004318 lflags |= GPIO_OPEN_SOURCE;
4319 }
4320
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304321 if (transitory)
4322 lflags |= GPIO_TRANSITORY;
4323
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004324 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4325 if (ret < 0) {
4326 gpiod_put(desc);
4327 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004328 }
4329
Mika Westerberg40b73182014-10-21 13:33:59 +02004330 return desc;
4331}
Linus Walleij92542ed2017-12-29 22:52:02 +01004332EXPORT_SYMBOL(gpiod_get_from_of_node);
Linus Walleij6392cca2017-12-29 02:07:54 +01004333
4334/**
Mika Westerberg40b73182014-10-21 13:33:59 +02004335 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
4336 * @fwnode: handle of the firmware node
4337 * @propname: name of the firmware property representing the GPIO
Linus Walleij6392cca2017-12-29 02:07:54 +01004338 * @index: index of the GPIO to obtain for the consumer
Mika Westerberg40b73182014-10-21 13:33:59 +02004339 * @dflags: GPIO initialization flags
4340 * @label: label to attach to the requested GPIO
4341 *
4342 * This function can be used for drivers that get their configuration
Linus Walleij6392cca2017-12-29 02:07:54 +01004343 * from opaque firmware.
Thierry Reding29a1f2332014-04-25 17:10:06 +02004344 *
Linus Walleij6392cca2017-12-29 02:07:54 +01004345 * The function properly finds the corresponding GPIO using whatever is the
Thierry Reding29a1f2332014-04-25 17:10:06 +02004346 * underlying firmware interface and then makes sure that the GPIO
4347 * descriptor is requested before it is returned to the caller.
4348 *
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004349 * Returns:
Thierry Reding29a1f2332014-04-25 17:10:06 +02004350 * On successful request the GPIO pin is configured in accordance with
4351 * provided @dflags.
4352 *
4353 * In case of error an ERR_PTR() is returned.
4354 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004355struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Thierry Reding29a1f2332014-04-25 17:10:06 +02004356 const char *propname, int index,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004357 enum gpiod_flags dflags,
4358 const char *label)
Thierry Reding29a1f2332014-04-25 17:10:06 +02004359{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03004360 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004361 struct gpio_desc *desc = ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004362 int ret;
4363
David Brownelld2876d02008-02-04 22:28:20 -08004364 if (!fwnode)
David Brownelld2876d02008-02-04 22:28:20 -08004365 return ERR_PTR(-EINVAL);
4366
4367 if (is_of_node(fwnode)) {
Linus Walleij6392cca2017-12-29 02:07:54 +01004368 desc = gpiod_get_from_of_node(to_of_node(fwnode),
4369 propname, index,
4370 dflags,
4371 label);
4372 return desc;
David Brownelld2876d02008-02-04 22:28:20 -08004373 } else if (is_acpi_node(fwnode)) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09004374 struct acpi_gpio_info info;
David Brownelld2876d02008-02-04 22:28:20 -08004375
Linus Walleijd468bf92013-09-24 11:54:38 +02004376 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Linus Walleij6392cca2017-12-29 02:07:54 +01004377 if (IS_ERR(desc))
4378 return desc;
4379
4380 acpi_gpio_update_gpiod_flags(&dflags, &info);
Andy Shevchenko606be342019-04-10 18:39:20 +03004381 acpi_gpio_update_gpiod_lookup_flags(&lflags, &info);
Thierry Redingf9c4a312012-04-12 13:26:01 +02004382 }
4383
Linus Walleij6392cca2017-12-29 02:07:54 +01004384 /* Currently only ACPI takes this path */
Thierry Redingf9c4a312012-04-12 13:26:01 +02004385 ret = gpiod_request(desc, label);
4386 if (ret)
4387 return ERR_PTR(ret);
Linus Walleijd468bf92013-09-24 11:54:38 +02004388
Thierry Redingf9c4a312012-04-12 13:26:01 +02004389 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4390 if (ret < 0) {
4391 gpiod_put(desc);
4392 return ERR_PTR(ret);
4393 }
4394
4395 return desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02004396}
4397EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
David Brownelld2876d02008-02-04 22:28:20 -08004398
4399/**
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -07004400 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
David Brownelld8f388d82008-07-25 01:46:07 -07004401 * function
Linus Walleijd468bf92013-09-24 11:54:38 +02004402 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4403 * @con_id: function within the GPIO consumer
David Brownelld2876d02008-02-04 22:28:20 -08004404 * @index: index of the GPIO to obtain in the consumer
4405 * @flags: optional GPIO initialization flags
4406 *
4407 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4408 * specified index was assigned to the requested function it will return NULL.
4409 * This is convenient for drivers that need to handle optional GPIOs.
Grant Likely362432a2013-02-09 09:41:49 +00004410 */
David Brownelld8f388d82008-07-25 01:46:07 -07004411struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004412 const char *con_id,
Thierry Redingf9c4a312012-04-12 13:26:01 +02004413 unsigned int index,
4414 enum gpiod_flags flags)
4415{
Grant Likely362432a2013-02-09 09:41:49 +00004416 struct gpio_desc *desc;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004417
Grant Likely362432a2013-02-09 09:41:49 +00004418 desc = gpiod_get_index(dev, con_id, index, flags);
4419 if (IS_ERR(desc)) {
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004420 if (PTR_ERR(desc) == -ENOENT)
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004421 return NULL;
David Brownelld2876d02008-02-04 22:28:20 -08004422 }
4423
Benoit Parrotf625d462015-02-02 11:44:44 -06004424 return desc;
4425}
4426EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4427
4428/**
4429 * gpiod_hog - Hog the specified GPIO desc given the provided flags
4430 * @desc: gpio whose value will be assigned
4431 * @name: gpio line name
Andy Shevchenkofed70262019-04-10 18:39:16 +03004432 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4433 * of_find_gpio() or of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06004434 * @dflags: gpiod_flags - optional GPIO initialization flags
4435 */
4436int gpiod_hog(struct gpio_desc *desc, const char *name,
4437 unsigned long lflags, enum gpiod_flags dflags)
4438{
4439 struct gpio_chip *chip;
4440 struct gpio_desc *local_desc;
4441 int hwnum;
4442 int status;
4443
4444 chip = gpiod_to_chip(desc);
4445 hwnum = gpio_chip_hwgpio(desc);
4446
Linus Walleij5923ea62019-04-26 14:40:18 +02004447 local_desc = gpiochip_request_own_desc(chip, hwnum, name,
4448 lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06004449 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05304450 status = PTR_ERR(local_desc);
4451 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
4452 name, chip->label, hwnum, status);
4453 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06004454 }
4455
Benoit Parrotf625d462015-02-02 11:44:44 -06004456 /* Mark GPIO as hogged so it can be identified and removed later */
4457 set_bit(FLAG_IS_HOGGED, &desc->flags);
4458
4459 pr_info("GPIO line %d (%s) hogged as %s%s\n",
4460 desc_to_gpio(desc), name,
4461 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4462 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
4463 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
4464
4465 return 0;
4466}
4467
4468/**
4469 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4470 * @chip: gpio chip to act on
Benoit Parrotf625d462015-02-02 11:44:44 -06004471 */
4472static void gpiochip_free_hogs(struct gpio_chip *chip)
4473{
4474 int id;
4475
4476 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01004477 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
4478 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06004479 }
4480}
4481
4482/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004483 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4484 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4485 * @con_id: function within the GPIO consumer
4486 * @flags: optional GPIO initialization flags
4487 *
4488 * This function acquires all the GPIOs defined under a given function.
4489 *
4490 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4491 * no GPIO has been assigned to the requested function, or another IS_ERR()
4492 * code if an error occurred while trying to acquire the GPIOs.
4493 */
4494struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4495 const char *con_id,
4496 enum gpiod_flags flags)
4497{
4498 struct gpio_desc *desc;
4499 struct gpio_descs *descs;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004500 struct gpio_array *array_info = NULL;
4501 struct gpio_chip *chip;
4502 int count, bitmap_size;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004503
4504 count = gpiod_count(dev, con_id);
4505 if (count < 0)
4506 return ERR_PTR(count);
4507
Kees Cookacafe7e2018-05-08 13:45:50 -07004508 descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004509 if (!descs)
4510 return ERR_PTR(-ENOMEM);
4511
4512 for (descs->ndescs = 0; descs->ndescs < count; ) {
4513 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4514 if (IS_ERR(desc)) {
4515 gpiod_put_array(descs);
4516 return ERR_CAST(desc);
4517 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004518
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004519 descs->desc[descs->ndescs] = desc;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004520
4521 chip = gpiod_to_chip(desc);
4522 /*
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004523 * If pin hardware number of array member 0 is also 0, select
4524 * its chip as a candidate for fast bitmap processing path.
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004525 */
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004526 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004527 struct gpio_descs *array;
4528
4529 bitmap_size = BITS_TO_LONGS(chip->ngpio > count ?
4530 chip->ngpio : count);
4531
4532 array = kzalloc(struct_size(descs, desc, count) +
4533 struct_size(array_info, invert_mask,
4534 3 * bitmap_size), GFP_KERNEL);
4535 if (!array) {
4536 gpiod_put_array(descs);
4537 return ERR_PTR(-ENOMEM);
4538 }
4539
4540 memcpy(array, descs,
4541 struct_size(descs, desc, descs->ndescs + 1));
4542 kfree(descs);
4543
4544 descs = array;
4545 array_info = (void *)(descs->desc + count);
4546 array_info->get_mask = array_info->invert_mask +
4547 bitmap_size;
4548 array_info->set_mask = array_info->get_mask +
4549 bitmap_size;
4550
4551 array_info->desc = descs->desc;
4552 array_info->size = count;
4553 array_info->chip = chip;
4554 bitmap_set(array_info->get_mask, descs->ndescs,
4555 count - descs->ndescs);
4556 bitmap_set(array_info->set_mask, descs->ndescs,
4557 count - descs->ndescs);
4558 descs->info = array_info;
4559 }
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004560 /* Unmark array members which don't belong to the 'fast' chip */
4561 if (array_info && array_info->chip != chip) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004562 __clear_bit(descs->ndescs, array_info->get_mask);
4563 __clear_bit(descs->ndescs, array_info->set_mask);
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004564 }
4565 /*
4566 * Detect array members which belong to the 'fast' chip
4567 * but their pins are not in hardware order.
4568 */
4569 else if (array_info &&
4570 gpio_chip_hwgpio(desc) != descs->ndescs) {
4571 /*
4572 * Don't use fast path if all array members processed so
4573 * far belong to the same chip as this one but its pin
4574 * hardware number is different from its array index.
4575 */
4576 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4577 array_info = NULL;
4578 } else {
4579 __clear_bit(descs->ndescs,
4580 array_info->get_mask);
4581 __clear_bit(descs->ndescs,
4582 array_info->set_mask);
4583 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004584 } else if (array_info) {
4585 /* Exclude open drain or open source from fast output */
4586 if (gpiochip_line_is_open_drain(chip, descs->ndescs) ||
4587 gpiochip_line_is_open_source(chip, descs->ndescs))
4588 __clear_bit(descs->ndescs,
4589 array_info->set_mask);
4590 /* Identify 'fast' pins which require invertion */
4591 if (gpiod_is_active_low(desc))
4592 __set_bit(descs->ndescs,
4593 array_info->invert_mask);
4594 }
4595
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004596 descs->ndescs++;
4597 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004598 if (array_info)
4599 dev_dbg(dev,
4600 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4601 array_info->chip->label, array_info->size,
4602 *array_info->get_mask, *array_info->set_mask,
4603 *array_info->invert_mask);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004604 return descs;
4605}
4606EXPORT_SYMBOL_GPL(gpiod_get_array);
4607
4608/**
4609 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4610 * function
4611 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4612 * @con_id: function within the GPIO consumer
4613 * @flags: optional GPIO initialization flags
4614 *
4615 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4616 * assigned to the requested function it will return NULL.
4617 */
4618struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4619 const char *con_id,
4620 enum gpiod_flags flags)
4621{
4622 struct gpio_descs *descs;
4623
4624 descs = gpiod_get_array(dev, con_id, flags);
4625 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
4626 return NULL;
4627
4628 return descs;
4629}
4630EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4631
4632/**
David Brownelld2876d02008-02-04 22:28:20 -08004633 * gpiod_put - dispose of a GPIO descriptor
4634 * @desc: GPIO descriptor to dispose of
4635 *
4636 * No descriptor can be used after gpiod_put() has been called on it.
4637 */
4638void gpiod_put(struct gpio_desc *desc)
4639{
Andy Shevchenko1d7765b2019-03-26 17:21:14 +02004640 if (desc)
4641 gpiod_free(desc);
David Brownelld2876d02008-02-04 22:28:20 -08004642}
4643EXPORT_SYMBOL_GPL(gpiod_put);
4644
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004645/**
4646 * gpiod_put_array - dispose of multiple GPIO descriptors
4647 * @descs: struct gpio_descs containing an array of descriptors
4648 */
4649void gpiod_put_array(struct gpio_descs *descs)
4650{
4651 unsigned int i;
4652
4653 for (i = 0; i < descs->ndescs; i++)
4654 gpiod_put(descs->desc[i]);
4655
4656 kfree(descs);
4657}
4658EXPORT_SYMBOL_GPL(gpiod_put_array);
4659
Linus Walleij3c702e92015-10-21 15:29:53 +02004660static int __init gpiolib_dev_init(void)
4661{
4662 int ret;
4663
4664 /* Register GPIO sysfs bus */
Andy Shevchenkob1911712018-07-03 03:39:03 +03004665 ret = bus_register(&gpio_bus_type);
Linus Walleij3c702e92015-10-21 15:29:53 +02004666 if (ret < 0) {
4667 pr_err("gpiolib: could not register GPIO bus type\n");
4668 return ret;
4669 }
4670
4671 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
4672 if (ret < 0) {
4673 pr_err("gpiolib: failed to allocate char dev region\n");
4674 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07004675 } else {
4676 gpiolib_initialized = true;
4677 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02004678 }
4679 return ret;
4680}
4681core_initcall(gpiolib_dev_init);
4682
David Brownelld2876d02008-02-04 22:28:20 -08004683#ifdef CONFIG_DEBUG_FS
4684
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004685static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08004686{
4687 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004688 struct gpio_chip *chip = gdev->chip;
4689 unsigned gpio = gdev->base;
4690 struct gpio_desc *gdesc = &gdev->descs[0];
Linus Walleij90fd2272018-10-01 23:06:17 +02004691 bool is_out;
4692 bool is_irq;
4693 bool active_low;
David Brownelld2876d02008-02-04 22:28:20 -08004694
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004695 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02004696 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4697 if (gdesc->name) {
4698 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4699 gpio, gdesc->name);
4700 }
David Brownelld2876d02008-02-04 22:28:20 -08004701 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02004702 }
David Brownelld2876d02008-02-04 22:28:20 -08004703
4704 gpiod_get_direction(gdesc);
4705 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
4706 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Linus Walleij90fd2272018-10-01 23:06:17 +02004707 active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags);
4708 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s",
Markus Pargmannced433e2015-08-14 16:11:02 +02004709 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08004710 is_out ? "out" : "in ",
Andy Shevchenko1c22a252018-07-12 20:36:42 +03004711 chip->get ? (chip->get(chip, i) ? "hi" : "lo") : "? ",
Linus Walleij90fd2272018-10-01 23:06:17 +02004712 is_irq ? "IRQ " : "",
4713 active_low ? "ACTIVE LOW" : "");
David Brownelld2876d02008-02-04 22:28:20 -08004714 seq_printf(s, "\n");
4715 }
4716}
4717
4718static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4719{
4720 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004721 struct gpio_device *gdev = NULL;
David Brownelld2876d02008-02-04 22:28:20 -08004722 loff_t index = *pos;
4723
4724 s->private = "";
4725
4726 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004727 list_for_each_entry(gdev, &gpio_devices, list)
David Brownelld2876d02008-02-04 22:28:20 -08004728 if (index-- == 0) {
4729 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004730 return gdev;
David Brownelld2876d02008-02-04 22:28:20 -08004731 }
4732 spin_unlock_irqrestore(&gpio_lock, flags);
4733
4734 return NULL;
4735}
4736
4737static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4738{
4739 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004740 struct gpio_device *gdev = v;
David Brownelld2876d02008-02-04 22:28:20 -08004741 void *ret = NULL;
4742
4743 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004744 if (list_is_last(&gdev->list, &gpio_devices))
David Brownelld2876d02008-02-04 22:28:20 -08004745 ret = NULL;
4746 else
Linus Walleijff2b1352015-10-20 11:10:38 +02004747 ret = list_entry(gdev->list.next, struct gpio_device, list);
David Brownelld2876d02008-02-04 22:28:20 -08004748 spin_unlock_irqrestore(&gpio_lock, flags);
4749
4750 s->private = "\n";
4751 ++*pos;
4752
4753 return ret;
4754}
4755
4756static void gpiolib_seq_stop(struct seq_file *s, void *v)
4757{
4758}
4759
4760static int gpiolib_seq_show(struct seq_file *s, void *v)
4761{
Linus Walleijff2b1352015-10-20 11:10:38 +02004762 struct gpio_device *gdev = v;
4763 struct gpio_chip *chip = gdev->chip;
4764 struct device *parent;
David Brownelld2876d02008-02-04 22:28:20 -08004765
Linus Walleijff2b1352015-10-20 11:10:38 +02004766 if (!chip) {
4767 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4768 dev_name(&gdev->dev));
4769 return 0;
4770 }
4771
4772 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4773 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004774 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02004775 parent = chip->parent;
4776 if (parent)
4777 seq_printf(s, ", parent: %s/%s",
4778 parent->bus ? parent->bus->name : "no-bus",
4779 dev_name(parent));
David Brownelld2876d02008-02-04 22:28:20 -08004780 if (chip->label)
4781 seq_printf(s, ", %s", chip->label);
4782 if (chip->can_sleep)
4783 seq_printf(s, ", can sleep");
4784 seq_printf(s, ":\n");
4785
4786 if (chip->dbg_show)
4787 chip->dbg_show(s, chip);
4788 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004789 gpiolib_dbg_show(s, gdev);
David Brownelld2876d02008-02-04 22:28:20 -08004790
4791 return 0;
4792}
4793
4794static const struct seq_operations gpiolib_seq_ops = {
4795 .start = gpiolib_seq_start,
4796 .next = gpiolib_seq_next,
4797 .stop = gpiolib_seq_stop,
4798 .show = gpiolib_seq_show,
4799};
4800
4801static int gpiolib_open(struct inode *inode, struct file *file)
4802{
4803 return seq_open(file, &gpiolib_seq_ops);
4804}
4805
4806static const struct file_operations gpiolib_operations = {
4807 .owner = THIS_MODULE,
4808 .open = gpiolib_open,
4809 .read = seq_read,
4810 .llseek = seq_lseek,
4811 .release = seq_release,
4812};
4813
4814static int __init gpiolib_debugfs_init(void)
4815{
4816 /* /sys/kernel/debug/gpio */
Greg Kroah-Hartmanacc68b02019-06-18 17:50:45 +02004817 debugfs_create_file("gpio", S_IFREG | S_IRUGO, NULL, NULL,
4818 &gpiolib_operations);
David Brownelld2876d02008-02-04 22:28:20 -08004819 return 0;
4820}
4821subsys_initcall(gpiolib_debugfs_init);
4822
4823#endif /* DEBUG_FS */