blob: 47a67c4deed48474927049468561c6c46aabe02d [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 /*
539 * Do not allow OPEN_SOURCE & OPEN_DRAIN flags in a single request. If
540 * the hardware actually supports enabling both at the same time the
541 * electrical result would be disastrous.
542 */
543 if ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) &&
544 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE))
545 return -EINVAL;
546
Bartosz Golaszewski609aaf62017-10-16 11:32:30 +0200547 /* OPEN_DRAIN and OPEN_SOURCE flags only make sense for output mode. */
548 if (!(lflags & GPIOHANDLE_REQUEST_OUTPUT) &&
549 ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) ||
550 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)))
551 return -EINVAL;
552
Linus Walleijd7c51b42016-04-26 10:35:29 +0200553 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
554 if (!lh)
555 return -ENOMEM;
556 lh->gdev = gdev;
557 get_device(&gdev->dev);
558
559 /* Make sure this is terminated */
560 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
561 if (strlen(handlereq.consumer_label)) {
562 lh->label = kstrdup(handlereq.consumer_label,
563 GFP_KERNEL);
564 if (!lh->label) {
565 ret = -ENOMEM;
566 goto out_free_lh;
567 }
568 }
569
570 /* Request each GPIO */
571 for (i = 0; i < handlereq.lines; i++) {
572 u32 offset = handlereq.lineoffsets[i];
Linus Walleijd7c51b42016-04-26 10:35:29 +0200573 struct gpio_desc *desc;
574
Lars-Peter Clausene405f9f2016-10-18 16:54:01 +0200575 if (offset >= gdev->ngpio) {
576 ret = -EINVAL;
577 goto out_free_descs;
578 }
579
Linus Walleijd7c51b42016-04-26 10:35:29 +0200580 desc = &gdev->descs[offset];
581 ret = gpiod_request(desc, lh->label);
582 if (ret)
583 goto out_free_descs;
584 lh->descs[i] = desc;
Ricardo Ribalda Delgado19a4fbf2018-09-13 15:37:04 +0200585 count = i + 1;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200586
587 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
588 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
589 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
590 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
591 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
592 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
593
Andrew Jefferye10f72b2017-11-30 14:25:24 +1030594 ret = gpiod_set_transitory(desc, false);
595 if (ret < 0)
596 goto out_free_descs;
597
Linus Walleijd7c51b42016-04-26 10:35:29 +0200598 /*
599 * Lines have to be requested explicitly for input
600 * or output, else the line will be treated "as is".
601 */
602 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
603 int val = !!handlereq.default_values[i];
604
605 ret = gpiod_direction_output(desc, val);
606 if (ret)
607 goto out_free_descs;
608 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
609 ret = gpiod_direction_input(desc);
610 if (ret)
611 goto out_free_descs;
612 }
613 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
614 offset);
615 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200616 /* Let i point at the last handle */
617 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200618 lh->numdescs = handlereq.lines;
619
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200620 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200621 if (fd < 0) {
622 ret = fd;
623 goto out_free_descs;
624 }
625
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200626 file = anon_inode_getfile("gpio-linehandle",
627 &linehandle_fileops,
628 lh,
629 O_RDONLY | O_CLOEXEC);
630 if (IS_ERR(file)) {
631 ret = PTR_ERR(file);
632 goto out_put_unused_fd;
633 }
634
Linus Walleijd7c51b42016-04-26 10:35:29 +0200635 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200636 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200637 /*
638 * fput() will trigger the release() callback, so do not go onto
639 * the regular error cleanup path here.
640 */
641 fput(file);
642 put_unused_fd(fd);
643 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200644 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200645
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200646 fd_install(fd, file);
647
Linus Walleijd7c51b42016-04-26 10:35:29 +0200648 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
649 lh->numdescs);
650
651 return 0;
652
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200653out_put_unused_fd:
654 put_unused_fd(fd);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200655out_free_descs:
Timur Tabiab3dbcf2018-03-29 13:29:12 -0500656 for (i = 0; i < count; i++)
Linus Walleijd7c51b42016-04-26 10:35:29 +0200657 gpiod_free(lh->descs[i]);
658 kfree(lh->label);
659out_free_lh:
660 kfree(lh);
661 put_device(&gdev->dev);
662 return ret;
663}
664
Linus Walleij61f922d2016-06-02 11:30:15 +0200665/*
666 * GPIO line event management
667 */
668
669/**
670 * struct lineevent_state - contains the state of a userspace event
671 * @gdev: the GPIO device the event pertains to
672 * @label: consumer label used to tag descriptors
673 * @desc: the GPIO descriptor held by this event
674 * @eflags: the event flags this line was requested with
675 * @irq: the interrupt that trigger in response to events on this GPIO
676 * @wait: wait queue that handles blocking reads of events
677 * @events: KFIFO for the GPIO events
678 * @read_lock: mutex lock to protect reads from colliding with adding
679 * new events to the FIFO
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100680 * @timestamp: cache for the timestamp storing it between hardirq
681 * and IRQ thread, used to bring the timestamp close to the actual
682 * event
Linus Walleij61f922d2016-06-02 11:30:15 +0200683 */
684struct lineevent_state {
685 struct gpio_device *gdev;
686 const char *label;
687 struct gpio_desc *desc;
688 u32 eflags;
689 int irq;
690 wait_queue_head_t wait;
691 DECLARE_KFIFO(events, struct gpioevent_data, 16);
692 struct mutex read_lock;
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100693 u64 timestamp;
Linus Walleij61f922d2016-06-02 11:30:15 +0200694};
695
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200696#define GPIOEVENT_REQUEST_VALID_FLAGS \
697 (GPIOEVENT_REQUEST_RISING_EDGE | \
698 GPIOEVENT_REQUEST_FALLING_EDGE)
699
Al Viroafc9a422017-07-03 06:39:46 -0400700static __poll_t lineevent_poll(struct file *filep,
Linus Walleij61f922d2016-06-02 11:30:15 +0200701 struct poll_table_struct *wait)
702{
703 struct lineevent_state *le = filep->private_data;
Al Viroafc9a422017-07-03 06:39:46 -0400704 __poll_t events = 0;
Linus Walleij61f922d2016-06-02 11:30:15 +0200705
706 poll_wait(filep, &le->wait, wait);
707
708 if (!kfifo_is_empty(&le->events))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800709 events = EPOLLIN | EPOLLRDNORM;
Linus Walleij61f922d2016-06-02 11:30:15 +0200710
711 return events;
712}
713
714
715static ssize_t lineevent_read(struct file *filep,
716 char __user *buf,
717 size_t count,
718 loff_t *f_ps)
719{
720 struct lineevent_state *le = filep->private_data;
721 unsigned int copied;
722 int ret;
723
724 if (count < sizeof(struct gpioevent_data))
725 return -EINVAL;
726
727 do {
728 if (kfifo_is_empty(&le->events)) {
729 if (filep->f_flags & O_NONBLOCK)
730 return -EAGAIN;
731
732 ret = wait_event_interruptible(le->wait,
733 !kfifo_is_empty(&le->events));
734 if (ret)
735 return ret;
736 }
737
738 if (mutex_lock_interruptible(&le->read_lock))
739 return -ERESTARTSYS;
740 ret = kfifo_to_user(&le->events, buf, count, &copied);
741 mutex_unlock(&le->read_lock);
742
743 if (ret)
744 return ret;
745
746 /*
747 * If we couldn't read anything from the fifo (a different
748 * thread might have been faster) we either return -EAGAIN if
749 * the file descriptor is non-blocking, otherwise we go back to
750 * sleep and wait for more data to arrive.
751 */
752 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
753 return -EAGAIN;
754
755 } while (copied == 0);
756
757 return copied;
758}
759
760static int lineevent_release(struct inode *inode, struct file *filep)
761{
762 struct lineevent_state *le = filep->private_data;
763 struct gpio_device *gdev = le->gdev;
764
765 free_irq(le->irq, le);
766 gpiod_free(le->desc);
767 kfree(le->label);
768 kfree(le);
769 put_device(&gdev->dev);
770 return 0;
771}
772
773static long lineevent_ioctl(struct file *filep, unsigned int cmd,
774 unsigned long arg)
775{
776 struct lineevent_state *le = filep->private_data;
777 void __user *ip = (void __user *)arg;
778 struct gpiohandle_data ghd;
779
780 /*
781 * We can get the value for an event line but not set it,
782 * because it is input by definition.
783 */
784 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
785 int val;
786
Lars-Peter Clausend82aa4a2016-10-18 16:54:04 +0200787 memset(&ghd, 0, sizeof(ghd));
788
Linus Walleij61f922d2016-06-02 11:30:15 +0200789 val = gpiod_get_value_cansleep(le->desc);
790 if (val < 0)
791 return val;
792 ghd.values[0] = val;
793
794 if (copy_to_user(ip, &ghd, sizeof(ghd)))
795 return -EFAULT;
796
797 return 0;
798 }
799 return -EINVAL;
800}
801
802#ifdef CONFIG_COMPAT
803static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
804 unsigned long arg)
805{
806 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
807}
808#endif
809
810static const struct file_operations lineevent_fileops = {
811 .release = lineevent_release,
812 .read = lineevent_read,
813 .poll = lineevent_poll,
814 .owner = THIS_MODULE,
815 .llseek = noop_llseek,
816 .unlocked_ioctl = lineevent_ioctl,
817#ifdef CONFIG_COMPAT
818 .compat_ioctl = lineevent_ioctl_compat,
819#endif
820};
821
Ben Dooks33265b12016-06-17 16:03:13 +0100822static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200823{
824 struct lineevent_state *le = p;
825 struct gpioevent_data ge;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200826 int ret;
Linus Walleij61f922d2016-06-02 11:30:15 +0200827
Linus Walleij24bd3ef2018-01-22 13:19:28 +0100828 /* Do not leak kernel stack to userspace */
829 memset(&ge, 0, sizeof(ge));
830
Bartosz Golaszewski1033be52019-01-04 11:24:20 +0100831 /*
832 * We may be running from a nested threaded interrupt in which case
833 * we didn't get the timestamp from lineevent_irq_handler().
834 */
835 if (!le->timestamp)
836 ge.timestamp = ktime_get_real_ns();
837 else
838 ge.timestamp = le->timestamp;
Linus Walleij61f922d2016-06-02 11:30:15 +0200839
Bartosz Golaszewskiad537b82017-06-23 13:45:16 +0200840 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
841 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200842 int level = gpiod_get_value_cansleep(le->desc);
Linus Walleij61f922d2016-06-02 11:30:15 +0200843 if (level)
844 /* Emit low-to-high event */
845 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
846 else
847 /* Emit high-to-low event */
848 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200849 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200850 /* Emit low-to-high event */
851 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200852 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200853 /* Emit high-to-low event */
854 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200855 } else {
856 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200857 }
858
859 ret = kfifo_put(&le->events, ge);
860 if (ret != 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800861 wake_up_poll(&le->wait, EPOLLIN);
Linus Walleij61f922d2016-06-02 11:30:15 +0200862
863 return IRQ_HANDLED;
864}
865
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100866static irqreturn_t lineevent_irq_handler(int irq, void *p)
867{
868 struct lineevent_state *le = p;
869
870 /*
871 * Just store the timestamp in hardirq context so we get it as
872 * close in time as possible to the actual event.
873 */
874 le->timestamp = ktime_get_real_ns();
875
876 return IRQ_WAKE_THREAD;
877}
878
Linus Walleij61f922d2016-06-02 11:30:15 +0200879static int lineevent_create(struct gpio_device *gdev, void __user *ip)
880{
881 struct gpioevent_request eventreq;
882 struct lineevent_state *le;
883 struct gpio_desc *desc;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200884 struct file *file;
Linus Walleij61f922d2016-06-02 11:30:15 +0200885 u32 offset;
886 u32 lflags;
887 u32 eflags;
888 int fd;
889 int ret;
890 int irqflags = 0;
891
892 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
893 return -EFAULT;
894
895 le = kzalloc(sizeof(*le), GFP_KERNEL);
896 if (!le)
897 return -ENOMEM;
898 le->gdev = gdev;
899 get_device(&gdev->dev);
900
901 /* Make sure this is terminated */
902 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
903 if (strlen(eventreq.consumer_label)) {
904 le->label = kstrdup(eventreq.consumer_label,
905 GFP_KERNEL);
906 if (!le->label) {
907 ret = -ENOMEM;
908 goto out_free_le;
909 }
910 }
911
912 offset = eventreq.lineoffset;
913 lflags = eventreq.handleflags;
914 eflags = eventreq.eventflags;
915
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200916 if (offset >= gdev->ngpio) {
917 ret = -EINVAL;
918 goto out_free_label;
919 }
920
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200921 /* Return an error if a unknown flag is set */
922 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
923 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
924 ret = -EINVAL;
925 goto out_free_label;
926 }
927
Linus Walleij61f922d2016-06-02 11:30:15 +0200928 /* This is just wrong: we don't look for events on output lines */
929 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
930 ret = -EINVAL;
931 goto out_free_label;
932 }
933
934 desc = &gdev->descs[offset];
935 ret = gpiod_request(desc, le->label);
936 if (ret)
Uwe Kleine-Königf001cc32018-04-16 13:17:53 +0200937 goto out_free_label;
Linus Walleij61f922d2016-06-02 11:30:15 +0200938 le->desc = desc;
939 le->eflags = eflags;
940
941 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
942 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
943 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
944 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
945 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
946 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
947
948 ret = gpiod_direction_input(desc);
949 if (ret)
950 goto out_free_desc;
951
952 le->irq = gpiod_to_irq(desc);
953 if (le->irq <= 0) {
954 ret = -ENODEV;
955 goto out_free_desc;
956 }
957
958 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
959 irqflags |= IRQF_TRIGGER_RISING;
960 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
961 irqflags |= IRQF_TRIGGER_FALLING;
962 irqflags |= IRQF_ONESHOT;
Linus Walleij61f922d2016-06-02 11:30:15 +0200963
964 INIT_KFIFO(le->events);
965 init_waitqueue_head(&le->wait);
966 mutex_init(&le->read_lock);
967
968 /* Request a thread to read the events */
969 ret = request_threaded_irq(le->irq,
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100970 lineevent_irq_handler,
Linus Walleij61f922d2016-06-02 11:30:15 +0200971 lineevent_irq_thread,
972 irqflags,
973 le->label,
974 le);
975 if (ret)
976 goto out_free_desc;
977
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200978 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleij61f922d2016-06-02 11:30:15 +0200979 if (fd < 0) {
980 ret = fd;
981 goto out_free_irq;
982 }
983
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200984 file = anon_inode_getfile("gpio-event",
985 &lineevent_fileops,
986 le,
987 O_RDONLY | O_CLOEXEC);
988 if (IS_ERR(file)) {
989 ret = PTR_ERR(file);
990 goto out_put_unused_fd;
991 }
992
Linus Walleij61f922d2016-06-02 11:30:15 +0200993 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200994 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200995 /*
996 * fput() will trigger the release() callback, so do not go onto
997 * the regular error cleanup path here.
998 */
999 fput(file);
1000 put_unused_fd(fd);
1001 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +02001002 }
Linus Walleij61f922d2016-06-02 11:30:15 +02001003
Lars-Peter Clausen953b9562016-10-24 13:59:15 +02001004 fd_install(fd, file);
1005
Linus Walleij61f922d2016-06-02 11:30:15 +02001006 return 0;
1007
Lars-Peter Clausen953b9562016-10-24 13:59:15 +02001008out_put_unused_fd:
1009 put_unused_fd(fd);
Linus Walleij61f922d2016-06-02 11:30:15 +02001010out_free_irq:
1011 free_irq(le->irq, le);
1012out_free_desc:
1013 gpiod_free(le->desc);
1014out_free_label:
1015 kfree(le->label);
1016out_free_le:
1017 kfree(le);
1018 put_device(&gdev->dev);
1019 return ret;
1020}
1021
Thierry Reding950d55f52017-07-24 16:57:22 +02001022/*
Linus Walleij3c702e92015-10-21 15:29:53 +02001023 * gpio_ioctl() - ioctl handler for the GPIO chardev
1024 */
1025static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1026{
1027 struct gpio_device *gdev = filp->private_data;
1028 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +02001029 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +02001030
1031 /* We fail any subsequent ioctl():s when the chip is gone */
1032 if (!chip)
1033 return -ENODEV;
1034
Linus Walleij521a2ad2016-02-12 22:25:22 +01001035 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +02001036 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +01001037 struct gpiochip_info chipinfo;
1038
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +02001039 memset(&chipinfo, 0, sizeof(chipinfo));
1040
Linus Walleij3c702e92015-10-21 15:29:53 +02001041 strncpy(chipinfo.name, dev_name(&gdev->dev),
1042 sizeof(chipinfo.name));
1043 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +01001044 strncpy(chipinfo.label, gdev->label,
1045 sizeof(chipinfo.label));
1046 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001047 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +02001048 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
1049 return -EFAULT;
1050 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +01001051 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
1052 struct gpioline_info lineinfo;
1053 struct gpio_desc *desc;
1054
1055 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
1056 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +02001057 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +01001058 return -EINVAL;
1059
1060 desc = &gdev->descs[lineinfo.line_offset];
1061 if (desc->name) {
1062 strncpy(lineinfo.name, desc->name,
1063 sizeof(lineinfo.name));
1064 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
1065 } else {
1066 lineinfo.name[0] = '\0';
1067 }
1068 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +01001069 strncpy(lineinfo.consumer, desc->label,
1070 sizeof(lineinfo.consumer));
1071 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +01001072 } else {
Linus Walleij214338e2016-02-25 21:01:48 +01001073 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +01001074 }
1075
1076 /*
1077 * Userspace only need to know that the kernel is using
1078 * this GPIO so it can't use it.
1079 */
1080 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001081 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
1082 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
1083 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
1084 test_bit(FLAG_EXPORT, &desc->flags) ||
1085 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001086 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001087 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001088 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001089 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001090 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001091 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001092 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001093 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001094 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
1095
1096 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
1097 return -EFAULT;
1098 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +02001099 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
1100 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +02001101 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
1102 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +02001103 }
1104 return -EINVAL;
1105}
1106
Linus Walleij8b92e172016-05-27 14:24:04 +02001107#ifdef CONFIG_COMPAT
1108static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
1109 unsigned long arg)
1110{
1111 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1112}
1113#endif
1114
Linus Walleij3c702e92015-10-21 15:29:53 +02001115/**
1116 * gpio_chrdev_open() - open the chardev for ioctl operations
1117 * @inode: inode for this chardev
1118 * @filp: file struct for storing private data
1119 * Returns 0 on success
1120 */
1121static int gpio_chrdev_open(struct inode *inode, struct file *filp)
1122{
1123 struct gpio_device *gdev = container_of(inode->i_cdev,
1124 struct gpio_device, chrdev);
1125
1126 /* Fail on open if the backing gpiochip is gone */
Stephen Boydfb505742017-01-09 11:47:44 -08001127 if (!gdev->chip)
Linus Walleij3c702e92015-10-21 15:29:53 +02001128 return -ENODEV;
1129 get_device(&gdev->dev);
1130 filp->private_data = gdev;
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001131
1132 return nonseekable_open(inode, filp);
Linus Walleij3c702e92015-10-21 15:29:53 +02001133}
1134
1135/**
1136 * gpio_chrdev_release() - close chardev after ioctl operations
1137 * @inode: inode for this chardev
1138 * @filp: file struct for storing private data
1139 * Returns 0 on success
1140 */
1141static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1142{
1143 struct gpio_device *gdev = container_of(inode->i_cdev,
1144 struct gpio_device, chrdev);
1145
Linus Walleij3c702e92015-10-21 15:29:53 +02001146 put_device(&gdev->dev);
1147 return 0;
1148}
1149
1150
1151static const struct file_operations gpio_fileops = {
1152 .release = gpio_chrdev_release,
1153 .open = gpio_chrdev_open,
1154 .owner = THIS_MODULE,
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001155 .llseek = no_llseek,
Linus Walleij3c702e92015-10-21 15:29:53 +02001156 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +02001157#ifdef CONFIG_COMPAT
1158 .compat_ioctl = gpio_ioctl_compat,
1159#endif
Linus Walleij3c702e92015-10-21 15:29:53 +02001160};
1161
Linus Walleijff2b1352015-10-20 11:10:38 +02001162static void gpiodevice_release(struct device *dev)
1163{
1164 struct gpio_device *gdev = dev_get_drvdata(dev);
1165
1166 list_del(&gdev->list);
1167 ida_simple_remove(&gpio_ida, gdev->id);
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001168 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001169 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +01001170 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001171}
1172
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001173static int gpiochip_setup_dev(struct gpio_device *gdev)
1174{
1175 int status;
1176
1177 cdev_init(&gdev->chrdev, &gpio_fileops);
1178 gdev->chrdev.owner = THIS_MODULE;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001179 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001180
1181 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001182 if (status)
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001183 return status;
1184
1185 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1186 MAJOR(gpio_devt), gdev->id);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001187
1188 status = gpiochip_sysfs_register(gdev);
1189 if (status)
1190 goto err_remove_device;
1191
1192 /* From this point, the .release() function cleans up gpio_device */
1193 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001194 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1195 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1196 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1197
1198 return 0;
1199
1200err_remove_device:
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001201 cdev_device_del(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001202 return status;
1203}
1204
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001205static void gpiochip_machine_hog(struct gpio_chip *chip, struct gpiod_hog *hog)
1206{
1207 struct gpio_desc *desc;
1208 int rv;
1209
1210 desc = gpiochip_get_desc(chip, hog->chip_hwnum);
1211 if (IS_ERR(desc)) {
1212 pr_err("%s: unable to get GPIO desc: %ld\n",
1213 __func__, PTR_ERR(desc));
1214 return;
1215 }
1216
Dan Carpenterba3efdf2018-05-01 10:36:39 +03001217 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001218 return;
1219
1220 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
1221 if (rv)
1222 pr_err("%s: unable to hog GPIO line (%s:%u): %d\n",
1223 __func__, chip->label, hog->chip_hwnum, rv);
1224}
1225
1226static void machine_gpiochip_add(struct gpio_chip *chip)
1227{
1228 struct gpiod_hog *hog;
1229
1230 mutex_lock(&gpio_machine_hogs_mutex);
1231
1232 list_for_each_entry(hog, &gpio_machine_hogs, list) {
1233 if (!strcmp(chip->label, hog->chip_label))
1234 gpiochip_machine_hog(chip, hog);
1235 }
1236
1237 mutex_unlock(&gpio_machine_hogs_mutex);
1238}
1239
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001240static void gpiochip_setup_devs(void)
1241{
1242 struct gpio_device *gdev;
1243 int err;
1244
1245 list_for_each_entry(gdev, &gpio_devices, list) {
1246 err = gpiochip_setup_dev(gdev);
1247 if (err)
1248 pr_err("%s: Failed to initialize gpio device (%d)\n",
1249 dev_name(&gdev->dev), err);
1250 }
1251}
1252
Thierry Reding959bc7b2017-11-07 19:15:59 +01001253int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001254 struct lock_class_key *lock_key,
1255 struct lock_class_key *request_key)
David Brownelld2876d02008-02-04 22:28:20 -08001256{
1257 unsigned long flags;
1258 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001259 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001260 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001261 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001262
Linus Walleijff2b1352015-10-20 11:10:38 +02001263 /*
1264 * First: allocate and populate the internal stat container, and
1265 * set up the struct device.
1266 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001267 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001268 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001269 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001270 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001271 gdev->chip = chip;
1272 chip->gpiodev = gdev;
1273 if (chip->parent) {
1274 gdev->dev.parent = chip->parent;
1275 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001276 }
1277
Linus Walleijff2b1352015-10-20 11:10:38 +02001278#ifdef CONFIG_OF_GPIO
1279 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001280 if (chip->of_node)
1281 gdev->dev.of_node = chip->of_node;
Biju Das6ff04972018-08-06 10:48:01 +01001282 else
1283 chip->of_node = gdev->dev.of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001284#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001285
Linus Walleijff2b1352015-10-20 11:10:38 +02001286 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1287 if (gdev->id < 0) {
1288 status = gdev->id;
1289 goto err_free_gdev;
1290 }
1291 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1292 device_initialize(&gdev->dev);
1293 dev_set_drvdata(&gdev->dev, gdev);
1294 if (chip->parent && chip->parent->driver)
1295 gdev->owner = chip->parent->driver->owner;
1296 else if (chip->owner)
1297 /* TODO: remove chip->owner */
1298 gdev->owner = chip->owner;
1299 else
1300 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001301
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001302 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001303 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001304 status = -ENOMEM;
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +02001305 goto err_free_ida;
Linus Walleijff2b1352015-10-20 11:10:38 +02001306 }
1307
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001308 if (chip->ngpio == 0) {
1309 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001310 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001311 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001312 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001313
Laura Abbott30277432018-05-21 10:57:07 -07001314 if (chip->ngpio > FASTPATH_NGPIO)
1315 chip_warn(chip, "line cnt %u is greater than fast path cnt %u\n",
1316 chip->ngpio, FASTPATH_NGPIO);
1317
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001318 gdev->label = kstrdup_const(chip->label ?: "unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001319 if (!gdev->label) {
1320 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001321 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001322 }
1323
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001324 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001325 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001326
David Brownelld2876d02008-02-04 22:28:20 -08001327 spin_lock_irqsave(&gpio_lock, flags);
1328
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001329 /*
1330 * TODO: this allocates a Linux GPIO number base in the global
1331 * GPIO numberspace for this chip. In the long run we want to
1332 * get *rid* of this numberspace and use only descriptors, but
1333 * it may be a pipe dream. It will not happen before we get rid
1334 * of the sysfs interface anyways.
1335 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001336 if (base < 0) {
1337 base = gpiochip_find_base(chip->ngpio);
1338 if (base < 0) {
1339 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001340 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001341 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001342 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001343 /*
1344 * TODO: it should not be necessary to reflect the assigned
1345 * base outside of the GPIO subsystem. Go over drivers and
1346 * see if anyone makes use of this, else drop this and assign
1347 * a poison instead.
1348 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001349 chip->base = base;
1350 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001351 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001352
Linus Walleijff2b1352015-10-20 11:10:38 +02001353 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001354 if (status) {
1355 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001356 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001357 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001358
Linus Walleij545ebd92016-05-30 17:11:59 +02001359 spin_unlock_irqrestore(&gpio_lock, flags);
1360
Ricardo Ribalda Delgado767cd172018-10-12 08:11:36 +02001361 for (i = 0; i < chip->ngpio; i++)
1362 gdev->descs[i].gdev = gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001363
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301364#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001365 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301366#endif
1367
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001368 status = gpiochip_set_desc_names(chip);
1369 if (status)
1370 goto err_remove_from_list;
1371
Mika Westerberg79b804c2016-09-20 15:15:21 +03001372 status = gpiochip_irqchip_init_valid_mask(chip);
1373 if (status)
1374 goto err_remove_from_list;
1375
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001376 status = gpiochip_alloc_valid_mask(chip);
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001377 if (status)
1378 goto err_remove_irqchip_mask;
1379
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001380 status = gpiochip_add_irqchip(chip, lock_key, request_key);
Thierry Redinge0d89722017-11-07 19:15:54 +01001381 if (status)
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001382 goto err_free_gpiochip_mask;
Thierry Redinge0d89722017-11-07 19:15:54 +01001383
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001384 status = of_gpiochip_add(chip);
1385 if (status)
1386 goto err_remove_chip;
1387
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001388 status = gpiochip_init_valid_mask(chip);
1389 if (status)
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001390 goto err_remove_of_chip;
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001391
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +02001392 for (i = 0; i < chip->ngpio; i++) {
1393 struct gpio_desc *desc = &gdev->descs[i];
1394
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +02001395 if (chip->get_direction && gpiochip_line_is_valid(chip, i))
1396 desc->flags = !chip->get_direction(chip, i) ?
1397 (1 << FLAG_IS_OUT) : 0;
1398 else
1399 desc->flags = !chip->direction_input ?
1400 (1 << FLAG_IS_OUT) : 0;
1401 }
1402
Mika Westerberg664e3e52014-01-08 12:40:54 +02001403 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001404
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001405 machine_gpiochip_add(chip);
1406
Linus Walleij3c702e92015-10-21 15:29:53 +02001407 /*
1408 * By first adding the chardev, and then adding the device,
1409 * we get a device node entry in sysfs under
1410 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1411 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001412 * We can do this only if gpiolib has been initialized.
1413 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001414 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001415 if (gpiolib_initialized) {
1416 status = gpiochip_setup_dev(gdev);
1417 if (status)
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001418 goto err_remove_acpi_chip;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001419 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001420 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001421
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001422err_remove_acpi_chip:
Johan Hovold225fce82015-01-12 17:12:25 +01001423 acpi_gpiochip_remove(chip);
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001424err_remove_of_chip:
Johan Hovold6d867502015-05-04 17:23:25 +02001425 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001426 of_gpiochip_remove(chip);
Geert Uytterhoeven35779892019-04-24 15:59:33 +02001427err_remove_chip:
1428 gpiochip_irqchip_remove(chip);
1429err_free_gpiochip_mask:
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001430 gpiochip_free_valid_mask(chip);
1431err_remove_irqchip_mask:
Mika Westerberg79b804c2016-09-20 15:15:21 +03001432 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001433err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001434 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001435 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001436 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001437err_free_label:
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001438 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001439err_free_descs:
1440 kfree(gdev->descs);
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +02001441err_free_ida:
Linus Walleijff2b1352015-10-20 11:10:38 +02001442 ida_simple_remove(&gpio_ida, gdev->id);
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +02001443err_free_gdev:
David Brownelld2876d02008-02-04 22:28:20 -08001444 /* failures here can mean systems won't boot... */
Marcel Ziswiler1777fc92018-07-20 09:54:49 +02001445 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001446 gdev->base, gdev->base + gdev->ngpio - 1,
Marcel Ziswiler1777fc92018-07-20 09:54:49 +02001447 chip->label ? : "generic", status);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001448 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001449 return status;
1450}
Thierry Reding959bc7b2017-11-07 19:15:59 +01001451EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
David Brownelld2876d02008-02-04 22:28:20 -08001452
1453/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001454 * gpiochip_get_data() - get per-subdriver data for the chip
Thierry Reding950d55f52017-07-24 16:57:22 +02001455 * @chip: GPIO chip
1456 *
1457 * Returns:
1458 * The per-subdriver data for the chip.
Linus Walleij43c54ec2016-02-11 11:37:48 +01001459 */
1460void *gpiochip_get_data(struct gpio_chip *chip)
1461{
1462 return chip->gpiodev->data;
1463}
1464EXPORT_SYMBOL_GPL(gpiochip_get_data);
1465
1466/**
David Brownelld2876d02008-02-04 22:28:20 -08001467 * gpiochip_remove() - unregister a gpio_chip
1468 * @chip: the chip to unregister
1469 *
1470 * A gpio_chip with any GPIOs still requested may not be removed.
1471 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001472void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001473{
Linus Walleijff2b1352015-10-20 11:10:38 +02001474 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001475 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001476 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001477 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001478 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001479
Linus Walleijff2b1352015-10-20 11:10:38 +02001480 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001481 gpiochip_sysfs_unregister(gdev);
Geert Uytterhoeven5018ada2016-12-19 18:29:23 +01001482 gpiochip_free_hogs(chip);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001483 /* Numb the device, cancelling all outstanding operations */
1484 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001485 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001486 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001487 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001488 of_gpiochip_remove(chip);
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001489 gpiochip_free_valid_mask(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001490 /*
1491 * We accept no more calls into the driver from this point, so
1492 * NULL the driver data pointer
1493 */
1494 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001495
Johan Hovold6798aca2015-01-12 17:12:28 +01001496 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001497 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001498 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001499 if (test_bit(FLAG_REQUESTED, &desc->flags))
1500 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001501 }
David Brownelld2876d02008-02-04 22:28:20 -08001502 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001503
Johan Hovoldfab28b82015-05-04 17:10:27 +02001504 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001505 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001506 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001507
Linus Walleijff2b1352015-10-20 11:10:38 +02001508 /*
1509 * The gpiochip side puts its use of the device to rest here:
1510 * if there are no userspace clients, the chardev and device will
1511 * be removed, else it will be dangling until the last user is
1512 * gone.
1513 */
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001514 cdev_device_del(&gdev->chrdev, &gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001515 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001516}
1517EXPORT_SYMBOL_GPL(gpiochip_remove);
1518
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301519static void devm_gpio_chip_release(struct device *dev, void *res)
1520{
1521 struct gpio_chip *chip = *(struct gpio_chip **)res;
1522
1523 gpiochip_remove(chip);
1524}
1525
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301526/**
Jonathan Neuschäfer689fd022017-12-21 17:56:34 +01001527 * devm_gpiochip_add_data() - Resource manager gpiochip_add_data()
Uwe Kleine-König3925b90f2018-10-08 11:34:03 +02001528 * @dev: pointer to the device that gpio_chip belongs to.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301529 * @chip: the chip to register, with chip->base initialized
Thierry Reding950d55f52017-07-24 16:57:22 +02001530 * @data: driver-private data associated with this chip
1531 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301532 * Context: potentially before irqs will work
1533 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301534 * The gpio chip automatically be released when the device is unbound.
Thierry Reding950d55f52017-07-24 16:57:22 +02001535 *
1536 * Returns:
1537 * A negative errno if the chip can't be registered, such as because the
1538 * chip->base is invalid or already associated with a different chip.
1539 * Otherwise it returns zero as a success code.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301540 */
1541int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1542 void *data)
1543{
1544 struct gpio_chip **ptr;
1545 int ret;
1546
1547 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1548 GFP_KERNEL);
1549 if (!ptr)
1550 return -ENOMEM;
1551
1552 ret = gpiochip_add_data(chip, data);
1553 if (ret < 0) {
1554 devres_free(ptr);
1555 return ret;
1556 }
1557
1558 *ptr = chip;
1559 devres_add(dev, ptr);
1560
1561 return 0;
1562}
1563EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1564
1565/**
Grant Likely594fa262010-06-08 07:48:16 -06001566 * gpiochip_find() - iterator for locating a specific gpio_chip
1567 * @data: data to pass to match function
Thierry Reding950d55f52017-07-24 16:57:22 +02001568 * @match: Callback function to check gpio_chip
Grant Likely594fa262010-06-08 07:48:16 -06001569 *
1570 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1571 * determined by a user supplied @match callback. The callback should return
1572 * 0 if the device doesn't match and non-zero if it does. If the callback is
1573 * non-zero, this function will return to the caller and not iterate over any
1574 * more gpio_chips.
1575 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001576struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001577 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001578 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001579{
Linus Walleijff2b1352015-10-20 11:10:38 +02001580 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001581 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001582 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001583
1584 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001585 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001586 if (gdev->chip && match(gdev->chip, data)) {
1587 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001588 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001589 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001590
Grant Likely594fa262010-06-08 07:48:16 -06001591 spin_unlock_irqrestore(&gpio_lock, flags);
1592
1593 return chip;
1594}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001595EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001596
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001597static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1598{
1599 const char *name = data;
1600
1601 return !strcmp(chip->label, name);
1602}
1603
1604static struct gpio_chip *find_chip_by_name(const char *name)
1605{
1606 return gpiochip_find((void *)name, gpiochip_match_name);
1607}
1608
Linus Walleij14250522014-03-25 10:40:18 +01001609#ifdef CONFIG_GPIOLIB_IRQCHIP
1610
1611/*
1612 * The following is irqchip helper code for gpiochips.
1613 */
1614
Mika Westerberg79b804c2016-09-20 15:15:21 +03001615static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1616{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001617 if (!gpiochip->irq.need_valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001618 return 0;
1619
Stephen Boyde4371f6e2018-03-23 09:34:50 -07001620 gpiochip->irq.valid_mask = gpiochip_allocate_mask(gpiochip);
Thierry Redingdc7b0382017-11-07 19:15:52 +01001621 if (!gpiochip->irq.valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001622 return -ENOMEM;
1623
Mika Westerberg79b804c2016-09-20 15:15:21 +03001624 return 0;
1625}
1626
1627static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1628{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001629 kfree(gpiochip->irq.valid_mask);
1630 gpiochip->irq.valid_mask = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001631}
1632
Stephen Boyd64ff2c82018-01-09 17:58:46 -08001633bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1634 unsigned int offset)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001635{
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001636 if (!gpiochip_line_is_valid(gpiochip, offset))
1637 return false;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001638 /* No mask means all valid */
Thierry Redingdc7b0382017-11-07 19:15:52 +01001639 if (likely(!gpiochip->irq.valid_mask))
Mika Westerberg79b804c2016-09-20 15:15:21 +03001640 return true;
Thierry Redingdc7b0382017-11-07 19:15:52 +01001641 return test_bit(offset, gpiochip->irq.valid_mask);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001642}
Stephen Boyd64ff2c82018-01-09 17:58:46 -08001643EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001644
Linus Walleij14250522014-03-25 10:40:18 +01001645/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001646 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij4892d3a2019-06-14 10:12:26 +02001647 * @gc: the gpiochip to set the irqchip chain to
Linus Walleij14250522014-03-25 10:40:18 +01001648 * @parent_irq: the irq number corresponding to the parent IRQ for this
1649 * chained irqchip
1650 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001651 * coming out of the gpiochip. If the interrupt is nested rather than
1652 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001653 */
Linus Walleij4892d3a2019-06-14 10:12:26 +02001654static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gc,
Thierry Reding6f793092017-04-03 18:05:21 +02001655 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001656 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001657{
Linus Walleij4892d3a2019-06-14 10:12:26 +02001658 struct gpio_irq_chip *girq = &gc->irq;
1659 struct device *dev = &gc->gpiodev->dev;
1660
1661 if (!girq->domain) {
1662 chip_err(gc, "called %s before setting up irqchip\n",
Linus Walleij83141a72014-09-26 13:50:12 +02001663 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001664 return;
1665 }
1666
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001667 if (parent_handler) {
Linus Walleij4892d3a2019-06-14 10:12:26 +02001668 if (gc->can_sleep) {
1669 chip_err(gc,
Andy Shevchenkob1911712018-07-03 03:39:03 +03001670 "you cannot have chained interrupts on a chip that may sleep\n");
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001671 return;
1672 }
Linus Walleij4892d3a2019-06-14 10:12:26 +02001673 girq->parents = devm_kcalloc(dev, 1,
1674 sizeof(*girq->parents),
1675 GFP_KERNEL);
1676 if (!girq->parents) {
1677 chip_err(gc, "out of memory allocating parent IRQ\n");
1678 return;
1679 }
1680 girq->parents[0] = parent_irq;
1681 girq->num_parents = 1;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001682 /*
1683 * The parent irqchip is already using the chip_data for this
1684 * irqchip, so our callbacks simply use the handler_data.
1685 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001686 irq_set_chained_handler_and_data(parent_irq, parent_handler,
Linus Walleij4892d3a2019-06-14 10:12:26 +02001687 gc);
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001688 }
Linus Walleij14250522014-03-25 10:40:18 +01001689}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001690
1691/**
1692 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1693 * @gpiochip: the gpiochip to set the irqchip chain to
1694 * @irqchip: the irqchip to chain to the gpiochip
1695 * @parent_irq: the irq number corresponding to the parent IRQ for this
1696 * chained irqchip
1697 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Stephen Boyd40f5ff42018-10-08 09:32:16 -07001698 * coming out of the gpiochip.
Linus Walleijd245b3f2016-11-24 10:57:25 +01001699 */
1700void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1701 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001702 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001703 irq_flow_handler_t parent_handler)
1704{
Thierry Reding60ed54c2017-11-07 19:15:57 +01001705 if (gpiochip->irq.threaded) {
1706 chip_err(gpiochip, "tried to chain a threaded gpiochip\n");
1707 return;
1708 }
1709
Stephen Boyd3c1f6b22018-10-08 09:32:15 -07001710 gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, parent_handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001711}
Linus Walleij14250522014-03-25 10:40:18 +01001712EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1713
1714/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001715 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1716 * @gpiochip: the gpiochip to set the irqchip nested handler to
1717 * @irqchip: the irqchip to nest to the gpiochip
1718 * @parent_irq: the irq number corresponding to the parent IRQ for this
1719 * nested irqchip
1720 */
1721void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1722 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001723 unsigned int parent_irq)
Linus Walleijd245b3f2016-11-24 10:57:25 +01001724{
Stephen Boyd3c1f6b22018-10-08 09:32:15 -07001725 gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, NULL);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001726}
1727EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1728
1729/**
Linus Walleij14250522014-03-25 10:40:18 +01001730 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1731 * @d: the irqdomain used by this irqchip
1732 * @irq: the global irq number used by this GPIO irqchip irq
1733 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1734 *
1735 * This function will set up the mapping for a certain IRQ line on a
1736 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1737 * stored inside the gpiochip.
1738 */
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001739int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1740 irq_hw_number_t hwirq)
Linus Walleij14250522014-03-25 10:40:18 +01001741{
1742 struct gpio_chip *chip = d->host_data;
Thierry Redinge0d89722017-11-07 19:15:54 +01001743 int err = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001744
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001745 if (!gpiochip_irqchip_irq_valid(chip, hwirq))
1746 return -ENXIO;
1747
Linus Walleij14250522014-03-25 10:40:18 +01001748 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001749 /*
1750 * This lock class tells lockdep that GPIO irqs are in a different
1751 * category than their parents, so it won't report false recursion.
1752 */
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001753 irq_set_lockdep_class(irq, chip->irq.lock_key, chip->irq.request_key);
Thierry Redingc7a0aa52017-11-07 19:15:48 +01001754 irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001755 /* Chips that use nested thread handlers have them marked */
Thierry Reding60ed54c2017-11-07 19:15:57 +01001756 if (chip->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001757 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001758 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001759
Thierry Redinge0d89722017-11-07 19:15:54 +01001760 if (chip->irq.num_parents == 1)
1761 err = irq_set_parent(irq, chip->irq.parents[0]);
1762 else if (chip->irq.map)
1763 err = irq_set_parent(irq, chip->irq.map[hwirq]);
1764
1765 if (err < 0)
1766 return err;
1767
Linus Walleij1333b902014-04-23 16:45:12 +02001768 /*
1769 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1770 * is passed as default type.
1771 */
Thierry Reding3634eeb2017-11-07 19:15:49 +01001772 if (chip->irq.default_type != IRQ_TYPE_NONE)
1773 irq_set_irq_type(irq, chip->irq.default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001774
1775 return 0;
1776}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001777EXPORT_SYMBOL_GPL(gpiochip_irq_map);
Linus Walleij14250522014-03-25 10:40:18 +01001778
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001779void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
Linus Walleijc3626fd2014-03-28 20:42:01 +01001780{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001781 struct gpio_chip *chip = d->host_data;
1782
Thierry Reding60ed54c2017-11-07 19:15:57 +01001783 if (chip->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001784 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001785 irq_set_chip_and_handler(irq, NULL, NULL);
1786 irq_set_chip_data(irq, NULL);
1787}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001788EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001789
Linus Walleij14250522014-03-25 10:40:18 +01001790static const struct irq_domain_ops gpiochip_domain_ops = {
1791 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001792 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001793 /* Virtually all GPIO irqchips are twocell:ed */
1794 .xlate = irq_domain_xlate_twocell,
1795};
1796
Brian Masneyef74f702019-01-19 15:42:42 -05001797/**
1798 * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ
1799 * @domain: The IRQ domain used by this IRQ chip
1800 * @data: Outermost irq_data associated with the IRQ
1801 * @reserve: If set, only reserve an interrupt vector instead of assigning one
1802 *
1803 * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be
1804 * used as the activate function for the &struct irq_domain_ops. The host_data
1805 * for the IRQ domain must be the &struct gpio_chip.
1806 */
1807int gpiochip_irq_domain_activate(struct irq_domain *domain,
1808 struct irq_data *data, bool reserve)
1809{
1810 struct gpio_chip *chip = domain->host_data;
1811
1812 return gpiochip_lock_as_irq(chip, data->hwirq);
1813}
1814EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate);
1815
1816/**
1817 * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ
1818 * @domain: The IRQ domain used by this IRQ chip
1819 * @data: Outermost irq_data associated with the IRQ
1820 *
1821 * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to
1822 * be used as the deactivate function for the &struct irq_domain_ops. The
1823 * host_data for the IRQ domain must be the &struct gpio_chip.
1824 */
1825void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
1826 struct irq_data *data)
1827{
1828 struct gpio_chip *chip = domain->host_data;
1829
1830 return gpiochip_unlock_as_irq(chip, data->hwirq);
1831}
1832EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate);
1833
Linus Walleij14250522014-03-25 10:40:18 +01001834static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1835{
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001836 if (!gpiochip_irqchip_irq_valid(chip, offset))
1837 return -ENXIO;
Thierry Redinge0d89722017-11-07 19:15:54 +01001838
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001839 return irq_create_mapping(chip->irq.domain, offset);
Linus Walleij14250522014-03-25 10:40:18 +01001840}
1841
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001842static int gpiochip_irq_reqres(struct irq_data *d)
1843{
1844 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1845
1846 return gpiochip_reqres_irq(chip, d->hwirq);
1847}
1848
1849static void gpiochip_irq_relres(struct irq_data *d)
1850{
1851 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1852
1853 gpiochip_relres_irq(chip, d->hwirq);
1854}
1855
Hans Verkuil461c1a72018-09-08 11:23:17 +02001856static void gpiochip_irq_enable(struct irq_data *d)
1857{
1858 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1859
1860 gpiochip_enable_irq(chip, d->hwirq);
1861 if (chip->irq.irq_enable)
1862 chip->irq.irq_enable(d);
1863 else
1864 chip->irq.chip->irq_unmask(d);
1865}
1866
1867static void gpiochip_irq_disable(struct irq_data *d)
1868{
1869 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1870
1871 if (chip->irq.irq_disable)
1872 chip->irq.irq_disable(d);
1873 else
1874 chip->irq.chip->irq_mask(d);
1875 gpiochip_disable_irq(chip, d->hwirq);
1876}
1877
Hans Verkuilca620f22018-09-08 11:23:15 +02001878static void gpiochip_set_irq_hooks(struct gpio_chip *gpiochip)
1879{
1880 struct irq_chip *irqchip = gpiochip->irq.chip;
1881
1882 if (!irqchip->irq_request_resources &&
1883 !irqchip->irq_release_resources) {
1884 irqchip->irq_request_resources = gpiochip_irq_reqres;
1885 irqchip->irq_release_resources = gpiochip_irq_relres;
1886 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02001887 if (WARN_ON(gpiochip->irq.irq_enable))
1888 return;
Hans Verkuil171948e2018-09-14 10:36:39 +02001889 /* Check if the irqchip already has this hook... */
1890 if (irqchip->irq_enable == gpiochip_irq_enable) {
1891 /*
1892 * ...and if so, give a gentle warning that this is bad
1893 * practice.
1894 */
1895 chip_info(gpiochip,
1896 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1897 return;
1898 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02001899 gpiochip->irq.irq_enable = irqchip->irq_enable;
1900 gpiochip->irq.irq_disable = irqchip->irq_disable;
1901 irqchip->irq_enable = gpiochip_irq_enable;
1902 irqchip->irq_disable = gpiochip_irq_disable;
Hans Verkuilca620f22018-09-08 11:23:15 +02001903}
1904
Linus Walleij14250522014-03-25 10:40:18 +01001905/**
Thierry Redinge0d89722017-11-07 19:15:54 +01001906 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1907 * @gpiochip: the GPIO chip to add the IRQ chip to
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001908 * @lock_key: lockdep class for IRQ lock
1909 * @request_key: lockdep class for IRQ request
Thierry Redinge0d89722017-11-07 19:15:54 +01001910 */
Thierry Reding959bc7b2017-11-07 19:15:59 +01001911static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001912 struct lock_class_key *lock_key,
1913 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01001914{
1915 struct irq_chip *irqchip = gpiochip->irq.chip;
1916 const struct irq_domain_ops *ops;
1917 struct device_node *np;
1918 unsigned int type;
1919 unsigned int i;
1920
1921 if (!irqchip)
1922 return 0;
1923
1924 if (gpiochip->irq.parent_handler && gpiochip->can_sleep) {
Andy Shevchenkob1911712018-07-03 03:39:03 +03001925 chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n");
Thierry Redinge0d89722017-11-07 19:15:54 +01001926 return -EINVAL;
1927 }
1928
1929 np = gpiochip->gpiodev->dev.of_node;
1930 type = gpiochip->irq.default_type;
1931
1932 /*
1933 * Specifying a default trigger is a terrible idea if DT or ACPI is
1934 * used to configure the interrupts, as you may end up with
1935 * conflicting triggers. Tell the user, and reset to NONE.
1936 */
1937 if (WARN(np && type != IRQ_TYPE_NONE,
1938 "%s: Ignoring %u default trigger\n", np->full_name, type))
1939 type = IRQ_TYPE_NONE;
1940
1941 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1942 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1943 "Ignoring %u default trigger\n", type);
1944 type = IRQ_TYPE_NONE;
1945 }
1946
1947 gpiochip->to_irq = gpiochip_to_irq;
1948 gpiochip->irq.default_type = type;
Thierry Reding959bc7b2017-11-07 19:15:59 +01001949 gpiochip->irq.lock_key = lock_key;
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001950 gpiochip->irq.request_key = request_key;
Thierry Redinge0d89722017-11-07 19:15:54 +01001951
1952 if (gpiochip->irq.domain_ops)
1953 ops = gpiochip->irq.domain_ops;
1954 else
1955 ops = &gpiochip_domain_ops;
1956
1957 gpiochip->irq.domain = irq_domain_add_simple(np, gpiochip->ngpio,
Thierry Reding8302cf52017-11-07 19:15:58 +01001958 gpiochip->irq.first,
1959 ops, gpiochip);
Thierry Redinge0d89722017-11-07 19:15:54 +01001960 if (!gpiochip->irq.domain)
1961 return -EINVAL;
1962
Thierry Redinge0d89722017-11-07 19:15:54 +01001963 if (gpiochip->irq.parent_handler) {
1964 void *data = gpiochip->irq.parent_handler_data ?: gpiochip;
1965
1966 for (i = 0; i < gpiochip->irq.num_parents; i++) {
1967 /*
1968 * The parent IRQ chip is already using the chip_data
1969 * for this IRQ chip, so our callbacks simply use the
1970 * handler_data.
1971 */
1972 irq_set_chained_handler_and_data(gpiochip->irq.parents[i],
1973 gpiochip->irq.parent_handler,
1974 data);
1975 }
Thierry Redinge0d89722017-11-07 19:15:54 +01001976 }
1977
Hans Verkuilca620f22018-09-08 11:23:15 +02001978 gpiochip_set_irq_hooks(gpiochip);
1979
Thierry Redinge0d89722017-11-07 19:15:54 +01001980 acpi_gpiochip_request_interrupts(gpiochip);
1981
1982 return 0;
1983}
1984
1985/**
Linus Walleij14250522014-03-25 10:40:18 +01001986 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1987 * @gpiochip: the gpiochip to remove the irqchip from
1988 *
1989 * This is called only from gpiochip_remove()
1990 */
1991static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1992{
Hans Verkuilca620f22018-09-08 11:23:15 +02001993 struct irq_chip *irqchip = gpiochip->irq.chip;
Thierry Reding39e5f092017-11-07 19:15:50 +01001994 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001995
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001996 acpi_gpiochip_free_interrupts(gpiochip);
1997
Hans Verkuilca620f22018-09-08 11:23:15 +02001998 if (irqchip && gpiochip->irq.parent_handler) {
Thierry Reding39e5f092017-11-07 19:15:50 +01001999 struct gpio_irq_chip *irq = &gpiochip->irq;
2000 unsigned int i;
2001
2002 for (i = 0; i < irq->num_parents; i++)
2003 irq_set_chained_handler_and_data(irq->parents[i],
2004 NULL, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03002005 }
2006
Linus Walleijc3626fd2014-03-28 20:42:01 +01002007 /* Remove all IRQ mappings and delete the domain */
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002008 if (gpiochip->irq.domain) {
Thierry Reding39e5f092017-11-07 19:15:50 +01002009 unsigned int irq;
2010
Mika Westerberg79b804c2016-09-20 15:15:21 +03002011 for (offset = 0; offset < gpiochip->ngpio; offset++) {
2012 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
2013 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002014
2015 irq = irq_find_mapping(gpiochip->irq.domain, offset);
2016 irq_dispose_mapping(irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03002017 }
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002018
2019 irq_domain_remove(gpiochip->irq.domain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01002020 }
Linus Walleij14250522014-03-25 10:40:18 +01002021
Hans Verkuil461c1a72018-09-08 11:23:17 +02002022 if (irqchip) {
2023 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
2024 irqchip->irq_request_resources = NULL;
2025 irqchip->irq_release_resources = NULL;
2026 }
2027 if (irqchip->irq_enable == gpiochip_irq_enable) {
2028 irqchip->irq_enable = gpiochip->irq.irq_enable;
2029 irqchip->irq_disable = gpiochip->irq.irq_disable;
2030 }
Linus Walleij14250522014-03-25 10:40:18 +01002031 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02002032 gpiochip->irq.irq_enable = NULL;
2033 gpiochip->irq.irq_disable = NULL;
Hans Verkuilca620f22018-09-08 11:23:15 +02002034 gpiochip->irq.chip = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03002035
2036 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01002037}
2038
2039/**
Linus Walleij739e6f52017-01-11 13:37:07 +01002040 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01002041 * @gpiochip: the gpiochip to add the irqchip to
2042 * @irqchip: the irqchip to add to the gpiochip
2043 * @first_irq: if not dynamically assigned, the base (first) IRQ to
2044 * allocate gpiochip irqs from
2045 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02002046 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
2047 * to have the core avoid setting up any default type in the hardware.
Thierry Reding60ed54c2017-11-07 19:15:57 +01002048 * @threaded: whether this irqchip uses a nested thread handler
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002049 * @lock_key: lockdep class for IRQ lock
2050 * @request_key: lockdep class for IRQ request
Linus Walleij14250522014-03-25 10:40:18 +01002051 *
2052 * This function closely associates a certain irqchip with a certain
2053 * gpiochip, providing an irq domain to translate the local IRQs to
2054 * global irqs in the gpiolib core, and making sure that the gpiochip
2055 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01002056 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01002057 * from the gpiochip passed as chip data. An irqdomain will be stored
2058 * in the gpiochip that shall be used by the driver to handle IRQ number
2059 * translation. The gpiochip will need to be initialized and registered
2060 * before calling this function.
2061 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01002062 * This function will handle two cell:ed simple IRQs and assumes all
2063 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01002064 * need to be open coded.
2065 */
Linus Walleij739e6f52017-01-11 13:37:07 +01002066int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
2067 struct irq_chip *irqchip,
2068 unsigned int first_irq,
2069 irq_flow_handler_t handler,
2070 unsigned int type,
Thierry Reding60ed54c2017-11-07 19:15:57 +01002071 bool threaded,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002072 struct lock_class_key *lock_key,
2073 struct lock_class_key *request_key)
Linus Walleij14250522014-03-25 10:40:18 +01002074{
2075 struct device_node *of_node;
Linus Walleij14250522014-03-25 10:40:18 +01002076
2077 if (!gpiochip || !irqchip)
2078 return -EINVAL;
2079
Linus Walleij58383c782015-11-04 09:56:26 +01002080 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01002081 pr_err("missing gpiochip .dev parent pointer\n");
2082 return -EINVAL;
2083 }
Thierry Reding60ed54c2017-11-07 19:15:57 +01002084 gpiochip->irq.threaded = threaded;
Linus Walleij58383c782015-11-04 09:56:26 +01002085 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01002086#ifdef CONFIG_OF_GPIO
2087 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07002088 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08002089 * FIXME: get rid of this and use gpiochip->parent->of_node
2090 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01002091 */
2092 if (gpiochip->of_node)
2093 of_node = gpiochip->of_node;
2094#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01002095 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03002096 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01002097 * used to configure the interrupts, as you may end-up with
2098 * conflicting triggers. Tell the user, and reset to NONE.
2099 */
2100 if (WARN(of_node && type != IRQ_TYPE_NONE,
Rob Herring7eb6ce22017-07-18 16:43:03 -05002101 "%pOF: Ignoring %d default trigger\n", of_node, type))
Marc Zyngier332e99d2016-09-07 09:12:11 +01002102 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03002103 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
2104 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
2105 "Ignoring %d default trigger\n", type);
2106 type = IRQ_TYPE_NONE;
2107 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01002108
Thierry Redingda80ff82017-11-07 19:15:46 +01002109 gpiochip->irq.chip = irqchip;
Thierry Redingc7a0aa52017-11-07 19:15:48 +01002110 gpiochip->irq.handler = handler;
Thierry Reding3634eeb2017-11-07 19:15:49 +01002111 gpiochip->irq.default_type = type;
Linus Walleij14250522014-03-25 10:40:18 +01002112 gpiochip->to_irq = gpiochip_to_irq;
Thierry Redingca9df052017-11-07 19:15:53 +01002113 gpiochip->irq.lock_key = lock_key;
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002114 gpiochip->irq.request_key = request_key;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002115 gpiochip->irq.domain = irq_domain_add_simple(of_node,
Linus Walleij14250522014-03-25 10:40:18 +01002116 gpiochip->ngpio, first_irq,
2117 &gpiochip_domain_ops, gpiochip);
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002118 if (!gpiochip->irq.domain) {
Thierry Redingda80ff82017-11-07 19:15:46 +01002119 gpiochip->irq.chip = NULL;
Linus Walleij14250522014-03-25 10:40:18 +01002120 return -EINVAL;
2121 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02002122
Hans Verkuilca620f22018-09-08 11:23:15 +02002123 gpiochip_set_irq_hooks(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01002124
Mika Westerbergafa82fa2014-07-25 09:54:48 +03002125 acpi_gpiochip_request_interrupts(gpiochip);
2126
Linus Walleij14250522014-03-25 10:40:18 +01002127 return 0;
2128}
Linus Walleij739e6f52017-01-11 13:37:07 +01002129EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
Linus Walleij14250522014-03-25 10:40:18 +01002130
2131#else /* CONFIG_GPIOLIB_IRQCHIP */
2132
Thierry Reding959bc7b2017-11-07 19:15:59 +01002133static inline int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002134 struct lock_class_key *lock_key,
2135 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01002136{
2137 return 0;
2138}
2139
Linus Walleij14250522014-03-25 10:40:18 +01002140static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03002141static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
2142{
2143 return 0;
2144}
2145static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
2146{ }
Linus Walleij14250522014-03-25 10:40:18 +01002147
2148#endif /* CONFIG_GPIOLIB_IRQCHIP */
2149
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002150/**
2151 * gpiochip_generic_request() - request the gpio function for a pin
2152 * @chip: the gpiochip owning the GPIO
2153 * @offset: the offset of the GPIO to request for GPIO function
2154 */
2155int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
2156{
Linus Walleija9a1d2a2017-09-22 11:02:10 +02002157 return pinctrl_gpio_request(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002158}
2159EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2160
2161/**
2162 * gpiochip_generic_free() - free the gpio function from a pin
2163 * @chip: the gpiochip to request the gpio function for
2164 * @offset: the offset of the GPIO to free from GPIO function
2165 */
2166void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
2167{
Linus Walleija9a1d2a2017-09-22 11:02:10 +02002168 pinctrl_gpio_free(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002169}
2170EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2171
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002172/**
2173 * gpiochip_generic_config() - apply configuration for a pin
2174 * @chip: the gpiochip owning the GPIO
2175 * @offset: the offset of the GPIO to apply the configuration
2176 * @config: the configuration to be applied
2177 */
2178int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
2179 unsigned long config)
2180{
2181 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
2182}
2183EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2184
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302185#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01002186
Linus Walleij3f0f8672012-11-20 12:40:15 +01002187/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02002188 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
2189 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02002190 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02002191 * @gpio_offset: the start offset in the current gpio_chip number space
2192 * @pin_group: name of the pin group inside the pin controller
Christian Lamparter973c1712018-05-21 22:57:39 +02002193 *
2194 * Calling this function directly from a DeviceTree-supported
2195 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2196 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2197 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Christian Ruppert586a87e2013-10-15 15:37:54 +02002198 */
2199int gpiochip_add_pingroup_range(struct gpio_chip *chip,
2200 struct pinctrl_dev *pctldev,
2201 unsigned int gpio_offset, const char *pin_group)
2202{
2203 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002204 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02002205 int ret;
2206
2207 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2208 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002209 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02002210 return -ENOMEM;
2211 }
2212
2213 /* Use local offset as range ID */
2214 pin_range->range.id = gpio_offset;
2215 pin_range->range.gc = chip;
2216 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002217 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02002218 pin_range->pctldev = pctldev;
2219
2220 ret = pinctrl_get_group_pins(pctldev, pin_group,
2221 &pin_range->range.pins,
2222 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01002223 if (ret < 0) {
2224 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02002225 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01002226 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02002227
2228 pinctrl_add_gpio_range(pctldev, &pin_range->range);
2229
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002230 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2231 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02002232 pinctrl_dev_get_devname(pctldev), pin_group);
2233
Linus Walleij20ec3e32016-02-11 11:03:06 +01002234 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02002235
2236 return 0;
2237}
2238EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2239
2240/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01002241 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
2242 * @chip: the gpiochip to add the range for
Thierry Reding950d55f52017-07-24 16:57:22 +02002243 * @pinctl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01002244 * @gpio_offset: the start offset in the current gpio_chip number space
2245 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01002246 * @npins: the number of pins from the offset of each pin space (GPIO and
2247 * pin controller) to accumulate in this range
Thierry Reding950d55f52017-07-24 16:57:22 +02002248 *
2249 * Returns:
2250 * 0 on success, or a negative error-code on failure.
Christian Lamparter973c1712018-05-21 22:57:39 +02002251 *
2252 * Calling this function directly from a DeviceTree-supported
2253 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2254 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2255 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Linus Walleij3f0f8672012-11-20 12:40:15 +01002256 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002257int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01002258 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01002259 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302260{
2261 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002262 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08002263 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302264
Linus Walleij3f0f8672012-11-20 12:40:15 +01002265 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302266 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002267 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002268 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302269 }
2270
Linus Walleij3f0f8672012-11-20 12:40:15 +01002271 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01002272 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01002273 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302274 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002275 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01002276 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302277 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01002278 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302279 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01002280 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08002281 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002282 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01002283 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08002284 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01002285 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002286 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2287 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01002288 pinctl_name,
2289 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302290
Linus Walleij20ec3e32016-02-11 11:03:06 +01002291 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002292
2293 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302294}
Linus Walleij165adc92012-11-06 14:49:39 +01002295EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302296
Linus Walleij3f0f8672012-11-20 12:40:15 +01002297/**
2298 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2299 * @chip: the chip to remove all the mappings for
2300 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302301void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
2302{
2303 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01002304 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302305
Linus Walleij20ec3e32016-02-11 11:03:06 +01002306 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302307 list_del(&pin_range->node);
2308 pinctrl_remove_gpio_range(pin_range->pctldev,
2309 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01002310 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302311 }
2312}
Linus Walleij165adc92012-11-06 14:49:39 +01002313EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2314
2315#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302316
David Brownelld2876d02008-02-04 22:28:20 -08002317/* These "optional" allocation calls help prevent drivers from stomping
2318 * on each other, and help provide better diagnostics in debugfs.
2319 * They're called even less than the "set direction" calls.
2320 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002321static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002322{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002323 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002324 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002325 unsigned long flags;
Biju Das3789f5a2018-08-07 08:15:18 +01002326 unsigned offset;
David Brownelld2876d02008-02-04 22:28:20 -08002327
Muchun Song18534df2018-11-01 21:12:50 +08002328 if (label) {
2329 label = kstrdup_const(label, GFP_KERNEL);
2330 if (!label)
2331 return -ENOMEM;
2332 }
2333
David Brownelld2876d02008-02-04 22:28:20 -08002334 spin_lock_irqsave(&gpio_lock, flags);
2335
David Brownelld2876d02008-02-04 22:28:20 -08002336 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002337 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002338 */
2339
2340 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2341 desc_set_label(desc, label ? : "?");
2342 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002343 } else {
Muchun Song18534df2018-11-01 21:12:50 +08002344 kfree_const(label);
David Brownelld2876d02008-02-04 22:28:20 -08002345 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002346 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002347 }
2348
2349 if (chip->request) {
2350 /* chip->request may sleep */
2351 spin_unlock_irqrestore(&gpio_lock, flags);
Biju Das3789f5a2018-08-07 08:15:18 +01002352 offset = gpio_chip_hwgpio(desc);
2353 if (gpiochip_line_is_valid(chip, offset))
2354 status = chip->request(chip, offset);
2355 else
2356 status = -EINVAL;
David Brownell35e8bb52008-10-15 22:03:16 -07002357 spin_lock_irqsave(&gpio_lock, flags);
2358
2359 if (status < 0) {
2360 desc_set_label(desc, NULL);
Muchun Song18534df2018-11-01 21:12:50 +08002361 kfree_const(label);
David Brownell35e8bb52008-10-15 22:03:16 -07002362 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002363 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002364 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002365 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002366 if (chip->get_direction) {
2367 /* chip->get_direction may sleep */
2368 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002369 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002370 spin_lock_irqsave(&gpio_lock, flags);
2371 }
David Brownelld2876d02008-02-04 22:28:20 -08002372done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002373 spin_unlock_irqrestore(&gpio_lock, flags);
2374 return status;
2375}
2376
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002377/*
2378 * This descriptor validation needs to be inserted verbatim into each
2379 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002380 * macro to avoid endless duplication. If the desc is NULL it is an
2381 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002382 */
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002383static int validate_desc(const struct gpio_desc *desc, const char *func)
2384{
2385 if (!desc)
2386 return 0;
2387 if (IS_ERR(desc)) {
2388 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2389 return PTR_ERR(desc);
2390 }
2391 if (!desc->gdev) {
2392 pr_warn("%s: invalid GPIO (no device)\n", func);
2393 return -EINVAL;
2394 }
2395 if (!desc->gdev->chip) {
2396 dev_warn(&desc->gdev->dev,
2397 "%s: backing chip is gone\n", func);
2398 return 0;
2399 }
2400 return 1;
2401}
2402
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002403#define VALIDATE_DESC(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002404 int __valid = validate_desc(desc, __func__); \
2405 if (__valid <= 0) \
2406 return __valid; \
2407 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002408
2409#define VALIDATE_DESC_VOID(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002410 int __valid = validate_desc(desc, __func__); \
2411 if (__valid <= 0) \
Linus Walleij54d77192016-05-30 16:48:39 +02002412 return; \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002413 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002414
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002415int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002416{
2417 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002418 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002419
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002420 VALIDATE_DESC(desc);
2421 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002422
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002423 if (try_module_get(gdev->owner)) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002424 status = gpiod_request_commit(desc, label);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002425 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002426 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002427 else
2428 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002429 }
2430
David Brownelld2876d02008-02-04 22:28:20 -08002431 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002432 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002433
David Brownelld2876d02008-02-04 22:28:20 -08002434 return status;
2435}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002436
Linus Walleijfac9d882017-09-26 20:58:28 +02002437static bool gpiod_free_commit(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002438{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002439 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002440 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002441 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002442
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002443 might_sleep();
2444
Alexandre Courbot372e7222013-02-03 01:29:29 +09002445 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002446
David Brownelld2876d02008-02-04 22:28:20 -08002447 spin_lock_irqsave(&gpio_lock, flags);
2448
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002449 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002450 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2451 if (chip->free) {
2452 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002453 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002454 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002455 spin_lock_irqsave(&gpio_lock, flags);
2456 }
Muchun Song18534df2018-11-01 21:12:50 +08002457 kfree_const(desc->label);
David Brownelld2876d02008-02-04 22:28:20 -08002458 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002459 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002460 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302461 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302462 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002463 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002464 ret = true;
2465 }
David Brownelld2876d02008-02-04 22:28:20 -08002466
2467 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002468 return ret;
2469}
2470
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002471void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002472{
Linus Walleijfac9d882017-09-26 20:58:28 +02002473 if (desc && desc->gdev && gpiod_free_commit(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002474 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002475 put_device(&desc->gdev->dev);
2476 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002477 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002478 }
David Brownelld2876d02008-02-04 22:28:20 -08002479}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002480
David Brownelld2876d02008-02-04 22:28:20 -08002481/**
2482 * gpiochip_is_requested - return string iff signal was requested
2483 * @chip: controller managing the signal
2484 * @offset: of signal within controller's 0..(ngpio - 1) range
2485 *
2486 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002487 * The string returned is the label passed to gpio_request(); if none has been
2488 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002489 *
2490 * This function is for use by GPIO controller drivers. The label can
2491 * help with diagnostics, and knowing that the signal is used as a GPIO
2492 * can help avoid accidentally multiplexing it to another controller.
2493 */
2494const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2495{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002496 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002497
Dirk Behme48b59532015-08-18 18:02:32 +02002498 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002499 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002500
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002501 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002502
Alexandre Courbot372e7222013-02-03 01:29:29 +09002503 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002504 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002505 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002506}
2507EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2508
Mika Westerberg77c2d792014-03-10 14:54:50 +02002509/**
2510 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
Thierry Reding950d55f52017-07-24 16:57:22 +02002511 * @chip: GPIO chip
2512 * @hwnum: hardware number of the GPIO for which to request the descriptor
Mika Westerberg77c2d792014-03-10 14:54:50 +02002513 * @label: label for the GPIO
Linus Walleij5923ea62019-04-26 14:40:18 +02002514 * @lflags: lookup flags for this GPIO or 0 if default, this can be used to
2515 * specify things like line inversion semantics with the machine flags
2516 * such as GPIO_OUT_LOW
2517 * @dflags: descriptor request flags for this GPIO or 0 if default, this
2518 * can be used to specify consumer semantics such as open drain
Mika Westerberg77c2d792014-03-10 14:54:50 +02002519 *
2520 * Function allows GPIO chip drivers to request and use their own GPIO
2521 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2522 * function will not increase reference count of the GPIO chip module. This
2523 * allows the GPIO chip module to be unloaded as needed (we assume that the
2524 * GPIO chip driver handles freeing the GPIOs it has requested).
Thierry Reding950d55f52017-07-24 16:57:22 +02002525 *
2526 * Returns:
2527 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2528 * code on failure.
Mika Westerberg77c2d792014-03-10 14:54:50 +02002529 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002530struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
Linus Walleij21abf102018-09-04 13:31:45 +02002531 const char *label,
Linus Walleij5923ea62019-04-26 14:40:18 +02002532 enum gpio_lookup_flags lflags,
2533 enum gpiod_flags dflags)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002534{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002535 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2536 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002537
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002538 if (IS_ERR(desc)) {
2539 chip_err(chip, "failed to get GPIO descriptor\n");
2540 return desc;
2541 }
2542
Linus Walleijfac9d882017-09-26 20:58:28 +02002543 err = gpiod_request_commit(desc, label);
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002544 if (err < 0)
2545 return ERR_PTR(err);
2546
Linus Walleij5923ea62019-04-26 14:40:18 +02002547 err = gpiod_configure_flags(desc, label, lflags, dflags);
Linus Walleij21abf102018-09-04 13:31:45 +02002548 if (err) {
2549 chip_err(chip, "setup of own GPIO %s failed\n", label);
2550 gpiod_free_commit(desc);
2551 return ERR_PTR(err);
2552 }
2553
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002554 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002555}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002556EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002557
2558/**
2559 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2560 * @desc: GPIO descriptor to free
2561 *
2562 * Function frees the given GPIO requested previously with
2563 * gpiochip_request_own_desc().
2564 */
2565void gpiochip_free_own_desc(struct gpio_desc *desc)
2566{
2567 if (desc)
Linus Walleijfac9d882017-09-26 20:58:28 +02002568 gpiod_free_commit(desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002569}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002570EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002571
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002572/*
2573 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002574 * some cases this is done in early boot, before IRQs are enabled.
2575 *
2576 * As a rule these aren't called more than once (except for drivers
2577 * using the open-drain emulation idiom) so these are natural places
2578 * to accumulate extra debugging checks. Note that we can't (yet)
2579 * rely on gpio_request() having been called beforehand.
2580 */
2581
Thomas Petazzoni71479782019-02-07 17:28:56 +01002582static int gpio_set_config(struct gpio_chip *gc, unsigned offset,
2583 enum pin_config_param mode)
2584{
Maxime Ripard542f3612019-03-14 20:32:50 +01002585 unsigned long config;
2586 unsigned arg;
Thomas Petazzoni71479782019-02-07 17:28:56 +01002587
Maxime Ripard542f3612019-03-14 20:32:50 +01002588 switch (mode) {
2589 case PIN_CONFIG_BIAS_PULL_DOWN:
2590 case PIN_CONFIG_BIAS_PULL_UP:
2591 arg = 1;
2592 break;
2593
2594 default:
2595 arg = 0;
2596 }
2597
2598 config = PIN_CONF_PACKED(mode, arg);
Thomas Petazzoni71479782019-02-07 17:28:56 +01002599 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2600}
2601
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002602/**
2603 * gpiod_direction_input - set the GPIO direction to input
2604 * @desc: GPIO to set to input
2605 *
2606 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2607 * be called safely on it.
2608 *
2609 * Return 0 in case of success, else an error code.
2610 */
2611int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002612{
David Brownelld2876d02008-02-04 22:28:20 -08002613 struct gpio_chip *chip;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002614 int status = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002615
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002616 VALIDATE_DESC(desc);
2617 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002618
Linus Walleije48d1942018-09-25 09:54:14 +02002619 /*
2620 * It is legal to have no .get() and .direction_input() specified if
2621 * the chip is output-only, but you can't specify .direction_input()
2622 * and not support the .get() operation, that doesn't make sense.
2623 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002624 if (!chip->get && chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002625 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002626 "%s: missing get() but have direction_input()\n",
2627 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002628 return -EIO;
2629 }
2630
Linus Walleije48d1942018-09-25 09:54:14 +02002631 /*
2632 * If we have a .direction_input() callback, things are simple,
2633 * just call it. Else we are some input-only chip so try to check the
2634 * direction (if .get_direction() is supported) else we silently
2635 * assume we are in input mode after this.
2636 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002637 if (chip->direction_input) {
2638 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
2639 } else if (chip->get_direction &&
2640 (chip->get_direction(chip, gpio_chip_hwgpio(desc)) != 1)) {
2641 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002642 "%s: missing direction_input() operation and line is output\n",
2643 __func__);
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002644 return -EIO;
2645 }
David Brownelld2876d02008-02-04 22:28:20 -08002646 if (status == 0)
2647 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002648
Thomas Petazzonid4499912019-02-07 17:28:58 +01002649 if (test_bit(FLAG_PULL_UP, &desc->flags))
2650 gpio_set_config(chip, gpio_chip_hwgpio(desc),
2651 PIN_CONFIG_BIAS_PULL_UP);
2652 else if (test_bit(FLAG_PULL_DOWN, &desc->flags))
2653 gpio_set_config(chip, gpio_chip_hwgpio(desc),
2654 PIN_CONFIG_BIAS_PULL_DOWN);
2655
Alexandre Courbot372e7222013-02-03 01:29:29 +09002656 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002657
David Brownelld2876d02008-02-04 22:28:20 -08002658 return status;
2659}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002660EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002661
Linus Walleijfac9d882017-09-26 20:58:28 +02002662static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002663{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002664 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002665 int val = !!value;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002666 int ret = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002667
Linus Walleije48d1942018-09-25 09:54:14 +02002668 /*
2669 * It's OK not to specify .direction_output() if the gpiochip is
2670 * output-only, but if there is then not even a .set() operation it
2671 * is pretty tricky to drive the output line.
2672 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002673 if (!gc->set && !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002674 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002675 "%s: missing set() and direction_output() operations\n",
2676 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002677 return -EIO;
2678 }
2679
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002680 if (gc->direction_output) {
2681 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2682 } else {
Linus Walleije48d1942018-09-25 09:54:14 +02002683 /* Check that we are in output mode if we can */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002684 if (gc->get_direction &&
2685 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2686 gpiod_warn(desc,
2687 "%s: missing direction_output() operation\n",
2688 __func__);
2689 return -EIO;
2690 }
Linus Walleije48d1942018-09-25 09:54:14 +02002691 /*
2692 * If we can't actively set the direction, we are some
2693 * output-only chip, so just drive the output as desired.
2694 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002695 gc->set(gc, gpio_chip_hwgpio(desc), val);
2696 }
2697
Linus Walleijc663e5f2016-03-22 10:51:16 +01002698 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002699 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002700 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002701 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2702 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002703}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002704
2705/**
2706 * gpiod_direction_output_raw - set the GPIO direction to output
2707 * @desc: GPIO to set to output
2708 * @value: initial output value of the GPIO
2709 *
2710 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2711 * be called safely on it. The initial value of the output must be specified
2712 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2713 *
2714 * Return 0 in case of success, else an error code.
2715 */
2716int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2717{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002718 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02002719 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002720}
2721EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2722
2723/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302724 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002725 * @desc: GPIO to set to output
2726 * @value: initial output value of the GPIO
2727 *
2728 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2729 * be called safely on it. The initial value of the output must be specified
2730 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2731 * account.
2732 *
2733 * Return 0 in case of success, else an error code.
2734 */
2735int gpiod_direction_output(struct gpio_desc *desc, int value)
2736{
Vladimir Zapolskiy30322bc2017-12-21 18:37:24 +02002737 struct gpio_chip *gc;
Linus Walleij02e47982017-09-26 21:20:23 +02002738 int ret;
2739
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002740 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002741 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2742 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002743 else
2744 value = !!value;
Linus Walleij02e47982017-09-26 21:20:23 +02002745
Hans Verkuil4e9439d2018-09-08 11:23:16 +02002746 /* GPIOs used for enabled IRQs shall not be set as output */
2747 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2748 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
Linus Walleij02e47982017-09-26 21:20:23 +02002749 gpiod_err(desc,
2750 "%s: tried to set a GPIO tied to an IRQ as output\n",
2751 __func__);
2752 return -EIO;
2753 }
2754
Vladimir Zapolskiy30322bc2017-12-21 18:37:24 +02002755 gc = desc->gdev->chip;
Linus Walleij02e47982017-09-26 21:20:23 +02002756 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2757 /* First see if we can enable open drain in hardware */
Thomas Petazzoni71479782019-02-07 17:28:56 +01002758 ret = gpio_set_config(gc, gpio_chip_hwgpio(desc),
2759 PIN_CONFIG_DRIVE_OPEN_DRAIN);
Linus Walleij02e47982017-09-26 21:20:23 +02002760 if (!ret)
2761 goto set_output_value;
2762 /* Emulate open drain by not actively driving the line high */
2763 if (value)
2764 return gpiod_direction_input(desc);
2765 }
2766 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
Thomas Petazzoni71479782019-02-07 17:28:56 +01002767 ret = gpio_set_config(gc, gpio_chip_hwgpio(desc),
2768 PIN_CONFIG_DRIVE_OPEN_SOURCE);
Linus Walleij02e47982017-09-26 21:20:23 +02002769 if (!ret)
2770 goto set_output_value;
2771 /* Emulate open source by not actively driving the line low */
2772 if (!value)
2773 return gpiod_direction_input(desc);
2774 } else {
Thomas Petazzoni71479782019-02-07 17:28:56 +01002775 gpio_set_config(gc, gpio_chip_hwgpio(desc),
2776 PIN_CONFIG_DRIVE_PUSH_PULL);
Linus Walleij02e47982017-09-26 21:20:23 +02002777 }
2778
2779set_output_value:
Linus Walleijfac9d882017-09-26 20:58:28 +02002780 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002781}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002782EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002783
Felipe Balbic4b5be92010-05-26 14:42:23 -07002784/**
Thierry Reding950d55f52017-07-24 16:57:22 +02002785 * gpiod_set_debounce - sets @debounce time for a GPIO
2786 * @desc: descriptor of the GPIO for which to set debounce time
2787 * @debounce: debounce time in microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002788 *
Thierry Reding950d55f52017-07-24 16:57:22 +02002789 * Returns:
2790 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2791 * debounce time.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002792 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002793int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002794{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002795 struct gpio_chip *chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002796 unsigned long config;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002797
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002798 VALIDATE_DESC(desc);
2799 chip = desc->gdev->chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002800 if (!chip->set || !chip->set_config) {
Mark Brown6424de52013-09-09 10:33:49 +01002801 gpiod_dbg(desc,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002802 "%s: missing set() or set_config() operations\n",
Mark Brown6424de52013-09-09 10:33:49 +01002803 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002804 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002805 }
2806
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002807 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
Andrew Jefferyfa59dd232019-03-26 15:19:54 +10302808 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002809}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002810EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002811
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002812/**
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302813 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2814 * @desc: descriptor of the GPIO for which to configure persistence
2815 * @transitory: True to lose state on suspend or reset, false for persistence
2816 *
2817 * Returns:
2818 * 0 on success, otherwise a negative error code.
2819 */
2820int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2821{
2822 struct gpio_chip *chip;
2823 unsigned long packed;
2824 int gpio;
2825 int rc;
2826
Vladimir Zapolskiy156dd392017-12-21 18:37:35 +02002827 VALIDATE_DESC(desc);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302828 /*
2829 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2830 * persistence state.
2831 */
2832 if (transitory)
2833 set_bit(FLAG_TRANSITORY, &desc->flags);
2834 else
2835 clear_bit(FLAG_TRANSITORY, &desc->flags);
2836
2837 /* If the driver supports it, set the persistence state now */
2838 chip = desc->gdev->chip;
2839 if (!chip->set_config)
2840 return 0;
2841
2842 packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE,
2843 !transitory);
2844 gpio = gpio_chip_hwgpio(desc);
Andrew Jefferyfa59dd232019-03-26 15:19:54 +10302845 rc = chip->set_config(chip, gpio, packed);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302846 if (rc == -ENOTSUPP) {
2847 dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n",
2848 gpio);
2849 return 0;
2850 }
2851
2852 return rc;
2853}
2854EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2855
2856/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002857 * gpiod_is_active_low - test whether a GPIO is active-low or not
2858 * @desc: the gpio descriptor to test
2859 *
2860 * Returns 1 if the GPIO is active-low, 0 otherwise.
2861 */
2862int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002863{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002864 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002865 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002866}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002867EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002868
2869/* I/O calls are only valid after configuration completed; the relevant
2870 * "is this a valid GPIO" error checks should already have been done.
2871 *
2872 * "Get" operations are often inlinable as reading a pin value register,
2873 * and masking the relevant bit in that register.
2874 *
2875 * When "set" operations are inlinable, they involve writing that mask to
2876 * one register to set a low value, or a different register to set it high.
2877 * Otherwise locking is needed, so there may be little value to inlining.
2878 *
2879 *------------------------------------------------------------------------
2880 *
2881 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2882 * have requested the GPIO. That can include implicit requesting by
2883 * a direction setting call. Marking a gpio as requested locks its chip
2884 * in memory, guaranteeing that these table lookups need no more locking
2885 * and that gpiochip_remove() will fail.
2886 *
2887 * REVISIT when debugging, consider adding some instrumentation to ensure
2888 * that the GPIO was actually requested.
2889 */
2890
Linus Walleijfac9d882017-09-26 20:58:28 +02002891static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002892{
2893 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002894 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002895 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002896
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002897 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002898 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002899 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002900 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002901 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002902 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002903}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002904
Lukas Wunnereec1d562017-10-12 12:40:10 +02002905static int gpio_chip_get_multiple(struct gpio_chip *chip,
2906 unsigned long *mask, unsigned long *bits)
2907{
2908 if (chip->get_multiple) {
2909 return chip->get_multiple(chip, mask, bits);
2910 } else if (chip->get) {
2911 int i, value;
2912
2913 for_each_set_bit(i, mask, chip->ngpio) {
2914 value = chip->get(chip, i);
2915 if (value < 0)
2916 return value;
2917 __assign_bit(i, bits, value);
2918 }
2919 return 0;
2920 }
2921 return -EIO;
2922}
2923
2924int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2925 unsigned int array_size,
2926 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002927 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002928 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02002929{
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002930 int err, i = 0;
2931
2932 /*
2933 * Validate array_info against desc_array and its size.
2934 * It should immediately follow desc_array if both
2935 * have been obtained from the same gpiod_get_array() call.
2936 */
2937 if (array_info && array_info->desc == desc_array &&
2938 array_size <= array_info->size &&
2939 (void *)array_info == desc_array + array_info->size) {
2940 if (!can_sleep)
2941 WARN_ON(array_info->chip->can_sleep);
2942
2943 err = gpio_chip_get_multiple(array_info->chip,
2944 array_info->get_mask,
2945 value_bitmap);
2946 if (err)
2947 return err;
2948
2949 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2950 bitmap_xor(value_bitmap, value_bitmap,
2951 array_info->invert_mask, array_size);
2952
2953 if (bitmap_full(array_info->get_mask, array_size))
2954 return 0;
2955
2956 i = find_first_zero_bit(array_info->get_mask, array_size);
2957 } else {
2958 array_info = NULL;
2959 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02002960
2961 while (i < array_size) {
2962 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07002963 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
2964 unsigned long *mask, *bits;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002965 int first, j, ret;
2966
Laura Abbott30277432018-05-21 10:57:07 -07002967 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
2968 mask = fastpath;
2969 } else {
2970 mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
2971 sizeof(*mask),
2972 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
2973 if (!mask)
2974 return -ENOMEM;
2975 }
2976
2977 bits = mask + BITS_TO_LONGS(chip->ngpio);
2978 bitmap_zero(mask, chip->ngpio);
2979
Lukas Wunnereec1d562017-10-12 12:40:10 +02002980 if (!can_sleep)
2981 WARN_ON(chip->can_sleep);
2982
2983 /* collect all inputs belonging to the same chip */
2984 first = i;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002985 do {
2986 const struct gpio_desc *desc = desc_array[i];
2987 int hwgpio = gpio_chip_hwgpio(desc);
2988
2989 __set_bit(hwgpio, mask);
2990 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002991
2992 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02002993 i = find_next_zero_bit(array_info->get_mask,
2994 array_size, i);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002995 } while ((i < array_size) &&
2996 (desc_array[i]->gdev->chip == chip));
2997
2998 ret = gpio_chip_get_multiple(chip, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07002999 if (ret) {
3000 if (mask != fastpath)
3001 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003002 return ret;
Laura Abbott30277432018-05-21 10:57:07 -07003003 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02003004
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003005 for (j = first; j < i; ) {
Lukas Wunnereec1d562017-10-12 12:40:10 +02003006 const struct gpio_desc *desc = desc_array[j];
3007 int hwgpio = gpio_chip_hwgpio(desc);
3008 int value = test_bit(hwgpio, bits);
3009
3010 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3011 value = !value;
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003012 __assign_bit(j, value_bitmap, value);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003013 trace_gpio_value(desc_to_gpio(desc), 1, value);
Janusz Krzysztofik799d5eb2018-09-29 14:20:22 +02003014 j++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003015
3016 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02003017 j = find_next_zero_bit(array_info->get_mask, i,
3018 j);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003019 }
Laura Abbott30277432018-05-21 10:57:07 -07003020
3021 if (mask != fastpath)
3022 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003023 }
3024 return 0;
3025}
3026
David Brownelld2876d02008-02-04 22:28:20 -08003027/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003028 * gpiod_get_raw_value() - return a gpio's raw value
3029 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08003030 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003031 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003032 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003033 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003034 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003035 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003036 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003037int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003038{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003039 VALIDATE_DESC(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003040 /* Should be using gpiod_get_raw_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003041 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02003042 return gpiod_get_raw_value_commit(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003043}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003044EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08003045
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003046/**
3047 * gpiod_get_value() - return a gpio's value
3048 * @desc: gpio whose value will be returned
3049 *
3050 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003051 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003052 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003053 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003054 * complain if the GPIO chip functions potentially sleep.
3055 */
3056int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003057{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003058 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003059
3060 VALIDATE_DESC(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003061 /* Should be using gpiod_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003062 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003063
Linus Walleijfac9d882017-09-26 20:58:28 +02003064 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003065 if (value < 0)
3066 return value;
3067
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003068 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3069 value = !value;
3070
3071 return value;
David Brownelld2876d02008-02-04 22:28:20 -08003072}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003073EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08003074
Lukas Wunnereec1d562017-10-12 12:40:10 +02003075/**
3076 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003077 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003078 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003079 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003080 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003081 *
3082 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3083 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3084 * else an error code.
3085 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003086 * This function can be called from contexts where we cannot sleep,
Lukas Wunnereec1d562017-10-12 12:40:10 +02003087 * and it will complain if the GPIO chip functions potentially sleep.
3088 */
3089int gpiod_get_raw_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003090 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003091 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003092 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003093{
3094 if (!desc_array)
3095 return -EINVAL;
3096 return gpiod_get_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003097 desc_array, array_info,
3098 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003099}
3100EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
3101
3102/**
3103 * gpiod_get_array_value() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003104 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003105 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003106 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003107 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003108 *
3109 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3110 * into account. Return 0 in case of success, else an error code.
3111 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003112 * This function can be called from contexts where we cannot sleep,
Lukas Wunnereec1d562017-10-12 12:40:10 +02003113 * and it will complain if the GPIO chip functions potentially sleep.
3114 */
3115int gpiod_get_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003116 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003117 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003118 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003119{
3120 if (!desc_array)
3121 return -EINVAL;
3122 return gpiod_get_array_value_complex(false, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003123 desc_array, array_info,
3124 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003125}
3126EXPORT_SYMBOL_GPL(gpiod_get_array_value);
3127
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303128/*
Linus Walleijfac9d882017-09-26 20:58:28 +02003129 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003130 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07003131 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303132 */
Linus Walleijfac9d882017-09-26 20:58:28 +02003133static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303134{
3135 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003136 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003137 int offset = gpio_chip_hwgpio(desc);
3138
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303139 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003140 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303141 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003142 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303143 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003144 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303145 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003146 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303147 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09003148 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303149 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01003150 gpiod_err(desc,
3151 "%s: Error in set_value for open drain err %d\n",
3152 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303153}
3154
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303155/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003156 * _gpio_set_open_source_value() - Set the open source gpio's value.
3157 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07003158 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303159 */
Linus Walleijfac9d882017-09-26 20:58:28 +02003160static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303161{
3162 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003163 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003164 int offset = gpio_chip_hwgpio(desc);
3165
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303166 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003167 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303168 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003169 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303170 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003171 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303172 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003173 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303174 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09003175 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303176 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01003177 gpiod_err(desc,
3178 "%s: Error in set_value for open source err %d\n",
3179 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303180}
3181
Linus Walleijfac9d882017-09-26 20:58:28 +02003182static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08003183{
3184 struct gpio_chip *chip;
3185
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003186 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003187 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleij02e47982017-09-26 21:20:23 +02003188 chip->set(chip, gpio_chip_hwgpio(desc), value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003189}
3190
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003191/*
3192 * set multiple outputs on the same chip;
3193 * use the chip's set_multiple function if available;
3194 * otherwise set the outputs sequentially;
3195 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
3196 * defines which outputs are to be changed
3197 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
3198 * defines the values the outputs specified by mask are to be set to
3199 */
3200static void gpio_chip_set_multiple(struct gpio_chip *chip,
3201 unsigned long *mask, unsigned long *bits)
3202{
3203 if (chip->set_multiple) {
3204 chip->set_multiple(chip, mask, bits);
3205 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02003206 unsigned int i;
3207
3208 /* set outputs if the corresponding mask bit is set */
3209 for_each_set_bit(i, mask, chip->ngpio)
3210 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003211 }
3212}
3213
Laura Abbott30277432018-05-21 10:57:07 -07003214int gpiod_set_array_value_complex(bool raw, bool can_sleep,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003215 unsigned int array_size,
3216 struct gpio_desc **desc_array,
3217 struct gpio_array *array_info,
3218 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003219{
3220 int i = 0;
3221
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003222 /*
3223 * Validate array_info against desc_array and its size.
3224 * It should immediately follow desc_array if both
3225 * have been obtained from the same gpiod_get_array() call.
3226 */
3227 if (array_info && array_info->desc == desc_array &&
3228 array_size <= array_info->size &&
3229 (void *)array_info == desc_array + array_info->size) {
3230 if (!can_sleep)
3231 WARN_ON(array_info->chip->can_sleep);
3232
3233 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
3234 bitmap_xor(value_bitmap, value_bitmap,
3235 array_info->invert_mask, array_size);
3236
3237 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
3238 value_bitmap);
3239
3240 if (bitmap_full(array_info->set_mask, array_size))
3241 return 0;
3242
3243 i = find_first_zero_bit(array_info->set_mask, array_size);
3244 } else {
3245 array_info = NULL;
3246 }
3247
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003248 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003249 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07003250 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
3251 unsigned long *mask, *bits;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003252 int count = 0;
3253
Laura Abbott30277432018-05-21 10:57:07 -07003254 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
3255 mask = fastpath;
3256 } else {
3257 mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
3258 sizeof(*mask),
3259 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
3260 if (!mask)
3261 return -ENOMEM;
3262 }
3263
3264 bits = mask + BITS_TO_LONGS(chip->ngpio);
3265 bitmap_zero(mask, chip->ngpio);
3266
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003267 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003268 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003269
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003270 do {
3271 struct gpio_desc *desc = desc_array[i];
3272 int hwgpio = gpio_chip_hwgpio(desc);
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003273 int value = test_bit(i, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003274
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003275 /*
3276 * Pins applicable for fast input but not for
3277 * fast output processing may have been already
3278 * inverted inside the fast path, skip them.
3279 */
3280 if (!raw && !(array_info &&
3281 test_bit(i, array_info->invert_mask)) &&
3282 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003283 value = !value;
3284 trace_gpio_value(desc_to_gpio(desc), 0, value);
3285 /*
3286 * collect all normal outputs belonging to the same chip
3287 * open drain and open source outputs are set individually
3288 */
Linus Walleij02e47982017-09-26 21:20:23 +02003289 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02003290 gpio_set_open_drain_value_commit(desc, value);
Linus Walleij02e47982017-09-26 21:20:23 +02003291 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02003292 gpio_set_open_source_value_commit(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003293 } else {
3294 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003295 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003296 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003297 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003298 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003299 count++;
3300 }
3301 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003302
3303 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02003304 i = find_next_zero_bit(array_info->set_mask,
3305 array_size, i);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003306 } while ((i < array_size) &&
3307 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003308 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003309 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003310 gpio_chip_set_multiple(chip, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07003311
3312 if (mask != fastpath)
3313 kfree(mask);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003314 }
Laura Abbott30277432018-05-21 10:57:07 -07003315 return 0;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003316}
3317
David Brownelld2876d02008-02-04 22:28:20 -08003318/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003319 * gpiod_set_raw_value() - assign a gpio's raw value
3320 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08003321 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08003322 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003323 * Set the raw value of the GPIO, i.e. the value of its physical line without
3324 * regard for its ACTIVE_LOW status.
3325 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003326 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003327 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003328 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003329void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003330{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003331 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003332 /* Should be using gpiod_set_raw_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003333 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02003334 gpiod_set_raw_value_commit(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003335}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003336EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08003337
3338/**
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003339 * gpiod_set_value_nocheck() - set a GPIO line value without checking
3340 * @desc: the descriptor to set the value on
3341 * @value: value to set
3342 *
3343 * This sets the value of a GPIO line backing a descriptor, applying
3344 * different semantic quirks like active low and open drain/source
3345 * handling.
3346 */
3347static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3348{
3349 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3350 value = !value;
3351 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3352 gpio_set_open_drain_value_commit(desc, value);
3353 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3354 gpio_set_open_source_value_commit(desc, value);
3355 else
3356 gpiod_set_raw_value_commit(desc, value);
3357}
3358
3359/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003360 * gpiod_set_value() - assign a gpio's value
3361 * @desc: gpio whose value will be assigned
3362 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08003363 *
Linus Walleij02e47982017-09-26 21:20:23 +02003364 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3365 * OPEN_DRAIN and OPEN_SOURCE flags into account.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003366 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003367 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003368 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003369 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003370void gpiod_set_value(struct gpio_desc *desc, int value)
3371{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003372 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02003373 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003374 WARN_ON(desc->gdev->chip->can_sleep);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003375 gpiod_set_value_nocheck(desc, value);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003376}
3377EXPORT_SYMBOL_GPL(gpiod_set_value);
3378
3379/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003380 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003381 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003382 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003383 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003384 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003385 *
3386 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3387 * without regard for their ACTIVE_LOW status.
3388 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003389 * This function can be called from contexts where we cannot sleep, and will
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003390 * complain if the GPIO chip functions potentially sleep.
3391 */
Laura Abbott30277432018-05-21 10:57:07 -07003392int gpiod_set_raw_array_value(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003393 struct gpio_desc **desc_array,
3394 struct gpio_array *array_info,
3395 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003396{
3397 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003398 return -EINVAL;
3399 return gpiod_set_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003400 desc_array, array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003401}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003402EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003403
3404/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003405 * gpiod_set_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003406 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003407 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003408 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003409 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003410 *
3411 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3412 * into account.
3413 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02003414 * This function can be called from contexts where we cannot sleep, and will
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003415 * complain if the GPIO chip functions potentially sleep.
3416 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003417int gpiod_set_array_value(unsigned int array_size,
3418 struct gpio_desc **desc_array,
3419 struct gpio_array *array_info,
3420 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003421{
3422 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003423 return -EINVAL;
3424 return gpiod_set_array_value_complex(false, false, array_size,
3425 desc_array, array_info,
3426 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003427}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003428EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003429
3430/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003431 * gpiod_cansleep() - report whether gpio value access may sleep
3432 * @desc: gpio to check
3433 *
3434 */
3435int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003436{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003437 VALIDATE_DESC(desc);
3438 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003439}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003440EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003441
David Brownell0f6d5042008-10-15 22:03:14 -07003442/**
Linus Walleij90b39402e2018-06-01 13:21:27 +02003443 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3444 * @desc: gpio to set the consumer name on
3445 * @name: the new consumer name
3446 */
Muchun Song18534df2018-11-01 21:12:50 +08003447int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
Linus Walleij90b39402e2018-06-01 13:21:27 +02003448{
Muchun Song18534df2018-11-01 21:12:50 +08003449 VALIDATE_DESC(desc);
3450 if (name) {
3451 name = kstrdup_const(name, GFP_KERNEL);
3452 if (!name)
3453 return -ENOMEM;
3454 }
3455
3456 kfree_const(desc->label);
3457 desc_set_label(desc, name);
3458
3459 return 0;
Linus Walleij90b39402e2018-06-01 13:21:27 +02003460}
3461EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3462
3463/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003464 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3465 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07003466 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003467 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3468 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07003469 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003470int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07003471{
Linus Walleij4c37ce82016-05-02 13:13:10 +02003472 struct gpio_chip *chip;
3473 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07003474
Linus Walleij79bb71b2016-06-15 22:57:38 +02003475 /*
3476 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3477 * requires this function to not return zero on an invalid descriptor
3478 * but rather a negative error number.
3479 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02003480 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02003481 return -EINVAL;
3482
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003483 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003484 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02003485 if (chip->to_irq) {
3486 int retirq = chip->to_irq(chip, offset);
3487
3488 /* Zero means NO_IRQ */
3489 if (!retirq)
3490 return -ENXIO;
3491
3492 return retirq;
3493 }
3494 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003495}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003496EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003497
Linus Walleijd468bf92013-09-24 11:54:38 +02003498/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003499 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003500 * @chip: the chip the GPIO to lock belongs to
3501 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003502 *
3503 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08003504 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08003505 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003506int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08003507{
Linus Walleij9c102802016-05-25 10:56:03 +02003508 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02003509
Linus Walleij9c102802016-05-25 10:56:03 +02003510 desc = gpiochip_get_desc(chip, offset);
3511 if (IS_ERR(desc))
3512 return PTR_ERR(desc);
3513
Linus Walleij60f83392016-11-12 15:01:09 +01003514 /*
3515 * If it's fast: flush the direction setting if something changed
3516 * behind our back
3517 */
3518 if (!chip->can_sleep && chip->get_direction) {
Andy Shevchenko80956792018-07-09 21:47:21 +03003519 int dir = gpiod_get_direction(desc);
Linus Walleij9c102802016-05-25 10:56:03 +02003520
Andy Shevchenko36b31272018-07-03 03:38:31 +03003521 if (dir < 0) {
3522 chip_err(chip, "%s: cannot get GPIO direction\n",
3523 __func__);
3524 return dir;
3525 }
Linus Walleij9c102802016-05-25 10:56:03 +02003526 }
3527
3528 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003529 chip_err(chip,
Andy Shevchenkob1911712018-07-03 03:39:03 +03003530 "%s: tried to flag a GPIO set as output for IRQ\n",
3531 __func__);
Linus Walleijd468bf92013-09-24 11:54:38 +02003532 return -EIO;
3533 }
3534
Linus Walleij9c102802016-05-25 10:56:03 +02003535 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003536 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003537
3538 /*
3539 * If the consumer has not set up a label (such as when the
3540 * IRQ is referenced from .to_irq()) we set up a label here
3541 * so it is clear this is used as an interrupt.
3542 */
3543 if (!desc->label)
3544 desc_set_label(desc, "interrupt");
3545
Linus Walleijd468bf92013-09-24 11:54:38 +02003546 return 0;
3547}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003548EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003549
Linus Walleijd468bf92013-09-24 11:54:38 +02003550/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003551 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003552 * @chip: the chip the GPIO to lock belongs to
3553 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003554 *
3555 * This is used directly by GPIO drivers that want to indicate
3556 * that a certain GPIO is no longer used exclusively for IRQ.
3557 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003558void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02003559{
Linus Walleij3940c342016-11-14 00:09:07 +01003560 struct gpio_desc *desc;
3561
3562 desc = gpiochip_get_desc(chip, offset);
3563 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02003564 return;
3565
Linus Walleij3940c342016-11-14 00:09:07 +01003566 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003567 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003568
3569 /* If we only had this marking, erase it */
3570 if (desc->label && !strcmp(desc->label, "interrupt"))
3571 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02003572}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003573EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003574
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003575void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset)
3576{
3577 struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3578
3579 if (!IS_ERR(desc) &&
3580 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3581 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3582}
3583EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3584
3585void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset)
3586{
3587 struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3588
3589 if (!IS_ERR(desc) &&
3590 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3591 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags));
3592 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3593 }
3594}
3595EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3596
Linus Walleij6cee3822016-02-11 20:16:45 +01003597bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
3598{
3599 if (offset >= chip->ngpio)
3600 return false;
3601
3602 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
3603}
3604EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3605
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003606int gpiochip_reqres_irq(struct gpio_chip *chip, unsigned int offset)
3607{
3608 int ret;
3609
3610 if (!try_module_get(chip->gpiodev->owner))
3611 return -ENODEV;
3612
3613 ret = gpiochip_lock_as_irq(chip, offset);
3614 if (ret) {
3615 chip_err(chip, "unable to lock HW IRQ %u for IRQ\n", offset);
3616 module_put(chip->gpiodev->owner);
3617 return ret;
3618 }
3619 return 0;
3620}
3621EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3622
3623void gpiochip_relres_irq(struct gpio_chip *chip, unsigned int offset)
3624{
3625 gpiochip_unlock_as_irq(chip, offset);
3626 module_put(chip->gpiodev->owner);
3627}
3628EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3629
Linus Walleij143b65d2016-02-16 15:41:42 +01003630bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
3631{
3632 if (offset >= chip->ngpio)
3633 return false;
3634
3635 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
3636}
3637EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3638
3639bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
3640{
3641 if (offset >= chip->ngpio)
3642 return false;
3643
3644 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
3645}
3646EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3647
Charles Keepax05f479b2017-05-23 15:47:29 +01003648bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
3649{
3650 if (offset >= chip->ngpio)
3651 return false;
3652
Andrew Jefferye10f72b2017-11-30 14:25:24 +10303653 return !test_bit(FLAG_TRANSITORY, &chip->gpiodev->descs[offset].flags);
Charles Keepax05f479b2017-05-23 15:47:29 +01003654}
3655EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3656
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003657/**
3658 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3659 * @desc: gpio whose value will be returned
3660 *
3661 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003662 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003663 *
3664 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003665 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003666int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003667{
David Brownelld2876d02008-02-04 22:28:20 -08003668 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003669 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003670 return gpiod_get_raw_value_commit(desc);
David Brownelld2876d02008-02-04 22:28:20 -08003671}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003672EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003673
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003674/**
3675 * gpiod_get_value_cansleep() - return a gpio's value
3676 * @desc: gpio whose value will be returned
3677 *
3678 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003679 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003680 *
3681 * This function is to be called from contexts that can sleep.
3682 */
3683int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003684{
David Brownelld2876d02008-02-04 22:28:20 -08003685 int value;
David Brownelld2876d02008-02-04 22:28:20 -08003686
3687 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003688 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003689 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003690 if (value < 0)
3691 return value;
3692
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003693 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3694 value = !value;
3695
David Brownelld2876d02008-02-04 22:28:20 -08003696 return value;
3697}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003698EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003699
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003700/**
Lukas Wunnereec1d562017-10-12 12:40:10 +02003701 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003702 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003703 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003704 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003705 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003706 *
3707 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3708 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3709 * else an error code.
3710 *
3711 * This function is to be called from contexts that can sleep.
3712 */
3713int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3714 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003715 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003716 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003717{
3718 might_sleep_if(extra_checks);
3719 if (!desc_array)
3720 return -EINVAL;
3721 return gpiod_get_array_value_complex(true, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003722 desc_array, array_info,
3723 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003724}
3725EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3726
3727/**
3728 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003729 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003730 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003731 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003732 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003733 *
3734 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3735 * into account. Return 0 in case of success, else an error code.
3736 *
3737 * This function is to be called from contexts that can sleep.
3738 */
3739int gpiod_get_array_value_cansleep(unsigned int array_size,
3740 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003741 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003742 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003743{
3744 might_sleep_if(extra_checks);
3745 if (!desc_array)
3746 return -EINVAL;
3747 return gpiod_get_array_value_complex(false, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003748 desc_array, array_info,
3749 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003750}
3751EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3752
3753/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003754 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3755 * @desc: gpio whose value will be assigned
3756 * @value: value to assign
3757 *
3758 * Set the raw value of the GPIO, i.e. the value of its physical line without
3759 * regard for its ACTIVE_LOW status.
3760 *
3761 * This function is to be called from contexts that can sleep.
3762 */
3763void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003764{
David Brownelld2876d02008-02-04 22:28:20 -08003765 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003766 VALIDATE_DESC_VOID(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003767 gpiod_set_raw_value_commit(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003768}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003769EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003770
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003771/**
3772 * gpiod_set_value_cansleep() - assign a gpio's value
3773 * @desc: gpio whose value will be assigned
3774 * @value: value to assign
3775 *
3776 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3777 * account
3778 *
3779 * This function is to be called from contexts that can sleep.
3780 */
3781void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003782{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003783 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003784 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003785 gpiod_set_value_nocheck(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003786}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003787EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003788
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003789/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003790 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003791 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003792 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003793 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003794 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003795 *
3796 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3797 * without regard for their ACTIVE_LOW status.
3798 *
3799 * This function is to be called from contexts that can sleep.
3800 */
Laura Abbott30277432018-05-21 10:57:07 -07003801int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003802 struct gpio_desc **desc_array,
3803 struct gpio_array *array_info,
3804 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003805{
3806 might_sleep_if(extra_checks);
3807 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003808 return -EINVAL;
3809 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003810 array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003811}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003812EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003813
3814/**
Dmitry Torokhov3946d182017-08-14 21:59:55 -07003815 * gpiod_add_lookup_tables() - register GPIO device consumers
3816 * @tables: list of tables of consumers to register
3817 * @n: number of tables in the list
3818 */
3819void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3820{
3821 unsigned int i;
3822
3823 mutex_lock(&gpio_lookup_lock);
3824
3825 for (i = 0; i < n; i++)
3826 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3827
3828 mutex_unlock(&gpio_lookup_lock);
3829}
3830
3831/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003832 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003833 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003834 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003835 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003836 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003837 *
3838 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3839 * into account.
3840 *
3841 * This function is to be called from contexts that can sleep.
3842 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003843int gpiod_set_array_value_cansleep(unsigned int array_size,
3844 struct gpio_desc **desc_array,
3845 struct gpio_array *array_info,
3846 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003847{
3848 might_sleep_if(extra_checks);
3849 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003850 return -EINVAL;
3851 return gpiod_set_array_value_complex(false, true, array_size,
3852 desc_array, array_info,
3853 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003854}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003855EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003856
3857/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003858 * gpiod_add_lookup_table() - register GPIO device consumers
3859 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003860 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003861void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003862{
3863 mutex_lock(&gpio_lookup_lock);
3864
Alexandre Courbotad824782013-12-03 12:20:11 +09003865 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003866
3867 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003868}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003869EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003870
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303871/**
3872 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3873 * @table: table of consumers to unregister
3874 */
3875void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3876{
3877 mutex_lock(&gpio_lookup_lock);
3878
3879 list_del(&table->list);
3880
3881 mutex_unlock(&gpio_lookup_lock);
3882}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003883EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303884
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02003885/**
3886 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3887 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3888 */
3889void gpiod_add_hogs(struct gpiod_hog *hogs)
3890{
3891 struct gpio_chip *chip;
3892 struct gpiod_hog *hog;
3893
3894 mutex_lock(&gpio_machine_hogs_mutex);
3895
3896 for (hog = &hogs[0]; hog->chip_label; hog++) {
3897 list_add_tail(&hog->list, &gpio_machine_hogs);
3898
3899 /*
3900 * The chip may have been registered earlier, so check if it
3901 * exists and, if so, try to hog the line now.
3902 */
3903 chip = find_chip_by_name(hog->chip_label);
3904 if (chip)
3905 gpiochip_machine_hog(chip, hog);
3906 }
3907
3908 mutex_unlock(&gpio_machine_hogs_mutex);
3909}
3910EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3911
Alexandre Courbotad824782013-12-03 12:20:11 +09003912static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3913{
3914 const char *dev_id = dev ? dev_name(dev) : NULL;
3915 struct gpiod_lookup_table *table;
3916
3917 mutex_lock(&gpio_lookup_lock);
3918
3919 list_for_each_entry(table, &gpio_lookup_list, list) {
3920 if (table->dev_id && dev_id) {
3921 /*
3922 * Valid strings on both ends, must be identical to have
3923 * a match
3924 */
3925 if (!strcmp(table->dev_id, dev_id))
3926 goto found;
3927 } else {
3928 /*
3929 * One of the pointers is NULL, so both must be to have
3930 * a match
3931 */
3932 if (dev_id == table->dev_id)
3933 goto found;
3934 }
3935 }
3936 table = NULL;
3937
3938found:
3939 mutex_unlock(&gpio_lookup_lock);
3940 return table;
3941}
3942
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003943static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Andy Shevchenkofed70262019-04-10 18:39:16 +03003944 unsigned int idx, unsigned long *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003945{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003946 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003947 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003948 struct gpiod_lookup *p;
3949
Alexandre Courbotad824782013-12-03 12:20:11 +09003950 table = gpiod_find_lookup_table(dev);
3951 if (!table)
3952 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003953
Alexandre Courbotad824782013-12-03 12:20:11 +09003954 for (p = &table->table[0]; p->chip_label; p++) {
3955 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003956
Alexandre Courbotad824782013-12-03 12:20:11 +09003957 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003958 if (p->idx != idx)
3959 continue;
3960
Alexandre Courbotad824782013-12-03 12:20:11 +09003961 /* If the lookup entry has a con_id, require exact match */
3962 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3963 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003964
Alexandre Courbotad824782013-12-03 12:20:11 +09003965 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003966
Alexandre Courbotad824782013-12-03 12:20:11 +09003967 if (!chip) {
Janusz Krzysztofik8853daf2018-07-04 00:18:19 +02003968 /*
3969 * As the lookup table indicates a chip with
3970 * p->chip_label should exist, assume it may
3971 * still appear later and let the interested
3972 * consumer be probed again or let the Deferred
3973 * Probe infrastructure handle the error.
3974 */
3975 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
3976 p->chip_label);
3977 return ERR_PTR(-EPROBE_DEFER);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003978 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003979
Alexandre Courbotad824782013-12-03 12:20:11 +09003980 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003981 dev_err(dev,
3982 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3983 idx, chip->ngpio, chip->label);
3984 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003985 }
3986
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09003987 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003988 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003989
3990 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003991 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003992
3993 return desc;
3994}
3995
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003996static int dt_gpio_count(struct device *dev, const char *con_id)
3997{
3998 int ret;
3999 char propname[32];
4000 unsigned int i;
4001
4002 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
4003 if (con_id)
4004 snprintf(propname, sizeof(propname), "%s-%s",
4005 con_id, gpio_suffixes[i]);
4006 else
4007 snprintf(propname, sizeof(propname), "%s",
4008 gpio_suffixes[i]);
4009
4010 ret = of_gpio_named_count(dev->of_node, propname);
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02004011 if (ret > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004012 break;
4013 }
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02004014 return ret ? ret : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004015}
4016
4017static int platform_gpio_count(struct device *dev, const char *con_id)
4018{
4019 struct gpiod_lookup_table *table;
4020 struct gpiod_lookup *p;
4021 unsigned int count = 0;
4022
4023 table = gpiod_find_lookup_table(dev);
4024 if (!table)
4025 return -ENOENT;
4026
4027 for (p = &table->table[0]; p->chip_label; p++) {
4028 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
4029 (!con_id && !p->con_id))
4030 count++;
4031 }
4032 if (!count)
4033 return -ENOENT;
4034
4035 return count;
4036}
4037
4038/**
4039 * gpiod_count - return the number of GPIOs associated with a device / function
4040 * or -ENOENT if no GPIO has been assigned to the requested function
4041 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4042 * @con_id: function within the GPIO consumer
4043 */
4044int gpiod_count(struct device *dev, const char *con_id)
4045{
4046 int count = -ENOENT;
4047
4048 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
4049 count = dt_gpio_count(dev, con_id);
4050 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
4051 count = acpi_gpio_count(dev, con_id);
4052
4053 if (count < 0)
4054 count = platform_gpio_count(dev, con_id);
4055
4056 return count;
4057}
4058EXPORT_SYMBOL_GPL(gpiod_count);
4059
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004060/**
Thierry Reding08791622014-04-25 16:54:22 +02004061 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09004062 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004063 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004064 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004065 *
4066 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004067 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07004068 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004069 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004070struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004071 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004072{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004073 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004074}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004075EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004076
4077/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02004078 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
4079 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4080 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004081 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02004082 *
4083 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
4084 * the requested function it will return NULL. This is convenient for drivers
4085 * that need to handle optional GPIOs.
4086 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004087struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004088 const char *con_id,
4089 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02004090{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004091 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02004092}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004093EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02004094
Benoit Parrotf625d462015-02-02 11:44:44 -06004095
4096/**
4097 * gpiod_configure_flags - helper function to configure a given GPIO
4098 * @desc: gpio whose value will be assigned
4099 * @con_id: function within the GPIO consumer
Andy Shevchenkofed70262019-04-10 18:39:16 +03004100 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4101 * of_find_gpio() or of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06004102 * @dflags: gpiod_flags - optional GPIO initialization flags
4103 *
4104 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
4105 * requested function and/or index, or another IS_ERR() code if an error
4106 * occurred while trying to acquire the GPIO.
4107 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03004108int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02004109 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06004110{
4111 int status;
4112
Johan Hovold85b03b32016-07-03 18:32:05 +02004113 if (lflags & GPIO_ACTIVE_LOW)
4114 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02004115
Johan Hovold85b03b32016-07-03 18:32:05 +02004116 if (lflags & GPIO_OPEN_DRAIN)
4117 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02004118 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
4119 /*
4120 * This enforces open drain mode from the consumer side.
4121 * This is necessary for some busses like I2C, but the lookup
4122 * should *REALLY* have specified them as open drain in the
4123 * first place, so print a little warning here.
4124 */
4125 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4126 gpiod_warn(desc,
4127 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
4128 }
4129
Johan Hovold85b03b32016-07-03 18:32:05 +02004130 if (lflags & GPIO_OPEN_SOURCE)
4131 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304132
Thomas Petazzonid4499912019-02-07 17:28:58 +01004133 if ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) {
4134 gpiod_err(desc,
4135 "both pull-up and pull-down enabled, invalid configuration\n");
4136 return -EINVAL;
4137 }
4138
4139 if (lflags & GPIO_PULL_UP)
4140 set_bit(FLAG_PULL_UP, &desc->flags);
4141 else if (lflags & GPIO_PULL_DOWN)
4142 set_bit(FLAG_PULL_DOWN, &desc->flags);
4143
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304144 status = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
4145 if (status < 0)
4146 return status;
Johan Hovold85b03b32016-07-03 18:32:05 +02004147
Benoit Parrotf625d462015-02-02 11:44:44 -06004148 /* No particular flag request, return here... */
4149 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
4150 pr_debug("no flags found for %s\n", con_id);
4151 return 0;
4152 }
4153
4154 /* Process flags */
4155 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
4156 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01004157 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06004158 else
4159 status = gpiod_direction_input(desc);
4160
4161 return status;
4162}
4163
Thierry Reding29a1f2332014-04-25 17:10:06 +02004164/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004165 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02004166 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004167 * @con_id: function within the GPIO consumer
4168 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004169 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004170 *
4171 * This variant of gpiod_get() allows to access GPIOs other than the first
4172 * defined one for functions that define several GPIOs.
4173 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004174 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
4175 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07004176 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004177 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004178struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004179 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004180 unsigned int idx,
4181 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004182{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03004183 unsigned long lookupflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09004184 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004185 int status;
Linus Walleij7d18f0a2018-01-16 08:29:50 +01004186 /* Maybe we have a device name, maybe not */
4187 const char *devname = dev ? dev_name(dev) : "?";
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004188
4189 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
4190
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01004191 if (dev) {
4192 /* Using device tree? */
4193 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
4194 dev_dbg(dev, "using device tree for GPIO lookup\n");
4195 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
4196 } else if (ACPI_COMPANION(dev)) {
4197 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03004198 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01004199 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09004200 }
4201
4202 /*
4203 * Either we are not using DT or ACPI, or their lookup did not return
4204 * a result. In that case, use platform lookup as a fallback.
4205 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004206 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04004207 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004208 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004209 }
4210
4211 if (IS_ERR(desc)) {
Wang Dongsheng9d5a1f22018-02-27 00:12:13 -08004212 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004213 return desc;
4214 }
4215
Linus Walleij7d18f0a2018-01-16 08:29:50 +01004216 /*
4217 * If a connection label was passed use that, else attempt to use
4218 * the device name as label
4219 */
4220 status = gpiod_request(desc, con_id ? con_id : devname);
Linus Walleijb0ce7b292018-10-12 14:54:12 +02004221 if (status < 0) {
4222 if (status == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) {
4223 /*
4224 * This happens when there are several consumers for
4225 * the same GPIO line: we just return here without
4226 * further initialization. It is a bit if a hack.
4227 * This is necessary to support fixed regulators.
4228 *
4229 * FIXME: Make this more sane and safe.
4230 */
4231 dev_info(dev, "nonexclusive access to GPIO for %s\n",
4232 con_id ? con_id : devname);
4233 return desc;
4234 } else {
4235 return ERR_PTR(status);
4236 }
4237 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004238
Johan Hovold85b03b32016-07-03 18:32:05 +02004239 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004240 if (status < 0) {
4241 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
4242 gpiod_put(desc);
4243 return ERR_PTR(status);
4244 }
4245
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004246 return desc;
4247}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004248EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004249
4250/**
Linus Walleij6392cca2017-12-29 02:07:54 +01004251 * gpiod_get_from_of_node() - obtain a GPIO from an OF node
4252 * @node: handle of the OF node
4253 * @propname: name of the DT property representing the GPIO
4254 * @index: index of the GPIO to obtain for the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004255 * @dflags: GPIO initialization flags
Thierry Reding950d55f52017-07-24 16:57:22 +02004256 * @label: label to attach to the requested GPIO
Mika Westerberg40b73182014-10-21 13:33:59 +02004257 *
Thierry Reding950d55f52017-07-24 16:57:22 +02004258 * Returns:
Andy Shevchenkoff213782017-02-28 17:03:12 +02004259 * On successful request the GPIO pin is configured in accordance with
Linus Walleij6392cca2017-12-29 02:07:54 +01004260 * provided @dflags. If the node does not have the requested GPIO
4261 * property, NULL is returned.
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004262 *
Mika Westerberg40b73182014-10-21 13:33:59 +02004263 * In case of error an ERR_PTR() is returned.
4264 */
Linus Walleij92542ed2017-12-29 22:52:02 +01004265struct gpio_desc *gpiod_get_from_of_node(struct device_node *node,
4266 const char *propname, int index,
4267 enum gpiod_flags dflags,
4268 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02004269{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03004270 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Colin Ian King40a3c9d2018-01-16 11:56:11 +00004271 struct gpio_desc *desc;
Linus Walleij6392cca2017-12-29 02:07:54 +01004272 enum of_gpio_flags flags;
Mika Westerberg40b73182014-10-21 13:33:59 +02004273 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004274 bool single_ended = false;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05304275 bool open_drain = false;
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304276 bool transitory = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02004277 int ret;
4278
Linus Walleij6392cca2017-12-29 02:07:54 +01004279 desc = of_get_named_gpiod_flags(node, propname,
4280 index, &flags);
Mika Westerberg40b73182014-10-21 13:33:59 +02004281
Linus Walleij6392cca2017-12-29 02:07:54 +01004282 if (!desc || IS_ERR(desc)) {
4283 /* If it is not there, just return NULL */
4284 if (PTR_ERR(desc) == -ENOENT)
4285 return NULL;
4286 return desc;
Mika Westerberg40b73182014-10-21 13:33:59 +02004287 }
4288
Linus Walleij6392cca2017-12-29 02:07:54 +01004289 active_low = flags & OF_GPIO_ACTIVE_LOW;
4290 single_ended = flags & OF_GPIO_SINGLE_ENDED;
4291 open_drain = flags & OF_GPIO_OPEN_DRAIN;
4292 transitory = flags & OF_GPIO_TRANSITORY;
Mika Westerberg40b73182014-10-21 13:33:59 +02004293
Alexander Steinb2987d72017-01-12 17:39:24 +01004294 ret = gpiod_request(desc, label);
Linus Walleijec757002018-12-06 13:43:44 +01004295 if (ret == -EBUSY && (flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE))
4296 return desc;
Johan Hovold85b03b32016-07-03 18:32:05 +02004297 if (ret)
4298 return ERR_PTR(ret);
4299
Mika Westerberg40b73182014-10-21 13:33:59 +02004300 if (active_low)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004301 lflags |= GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02004302
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004303 if (single_ended) {
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05304304 if (open_drain)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004305 lflags |= GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004306 else
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004307 lflags |= GPIO_OPEN_SOURCE;
4308 }
4309
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304310 if (transitory)
4311 lflags |= GPIO_TRANSITORY;
4312
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004313 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4314 if (ret < 0) {
4315 gpiod_put(desc);
4316 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004317 }
4318
Mika Westerberg40b73182014-10-21 13:33:59 +02004319 return desc;
4320}
Linus Walleij92542ed2017-12-29 22:52:02 +01004321EXPORT_SYMBOL(gpiod_get_from_of_node);
Linus Walleij6392cca2017-12-29 02:07:54 +01004322
4323/**
Mika Westerberg40b73182014-10-21 13:33:59 +02004324 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
4325 * @fwnode: handle of the firmware node
4326 * @propname: name of the firmware property representing the GPIO
Linus Walleij6392cca2017-12-29 02:07:54 +01004327 * @index: index of the GPIO to obtain for the consumer
Mika Westerberg40b73182014-10-21 13:33:59 +02004328 * @dflags: GPIO initialization flags
4329 * @label: label to attach to the requested GPIO
4330 *
4331 * This function can be used for drivers that get their configuration
Linus Walleij6392cca2017-12-29 02:07:54 +01004332 * from opaque firmware.
Thierry Reding29a1f2332014-04-25 17:10:06 +02004333 *
Linus Walleij6392cca2017-12-29 02:07:54 +01004334 * The function properly finds the corresponding GPIO using whatever is the
Thierry Reding29a1f2332014-04-25 17:10:06 +02004335 * underlying firmware interface and then makes sure that the GPIO
4336 * descriptor is requested before it is returned to the caller.
4337 *
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004338 * Returns:
Thierry Reding29a1f2332014-04-25 17:10:06 +02004339 * On successful request the GPIO pin is configured in accordance with
4340 * provided @dflags.
4341 *
4342 * In case of error an ERR_PTR() is returned.
4343 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004344struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Thierry Reding29a1f2332014-04-25 17:10:06 +02004345 const char *propname, int index,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004346 enum gpiod_flags dflags,
4347 const char *label)
Thierry Reding29a1f2332014-04-25 17:10:06 +02004348{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03004349 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004350 struct gpio_desc *desc = ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004351 int ret;
4352
David Brownelld2876d02008-02-04 22:28:20 -08004353 if (!fwnode)
David Brownelld2876d02008-02-04 22:28:20 -08004354 return ERR_PTR(-EINVAL);
4355
4356 if (is_of_node(fwnode)) {
Linus Walleij6392cca2017-12-29 02:07:54 +01004357 desc = gpiod_get_from_of_node(to_of_node(fwnode),
4358 propname, index,
4359 dflags,
4360 label);
4361 return desc;
David Brownelld2876d02008-02-04 22:28:20 -08004362 } else if (is_acpi_node(fwnode)) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09004363 struct acpi_gpio_info info;
David Brownelld2876d02008-02-04 22:28:20 -08004364
Linus Walleijd468bf92013-09-24 11:54:38 +02004365 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Linus Walleij6392cca2017-12-29 02:07:54 +01004366 if (IS_ERR(desc))
4367 return desc;
4368
4369 acpi_gpio_update_gpiod_flags(&dflags, &info);
Andy Shevchenko606be342019-04-10 18:39:20 +03004370 acpi_gpio_update_gpiod_lookup_flags(&lflags, &info);
Thierry Redingf9c4a312012-04-12 13:26:01 +02004371 }
4372
Linus Walleij6392cca2017-12-29 02:07:54 +01004373 /* Currently only ACPI takes this path */
Thierry Redingf9c4a312012-04-12 13:26:01 +02004374 ret = gpiod_request(desc, label);
4375 if (ret)
4376 return ERR_PTR(ret);
Linus Walleijd468bf92013-09-24 11:54:38 +02004377
Thierry Redingf9c4a312012-04-12 13:26:01 +02004378 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4379 if (ret < 0) {
4380 gpiod_put(desc);
4381 return ERR_PTR(ret);
4382 }
4383
4384 return desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02004385}
4386EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
David Brownelld2876d02008-02-04 22:28:20 -08004387
4388/**
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -07004389 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
David Brownelld8f388d82008-07-25 01:46:07 -07004390 * function
Linus Walleijd468bf92013-09-24 11:54:38 +02004391 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4392 * @con_id: function within the GPIO consumer
David Brownelld2876d02008-02-04 22:28:20 -08004393 * @index: index of the GPIO to obtain in the consumer
4394 * @flags: optional GPIO initialization flags
4395 *
4396 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4397 * specified index was assigned to the requested function it will return NULL.
4398 * This is convenient for drivers that need to handle optional GPIOs.
Grant Likely362432a2013-02-09 09:41:49 +00004399 */
David Brownelld8f388d82008-07-25 01:46:07 -07004400struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004401 const char *con_id,
Thierry Redingf9c4a312012-04-12 13:26:01 +02004402 unsigned int index,
4403 enum gpiod_flags flags)
4404{
Grant Likely362432a2013-02-09 09:41:49 +00004405 struct gpio_desc *desc;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004406
Grant Likely362432a2013-02-09 09:41:49 +00004407 desc = gpiod_get_index(dev, con_id, index, flags);
4408 if (IS_ERR(desc)) {
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004409 if (PTR_ERR(desc) == -ENOENT)
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004410 return NULL;
David Brownelld2876d02008-02-04 22:28:20 -08004411 }
4412
Benoit Parrotf625d462015-02-02 11:44:44 -06004413 return desc;
4414}
4415EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4416
4417/**
4418 * gpiod_hog - Hog the specified GPIO desc given the provided flags
4419 * @desc: gpio whose value will be assigned
4420 * @name: gpio line name
Andy Shevchenkofed70262019-04-10 18:39:16 +03004421 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
4422 * of_find_gpio() or of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06004423 * @dflags: gpiod_flags - optional GPIO initialization flags
4424 */
4425int gpiod_hog(struct gpio_desc *desc, const char *name,
4426 unsigned long lflags, enum gpiod_flags dflags)
4427{
4428 struct gpio_chip *chip;
4429 struct gpio_desc *local_desc;
4430 int hwnum;
4431 int status;
4432
4433 chip = gpiod_to_chip(desc);
4434 hwnum = gpio_chip_hwgpio(desc);
4435
Linus Walleij5923ea62019-04-26 14:40:18 +02004436 local_desc = gpiochip_request_own_desc(chip, hwnum, name,
4437 lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06004438 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05304439 status = PTR_ERR(local_desc);
4440 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
4441 name, chip->label, hwnum, status);
4442 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06004443 }
4444
Benoit Parrotf625d462015-02-02 11:44:44 -06004445 /* Mark GPIO as hogged so it can be identified and removed later */
4446 set_bit(FLAG_IS_HOGGED, &desc->flags);
4447
4448 pr_info("GPIO line %d (%s) hogged as %s%s\n",
4449 desc_to_gpio(desc), name,
4450 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4451 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
4452 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
4453
4454 return 0;
4455}
4456
4457/**
4458 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4459 * @chip: gpio chip to act on
Benoit Parrotf625d462015-02-02 11:44:44 -06004460 */
4461static void gpiochip_free_hogs(struct gpio_chip *chip)
4462{
4463 int id;
4464
4465 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01004466 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
4467 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06004468 }
4469}
4470
4471/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004472 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4473 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4474 * @con_id: function within the GPIO consumer
4475 * @flags: optional GPIO initialization flags
4476 *
4477 * This function acquires all the GPIOs defined under a given function.
4478 *
4479 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4480 * no GPIO has been assigned to the requested function, or another IS_ERR()
4481 * code if an error occurred while trying to acquire the GPIOs.
4482 */
4483struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4484 const char *con_id,
4485 enum gpiod_flags flags)
4486{
4487 struct gpio_desc *desc;
4488 struct gpio_descs *descs;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004489 struct gpio_array *array_info = NULL;
4490 struct gpio_chip *chip;
4491 int count, bitmap_size;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004492
4493 count = gpiod_count(dev, con_id);
4494 if (count < 0)
4495 return ERR_PTR(count);
4496
Kees Cookacafe7e2018-05-08 13:45:50 -07004497 descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004498 if (!descs)
4499 return ERR_PTR(-ENOMEM);
4500
4501 for (descs->ndescs = 0; descs->ndescs < count; ) {
4502 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4503 if (IS_ERR(desc)) {
4504 gpiod_put_array(descs);
4505 return ERR_CAST(desc);
4506 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004507
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004508 descs->desc[descs->ndescs] = desc;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004509
4510 chip = gpiod_to_chip(desc);
4511 /*
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004512 * If pin hardware number of array member 0 is also 0, select
4513 * its chip as a candidate for fast bitmap processing path.
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004514 */
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004515 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004516 struct gpio_descs *array;
4517
4518 bitmap_size = BITS_TO_LONGS(chip->ngpio > count ?
4519 chip->ngpio : count);
4520
4521 array = kzalloc(struct_size(descs, desc, count) +
4522 struct_size(array_info, invert_mask,
4523 3 * bitmap_size), GFP_KERNEL);
4524 if (!array) {
4525 gpiod_put_array(descs);
4526 return ERR_PTR(-ENOMEM);
4527 }
4528
4529 memcpy(array, descs,
4530 struct_size(descs, desc, descs->ndescs + 1));
4531 kfree(descs);
4532
4533 descs = array;
4534 array_info = (void *)(descs->desc + count);
4535 array_info->get_mask = array_info->invert_mask +
4536 bitmap_size;
4537 array_info->set_mask = array_info->get_mask +
4538 bitmap_size;
4539
4540 array_info->desc = descs->desc;
4541 array_info->size = count;
4542 array_info->chip = chip;
4543 bitmap_set(array_info->get_mask, descs->ndescs,
4544 count - descs->ndescs);
4545 bitmap_set(array_info->set_mask, descs->ndescs,
4546 count - descs->ndescs);
4547 descs->info = array_info;
4548 }
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004549 /* Unmark array members which don't belong to the 'fast' chip */
4550 if (array_info && array_info->chip != chip) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004551 __clear_bit(descs->ndescs, array_info->get_mask);
4552 __clear_bit(descs->ndescs, array_info->set_mask);
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004553 }
4554 /*
4555 * Detect array members which belong to the 'fast' chip
4556 * but their pins are not in hardware order.
4557 */
4558 else if (array_info &&
4559 gpio_chip_hwgpio(desc) != descs->ndescs) {
4560 /*
4561 * Don't use fast path if all array members processed so
4562 * far belong to the same chip as this one but its pin
4563 * hardware number is different from its array index.
4564 */
4565 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4566 array_info = NULL;
4567 } else {
4568 __clear_bit(descs->ndescs,
4569 array_info->get_mask);
4570 __clear_bit(descs->ndescs,
4571 array_info->set_mask);
4572 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004573 } else if (array_info) {
4574 /* Exclude open drain or open source from fast output */
4575 if (gpiochip_line_is_open_drain(chip, descs->ndescs) ||
4576 gpiochip_line_is_open_source(chip, descs->ndescs))
4577 __clear_bit(descs->ndescs,
4578 array_info->set_mask);
4579 /* Identify 'fast' pins which require invertion */
4580 if (gpiod_is_active_low(desc))
4581 __set_bit(descs->ndescs,
4582 array_info->invert_mask);
4583 }
4584
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004585 descs->ndescs++;
4586 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004587 if (array_info)
4588 dev_dbg(dev,
4589 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4590 array_info->chip->label, array_info->size,
4591 *array_info->get_mask, *array_info->set_mask,
4592 *array_info->invert_mask);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004593 return descs;
4594}
4595EXPORT_SYMBOL_GPL(gpiod_get_array);
4596
4597/**
4598 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4599 * function
4600 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4601 * @con_id: function within the GPIO consumer
4602 * @flags: optional GPIO initialization flags
4603 *
4604 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4605 * assigned to the requested function it will return NULL.
4606 */
4607struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4608 const char *con_id,
4609 enum gpiod_flags flags)
4610{
4611 struct gpio_descs *descs;
4612
4613 descs = gpiod_get_array(dev, con_id, flags);
4614 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
4615 return NULL;
4616
4617 return descs;
4618}
4619EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4620
4621/**
David Brownelld2876d02008-02-04 22:28:20 -08004622 * gpiod_put - dispose of a GPIO descriptor
4623 * @desc: GPIO descriptor to dispose of
4624 *
4625 * No descriptor can be used after gpiod_put() has been called on it.
4626 */
4627void gpiod_put(struct gpio_desc *desc)
4628{
Andy Shevchenko1d7765b2019-03-26 17:21:14 +02004629 if (desc)
4630 gpiod_free(desc);
David Brownelld2876d02008-02-04 22:28:20 -08004631}
4632EXPORT_SYMBOL_GPL(gpiod_put);
4633
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004634/**
4635 * gpiod_put_array - dispose of multiple GPIO descriptors
4636 * @descs: struct gpio_descs containing an array of descriptors
4637 */
4638void gpiod_put_array(struct gpio_descs *descs)
4639{
4640 unsigned int i;
4641
4642 for (i = 0; i < descs->ndescs; i++)
4643 gpiod_put(descs->desc[i]);
4644
4645 kfree(descs);
4646}
4647EXPORT_SYMBOL_GPL(gpiod_put_array);
4648
Linus Walleij3c702e92015-10-21 15:29:53 +02004649static int __init gpiolib_dev_init(void)
4650{
4651 int ret;
4652
4653 /* Register GPIO sysfs bus */
Andy Shevchenkob1911712018-07-03 03:39:03 +03004654 ret = bus_register(&gpio_bus_type);
Linus Walleij3c702e92015-10-21 15:29:53 +02004655 if (ret < 0) {
4656 pr_err("gpiolib: could not register GPIO bus type\n");
4657 return ret;
4658 }
4659
4660 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
4661 if (ret < 0) {
4662 pr_err("gpiolib: failed to allocate char dev region\n");
4663 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07004664 } else {
4665 gpiolib_initialized = true;
4666 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02004667 }
4668 return ret;
4669}
4670core_initcall(gpiolib_dev_init);
4671
David Brownelld2876d02008-02-04 22:28:20 -08004672#ifdef CONFIG_DEBUG_FS
4673
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004674static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08004675{
4676 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004677 struct gpio_chip *chip = gdev->chip;
4678 unsigned gpio = gdev->base;
4679 struct gpio_desc *gdesc = &gdev->descs[0];
Linus Walleij90fd2272018-10-01 23:06:17 +02004680 bool is_out;
4681 bool is_irq;
4682 bool active_low;
David Brownelld2876d02008-02-04 22:28:20 -08004683
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004684 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02004685 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4686 if (gdesc->name) {
4687 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4688 gpio, gdesc->name);
4689 }
David Brownelld2876d02008-02-04 22:28:20 -08004690 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02004691 }
David Brownelld2876d02008-02-04 22:28:20 -08004692
4693 gpiod_get_direction(gdesc);
4694 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
4695 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Linus Walleij90fd2272018-10-01 23:06:17 +02004696 active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags);
4697 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s",
Markus Pargmannced433e2015-08-14 16:11:02 +02004698 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08004699 is_out ? "out" : "in ",
Andy Shevchenko1c22a252018-07-12 20:36:42 +03004700 chip->get ? (chip->get(chip, i) ? "hi" : "lo") : "? ",
Linus Walleij90fd2272018-10-01 23:06:17 +02004701 is_irq ? "IRQ " : "",
4702 active_low ? "ACTIVE LOW" : "");
David Brownelld2876d02008-02-04 22:28:20 -08004703 seq_printf(s, "\n");
4704 }
4705}
4706
4707static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4708{
4709 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004710 struct gpio_device *gdev = NULL;
David Brownelld2876d02008-02-04 22:28:20 -08004711 loff_t index = *pos;
4712
4713 s->private = "";
4714
4715 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004716 list_for_each_entry(gdev, &gpio_devices, list)
David Brownelld2876d02008-02-04 22:28:20 -08004717 if (index-- == 0) {
4718 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004719 return gdev;
David Brownelld2876d02008-02-04 22:28:20 -08004720 }
4721 spin_unlock_irqrestore(&gpio_lock, flags);
4722
4723 return NULL;
4724}
4725
4726static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4727{
4728 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004729 struct gpio_device *gdev = v;
David Brownelld2876d02008-02-04 22:28:20 -08004730 void *ret = NULL;
4731
4732 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004733 if (list_is_last(&gdev->list, &gpio_devices))
David Brownelld2876d02008-02-04 22:28:20 -08004734 ret = NULL;
4735 else
Linus Walleijff2b1352015-10-20 11:10:38 +02004736 ret = list_entry(gdev->list.next, struct gpio_device, list);
David Brownelld2876d02008-02-04 22:28:20 -08004737 spin_unlock_irqrestore(&gpio_lock, flags);
4738
4739 s->private = "\n";
4740 ++*pos;
4741
4742 return ret;
4743}
4744
4745static void gpiolib_seq_stop(struct seq_file *s, void *v)
4746{
4747}
4748
4749static int gpiolib_seq_show(struct seq_file *s, void *v)
4750{
Linus Walleijff2b1352015-10-20 11:10:38 +02004751 struct gpio_device *gdev = v;
4752 struct gpio_chip *chip = gdev->chip;
4753 struct device *parent;
David Brownelld2876d02008-02-04 22:28:20 -08004754
Linus Walleijff2b1352015-10-20 11:10:38 +02004755 if (!chip) {
4756 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4757 dev_name(&gdev->dev));
4758 return 0;
4759 }
4760
4761 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4762 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004763 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02004764 parent = chip->parent;
4765 if (parent)
4766 seq_printf(s, ", parent: %s/%s",
4767 parent->bus ? parent->bus->name : "no-bus",
4768 dev_name(parent));
David Brownelld2876d02008-02-04 22:28:20 -08004769 if (chip->label)
4770 seq_printf(s, ", %s", chip->label);
4771 if (chip->can_sleep)
4772 seq_printf(s, ", can sleep");
4773 seq_printf(s, ":\n");
4774
4775 if (chip->dbg_show)
4776 chip->dbg_show(s, chip);
4777 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004778 gpiolib_dbg_show(s, gdev);
David Brownelld2876d02008-02-04 22:28:20 -08004779
4780 return 0;
4781}
4782
4783static const struct seq_operations gpiolib_seq_ops = {
4784 .start = gpiolib_seq_start,
4785 .next = gpiolib_seq_next,
4786 .stop = gpiolib_seq_stop,
4787 .show = gpiolib_seq_show,
4788};
4789
4790static int gpiolib_open(struct inode *inode, struct file *file)
4791{
4792 return seq_open(file, &gpiolib_seq_ops);
4793}
4794
4795static const struct file_operations gpiolib_operations = {
4796 .owner = THIS_MODULE,
4797 .open = gpiolib_open,
4798 .read = seq_read,
4799 .llseek = seq_lseek,
4800 .release = seq_release,
4801};
4802
4803static int __init gpiolib_debugfs_init(void)
4804{
4805 /* /sys/kernel/debug/gpio */
Greg Kroah-Hartmanacc68b02019-06-18 17:50:45 +02004806 debugfs_create_file("gpio", S_IFREG | S_IRUGO, NULL, NULL,
4807 &gpiolib_operations);
David Brownelld2876d02008-02-04 22:28:20 -08004808 return 0;
4809}
4810subsys_initcall(gpiolib_debugfs_init);
4811
4812#endif /* DEBUG_FS */