blob: 9568708a550b55b79824784270f98b3260a6f70f [file] [log] [blame]
Andy Shevchenko923a6542017-05-25 16:08:38 +03001#include <linux/bitmap.h>
David Brownelld2876d02008-02-04 22:28:20 -08002#include <linux/kernel.h>
3#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07004#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08005#include <linux/irq.h>
6#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09007#include <linux/list.h>
David Brownelld8f388d82008-07-25 01:46:07 -07008#include <linux/device.h>
9#include <linux/err.h>
10#include <linux/debugfs.h>
11#include <linux/seq_file.h>
12#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060013#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070014#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010016#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090017#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020018#include <linux/gpio/machine.h>
Jonas Gorskic771c2f2015-10-11 17:34:15 +020019#include <linux/pinctrl/consumer.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020020#include <linux/cdev.h>
21#include <linux/fs.h>
22#include <linux/uaccess.h>
Linus Walleij8b92e172016-05-27 14:24:04 +020023#include <linux/compat.h>
Linus Walleijd7c51b42016-04-26 10:35:29 +020024#include <linux/anon_inodes.h>
Lars-Peter Clausen953b9562016-10-24 13:59:15 +020025#include <linux/file.h>
Linus Walleij61f922d2016-06-02 11:30:15 +020026#include <linux/kfifo.h>
27#include <linux/poll.h>
28#include <linux/timekeeping.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020029#include <uapi/linux/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080030
Mika Westerberg664e3e52014-01-08 12:40:54 +020031#include "gpiolib.h"
32
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060033#define CREATE_TRACE_POINTS
34#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080035
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070036/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080037 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070038 * The GPIO programming interface allows for inlining speed-critical
39 * get/set operations for common cases, so that access to SOC-integrated
40 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080041 */
42
43
44/* When debugging, extend minimal trust to callers and platform code.
45 * Also emit diagnostic messages that may help initial bringup, when
46 * board setup or driver bugs are most common.
47 *
48 * Otherwise, minimize overhead in what may be bitbanging codepaths.
49 */
50#ifdef DEBUG
51#define extra_checks 1
52#else
53#define extra_checks 0
54#endif
55
Linus Walleijff2b1352015-10-20 11:10:38 +020056/* Device and char device-related information */
57static DEFINE_IDA(gpio_ida);
Linus Walleij3c702e92015-10-21 15:29:53 +020058static dev_t gpio_devt;
59#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
60static struct bus_type gpio_bus_type = {
61 .name = "gpio",
62};
Linus Walleijff2b1352015-10-20 11:10:38 +020063
David Brownelld2876d02008-02-04 22:28:20 -080064/* gpio_lock prevents conflicts during gpio_desc[] table updates.
65 * While any GPIO is requested, its gpio_chip is not removable;
66 * each GPIO's "requested" flag serves as a lock and refcount.
67 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090068DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080069
Alexandre Courbotbae48da2013-10-17 10:21:38 -070070static DEFINE_MUTEX(gpio_lookup_lock);
71static LIST_HEAD(gpio_lookup_list);
Linus Walleijff2b1352015-10-20 11:10:38 +020072LIST_HEAD(gpio_devices);
Johan Hovold6d867502015-05-04 17:23:25 +020073
74static void gpiochip_free_hogs(struct gpio_chip *chip);
75static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
Mika Westerberg79b804c2016-09-20 15:15:21 +030076static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
77static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
Johan Hovold6d867502015-05-04 17:23:25 +020078
Guenter Roeck159f3cd2016-03-31 08:11:30 -070079static bool gpiolib_initialized;
Johan Hovold6d867502015-05-04 17:23:25 +020080
David Brownelld2876d02008-02-04 22:28:20 -080081static inline void desc_set_label(struct gpio_desc *d, const char *label)
82{
David Brownelld2876d02008-02-04 22:28:20 -080083 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080084}
85
Alexandre Courbot372e7222013-02-03 01:29:29 +090086/**
87 * Convert a GPIO number to its descriptor
88 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070089struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090090{
Linus Walleijff2b1352015-10-20 11:10:38 +020091 struct gpio_device *gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +090092 unsigned long flags;
93
94 spin_lock_irqsave(&gpio_lock, flags);
95
Linus Walleijff2b1352015-10-20 11:10:38 +020096 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +010097 if (gdev->base <= gpio &&
98 gdev->base + gdev->ngpio > gpio) {
Alexandre Courbot14e85c02014-11-19 16:51:27 +090099 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100100 return &gdev->descs[gpio - gdev->base];
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900101 }
102 }
103
104 spin_unlock_irqrestore(&gpio_lock, flags);
105
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +0900106 if (!gpio_is_valid(gpio))
107 WARN(1, "invalid GPIO %d\n", gpio);
108
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900109 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900110}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700111EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900112
113/**
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900114 * Get the GPIO descriptor corresponding to the given hw number for this chip.
Linus Walleijd468bf92013-09-24 11:54:38 +0200115 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900116struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
117 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +0200118{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100119 struct gpio_device *gdev = chip->gpiodev;
120
121 if (hwnum >= gdev->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +0900122 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +0200123
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100124 return &gdev->descs[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200125}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900126
127/**
128 * Convert a GPIO descriptor to the integer namespace.
129 * This should disappear in the future but is needed since we still
130 * use GPIO numbers for error messages and sysfs nodes
131 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700132int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900133{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100134 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900135}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700136EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900137
138
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700139/**
140 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
141 * @desc: descriptor to return the chip of
142 */
143struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900144{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100145 if (!desc || !desc->gdev || !desc->gdev->chip)
146 return NULL;
147 return desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900148}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700149EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800150
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700151/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
152static int gpiochip_find_base(int ngpio)
153{
Linus Walleijff2b1352015-10-20 11:10:38 +0200154 struct gpio_device *gdev;
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900155 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700156
Linus Walleijff2b1352015-10-20 11:10:38 +0200157 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900158 /* found a free space? */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100159 if (gdev->base + gdev->ngpio <= base)
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900160 break;
161 else
162 /* nope, check the space right before the chip */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100163 base = gdev->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700164 }
165
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900166 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700167 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900168 return base;
169 } else {
170 pr_err("%s: cannot find free range\n", __func__);
171 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700172 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700173}
174
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700175/**
176 * gpiod_get_direction - return the current direction of a GPIO
177 * @desc: GPIO to get the direction of
178 *
179 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
180 *
181 * This function may sleep if gpiod_cansleep() is true.
182 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900183int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300184{
185 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900186 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300187 int status = -EINVAL;
188
Alexandre Courbot372e7222013-02-03 01:29:29 +0900189 chip = gpiod_to_chip(desc);
190 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300191
192 if (!chip->get_direction)
193 return status;
194
Alexandre Courbot372e7222013-02-03 01:29:29 +0900195 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300196 if (status > 0) {
197 /* GPIOF_DIR_IN, or other positive */
198 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900199 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300200 }
201 if (status == 0) {
202 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900203 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300204 }
205 return status;
206}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700207EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300208
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900209/*
210 * Add a new chip to the global chips list, keeping the list of chips sorted
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800211 * by range(means [base, base + ngpio - 1]) order.
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900212 *
213 * Return -EBUSY if the new chip overlaps with some other chip's integer
214 * space.
215 */
Linus Walleijff2b1352015-10-20 11:10:38 +0200216static int gpiodev_add_to_list(struct gpio_device *gdev)
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900217{
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800218 struct gpio_device *prev, *next;
Linus Walleijff2b1352015-10-20 11:10:38 +0200219
220 if (list_empty(&gpio_devices)) {
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800221 /* initial entry in list */
Linus Walleijff2b1352015-10-20 11:10:38 +0200222 list_add_tail(&gdev->list, &gpio_devices);
Sudip Mukherjeee28ecca2015-12-27 19:06:50 +0530223 return 0;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900224 }
225
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800226 next = list_entry(gpio_devices.next, struct gpio_device, list);
227 if (gdev->base + gdev->ngpio <= next->base) {
228 /* add before first entry */
229 list_add(&gdev->list, &gpio_devices);
Julien Grossholtz96098df2016-01-07 16:46:45 -0500230 return 0;
231 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900232
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800233 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
234 if (prev->base + prev->ngpio <= gdev->base) {
235 /* add behind last entry */
236 list_add_tail(&gdev->list, &gpio_devices);
237 return 0;
238 }
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800239
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800240 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
241 /* at the end of the list */
242 if (&next->list == &gpio_devices)
243 break;
244
245 /* add between prev and next */
246 if (prev->base + prev->ngpio <= gdev->base
247 && gdev->base + gdev->ngpio <= next->base) {
248 list_add(&gdev->list, &prev->list);
249 return 0;
250 }
251 }
252
253 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
254 return -EBUSY;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900255}
256
Linus Walleijf881bab2015-09-23 16:20:43 -0700257/**
258 * Convert a GPIO name to its descriptor
259 */
260static struct gpio_desc *gpio_name_to_desc(const char * const name)
261{
Linus Walleijff2b1352015-10-20 11:10:38 +0200262 struct gpio_device *gdev;
Linus Walleijf881bab2015-09-23 16:20:43 -0700263 unsigned long flags;
264
265 spin_lock_irqsave(&gpio_lock, flags);
266
Linus Walleijff2b1352015-10-20 11:10:38 +0200267 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijf881bab2015-09-23 16:20:43 -0700268 int i;
269
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100270 for (i = 0; i != gdev->ngpio; ++i) {
271 struct gpio_desc *desc = &gdev->descs[i];
Linus Walleijf881bab2015-09-23 16:20:43 -0700272
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100273 if (!desc->name || !name)
Linus Walleijf881bab2015-09-23 16:20:43 -0700274 continue;
275
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100276 if (!strcmp(desc->name, name)) {
Linus Walleijf881bab2015-09-23 16:20:43 -0700277 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100278 return desc;
Linus Walleijf881bab2015-09-23 16:20:43 -0700279 }
280 }
281 }
282
283 spin_unlock_irqrestore(&gpio_lock, flags);
284
285 return NULL;
286}
287
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200288/*
289 * Takes the names from gc->names and checks if they are all unique. If they
290 * are, they are assigned to their gpio descriptors.
291 *
Bamvor Jian Zhanged379152015-11-14 16:43:20 +0800292 * Warning if one of the names is already used for a different GPIO.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200293 */
294static int gpiochip_set_desc_names(struct gpio_chip *gc)
295{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100296 struct gpio_device *gdev = gc->gpiodev;
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200297 int i;
298
299 if (!gc->names)
300 return 0;
301
302 /* First check all names if they are unique */
303 for (i = 0; i != gc->ngpio; ++i) {
304 struct gpio_desc *gpio;
305
306 gpio = gpio_name_to_desc(gc->names[i]);
Linus Walleijf881bab2015-09-23 16:20:43 -0700307 if (gpio)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100308 dev_warn(&gdev->dev,
Linus Walleij34ffd852015-10-20 11:31:54 +0200309 "Detected name collision for GPIO name '%s'\n",
Linus Walleijf881bab2015-09-23 16:20:43 -0700310 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200311 }
312
313 /* Then add all names to the GPIO descriptors */
314 for (i = 0; i != gc->ngpio; ++i)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100315 gdev->descs[i].name = gc->names[i];
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200316
317 return 0;
318}
319
Linus Walleijd7c51b42016-04-26 10:35:29 +0200320/*
321 * GPIO line handle management
322 */
323
324/**
325 * struct linehandle_state - contains the state of a userspace handle
326 * @gdev: the GPIO device the handle pertains to
327 * @label: consumer label used to tag descriptors
328 * @descs: the GPIO descriptors held by this handle
329 * @numdescs: the number of descriptors held in the descs array
330 */
331struct linehandle_state {
332 struct gpio_device *gdev;
333 const char *label;
334 struct gpio_desc *descs[GPIOHANDLES_MAX];
335 u32 numdescs;
336};
337
Lars-Peter Clausene3e847c2016-10-18 16:54:05 +0200338#define GPIOHANDLE_REQUEST_VALID_FLAGS \
339 (GPIOHANDLE_REQUEST_INPUT | \
340 GPIOHANDLE_REQUEST_OUTPUT | \
341 GPIOHANDLE_REQUEST_ACTIVE_LOW | \
342 GPIOHANDLE_REQUEST_OPEN_DRAIN | \
343 GPIOHANDLE_REQUEST_OPEN_SOURCE)
344
Linus Walleijd7c51b42016-04-26 10:35:29 +0200345static long linehandle_ioctl(struct file *filep, unsigned int cmd,
346 unsigned long arg)
347{
348 struct linehandle_state *lh = filep->private_data;
349 void __user *ip = (void __user *)arg;
350 struct gpiohandle_data ghd;
351 int i;
352
353 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
354 int val;
355
Lars-Peter Clausen3eded5d2016-10-18 16:54:02 +0200356 memset(&ghd, 0, sizeof(ghd));
357
Linus Walleijd7c51b42016-04-26 10:35:29 +0200358 /* TODO: check if descriptors are really input */
359 for (i = 0; i < lh->numdescs; i++) {
360 val = gpiod_get_value_cansleep(lh->descs[i]);
361 if (val < 0)
362 return val;
363 ghd.values[i] = val;
364 }
365
366 if (copy_to_user(ip, &ghd, sizeof(ghd)))
367 return -EFAULT;
368
369 return 0;
370 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
371 int vals[GPIOHANDLES_MAX];
372
373 /* TODO: check if descriptors are really output */
374 if (copy_from_user(&ghd, ip, sizeof(ghd)))
375 return -EFAULT;
376
377 /* Clamp all values to [0,1] */
378 for (i = 0; i < lh->numdescs; i++)
379 vals[i] = !!ghd.values[i];
380
381 /* Reuse the array setting function */
382 gpiod_set_array_value_complex(false,
383 true,
384 lh->numdescs,
385 lh->descs,
386 vals);
387 return 0;
388 }
389 return -EINVAL;
390}
391
392#ifdef CONFIG_COMPAT
393static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
394 unsigned long arg)
395{
396 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
397}
398#endif
399
400static int linehandle_release(struct inode *inode, struct file *filep)
401{
402 struct linehandle_state *lh = filep->private_data;
403 struct gpio_device *gdev = lh->gdev;
404 int i;
405
406 for (i = 0; i < lh->numdescs; i++)
407 gpiod_free(lh->descs[i]);
408 kfree(lh->label);
409 kfree(lh);
410 put_device(&gdev->dev);
411 return 0;
412}
413
414static const struct file_operations linehandle_fileops = {
415 .release = linehandle_release,
416 .owner = THIS_MODULE,
417 .llseek = noop_llseek,
418 .unlocked_ioctl = linehandle_ioctl,
419#ifdef CONFIG_COMPAT
420 .compat_ioctl = linehandle_ioctl_compat,
421#endif
422};
423
424static int linehandle_create(struct gpio_device *gdev, void __user *ip)
425{
426 struct gpiohandle_request handlereq;
427 struct linehandle_state *lh;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200428 struct file *file;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200429 int fd, i, ret;
430
431 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
432 return -EFAULT;
433 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
434 return -EINVAL;
435
436 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
437 if (!lh)
438 return -ENOMEM;
439 lh->gdev = gdev;
440 get_device(&gdev->dev);
441
442 /* Make sure this is terminated */
443 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
444 if (strlen(handlereq.consumer_label)) {
445 lh->label = kstrdup(handlereq.consumer_label,
446 GFP_KERNEL);
447 if (!lh->label) {
448 ret = -ENOMEM;
449 goto out_free_lh;
450 }
451 }
452
453 /* Request each GPIO */
454 for (i = 0; i < handlereq.lines; i++) {
455 u32 offset = handlereq.lineoffsets[i];
456 u32 lflags = handlereq.flags;
457 struct gpio_desc *desc;
458
Lars-Peter Clausene405f9f2016-10-18 16:54:01 +0200459 if (offset >= gdev->ngpio) {
460 ret = -EINVAL;
461 goto out_free_descs;
462 }
463
Lars-Peter Clausene3e847c2016-10-18 16:54:05 +0200464 /* Return an error if a unknown flag is set */
465 if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) {
466 ret = -EINVAL;
467 goto out_free_descs;
468 }
469
Linus Walleijd7c51b42016-04-26 10:35:29 +0200470 desc = &gdev->descs[offset];
471 ret = gpiod_request(desc, lh->label);
472 if (ret)
473 goto out_free_descs;
474 lh->descs[i] = desc;
475
476 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
477 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
478 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
479 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
480 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
481 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
482
483 /*
484 * Lines have to be requested explicitly for input
485 * or output, else the line will be treated "as is".
486 */
487 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
488 int val = !!handlereq.default_values[i];
489
490 ret = gpiod_direction_output(desc, val);
491 if (ret)
492 goto out_free_descs;
493 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
494 ret = gpiod_direction_input(desc);
495 if (ret)
496 goto out_free_descs;
497 }
498 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
499 offset);
500 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200501 /* Let i point at the last handle */
502 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200503 lh->numdescs = handlereq.lines;
504
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200505 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200506 if (fd < 0) {
507 ret = fd;
508 goto out_free_descs;
509 }
510
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200511 file = anon_inode_getfile("gpio-linehandle",
512 &linehandle_fileops,
513 lh,
514 O_RDONLY | O_CLOEXEC);
515 if (IS_ERR(file)) {
516 ret = PTR_ERR(file);
517 goto out_put_unused_fd;
518 }
519
Linus Walleijd7c51b42016-04-26 10:35:29 +0200520 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200521 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200522 /*
523 * fput() will trigger the release() callback, so do not go onto
524 * the regular error cleanup path here.
525 */
526 fput(file);
527 put_unused_fd(fd);
528 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200529 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200530
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200531 fd_install(fd, file);
532
Linus Walleijd7c51b42016-04-26 10:35:29 +0200533 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
534 lh->numdescs);
535
536 return 0;
537
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200538out_put_unused_fd:
539 put_unused_fd(fd);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200540out_free_descs:
541 for (; i >= 0; i--)
542 gpiod_free(lh->descs[i]);
543 kfree(lh->label);
544out_free_lh:
545 kfree(lh);
546 put_device(&gdev->dev);
547 return ret;
548}
549
Linus Walleij61f922d2016-06-02 11:30:15 +0200550/*
551 * GPIO line event management
552 */
553
554/**
555 * struct lineevent_state - contains the state of a userspace event
556 * @gdev: the GPIO device the event pertains to
557 * @label: consumer label used to tag descriptors
558 * @desc: the GPIO descriptor held by this event
559 * @eflags: the event flags this line was requested with
560 * @irq: the interrupt that trigger in response to events on this GPIO
561 * @wait: wait queue that handles blocking reads of events
562 * @events: KFIFO for the GPIO events
563 * @read_lock: mutex lock to protect reads from colliding with adding
564 * new events to the FIFO
565 */
566struct lineevent_state {
567 struct gpio_device *gdev;
568 const char *label;
569 struct gpio_desc *desc;
570 u32 eflags;
571 int irq;
572 wait_queue_head_t wait;
573 DECLARE_KFIFO(events, struct gpioevent_data, 16);
574 struct mutex read_lock;
575};
576
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200577#define GPIOEVENT_REQUEST_VALID_FLAGS \
578 (GPIOEVENT_REQUEST_RISING_EDGE | \
579 GPIOEVENT_REQUEST_FALLING_EDGE)
580
Linus Walleij61f922d2016-06-02 11:30:15 +0200581static unsigned int lineevent_poll(struct file *filep,
582 struct poll_table_struct *wait)
583{
584 struct lineevent_state *le = filep->private_data;
585 unsigned int events = 0;
586
587 poll_wait(filep, &le->wait, wait);
588
589 if (!kfifo_is_empty(&le->events))
590 events = POLLIN | POLLRDNORM;
591
592 return events;
593}
594
595
596static ssize_t lineevent_read(struct file *filep,
597 char __user *buf,
598 size_t count,
599 loff_t *f_ps)
600{
601 struct lineevent_state *le = filep->private_data;
602 unsigned int copied;
603 int ret;
604
605 if (count < sizeof(struct gpioevent_data))
606 return -EINVAL;
607
608 do {
609 if (kfifo_is_empty(&le->events)) {
610 if (filep->f_flags & O_NONBLOCK)
611 return -EAGAIN;
612
613 ret = wait_event_interruptible(le->wait,
614 !kfifo_is_empty(&le->events));
615 if (ret)
616 return ret;
617 }
618
619 if (mutex_lock_interruptible(&le->read_lock))
620 return -ERESTARTSYS;
621 ret = kfifo_to_user(&le->events, buf, count, &copied);
622 mutex_unlock(&le->read_lock);
623
624 if (ret)
625 return ret;
626
627 /*
628 * If we couldn't read anything from the fifo (a different
629 * thread might have been faster) we either return -EAGAIN if
630 * the file descriptor is non-blocking, otherwise we go back to
631 * sleep and wait for more data to arrive.
632 */
633 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
634 return -EAGAIN;
635
636 } while (copied == 0);
637
638 return copied;
639}
640
641static int lineevent_release(struct inode *inode, struct file *filep)
642{
643 struct lineevent_state *le = filep->private_data;
644 struct gpio_device *gdev = le->gdev;
645
646 free_irq(le->irq, le);
647 gpiod_free(le->desc);
648 kfree(le->label);
649 kfree(le);
650 put_device(&gdev->dev);
651 return 0;
652}
653
654static long lineevent_ioctl(struct file *filep, unsigned int cmd,
655 unsigned long arg)
656{
657 struct lineevent_state *le = filep->private_data;
658 void __user *ip = (void __user *)arg;
659 struct gpiohandle_data ghd;
660
661 /*
662 * We can get the value for an event line but not set it,
663 * because it is input by definition.
664 */
665 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
666 int val;
667
Lars-Peter Clausend82aa4a2016-10-18 16:54:04 +0200668 memset(&ghd, 0, sizeof(ghd));
669
Linus Walleij61f922d2016-06-02 11:30:15 +0200670 val = gpiod_get_value_cansleep(le->desc);
671 if (val < 0)
672 return val;
673 ghd.values[0] = val;
674
675 if (copy_to_user(ip, &ghd, sizeof(ghd)))
676 return -EFAULT;
677
678 return 0;
679 }
680 return -EINVAL;
681}
682
683#ifdef CONFIG_COMPAT
684static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
685 unsigned long arg)
686{
687 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
688}
689#endif
690
691static const struct file_operations lineevent_fileops = {
692 .release = lineevent_release,
693 .read = lineevent_read,
694 .poll = lineevent_poll,
695 .owner = THIS_MODULE,
696 .llseek = noop_llseek,
697 .unlocked_ioctl = lineevent_ioctl,
698#ifdef CONFIG_COMPAT
699 .compat_ioctl = lineevent_ioctl_compat,
700#endif
701};
702
Ben Dooks33265b12016-06-17 16:03:13 +0100703static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200704{
705 struct lineevent_state *le = p;
706 struct gpioevent_data ge;
707 int ret;
708
709 ge.timestamp = ktime_get_real_ns();
710
Bartosz Golaszewskiad537b82017-06-23 13:45:16 +0200711 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
712 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200713 int level = gpiod_get_value_cansleep(le->desc);
714
715 if (level)
716 /* Emit low-to-high event */
717 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
718 else
719 /* Emit high-to-low event */
720 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
721 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
722 /* Emit low-to-high event */
723 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
724 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
725 /* Emit high-to-low event */
726 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200727 } else {
728 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200729 }
730
731 ret = kfifo_put(&le->events, ge);
732 if (ret != 0)
733 wake_up_poll(&le->wait, POLLIN);
734
735 return IRQ_HANDLED;
736}
737
738static int lineevent_create(struct gpio_device *gdev, void __user *ip)
739{
740 struct gpioevent_request eventreq;
741 struct lineevent_state *le;
742 struct gpio_desc *desc;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200743 struct file *file;
Linus Walleij61f922d2016-06-02 11:30:15 +0200744 u32 offset;
745 u32 lflags;
746 u32 eflags;
747 int fd;
748 int ret;
749 int irqflags = 0;
750
751 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
752 return -EFAULT;
753
754 le = kzalloc(sizeof(*le), GFP_KERNEL);
755 if (!le)
756 return -ENOMEM;
757 le->gdev = gdev;
758 get_device(&gdev->dev);
759
760 /* Make sure this is terminated */
761 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
762 if (strlen(eventreq.consumer_label)) {
763 le->label = kstrdup(eventreq.consumer_label,
764 GFP_KERNEL);
765 if (!le->label) {
766 ret = -ENOMEM;
767 goto out_free_le;
768 }
769 }
770
771 offset = eventreq.lineoffset;
772 lflags = eventreq.handleflags;
773 eflags = eventreq.eventflags;
774
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200775 if (offset >= gdev->ngpio) {
776 ret = -EINVAL;
777 goto out_free_label;
778 }
779
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200780 /* Return an error if a unknown flag is set */
781 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
782 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
783 ret = -EINVAL;
784 goto out_free_label;
785 }
786
Linus Walleij61f922d2016-06-02 11:30:15 +0200787 /* This is just wrong: we don't look for events on output lines */
788 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
789 ret = -EINVAL;
790 goto out_free_label;
791 }
792
793 desc = &gdev->descs[offset];
794 ret = gpiod_request(desc, le->label);
795 if (ret)
796 goto out_free_desc;
797 le->desc = desc;
798 le->eflags = eflags;
799
800 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
801 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
802 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
803 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
804 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
805 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
806
807 ret = gpiod_direction_input(desc);
808 if (ret)
809 goto out_free_desc;
810
811 le->irq = gpiod_to_irq(desc);
812 if (le->irq <= 0) {
813 ret = -ENODEV;
814 goto out_free_desc;
815 }
816
817 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
818 irqflags |= IRQF_TRIGGER_RISING;
819 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
820 irqflags |= IRQF_TRIGGER_FALLING;
821 irqflags |= IRQF_ONESHOT;
822 irqflags |= IRQF_SHARED;
823
824 INIT_KFIFO(le->events);
825 init_waitqueue_head(&le->wait);
826 mutex_init(&le->read_lock);
827
828 /* Request a thread to read the events */
829 ret = request_threaded_irq(le->irq,
830 NULL,
831 lineevent_irq_thread,
832 irqflags,
833 le->label,
834 le);
835 if (ret)
836 goto out_free_desc;
837
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200838 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleij61f922d2016-06-02 11:30:15 +0200839 if (fd < 0) {
840 ret = fd;
841 goto out_free_irq;
842 }
843
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200844 file = anon_inode_getfile("gpio-event",
845 &lineevent_fileops,
846 le,
847 O_RDONLY | O_CLOEXEC);
848 if (IS_ERR(file)) {
849 ret = PTR_ERR(file);
850 goto out_put_unused_fd;
851 }
852
Linus Walleij61f922d2016-06-02 11:30:15 +0200853 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200854 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200855 /*
856 * fput() will trigger the release() callback, so do not go onto
857 * the regular error cleanup path here.
858 */
859 fput(file);
860 put_unused_fd(fd);
861 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200862 }
Linus Walleij61f922d2016-06-02 11:30:15 +0200863
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200864 fd_install(fd, file);
865
Linus Walleij61f922d2016-06-02 11:30:15 +0200866 return 0;
867
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200868out_put_unused_fd:
869 put_unused_fd(fd);
Linus Walleij61f922d2016-06-02 11:30:15 +0200870out_free_irq:
871 free_irq(le->irq, le);
872out_free_desc:
873 gpiod_free(le->desc);
874out_free_label:
875 kfree(le->label);
876out_free_le:
877 kfree(le);
878 put_device(&gdev->dev);
879 return ret;
880}
881
Linus Walleij3c702e92015-10-21 15:29:53 +0200882/**
883 * gpio_ioctl() - ioctl handler for the GPIO chardev
884 */
885static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
886{
887 struct gpio_device *gdev = filp->private_data;
888 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +0200889 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +0200890
891 /* We fail any subsequent ioctl():s when the chip is gone */
892 if (!chip)
893 return -ENODEV;
894
Linus Walleij521a2ad2016-02-12 22:25:22 +0100895 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +0200896 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +0100897 struct gpiochip_info chipinfo;
898
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +0200899 memset(&chipinfo, 0, sizeof(chipinfo));
900
Linus Walleij3c702e92015-10-21 15:29:53 +0200901 strncpy(chipinfo.name, dev_name(&gdev->dev),
902 sizeof(chipinfo.name));
903 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +0100904 strncpy(chipinfo.label, gdev->label,
905 sizeof(chipinfo.label));
906 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100907 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +0200908 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
909 return -EFAULT;
910 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +0100911 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
912 struct gpioline_info lineinfo;
913 struct gpio_desc *desc;
914
915 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
916 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +0200917 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +0100918 return -EINVAL;
919
920 desc = &gdev->descs[lineinfo.line_offset];
921 if (desc->name) {
922 strncpy(lineinfo.name, desc->name,
923 sizeof(lineinfo.name));
924 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
925 } else {
926 lineinfo.name[0] = '\0';
927 }
928 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +0100929 strncpy(lineinfo.consumer, desc->label,
930 sizeof(lineinfo.consumer));
931 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100932 } else {
Linus Walleij214338e2016-02-25 21:01:48 +0100933 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100934 }
935
936 /*
937 * Userspace only need to know that the kernel is using
938 * this GPIO so it can't use it.
939 */
940 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100941 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
942 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
943 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
944 test_bit(FLAG_EXPORT, &desc->flags) ||
945 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100946 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100947 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100948 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100949 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100950 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100951 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100952 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100953 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100954 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
955
956 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
957 return -EFAULT;
958 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200959 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
960 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +0200961 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
962 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +0200963 }
964 return -EINVAL;
965}
966
Linus Walleij8b92e172016-05-27 14:24:04 +0200967#ifdef CONFIG_COMPAT
968static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
969 unsigned long arg)
970{
971 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
972}
973#endif
974
Linus Walleij3c702e92015-10-21 15:29:53 +0200975/**
976 * gpio_chrdev_open() - open the chardev for ioctl operations
977 * @inode: inode for this chardev
978 * @filp: file struct for storing private data
979 * Returns 0 on success
980 */
981static int gpio_chrdev_open(struct inode *inode, struct file *filp)
982{
983 struct gpio_device *gdev = container_of(inode->i_cdev,
984 struct gpio_device, chrdev);
985
986 /* Fail on open if the backing gpiochip is gone */
Stephen Boydfb505742017-01-09 11:47:44 -0800987 if (!gdev->chip)
Linus Walleij3c702e92015-10-21 15:29:53 +0200988 return -ENODEV;
989 get_device(&gdev->dev);
990 filp->private_data = gdev;
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +0100991
992 return nonseekable_open(inode, filp);
Linus Walleij3c702e92015-10-21 15:29:53 +0200993}
994
995/**
996 * gpio_chrdev_release() - close chardev after ioctl operations
997 * @inode: inode for this chardev
998 * @filp: file struct for storing private data
999 * Returns 0 on success
1000 */
1001static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1002{
1003 struct gpio_device *gdev = container_of(inode->i_cdev,
1004 struct gpio_device, chrdev);
1005
Linus Walleij3c702e92015-10-21 15:29:53 +02001006 put_device(&gdev->dev);
1007 return 0;
1008}
1009
1010
1011static const struct file_operations gpio_fileops = {
1012 .release = gpio_chrdev_release,
1013 .open = gpio_chrdev_open,
1014 .owner = THIS_MODULE,
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001015 .llseek = no_llseek,
Linus Walleij3c702e92015-10-21 15:29:53 +02001016 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +02001017#ifdef CONFIG_COMPAT
1018 .compat_ioctl = gpio_ioctl_compat,
1019#endif
Linus Walleij3c702e92015-10-21 15:29:53 +02001020};
1021
Linus Walleijff2b1352015-10-20 11:10:38 +02001022static void gpiodevice_release(struct device *dev)
1023{
1024 struct gpio_device *gdev = dev_get_drvdata(dev);
1025
1026 list_del(&gdev->list);
1027 ida_simple_remove(&gpio_ida, gdev->id);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001028 kfree(gdev->label);
1029 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +01001030 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001031}
1032
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001033static int gpiochip_setup_dev(struct gpio_device *gdev)
1034{
1035 int status;
1036
1037 cdev_init(&gdev->chrdev, &gpio_fileops);
1038 gdev->chrdev.owner = THIS_MODULE;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001039 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001040
1041 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001042 if (status)
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001043 return status;
1044
1045 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1046 MAJOR(gpio_devt), gdev->id);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001047
1048 status = gpiochip_sysfs_register(gdev);
1049 if (status)
1050 goto err_remove_device;
1051
1052 /* From this point, the .release() function cleans up gpio_device */
1053 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001054 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1055 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1056 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1057
1058 return 0;
1059
1060err_remove_device:
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001061 cdev_device_del(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001062 return status;
1063}
1064
1065static void gpiochip_setup_devs(void)
1066{
1067 struct gpio_device *gdev;
1068 int err;
1069
1070 list_for_each_entry(gdev, &gpio_devices, list) {
1071 err = gpiochip_setup_dev(gdev);
1072 if (err)
1073 pr_err("%s: Failed to initialize gpio device (%d)\n",
1074 dev_name(&gdev->dev), err);
1075 }
1076}
1077
Anton Vorontsov169b6a72008-04-28 02:14:47 -07001078/**
Linus Walleijb08ea352015-12-03 15:14:13 +01001079 * gpiochip_add_data() - register a gpio_chip
David Brownelld2876d02008-02-04 22:28:20 -08001080 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001081 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -08001082 *
1083 * Returns a negative errno if the chip can't be registered, such as
1084 * because the chip->base is invalid or already associated with a
1085 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001086 *
Linus Walleijb08ea352015-12-03 15:14:13 +01001087 * When gpiochip_add_data() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001088 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d82008-07-25 01:46:07 -07001089 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1090 * for GPIOs will fail rudely.
1091 *
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001092 * gpiochip_add_data() must only be called after gpiolib initialization,
1093 * ie after core_initcall().
1094 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001095 * If chip->base is negative, this requests dynamic assignment of
1096 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001097 */
Linus Walleijb08ea352015-12-03 15:14:13 +01001098int gpiochip_add_data(struct gpio_chip *chip, void *data)
David Brownelld2876d02008-02-04 22:28:20 -08001099{
1100 unsigned long flags;
1101 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001102 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001103 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001104 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001105
Linus Walleijff2b1352015-10-20 11:10:38 +02001106 /*
1107 * First: allocate and populate the internal stat container, and
1108 * set up the struct device.
1109 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001110 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001111 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001112 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001113 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001114 gdev->chip = chip;
1115 chip->gpiodev = gdev;
1116 if (chip->parent) {
1117 gdev->dev.parent = chip->parent;
1118 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001119 }
1120
Linus Walleijff2b1352015-10-20 11:10:38 +02001121#ifdef CONFIG_OF_GPIO
1122 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001123 if (chip->of_node)
1124 gdev->dev.of_node = chip->of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001125#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001126
Linus Walleijff2b1352015-10-20 11:10:38 +02001127 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1128 if (gdev->id < 0) {
1129 status = gdev->id;
1130 goto err_free_gdev;
1131 }
1132 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1133 device_initialize(&gdev->dev);
1134 dev_set_drvdata(&gdev->dev, gdev);
1135 if (chip->parent && chip->parent->driver)
1136 gdev->owner = chip->parent->driver->owner;
1137 else if (chip->owner)
1138 /* TODO: remove chip->owner */
1139 gdev->owner = chip->owner;
1140 else
1141 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001142
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001143 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001144 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001145 status = -ENOMEM;
1146 goto err_free_gdev;
1147 }
1148
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001149 if (chip->ngpio == 0) {
1150 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001151 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001152 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001153 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001154
1155 if (chip->label)
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001156 gdev->label = kstrdup(chip->label, GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001157 else
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001158 gdev->label = kstrdup("unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001159 if (!gdev->label) {
1160 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001161 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001162 }
1163
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001164 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001165 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001166
David Brownelld2876d02008-02-04 22:28:20 -08001167 spin_lock_irqsave(&gpio_lock, flags);
1168
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001169 /*
1170 * TODO: this allocates a Linux GPIO number base in the global
1171 * GPIO numberspace for this chip. In the long run we want to
1172 * get *rid* of this numberspace and use only descriptors, but
1173 * it may be a pipe dream. It will not happen before we get rid
1174 * of the sysfs interface anyways.
1175 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001176 if (base < 0) {
1177 base = gpiochip_find_base(chip->ngpio);
1178 if (base < 0) {
1179 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001180 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001181 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001182 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001183 /*
1184 * TODO: it should not be necessary to reflect the assigned
1185 * base outside of the GPIO subsystem. Go over drivers and
1186 * see if anyone makes use of this, else drop this and assign
1187 * a poison instead.
1188 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001189 chip->base = base;
1190 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001191 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001192
Linus Walleijff2b1352015-10-20 11:10:38 +02001193 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001194 if (status) {
1195 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001196 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001197 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001198
Linus Walleij545ebd92016-05-30 17:11:59 +02001199 spin_unlock_irqrestore(&gpio_lock, flags);
1200
Linus Walleijff2b1352015-10-20 11:10:38 +02001201 for (i = 0; i < chip->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001202 struct gpio_desc *desc = &gdev->descs[i];
David Brownelld8f388d82008-07-25 01:46:07 -07001203
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001204 desc->gdev = gdev;
Linus Walleij72d32002016-04-28 13:33:59 +02001205 /*
1206 * REVISIT: most hardware initializes GPIOs as inputs
1207 * (often with pullups enabled) so power usage is
1208 * minimized. Linux code should set the gpio direction
1209 * first thing; but until it does, and in case
1210 * chip->get_direction is not set, we may expose the
1211 * wrong direction in sysfs.
Johan Hovold05aa5202015-01-12 17:12:26 +01001212 */
Linus Walleij72d32002016-04-28 13:33:59 +02001213
1214 if (chip->get_direction) {
1215 /*
1216 * If we have .get_direction, set up the initial
1217 * direction flag from the hardware.
1218 */
1219 int dir = chip->get_direction(chip, i);
1220
1221 if (!dir)
1222 set_bit(FLAG_IS_OUT, &desc->flags);
1223 } else if (!chip->direction_input) {
1224 /*
1225 * If the chip lacks the .direction_input callback
1226 * we logically assume all lines are outputs.
1227 */
1228 set_bit(FLAG_IS_OUT, &desc->flags);
1229 }
David Brownelld2876d02008-02-04 22:28:20 -08001230 }
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001231
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301232#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001233 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301234#endif
1235
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001236 status = gpiochip_set_desc_names(chip);
1237 if (status)
1238 goto err_remove_from_list;
1239
Mika Westerberg79b804c2016-09-20 15:15:21 +03001240 status = gpiochip_irqchip_init_valid_mask(chip);
1241 if (status)
1242 goto err_remove_from_list;
1243
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001244 status = of_gpiochip_add(chip);
1245 if (status)
1246 goto err_remove_chip;
1247
Mika Westerberg664e3e52014-01-08 12:40:54 +02001248 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001249
Linus Walleij3c702e92015-10-21 15:29:53 +02001250 /*
1251 * By first adding the chardev, and then adding the device,
1252 * we get a device node entry in sysfs under
1253 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1254 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001255 * We can do this only if gpiolib has been initialized.
1256 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001257 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001258 if (gpiolib_initialized) {
1259 status = gpiochip_setup_dev(gdev);
1260 if (status)
1261 goto err_remove_chip;
1262 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001263 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001264
Johan Hovold225fce82015-01-12 17:12:25 +01001265err_remove_chip:
1266 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001267 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001268 of_gpiochip_remove(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001269 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001270err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001271 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001272 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001273 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001274err_free_label:
1275 kfree(gdev->label);
1276err_free_descs:
1277 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001278err_free_gdev:
1279 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001280 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +02001281 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001282 gdev->base, gdev->base + gdev->ngpio - 1,
1283 chip->label ? : "generic");
1284 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001285 return status;
1286}
Linus Walleijb08ea352015-12-03 15:14:13 +01001287EXPORT_SYMBOL_GPL(gpiochip_add_data);
David Brownelld2876d02008-02-04 22:28:20 -08001288
1289/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001290 * gpiochip_get_data() - get per-subdriver data for the chip
1291 */
1292void *gpiochip_get_data(struct gpio_chip *chip)
1293{
1294 return chip->gpiodev->data;
1295}
1296EXPORT_SYMBOL_GPL(gpiochip_get_data);
1297
1298/**
David Brownelld2876d02008-02-04 22:28:20 -08001299 * gpiochip_remove() - unregister a gpio_chip
1300 * @chip: the chip to unregister
1301 *
1302 * A gpio_chip with any GPIOs still requested may not be removed.
1303 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001304void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001305{
Linus Walleijff2b1352015-10-20 11:10:38 +02001306 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001307 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001308 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001309 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001310 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001311
Linus Walleijff2b1352015-10-20 11:10:38 +02001312 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001313 gpiochip_sysfs_unregister(gdev);
Geert Uytterhoeven5018ada2016-12-19 18:29:23 +01001314 gpiochip_free_hogs(chip);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001315 /* Numb the device, cancelling all outstanding operations */
1316 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001317 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001318 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001319 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001320 of_gpiochip_remove(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001321 /*
1322 * We accept no more calls into the driver from this point, so
1323 * NULL the driver data pointer
1324 */
1325 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001326
Johan Hovold6798aca2015-01-12 17:12:28 +01001327 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001328 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001329 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001330 if (test_bit(FLAG_REQUESTED, &desc->flags))
1331 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001332 }
David Brownelld2876d02008-02-04 22:28:20 -08001333 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001334
Johan Hovoldfab28b82015-05-04 17:10:27 +02001335 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001336 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001337 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001338
Linus Walleijff2b1352015-10-20 11:10:38 +02001339 /*
1340 * The gpiochip side puts its use of the device to rest here:
1341 * if there are no userspace clients, the chardev and device will
1342 * be removed, else it will be dangling until the last user is
1343 * gone.
1344 */
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001345 cdev_device_del(&gdev->chrdev, &gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001346 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001347}
1348EXPORT_SYMBOL_GPL(gpiochip_remove);
1349
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301350static void devm_gpio_chip_release(struct device *dev, void *res)
1351{
1352 struct gpio_chip *chip = *(struct gpio_chip **)res;
1353
1354 gpiochip_remove(chip);
1355}
1356
1357static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1358
1359{
1360 struct gpio_chip **r = res;
1361
1362 if (!r || !*r) {
1363 WARN_ON(!r || !*r);
1364 return 0;
1365 }
1366
1367 return *r == data;
1368}
1369
1370/**
1371 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1372 * @dev: the device pointer on which irq_chip belongs to.
1373 * @chip: the chip to register, with chip->base initialized
1374 * Context: potentially before irqs will work
1375 *
1376 * Returns a negative errno if the chip can't be registered, such as
1377 * because the chip->base is invalid or already associated with a
1378 * different chip. Otherwise it returns zero as a success code.
1379 *
1380 * The gpio chip automatically be released when the device is unbound.
1381 */
1382int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1383 void *data)
1384{
1385 struct gpio_chip **ptr;
1386 int ret;
1387
1388 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1389 GFP_KERNEL);
1390 if (!ptr)
1391 return -ENOMEM;
1392
1393 ret = gpiochip_add_data(chip, data);
1394 if (ret < 0) {
1395 devres_free(ptr);
1396 return ret;
1397 }
1398
1399 *ptr = chip;
1400 devres_add(dev, ptr);
1401
1402 return 0;
1403}
1404EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1405
1406/**
1407 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1408 * @dev: device for which which resource was allocated
1409 * @chip: the chip to remove
1410 *
1411 * A gpio_chip with any GPIOs still requested may not be removed.
1412 */
1413void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1414{
1415 int ret;
1416
1417 ret = devres_release(dev, devm_gpio_chip_release,
1418 devm_gpio_chip_match, chip);
Christophe JAILLET3988d662017-01-27 12:56:42 +01001419 WARN_ON(ret);
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301420}
1421EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1422
Grant Likely594fa262010-06-08 07:48:16 -06001423/**
1424 * gpiochip_find() - iterator for locating a specific gpio_chip
1425 * @data: data to pass to match function
1426 * @callback: Callback function to check gpio_chip
1427 *
1428 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1429 * determined by a user supplied @match callback. The callback should return
1430 * 0 if the device doesn't match and non-zero if it does. If the callback is
1431 * non-zero, this function will return to the caller and not iterate over any
1432 * more gpio_chips.
1433 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001434struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001435 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001436 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001437{
Linus Walleijff2b1352015-10-20 11:10:38 +02001438 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001439 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001440 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001441
1442 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001443 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001444 if (gdev->chip && match(gdev->chip, data)) {
1445 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001446 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001447 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001448
Grant Likely594fa262010-06-08 07:48:16 -06001449 spin_unlock_irqrestore(&gpio_lock, flags);
1450
1451 return chip;
1452}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001453EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001454
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001455static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1456{
1457 const char *name = data;
1458
1459 return !strcmp(chip->label, name);
1460}
1461
1462static struct gpio_chip *find_chip_by_name(const char *name)
1463{
1464 return gpiochip_find((void *)name, gpiochip_match_name);
1465}
1466
Linus Walleij14250522014-03-25 10:40:18 +01001467#ifdef CONFIG_GPIOLIB_IRQCHIP
1468
1469/*
1470 * The following is irqchip helper code for gpiochips.
1471 */
1472
Mika Westerberg79b804c2016-09-20 15:15:21 +03001473static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1474{
Mika Westerberg79b804c2016-09-20 15:15:21 +03001475 if (!gpiochip->irq_need_valid_mask)
1476 return 0;
1477
1478 gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
1479 sizeof(long), GFP_KERNEL);
1480 if (!gpiochip->irq_valid_mask)
1481 return -ENOMEM;
1482
1483 /* Assume by default all GPIOs are valid */
Andy Shevchenko923a6542017-05-25 16:08:38 +03001484 bitmap_fill(gpiochip->irq_valid_mask, gpiochip->ngpio);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001485
1486 return 0;
1487}
1488
1489static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1490{
1491 kfree(gpiochip->irq_valid_mask);
1492 gpiochip->irq_valid_mask = NULL;
1493}
1494
1495static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1496 unsigned int offset)
1497{
1498 /* No mask means all valid */
1499 if (likely(!gpiochip->irq_valid_mask))
1500 return true;
1501 return test_bit(offset, gpiochip->irq_valid_mask);
1502}
1503
Linus Walleij14250522014-03-25 10:40:18 +01001504/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001505 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001506 * @gpiochip: the gpiochip to set the irqchip chain to
1507 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001508 * @parent_irq: the irq number corresponding to the parent IRQ for this
1509 * chained irqchip
1510 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001511 * coming out of the gpiochip. If the interrupt is nested rather than
1512 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001513 */
Linus Walleijd245b3f2016-11-24 10:57:25 +01001514static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1515 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001516 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001517 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001518{
Linus Walleij83141a72014-09-26 13:50:12 +02001519 unsigned int offset;
1520
Linus Walleij83141a72014-09-26 13:50:12 +02001521 if (!gpiochip->irqdomain) {
1522 chip_err(gpiochip, "called %s before setting up irqchip\n",
1523 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001524 return;
1525 }
1526
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001527 if (parent_handler) {
1528 if (gpiochip->can_sleep) {
1529 chip_err(gpiochip,
1530 "you cannot have chained interrupts on a "
1531 "chip that may sleep\n");
1532 return;
1533 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001534 /*
1535 * The parent irqchip is already using the chip_data for this
1536 * irqchip, so our callbacks simply use the handler_data.
1537 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001538 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1539 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001540
Linus Walleijd245b3f2016-11-24 10:57:25 +01001541 gpiochip->irq_chained_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001542 }
Linus Walleij83141a72014-09-26 13:50:12 +02001543
1544 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001545 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1546 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1547 continue;
Linus Walleij83141a72014-09-26 13:50:12 +02001548 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
1549 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001550 }
Linus Walleij14250522014-03-25 10:40:18 +01001551}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001552
1553/**
1554 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1555 * @gpiochip: the gpiochip to set the irqchip chain to
1556 * @irqchip: the irqchip to chain to the gpiochip
1557 * @parent_irq: the irq number corresponding to the parent IRQ for this
1558 * chained irqchip
1559 * @parent_handler: the parent interrupt handler for the accumulated IRQ
1560 * coming out of the gpiochip. If the interrupt is nested rather than
1561 * cascaded, pass NULL in this handler argument
1562 */
1563void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1564 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001565 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001566 irq_flow_handler_t parent_handler)
1567{
1568 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1569 parent_handler);
1570}
Linus Walleij14250522014-03-25 10:40:18 +01001571EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1572
1573/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001574 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1575 * @gpiochip: the gpiochip to set the irqchip nested handler to
1576 * @irqchip: the irqchip to nest to the gpiochip
1577 * @parent_irq: the irq number corresponding to the parent IRQ for this
1578 * nested irqchip
1579 */
1580void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1581 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001582 unsigned int parent_irq)
Linus Walleijd245b3f2016-11-24 10:57:25 +01001583{
1584 if (!gpiochip->irq_nested) {
1585 chip_err(gpiochip, "tried to nest a chained gpiochip\n");
1586 return;
1587 }
1588 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1589 NULL);
1590}
1591EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1592
1593/**
Linus Walleij14250522014-03-25 10:40:18 +01001594 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1595 * @d: the irqdomain used by this irqchip
1596 * @irq: the global irq number used by this GPIO irqchip irq
1597 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1598 *
1599 * This function will set up the mapping for a certain IRQ line on a
1600 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1601 * stored inside the gpiochip.
1602 */
1603static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1604 irq_hw_number_t hwirq)
1605{
1606 struct gpio_chip *chip = d->host_data;
1607
Linus Walleij14250522014-03-25 10:40:18 +01001608 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001609 /*
1610 * This lock class tells lockdep that GPIO irqs are in a different
1611 * category than their parents, so it won't report false recursion.
1612 */
1613 irq_set_lockdep_class(irq, chip->lock_key);
Linus Walleij7633fb92014-04-09 13:20:38 +02001614 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001615 /* Chips that use nested thread handlers have them marked */
1616 if (chip->irq_nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001617 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001618 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001619
Linus Walleij1333b902014-04-23 16:45:12 +02001620 /*
1621 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1622 * is passed as default type.
1623 */
1624 if (chip->irq_default_type != IRQ_TYPE_NONE)
1625 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001626
1627 return 0;
1628}
1629
Linus Walleijc3626fd2014-03-28 20:42:01 +01001630static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1631{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001632 struct gpio_chip *chip = d->host_data;
1633
Linus Walleijd245b3f2016-11-24 10:57:25 +01001634 if (chip->irq_nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001635 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001636 irq_set_chip_and_handler(irq, NULL, NULL);
1637 irq_set_chip_data(irq, NULL);
1638}
1639
Linus Walleij14250522014-03-25 10:40:18 +01001640static const struct irq_domain_ops gpiochip_domain_ops = {
1641 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001642 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001643 /* Virtually all GPIO irqchips are twocell:ed */
1644 .xlate = irq_domain_xlate_twocell,
1645};
1646
1647static int gpiochip_irq_reqres(struct irq_data *d)
1648{
1649 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1650
Linus Walleijff2b1352015-10-20 11:10:38 +02001651 if (!try_module_get(chip->gpiodev->owner))
Grygorii Strashko5b76e792015-06-25 20:30:50 +03001652 return -ENODEV;
1653
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001654 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +01001655 chip_err(chip,
1656 "unable to lock HW IRQ %lu for IRQ\n",
1657 d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001658 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001659 return -EINVAL;
1660 }
1661 return 0;
1662}
1663
1664static void gpiochip_irq_relres(struct irq_data *d)
1665{
1666 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1667
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001668 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001669 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001670}
1671
1672static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1673{
1674 return irq_find_mapping(chip->irqdomain, offset);
1675}
1676
1677/**
1678 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1679 * @gpiochip: the gpiochip to remove the irqchip from
1680 *
1681 * This is called only from gpiochip_remove()
1682 */
1683static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1684{
Linus Walleijc3626fd2014-03-28 20:42:01 +01001685 unsigned int offset;
1686
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001687 acpi_gpiochip_free_interrupts(gpiochip);
1688
Linus Walleijd245b3f2016-11-24 10:57:25 +01001689 if (gpiochip->irq_chained_parent) {
1690 irq_set_chained_handler(gpiochip->irq_chained_parent, NULL);
1691 irq_set_handler_data(gpiochip->irq_chained_parent, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001692 }
1693
Linus Walleijc3626fd2014-03-28 20:42:01 +01001694 /* Remove all IRQ mappings and delete the domain */
1695 if (gpiochip->irqdomain) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001696 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1697 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1698 continue;
Grygorii Strashkoe3893382014-09-25 19:09:23 +03001699 irq_dispose_mapping(
1700 irq_find_mapping(gpiochip->irqdomain, offset));
Mika Westerberg79b804c2016-09-20 15:15:21 +03001701 }
Linus Walleij14250522014-03-25 10:40:18 +01001702 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001703 }
Linus Walleij14250522014-03-25 10:40:18 +01001704
1705 if (gpiochip->irqchip) {
1706 gpiochip->irqchip->irq_request_resources = NULL;
1707 gpiochip->irqchip->irq_release_resources = NULL;
1708 gpiochip->irqchip = NULL;
1709 }
Mika Westerberg79b804c2016-09-20 15:15:21 +03001710
1711 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01001712}
1713
1714/**
Linus Walleij739e6f52017-01-11 13:37:07 +01001715 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001716 * @gpiochip: the gpiochip to add the irqchip to
1717 * @irqchip: the irqchip to add to the gpiochip
1718 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1719 * allocate gpiochip irqs from
1720 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02001721 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1722 * to have the core avoid setting up any default type in the hardware.
Linus Walleijd245b3f2016-11-24 10:57:25 +01001723 * @nested: whether this is a nested irqchip calling handle_nested_irq()
1724 * in its IRQ handler
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001725 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +01001726 *
1727 * This function closely associates a certain irqchip with a certain
1728 * gpiochip, providing an irq domain to translate the local IRQs to
1729 * global irqs in the gpiolib core, and making sure that the gpiochip
1730 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01001731 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01001732 * from the gpiochip passed as chip data. An irqdomain will be stored
1733 * in the gpiochip that shall be used by the driver to handle IRQ number
1734 * translation. The gpiochip will need to be initialized and registered
1735 * before calling this function.
1736 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01001737 * This function will handle two cell:ed simple IRQs and assumes all
1738 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01001739 * need to be open coded.
1740 */
Linus Walleij739e6f52017-01-11 13:37:07 +01001741int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
1742 struct irq_chip *irqchip,
1743 unsigned int first_irq,
1744 irq_flow_handler_t handler,
1745 unsigned int type,
1746 bool nested,
1747 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +01001748{
1749 struct device_node *of_node;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001750 bool irq_base_set = false;
Linus Walleij14250522014-03-25 10:40:18 +01001751 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001752 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001753
1754 if (!gpiochip || !irqchip)
1755 return -EINVAL;
1756
Linus Walleij58383c782015-11-04 09:56:26 +01001757 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01001758 pr_err("missing gpiochip .dev parent pointer\n");
1759 return -EINVAL;
1760 }
Linus Walleijd245b3f2016-11-24 10:57:25 +01001761 gpiochip->irq_nested = nested;
Linus Walleij58383c782015-11-04 09:56:26 +01001762 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001763#ifdef CONFIG_OF_GPIO
1764 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07001765 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001766 * FIXME: get rid of this and use gpiochip->parent->of_node
1767 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01001768 */
1769 if (gpiochip->of_node)
1770 of_node = gpiochip->of_node;
1771#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01001772 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001773 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01001774 * used to configure the interrupts, as you may end-up with
1775 * conflicting triggers. Tell the user, and reset to NONE.
1776 */
1777 if (WARN(of_node && type != IRQ_TYPE_NONE,
1778 "%s: Ignoring %d default trigger\n", of_node->full_name, type))
1779 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001780 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1781 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1782 "Ignoring %d default trigger\n", type);
1783 type = IRQ_TYPE_NONE;
1784 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01001785
Linus Walleij14250522014-03-25 10:40:18 +01001786 gpiochip->irqchip = irqchip;
1787 gpiochip->irq_handler = handler;
1788 gpiochip->irq_default_type = type;
1789 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001790 gpiochip->lock_key = lock_key;
Linus Walleij14250522014-03-25 10:40:18 +01001791 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1792 gpiochip->ngpio, first_irq,
1793 &gpiochip_domain_ops, gpiochip);
1794 if (!gpiochip->irqdomain) {
1795 gpiochip->irqchip = NULL;
1796 return -EINVAL;
1797 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02001798
1799 /*
1800 * It is possible for a driver to override this, but only if the
1801 * alternative functions are both implemented.
1802 */
1803 if (!irqchip->irq_request_resources &&
1804 !irqchip->irq_release_resources) {
1805 irqchip->irq_request_resources = gpiochip_irq_reqres;
1806 irqchip->irq_release_resources = gpiochip_irq_relres;
1807 }
Linus Walleij14250522014-03-25 10:40:18 +01001808
1809 /*
1810 * Prepare the mapping since the irqchip shall be orthogonal to
1811 * any gpiochip calls. If the first_irq was zero, this is
1812 * necessary to allocate descriptors for all IRQs.
1813 */
Linus Walleijc3626fd2014-03-28 20:42:01 +01001814 for (offset = 0; offset < gpiochip->ngpio; offset++) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001815 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1816 continue;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001817 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001818 if (!irq_base_set) {
Linus Walleijc3626fd2014-03-28 20:42:01 +01001819 /*
1820 * Store the base into the gpiochip to be used when
1821 * unmapping the irqs.
1822 */
1823 gpiochip->irq_base = irq_base;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001824 irq_base_set = true;
1825 }
Linus Walleijc3626fd2014-03-28 20:42:01 +01001826 }
Linus Walleij14250522014-03-25 10:40:18 +01001827
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001828 acpi_gpiochip_request_interrupts(gpiochip);
1829
Linus Walleij14250522014-03-25 10:40:18 +01001830 return 0;
1831}
Linus Walleij739e6f52017-01-11 13:37:07 +01001832EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
Linus Walleij14250522014-03-25 10:40:18 +01001833
1834#else /* CONFIG_GPIOLIB_IRQCHIP */
1835
1836static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03001837static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1838{
1839 return 0;
1840}
1841static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1842{ }
Linus Walleij14250522014-03-25 10:40:18 +01001843
1844#endif /* CONFIG_GPIOLIB_IRQCHIP */
1845
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001846/**
1847 * gpiochip_generic_request() - request the gpio function for a pin
1848 * @chip: the gpiochip owning the GPIO
1849 * @offset: the offset of the GPIO to request for GPIO function
1850 */
1851int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1852{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001853 return pinctrl_request_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001854}
1855EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1856
1857/**
1858 * gpiochip_generic_free() - free the gpio function from a pin
1859 * @chip: the gpiochip to request the gpio function for
1860 * @offset: the offset of the GPIO to free from GPIO function
1861 */
1862void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1863{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001864 pinctrl_free_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001865}
1866EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1867
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001868/**
1869 * gpiochip_generic_config() - apply configuration for a pin
1870 * @chip: the gpiochip owning the GPIO
1871 * @offset: the offset of the GPIO to apply the configuration
1872 * @config: the configuration to be applied
1873 */
1874int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
1875 unsigned long config)
1876{
1877 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
1878}
1879EXPORT_SYMBOL_GPL(gpiochip_generic_config);
1880
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301881#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001882
Linus Walleij3f0f8672012-11-20 12:40:15 +01001883/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001884 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1885 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001886 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001887 * @gpio_offset: the start offset in the current gpio_chip number space
1888 * @pin_group: name of the pin group inside the pin controller
1889 */
1890int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1891 struct pinctrl_dev *pctldev,
1892 unsigned int gpio_offset, const char *pin_group)
1893{
1894 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001895 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001896 int ret;
1897
1898 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1899 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001900 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001901 return -ENOMEM;
1902 }
1903
1904 /* Use local offset as range ID */
1905 pin_range->range.id = gpio_offset;
1906 pin_range->range.gc = chip;
1907 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001908 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001909 pin_range->pctldev = pctldev;
1910
1911 ret = pinctrl_get_group_pins(pctldev, pin_group,
1912 &pin_range->range.pins,
1913 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001914 if (ret < 0) {
1915 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001916 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001917 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001918
1919 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1920
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001921 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1922 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001923 pinctrl_dev_get_devname(pctldev), pin_group);
1924
Linus Walleij20ec3e32016-02-11 11:03:06 +01001925 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001926
1927 return 0;
1928}
1929EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1930
1931/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001932 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1933 * @chip: the gpiochip to add the range for
1934 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001935 * @gpio_offset: the start offset in the current gpio_chip number space
1936 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001937 * @npins: the number of pins from the offset of each pin space (GPIO and
1938 * pin controller) to accumulate in this range
1939 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001940int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001941 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001942 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301943{
1944 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001945 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001946 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301947
Linus Walleij3f0f8672012-11-20 12:40:15 +01001948 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301949 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001950 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001951 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301952 }
1953
Linus Walleij3f0f8672012-11-20 12:40:15 +01001954 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001955 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001956 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301957 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001958 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001959 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301960 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001961 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301962 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001963 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001964 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001965 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001966 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001967 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001968 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001969 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1970 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001971 pinctl_name,
1972 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301973
Linus Walleij20ec3e32016-02-11 11:03:06 +01001974 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001975
1976 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301977}
Linus Walleij165adc92012-11-06 14:49:39 +01001978EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301979
Linus Walleij3f0f8672012-11-20 12:40:15 +01001980/**
1981 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1982 * @chip: the chip to remove all the mappings for
1983 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301984void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1985{
1986 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01001987 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301988
Linus Walleij20ec3e32016-02-11 11:03:06 +01001989 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301990 list_del(&pin_range->node);
1991 pinctrl_remove_gpio_range(pin_range->pctldev,
1992 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01001993 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301994 }
1995}
Linus Walleij165adc92012-11-06 14:49:39 +01001996EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1997
1998#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301999
David Brownelld2876d02008-02-04 22:28:20 -08002000/* These "optional" allocation calls help prevent drivers from stomping
2001 * on each other, and help provide better diagnostics in debugfs.
2002 * They're called even less than the "set direction" calls.
2003 */
Mika Westerberg77c2d792014-03-10 14:54:50 +02002004static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002005{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002006 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002007 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002008 unsigned long flags;
2009
2010 spin_lock_irqsave(&gpio_lock, flags);
2011
David Brownelld2876d02008-02-04 22:28:20 -08002012 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002013 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002014 */
2015
2016 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2017 desc_set_label(desc, label ? : "?");
2018 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002019 } else {
David Brownelld2876d02008-02-04 22:28:20 -08002020 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002021 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002022 }
2023
2024 if (chip->request) {
2025 /* chip->request may sleep */
2026 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002027 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002028 spin_lock_irqsave(&gpio_lock, flags);
2029
2030 if (status < 0) {
2031 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07002032 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002033 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002034 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002035 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002036 if (chip->get_direction) {
2037 /* chip->get_direction may sleep */
2038 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002039 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002040 spin_lock_irqsave(&gpio_lock, flags);
2041 }
David Brownelld2876d02008-02-04 22:28:20 -08002042done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002043 spin_unlock_irqrestore(&gpio_lock, flags);
2044 return status;
2045}
2046
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002047/*
2048 * This descriptor validation needs to be inserted verbatim into each
2049 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002050 * macro to avoid endless duplication. If the desc is NULL it is an
2051 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002052 */
2053#define VALIDATE_DESC(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002054 if (!desc) \
2055 return 0; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002056 if (IS_ERR(desc)) { \
2057 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2058 return PTR_ERR(desc); \
2059 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002060 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002061 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002062 return -EINVAL; \
2063 } \
2064 if ( !desc->gdev->chip ) { \
2065 dev_warn(&desc->gdev->dev, \
2066 "%s: backing chip is gone\n", __func__); \
2067 return 0; \
2068 } } while (0)
2069
2070#define VALIDATE_DESC_VOID(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002071 if (!desc) \
2072 return; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002073 if (IS_ERR(desc)) { \
2074 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2075 return; \
2076 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002077 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002078 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002079 return; \
2080 } \
2081 if (!desc->gdev->chip) { \
2082 dev_warn(&desc->gdev->dev, \
2083 "%s: backing chip is gone\n", __func__); \
2084 return; \
2085 } } while (0)
2086
2087
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002088int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002089{
2090 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002091 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002092
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002093 VALIDATE_DESC(desc);
2094 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002095
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002096 if (try_module_get(gdev->owner)) {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002097 status = __gpiod_request(desc, label);
2098 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002099 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002100 else
2101 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002102 }
2103
David Brownelld2876d02008-02-04 22:28:20 -08002104 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002105 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002106
David Brownelld2876d02008-02-04 22:28:20 -08002107 return status;
2108}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002109
Mika Westerberg77c2d792014-03-10 14:54:50 +02002110static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002111{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002112 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002113 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002114 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002115
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002116 might_sleep();
2117
Alexandre Courbot372e7222013-02-03 01:29:29 +09002118 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002119
David Brownelld2876d02008-02-04 22:28:20 -08002120 spin_lock_irqsave(&gpio_lock, flags);
2121
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002122 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002123 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2124 if (chip->free) {
2125 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002126 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002127 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002128 spin_lock_irqsave(&gpio_lock, flags);
2129 }
David Brownelld2876d02008-02-04 22:28:20 -08002130 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002131 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002132 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302133 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302134 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002135 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002136 ret = true;
2137 }
David Brownelld2876d02008-02-04 22:28:20 -08002138
2139 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002140 return ret;
2141}
2142
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002143void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002144{
Linus Walleij33a68e82016-02-11 10:28:44 +01002145 if (desc && desc->gdev && __gpiod_free(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002146 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002147 put_device(&desc->gdev->dev);
2148 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002149 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002150 }
David Brownelld2876d02008-02-04 22:28:20 -08002151}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002152
David Brownelld2876d02008-02-04 22:28:20 -08002153/**
2154 * gpiochip_is_requested - return string iff signal was requested
2155 * @chip: controller managing the signal
2156 * @offset: of signal within controller's 0..(ngpio - 1) range
2157 *
2158 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002159 * The string returned is the label passed to gpio_request(); if none has been
2160 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002161 *
2162 * This function is for use by GPIO controller drivers. The label can
2163 * help with diagnostics, and knowing that the signal is used as a GPIO
2164 * can help avoid accidentally multiplexing it to another controller.
2165 */
2166const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2167{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002168 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002169
Dirk Behme48b59532015-08-18 18:02:32 +02002170 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002171 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002172
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002173 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002174
Alexandre Courbot372e7222013-02-03 01:29:29 +09002175 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002176 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002177 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002178}
2179EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2180
Mika Westerberg77c2d792014-03-10 14:54:50 +02002181/**
2182 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2183 * @desc: GPIO descriptor to request
2184 * @label: label for the GPIO
2185 *
2186 * Function allows GPIO chip drivers to request and use their own GPIO
2187 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2188 * function will not increase reference count of the GPIO chip module. This
2189 * allows the GPIO chip module to be unloaded as needed (we assume that the
2190 * GPIO chip driver handles freeing the GPIOs it has requested).
2191 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002192struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2193 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002194{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002195 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2196 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002197
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002198 if (IS_ERR(desc)) {
2199 chip_err(chip, "failed to get GPIO descriptor\n");
2200 return desc;
2201 }
2202
2203 err = __gpiod_request(desc, label);
2204 if (err < 0)
2205 return ERR_PTR(err);
2206
2207 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002208}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002209EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002210
2211/**
2212 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2213 * @desc: GPIO descriptor to free
2214 *
2215 * Function frees the given GPIO requested previously with
2216 * gpiochip_request_own_desc().
2217 */
2218void gpiochip_free_own_desc(struct gpio_desc *desc)
2219{
2220 if (desc)
2221 __gpiod_free(desc);
2222}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002223EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002224
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002225/*
2226 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002227 * some cases this is done in early boot, before IRQs are enabled.
2228 *
2229 * As a rule these aren't called more than once (except for drivers
2230 * using the open-drain emulation idiom) so these are natural places
2231 * to accumulate extra debugging checks. Note that we can't (yet)
2232 * rely on gpio_request() having been called beforehand.
2233 */
2234
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002235/**
2236 * gpiod_direction_input - set the GPIO direction to input
2237 * @desc: GPIO to set to input
2238 *
2239 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2240 * be called safely on it.
2241 *
2242 * Return 0 in case of success, else an error code.
2243 */
2244int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002245{
David Brownelld2876d02008-02-04 22:28:20 -08002246 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002247 int status = -EINVAL;
2248
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002249 VALIDATE_DESC(desc);
2250 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002251
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002252 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002253 gpiod_warn(desc,
2254 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02002255 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002256 return -EIO;
2257 }
2258
Alexandre Courbotd82da792014-07-22 16:17:43 +09002259 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08002260 if (status == 0)
2261 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002262
Alexandre Courbot372e7222013-02-03 01:29:29 +09002263 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002264
David Brownelld2876d02008-02-04 22:28:20 -08002265 return status;
2266}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002267EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002268
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002269static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2270 enum pin_config_param mode)
2271{
2272 unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2273
2274 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2275}
2276
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002277static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002278{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002279 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002280 int val = !!value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002281 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08002282
Linus Walleijd468bf92013-09-24 11:54:38 +02002283 /* GPIOs used for IRQs shall not be set as output */
2284 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2285 gpiod_err(desc,
2286 "%s: tried to set a GPIO tied to an IRQ as output\n",
2287 __func__);
2288 return -EIO;
2289 }
2290
Linus Walleijc663e5f2016-03-22 10:51:16 +01002291 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2292 /* First see if we can enable open drain in hardware */
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002293 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2294 PIN_CONFIG_DRIVE_OPEN_DRAIN);
2295 if (!ret)
2296 goto set_output_value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002297 /* Emulate open drain by not actively driving the line high */
Linus Walleijad177312016-11-13 23:02:44 +01002298 if (val)
Linus Walleijc663e5f2016-03-22 10:51:16 +01002299 return gpiod_direction_input(desc);
2300 }
2301 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002302 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2303 PIN_CONFIG_DRIVE_OPEN_SOURCE);
2304 if (!ret)
2305 goto set_output_value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002306 /* Emulate open source by not actively driving the line low */
Linus Walleijad177312016-11-13 23:02:44 +01002307 if (!val)
Linus Walleijc663e5f2016-03-22 10:51:16 +01002308 return gpiod_direction_input(desc);
2309 } else {
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002310 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2311 PIN_CONFIG_DRIVE_PUSH_PULL);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002312 }
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302313
Linus Walleijc663e5f2016-03-22 10:51:16 +01002314set_output_value:
2315 if (!gc->set || !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002316 gpiod_warn(desc,
2317 "%s: missing set() or direction_output() operations\n",
2318 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002319 return -EIO;
2320 }
2321
Linus Walleijad177312016-11-13 23:02:44 +01002322 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002323 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002324 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002325 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002326 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2327 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002328}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002329
2330/**
2331 * gpiod_direction_output_raw - set the GPIO direction to output
2332 * @desc: GPIO to set to output
2333 * @value: initial output value of the GPIO
2334 *
2335 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2336 * be called safely on it. The initial value of the output must be specified
2337 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2338 *
2339 * Return 0 in case of success, else an error code.
2340 */
2341int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2342{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002343 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002344 return _gpiod_direction_output_raw(desc, value);
2345}
2346EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2347
2348/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302349 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002350 * @desc: GPIO to set to output
2351 * @value: initial output value of the GPIO
2352 *
2353 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2354 * be called safely on it. The initial value of the output must be specified
2355 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2356 * account.
2357 *
2358 * Return 0 in case of success, else an error code.
2359 */
2360int gpiod_direction_output(struct gpio_desc *desc, int value)
2361{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002362 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002363 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2364 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002365 else
2366 value = !!value;
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002367 return _gpiod_direction_output_raw(desc, value);
2368}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002369EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002370
Felipe Balbic4b5be92010-05-26 14:42:23 -07002371/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002372 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07002373 * @gpio: the gpio to set debounce time
2374 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002375 *
2376 * returns -ENOTSUPP if the controller does not support setting
2377 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002378 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002379int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002380{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002381 struct gpio_chip *chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002382 unsigned long config;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002383
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002384 VALIDATE_DESC(desc);
2385 chip = desc->gdev->chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002386 if (!chip->set || !chip->set_config) {
Mark Brown6424de52013-09-09 10:33:49 +01002387 gpiod_dbg(desc,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002388 "%s: missing set() or set_config() operations\n",
Mark Brown6424de52013-09-09 10:33:49 +01002389 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002390 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002391 }
2392
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002393 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2394 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002395}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002396EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002397
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002398/**
2399 * gpiod_is_active_low - test whether a GPIO is active-low or not
2400 * @desc: the gpio descriptor to test
2401 *
2402 * Returns 1 if the GPIO is active-low, 0 otherwise.
2403 */
2404int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002405{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002406 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002407 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002408}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002409EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002410
2411/* I/O calls are only valid after configuration completed; the relevant
2412 * "is this a valid GPIO" error checks should already have been done.
2413 *
2414 * "Get" operations are often inlinable as reading a pin value register,
2415 * and masking the relevant bit in that register.
2416 *
2417 * When "set" operations are inlinable, they involve writing that mask to
2418 * one register to set a low value, or a different register to set it high.
2419 * Otherwise locking is needed, so there may be little value to inlining.
2420 *
2421 *------------------------------------------------------------------------
2422 *
2423 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2424 * have requested the GPIO. That can include implicit requesting by
2425 * a direction setting call. Marking a gpio as requested locks its chip
2426 * in memory, guaranteeing that these table lookups need no more locking
2427 * and that gpiochip_remove() will fail.
2428 *
2429 * REVISIT when debugging, consider adding some instrumentation to ensure
2430 * that the GPIO was actually requested.
2431 */
2432
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002433static int _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002434{
2435 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002436 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002437 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002438
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002439 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002440 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002441 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002442 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002443 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002444 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002445}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002446
David Brownelld2876d02008-02-04 22:28:20 -08002447/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002448 * gpiod_get_raw_value() - return a gpio's raw value
2449 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002450 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002451 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002452 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002453 *
2454 * This function should be called from contexts where we cannot sleep, and will
2455 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002456 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002457int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002458{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002459 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002460 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002461 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002462 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002463}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002464EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002465
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002466/**
2467 * gpiod_get_value() - return a gpio's value
2468 * @desc: gpio whose value will be returned
2469 *
2470 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002471 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002472 *
2473 * This function should be called from contexts where we cannot sleep, and will
2474 * complain if the GPIO chip functions potentially sleep.
2475 */
2476int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002477{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002478 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002479
2480 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002481 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002482 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002483
2484 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002485 if (value < 0)
2486 return value;
2487
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002488 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2489 value = !value;
2490
2491 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002492}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002493EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002494
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302495/*
2496 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002497 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002498 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302499 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002500static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302501{
2502 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002503 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002504 int offset = gpio_chip_hwgpio(desc);
2505
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302506 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002507 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302508 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002509 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302510 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002511 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302512 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002513 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302514 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002515 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302516 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002517 gpiod_err(desc,
2518 "%s: Error in set_value for open drain err %d\n",
2519 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302520}
2521
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302522/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002523 * _gpio_set_open_source_value() - Set the open source gpio's value.
2524 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002525 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302526 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002527static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302528{
2529 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002530 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002531 int offset = gpio_chip_hwgpio(desc);
2532
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302533 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002534 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302535 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002536 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302537 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002538 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302539 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002540 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302541 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002542 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302543 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002544 gpiod_err(desc,
2545 "%s: Error in set_value for open source err %d\n",
2546 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302547}
2548
Alexandre Courbot23600962014-03-11 15:52:09 +09002549static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002550{
2551 struct gpio_chip *chip;
2552
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002553 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002554 trace_gpio_value(desc_to_gpio(desc), 0, value);
2555 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2556 _gpio_set_open_drain_value(desc, value);
2557 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2558 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302559 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09002560 chip->set(chip, gpio_chip_hwgpio(desc), value);
2561}
2562
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002563/*
2564 * set multiple outputs on the same chip;
2565 * use the chip's set_multiple function if available;
2566 * otherwise set the outputs sequentially;
2567 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2568 * defines which outputs are to be changed
2569 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2570 * defines the values the outputs specified by mask are to be set to
2571 */
2572static void gpio_chip_set_multiple(struct gpio_chip *chip,
2573 unsigned long *mask, unsigned long *bits)
2574{
2575 if (chip->set_multiple) {
2576 chip->set_multiple(chip, mask, bits);
2577 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02002578 unsigned int i;
2579
2580 /* set outputs if the corresponding mask bit is set */
2581 for_each_set_bit(i, mask, chip->ngpio)
2582 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002583 }
2584}
2585
Linus Walleij44c72882016-04-24 11:36:59 +02002586void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2587 unsigned int array_size,
2588 struct gpio_desc **desc_array,
2589 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002590{
2591 int i = 0;
2592
2593 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002594 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002595 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2596 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2597 int count = 0;
2598
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002599 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002600 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002601
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002602 memset(mask, 0, sizeof(mask));
2603 do {
2604 struct gpio_desc *desc = desc_array[i];
2605 int hwgpio = gpio_chip_hwgpio(desc);
2606 int value = value_array[i];
2607
2608 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2609 value = !value;
2610 trace_gpio_value(desc_to_gpio(desc), 0, value);
2611 /*
2612 * collect all normal outputs belonging to the same chip
2613 * open drain and open source outputs are set individually
2614 */
2615 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002616 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002617 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2618 _gpio_set_open_source_value(desc, value);
2619 } else {
2620 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002621 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002622 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002623 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002624 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002625 count++;
2626 }
2627 i++;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002628 } while ((i < array_size) &&
2629 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002630 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002631 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002632 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002633 }
2634}
2635
David Brownelld2876d02008-02-04 22:28:20 -08002636/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002637 * gpiod_set_raw_value() - assign a gpio's raw value
2638 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002639 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002640 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002641 * Set the raw value of the GPIO, i.e. the value of its physical line without
2642 * regard for its ACTIVE_LOW status.
2643 *
2644 * This function should be called from contexts where we cannot sleep, and will
2645 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002646 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002647void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002648{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002649 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002650 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002651 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002652 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002653}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002654EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002655
2656/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002657 * gpiod_set_value() - assign a gpio's value
2658 * @desc: gpio whose value will be assigned
2659 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002660 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002661 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2662 * account
2663 *
2664 * This function should be called from contexts where we cannot sleep, and will
2665 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002666 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002667void gpiod_set_value(struct gpio_desc *desc, int value)
2668{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002669 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002670 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002671 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002672 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2673 value = !value;
2674 _gpiod_set_raw_value(desc, value);
2675}
2676EXPORT_SYMBOL_GPL(gpiod_set_value);
2677
2678/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002679 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002680 * @array_size: number of elements in the descriptor / value arrays
2681 * @desc_array: array of GPIO descriptors whose values will be assigned
2682 * @value_array: array of values to assign
2683 *
2684 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2685 * without regard for their ACTIVE_LOW status.
2686 *
2687 * This function should be called from contexts where we cannot sleep, and will
2688 * complain if the GPIO chip functions potentially sleep.
2689 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002690void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002691 struct gpio_desc **desc_array, int *value_array)
2692{
2693 if (!desc_array)
2694 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002695 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2696 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002697}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002698EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002699
2700/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002701 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002702 * @array_size: number of elements in the descriptor / value arrays
2703 * @desc_array: array of GPIO descriptors whose values will be assigned
2704 * @value_array: array of values to assign
2705 *
2706 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2707 * into account.
2708 *
2709 * This function should be called from contexts where we cannot sleep, and will
2710 * complain if the GPIO chip functions potentially sleep.
2711 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002712void gpiod_set_array_value(unsigned int array_size,
2713 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002714{
2715 if (!desc_array)
2716 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002717 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2718 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002719}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002720EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002721
2722/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002723 * gpiod_cansleep() - report whether gpio value access may sleep
2724 * @desc: gpio to check
2725 *
2726 */
2727int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002728{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002729 VALIDATE_DESC(desc);
2730 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002731}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002732EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002733
David Brownell0f6d5042008-10-15 22:03:14 -07002734/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002735 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2736 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07002737 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002738 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2739 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07002740 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002741int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07002742{
Linus Walleij4c37ce82016-05-02 13:13:10 +02002743 struct gpio_chip *chip;
2744 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07002745
Linus Walleij79bb71b2016-06-15 22:57:38 +02002746 /*
2747 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2748 * requires this function to not return zero on an invalid descriptor
2749 * but rather a negative error number.
2750 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02002751 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02002752 return -EINVAL;
2753
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002754 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002755 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02002756 if (chip->to_irq) {
2757 int retirq = chip->to_irq(chip, offset);
2758
2759 /* Zero means NO_IRQ */
2760 if (!retirq)
2761 return -ENXIO;
2762
2763 return retirq;
2764 }
2765 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002766}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002767EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002768
Linus Walleijd468bf92013-09-24 11:54:38 +02002769/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002770 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002771 * @chip: the chip the GPIO to lock belongs to
2772 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002773 *
2774 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08002775 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08002776 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002777int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002778{
Linus Walleij9c102802016-05-25 10:56:03 +02002779 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02002780
Linus Walleij9c102802016-05-25 10:56:03 +02002781 desc = gpiochip_get_desc(chip, offset);
2782 if (IS_ERR(desc))
2783 return PTR_ERR(desc);
2784
Linus Walleij60f83392016-11-12 15:01:09 +01002785 /*
2786 * If it's fast: flush the direction setting if something changed
2787 * behind our back
2788 */
2789 if (!chip->can_sleep && chip->get_direction) {
Linus Walleij9c102802016-05-25 10:56:03 +02002790 int dir = chip->get_direction(chip, offset);
2791
2792 if (dir)
2793 clear_bit(FLAG_IS_OUT, &desc->flags);
2794 else
2795 set_bit(FLAG_IS_OUT, &desc->flags);
2796 }
2797
2798 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002799 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02002800 "%s: tried to flag a GPIO set as output for IRQ\n",
2801 __func__);
2802 return -EIO;
2803 }
2804
Linus Walleij9c102802016-05-25 10:56:03 +02002805 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01002806
2807 /*
2808 * If the consumer has not set up a label (such as when the
2809 * IRQ is referenced from .to_irq()) we set up a label here
2810 * so it is clear this is used as an interrupt.
2811 */
2812 if (!desc->label)
2813 desc_set_label(desc, "interrupt");
2814
Linus Walleijd468bf92013-09-24 11:54:38 +02002815 return 0;
2816}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002817EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002818
Linus Walleijd468bf92013-09-24 11:54:38 +02002819/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002820 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002821 * @chip: the chip the GPIO to lock belongs to
2822 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002823 *
2824 * This is used directly by GPIO drivers that want to indicate
2825 * that a certain GPIO is no longer used exclusively for IRQ.
2826 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002827void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02002828{
Linus Walleij3940c342016-11-14 00:09:07 +01002829 struct gpio_desc *desc;
2830
2831 desc = gpiochip_get_desc(chip, offset);
2832 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02002833 return;
2834
Linus Walleij3940c342016-11-14 00:09:07 +01002835 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
2836
2837 /* If we only had this marking, erase it */
2838 if (desc->label && !strcmp(desc->label, "interrupt"))
2839 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02002840}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002841EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002842
Linus Walleij6cee3822016-02-11 20:16:45 +01002843bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2844{
2845 if (offset >= chip->ngpio)
2846 return false;
2847
2848 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2849}
2850EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2851
Linus Walleij143b65d2016-02-16 15:41:42 +01002852bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2853{
2854 if (offset >= chip->ngpio)
2855 return false;
2856
2857 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2858}
2859EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2860
2861bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2862{
2863 if (offset >= chip->ngpio)
2864 return false;
2865
2866 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2867}
2868EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2869
Charles Keepax05f479b2017-05-23 15:47:29 +01002870bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
2871{
2872 if (offset >= chip->ngpio)
2873 return false;
2874
2875 return !test_bit(FLAG_SLEEP_MAY_LOOSE_VALUE,
2876 &chip->gpiodev->descs[offset].flags);
2877}
2878EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
2879
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002880/**
2881 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2882 * @desc: gpio whose value will be returned
2883 *
2884 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002885 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002886 *
2887 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002888 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002889int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002890{
David Brownelld2876d02008-02-04 22:28:20 -08002891 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002892 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002893 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002894}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002895EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002896
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002897/**
2898 * gpiod_get_value_cansleep() - return a gpio's value
2899 * @desc: gpio whose value will be returned
2900 *
2901 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002902 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002903 *
2904 * This function is to be called from contexts that can sleep.
2905 */
2906int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002907{
David Brownelld2876d02008-02-04 22:28:20 -08002908 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002909
2910 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002911 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002912 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002913 if (value < 0)
2914 return value;
2915
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002916 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2917 value = !value;
2918
David Brownelld2876d02008-02-04 22:28:20 -08002919 return value;
2920}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002921EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002922
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002923/**
2924 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2925 * @desc: gpio whose value will be assigned
2926 * @value: value to assign
2927 *
2928 * Set the raw value of the GPIO, i.e. the value of its physical line without
2929 * regard for its ACTIVE_LOW status.
2930 *
2931 * This function is to be called from contexts that can sleep.
2932 */
2933void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002934{
David Brownelld2876d02008-02-04 22:28:20 -08002935 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002936 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002937 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002938}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002939EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002940
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002941/**
2942 * gpiod_set_value_cansleep() - assign a gpio's value
2943 * @desc: gpio whose value will be assigned
2944 * @value: value to assign
2945 *
2946 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2947 * account
2948 *
2949 * This function is to be called from contexts that can sleep.
2950 */
2951void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002952{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002953 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002954 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002955 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2956 value = !value;
2957 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002958}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002959EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002960
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002961/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002962 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002963 * @array_size: number of elements in the descriptor / value arrays
2964 * @desc_array: array of GPIO descriptors whose values will be assigned
2965 * @value_array: array of values to assign
2966 *
2967 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2968 * without regard for their ACTIVE_LOW status.
2969 *
2970 * This function is to be called from contexts that can sleep.
2971 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002972void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2973 struct gpio_desc **desc_array,
2974 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002975{
2976 might_sleep_if(extra_checks);
2977 if (!desc_array)
2978 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002979 gpiod_set_array_value_complex(true, true, array_size, desc_array,
2980 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002981}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002982EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002983
2984/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002985 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002986 * @array_size: number of elements in the descriptor / value arrays
2987 * @desc_array: array of GPIO descriptors whose values will be assigned
2988 * @value_array: array of values to assign
2989 *
2990 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2991 * into account.
2992 *
2993 * This function is to be called from contexts that can sleep.
2994 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002995void gpiod_set_array_value_cansleep(unsigned int array_size,
2996 struct gpio_desc **desc_array,
2997 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002998{
2999 might_sleep_if(extra_checks);
3000 if (!desc_array)
3001 return;
Linus Walleij44c72882016-04-24 11:36:59 +02003002 gpiod_set_array_value_complex(false, true, array_size, desc_array,
3003 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003004}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003005EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003006
3007/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003008 * gpiod_add_lookup_table() - register GPIO device consumers
3009 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003010 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003011void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003012{
3013 mutex_lock(&gpio_lookup_lock);
3014
Alexandre Courbotad824782013-12-03 12:20:11 +09003015 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003016
3017 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003018}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003019EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003020
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303021/**
3022 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3023 * @table: table of consumers to unregister
3024 */
3025void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3026{
3027 mutex_lock(&gpio_lookup_lock);
3028
3029 list_del(&table->list);
3030
3031 mutex_unlock(&gpio_lookup_lock);
3032}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003033EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303034
Alexandre Courbotad824782013-12-03 12:20:11 +09003035static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3036{
3037 const char *dev_id = dev ? dev_name(dev) : NULL;
3038 struct gpiod_lookup_table *table;
3039
3040 mutex_lock(&gpio_lookup_lock);
3041
3042 list_for_each_entry(table, &gpio_lookup_list, list) {
3043 if (table->dev_id && dev_id) {
3044 /*
3045 * Valid strings on both ends, must be identical to have
3046 * a match
3047 */
3048 if (!strcmp(table->dev_id, dev_id))
3049 goto found;
3050 } else {
3051 /*
3052 * One of the pointers is NULL, so both must be to have
3053 * a match
3054 */
3055 if (dev_id == table->dev_id)
3056 goto found;
3057 }
3058 }
3059 table = NULL;
3060
3061found:
3062 mutex_unlock(&gpio_lookup_lock);
3063 return table;
3064}
3065
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003066static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09003067 unsigned int idx,
3068 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003069{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003070 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003071 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003072 struct gpiod_lookup *p;
3073
Alexandre Courbotad824782013-12-03 12:20:11 +09003074 table = gpiod_find_lookup_table(dev);
3075 if (!table)
3076 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003077
Alexandre Courbotad824782013-12-03 12:20:11 +09003078 for (p = &table->table[0]; p->chip_label; p++) {
3079 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003080
Alexandre Courbotad824782013-12-03 12:20:11 +09003081 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003082 if (p->idx != idx)
3083 continue;
3084
Alexandre Courbotad824782013-12-03 12:20:11 +09003085 /* If the lookup entry has a con_id, require exact match */
3086 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3087 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003088
Alexandre Courbotad824782013-12-03 12:20:11 +09003089 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003090
Alexandre Courbotad824782013-12-03 12:20:11 +09003091 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003092 dev_err(dev, "cannot find GPIO chip %s\n",
3093 p->chip_label);
3094 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003095 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003096
Alexandre Courbotad824782013-12-03 12:20:11 +09003097 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003098 dev_err(dev,
3099 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3100 idx, chip->ngpio, chip->label);
3101 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003102 }
3103
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09003104 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003105 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003106
3107 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003108 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003109
3110 return desc;
3111}
3112
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003113static int dt_gpio_count(struct device *dev, const char *con_id)
3114{
3115 int ret;
3116 char propname[32];
3117 unsigned int i;
3118
3119 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3120 if (con_id)
3121 snprintf(propname, sizeof(propname), "%s-%s",
3122 con_id, gpio_suffixes[i]);
3123 else
3124 snprintf(propname, sizeof(propname), "%s",
3125 gpio_suffixes[i]);
3126
3127 ret = of_gpio_named_count(dev->of_node, propname);
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003128 if (ret > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003129 break;
3130 }
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003131 return ret ? ret : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003132}
3133
3134static int platform_gpio_count(struct device *dev, const char *con_id)
3135{
3136 struct gpiod_lookup_table *table;
3137 struct gpiod_lookup *p;
3138 unsigned int count = 0;
3139
3140 table = gpiod_find_lookup_table(dev);
3141 if (!table)
3142 return -ENOENT;
3143
3144 for (p = &table->table[0]; p->chip_label; p++) {
3145 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3146 (!con_id && !p->con_id))
3147 count++;
3148 }
3149 if (!count)
3150 return -ENOENT;
3151
3152 return count;
3153}
3154
3155/**
3156 * gpiod_count - return the number of GPIOs associated with a device / function
3157 * or -ENOENT if no GPIO has been assigned to the requested function
3158 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3159 * @con_id: function within the GPIO consumer
3160 */
3161int gpiod_count(struct device *dev, const char *con_id)
3162{
3163 int count = -ENOENT;
3164
3165 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3166 count = dt_gpio_count(dev, con_id);
3167 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3168 count = acpi_gpio_count(dev, con_id);
3169
3170 if (count < 0)
3171 count = platform_gpio_count(dev, con_id);
3172
3173 return count;
3174}
3175EXPORT_SYMBOL_GPL(gpiod_count);
3176
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003177/**
Thierry Reding08791622014-04-25 16:54:22 +02003178 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003179 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003180 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003181 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003182 *
3183 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003184 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003185 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003186 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003187struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003188 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003189{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003190 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003191}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003192EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003193
3194/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003195 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3196 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3197 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003198 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003199 *
3200 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3201 * the requested function it will return NULL. This is convenient for drivers
3202 * that need to handle optional GPIOs.
3203 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003204struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003205 const char *con_id,
3206 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003207{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003208 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003209}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003210EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003211
Benoit Parrotf625d462015-02-02 11:44:44 -06003212
3213/**
3214 * gpiod_configure_flags - helper function to configure a given GPIO
3215 * @desc: gpio whose value will be assigned
3216 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02003217 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3218 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003219 * @dflags: gpiod_flags - optional GPIO initialization flags
3220 *
3221 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3222 * requested function and/or index, or another IS_ERR() code if an error
3223 * occurred while trying to acquire the GPIO.
3224 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03003225int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003226 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003227{
3228 int status;
3229
Johan Hovold85b03b32016-07-03 18:32:05 +02003230 if (lflags & GPIO_ACTIVE_LOW)
3231 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3232 if (lflags & GPIO_OPEN_DRAIN)
3233 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3234 if (lflags & GPIO_OPEN_SOURCE)
3235 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Charles Keepax05f479b2017-05-23 15:47:29 +01003236 if (lflags & GPIO_SLEEP_MAY_LOOSE_VALUE)
3237 set_bit(FLAG_SLEEP_MAY_LOOSE_VALUE, &desc->flags);
Johan Hovold85b03b32016-07-03 18:32:05 +02003238
Benoit Parrotf625d462015-02-02 11:44:44 -06003239 /* No particular flag request, return here... */
3240 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3241 pr_debug("no flags found for %s\n", con_id);
3242 return 0;
3243 }
3244
3245 /* Process flags */
3246 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3247 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01003248 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06003249 else
3250 status = gpiod_direction_input(desc);
3251
3252 return status;
3253}
3254
Thierry Reding29a1f2332014-04-25 17:10:06 +02003255/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003256 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003257 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003258 * @con_id: function within the GPIO consumer
3259 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003260 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003261 *
3262 * This variant of gpiod_get() allows to access GPIOs other than the first
3263 * defined one for functions that define several GPIOs.
3264 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003265 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3266 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003267 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003268 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003269struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003270 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003271 unsigned int idx,
3272 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003273{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003274 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003275 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003276 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003277
3278 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3279
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003280 if (dev) {
3281 /* Using device tree? */
3282 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3283 dev_dbg(dev, "using device tree for GPIO lookup\n");
3284 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3285 } else if (ACPI_COMPANION(dev)) {
3286 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003287 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003288 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003289 }
3290
3291 /*
3292 * Either we are not using DT or ACPI, or their lookup did not return
3293 * a result. In that case, use platform lookup as a fallback.
3294 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003295 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003296 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003297 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003298 }
3299
3300 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02003301 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003302 return desc;
3303 }
3304
3305 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003306 if (status < 0)
3307 return ERR_PTR(status);
3308
Johan Hovold85b03b32016-07-03 18:32:05 +02003309 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003310 if (status < 0) {
3311 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3312 gpiod_put(desc);
3313 return ERR_PTR(status);
3314 }
3315
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003316 return desc;
3317}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003318EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003319
3320/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003321 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3322 * @fwnode: handle of the firmware node
3323 * @propname: name of the firmware property representing the GPIO
Boris Brezillon537b94d2017-02-02 14:53:11 +01003324 * @index: index of the GPIO to obtain in the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003325 * @dflags: GPIO initialization flags
Mika Westerberg40b73182014-10-21 13:33:59 +02003326 *
3327 * This function can be used for drivers that get their configuration
3328 * from firmware.
3329 *
3330 * Function properly finds the corresponding GPIO using whatever is the
3331 * underlying firmware interface and then makes sure that the GPIO
3332 * descriptor is requested before it is returned to the caller.
3333 *
Andy Shevchenkoff213782017-02-28 17:03:12 +02003334 * On successful request the GPIO pin is configured in accordance with
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003335 * provided @dflags.
3336 *
Mika Westerberg40b73182014-10-21 13:33:59 +02003337 * In case of error an ERR_PTR() is returned.
3338 */
3339struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Boris Brezillon537b94d2017-02-02 14:53:11 +01003340 const char *propname, int index,
Alexander Steinb2987d72017-01-12 17:39:24 +01003341 enum gpiod_flags dflags,
3342 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02003343{
3344 struct gpio_desc *desc = ERR_PTR(-ENODEV);
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003345 unsigned long lflags = 0;
Mika Westerberg40b73182014-10-21 13:33:59 +02003346 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003347 bool single_ended = false;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303348 bool open_drain = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02003349 int ret;
3350
3351 if (!fwnode)
3352 return ERR_PTR(-EINVAL);
3353
3354 if (is_of_node(fwnode)) {
3355 enum of_gpio_flags flags;
3356
Boris Brezillon537b94d2017-02-02 14:53:11 +01003357 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname,
3358 index, &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003359 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02003360 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003361 single_ended = flags & OF_GPIO_SINGLE_ENDED;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303362 open_drain = flags & OF_GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003363 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003364 } else if (is_acpi_node(fwnode)) {
3365 struct acpi_gpio_info info;
3366
Boris Brezillon537b94d2017-02-02 14:53:11 +01003367 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003368 if (!IS_ERR(desc)) {
Christophe RICARD52044722015-12-23 23:25:34 +01003369 active_low = info.polarity == GPIO_ACTIVE_LOW;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003370 ret = acpi_gpio_update_gpiod_flags(&dflags, info.flags);
3371 if (ret)
3372 pr_debug("Override GPIO initialization flags\n");
3373 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003374 }
3375
3376 if (IS_ERR(desc))
3377 return desc;
3378
Alexander Steinb2987d72017-01-12 17:39:24 +01003379 ret = gpiod_request(desc, label);
Johan Hovold85b03b32016-07-03 18:32:05 +02003380 if (ret)
3381 return ERR_PTR(ret);
3382
Mika Westerberg40b73182014-10-21 13:33:59 +02003383 if (active_low)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003384 lflags |= GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02003385
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003386 if (single_ended) {
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303387 if (open_drain)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003388 lflags |= GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003389 else
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003390 lflags |= GPIO_OPEN_SOURCE;
3391 }
3392
3393 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3394 if (ret < 0) {
3395 gpiod_put(desc);
3396 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003397 }
3398
Mika Westerberg40b73182014-10-21 13:33:59 +02003399 return desc;
3400}
3401EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3402
3403/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003404 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3405 * function
3406 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3407 * @con_id: function within the GPIO consumer
3408 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003409 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003410 *
3411 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3412 * specified index was assigned to the requested function it will return NULL.
3413 * This is convenient for drivers that need to handle optional GPIOs.
3414 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003415struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003416 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003417 unsigned int index,
3418 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003419{
3420 struct gpio_desc *desc;
3421
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003422 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003423 if (IS_ERR(desc)) {
3424 if (PTR_ERR(desc) == -ENOENT)
3425 return NULL;
3426 }
3427
3428 return desc;
3429}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003430EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003431
3432/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003433 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3434 * @desc: gpio whose value will be assigned
3435 * @name: gpio line name
3436 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3437 * of_get_gpio_hog()
3438 * @dflags: gpiod_flags - optional GPIO initialization flags
3439 */
3440int gpiod_hog(struct gpio_desc *desc, const char *name,
3441 unsigned long lflags, enum gpiod_flags dflags)
3442{
3443 struct gpio_chip *chip;
3444 struct gpio_desc *local_desc;
3445 int hwnum;
3446 int status;
3447
3448 chip = gpiod_to_chip(desc);
3449 hwnum = gpio_chip_hwgpio(desc);
3450
3451 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3452 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303453 status = PTR_ERR(local_desc);
3454 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3455 name, chip->label, hwnum, status);
3456 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06003457 }
3458
Johan Hovold85b03b32016-07-03 18:32:05 +02003459 status = gpiod_configure_flags(desc, name, lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06003460 if (status < 0) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303461 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3462 name, chip->label, hwnum, status);
Benoit Parrotf625d462015-02-02 11:44:44 -06003463 gpiochip_free_own_desc(desc);
3464 return status;
3465 }
3466
3467 /* Mark GPIO as hogged so it can be identified and removed later */
3468 set_bit(FLAG_IS_HOGGED, &desc->flags);
3469
3470 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3471 desc_to_gpio(desc), name,
3472 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3473 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3474 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3475
3476 return 0;
3477}
3478
3479/**
3480 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3481 * @chip: gpio chip to act on
3482 *
3483 * This is only used by of_gpiochip_remove to free hogged gpios
3484 */
3485static void gpiochip_free_hogs(struct gpio_chip *chip)
3486{
3487 int id;
3488
3489 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01003490 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3491 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06003492 }
3493}
3494
3495/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003496 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3497 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3498 * @con_id: function within the GPIO consumer
3499 * @flags: optional GPIO initialization flags
3500 *
3501 * This function acquires all the GPIOs defined under a given function.
3502 *
3503 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3504 * no GPIO has been assigned to the requested function, or another IS_ERR()
3505 * code if an error occurred while trying to acquire the GPIOs.
3506 */
3507struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3508 const char *con_id,
3509 enum gpiod_flags flags)
3510{
3511 struct gpio_desc *desc;
3512 struct gpio_descs *descs;
3513 int count;
3514
3515 count = gpiod_count(dev, con_id);
3516 if (count < 0)
3517 return ERR_PTR(count);
3518
3519 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3520 GFP_KERNEL);
3521 if (!descs)
3522 return ERR_PTR(-ENOMEM);
3523
3524 for (descs->ndescs = 0; descs->ndescs < count; ) {
3525 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3526 if (IS_ERR(desc)) {
3527 gpiod_put_array(descs);
3528 return ERR_CAST(desc);
3529 }
3530 descs->desc[descs->ndescs] = desc;
3531 descs->ndescs++;
3532 }
3533 return descs;
3534}
3535EXPORT_SYMBOL_GPL(gpiod_get_array);
3536
3537/**
3538 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3539 * function
3540 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3541 * @con_id: function within the GPIO consumer
3542 * @flags: optional GPIO initialization flags
3543 *
3544 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3545 * assigned to the requested function it will return NULL.
3546 */
3547struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3548 const char *con_id,
3549 enum gpiod_flags flags)
3550{
3551 struct gpio_descs *descs;
3552
3553 descs = gpiod_get_array(dev, con_id, flags);
3554 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3555 return NULL;
3556
3557 return descs;
3558}
3559EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3560
3561/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003562 * gpiod_put - dispose of a GPIO descriptor
3563 * @desc: GPIO descriptor to dispose of
3564 *
3565 * No descriptor can be used after gpiod_put() has been called on it.
3566 */
3567void gpiod_put(struct gpio_desc *desc)
3568{
3569 gpiod_free(desc);
3570}
3571EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08003572
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003573/**
3574 * gpiod_put_array - dispose of multiple GPIO descriptors
3575 * @descs: struct gpio_descs containing an array of descriptors
3576 */
3577void gpiod_put_array(struct gpio_descs *descs)
3578{
3579 unsigned int i;
3580
3581 for (i = 0; i < descs->ndescs; i++)
3582 gpiod_put(descs->desc[i]);
3583
3584 kfree(descs);
3585}
3586EXPORT_SYMBOL_GPL(gpiod_put_array);
3587
Linus Walleij3c702e92015-10-21 15:29:53 +02003588static int __init gpiolib_dev_init(void)
3589{
3590 int ret;
3591
3592 /* Register GPIO sysfs bus */
3593 ret = bus_register(&gpio_bus_type);
3594 if (ret < 0) {
3595 pr_err("gpiolib: could not register GPIO bus type\n");
3596 return ret;
3597 }
3598
3599 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3600 if (ret < 0) {
3601 pr_err("gpiolib: failed to allocate char dev region\n");
3602 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07003603 } else {
3604 gpiolib_initialized = true;
3605 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02003606 }
3607 return ret;
3608}
3609core_initcall(gpiolib_dev_init);
3610
David Brownelld2876d02008-02-04 22:28:20 -08003611#ifdef CONFIG_DEBUG_FS
3612
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003613static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08003614{
3615 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003616 struct gpio_chip *chip = gdev->chip;
3617 unsigned gpio = gdev->base;
3618 struct gpio_desc *gdesc = &gdev->descs[0];
David Brownelld2876d02008-02-04 22:28:20 -08003619 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02003620 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08003621
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003622 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02003623 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3624 if (gdesc->name) {
3625 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3626 gpio, gdesc->name);
3627 }
David Brownelld2876d02008-02-04 22:28:20 -08003628 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02003629 }
David Brownelld2876d02008-02-04 22:28:20 -08003630
Alexandre Courbot372e7222013-02-03 01:29:29 +09003631 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08003632 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02003633 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02003634 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3635 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08003636 is_out ? "out" : "in ",
3637 chip->get
3638 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02003639 : "? ",
3640 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08003641 seq_printf(s, "\n");
3642 }
3643}
3644
Thierry Redingf9c4a312012-04-12 13:26:01 +02003645static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08003646{
Grant Likely362432a2013-02-09 09:41:49 +00003647 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003648 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003649 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003650
3651 s->private = "";
3652
Grant Likely362432a2013-02-09 09:41:49 +00003653 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003654 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00003655 if (index-- == 0) {
3656 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003657 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00003658 }
3659 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003660
3661 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003662}
3663
3664static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3665{
Grant Likely362432a2013-02-09 09:41:49 +00003666 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003667 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003668 void *ret = NULL;
3669
Grant Likely362432a2013-02-09 09:41:49 +00003670 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003671 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003672 ret = NULL;
3673 else
Linus Walleijff2b1352015-10-20 11:10:38 +02003674 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00003675 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003676
3677 s->private = "\n";
3678 ++*pos;
3679
3680 return ret;
3681}
3682
3683static void gpiolib_seq_stop(struct seq_file *s, void *v)
3684{
3685}
3686
3687static int gpiolib_seq_show(struct seq_file *s, void *v)
3688{
Linus Walleijff2b1352015-10-20 11:10:38 +02003689 struct gpio_device *gdev = v;
3690 struct gpio_chip *chip = gdev->chip;
3691 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003692
Linus Walleijff2b1352015-10-20 11:10:38 +02003693 if (!chip) {
3694 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3695 dev_name(&gdev->dev));
3696 return 0;
3697 }
3698
3699 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3700 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003701 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02003702 parent = chip->parent;
3703 if (parent)
3704 seq_printf(s, ", parent: %s/%s",
3705 parent->bus ? parent->bus->name : "no-bus",
3706 dev_name(parent));
Thierry Redingf9c4a312012-04-12 13:26:01 +02003707 if (chip->label)
3708 seq_printf(s, ", %s", chip->label);
3709 if (chip->can_sleep)
3710 seq_printf(s, ", can sleep");
3711 seq_printf(s, ":\n");
3712
3713 if (chip->dbg_show)
3714 chip->dbg_show(s, chip);
3715 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003716 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003717
David Brownelld2876d02008-02-04 22:28:20 -08003718 return 0;
3719}
3720
Thierry Redingf9c4a312012-04-12 13:26:01 +02003721static const struct seq_operations gpiolib_seq_ops = {
3722 .start = gpiolib_seq_start,
3723 .next = gpiolib_seq_next,
3724 .stop = gpiolib_seq_stop,
3725 .show = gpiolib_seq_show,
3726};
3727
David Brownelld2876d02008-02-04 22:28:20 -08003728static int gpiolib_open(struct inode *inode, struct file *file)
3729{
Thierry Redingf9c4a312012-04-12 13:26:01 +02003730 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08003731}
3732
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003733static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02003734 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08003735 .open = gpiolib_open,
3736 .read = seq_read,
3737 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02003738 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08003739};
3740
3741static int __init gpiolib_debugfs_init(void)
3742{
3743 /* /sys/kernel/debug/gpio */
3744 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3745 NULL, NULL, &gpiolib_operations);
3746 return 0;
3747}
3748subsys_initcall(gpiolib_debugfs_init);
3749
3750#endif /* DEBUG_FS */