blob: 1a283fbac84c5e28c012365f5d8eaee20601142b [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;
Timur Tabiab3dbcf2018-03-29 13:29:12 -0500585 count = i;
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
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100831 ge.timestamp = le->timestamp;
Linus Walleij61f922d2016-06-02 11:30:15 +0200832
Bartosz Golaszewskiad537b82017-06-23 13:45:16 +0200833 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
834 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200835 int level = gpiod_get_value_cansleep(le->desc);
Linus Walleij61f922d2016-06-02 11:30:15 +0200836 if (level)
837 /* Emit low-to-high event */
838 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
839 else
840 /* Emit high-to-low event */
841 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200842 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200843 /* Emit low-to-high event */
844 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
Uwe Kleine-Königfa388692018-08-20 08:32:53 +0200845 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200846 /* Emit high-to-low event */
847 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200848 } else {
849 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200850 }
851
852 ret = kfifo_put(&le->events, ge);
853 if (ret != 0)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800854 wake_up_poll(&le->wait, EPOLLIN);
Linus Walleij61f922d2016-06-02 11:30:15 +0200855
856 return IRQ_HANDLED;
857}
858
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100859static irqreturn_t lineevent_irq_handler(int irq, void *p)
860{
861 struct lineevent_state *le = p;
862
863 /*
864 * Just store the timestamp in hardirq context so we get it as
865 * close in time as possible to the actual event.
866 */
867 le->timestamp = ktime_get_real_ns();
868
869 return IRQ_WAKE_THREAD;
870}
871
Linus Walleij61f922d2016-06-02 11:30:15 +0200872static int lineevent_create(struct gpio_device *gdev, void __user *ip)
873{
874 struct gpioevent_request eventreq;
875 struct lineevent_state *le;
876 struct gpio_desc *desc;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200877 struct file *file;
Linus Walleij61f922d2016-06-02 11:30:15 +0200878 u32 offset;
879 u32 lflags;
880 u32 eflags;
881 int fd;
882 int ret;
883 int irqflags = 0;
884
885 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
886 return -EFAULT;
887
888 le = kzalloc(sizeof(*le), GFP_KERNEL);
889 if (!le)
890 return -ENOMEM;
891 le->gdev = gdev;
892 get_device(&gdev->dev);
893
894 /* Make sure this is terminated */
895 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
896 if (strlen(eventreq.consumer_label)) {
897 le->label = kstrdup(eventreq.consumer_label,
898 GFP_KERNEL);
899 if (!le->label) {
900 ret = -ENOMEM;
901 goto out_free_le;
902 }
903 }
904
905 offset = eventreq.lineoffset;
906 lflags = eventreq.handleflags;
907 eflags = eventreq.eventflags;
908
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200909 if (offset >= gdev->ngpio) {
910 ret = -EINVAL;
911 goto out_free_label;
912 }
913
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200914 /* Return an error if a unknown flag is set */
915 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
916 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
917 ret = -EINVAL;
918 goto out_free_label;
919 }
920
Linus Walleij61f922d2016-06-02 11:30:15 +0200921 /* This is just wrong: we don't look for events on output lines */
922 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
923 ret = -EINVAL;
924 goto out_free_label;
925 }
926
927 desc = &gdev->descs[offset];
928 ret = gpiod_request(desc, le->label);
929 if (ret)
Uwe Kleine-Königf001cc32018-04-16 13:17:53 +0200930 goto out_free_label;
Linus Walleij61f922d2016-06-02 11:30:15 +0200931 le->desc = desc;
932 le->eflags = eflags;
933
934 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
935 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
936 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
937 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
938 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
939 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
940
941 ret = gpiod_direction_input(desc);
942 if (ret)
943 goto out_free_desc;
944
945 le->irq = gpiod_to_irq(desc);
946 if (le->irq <= 0) {
947 ret = -ENODEV;
948 goto out_free_desc;
949 }
950
951 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
952 irqflags |= IRQF_TRIGGER_RISING;
953 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
954 irqflags |= IRQF_TRIGGER_FALLING;
955 irqflags |= IRQF_ONESHOT;
Linus Walleij61f922d2016-06-02 11:30:15 +0200956
957 INIT_KFIFO(le->events);
958 init_waitqueue_head(&le->wait);
959 mutex_init(&le->read_lock);
960
961 /* Request a thread to read the events */
962 ret = request_threaded_irq(le->irq,
Linus Walleijd58f2bf2017-11-30 10:23:27 +0100963 lineevent_irq_handler,
Linus Walleij61f922d2016-06-02 11:30:15 +0200964 lineevent_irq_thread,
965 irqflags,
966 le->label,
967 le);
968 if (ret)
969 goto out_free_desc;
970
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200971 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleij61f922d2016-06-02 11:30:15 +0200972 if (fd < 0) {
973 ret = fd;
974 goto out_free_irq;
975 }
976
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200977 file = anon_inode_getfile("gpio-event",
978 &lineevent_fileops,
979 le,
980 O_RDONLY | O_CLOEXEC);
981 if (IS_ERR(file)) {
982 ret = PTR_ERR(file);
983 goto out_put_unused_fd;
984 }
985
Linus Walleij61f922d2016-06-02 11:30:15 +0200986 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200987 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200988 /*
989 * fput() will trigger the release() callback, so do not go onto
990 * the regular error cleanup path here.
991 */
992 fput(file);
993 put_unused_fd(fd);
994 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200995 }
Linus Walleij61f922d2016-06-02 11:30:15 +0200996
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200997 fd_install(fd, file);
998
Linus Walleij61f922d2016-06-02 11:30:15 +0200999 return 0;
1000
Lars-Peter Clausen953b9562016-10-24 13:59:15 +02001001out_put_unused_fd:
1002 put_unused_fd(fd);
Linus Walleij61f922d2016-06-02 11:30:15 +02001003out_free_irq:
1004 free_irq(le->irq, le);
1005out_free_desc:
1006 gpiod_free(le->desc);
1007out_free_label:
1008 kfree(le->label);
1009out_free_le:
1010 kfree(le);
1011 put_device(&gdev->dev);
1012 return ret;
1013}
1014
Thierry Reding950d55f52017-07-24 16:57:22 +02001015/*
Linus Walleij3c702e92015-10-21 15:29:53 +02001016 * gpio_ioctl() - ioctl handler for the GPIO chardev
1017 */
1018static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1019{
1020 struct gpio_device *gdev = filp->private_data;
1021 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +02001022 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +02001023
1024 /* We fail any subsequent ioctl():s when the chip is gone */
1025 if (!chip)
1026 return -ENODEV;
1027
Linus Walleij521a2ad2016-02-12 22:25:22 +01001028 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +02001029 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +01001030 struct gpiochip_info chipinfo;
1031
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +02001032 memset(&chipinfo, 0, sizeof(chipinfo));
1033
Linus Walleij3c702e92015-10-21 15:29:53 +02001034 strncpy(chipinfo.name, dev_name(&gdev->dev),
1035 sizeof(chipinfo.name));
1036 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +01001037 strncpy(chipinfo.label, gdev->label,
1038 sizeof(chipinfo.label));
1039 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001040 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +02001041 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
1042 return -EFAULT;
1043 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +01001044 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
1045 struct gpioline_info lineinfo;
1046 struct gpio_desc *desc;
1047
1048 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
1049 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +02001050 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +01001051 return -EINVAL;
1052
1053 desc = &gdev->descs[lineinfo.line_offset];
1054 if (desc->name) {
1055 strncpy(lineinfo.name, desc->name,
1056 sizeof(lineinfo.name));
1057 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
1058 } else {
1059 lineinfo.name[0] = '\0';
1060 }
1061 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +01001062 strncpy(lineinfo.consumer, desc->label,
1063 sizeof(lineinfo.consumer));
1064 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +01001065 } else {
Linus Walleij214338e2016-02-25 21:01:48 +01001066 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +01001067 }
1068
1069 /*
1070 * Userspace only need to know that the kernel is using
1071 * this GPIO so it can't use it.
1072 */
1073 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001074 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
1075 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
1076 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
1077 test_bit(FLAG_EXPORT, &desc->flags) ||
1078 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001079 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001080 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001081 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001082 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001083 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001084 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001085 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +01001086 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +01001087 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
1088
1089 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
1090 return -EFAULT;
1091 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +02001092 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
1093 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +02001094 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
1095 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +02001096 }
1097 return -EINVAL;
1098}
1099
Linus Walleij8b92e172016-05-27 14:24:04 +02001100#ifdef CONFIG_COMPAT
1101static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
1102 unsigned long arg)
1103{
1104 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1105}
1106#endif
1107
Linus Walleij3c702e92015-10-21 15:29:53 +02001108/**
1109 * gpio_chrdev_open() - open the chardev for ioctl operations
1110 * @inode: inode for this chardev
1111 * @filp: file struct for storing private data
1112 * Returns 0 on success
1113 */
1114static int gpio_chrdev_open(struct inode *inode, struct file *filp)
1115{
1116 struct gpio_device *gdev = container_of(inode->i_cdev,
1117 struct gpio_device, chrdev);
1118
1119 /* Fail on open if the backing gpiochip is gone */
Stephen Boydfb505742017-01-09 11:47:44 -08001120 if (!gdev->chip)
Linus Walleij3c702e92015-10-21 15:29:53 +02001121 return -ENODEV;
1122 get_device(&gdev->dev);
1123 filp->private_data = gdev;
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001124
1125 return nonseekable_open(inode, filp);
Linus Walleij3c702e92015-10-21 15:29:53 +02001126}
1127
1128/**
1129 * gpio_chrdev_release() - close chardev after ioctl operations
1130 * @inode: inode for this chardev
1131 * @filp: file struct for storing private data
1132 * Returns 0 on success
1133 */
1134static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1135{
1136 struct gpio_device *gdev = container_of(inode->i_cdev,
1137 struct gpio_device, chrdev);
1138
Linus Walleij3c702e92015-10-21 15:29:53 +02001139 put_device(&gdev->dev);
1140 return 0;
1141}
1142
1143
1144static const struct file_operations gpio_fileops = {
1145 .release = gpio_chrdev_release,
1146 .open = gpio_chrdev_open,
1147 .owner = THIS_MODULE,
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001148 .llseek = no_llseek,
Linus Walleij3c702e92015-10-21 15:29:53 +02001149 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +02001150#ifdef CONFIG_COMPAT
1151 .compat_ioctl = gpio_ioctl_compat,
1152#endif
Linus Walleij3c702e92015-10-21 15:29:53 +02001153};
1154
Linus Walleijff2b1352015-10-20 11:10:38 +02001155static void gpiodevice_release(struct device *dev)
1156{
1157 struct gpio_device *gdev = dev_get_drvdata(dev);
1158
1159 list_del(&gdev->list);
1160 ida_simple_remove(&gpio_ida, gdev->id);
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001161 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001162 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +01001163 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001164}
1165
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001166static int gpiochip_setup_dev(struct gpio_device *gdev)
1167{
1168 int status;
1169
1170 cdev_init(&gdev->chrdev, &gpio_fileops);
1171 gdev->chrdev.owner = THIS_MODULE;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001172 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001173
1174 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001175 if (status)
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001176 return status;
1177
1178 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1179 MAJOR(gpio_devt), gdev->id);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001180
1181 status = gpiochip_sysfs_register(gdev);
1182 if (status)
1183 goto err_remove_device;
1184
1185 /* From this point, the .release() function cleans up gpio_device */
1186 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001187 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1188 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1189 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1190
1191 return 0;
1192
1193err_remove_device:
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001194 cdev_device_del(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001195 return status;
1196}
1197
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001198static void gpiochip_machine_hog(struct gpio_chip *chip, struct gpiod_hog *hog)
1199{
1200 struct gpio_desc *desc;
1201 int rv;
1202
1203 desc = gpiochip_get_desc(chip, hog->chip_hwnum);
1204 if (IS_ERR(desc)) {
1205 pr_err("%s: unable to get GPIO desc: %ld\n",
1206 __func__, PTR_ERR(desc));
1207 return;
1208 }
1209
Dan Carpenterba3efdf2018-05-01 10:36:39 +03001210 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001211 return;
1212
1213 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
1214 if (rv)
1215 pr_err("%s: unable to hog GPIO line (%s:%u): %d\n",
1216 __func__, chip->label, hog->chip_hwnum, rv);
1217}
1218
1219static void machine_gpiochip_add(struct gpio_chip *chip)
1220{
1221 struct gpiod_hog *hog;
1222
1223 mutex_lock(&gpio_machine_hogs_mutex);
1224
1225 list_for_each_entry(hog, &gpio_machine_hogs, list) {
1226 if (!strcmp(chip->label, hog->chip_label))
1227 gpiochip_machine_hog(chip, hog);
1228 }
1229
1230 mutex_unlock(&gpio_machine_hogs_mutex);
1231}
1232
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001233static void gpiochip_setup_devs(void)
1234{
1235 struct gpio_device *gdev;
1236 int err;
1237
1238 list_for_each_entry(gdev, &gpio_devices, list) {
1239 err = gpiochip_setup_dev(gdev);
1240 if (err)
1241 pr_err("%s: Failed to initialize gpio device (%d)\n",
1242 dev_name(&gdev->dev), err);
1243 }
1244}
1245
Thierry Reding959bc7b2017-11-07 19:15:59 +01001246int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001247 struct lock_class_key *lock_key,
1248 struct lock_class_key *request_key)
David Brownelld2876d02008-02-04 22:28:20 -08001249{
1250 unsigned long flags;
1251 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001252 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001253 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001254 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001255
Linus Walleijff2b1352015-10-20 11:10:38 +02001256 /*
1257 * First: allocate and populate the internal stat container, and
1258 * set up the struct device.
1259 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001260 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001261 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001262 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001263 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001264 gdev->chip = chip;
1265 chip->gpiodev = gdev;
1266 if (chip->parent) {
1267 gdev->dev.parent = chip->parent;
1268 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001269 }
1270
Linus Walleijff2b1352015-10-20 11:10:38 +02001271#ifdef CONFIG_OF_GPIO
1272 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001273 if (chip->of_node)
1274 gdev->dev.of_node = chip->of_node;
Biju Das6ff04972018-08-06 10:48:01 +01001275 else
1276 chip->of_node = gdev->dev.of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001277#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001278
Linus Walleijff2b1352015-10-20 11:10:38 +02001279 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1280 if (gdev->id < 0) {
1281 status = gdev->id;
1282 goto err_free_gdev;
1283 }
1284 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1285 device_initialize(&gdev->dev);
1286 dev_set_drvdata(&gdev->dev, gdev);
1287 if (chip->parent && chip->parent->driver)
1288 gdev->owner = chip->parent->driver->owner;
1289 else if (chip->owner)
1290 /* TODO: remove chip->owner */
1291 gdev->owner = chip->owner;
1292 else
1293 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001294
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001295 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001296 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001297 status = -ENOMEM;
1298 goto err_free_gdev;
1299 }
1300
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001301 if (chip->ngpio == 0) {
1302 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001303 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001304 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001305 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001306
Laura Abbott30277432018-05-21 10:57:07 -07001307 if (chip->ngpio > FASTPATH_NGPIO)
1308 chip_warn(chip, "line cnt %u is greater than fast path cnt %u\n",
1309 chip->ngpio, FASTPATH_NGPIO);
1310
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001311 gdev->label = kstrdup_const(chip->label ?: "unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001312 if (!gdev->label) {
1313 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001314 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001315 }
1316
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001317 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001318 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001319
David Brownelld2876d02008-02-04 22:28:20 -08001320 spin_lock_irqsave(&gpio_lock, flags);
1321
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001322 /*
1323 * TODO: this allocates a Linux GPIO number base in the global
1324 * GPIO numberspace for this chip. In the long run we want to
1325 * get *rid* of this numberspace and use only descriptors, but
1326 * it may be a pipe dream. It will not happen before we get rid
1327 * of the sysfs interface anyways.
1328 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001329 if (base < 0) {
1330 base = gpiochip_find_base(chip->ngpio);
1331 if (base < 0) {
1332 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001333 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001334 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001335 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001336 /*
1337 * TODO: it should not be necessary to reflect the assigned
1338 * base outside of the GPIO subsystem. Go over drivers and
1339 * see if anyone makes use of this, else drop this and assign
1340 * a poison instead.
1341 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001342 chip->base = base;
1343 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001344 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001345
Linus Walleijff2b1352015-10-20 11:10:38 +02001346 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001347 if (status) {
1348 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001349 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001350 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001351
Linus Walleij545ebd92016-05-30 17:11:59 +02001352 spin_unlock_irqrestore(&gpio_lock, flags);
1353
Ricardo Ribalda Delgado767cd172018-10-12 08:11:36 +02001354 for (i = 0; i < chip->ngpio; i++)
1355 gdev->descs[i].gdev = gdev;
1356
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301357#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001358 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301359#endif
1360
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001361 status = gpiochip_set_desc_names(chip);
1362 if (status)
1363 goto err_remove_from_list;
1364
Mika Westerberg79b804c2016-09-20 15:15:21 +03001365 status = gpiochip_irqchip_init_valid_mask(chip);
1366 if (status)
1367 goto err_remove_from_list;
1368
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001369 status = gpiochip_alloc_valid_mask(chip);
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001370 if (status)
1371 goto err_remove_irqchip_mask;
1372
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001373 status = gpiochip_add_irqchip(chip, lock_key, request_key);
Thierry Redinge0d89722017-11-07 19:15:54 +01001374 if (status)
1375 goto err_remove_chip;
1376
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001377 status = of_gpiochip_add(chip);
1378 if (status)
1379 goto err_remove_chip;
1380
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +02001381 status = gpiochip_init_valid_mask(chip);
1382 if (status)
1383 goto err_remove_chip;
1384
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +02001385 for (i = 0; i < chip->ngpio; i++) {
1386 struct gpio_desc *desc = &gdev->descs[i];
1387
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +02001388 if (chip->get_direction && gpiochip_line_is_valid(chip, i))
1389 desc->flags = !chip->get_direction(chip, i) ?
1390 (1 << FLAG_IS_OUT) : 0;
1391 else
1392 desc->flags = !chip->direction_input ?
1393 (1 << FLAG_IS_OUT) : 0;
1394 }
1395
Mika Westerberg664e3e52014-01-08 12:40:54 +02001396 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001397
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02001398 machine_gpiochip_add(chip);
1399
Linus Walleij3c702e92015-10-21 15:29:53 +02001400 /*
1401 * By first adding the chardev, and then adding the device,
1402 * we get a device node entry in sysfs under
1403 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1404 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001405 * We can do this only if gpiolib has been initialized.
1406 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001407 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001408 if (gpiolib_initialized) {
1409 status = gpiochip_setup_dev(gdev);
1410 if (status)
1411 goto err_remove_chip;
1412 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001413 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001414
Johan Hovold225fce82015-01-12 17:12:25 +01001415err_remove_chip:
1416 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001417 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001418 of_gpiochip_remove(chip);
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001419 gpiochip_free_valid_mask(chip);
1420err_remove_irqchip_mask:
Mika Westerberg79b804c2016-09-20 15:15:21 +03001421 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001422err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001423 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001424 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001425 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001426err_free_label:
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +01001427 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001428err_free_descs:
1429 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001430err_free_gdev:
1431 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001432 /* failures here can mean systems won't boot... */
Marcel Ziswiler1777fc92018-07-20 09:54:49 +02001433 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001434 gdev->base, gdev->base + gdev->ngpio - 1,
Marcel Ziswiler1777fc92018-07-20 09:54:49 +02001435 chip->label ? : "generic", status);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001436 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001437 return status;
1438}
Thierry Reding959bc7b2017-11-07 19:15:59 +01001439EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
David Brownelld2876d02008-02-04 22:28:20 -08001440
1441/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001442 * gpiochip_get_data() - get per-subdriver data for the chip
Thierry Reding950d55f52017-07-24 16:57:22 +02001443 * @chip: GPIO chip
1444 *
1445 * Returns:
1446 * The per-subdriver data for the chip.
Linus Walleij43c54ec2016-02-11 11:37:48 +01001447 */
1448void *gpiochip_get_data(struct gpio_chip *chip)
1449{
1450 return chip->gpiodev->data;
1451}
1452EXPORT_SYMBOL_GPL(gpiochip_get_data);
1453
1454/**
David Brownelld2876d02008-02-04 22:28:20 -08001455 * gpiochip_remove() - unregister a gpio_chip
1456 * @chip: the chip to unregister
1457 *
1458 * A gpio_chip with any GPIOs still requested may not be removed.
1459 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001460void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001461{
Linus Walleijff2b1352015-10-20 11:10:38 +02001462 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001463 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001464 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001465 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001466 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001467
Linus Walleijff2b1352015-10-20 11:10:38 +02001468 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001469 gpiochip_sysfs_unregister(gdev);
Geert Uytterhoeven5018ada2016-12-19 18:29:23 +01001470 gpiochip_free_hogs(chip);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001471 /* Numb the device, cancelling all outstanding operations */
1472 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001473 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001474 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001475 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001476 of_gpiochip_remove(chip);
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001477 gpiochip_free_valid_mask(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001478 /*
1479 * We accept no more calls into the driver from this point, so
1480 * NULL the driver data pointer
1481 */
1482 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001483
Johan Hovold6798aca2015-01-12 17:12:28 +01001484 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001485 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001486 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001487 if (test_bit(FLAG_REQUESTED, &desc->flags))
1488 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001489 }
David Brownelld2876d02008-02-04 22:28:20 -08001490 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001491
Johan Hovoldfab28b82015-05-04 17:10:27 +02001492 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001493 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001494 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001495
Linus Walleijff2b1352015-10-20 11:10:38 +02001496 /*
1497 * The gpiochip side puts its use of the device to rest here:
1498 * if there are no userspace clients, the chardev and device will
1499 * be removed, else it will be dangling until the last user is
1500 * gone.
1501 */
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001502 cdev_device_del(&gdev->chrdev, &gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001503 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001504}
1505EXPORT_SYMBOL_GPL(gpiochip_remove);
1506
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301507static void devm_gpio_chip_release(struct device *dev, void *res)
1508{
1509 struct gpio_chip *chip = *(struct gpio_chip **)res;
1510
1511 gpiochip_remove(chip);
1512}
1513
1514static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1515
1516{
1517 struct gpio_chip **r = res;
1518
1519 if (!r || !*r) {
1520 WARN_ON(!r || !*r);
1521 return 0;
1522 }
1523
1524 return *r == data;
1525}
1526
1527/**
Jonathan Neuschäfer689fd022017-12-21 17:56:34 +01001528 * devm_gpiochip_add_data() - Resource manager gpiochip_add_data()
Uwe Kleine-König3925b902018-10-08 11:34:03 +02001529 * @dev: pointer to the device that gpio_chip belongs to.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301530 * @chip: the chip to register, with chip->base initialized
Thierry Reding950d55f52017-07-24 16:57:22 +02001531 * @data: driver-private data associated with this chip
1532 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301533 * Context: potentially before irqs will work
1534 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301535 * The gpio chip automatically be released when the device is unbound.
Thierry Reding950d55f52017-07-24 16:57:22 +02001536 *
1537 * Returns:
1538 * A negative errno if the chip can't be registered, such as because the
1539 * chip->base is invalid or already associated with a different chip.
1540 * Otherwise it returns zero as a success code.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301541 */
1542int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1543 void *data)
1544{
1545 struct gpio_chip **ptr;
1546 int ret;
1547
1548 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1549 GFP_KERNEL);
1550 if (!ptr)
1551 return -ENOMEM;
1552
1553 ret = gpiochip_add_data(chip, data);
1554 if (ret < 0) {
1555 devres_free(ptr);
1556 return ret;
1557 }
1558
1559 *ptr = chip;
1560 devres_add(dev, ptr);
1561
1562 return 0;
1563}
1564EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1565
1566/**
1567 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1568 * @dev: device for which which resource was allocated
1569 * @chip: the chip to remove
1570 *
1571 * A gpio_chip with any GPIOs still requested may not be removed.
1572 */
1573void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1574{
1575 int ret;
1576
1577 ret = devres_release(dev, devm_gpio_chip_release,
1578 devm_gpio_chip_match, chip);
Christophe JAILLET3988d662017-01-27 12:56:42 +01001579 WARN_ON(ret);
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301580}
1581EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1582
Grant Likely594fa262010-06-08 07:48:16 -06001583/**
1584 * gpiochip_find() - iterator for locating a specific gpio_chip
1585 * @data: data to pass to match function
Thierry Reding950d55f52017-07-24 16:57:22 +02001586 * @match: Callback function to check gpio_chip
Grant Likely594fa262010-06-08 07:48:16 -06001587 *
1588 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1589 * determined by a user supplied @match callback. The callback should return
1590 * 0 if the device doesn't match and non-zero if it does. If the callback is
1591 * non-zero, this function will return to the caller and not iterate over any
1592 * more gpio_chips.
1593 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001594struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001595 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001596 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001597{
Linus Walleijff2b1352015-10-20 11:10:38 +02001598 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001599 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001600 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001601
1602 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001603 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001604 if (gdev->chip && match(gdev->chip, data)) {
1605 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001606 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001607 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001608
Grant Likely594fa262010-06-08 07:48:16 -06001609 spin_unlock_irqrestore(&gpio_lock, flags);
1610
1611 return chip;
1612}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001613EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001614
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001615static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1616{
1617 const char *name = data;
1618
1619 return !strcmp(chip->label, name);
1620}
1621
1622static struct gpio_chip *find_chip_by_name(const char *name)
1623{
1624 return gpiochip_find((void *)name, gpiochip_match_name);
1625}
1626
Linus Walleij14250522014-03-25 10:40:18 +01001627#ifdef CONFIG_GPIOLIB_IRQCHIP
1628
1629/*
1630 * The following is irqchip helper code for gpiochips.
1631 */
1632
Mika Westerberg79b804c2016-09-20 15:15:21 +03001633static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1634{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001635 if (!gpiochip->irq.need_valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001636 return 0;
1637
Stephen Boyde4371f6e2018-03-23 09:34:50 -07001638 gpiochip->irq.valid_mask = gpiochip_allocate_mask(gpiochip);
Thierry Redingdc7b0382017-11-07 19:15:52 +01001639 if (!gpiochip->irq.valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001640 return -ENOMEM;
1641
Mika Westerberg79b804c2016-09-20 15:15:21 +03001642 return 0;
1643}
1644
1645static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1646{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001647 kfree(gpiochip->irq.valid_mask);
1648 gpiochip->irq.valid_mask = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001649}
1650
Stephen Boyd64ff2c82018-01-09 17:58:46 -08001651bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1652 unsigned int offset)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001653{
Stephen Boyd726cb3b2018-03-23 09:34:52 -07001654 if (!gpiochip_line_is_valid(gpiochip, offset))
1655 return false;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001656 /* No mask means all valid */
Thierry Redingdc7b0382017-11-07 19:15:52 +01001657 if (likely(!gpiochip->irq.valid_mask))
Mika Westerberg79b804c2016-09-20 15:15:21 +03001658 return true;
Thierry Redingdc7b0382017-11-07 19:15:52 +01001659 return test_bit(offset, gpiochip->irq.valid_mask);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001660}
Stephen Boyd64ff2c82018-01-09 17:58:46 -08001661EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001662
Linus Walleij14250522014-03-25 10:40:18 +01001663/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001664 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001665 * @gpiochip: the gpiochip to set the irqchip chain to
1666 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001667 * @parent_irq: the irq number corresponding to the parent IRQ for this
1668 * chained irqchip
1669 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001670 * coming out of the gpiochip. If the interrupt is nested rather than
1671 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001672 */
Linus Walleijd245b3f2016-11-24 10:57:25 +01001673static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1674 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001675 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001676 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001677{
Linus Walleij83141a72014-09-26 13:50:12 +02001678 unsigned int offset;
1679
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001680 if (!gpiochip->irq.domain) {
Linus Walleij83141a72014-09-26 13:50:12 +02001681 chip_err(gpiochip, "called %s before setting up irqchip\n",
1682 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001683 return;
1684 }
1685
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001686 if (parent_handler) {
1687 if (gpiochip->can_sleep) {
1688 chip_err(gpiochip,
Andy Shevchenkob1911712018-07-03 03:39:03 +03001689 "you cannot have chained interrupts on a chip that may sleep\n");
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001690 return;
1691 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001692 /*
1693 * The parent irqchip is already using the chip_data for this
1694 * irqchip, so our callbacks simply use the handler_data.
1695 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001696 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1697 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001698
Thierry Reding39e5f092017-11-07 19:15:50 +01001699 gpiochip->irq.parents = &parent_irq;
1700 gpiochip->irq.num_parents = 1;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001701 }
Linus Walleij83141a72014-09-26 13:50:12 +02001702
1703 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001704 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1705 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1706 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001707 irq_set_parent(irq_find_mapping(gpiochip->irq.domain, offset),
Linus Walleij83141a72014-09-26 13:50:12 +02001708 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001709 }
Linus Walleij14250522014-03-25 10:40:18 +01001710}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001711
1712/**
1713 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1714 * @gpiochip: the gpiochip to set the irqchip chain to
1715 * @irqchip: the irqchip to chain to the gpiochip
1716 * @parent_irq: the irq number corresponding to the parent IRQ for this
1717 * chained irqchip
1718 * @parent_handler: the parent interrupt handler for the accumulated IRQ
1719 * coming out of the gpiochip. If the interrupt is nested rather than
1720 * cascaded, pass NULL in this handler argument
1721 */
1722void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1723 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001724 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001725 irq_flow_handler_t parent_handler)
1726{
Thierry Reding60ed54c2017-11-07 19:15:57 +01001727 if (gpiochip->irq.threaded) {
1728 chip_err(gpiochip, "tried to chain a threaded gpiochip\n");
1729 return;
1730 }
1731
Linus Walleijd245b3f2016-11-24 10:57:25 +01001732 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1733 parent_handler);
1734}
Linus Walleij14250522014-03-25 10:40:18 +01001735EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1736
1737/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001738 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1739 * @gpiochip: the gpiochip to set the irqchip nested handler to
1740 * @irqchip: the irqchip to nest to the gpiochip
1741 * @parent_irq: the irq number corresponding to the parent IRQ for this
1742 * nested irqchip
1743 */
1744void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1745 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001746 unsigned int parent_irq)
Linus Walleijd245b3f2016-11-24 10:57:25 +01001747{
Linus Walleijd245b3f2016-11-24 10:57:25 +01001748 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1749 NULL);
1750}
1751EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1752
1753/**
Linus Walleij14250522014-03-25 10:40:18 +01001754 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1755 * @d: the irqdomain used by this irqchip
1756 * @irq: the global irq number used by this GPIO irqchip irq
1757 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1758 *
1759 * This function will set up the mapping for a certain IRQ line on a
1760 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1761 * stored inside the gpiochip.
1762 */
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001763int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1764 irq_hw_number_t hwirq)
Linus Walleij14250522014-03-25 10:40:18 +01001765{
1766 struct gpio_chip *chip = d->host_data;
Thierry Redinge0d89722017-11-07 19:15:54 +01001767 int err = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001768
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001769 if (!gpiochip_irqchip_irq_valid(chip, hwirq))
1770 return -ENXIO;
1771
Linus Walleij14250522014-03-25 10:40:18 +01001772 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001773 /*
1774 * This lock class tells lockdep that GPIO irqs are in a different
1775 * category than their parents, so it won't report false recursion.
1776 */
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001777 irq_set_lockdep_class(irq, chip->irq.lock_key, chip->irq.request_key);
Thierry Redingc7a0aa52017-11-07 19:15:48 +01001778 irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001779 /* Chips that use nested thread handlers have them marked */
Thierry Reding60ed54c2017-11-07 19:15:57 +01001780 if (chip->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001781 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001782 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001783
Thierry Redinge0d89722017-11-07 19:15:54 +01001784 if (chip->irq.num_parents == 1)
1785 err = irq_set_parent(irq, chip->irq.parents[0]);
1786 else if (chip->irq.map)
1787 err = irq_set_parent(irq, chip->irq.map[hwirq]);
1788
1789 if (err < 0)
1790 return err;
1791
Linus Walleij1333b902014-04-23 16:45:12 +02001792 /*
1793 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1794 * is passed as default type.
1795 */
Thierry Reding3634eeb2017-11-07 19:15:49 +01001796 if (chip->irq.default_type != IRQ_TYPE_NONE)
1797 irq_set_irq_type(irq, chip->irq.default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001798
1799 return 0;
1800}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001801EXPORT_SYMBOL_GPL(gpiochip_irq_map);
Linus Walleij14250522014-03-25 10:40:18 +01001802
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001803void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
Linus Walleijc3626fd2014-03-28 20:42:01 +01001804{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001805 struct gpio_chip *chip = d->host_data;
1806
Thierry Reding60ed54c2017-11-07 19:15:57 +01001807 if (chip->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001808 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001809 irq_set_chip_and_handler(irq, NULL, NULL);
1810 irq_set_chip_data(irq, NULL);
1811}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001812EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001813
Linus Walleij14250522014-03-25 10:40:18 +01001814static const struct irq_domain_ops gpiochip_domain_ops = {
1815 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001816 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001817 /* Virtually all GPIO irqchips are twocell:ed */
1818 .xlate = irq_domain_xlate_twocell,
1819};
1820
Linus Walleij14250522014-03-25 10:40:18 +01001821static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1822{
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001823 if (!gpiochip_irqchip_irq_valid(chip, offset))
1824 return -ENXIO;
Thierry Redinge0d89722017-11-07 19:15:54 +01001825
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001826 return irq_create_mapping(chip->irq.domain, offset);
Linus Walleij14250522014-03-25 10:40:18 +01001827}
1828
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001829static int gpiochip_irq_reqres(struct irq_data *d)
1830{
1831 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1832
1833 return gpiochip_reqres_irq(chip, d->hwirq);
1834}
1835
1836static void gpiochip_irq_relres(struct irq_data *d)
1837{
1838 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1839
1840 gpiochip_relres_irq(chip, d->hwirq);
1841}
1842
Hans Verkuil461c1a72018-09-08 11:23:17 +02001843static void gpiochip_irq_enable(struct irq_data *d)
1844{
1845 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1846
1847 gpiochip_enable_irq(chip, d->hwirq);
1848 if (chip->irq.irq_enable)
1849 chip->irq.irq_enable(d);
1850 else
1851 chip->irq.chip->irq_unmask(d);
1852}
1853
1854static void gpiochip_irq_disable(struct irq_data *d)
1855{
1856 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1857
1858 if (chip->irq.irq_disable)
1859 chip->irq.irq_disable(d);
1860 else
1861 chip->irq.chip->irq_mask(d);
1862 gpiochip_disable_irq(chip, d->hwirq);
1863}
1864
Hans Verkuilca620f22018-09-08 11:23:15 +02001865static void gpiochip_set_irq_hooks(struct gpio_chip *gpiochip)
1866{
1867 struct irq_chip *irqchip = gpiochip->irq.chip;
1868
1869 if (!irqchip->irq_request_resources &&
1870 !irqchip->irq_release_resources) {
1871 irqchip->irq_request_resources = gpiochip_irq_reqres;
1872 irqchip->irq_release_resources = gpiochip_irq_relres;
1873 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02001874 if (WARN_ON(gpiochip->irq.irq_enable))
1875 return;
Hans Verkuil171948e2018-09-14 10:36:39 +02001876 /* Check if the irqchip already has this hook... */
1877 if (irqchip->irq_enable == gpiochip_irq_enable) {
1878 /*
1879 * ...and if so, give a gentle warning that this is bad
1880 * practice.
1881 */
1882 chip_info(gpiochip,
1883 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1884 return;
1885 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02001886 gpiochip->irq.irq_enable = irqchip->irq_enable;
1887 gpiochip->irq.irq_disable = irqchip->irq_disable;
1888 irqchip->irq_enable = gpiochip_irq_enable;
1889 irqchip->irq_disable = gpiochip_irq_disable;
Hans Verkuilca620f22018-09-08 11:23:15 +02001890}
1891
Linus Walleij14250522014-03-25 10:40:18 +01001892/**
Thierry Redinge0d89722017-11-07 19:15:54 +01001893 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
1894 * @gpiochip: the GPIO chip to add the IRQ chip to
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001895 * @lock_key: lockdep class for IRQ lock
1896 * @request_key: lockdep class for IRQ request
Thierry Redinge0d89722017-11-07 19:15:54 +01001897 */
Thierry Reding959bc7b2017-11-07 19:15:59 +01001898static int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001899 struct lock_class_key *lock_key,
1900 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01001901{
1902 struct irq_chip *irqchip = gpiochip->irq.chip;
1903 const struct irq_domain_ops *ops;
1904 struct device_node *np;
1905 unsigned int type;
1906 unsigned int i;
1907
1908 if (!irqchip)
1909 return 0;
1910
1911 if (gpiochip->irq.parent_handler && gpiochip->can_sleep) {
Andy Shevchenkob1911712018-07-03 03:39:03 +03001912 chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n");
Thierry Redinge0d89722017-11-07 19:15:54 +01001913 return -EINVAL;
1914 }
1915
1916 np = gpiochip->gpiodev->dev.of_node;
1917 type = gpiochip->irq.default_type;
1918
1919 /*
1920 * Specifying a default trigger is a terrible idea if DT or ACPI is
1921 * used to configure the interrupts, as you may end up with
1922 * conflicting triggers. Tell the user, and reset to NONE.
1923 */
1924 if (WARN(np && type != IRQ_TYPE_NONE,
1925 "%s: Ignoring %u default trigger\n", np->full_name, type))
1926 type = IRQ_TYPE_NONE;
1927
1928 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1929 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1930 "Ignoring %u default trigger\n", type);
1931 type = IRQ_TYPE_NONE;
1932 }
1933
1934 gpiochip->to_irq = gpiochip_to_irq;
1935 gpiochip->irq.default_type = type;
Thierry Reding959bc7b2017-11-07 19:15:59 +01001936 gpiochip->irq.lock_key = lock_key;
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001937 gpiochip->irq.request_key = request_key;
Thierry Redinge0d89722017-11-07 19:15:54 +01001938
1939 if (gpiochip->irq.domain_ops)
1940 ops = gpiochip->irq.domain_ops;
1941 else
1942 ops = &gpiochip_domain_ops;
1943
1944 gpiochip->irq.domain = irq_domain_add_simple(np, gpiochip->ngpio,
Thierry Reding8302cf52017-11-07 19:15:58 +01001945 gpiochip->irq.first,
1946 ops, gpiochip);
Thierry Redinge0d89722017-11-07 19:15:54 +01001947 if (!gpiochip->irq.domain)
1948 return -EINVAL;
1949
Thierry Redinge0d89722017-11-07 19:15:54 +01001950 if (gpiochip->irq.parent_handler) {
1951 void *data = gpiochip->irq.parent_handler_data ?: gpiochip;
1952
1953 for (i = 0; i < gpiochip->irq.num_parents; i++) {
1954 /*
1955 * The parent IRQ chip is already using the chip_data
1956 * for this IRQ chip, so our callbacks simply use the
1957 * handler_data.
1958 */
1959 irq_set_chained_handler_and_data(gpiochip->irq.parents[i],
1960 gpiochip->irq.parent_handler,
1961 data);
1962 }
Thierry Redinge0d89722017-11-07 19:15:54 +01001963 }
1964
Hans Verkuilca620f22018-09-08 11:23:15 +02001965 gpiochip_set_irq_hooks(gpiochip);
1966
Thierry Redinge0d89722017-11-07 19:15:54 +01001967 acpi_gpiochip_request_interrupts(gpiochip);
1968
1969 return 0;
1970}
1971
1972/**
Linus Walleij14250522014-03-25 10:40:18 +01001973 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1974 * @gpiochip: the gpiochip to remove the irqchip from
1975 *
1976 * This is called only from gpiochip_remove()
1977 */
1978static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1979{
Hans Verkuilca620f22018-09-08 11:23:15 +02001980 struct irq_chip *irqchip = gpiochip->irq.chip;
Thierry Reding39e5f092017-11-07 19:15:50 +01001981 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001982
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001983 acpi_gpiochip_free_interrupts(gpiochip);
1984
Hans Verkuilca620f22018-09-08 11:23:15 +02001985 if (irqchip && gpiochip->irq.parent_handler) {
Thierry Reding39e5f092017-11-07 19:15:50 +01001986 struct gpio_irq_chip *irq = &gpiochip->irq;
1987 unsigned int i;
1988
1989 for (i = 0; i < irq->num_parents; i++)
1990 irq_set_chained_handler_and_data(irq->parents[i],
1991 NULL, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001992 }
1993
Linus Walleijc3626fd2014-03-28 20:42:01 +01001994 /* Remove all IRQ mappings and delete the domain */
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001995 if (gpiochip->irq.domain) {
Thierry Reding39e5f092017-11-07 19:15:50 +01001996 unsigned int irq;
1997
Mika Westerberg79b804c2016-09-20 15:15:21 +03001998 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1999 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
2000 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002001
2002 irq = irq_find_mapping(gpiochip->irq.domain, offset);
2003 irq_dispose_mapping(irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03002004 }
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002005
2006 irq_domain_remove(gpiochip->irq.domain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01002007 }
Linus Walleij14250522014-03-25 10:40:18 +01002008
Hans Verkuil461c1a72018-09-08 11:23:17 +02002009 if (irqchip) {
2010 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
2011 irqchip->irq_request_resources = NULL;
2012 irqchip->irq_release_resources = NULL;
2013 }
2014 if (irqchip->irq_enable == gpiochip_irq_enable) {
2015 irqchip->irq_enable = gpiochip->irq.irq_enable;
2016 irqchip->irq_disable = gpiochip->irq.irq_disable;
2017 }
Linus Walleij14250522014-03-25 10:40:18 +01002018 }
Hans Verkuil461c1a72018-09-08 11:23:17 +02002019 gpiochip->irq.irq_enable = NULL;
2020 gpiochip->irq.irq_disable = NULL;
Hans Verkuilca620f22018-09-08 11:23:15 +02002021 gpiochip->irq.chip = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03002022
2023 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01002024}
2025
2026/**
Linus Walleij739e6f52017-01-11 13:37:07 +01002027 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01002028 * @gpiochip: the gpiochip to add the irqchip to
2029 * @irqchip: the irqchip to add to the gpiochip
2030 * @first_irq: if not dynamically assigned, the base (first) IRQ to
2031 * allocate gpiochip irqs from
2032 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02002033 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
2034 * to have the core avoid setting up any default type in the hardware.
Thierry Reding60ed54c2017-11-07 19:15:57 +01002035 * @threaded: whether this irqchip uses a nested thread handler
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002036 * @lock_key: lockdep class for IRQ lock
2037 * @request_key: lockdep class for IRQ request
Linus Walleij14250522014-03-25 10:40:18 +01002038 *
2039 * This function closely associates a certain irqchip with a certain
2040 * gpiochip, providing an irq domain to translate the local IRQs to
2041 * global irqs in the gpiolib core, and making sure that the gpiochip
2042 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01002043 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01002044 * from the gpiochip passed as chip data. An irqdomain will be stored
2045 * in the gpiochip that shall be used by the driver to handle IRQ number
2046 * translation. The gpiochip will need to be initialized and registered
2047 * before calling this function.
2048 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01002049 * This function will handle two cell:ed simple IRQs and assumes all
2050 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01002051 * need to be open coded.
2052 */
Linus Walleij739e6f52017-01-11 13:37:07 +01002053int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
2054 struct irq_chip *irqchip,
2055 unsigned int first_irq,
2056 irq_flow_handler_t handler,
2057 unsigned int type,
Thierry Reding60ed54c2017-11-07 19:15:57 +01002058 bool threaded,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002059 struct lock_class_key *lock_key,
2060 struct lock_class_key *request_key)
Linus Walleij14250522014-03-25 10:40:18 +01002061{
2062 struct device_node *of_node;
Linus Walleij14250522014-03-25 10:40:18 +01002063
2064 if (!gpiochip || !irqchip)
2065 return -EINVAL;
2066
Linus Walleij58383c782015-11-04 09:56:26 +01002067 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01002068 pr_err("missing gpiochip .dev parent pointer\n");
2069 return -EINVAL;
2070 }
Thierry Reding60ed54c2017-11-07 19:15:57 +01002071 gpiochip->irq.threaded = threaded;
Linus Walleij58383c782015-11-04 09:56:26 +01002072 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01002073#ifdef CONFIG_OF_GPIO
2074 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07002075 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08002076 * FIXME: get rid of this and use gpiochip->parent->of_node
2077 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01002078 */
2079 if (gpiochip->of_node)
2080 of_node = gpiochip->of_node;
2081#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01002082 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03002083 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01002084 * used to configure the interrupts, as you may end-up with
2085 * conflicting triggers. Tell the user, and reset to NONE.
2086 */
2087 if (WARN(of_node && type != IRQ_TYPE_NONE,
Rob Herring7eb6ce22017-07-18 16:43:03 -05002088 "%pOF: Ignoring %d default trigger\n", of_node, type))
Marc Zyngier332e99d2016-09-07 09:12:11 +01002089 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03002090 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
2091 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
2092 "Ignoring %d default trigger\n", type);
2093 type = IRQ_TYPE_NONE;
2094 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01002095
Thierry Redingda80ff82017-11-07 19:15:46 +01002096 gpiochip->irq.chip = irqchip;
Thierry Redingc7a0aa52017-11-07 19:15:48 +01002097 gpiochip->irq.handler = handler;
Thierry Reding3634eeb2017-11-07 19:15:49 +01002098 gpiochip->irq.default_type = type;
Linus Walleij14250522014-03-25 10:40:18 +01002099 gpiochip->to_irq = gpiochip_to_irq;
Thierry Redingca9df052017-11-07 19:15:53 +01002100 gpiochip->irq.lock_key = lock_key;
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002101 gpiochip->irq.request_key = request_key;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002102 gpiochip->irq.domain = irq_domain_add_simple(of_node,
Linus Walleij14250522014-03-25 10:40:18 +01002103 gpiochip->ngpio, first_irq,
2104 &gpiochip_domain_ops, gpiochip);
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01002105 if (!gpiochip->irq.domain) {
Thierry Redingda80ff82017-11-07 19:15:46 +01002106 gpiochip->irq.chip = NULL;
Linus Walleij14250522014-03-25 10:40:18 +01002107 return -EINVAL;
2108 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02002109
Hans Verkuilca620f22018-09-08 11:23:15 +02002110 gpiochip_set_irq_hooks(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01002111
Mika Westerbergafa82fa2014-07-25 09:54:48 +03002112 acpi_gpiochip_request_interrupts(gpiochip);
2113
Linus Walleij14250522014-03-25 10:40:18 +01002114 return 0;
2115}
Linus Walleij739e6f52017-01-11 13:37:07 +01002116EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
Linus Walleij14250522014-03-25 10:40:18 +01002117
2118#else /* CONFIG_GPIOLIB_IRQCHIP */
2119
Thierry Reding959bc7b2017-11-07 19:15:59 +01002120static inline int gpiochip_add_irqchip(struct gpio_chip *gpiochip,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01002121 struct lock_class_key *lock_key,
2122 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01002123{
2124 return 0;
2125}
2126
Linus Walleij14250522014-03-25 10:40:18 +01002127static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03002128static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
2129{
2130 return 0;
2131}
2132static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
2133{ }
Linus Walleij14250522014-03-25 10:40:18 +01002134
2135#endif /* CONFIG_GPIOLIB_IRQCHIP */
2136
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002137/**
2138 * gpiochip_generic_request() - request the gpio function for a pin
2139 * @chip: the gpiochip owning the GPIO
2140 * @offset: the offset of the GPIO to request for GPIO function
2141 */
2142int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
2143{
Linus Walleija9a1d2a2017-09-22 11:02:10 +02002144 return pinctrl_gpio_request(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002145}
2146EXPORT_SYMBOL_GPL(gpiochip_generic_request);
2147
2148/**
2149 * gpiochip_generic_free() - free the gpio function from a pin
2150 * @chip: the gpiochip to request the gpio function for
2151 * @offset: the offset of the GPIO to free from GPIO function
2152 */
2153void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
2154{
Linus Walleija9a1d2a2017-09-22 11:02:10 +02002155 pinctrl_gpio_free(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02002156}
2157EXPORT_SYMBOL_GPL(gpiochip_generic_free);
2158
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002159/**
2160 * gpiochip_generic_config() - apply configuration for a pin
2161 * @chip: the gpiochip owning the GPIO
2162 * @offset: the offset of the GPIO to apply the configuration
2163 * @config: the configuration to be applied
2164 */
2165int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
2166 unsigned long config)
2167{
2168 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
2169}
2170EXPORT_SYMBOL_GPL(gpiochip_generic_config);
2171
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302172#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01002173
Linus Walleij3f0f8672012-11-20 12:40:15 +01002174/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02002175 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
2176 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02002177 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02002178 * @gpio_offset: the start offset in the current gpio_chip number space
2179 * @pin_group: name of the pin group inside the pin controller
Christian Lamparter973c1712018-05-21 22:57:39 +02002180 *
2181 * Calling this function directly from a DeviceTree-supported
2182 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2183 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2184 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Christian Ruppert586a87e2013-10-15 15:37:54 +02002185 */
2186int gpiochip_add_pingroup_range(struct gpio_chip *chip,
2187 struct pinctrl_dev *pctldev,
2188 unsigned int gpio_offset, const char *pin_group)
2189{
2190 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002191 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02002192 int ret;
2193
2194 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
2195 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002196 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02002197 return -ENOMEM;
2198 }
2199
2200 /* Use local offset as range ID */
2201 pin_range->range.id = gpio_offset;
2202 pin_range->range.gc = chip;
2203 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002204 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02002205 pin_range->pctldev = pctldev;
2206
2207 ret = pinctrl_get_group_pins(pctldev, pin_group,
2208 &pin_range->range.pins,
2209 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01002210 if (ret < 0) {
2211 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02002212 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01002213 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02002214
2215 pinctrl_add_gpio_range(pctldev, &pin_range->range);
2216
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002217 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
2218 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02002219 pinctrl_dev_get_devname(pctldev), pin_group);
2220
Linus Walleij20ec3e32016-02-11 11:03:06 +01002221 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02002222
2223 return 0;
2224}
2225EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
2226
2227/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01002228 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
2229 * @chip: the gpiochip to add the range for
Thierry Reding950d55f52017-07-24 16:57:22 +02002230 * @pinctl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01002231 * @gpio_offset: the start offset in the current gpio_chip number space
2232 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01002233 * @npins: the number of pins from the offset of each pin space (GPIO and
2234 * pin controller) to accumulate in this range
Thierry Reding950d55f52017-07-24 16:57:22 +02002235 *
2236 * Returns:
2237 * 0 on success, or a negative error-code on failure.
Christian Lamparter973c1712018-05-21 22:57:39 +02002238 *
2239 * Calling this function directly from a DeviceTree-supported
2240 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
2241 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
2242 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Linus Walleij3f0f8672012-11-20 12:40:15 +01002243 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002244int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01002245 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01002246 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302247{
2248 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002249 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08002250 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302251
Linus Walleij3f0f8672012-11-20 12:40:15 +01002252 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302253 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002254 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002255 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302256 }
2257
Linus Walleij3f0f8672012-11-20 12:40:15 +01002258 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01002259 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01002260 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302261 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002262 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01002263 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302264 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01002265 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302266 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01002267 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08002268 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002269 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01002270 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08002271 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01002272 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02002273 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
2274 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01002275 pinctl_name,
2276 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302277
Linus Walleij20ec3e32016-02-11 11:03:06 +01002278 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002279
2280 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302281}
Linus Walleij165adc92012-11-06 14:49:39 +01002282EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302283
Linus Walleij3f0f8672012-11-20 12:40:15 +01002284/**
2285 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2286 * @chip: the chip to remove all the mappings for
2287 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302288void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
2289{
2290 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01002291 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302292
Linus Walleij20ec3e32016-02-11 11:03:06 +01002293 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302294 list_del(&pin_range->node);
2295 pinctrl_remove_gpio_range(pin_range->pctldev,
2296 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01002297 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302298 }
2299}
Linus Walleij165adc92012-11-06 14:49:39 +01002300EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2301
2302#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302303
David Brownelld2876d02008-02-04 22:28:20 -08002304/* These "optional" allocation calls help prevent drivers from stomping
2305 * on each other, and help provide better diagnostics in debugfs.
2306 * They're called even less than the "set direction" calls.
2307 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002308static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002309{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002310 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002311 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002312 unsigned long flags;
Biju Das3789f5a2018-08-07 08:15:18 +01002313 unsigned offset;
David Brownelld2876d02008-02-04 22:28:20 -08002314
2315 spin_lock_irqsave(&gpio_lock, flags);
2316
David Brownelld2876d02008-02-04 22:28:20 -08002317 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002318 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002319 */
2320
2321 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2322 desc_set_label(desc, label ? : "?");
2323 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002324 } else {
David Brownelld2876d02008-02-04 22:28:20 -08002325 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002326 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002327 }
2328
2329 if (chip->request) {
2330 /* chip->request may sleep */
2331 spin_unlock_irqrestore(&gpio_lock, flags);
Biju Das3789f5a2018-08-07 08:15:18 +01002332 offset = gpio_chip_hwgpio(desc);
2333 if (gpiochip_line_is_valid(chip, offset))
2334 status = chip->request(chip, offset);
2335 else
2336 status = -EINVAL;
David Brownell35e8bb52008-10-15 22:03:16 -07002337 spin_lock_irqsave(&gpio_lock, flags);
2338
2339 if (status < 0) {
2340 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07002341 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002342 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002343 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002344 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002345 if (chip->get_direction) {
2346 /* chip->get_direction may sleep */
2347 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002348 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002349 spin_lock_irqsave(&gpio_lock, flags);
2350 }
David Brownelld2876d02008-02-04 22:28:20 -08002351done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002352 spin_unlock_irqrestore(&gpio_lock, flags);
2353 return status;
2354}
2355
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002356/*
2357 * This descriptor validation needs to be inserted verbatim into each
2358 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002359 * macro to avoid endless duplication. If the desc is NULL it is an
2360 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002361 */
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002362static int validate_desc(const struct gpio_desc *desc, const char *func)
2363{
2364 if (!desc)
2365 return 0;
2366 if (IS_ERR(desc)) {
2367 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
2368 return PTR_ERR(desc);
2369 }
2370 if (!desc->gdev) {
2371 pr_warn("%s: invalid GPIO (no device)\n", func);
2372 return -EINVAL;
2373 }
2374 if (!desc->gdev->chip) {
2375 dev_warn(&desc->gdev->dev,
2376 "%s: backing chip is gone\n", func);
2377 return 0;
2378 }
2379 return 1;
2380}
2381
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002382#define VALIDATE_DESC(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002383 int __valid = validate_desc(desc, __func__); \
2384 if (__valid <= 0) \
2385 return __valid; \
2386 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002387
2388#define VALIDATE_DESC_VOID(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002389 int __valid = validate_desc(desc, __func__); \
2390 if (__valid <= 0) \
Linus Walleij54d77192016-05-30 16:48:39 +02002391 return; \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01002392 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002393
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002394int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002395{
2396 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002397 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002398
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002399 VALIDATE_DESC(desc);
2400 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002401
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002402 if (try_module_get(gdev->owner)) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002403 status = gpiod_request_commit(desc, label);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002404 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002405 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002406 else
2407 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002408 }
2409
David Brownelld2876d02008-02-04 22:28:20 -08002410 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002411 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002412
David Brownelld2876d02008-02-04 22:28:20 -08002413 return status;
2414}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002415
Linus Walleijfac9d882017-09-26 20:58:28 +02002416static bool gpiod_free_commit(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002417{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002418 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002419 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002420 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002421
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002422 might_sleep();
2423
Alexandre Courbot372e7222013-02-03 01:29:29 +09002424 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002425
David Brownelld2876d02008-02-04 22:28:20 -08002426 spin_lock_irqsave(&gpio_lock, flags);
2427
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002428 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002429 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2430 if (chip->free) {
2431 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002432 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002433 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002434 spin_lock_irqsave(&gpio_lock, flags);
2435 }
David Brownelld2876d02008-02-04 22:28:20 -08002436 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002437 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002438 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302439 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302440 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002441 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002442 ret = true;
2443 }
David Brownelld2876d02008-02-04 22:28:20 -08002444
2445 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002446 return ret;
2447}
2448
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002449void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002450{
Linus Walleijfac9d882017-09-26 20:58:28 +02002451 if (desc && desc->gdev && gpiod_free_commit(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002452 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002453 put_device(&desc->gdev->dev);
2454 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002455 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002456 }
David Brownelld2876d02008-02-04 22:28:20 -08002457}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002458
David Brownelld2876d02008-02-04 22:28:20 -08002459/**
2460 * gpiochip_is_requested - return string iff signal was requested
2461 * @chip: controller managing the signal
2462 * @offset: of signal within controller's 0..(ngpio - 1) range
2463 *
2464 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002465 * The string returned is the label passed to gpio_request(); if none has been
2466 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002467 *
2468 * This function is for use by GPIO controller drivers. The label can
2469 * help with diagnostics, and knowing that the signal is used as a GPIO
2470 * can help avoid accidentally multiplexing it to another controller.
2471 */
2472const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2473{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002474 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002475
Dirk Behme48b59532015-08-18 18:02:32 +02002476 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002477 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002478
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002479 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002480
Alexandre Courbot372e7222013-02-03 01:29:29 +09002481 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002482 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002483 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002484}
2485EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2486
Mika Westerberg77c2d792014-03-10 14:54:50 +02002487/**
2488 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
Thierry Reding950d55f52017-07-24 16:57:22 +02002489 * @chip: GPIO chip
2490 * @hwnum: hardware number of the GPIO for which to request the descriptor
Mika Westerberg77c2d792014-03-10 14:54:50 +02002491 * @label: label for the GPIO
2492 *
2493 * Function allows GPIO chip drivers to request and use their own GPIO
2494 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2495 * function will not increase reference count of the GPIO chip module. This
2496 * allows the GPIO chip module to be unloaded as needed (we assume that the
2497 * GPIO chip driver handles freeing the GPIOs it has requested).
Thierry Reding950d55f52017-07-24 16:57:22 +02002498 *
2499 * Returns:
2500 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2501 * code on failure.
Mika Westerberg77c2d792014-03-10 14:54:50 +02002502 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002503struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2504 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002505{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002506 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2507 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002508
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002509 if (IS_ERR(desc)) {
2510 chip_err(chip, "failed to get GPIO descriptor\n");
2511 return desc;
2512 }
2513
Linus Walleijfac9d882017-09-26 20:58:28 +02002514 err = gpiod_request_commit(desc, label);
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002515 if (err < 0)
2516 return ERR_PTR(err);
2517
2518 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002519}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002520EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002521
2522/**
2523 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2524 * @desc: GPIO descriptor to free
2525 *
2526 * Function frees the given GPIO requested previously with
2527 * gpiochip_request_own_desc().
2528 */
2529void gpiochip_free_own_desc(struct gpio_desc *desc)
2530{
2531 if (desc)
Linus Walleijfac9d882017-09-26 20:58:28 +02002532 gpiod_free_commit(desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002533}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002534EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002535
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002536/*
2537 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002538 * some cases this is done in early boot, before IRQs are enabled.
2539 *
2540 * As a rule these aren't called more than once (except for drivers
2541 * using the open-drain emulation idiom) so these are natural places
2542 * to accumulate extra debugging checks. Note that we can't (yet)
2543 * rely on gpio_request() having been called beforehand.
2544 */
2545
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002546/**
2547 * gpiod_direction_input - set the GPIO direction to input
2548 * @desc: GPIO to set to input
2549 *
2550 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2551 * be called safely on it.
2552 *
2553 * Return 0 in case of success, else an error code.
2554 */
2555int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002556{
David Brownelld2876d02008-02-04 22:28:20 -08002557 struct gpio_chip *chip;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002558 int status = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002559
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002560 VALIDATE_DESC(desc);
2561 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002562
Linus Walleije48d1942018-09-25 09:54:14 +02002563 /*
2564 * It is legal to have no .get() and .direction_input() specified if
2565 * the chip is output-only, but you can't specify .direction_input()
2566 * and not support the .get() operation, that doesn't make sense.
2567 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002568 if (!chip->get && chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002569 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002570 "%s: missing get() but have direction_input()\n",
2571 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002572 return -EIO;
2573 }
2574
Linus Walleije48d1942018-09-25 09:54:14 +02002575 /*
2576 * If we have a .direction_input() callback, things are simple,
2577 * just call it. Else we are some input-only chip so try to check the
2578 * direction (if .get_direction() is supported) else we silently
2579 * assume we are in input mode after this.
2580 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002581 if (chip->direction_input) {
2582 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
2583 } else if (chip->get_direction &&
2584 (chip->get_direction(chip, gpio_chip_hwgpio(desc)) != 1)) {
2585 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002586 "%s: missing direction_input() operation and line is output\n",
2587 __func__);
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002588 return -EIO;
2589 }
David Brownelld2876d02008-02-04 22:28:20 -08002590 if (status == 0)
2591 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002592
Alexandre Courbot372e7222013-02-03 01:29:29 +09002593 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002594
David Brownelld2876d02008-02-04 22:28:20 -08002595 return status;
2596}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002597EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002598
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002599static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2600 enum pin_config_param mode)
2601{
2602 unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2603
2604 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2605}
2606
Linus Walleijfac9d882017-09-26 20:58:28 +02002607static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002608{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002609 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002610 int val = !!value;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002611 int ret = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002612
Linus Walleije48d1942018-09-25 09:54:14 +02002613 /*
2614 * It's OK not to specify .direction_output() if the gpiochip is
2615 * output-only, but if there is then not even a .set() operation it
2616 * is pretty tricky to drive the output line.
2617 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002618 if (!gc->set && !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002619 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002620 "%s: missing set() and direction_output() operations\n",
2621 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002622 return -EIO;
2623 }
2624
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002625 if (gc->direction_output) {
2626 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2627 } else {
Linus Walleije48d1942018-09-25 09:54:14 +02002628 /* Check that we are in output mode if we can */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002629 if (gc->get_direction &&
2630 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2631 gpiod_warn(desc,
2632 "%s: missing direction_output() operation\n",
2633 __func__);
2634 return -EIO;
2635 }
Linus Walleije48d1942018-09-25 09:54:14 +02002636 /*
2637 * If we can't actively set the direction, we are some
2638 * output-only chip, so just drive the output as desired.
2639 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002640 gc->set(gc, gpio_chip_hwgpio(desc), val);
2641 }
2642
Linus Walleijc663e5f2016-03-22 10:51:16 +01002643 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002644 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002645 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002646 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2647 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002648}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002649
2650/**
2651 * gpiod_direction_output_raw - set the GPIO direction to output
2652 * @desc: GPIO to set to output
2653 * @value: initial output value of the GPIO
2654 *
2655 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2656 * be called safely on it. The initial value of the output must be specified
2657 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2658 *
2659 * Return 0 in case of success, else an error code.
2660 */
2661int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2662{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002663 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02002664 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002665}
2666EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2667
2668/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302669 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002670 * @desc: GPIO to set to output
2671 * @value: initial output value of the GPIO
2672 *
2673 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2674 * be called safely on it. The initial value of the output must be specified
2675 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2676 * account.
2677 *
2678 * Return 0 in case of success, else an error code.
2679 */
2680int gpiod_direction_output(struct gpio_desc *desc, int value)
2681{
Vladimir Zapolskiy30322bc2017-12-21 18:37:24 +02002682 struct gpio_chip *gc;
Linus Walleij02e47982017-09-26 21:20:23 +02002683 int ret;
2684
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002685 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002686 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2687 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002688 else
2689 value = !!value;
Linus Walleij02e47982017-09-26 21:20:23 +02002690
Hans Verkuil4e9439d2018-09-08 11:23:16 +02002691 /* GPIOs used for enabled IRQs shall not be set as output */
2692 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2693 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
Linus Walleij02e47982017-09-26 21:20:23 +02002694 gpiod_err(desc,
2695 "%s: tried to set a GPIO tied to an IRQ as output\n",
2696 __func__);
2697 return -EIO;
2698 }
2699
Vladimir Zapolskiy30322bc2017-12-21 18:37:24 +02002700 gc = desc->gdev->chip;
Linus Walleij02e47982017-09-26 21:20:23 +02002701 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2702 /* First see if we can enable open drain in hardware */
2703 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2704 PIN_CONFIG_DRIVE_OPEN_DRAIN);
2705 if (!ret)
2706 goto set_output_value;
2707 /* Emulate open drain by not actively driving the line high */
2708 if (value)
2709 return gpiod_direction_input(desc);
2710 }
2711 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2712 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2713 PIN_CONFIG_DRIVE_OPEN_SOURCE);
2714 if (!ret)
2715 goto set_output_value;
2716 /* Emulate open source by not actively driving the line low */
2717 if (!value)
2718 return gpiod_direction_input(desc);
2719 } else {
2720 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2721 PIN_CONFIG_DRIVE_PUSH_PULL);
2722 }
2723
2724set_output_value:
Linus Walleijfac9d882017-09-26 20:58:28 +02002725 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002726}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002727EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002728
Felipe Balbic4b5be92010-05-26 14:42:23 -07002729/**
Thierry Reding950d55f52017-07-24 16:57:22 +02002730 * gpiod_set_debounce - sets @debounce time for a GPIO
2731 * @desc: descriptor of the GPIO for which to set debounce time
2732 * @debounce: debounce time in microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002733 *
Thierry Reding950d55f52017-07-24 16:57:22 +02002734 * Returns:
2735 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2736 * debounce time.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002737 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002738int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002739{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002740 struct gpio_chip *chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002741 unsigned long config;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002742
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002743 VALIDATE_DESC(desc);
2744 chip = desc->gdev->chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002745 if (!chip->set || !chip->set_config) {
Mark Brown6424de52013-09-09 10:33:49 +01002746 gpiod_dbg(desc,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002747 "%s: missing set() or set_config() operations\n",
Mark Brown6424de52013-09-09 10:33:49 +01002748 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002749 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002750 }
2751
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002752 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2753 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002754}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002755EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002756
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002757/**
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302758 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2759 * @desc: descriptor of the GPIO for which to configure persistence
2760 * @transitory: True to lose state on suspend or reset, false for persistence
2761 *
2762 * Returns:
2763 * 0 on success, otherwise a negative error code.
2764 */
2765int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2766{
2767 struct gpio_chip *chip;
2768 unsigned long packed;
2769 int gpio;
2770 int rc;
2771
Vladimir Zapolskiy156dd392017-12-21 18:37:35 +02002772 VALIDATE_DESC(desc);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302773 /*
2774 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2775 * persistence state.
2776 */
2777 if (transitory)
2778 set_bit(FLAG_TRANSITORY, &desc->flags);
2779 else
2780 clear_bit(FLAG_TRANSITORY, &desc->flags);
2781
2782 /* If the driver supports it, set the persistence state now */
2783 chip = desc->gdev->chip;
2784 if (!chip->set_config)
2785 return 0;
2786
2787 packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE,
2788 !transitory);
2789 gpio = gpio_chip_hwgpio(desc);
2790 rc = chip->set_config(chip, gpio, packed);
2791 if (rc == -ENOTSUPP) {
2792 dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n",
2793 gpio);
2794 return 0;
2795 }
2796
2797 return rc;
2798}
2799EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2800
2801/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002802 * gpiod_is_active_low - test whether a GPIO is active-low or not
2803 * @desc: the gpio descriptor to test
2804 *
2805 * Returns 1 if the GPIO is active-low, 0 otherwise.
2806 */
2807int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002808{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002809 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002810 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002811}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002812EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002813
2814/* I/O calls are only valid after configuration completed; the relevant
2815 * "is this a valid GPIO" error checks should already have been done.
2816 *
2817 * "Get" operations are often inlinable as reading a pin value register,
2818 * and masking the relevant bit in that register.
2819 *
2820 * When "set" operations are inlinable, they involve writing that mask to
2821 * one register to set a low value, or a different register to set it high.
2822 * Otherwise locking is needed, so there may be little value to inlining.
2823 *
2824 *------------------------------------------------------------------------
2825 *
2826 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2827 * have requested the GPIO. That can include implicit requesting by
2828 * a direction setting call. Marking a gpio as requested locks its chip
2829 * in memory, guaranteeing that these table lookups need no more locking
2830 * and that gpiochip_remove() will fail.
2831 *
2832 * REVISIT when debugging, consider adding some instrumentation to ensure
2833 * that the GPIO was actually requested.
2834 */
2835
Linus Walleijfac9d882017-09-26 20:58:28 +02002836static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002837{
2838 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002839 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002840 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002841
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002842 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002843 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002844 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002845 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002846 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002847 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002848}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002849
Lukas Wunnereec1d562017-10-12 12:40:10 +02002850static int gpio_chip_get_multiple(struct gpio_chip *chip,
2851 unsigned long *mask, unsigned long *bits)
2852{
2853 if (chip->get_multiple) {
2854 return chip->get_multiple(chip, mask, bits);
2855 } else if (chip->get) {
2856 int i, value;
2857
2858 for_each_set_bit(i, mask, chip->ngpio) {
2859 value = chip->get(chip, i);
2860 if (value < 0)
2861 return value;
2862 __assign_bit(i, bits, value);
2863 }
2864 return 0;
2865 }
2866 return -EIO;
2867}
2868
2869int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2870 unsigned int array_size,
2871 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002872 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002873 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02002874{
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002875 int err, i = 0;
2876
2877 /*
2878 * Validate array_info against desc_array and its size.
2879 * It should immediately follow desc_array if both
2880 * have been obtained from the same gpiod_get_array() call.
2881 */
2882 if (array_info && array_info->desc == desc_array &&
2883 array_size <= array_info->size &&
2884 (void *)array_info == desc_array + array_info->size) {
2885 if (!can_sleep)
2886 WARN_ON(array_info->chip->can_sleep);
2887
2888 err = gpio_chip_get_multiple(array_info->chip,
2889 array_info->get_mask,
2890 value_bitmap);
2891 if (err)
2892 return err;
2893
2894 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2895 bitmap_xor(value_bitmap, value_bitmap,
2896 array_info->invert_mask, array_size);
2897
2898 if (bitmap_full(array_info->get_mask, array_size))
2899 return 0;
2900
2901 i = find_first_zero_bit(array_info->get_mask, array_size);
2902 } else {
2903 array_info = NULL;
2904 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02002905
2906 while (i < array_size) {
2907 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07002908 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
2909 unsigned long *mask, *bits;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002910 int first, j, ret;
2911
Laura Abbott30277432018-05-21 10:57:07 -07002912 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
2913 mask = fastpath;
2914 } else {
2915 mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
2916 sizeof(*mask),
2917 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
2918 if (!mask)
2919 return -ENOMEM;
2920 }
2921
2922 bits = mask + BITS_TO_LONGS(chip->ngpio);
2923 bitmap_zero(mask, chip->ngpio);
2924
Lukas Wunnereec1d562017-10-12 12:40:10 +02002925 if (!can_sleep)
2926 WARN_ON(chip->can_sleep);
2927
2928 /* collect all inputs belonging to the same chip */
2929 first = i;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002930 do {
2931 const struct gpio_desc *desc = desc_array[i];
2932 int hwgpio = gpio_chip_hwgpio(desc);
2933
2934 __set_bit(hwgpio, mask);
Janusz Krzysztofik799d5eb2018-09-29 14:20:22 +02002935 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002936
2937 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02002938 i = find_next_zero_bit(array_info->get_mask,
2939 array_size, i);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002940 } while ((i < array_size) &&
2941 (desc_array[i]->gdev->chip == chip));
2942
2943 ret = gpio_chip_get_multiple(chip, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07002944 if (ret) {
2945 if (mask != fastpath)
2946 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002947 return ret;
Laura Abbott30277432018-05-21 10:57:07 -07002948 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02002949
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002950 for (j = first; j < i; ) {
Lukas Wunnereec1d562017-10-12 12:40:10 +02002951 const struct gpio_desc *desc = desc_array[j];
2952 int hwgpio = gpio_chip_hwgpio(desc);
2953 int value = test_bit(hwgpio, bits);
2954
2955 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2956 value = !value;
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002957 __assign_bit(j, value_bitmap, value);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002958 trace_gpio_value(desc_to_gpio(desc), 1, value);
Janusz Krzysztofik799d5eb2018-09-29 14:20:22 +02002959 j++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002960
2961 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02002962 j = find_next_zero_bit(array_info->get_mask, i,
2963 j);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002964 }
Laura Abbott30277432018-05-21 10:57:07 -07002965
2966 if (mask != fastpath)
2967 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002968 }
2969 return 0;
2970}
2971
David Brownelld2876d02008-02-04 22:28:20 -08002972/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002973 * gpiod_get_raw_value() - return a gpio's raw value
2974 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002975 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002976 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002977 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002978 *
2979 * This function should be called from contexts where we cannot sleep, and will
2980 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002981 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002982int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002983{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002984 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002985 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002986 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02002987 return gpiod_get_raw_value_commit(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002988}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002989EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002990
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002991/**
2992 * gpiod_get_value() - return a gpio's value
2993 * @desc: gpio whose value will be returned
2994 *
2995 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002996 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002997 *
2998 * This function should be called from contexts where we cannot sleep, and will
2999 * complain if the GPIO chip functions potentially sleep.
3000 */
3001int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003002{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003003 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003004
3005 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003006 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003007 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003008
Linus Walleijfac9d882017-09-26 20:58:28 +02003009 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003010 if (value < 0)
3011 return value;
3012
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003013 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3014 value = !value;
3015
3016 return value;
David Brownelld2876d02008-02-04 22:28:20 -08003017}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003018EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08003019
Lukas Wunnereec1d562017-10-12 12:40:10 +02003020/**
3021 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003022 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003023 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003024 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003025 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003026 *
3027 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3028 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3029 * else an error code.
3030 *
3031 * This function should be called from contexts where we cannot sleep,
3032 * and it will complain if the GPIO chip functions potentially sleep.
3033 */
3034int gpiod_get_raw_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003035 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003036 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003037 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003038{
3039 if (!desc_array)
3040 return -EINVAL;
3041 return gpiod_get_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003042 desc_array, array_info,
3043 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003044}
3045EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
3046
3047/**
3048 * gpiod_get_array_value() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003049 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003050 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003051 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003052 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003053 *
3054 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3055 * into account. Return 0 in case of success, else an error code.
3056 *
3057 * This function should be called from contexts where we cannot sleep,
3058 * and it will complain if the GPIO chip functions potentially sleep.
3059 */
3060int gpiod_get_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003061 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003062 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003063 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003064{
3065 if (!desc_array)
3066 return -EINVAL;
3067 return gpiod_get_array_value_complex(false, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003068 desc_array, array_info,
3069 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003070}
3071EXPORT_SYMBOL_GPL(gpiod_get_array_value);
3072
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303073/*
Linus Walleijfac9d882017-09-26 20:58:28 +02003074 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003075 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07003076 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303077 */
Linus Walleijfac9d882017-09-26 20:58:28 +02003078static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303079{
3080 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003081 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003082 int offset = gpio_chip_hwgpio(desc);
3083
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303084 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003085 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303086 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003087 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303088 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003089 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303090 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003091 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303092 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09003093 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303094 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01003095 gpiod_err(desc,
3096 "%s: Error in set_value for open drain err %d\n",
3097 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05303098}
3099
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303100/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003101 * _gpio_set_open_source_value() - Set the open source gpio's value.
3102 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07003103 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303104 */
Linus Walleijfac9d882017-09-26 20:58:28 +02003105static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303106{
3107 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003108 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003109 int offset = gpio_chip_hwgpio(desc);
3110
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303111 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003112 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303113 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003114 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303115 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09003116 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303117 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003118 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303119 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09003120 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303121 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01003122 gpiod_err(desc,
3123 "%s: Error in set_value for open source err %d\n",
3124 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05303125}
3126
Linus Walleijfac9d882017-09-26 20:58:28 +02003127static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08003128{
3129 struct gpio_chip *chip;
3130
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003131 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003132 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleij02e47982017-09-26 21:20:23 +02003133 chip->set(chip, gpio_chip_hwgpio(desc), value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003134}
3135
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003136/*
3137 * set multiple outputs on the same chip;
3138 * use the chip's set_multiple function if available;
3139 * otherwise set the outputs sequentially;
3140 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
3141 * defines which outputs are to be changed
3142 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
3143 * defines the values the outputs specified by mask are to be set to
3144 */
3145static void gpio_chip_set_multiple(struct gpio_chip *chip,
3146 unsigned long *mask, unsigned long *bits)
3147{
3148 if (chip->set_multiple) {
3149 chip->set_multiple(chip, mask, bits);
3150 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02003151 unsigned int i;
3152
3153 /* set outputs if the corresponding mask bit is set */
3154 for_each_set_bit(i, mask, chip->ngpio)
3155 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003156 }
3157}
3158
Laura Abbott30277432018-05-21 10:57:07 -07003159int gpiod_set_array_value_complex(bool raw, bool can_sleep,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003160 unsigned int array_size,
3161 struct gpio_desc **desc_array,
3162 struct gpio_array *array_info,
3163 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003164{
3165 int i = 0;
3166
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003167 /*
3168 * Validate array_info against desc_array and its size.
3169 * It should immediately follow desc_array if both
3170 * have been obtained from the same gpiod_get_array() call.
3171 */
3172 if (array_info && array_info->desc == desc_array &&
3173 array_size <= array_info->size &&
3174 (void *)array_info == desc_array + array_info->size) {
3175 if (!can_sleep)
3176 WARN_ON(array_info->chip->can_sleep);
3177
3178 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
3179 bitmap_xor(value_bitmap, value_bitmap,
3180 array_info->invert_mask, array_size);
3181
3182 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
3183 value_bitmap);
3184
3185 if (bitmap_full(array_info->set_mask, array_size))
3186 return 0;
3187
3188 i = find_first_zero_bit(array_info->set_mask, array_size);
3189 } else {
3190 array_info = NULL;
3191 }
3192
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003193 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003194 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07003195 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
3196 unsigned long *mask, *bits;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003197 int count = 0;
3198
Laura Abbott30277432018-05-21 10:57:07 -07003199 if (likely(chip->ngpio <= FASTPATH_NGPIO)) {
3200 mask = fastpath;
3201 } else {
3202 mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio),
3203 sizeof(*mask),
3204 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
3205 if (!mask)
3206 return -ENOMEM;
3207 }
3208
3209 bits = mask + BITS_TO_LONGS(chip->ngpio);
3210 bitmap_zero(mask, chip->ngpio);
3211
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003212 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003213 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003214
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003215 do {
3216 struct gpio_desc *desc = desc_array[i];
3217 int hwgpio = gpio_chip_hwgpio(desc);
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003218 int value = test_bit(i, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003219
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003220 /*
3221 * Pins applicable for fast input but not for
3222 * fast output processing may have been already
3223 * inverted inside the fast path, skip them.
3224 */
3225 if (!raw && !(array_info &&
3226 test_bit(i, array_info->invert_mask)) &&
3227 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003228 value = !value;
3229 trace_gpio_value(desc_to_gpio(desc), 0, value);
3230 /*
3231 * collect all normal outputs belonging to the same chip
3232 * open drain and open source outputs are set individually
3233 */
Linus Walleij02e47982017-09-26 21:20:23 +02003234 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02003235 gpio_set_open_drain_value_commit(desc, value);
Linus Walleij02e47982017-09-26 21:20:23 +02003236 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02003237 gpio_set_open_source_value_commit(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003238 } else {
3239 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003240 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003241 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003242 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003243 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003244 count++;
3245 }
Janusz Krzysztofik799d5eb2018-09-29 14:20:22 +02003246 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02003247
3248 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02003249 i = find_next_zero_bit(array_info->set_mask,
3250 array_size, i);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003251 } while ((i < array_size) &&
3252 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003253 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01003254 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003255 gpio_chip_set_multiple(chip, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07003256
3257 if (mask != fastpath)
3258 kfree(mask);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003259 }
Laura Abbott30277432018-05-21 10:57:07 -07003260 return 0;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003261}
3262
David Brownelld2876d02008-02-04 22:28:20 -08003263/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003264 * gpiod_set_raw_value() - assign a gpio's raw value
3265 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08003266 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08003267 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003268 * Set the raw value of the GPIO, i.e. the value of its physical line without
3269 * regard for its ACTIVE_LOW status.
3270 *
3271 * This function should be called from contexts where we cannot sleep, and will
3272 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003273 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003274void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003275{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003276 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01003277 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003278 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02003279 gpiod_set_raw_value_commit(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003280}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003281EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08003282
3283/**
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003284 * gpiod_set_value_nocheck() - set a GPIO line value without checking
3285 * @desc: the descriptor to set the value on
3286 * @value: value to set
3287 *
3288 * This sets the value of a GPIO line backing a descriptor, applying
3289 * different semantic quirks like active low and open drain/source
3290 * handling.
3291 */
3292static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
3293{
3294 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3295 value = !value;
3296 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
3297 gpio_set_open_drain_value_commit(desc, value);
3298 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
3299 gpio_set_open_source_value_commit(desc, value);
3300 else
3301 gpiod_set_raw_value_commit(desc, value);
3302}
3303
3304/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003305 * gpiod_set_value() - assign a gpio's value
3306 * @desc: gpio whose value will be assigned
3307 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08003308 *
Linus Walleij02e47982017-09-26 21:20:23 +02003309 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
3310 * OPEN_DRAIN and OPEN_SOURCE flags into account.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003311 *
3312 * This function should be called from contexts where we cannot sleep, and will
3313 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003314 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003315void gpiod_set_value(struct gpio_desc *desc, int value)
3316{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003317 VALIDATE_DESC_VOID(desc);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003318 WARN_ON(desc->gdev->chip->can_sleep);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003319 gpiod_set_value_nocheck(desc, value);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003320}
3321EXPORT_SYMBOL_GPL(gpiod_set_value);
3322
3323/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003324 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003325 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003326 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003327 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003328 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003329 *
3330 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3331 * without regard for their ACTIVE_LOW status.
3332 *
3333 * This function should be called from contexts where we cannot sleep, and will
3334 * complain if the GPIO chip functions potentially sleep.
3335 */
Laura Abbott30277432018-05-21 10:57:07 -07003336int gpiod_set_raw_array_value(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003337 struct gpio_desc **desc_array,
3338 struct gpio_array *array_info,
3339 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003340{
3341 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003342 return -EINVAL;
3343 return gpiod_set_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003344 desc_array, array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003345}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003346EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003347
3348/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003349 * gpiod_set_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003350 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003351 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003352 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003353 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003354 *
3355 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3356 * into account.
3357 *
3358 * This function should be called from contexts where we cannot sleep, and will
3359 * complain if the GPIO chip functions potentially sleep.
3360 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003361int gpiod_set_array_value(unsigned int array_size,
3362 struct gpio_desc **desc_array,
3363 struct gpio_array *array_info,
3364 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003365{
3366 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003367 return -EINVAL;
3368 return gpiod_set_array_value_complex(false, false, array_size,
3369 desc_array, array_info,
3370 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003371}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003372EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003373
3374/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003375 * gpiod_cansleep() - report whether gpio value access may sleep
3376 * @desc: gpio to check
3377 *
3378 */
3379int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003380{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003381 VALIDATE_DESC(desc);
3382 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003383}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003384EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003385
David Brownell0f6d5042008-10-15 22:03:14 -07003386/**
Linus Walleij90b39402e2018-06-01 13:21:27 +02003387 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3388 * @desc: gpio to set the consumer name on
3389 * @name: the new consumer name
3390 */
3391void gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
3392{
3393 VALIDATE_DESC_VOID(desc);
3394 /* Just overwrite whatever the previous name was */
3395 desc->label = name;
3396}
3397EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3398
3399/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003400 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3401 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07003402 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003403 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3404 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07003405 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003406int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07003407{
Linus Walleij4c37ce82016-05-02 13:13:10 +02003408 struct gpio_chip *chip;
3409 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07003410
Linus Walleij79bb71b2016-06-15 22:57:38 +02003411 /*
3412 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3413 * requires this function to not return zero on an invalid descriptor
3414 * but rather a negative error number.
3415 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02003416 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02003417 return -EINVAL;
3418
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003419 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003420 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02003421 if (chip->to_irq) {
3422 int retirq = chip->to_irq(chip, offset);
3423
3424 /* Zero means NO_IRQ */
3425 if (!retirq)
3426 return -ENXIO;
3427
3428 return retirq;
3429 }
3430 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003431}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003432EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003433
Linus Walleijd468bf92013-09-24 11:54:38 +02003434/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003435 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003436 * @chip: the chip the GPIO to lock belongs to
3437 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003438 *
3439 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08003440 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08003441 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003442int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08003443{
Linus Walleij9c102802016-05-25 10:56:03 +02003444 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02003445
Linus Walleij9c102802016-05-25 10:56:03 +02003446 desc = gpiochip_get_desc(chip, offset);
3447 if (IS_ERR(desc))
3448 return PTR_ERR(desc);
3449
Linus Walleij60f83392016-11-12 15:01:09 +01003450 /*
3451 * If it's fast: flush the direction setting if something changed
3452 * behind our back
3453 */
3454 if (!chip->can_sleep && chip->get_direction) {
Andy Shevchenko80956792018-07-09 21:47:21 +03003455 int dir = gpiod_get_direction(desc);
Linus Walleij9c102802016-05-25 10:56:03 +02003456
Andy Shevchenko36b31272018-07-03 03:38:31 +03003457 if (dir < 0) {
3458 chip_err(chip, "%s: cannot get GPIO direction\n",
3459 __func__);
3460 return dir;
3461 }
Linus Walleij9c102802016-05-25 10:56:03 +02003462 }
3463
3464 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003465 chip_err(chip,
Andy Shevchenkob1911712018-07-03 03:39:03 +03003466 "%s: tried to flag a GPIO set as output for IRQ\n",
3467 __func__);
Linus Walleijd468bf92013-09-24 11:54:38 +02003468 return -EIO;
3469 }
3470
Linus Walleij9c102802016-05-25 10:56:03 +02003471 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003472 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003473
3474 /*
3475 * If the consumer has not set up a label (such as when the
3476 * IRQ is referenced from .to_irq()) we set up a label here
3477 * so it is clear this is used as an interrupt.
3478 */
3479 if (!desc->label)
3480 desc_set_label(desc, "interrupt");
3481
Linus Walleijd468bf92013-09-24 11:54:38 +02003482 return 0;
3483}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003484EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003485
Linus Walleijd468bf92013-09-24 11:54:38 +02003486/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003487 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003488 * @chip: the chip the GPIO to lock belongs to
3489 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003490 *
3491 * This is used directly by GPIO drivers that want to indicate
3492 * that a certain GPIO is no longer used exclusively for IRQ.
3493 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003494void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02003495{
Linus Walleij3940c342016-11-14 00:09:07 +01003496 struct gpio_desc *desc;
3497
3498 desc = gpiochip_get_desc(chip, offset);
3499 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02003500 return;
3501
Linus Walleij3940c342016-11-14 00:09:07 +01003502 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003503 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003504
3505 /* If we only had this marking, erase it */
3506 if (desc->label && !strcmp(desc->label, "interrupt"))
3507 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02003508}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003509EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003510
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003511void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset)
3512{
3513 struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3514
3515 if (!IS_ERR(desc) &&
3516 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3517 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3518}
3519EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3520
3521void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset)
3522{
3523 struct gpio_desc *desc = gpiochip_get_desc(chip, offset);
3524
3525 if (!IS_ERR(desc) &&
3526 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
3527 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags));
3528 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3529 }
3530}
3531EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3532
Linus Walleij6cee3822016-02-11 20:16:45 +01003533bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
3534{
3535 if (offset >= chip->ngpio)
3536 return false;
3537
3538 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
3539}
3540EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3541
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003542int gpiochip_reqres_irq(struct gpio_chip *chip, unsigned int offset)
3543{
3544 int ret;
3545
3546 if (!try_module_get(chip->gpiodev->owner))
3547 return -ENODEV;
3548
3549 ret = gpiochip_lock_as_irq(chip, offset);
3550 if (ret) {
3551 chip_err(chip, "unable to lock HW IRQ %u for IRQ\n", offset);
3552 module_put(chip->gpiodev->owner);
3553 return ret;
3554 }
3555 return 0;
3556}
3557EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3558
3559void gpiochip_relres_irq(struct gpio_chip *chip, unsigned int offset)
3560{
3561 gpiochip_unlock_as_irq(chip, offset);
3562 module_put(chip->gpiodev->owner);
3563}
3564EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3565
Linus Walleij143b65d2016-02-16 15:41:42 +01003566bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
3567{
3568 if (offset >= chip->ngpio)
3569 return false;
3570
3571 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
3572}
3573EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3574
3575bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
3576{
3577 if (offset >= chip->ngpio)
3578 return false;
3579
3580 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
3581}
3582EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3583
Charles Keepax05f479b2017-05-23 15:47:29 +01003584bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
3585{
3586 if (offset >= chip->ngpio)
3587 return false;
3588
Andrew Jefferye10f72b2017-11-30 14:25:24 +10303589 return !test_bit(FLAG_TRANSITORY, &chip->gpiodev->descs[offset].flags);
Charles Keepax05f479b2017-05-23 15:47:29 +01003590}
3591EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3592
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003593/**
3594 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3595 * @desc: gpio whose value will be returned
3596 *
3597 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003598 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003599 *
3600 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003601 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003602int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003603{
David Brownelld2876d02008-02-04 22:28:20 -08003604 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003605 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003606 return gpiod_get_raw_value_commit(desc);
David Brownelld2876d02008-02-04 22:28:20 -08003607}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003608EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003609
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003610/**
3611 * gpiod_get_value_cansleep() - return a gpio's value
3612 * @desc: gpio whose value will be returned
3613 *
3614 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003615 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003616 *
3617 * This function is to be called from contexts that can sleep.
3618 */
3619int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003620{
David Brownelld2876d02008-02-04 22:28:20 -08003621 int value;
David Brownelld2876d02008-02-04 22:28:20 -08003622
3623 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003624 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003625 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003626 if (value < 0)
3627 return value;
3628
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003629 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3630 value = !value;
3631
David Brownelld2876d02008-02-04 22:28:20 -08003632 return value;
3633}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003634EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003635
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003636/**
Lukas Wunnereec1d562017-10-12 12:40:10 +02003637 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003638 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003639 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003640 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003641 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003642 *
3643 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3644 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3645 * else an error code.
3646 *
3647 * This function is to be called from contexts that can sleep.
3648 */
3649int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3650 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003651 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003652 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003653{
3654 might_sleep_if(extra_checks);
3655 if (!desc_array)
3656 return -EINVAL;
3657 return gpiod_get_array_value_complex(true, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003658 desc_array, array_info,
3659 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003660}
3661EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3662
3663/**
3664 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003665 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003666 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003667 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003668 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003669 *
3670 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3671 * into account. Return 0 in case of success, else an error code.
3672 *
3673 * This function is to be called from contexts that can sleep.
3674 */
3675int gpiod_get_array_value_cansleep(unsigned int array_size,
3676 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003677 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003678 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003679{
3680 might_sleep_if(extra_checks);
3681 if (!desc_array)
3682 return -EINVAL;
3683 return gpiod_get_array_value_complex(false, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003684 desc_array, array_info,
3685 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003686}
3687EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3688
3689/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003690 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3691 * @desc: gpio whose value will be assigned
3692 * @value: value to assign
3693 *
3694 * Set the raw value of the GPIO, i.e. the value of its physical line without
3695 * regard for its ACTIVE_LOW status.
3696 *
3697 * This function is to be called from contexts that can sleep.
3698 */
3699void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003700{
David Brownelld2876d02008-02-04 22:28:20 -08003701 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003702 VALIDATE_DESC_VOID(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003703 gpiod_set_raw_value_commit(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003704}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003705EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003706
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003707/**
3708 * gpiod_set_value_cansleep() - assign a gpio's value
3709 * @desc: gpio whose value will be assigned
3710 * @value: value to assign
3711 *
3712 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3713 * account
3714 *
3715 * This function is to be called from contexts that can sleep.
3716 */
3717void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003718{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003719 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003720 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003721 gpiod_set_value_nocheck(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003722}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003723EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003724
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003725/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003726 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003727 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003728 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003729 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003730 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003731 *
3732 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3733 * without regard for their ACTIVE_LOW status.
3734 *
3735 * This function is to be called from contexts that can sleep.
3736 */
Laura Abbott30277432018-05-21 10:57:07 -07003737int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003738 struct gpio_desc **desc_array,
3739 struct gpio_array *array_info,
3740 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003741{
3742 might_sleep_if(extra_checks);
3743 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003744 return -EINVAL;
3745 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003746 array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003747}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003748EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003749
3750/**
Dmitry Torokhov3946d182017-08-14 21:59:55 -07003751 * gpiod_add_lookup_tables() - register GPIO device consumers
3752 * @tables: list of tables of consumers to register
3753 * @n: number of tables in the list
3754 */
3755void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3756{
3757 unsigned int i;
3758
3759 mutex_lock(&gpio_lookup_lock);
3760
3761 for (i = 0; i < n; i++)
3762 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3763
3764 mutex_unlock(&gpio_lookup_lock);
3765}
3766
3767/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003768 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003769 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003770 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003771 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003772 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003773 *
3774 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3775 * into account.
3776 *
3777 * This function is to be called from contexts that can sleep.
3778 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003779int gpiod_set_array_value_cansleep(unsigned int array_size,
3780 struct gpio_desc **desc_array,
3781 struct gpio_array *array_info,
3782 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003783{
3784 might_sleep_if(extra_checks);
3785 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003786 return -EINVAL;
3787 return gpiod_set_array_value_complex(false, true, array_size,
3788 desc_array, array_info,
3789 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003790}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003791EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003792
3793/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003794 * gpiod_add_lookup_table() - register GPIO device consumers
3795 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003796 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003797void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003798{
3799 mutex_lock(&gpio_lookup_lock);
3800
Alexandre Courbotad824782013-12-03 12:20:11 +09003801 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003802
3803 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003804}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003805EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003806
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303807/**
3808 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3809 * @table: table of consumers to unregister
3810 */
3811void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3812{
3813 mutex_lock(&gpio_lookup_lock);
3814
3815 list_del(&table->list);
3816
3817 mutex_unlock(&gpio_lookup_lock);
3818}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003819EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303820
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02003821/**
3822 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3823 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3824 */
3825void gpiod_add_hogs(struct gpiod_hog *hogs)
3826{
3827 struct gpio_chip *chip;
3828 struct gpiod_hog *hog;
3829
3830 mutex_lock(&gpio_machine_hogs_mutex);
3831
3832 for (hog = &hogs[0]; hog->chip_label; hog++) {
3833 list_add_tail(&hog->list, &gpio_machine_hogs);
3834
3835 /*
3836 * The chip may have been registered earlier, so check if it
3837 * exists and, if so, try to hog the line now.
3838 */
3839 chip = find_chip_by_name(hog->chip_label);
3840 if (chip)
3841 gpiochip_machine_hog(chip, hog);
3842 }
3843
3844 mutex_unlock(&gpio_machine_hogs_mutex);
3845}
3846EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3847
Alexandre Courbotad824782013-12-03 12:20:11 +09003848static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3849{
3850 const char *dev_id = dev ? dev_name(dev) : NULL;
3851 struct gpiod_lookup_table *table;
3852
3853 mutex_lock(&gpio_lookup_lock);
3854
3855 list_for_each_entry(table, &gpio_lookup_list, list) {
3856 if (table->dev_id && dev_id) {
3857 /*
3858 * Valid strings on both ends, must be identical to have
3859 * a match
3860 */
3861 if (!strcmp(table->dev_id, dev_id))
3862 goto found;
3863 } else {
3864 /*
3865 * One of the pointers is NULL, so both must be to have
3866 * a match
3867 */
3868 if (dev_id == table->dev_id)
3869 goto found;
3870 }
3871 }
3872 table = NULL;
3873
3874found:
3875 mutex_unlock(&gpio_lookup_lock);
3876 return table;
3877}
3878
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003879static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09003880 unsigned int idx,
3881 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003882{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003883 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003884 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003885 struct gpiod_lookup *p;
3886
Alexandre Courbotad824782013-12-03 12:20:11 +09003887 table = gpiod_find_lookup_table(dev);
3888 if (!table)
3889 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003890
Alexandre Courbotad824782013-12-03 12:20:11 +09003891 for (p = &table->table[0]; p->chip_label; p++) {
3892 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003893
Alexandre Courbotad824782013-12-03 12:20:11 +09003894 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003895 if (p->idx != idx)
3896 continue;
3897
Alexandre Courbotad824782013-12-03 12:20:11 +09003898 /* If the lookup entry has a con_id, require exact match */
3899 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3900 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003901
Alexandre Courbotad824782013-12-03 12:20:11 +09003902 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003903
Alexandre Courbotad824782013-12-03 12:20:11 +09003904 if (!chip) {
Janusz Krzysztofik8853daf2018-07-04 00:18:19 +02003905 /*
3906 * As the lookup table indicates a chip with
3907 * p->chip_label should exist, assume it may
3908 * still appear later and let the interested
3909 * consumer be probed again or let the Deferred
3910 * Probe infrastructure handle the error.
3911 */
3912 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
3913 p->chip_label);
3914 return ERR_PTR(-EPROBE_DEFER);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003915 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003916
Alexandre Courbotad824782013-12-03 12:20:11 +09003917 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003918 dev_err(dev,
3919 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3920 idx, chip->ngpio, chip->label);
3921 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003922 }
3923
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09003924 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003925 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003926
3927 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003928 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003929
3930 return desc;
3931}
3932
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003933static int dt_gpio_count(struct device *dev, const char *con_id)
3934{
3935 int ret;
3936 char propname[32];
3937 unsigned int i;
3938
3939 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3940 if (con_id)
3941 snprintf(propname, sizeof(propname), "%s-%s",
3942 con_id, gpio_suffixes[i]);
3943 else
3944 snprintf(propname, sizeof(propname), "%s",
3945 gpio_suffixes[i]);
3946
3947 ret = of_gpio_named_count(dev->of_node, propname);
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003948 if (ret > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003949 break;
3950 }
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003951 return ret ? ret : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003952}
3953
3954static int platform_gpio_count(struct device *dev, const char *con_id)
3955{
3956 struct gpiod_lookup_table *table;
3957 struct gpiod_lookup *p;
3958 unsigned int count = 0;
3959
3960 table = gpiod_find_lookup_table(dev);
3961 if (!table)
3962 return -ENOENT;
3963
3964 for (p = &table->table[0]; p->chip_label; p++) {
3965 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3966 (!con_id && !p->con_id))
3967 count++;
3968 }
3969 if (!count)
3970 return -ENOENT;
3971
3972 return count;
3973}
3974
3975/**
3976 * gpiod_count - return the number of GPIOs associated with a device / function
3977 * or -ENOENT if no GPIO has been assigned to the requested function
3978 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3979 * @con_id: function within the GPIO consumer
3980 */
3981int gpiod_count(struct device *dev, const char *con_id)
3982{
3983 int count = -ENOENT;
3984
3985 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3986 count = dt_gpio_count(dev, con_id);
3987 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3988 count = acpi_gpio_count(dev, con_id);
3989
3990 if (count < 0)
3991 count = platform_gpio_count(dev, con_id);
3992
3993 return count;
3994}
3995EXPORT_SYMBOL_GPL(gpiod_count);
3996
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003997/**
Thierry Reding08791622014-04-25 16:54:22 +02003998 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003999 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004000 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004001 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004002 *
4003 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004004 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07004005 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004006 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004007struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004008 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004009{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004010 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004011}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004012EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004013
4014/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02004015 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
4016 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4017 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004018 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02004019 *
4020 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
4021 * the requested function it will return NULL. This is convenient for drivers
4022 * that need to handle optional GPIOs.
4023 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004024struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004025 const char *con_id,
4026 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02004027{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004028 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02004029}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004030EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02004031
Benoit Parrotf625d462015-02-02 11:44:44 -06004032
4033/**
4034 * gpiod_configure_flags - helper function to configure a given GPIO
4035 * @desc: gpio whose value will be assigned
4036 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02004037 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
4038 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06004039 * @dflags: gpiod_flags - optional GPIO initialization flags
4040 *
4041 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
4042 * requested function and/or index, or another IS_ERR() code if an error
4043 * occurred while trying to acquire the GPIO.
4044 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03004045int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02004046 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06004047{
4048 int status;
4049
Johan Hovold85b03b32016-07-03 18:32:05 +02004050 if (lflags & GPIO_ACTIVE_LOW)
4051 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02004052
Johan Hovold85b03b32016-07-03 18:32:05 +02004053 if (lflags & GPIO_OPEN_DRAIN)
4054 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02004055 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
4056 /*
4057 * This enforces open drain mode from the consumer side.
4058 * This is necessary for some busses like I2C, but the lookup
4059 * should *REALLY* have specified them as open drain in the
4060 * first place, so print a little warning here.
4061 */
4062 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
4063 gpiod_warn(desc,
4064 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
4065 }
4066
Johan Hovold85b03b32016-07-03 18:32:05 +02004067 if (lflags & GPIO_OPEN_SOURCE)
4068 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304069
4070 status = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
4071 if (status < 0)
4072 return status;
Johan Hovold85b03b32016-07-03 18:32:05 +02004073
Benoit Parrotf625d462015-02-02 11:44:44 -06004074 /* No particular flag request, return here... */
4075 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
4076 pr_debug("no flags found for %s\n", con_id);
4077 return 0;
4078 }
4079
4080 /* Process flags */
4081 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
4082 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01004083 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06004084 else
4085 status = gpiod_direction_input(desc);
4086
4087 return status;
4088}
4089
Thierry Reding29a1f2332014-04-25 17:10:06 +02004090/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004091 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02004092 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004093 * @con_id: function within the GPIO consumer
4094 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004095 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004096 *
4097 * This variant of gpiod_get() allows to access GPIOs other than the first
4098 * defined one for functions that define several GPIOs.
4099 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004100 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
4101 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07004102 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004103 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004104struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004105 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004106 unsigned int idx,
4107 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004108{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09004109 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004110 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004111 enum gpio_lookup_flags lookupflags = 0;
Linus Walleij7d18f0a2018-01-16 08:29:50 +01004112 /* Maybe we have a device name, maybe not */
4113 const char *devname = dev ? dev_name(dev) : "?";
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004114
4115 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
4116
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01004117 if (dev) {
4118 /* Using device tree? */
4119 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
4120 dev_dbg(dev, "using device tree for GPIO lookup\n");
4121 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
4122 } else if (ACPI_COMPANION(dev)) {
4123 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03004124 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01004125 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09004126 }
4127
4128 /*
4129 * Either we are not using DT or ACPI, or their lookup did not return
4130 * a result. In that case, use platform lookup as a fallback.
4131 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09004132 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04004133 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004134 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004135 }
4136
4137 if (IS_ERR(desc)) {
Wang Dongsheng9d5a1f22018-02-27 00:12:13 -08004138 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004139 return desc;
4140 }
4141
Linus Walleij7d18f0a2018-01-16 08:29:50 +01004142 /*
4143 * If a connection label was passed use that, else attempt to use
4144 * the device name as label
4145 */
4146 status = gpiod_request(desc, con_id ? con_id : devname);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004147 if (status < 0)
4148 return ERR_PTR(status);
4149
Johan Hovold85b03b32016-07-03 18:32:05 +02004150 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004151 if (status < 0) {
4152 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
4153 gpiod_put(desc);
4154 return ERR_PTR(status);
4155 }
4156
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004157 return desc;
4158}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004159EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004160
4161/**
Linus Walleij6392cca2017-12-29 02:07:54 +01004162 * gpiod_get_from_of_node() - obtain a GPIO from an OF node
4163 * @node: handle of the OF node
4164 * @propname: name of the DT property representing the GPIO
4165 * @index: index of the GPIO to obtain for the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004166 * @dflags: GPIO initialization flags
Thierry Reding950d55f52017-07-24 16:57:22 +02004167 * @label: label to attach to the requested GPIO
Mika Westerberg40b73182014-10-21 13:33:59 +02004168 *
Thierry Reding950d55f52017-07-24 16:57:22 +02004169 * Returns:
Andy Shevchenkoff213782017-02-28 17:03:12 +02004170 * On successful request the GPIO pin is configured in accordance with
Linus Walleij6392cca2017-12-29 02:07:54 +01004171 * provided @dflags. If the node does not have the requested GPIO
4172 * property, NULL is returned.
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004173 *
Mika Westerberg40b73182014-10-21 13:33:59 +02004174 * In case of error an ERR_PTR() is returned.
4175 */
Linus Walleij92542ed2017-12-29 22:52:02 +01004176struct gpio_desc *gpiod_get_from_of_node(struct device_node *node,
4177 const char *propname, int index,
4178 enum gpiod_flags dflags,
4179 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02004180{
Colin Ian King40a3c9d2018-01-16 11:56:11 +00004181 struct gpio_desc *desc;
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004182 unsigned long lflags = 0;
Linus Walleij6392cca2017-12-29 02:07:54 +01004183 enum of_gpio_flags flags;
Mika Westerberg40b73182014-10-21 13:33:59 +02004184 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004185 bool single_ended = false;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05304186 bool open_drain = false;
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304187 bool transitory = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02004188 int ret;
4189
Linus Walleij6392cca2017-12-29 02:07:54 +01004190 desc = of_get_named_gpiod_flags(node, propname,
4191 index, &flags);
Mika Westerberg40b73182014-10-21 13:33:59 +02004192
Linus Walleij6392cca2017-12-29 02:07:54 +01004193 if (!desc || IS_ERR(desc)) {
4194 /* If it is not there, just return NULL */
4195 if (PTR_ERR(desc) == -ENOENT)
4196 return NULL;
4197 return desc;
Mika Westerberg40b73182014-10-21 13:33:59 +02004198 }
4199
Linus Walleij6392cca2017-12-29 02:07:54 +01004200 active_low = flags & OF_GPIO_ACTIVE_LOW;
4201 single_ended = flags & OF_GPIO_SINGLE_ENDED;
4202 open_drain = flags & OF_GPIO_OPEN_DRAIN;
4203 transitory = flags & OF_GPIO_TRANSITORY;
Mika Westerberg40b73182014-10-21 13:33:59 +02004204
Alexander Steinb2987d72017-01-12 17:39:24 +01004205 ret = gpiod_request(desc, label);
Johan Hovold85b03b32016-07-03 18:32:05 +02004206 if (ret)
4207 return ERR_PTR(ret);
4208
Mika Westerberg40b73182014-10-21 13:33:59 +02004209 if (active_low)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004210 lflags |= GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02004211
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004212 if (single_ended) {
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05304213 if (open_drain)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004214 lflags |= GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004215 else
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004216 lflags |= GPIO_OPEN_SOURCE;
4217 }
4218
Andrew Jefferye10f72b2017-11-30 14:25:24 +10304219 if (transitory)
4220 lflags |= GPIO_TRANSITORY;
4221
Andy Shevchenkoa264d102017-01-09 16:02:28 +02004222 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4223 if (ret < 0) {
4224 gpiod_put(desc);
4225 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03004226 }
4227
Mika Westerberg40b73182014-10-21 13:33:59 +02004228 return desc;
4229}
Linus Walleij92542ed2017-12-29 22:52:02 +01004230EXPORT_SYMBOL(gpiod_get_from_of_node);
Linus Walleij6392cca2017-12-29 02:07:54 +01004231
4232/**
Mika Westerberg40b73182014-10-21 13:33:59 +02004233 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
4234 * @fwnode: handle of the firmware node
4235 * @propname: name of the firmware property representing the GPIO
Linus Walleij6392cca2017-12-29 02:07:54 +01004236 * @index: index of the GPIO to obtain for the consumer
Mika Westerberg40b73182014-10-21 13:33:59 +02004237 * @dflags: GPIO initialization flags
4238 * @label: label to attach to the requested GPIO
4239 *
4240 * This function can be used for drivers that get their configuration
Linus Walleij6392cca2017-12-29 02:07:54 +01004241 * from opaque firmware.
Thierry Reding29a1f2332014-04-25 17:10:06 +02004242 *
Linus Walleij6392cca2017-12-29 02:07:54 +01004243 * The function properly finds the corresponding GPIO using whatever is the
Thierry Reding29a1f2332014-04-25 17:10:06 +02004244 * underlying firmware interface and then makes sure that the GPIO
4245 * descriptor is requested before it is returned to the caller.
4246 *
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004247 * Returns:
Thierry Reding29a1f2332014-04-25 17:10:06 +02004248 * On successful request the GPIO pin is configured in accordance with
4249 * provided @dflags.
4250 *
4251 * In case of error an ERR_PTR() is returned.
4252 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004253struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Thierry Reding29a1f2332014-04-25 17:10:06 +02004254 const char *propname, int index,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09004255 enum gpiod_flags dflags,
4256 const char *label)
Thierry Reding29a1f2332014-04-25 17:10:06 +02004257{
4258 struct gpio_desc *desc = ERR_PTR(-ENODEV);
4259 unsigned long lflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004260 int ret;
4261
David Brownelld2876d02008-02-04 22:28:20 -08004262 if (!fwnode)
David Brownelld2876d02008-02-04 22:28:20 -08004263 return ERR_PTR(-EINVAL);
4264
4265 if (is_of_node(fwnode)) {
Linus Walleij6392cca2017-12-29 02:07:54 +01004266 desc = gpiod_get_from_of_node(to_of_node(fwnode),
4267 propname, index,
4268 dflags,
4269 label);
4270 return desc;
David Brownelld2876d02008-02-04 22:28:20 -08004271 } else if (is_acpi_node(fwnode)) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09004272 struct acpi_gpio_info info;
David Brownelld2876d02008-02-04 22:28:20 -08004273
Linus Walleijd468bf92013-09-24 11:54:38 +02004274 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Linus Walleij6392cca2017-12-29 02:07:54 +01004275 if (IS_ERR(desc))
4276 return desc;
4277
4278 acpi_gpio_update_gpiod_flags(&dflags, &info);
4279
4280 if (info.polarity == GPIO_ACTIVE_LOW)
4281 lflags |= GPIO_ACTIVE_LOW;
Thierry Redingf9c4a312012-04-12 13:26:01 +02004282 }
4283
Linus Walleij6392cca2017-12-29 02:07:54 +01004284 /* Currently only ACPI takes this path */
Thierry Redingf9c4a312012-04-12 13:26:01 +02004285 ret = gpiod_request(desc, label);
4286 if (ret)
4287 return ERR_PTR(ret);
Linus Walleijd468bf92013-09-24 11:54:38 +02004288
Thierry Redingf9c4a312012-04-12 13:26:01 +02004289 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
4290 if (ret < 0) {
4291 gpiod_put(desc);
4292 return ERR_PTR(ret);
4293 }
4294
4295 return desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02004296}
4297EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
David Brownelld2876d02008-02-04 22:28:20 -08004298
4299/**
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -07004300 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
David Brownelld8f388d82008-07-25 01:46:07 -07004301 * function
Linus Walleijd468bf92013-09-24 11:54:38 +02004302 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4303 * @con_id: function within the GPIO consumer
David Brownelld2876d02008-02-04 22:28:20 -08004304 * @index: index of the GPIO to obtain in the consumer
4305 * @flags: optional GPIO initialization flags
4306 *
4307 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
4308 * specified index was assigned to the requested function it will return NULL.
4309 * This is convenient for drivers that need to handle optional GPIOs.
Grant Likely362432a2013-02-09 09:41:49 +00004310 */
David Brownelld8f388d82008-07-25 01:46:07 -07004311struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004312 const char *con_id,
Thierry Redingf9c4a312012-04-12 13:26:01 +02004313 unsigned int index,
4314 enum gpiod_flags flags)
4315{
Grant Likely362432a2013-02-09 09:41:49 +00004316 struct gpio_desc *desc;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004317
Grant Likely362432a2013-02-09 09:41:49 +00004318 desc = gpiod_get_index(dev, con_id, index, flags);
4319 if (IS_ERR(desc)) {
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004320 if (PTR_ERR(desc) == -ENOENT)
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01004321 return NULL;
David Brownelld2876d02008-02-04 22:28:20 -08004322 }
4323
Benoit Parrotf625d462015-02-02 11:44:44 -06004324 return desc;
4325}
4326EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
4327
4328/**
4329 * gpiod_hog - Hog the specified GPIO desc given the provided flags
4330 * @desc: gpio whose value will be assigned
4331 * @name: gpio line name
4332 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
4333 * of_get_gpio_hog()
4334 * @dflags: gpiod_flags - optional GPIO initialization flags
4335 */
4336int gpiod_hog(struct gpio_desc *desc, const char *name,
4337 unsigned long lflags, enum gpiod_flags dflags)
4338{
4339 struct gpio_chip *chip;
4340 struct gpio_desc *local_desc;
4341 int hwnum;
4342 int status;
4343
Laxman Dewanganc31a5712016-03-11 19:13:21 +05304344 chip = gpiod_to_chip(desc);
4345 hwnum = gpio_chip_hwgpio(desc);
4346
4347 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
Benoit Parrotf625d462015-02-02 11:44:44 -06004348 if (IS_ERR(local_desc)) {
4349 status = PTR_ERR(local_desc);
Johan Hovold85b03b32016-07-03 18:32:05 +02004350 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
Benoit Parrotf625d462015-02-02 11:44:44 -06004351 name, chip->label, hwnum, status);
Laxman Dewanganc31a5712016-03-11 19:13:21 +05304352 return status;
4353 }
Benoit Parrotf625d462015-02-02 11:44:44 -06004354
4355 status = gpiod_configure_flags(desc, name, lflags, dflags);
4356 if (status < 0) {
4357 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
4358 name, chip->label, hwnum, status);
4359 gpiochip_free_own_desc(desc);
4360 return status;
4361 }
4362
4363 /* Mark GPIO as hogged so it can be identified and removed later */
4364 set_bit(FLAG_IS_HOGGED, &desc->flags);
4365
4366 pr_info("GPIO line %d (%s) hogged as %s%s\n",
4367 desc_to_gpio(desc), name,
4368 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4369 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
4370 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
4371
4372 return 0;
4373}
4374
4375/**
4376 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
4377 * @chip: gpio chip to act on
4378 *
4379 * This is only used by of_gpiochip_remove to free hogged gpios
4380 */
Linus Walleij1c3cdb12016-02-09 13:51:59 +01004381static void gpiochip_free_hogs(struct gpio_chip *chip)
4382{
Benoit Parrotf625d462015-02-02 11:44:44 -06004383 int id;
4384
4385 for (id = 0; id < chip->ngpio; id++) {
4386 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004387 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
4388 }
4389}
4390
4391/**
4392 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4393 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4394 * @con_id: function within the GPIO consumer
4395 * @flags: optional GPIO initialization flags
4396 *
4397 * This function acquires all the GPIOs defined under a given function.
4398 *
4399 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4400 * no GPIO has been assigned to the requested function, or another IS_ERR()
4401 * code if an error occurred while trying to acquire the GPIOs.
4402 */
4403struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4404 const char *con_id,
4405 enum gpiod_flags flags)
4406{
4407 struct gpio_desc *desc;
4408 struct gpio_descs *descs;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004409 struct gpio_array *array_info = NULL;
4410 struct gpio_chip *chip;
4411 int count, bitmap_size;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004412
4413 count = gpiod_count(dev, con_id);
4414 if (count < 0)
4415 return ERR_PTR(count);
4416
Kees Cookacafe7e2018-05-08 13:45:50 -07004417 descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004418 if (!descs)
4419 return ERR_PTR(-ENOMEM);
4420
4421 for (descs->ndescs = 0; descs->ndescs < count; ) {
4422 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4423 if (IS_ERR(desc)) {
4424 gpiod_put_array(descs);
4425 return ERR_CAST(desc);
4426 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004427
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004428 descs->desc[descs->ndescs] = desc;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004429
4430 chip = gpiod_to_chip(desc);
4431 /*
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004432 * If pin hardware number of array member 0 is also 0, select
4433 * its chip as a candidate for fast bitmap processing path.
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004434 */
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004435 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004436 struct gpio_descs *array;
4437
4438 bitmap_size = BITS_TO_LONGS(chip->ngpio > count ?
4439 chip->ngpio : count);
4440
4441 array = kzalloc(struct_size(descs, desc, count) +
4442 struct_size(array_info, invert_mask,
4443 3 * bitmap_size), GFP_KERNEL);
4444 if (!array) {
4445 gpiod_put_array(descs);
4446 return ERR_PTR(-ENOMEM);
4447 }
4448
4449 memcpy(array, descs,
4450 struct_size(descs, desc, descs->ndescs + 1));
4451 kfree(descs);
4452
4453 descs = array;
4454 array_info = (void *)(descs->desc + count);
4455 array_info->get_mask = array_info->invert_mask +
4456 bitmap_size;
4457 array_info->set_mask = array_info->get_mask +
4458 bitmap_size;
4459
4460 array_info->desc = descs->desc;
4461 array_info->size = count;
4462 array_info->chip = chip;
4463 bitmap_set(array_info->get_mask, descs->ndescs,
4464 count - descs->ndescs);
4465 bitmap_set(array_info->set_mask, descs->ndescs,
4466 count - descs->ndescs);
4467 descs->info = array_info;
4468 }
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004469 /* Unmark array members which don't belong to the 'fast' chip */
4470 if (array_info && array_info->chip != chip) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004471 __clear_bit(descs->ndescs, array_info->get_mask);
4472 __clear_bit(descs->ndescs, array_info->set_mask);
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004473 }
4474 /*
4475 * Detect array members which belong to the 'fast' chip
4476 * but their pins are not in hardware order.
4477 */
4478 else if (array_info &&
4479 gpio_chip_hwgpio(desc) != descs->ndescs) {
4480 /*
4481 * Don't use fast path if all array members processed so
4482 * far belong to the same chip as this one but its pin
4483 * hardware number is different from its array index.
4484 */
4485 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4486 array_info = NULL;
4487 } else {
4488 __clear_bit(descs->ndescs,
4489 array_info->get_mask);
4490 __clear_bit(descs->ndescs,
4491 array_info->set_mask);
4492 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004493 } else if (array_info) {
4494 /* Exclude open drain or open source from fast output */
4495 if (gpiochip_line_is_open_drain(chip, descs->ndescs) ||
4496 gpiochip_line_is_open_source(chip, descs->ndescs))
4497 __clear_bit(descs->ndescs,
4498 array_info->set_mask);
4499 /* Identify 'fast' pins which require invertion */
4500 if (gpiod_is_active_low(desc))
4501 __set_bit(descs->ndescs,
4502 array_info->invert_mask);
4503 }
4504
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004505 descs->ndescs++;
4506 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004507 if (array_info)
4508 dev_dbg(dev,
4509 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4510 array_info->chip->label, array_info->size,
4511 *array_info->get_mask, *array_info->set_mask,
4512 *array_info->invert_mask);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004513 return descs;
4514}
4515EXPORT_SYMBOL_GPL(gpiod_get_array);
4516
4517/**
4518 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4519 * function
4520 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4521 * @con_id: function within the GPIO consumer
4522 * @flags: optional GPIO initialization flags
4523 *
4524 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4525 * assigned to the requested function it will return NULL.
4526 */
4527struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4528 const char *con_id,
4529 enum gpiod_flags flags)
4530{
4531 struct gpio_descs *descs;
4532
4533 descs = gpiod_get_array(dev, con_id, flags);
4534 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
4535 return NULL;
4536
4537 return descs;
4538}
4539EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4540
4541/**
David Brownelld2876d02008-02-04 22:28:20 -08004542 * gpiod_put - dispose of a GPIO descriptor
4543 * @desc: GPIO descriptor to dispose of
4544 *
4545 * No descriptor can be used after gpiod_put() has been called on it.
4546 */
4547void gpiod_put(struct gpio_desc *desc)
4548{
4549 gpiod_free(desc);
4550}
4551EXPORT_SYMBOL_GPL(gpiod_put);
4552
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004553/**
4554 * gpiod_put_array - dispose of multiple GPIO descriptors
4555 * @descs: struct gpio_descs containing an array of descriptors
4556 */
4557void gpiod_put_array(struct gpio_descs *descs)
4558{
4559 unsigned int i;
4560
4561 for (i = 0; i < descs->ndescs; i++)
4562 gpiod_put(descs->desc[i]);
4563
4564 kfree(descs);
4565}
4566EXPORT_SYMBOL_GPL(gpiod_put_array);
4567
Linus Walleij3c702e92015-10-21 15:29:53 +02004568static int __init gpiolib_dev_init(void)
4569{
4570 int ret;
4571
4572 /* Register GPIO sysfs bus */
Andy Shevchenkob1911712018-07-03 03:39:03 +03004573 ret = bus_register(&gpio_bus_type);
Linus Walleij3c702e92015-10-21 15:29:53 +02004574 if (ret < 0) {
4575 pr_err("gpiolib: could not register GPIO bus type\n");
4576 return ret;
4577 }
4578
4579 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
4580 if (ret < 0) {
4581 pr_err("gpiolib: failed to allocate char dev region\n");
4582 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07004583 } else {
4584 gpiolib_initialized = true;
4585 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02004586 }
4587 return ret;
4588}
4589core_initcall(gpiolib_dev_init);
4590
David Brownelld2876d02008-02-04 22:28:20 -08004591#ifdef CONFIG_DEBUG_FS
4592
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004593static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08004594{
4595 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004596 struct gpio_chip *chip = gdev->chip;
4597 unsigned gpio = gdev->base;
4598 struct gpio_desc *gdesc = &gdev->descs[0];
Linus Walleij90fd2272018-10-01 23:06:17 +02004599 bool is_out;
4600 bool is_irq;
4601 bool active_low;
David Brownelld2876d02008-02-04 22:28:20 -08004602
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004603 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02004604 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4605 if (gdesc->name) {
4606 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4607 gpio, gdesc->name);
4608 }
David Brownelld2876d02008-02-04 22:28:20 -08004609 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02004610 }
David Brownelld2876d02008-02-04 22:28:20 -08004611
4612 gpiod_get_direction(gdesc);
4613 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
4614 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Linus Walleij90fd2272018-10-01 23:06:17 +02004615 active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags);
4616 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s",
Markus Pargmannced433e2015-08-14 16:11:02 +02004617 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08004618 is_out ? "out" : "in ",
Andy Shevchenko1c22a252018-07-12 20:36:42 +03004619 chip->get ? (chip->get(chip, i) ? "hi" : "lo") : "? ",
Linus Walleij90fd2272018-10-01 23:06:17 +02004620 is_irq ? "IRQ " : "",
4621 active_low ? "ACTIVE LOW" : "");
David Brownelld2876d02008-02-04 22:28:20 -08004622 seq_printf(s, "\n");
4623 }
4624}
4625
4626static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
4627{
4628 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004629 struct gpio_device *gdev = NULL;
David Brownelld2876d02008-02-04 22:28:20 -08004630 loff_t index = *pos;
4631
4632 s->private = "";
4633
4634 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004635 list_for_each_entry(gdev, &gpio_devices, list)
David Brownelld2876d02008-02-04 22:28:20 -08004636 if (index-- == 0) {
4637 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004638 return gdev;
David Brownelld2876d02008-02-04 22:28:20 -08004639 }
4640 spin_unlock_irqrestore(&gpio_lock, flags);
4641
4642 return NULL;
4643}
4644
4645static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4646{
4647 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004648 struct gpio_device *gdev = v;
David Brownelld2876d02008-02-04 22:28:20 -08004649 void *ret = NULL;
4650
4651 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004652 if (list_is_last(&gdev->list, &gpio_devices))
David Brownelld2876d02008-02-04 22:28:20 -08004653 ret = NULL;
4654 else
Linus Walleijff2b1352015-10-20 11:10:38 +02004655 ret = list_entry(gdev->list.next, struct gpio_device, list);
David Brownelld2876d02008-02-04 22:28:20 -08004656 spin_unlock_irqrestore(&gpio_lock, flags);
4657
4658 s->private = "\n";
4659 ++*pos;
4660
4661 return ret;
4662}
4663
4664static void gpiolib_seq_stop(struct seq_file *s, void *v)
4665{
4666}
4667
4668static int gpiolib_seq_show(struct seq_file *s, void *v)
4669{
Linus Walleijff2b1352015-10-20 11:10:38 +02004670 struct gpio_device *gdev = v;
4671 struct gpio_chip *chip = gdev->chip;
4672 struct device *parent;
David Brownelld2876d02008-02-04 22:28:20 -08004673
Linus Walleijff2b1352015-10-20 11:10:38 +02004674 if (!chip) {
4675 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4676 dev_name(&gdev->dev));
4677 return 0;
4678 }
4679
4680 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4681 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004682 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02004683 parent = chip->parent;
4684 if (parent)
4685 seq_printf(s, ", parent: %s/%s",
4686 parent->bus ? parent->bus->name : "no-bus",
4687 dev_name(parent));
David Brownelld2876d02008-02-04 22:28:20 -08004688 if (chip->label)
4689 seq_printf(s, ", %s", chip->label);
4690 if (chip->can_sleep)
4691 seq_printf(s, ", can sleep");
4692 seq_printf(s, ":\n");
4693
4694 if (chip->dbg_show)
4695 chip->dbg_show(s, chip);
4696 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004697 gpiolib_dbg_show(s, gdev);
David Brownelld2876d02008-02-04 22:28:20 -08004698
4699 return 0;
4700}
4701
4702static const struct seq_operations gpiolib_seq_ops = {
4703 .start = gpiolib_seq_start,
4704 .next = gpiolib_seq_next,
4705 .stop = gpiolib_seq_stop,
4706 .show = gpiolib_seq_show,
4707};
4708
4709static int gpiolib_open(struct inode *inode, struct file *file)
4710{
4711 return seq_open(file, &gpiolib_seq_ops);
4712}
4713
4714static const struct file_operations gpiolib_operations = {
4715 .owner = THIS_MODULE,
4716 .open = gpiolib_open,
4717 .read = seq_read,
4718 .llseek = seq_lseek,
4719 .release = seq_release,
4720};
4721
4722static int __init gpiolib_debugfs_init(void)
4723{
4724 /* /sys/kernel/debug/gpio */
4725 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
4726 NULL, NULL, &gpiolib_operations);
4727 return 0;
4728}
4729subsys_initcall(gpiolib_debugfs_init);
4730
4731#endif /* DEBUG_FS */