blob: cd003b74512f692e2ec67eca68bd1f4d80db0e39 [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;
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200707 int ret, level;
Linus Walleij61f922d2016-06-02 11:30:15 +0200708
709 ge.timestamp = ktime_get_real_ns();
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200710 level = gpiod_get_value_cansleep(le->desc);
Linus Walleij61f922d2016-06-02 11:30:15 +0200711
Bartosz Golaszewskiad537b82017-06-23 13:45:16 +0200712 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
713 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200714 if (level)
715 /* Emit low-to-high event */
716 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
717 else
718 /* Emit high-to-low event */
719 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200720 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE && level) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200721 /* Emit low-to-high event */
722 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200723 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE && !level) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200724 /* Emit high-to-low event */
725 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200726 } else {
727 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200728 }
729
730 ret = kfifo_put(&le->events, ge);
731 if (ret != 0)
732 wake_up_poll(&le->wait, POLLIN);
733
734 return IRQ_HANDLED;
735}
736
737static int lineevent_create(struct gpio_device *gdev, void __user *ip)
738{
739 struct gpioevent_request eventreq;
740 struct lineevent_state *le;
741 struct gpio_desc *desc;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200742 struct file *file;
Linus Walleij61f922d2016-06-02 11:30:15 +0200743 u32 offset;
744 u32 lflags;
745 u32 eflags;
746 int fd;
747 int ret;
748 int irqflags = 0;
749
750 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
751 return -EFAULT;
752
753 le = kzalloc(sizeof(*le), GFP_KERNEL);
754 if (!le)
755 return -ENOMEM;
756 le->gdev = gdev;
757 get_device(&gdev->dev);
758
759 /* Make sure this is terminated */
760 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
761 if (strlen(eventreq.consumer_label)) {
762 le->label = kstrdup(eventreq.consumer_label,
763 GFP_KERNEL);
764 if (!le->label) {
765 ret = -ENOMEM;
766 goto out_free_le;
767 }
768 }
769
770 offset = eventreq.lineoffset;
771 lflags = eventreq.handleflags;
772 eflags = eventreq.eventflags;
773
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200774 if (offset >= gdev->ngpio) {
775 ret = -EINVAL;
776 goto out_free_label;
777 }
778
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200779 /* Return an error if a unknown flag is set */
780 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
781 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
782 ret = -EINVAL;
783 goto out_free_label;
784 }
785
Linus Walleij61f922d2016-06-02 11:30:15 +0200786 /* This is just wrong: we don't look for events on output lines */
787 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
788 ret = -EINVAL;
789 goto out_free_label;
790 }
791
792 desc = &gdev->descs[offset];
793 ret = gpiod_request(desc, le->label);
794 if (ret)
795 goto out_free_desc;
796 le->desc = desc;
797 le->eflags = eflags;
798
799 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
800 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
801 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
802 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
803 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
804 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
805
806 ret = gpiod_direction_input(desc);
807 if (ret)
808 goto out_free_desc;
809
810 le->irq = gpiod_to_irq(desc);
811 if (le->irq <= 0) {
812 ret = -ENODEV;
813 goto out_free_desc;
814 }
815
816 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
817 irqflags |= IRQF_TRIGGER_RISING;
818 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
819 irqflags |= IRQF_TRIGGER_FALLING;
820 irqflags |= IRQF_ONESHOT;
821 irqflags |= IRQF_SHARED;
822
823 INIT_KFIFO(le->events);
824 init_waitqueue_head(&le->wait);
825 mutex_init(&le->read_lock);
826
827 /* Request a thread to read the events */
828 ret = request_threaded_irq(le->irq,
829 NULL,
830 lineevent_irq_thread,
831 irqflags,
832 le->label,
833 le);
834 if (ret)
835 goto out_free_desc;
836
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200837 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleij61f922d2016-06-02 11:30:15 +0200838 if (fd < 0) {
839 ret = fd;
840 goto out_free_irq;
841 }
842
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200843 file = anon_inode_getfile("gpio-event",
844 &lineevent_fileops,
845 le,
846 O_RDONLY | O_CLOEXEC);
847 if (IS_ERR(file)) {
848 ret = PTR_ERR(file);
849 goto out_put_unused_fd;
850 }
851
Linus Walleij61f922d2016-06-02 11:30:15 +0200852 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200853 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200854 /*
855 * fput() will trigger the release() callback, so do not go onto
856 * the regular error cleanup path here.
857 */
858 fput(file);
859 put_unused_fd(fd);
860 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200861 }
Linus Walleij61f922d2016-06-02 11:30:15 +0200862
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200863 fd_install(fd, file);
864
Linus Walleij61f922d2016-06-02 11:30:15 +0200865 return 0;
866
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200867out_put_unused_fd:
868 put_unused_fd(fd);
Linus Walleij61f922d2016-06-02 11:30:15 +0200869out_free_irq:
870 free_irq(le->irq, le);
871out_free_desc:
872 gpiod_free(le->desc);
873out_free_label:
874 kfree(le->label);
875out_free_le:
876 kfree(le);
877 put_device(&gdev->dev);
878 return ret;
879}
880
Linus Walleij3c702e92015-10-21 15:29:53 +0200881/**
882 * gpio_ioctl() - ioctl handler for the GPIO chardev
883 */
884static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
885{
886 struct gpio_device *gdev = filp->private_data;
887 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +0200888 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +0200889
890 /* We fail any subsequent ioctl():s when the chip is gone */
891 if (!chip)
892 return -ENODEV;
893
Linus Walleij521a2ad2016-02-12 22:25:22 +0100894 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +0200895 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +0100896 struct gpiochip_info chipinfo;
897
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +0200898 memset(&chipinfo, 0, sizeof(chipinfo));
899
Linus Walleij3c702e92015-10-21 15:29:53 +0200900 strncpy(chipinfo.name, dev_name(&gdev->dev),
901 sizeof(chipinfo.name));
902 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +0100903 strncpy(chipinfo.label, gdev->label,
904 sizeof(chipinfo.label));
905 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100906 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +0200907 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
908 return -EFAULT;
909 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +0100910 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
911 struct gpioline_info lineinfo;
912 struct gpio_desc *desc;
913
914 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
915 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +0200916 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +0100917 return -EINVAL;
918
919 desc = &gdev->descs[lineinfo.line_offset];
920 if (desc->name) {
921 strncpy(lineinfo.name, desc->name,
922 sizeof(lineinfo.name));
923 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
924 } else {
925 lineinfo.name[0] = '\0';
926 }
927 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +0100928 strncpy(lineinfo.consumer, desc->label,
929 sizeof(lineinfo.consumer));
930 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100931 } else {
Linus Walleij214338e2016-02-25 21:01:48 +0100932 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100933 }
934
935 /*
936 * Userspace only need to know that the kernel is using
937 * this GPIO so it can't use it.
938 */
939 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100940 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
941 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
942 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
943 test_bit(FLAG_EXPORT, &desc->flags) ||
944 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100945 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100946 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100947 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100948 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100949 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100950 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100951 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100952 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100953 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
954
955 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
956 return -EFAULT;
957 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200958 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
959 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +0200960 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
961 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +0200962 }
963 return -EINVAL;
964}
965
Linus Walleij8b92e172016-05-27 14:24:04 +0200966#ifdef CONFIG_COMPAT
967static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
968 unsigned long arg)
969{
970 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
971}
972#endif
973
Linus Walleij3c702e92015-10-21 15:29:53 +0200974/**
975 * gpio_chrdev_open() - open the chardev for ioctl operations
976 * @inode: inode for this chardev
977 * @filp: file struct for storing private data
978 * Returns 0 on success
979 */
980static int gpio_chrdev_open(struct inode *inode, struct file *filp)
981{
982 struct gpio_device *gdev = container_of(inode->i_cdev,
983 struct gpio_device, chrdev);
984
985 /* Fail on open if the backing gpiochip is gone */
Stephen Boydfb505742017-01-09 11:47:44 -0800986 if (!gdev->chip)
Linus Walleij3c702e92015-10-21 15:29:53 +0200987 return -ENODEV;
988 get_device(&gdev->dev);
989 filp->private_data = gdev;
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +0100990
991 return nonseekable_open(inode, filp);
Linus Walleij3c702e92015-10-21 15:29:53 +0200992}
993
994/**
995 * gpio_chrdev_release() - close chardev after ioctl operations
996 * @inode: inode for this chardev
997 * @filp: file struct for storing private data
998 * Returns 0 on success
999 */
1000static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1001{
1002 struct gpio_device *gdev = container_of(inode->i_cdev,
1003 struct gpio_device, chrdev);
1004
Linus Walleij3c702e92015-10-21 15:29:53 +02001005 put_device(&gdev->dev);
1006 return 0;
1007}
1008
1009
1010static const struct file_operations gpio_fileops = {
1011 .release = gpio_chrdev_release,
1012 .open = gpio_chrdev_open,
1013 .owner = THIS_MODULE,
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001014 .llseek = no_llseek,
Linus Walleij3c702e92015-10-21 15:29:53 +02001015 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +02001016#ifdef CONFIG_COMPAT
1017 .compat_ioctl = gpio_ioctl_compat,
1018#endif
Linus Walleij3c702e92015-10-21 15:29:53 +02001019};
1020
Linus Walleijff2b1352015-10-20 11:10:38 +02001021static void gpiodevice_release(struct device *dev)
1022{
1023 struct gpio_device *gdev = dev_get_drvdata(dev);
1024
1025 list_del(&gdev->list);
1026 ida_simple_remove(&gpio_ida, gdev->id);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001027 kfree(gdev->label);
1028 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +01001029 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001030}
1031
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001032static int gpiochip_setup_dev(struct gpio_device *gdev)
1033{
1034 int status;
1035
1036 cdev_init(&gdev->chrdev, &gpio_fileops);
1037 gdev->chrdev.owner = THIS_MODULE;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001038 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001039
1040 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001041 if (status)
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001042 return status;
1043
1044 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1045 MAJOR(gpio_devt), gdev->id);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001046
1047 status = gpiochip_sysfs_register(gdev);
1048 if (status)
1049 goto err_remove_device;
1050
1051 /* From this point, the .release() function cleans up gpio_device */
1052 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001053 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1054 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1055 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1056
1057 return 0;
1058
1059err_remove_device:
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001060 cdev_device_del(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001061 return status;
1062}
1063
1064static void gpiochip_setup_devs(void)
1065{
1066 struct gpio_device *gdev;
1067 int err;
1068
1069 list_for_each_entry(gdev, &gpio_devices, list) {
1070 err = gpiochip_setup_dev(gdev);
1071 if (err)
1072 pr_err("%s: Failed to initialize gpio device (%d)\n",
1073 dev_name(&gdev->dev), err);
1074 }
1075}
1076
Anton Vorontsov169b6a72008-04-28 02:14:47 -07001077/**
Linus Walleijb08ea352015-12-03 15:14:13 +01001078 * gpiochip_add_data() - register a gpio_chip
David Brownelld2876d02008-02-04 22:28:20 -08001079 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001080 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -08001081 *
1082 * Returns a negative errno if the chip can't be registered, such as
1083 * because the chip->base is invalid or already associated with a
1084 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001085 *
Linus Walleijb08ea352015-12-03 15:14:13 +01001086 * When gpiochip_add_data() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001087 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d82008-07-25 01:46:07 -07001088 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1089 * for GPIOs will fail rudely.
1090 *
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001091 * gpiochip_add_data() must only be called after gpiolib initialization,
1092 * ie after core_initcall().
1093 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001094 * If chip->base is negative, this requests dynamic assignment of
1095 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001096 */
Linus Walleijb08ea352015-12-03 15:14:13 +01001097int gpiochip_add_data(struct gpio_chip *chip, void *data)
David Brownelld2876d02008-02-04 22:28:20 -08001098{
1099 unsigned long flags;
1100 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001101 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001102 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001103 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001104
Linus Walleijff2b1352015-10-20 11:10:38 +02001105 /*
1106 * First: allocate and populate the internal stat container, and
1107 * set up the struct device.
1108 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001109 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001110 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001111 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001112 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001113 gdev->chip = chip;
1114 chip->gpiodev = gdev;
1115 if (chip->parent) {
1116 gdev->dev.parent = chip->parent;
1117 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001118 }
1119
Linus Walleijff2b1352015-10-20 11:10:38 +02001120#ifdef CONFIG_OF_GPIO
1121 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001122 if (chip->of_node)
1123 gdev->dev.of_node = chip->of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001124#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001125
Linus Walleijff2b1352015-10-20 11:10:38 +02001126 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1127 if (gdev->id < 0) {
1128 status = gdev->id;
1129 goto err_free_gdev;
1130 }
1131 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1132 device_initialize(&gdev->dev);
1133 dev_set_drvdata(&gdev->dev, gdev);
1134 if (chip->parent && chip->parent->driver)
1135 gdev->owner = chip->parent->driver->owner;
1136 else if (chip->owner)
1137 /* TODO: remove chip->owner */
1138 gdev->owner = chip->owner;
1139 else
1140 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001141
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001142 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001143 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001144 status = -ENOMEM;
1145 goto err_free_gdev;
1146 }
1147
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001148 if (chip->ngpio == 0) {
1149 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001150 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001151 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001152 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001153
1154 if (chip->label)
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001155 gdev->label = kstrdup(chip->label, GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001156 else
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001157 gdev->label = kstrdup("unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001158 if (!gdev->label) {
1159 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001160 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001161 }
1162
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001163 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001164 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001165
David Brownelld2876d02008-02-04 22:28:20 -08001166 spin_lock_irqsave(&gpio_lock, flags);
1167
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001168 /*
1169 * TODO: this allocates a Linux GPIO number base in the global
1170 * GPIO numberspace for this chip. In the long run we want to
1171 * get *rid* of this numberspace and use only descriptors, but
1172 * it may be a pipe dream. It will not happen before we get rid
1173 * of the sysfs interface anyways.
1174 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001175 if (base < 0) {
1176 base = gpiochip_find_base(chip->ngpio);
1177 if (base < 0) {
1178 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001179 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001180 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001181 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001182 /*
1183 * TODO: it should not be necessary to reflect the assigned
1184 * base outside of the GPIO subsystem. Go over drivers and
1185 * see if anyone makes use of this, else drop this and assign
1186 * a poison instead.
1187 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001188 chip->base = base;
1189 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001190 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001191
Linus Walleijff2b1352015-10-20 11:10:38 +02001192 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001193 if (status) {
1194 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001195 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001196 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001197
Linus Walleij545ebd92016-05-30 17:11:59 +02001198 spin_unlock_irqrestore(&gpio_lock, flags);
1199
Linus Walleijff2b1352015-10-20 11:10:38 +02001200 for (i = 0; i < chip->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001201 struct gpio_desc *desc = &gdev->descs[i];
David Brownelld8f388d82008-07-25 01:46:07 -07001202
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001203 desc->gdev = gdev;
Linus Walleij72d32002016-04-28 13:33:59 +02001204 /*
1205 * REVISIT: most hardware initializes GPIOs as inputs
1206 * (often with pullups enabled) so power usage is
1207 * minimized. Linux code should set the gpio direction
1208 * first thing; but until it does, and in case
1209 * chip->get_direction is not set, we may expose the
1210 * wrong direction in sysfs.
Johan Hovold05aa5202015-01-12 17:12:26 +01001211 */
Linus Walleij72d32002016-04-28 13:33:59 +02001212
1213 if (chip->get_direction) {
1214 /*
1215 * If we have .get_direction, set up the initial
1216 * direction flag from the hardware.
1217 */
1218 int dir = chip->get_direction(chip, i);
1219
1220 if (!dir)
1221 set_bit(FLAG_IS_OUT, &desc->flags);
1222 } else if (!chip->direction_input) {
1223 /*
1224 * If the chip lacks the .direction_input callback
1225 * we logically assume all lines are outputs.
1226 */
1227 set_bit(FLAG_IS_OUT, &desc->flags);
1228 }
David Brownelld2876d02008-02-04 22:28:20 -08001229 }
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001230
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301231#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001232 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301233#endif
1234
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001235 status = gpiochip_set_desc_names(chip);
1236 if (status)
1237 goto err_remove_from_list;
1238
Mika Westerberg79b804c2016-09-20 15:15:21 +03001239 status = gpiochip_irqchip_init_valid_mask(chip);
1240 if (status)
1241 goto err_remove_from_list;
1242
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001243 status = of_gpiochip_add(chip);
1244 if (status)
1245 goto err_remove_chip;
1246
Mika Westerberg664e3e52014-01-08 12:40:54 +02001247 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001248
Linus Walleij3c702e92015-10-21 15:29:53 +02001249 /*
1250 * By first adding the chardev, and then adding the device,
1251 * we get a device node entry in sysfs under
1252 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1253 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001254 * We can do this only if gpiolib has been initialized.
1255 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001256 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001257 if (gpiolib_initialized) {
1258 status = gpiochip_setup_dev(gdev);
1259 if (status)
1260 goto err_remove_chip;
1261 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001262 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001263
Johan Hovold225fce82015-01-12 17:12:25 +01001264err_remove_chip:
1265 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001266 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001267 of_gpiochip_remove(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001268 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001269err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001270 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001271 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001272 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001273err_free_label:
1274 kfree(gdev->label);
1275err_free_descs:
1276 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001277err_free_gdev:
1278 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001279 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +02001280 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001281 gdev->base, gdev->base + gdev->ngpio - 1,
1282 chip->label ? : "generic");
1283 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001284 return status;
1285}
Linus Walleijb08ea352015-12-03 15:14:13 +01001286EXPORT_SYMBOL_GPL(gpiochip_add_data);
David Brownelld2876d02008-02-04 22:28:20 -08001287
1288/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001289 * gpiochip_get_data() - get per-subdriver data for the chip
1290 */
1291void *gpiochip_get_data(struct gpio_chip *chip)
1292{
1293 return chip->gpiodev->data;
1294}
1295EXPORT_SYMBOL_GPL(gpiochip_get_data);
1296
1297/**
David Brownelld2876d02008-02-04 22:28:20 -08001298 * gpiochip_remove() - unregister a gpio_chip
1299 * @chip: the chip to unregister
1300 *
1301 * A gpio_chip with any GPIOs still requested may not be removed.
1302 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001303void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001304{
Linus Walleijff2b1352015-10-20 11:10:38 +02001305 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001306 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001307 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001308 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001309 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001310
Linus Walleijff2b1352015-10-20 11:10:38 +02001311 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001312 gpiochip_sysfs_unregister(gdev);
Geert Uytterhoeven5018ada2016-12-19 18:29:23 +01001313 gpiochip_free_hogs(chip);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001314 /* Numb the device, cancelling all outstanding operations */
1315 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001316 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001317 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001318 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001319 of_gpiochip_remove(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001320 /*
1321 * We accept no more calls into the driver from this point, so
1322 * NULL the driver data pointer
1323 */
1324 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001325
Johan Hovold6798aca2015-01-12 17:12:28 +01001326 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001327 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001328 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001329 if (test_bit(FLAG_REQUESTED, &desc->flags))
1330 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001331 }
David Brownelld2876d02008-02-04 22:28:20 -08001332 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001333
Johan Hovoldfab28b82015-05-04 17:10:27 +02001334 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001335 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001336 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001337
Linus Walleijff2b1352015-10-20 11:10:38 +02001338 /*
1339 * The gpiochip side puts its use of the device to rest here:
1340 * if there are no userspace clients, the chardev and device will
1341 * be removed, else it will be dangling until the last user is
1342 * gone.
1343 */
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001344 cdev_device_del(&gdev->chrdev, &gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001345 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001346}
1347EXPORT_SYMBOL_GPL(gpiochip_remove);
1348
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301349static void devm_gpio_chip_release(struct device *dev, void *res)
1350{
1351 struct gpio_chip *chip = *(struct gpio_chip **)res;
1352
1353 gpiochip_remove(chip);
1354}
1355
1356static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1357
1358{
1359 struct gpio_chip **r = res;
1360
1361 if (!r || !*r) {
1362 WARN_ON(!r || !*r);
1363 return 0;
1364 }
1365
1366 return *r == data;
1367}
1368
1369/**
1370 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1371 * @dev: the device pointer on which irq_chip belongs to.
1372 * @chip: the chip to register, with chip->base initialized
1373 * Context: potentially before irqs will work
1374 *
1375 * Returns a negative errno if the chip can't be registered, such as
1376 * because the chip->base is invalid or already associated with a
1377 * different chip. Otherwise it returns zero as a success code.
1378 *
1379 * The gpio chip automatically be released when the device is unbound.
1380 */
1381int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1382 void *data)
1383{
1384 struct gpio_chip **ptr;
1385 int ret;
1386
1387 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1388 GFP_KERNEL);
1389 if (!ptr)
1390 return -ENOMEM;
1391
1392 ret = gpiochip_add_data(chip, data);
1393 if (ret < 0) {
1394 devres_free(ptr);
1395 return ret;
1396 }
1397
1398 *ptr = chip;
1399 devres_add(dev, ptr);
1400
1401 return 0;
1402}
1403EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1404
1405/**
1406 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1407 * @dev: device for which which resource was allocated
1408 * @chip: the chip to remove
1409 *
1410 * A gpio_chip with any GPIOs still requested may not be removed.
1411 */
1412void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1413{
1414 int ret;
1415
1416 ret = devres_release(dev, devm_gpio_chip_release,
1417 devm_gpio_chip_match, chip);
Christophe JAILLET3988d662017-01-27 12:56:42 +01001418 WARN_ON(ret);
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301419}
1420EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1421
Grant Likely594fa262010-06-08 07:48:16 -06001422/**
1423 * gpiochip_find() - iterator for locating a specific gpio_chip
1424 * @data: data to pass to match function
1425 * @callback: Callback function to check gpio_chip
1426 *
1427 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1428 * determined by a user supplied @match callback. The callback should return
1429 * 0 if the device doesn't match and non-zero if it does. If the callback is
1430 * non-zero, this function will return to the caller and not iterate over any
1431 * more gpio_chips.
1432 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001433struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001434 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001435 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001436{
Linus Walleijff2b1352015-10-20 11:10:38 +02001437 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001438 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001439 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001440
1441 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001442 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001443 if (gdev->chip && match(gdev->chip, data)) {
1444 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001445 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001446 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001447
Grant Likely594fa262010-06-08 07:48:16 -06001448 spin_unlock_irqrestore(&gpio_lock, flags);
1449
1450 return chip;
1451}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001452EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001453
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001454static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1455{
1456 const char *name = data;
1457
1458 return !strcmp(chip->label, name);
1459}
1460
1461static struct gpio_chip *find_chip_by_name(const char *name)
1462{
1463 return gpiochip_find((void *)name, gpiochip_match_name);
1464}
1465
Linus Walleij14250522014-03-25 10:40:18 +01001466#ifdef CONFIG_GPIOLIB_IRQCHIP
1467
1468/*
1469 * The following is irqchip helper code for gpiochips.
1470 */
1471
Mika Westerberg79b804c2016-09-20 15:15:21 +03001472static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1473{
Mika Westerberg79b804c2016-09-20 15:15:21 +03001474 if (!gpiochip->irq_need_valid_mask)
1475 return 0;
1476
1477 gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
1478 sizeof(long), GFP_KERNEL);
1479 if (!gpiochip->irq_valid_mask)
1480 return -ENOMEM;
1481
1482 /* Assume by default all GPIOs are valid */
Andy Shevchenko923a6542017-05-25 16:08:38 +03001483 bitmap_fill(gpiochip->irq_valid_mask, gpiochip->ngpio);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001484
1485 return 0;
1486}
1487
1488static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1489{
1490 kfree(gpiochip->irq_valid_mask);
1491 gpiochip->irq_valid_mask = NULL;
1492}
1493
1494static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1495 unsigned int offset)
1496{
1497 /* No mask means all valid */
1498 if (likely(!gpiochip->irq_valid_mask))
1499 return true;
1500 return test_bit(offset, gpiochip->irq_valid_mask);
1501}
1502
Linus Walleij14250522014-03-25 10:40:18 +01001503/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001504 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001505 * @gpiochip: the gpiochip to set the irqchip chain to
1506 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001507 * @parent_irq: the irq number corresponding to the parent IRQ for this
1508 * chained irqchip
1509 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001510 * coming out of the gpiochip. If the interrupt is nested rather than
1511 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001512 */
Linus Walleijd245b3f2016-11-24 10:57:25 +01001513static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1514 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001515 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001516 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001517{
Linus Walleij83141a72014-09-26 13:50:12 +02001518 unsigned int offset;
1519
Linus Walleij83141a72014-09-26 13:50:12 +02001520 if (!gpiochip->irqdomain) {
1521 chip_err(gpiochip, "called %s before setting up irqchip\n",
1522 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001523 return;
1524 }
1525
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001526 if (parent_handler) {
1527 if (gpiochip->can_sleep) {
1528 chip_err(gpiochip,
1529 "you cannot have chained interrupts on a "
1530 "chip that may sleep\n");
1531 return;
1532 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001533 /*
1534 * The parent irqchip is already using the chip_data for this
1535 * irqchip, so our callbacks simply use the handler_data.
1536 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001537 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1538 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001539
Linus Walleijd245b3f2016-11-24 10:57:25 +01001540 gpiochip->irq_chained_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001541 }
Linus Walleij83141a72014-09-26 13:50:12 +02001542
1543 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001544 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1545 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1546 continue;
Linus Walleij83141a72014-09-26 13:50:12 +02001547 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
1548 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001549 }
Linus Walleij14250522014-03-25 10:40:18 +01001550}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001551
1552/**
1553 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1554 * @gpiochip: the gpiochip to set the irqchip chain to
1555 * @irqchip: the irqchip to chain to the gpiochip
1556 * @parent_irq: the irq number corresponding to the parent IRQ for this
1557 * chained irqchip
1558 * @parent_handler: the parent interrupt handler for the accumulated IRQ
1559 * coming out of the gpiochip. If the interrupt is nested rather than
1560 * cascaded, pass NULL in this handler argument
1561 */
1562void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1563 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001564 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001565 irq_flow_handler_t parent_handler)
1566{
1567 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1568 parent_handler);
1569}
Linus Walleij14250522014-03-25 10:40:18 +01001570EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1571
1572/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001573 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1574 * @gpiochip: the gpiochip to set the irqchip nested handler to
1575 * @irqchip: the irqchip to nest to the gpiochip
1576 * @parent_irq: the irq number corresponding to the parent IRQ for this
1577 * nested irqchip
1578 */
1579void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1580 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001581 unsigned int parent_irq)
Linus Walleijd245b3f2016-11-24 10:57:25 +01001582{
1583 if (!gpiochip->irq_nested) {
1584 chip_err(gpiochip, "tried to nest a chained gpiochip\n");
1585 return;
1586 }
1587 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1588 NULL);
1589}
1590EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1591
1592/**
Linus Walleij14250522014-03-25 10:40:18 +01001593 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1594 * @d: the irqdomain used by this irqchip
1595 * @irq: the global irq number used by this GPIO irqchip irq
1596 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1597 *
1598 * This function will set up the mapping for a certain IRQ line on a
1599 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1600 * stored inside the gpiochip.
1601 */
1602static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1603 irq_hw_number_t hwirq)
1604{
1605 struct gpio_chip *chip = d->host_data;
1606
Linus Walleij14250522014-03-25 10:40:18 +01001607 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001608 /*
1609 * This lock class tells lockdep that GPIO irqs are in a different
1610 * category than their parents, so it won't report false recursion.
1611 */
1612 irq_set_lockdep_class(irq, chip->lock_key);
Linus Walleij7633fb92014-04-09 13:20:38 +02001613 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001614 /* Chips that use nested thread handlers have them marked */
1615 if (chip->irq_nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001616 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001617 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001618
Linus Walleij1333b902014-04-23 16:45:12 +02001619 /*
1620 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1621 * is passed as default type.
1622 */
1623 if (chip->irq_default_type != IRQ_TYPE_NONE)
1624 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001625
1626 return 0;
1627}
1628
Linus Walleijc3626fd2014-03-28 20:42:01 +01001629static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1630{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001631 struct gpio_chip *chip = d->host_data;
1632
Linus Walleijd245b3f2016-11-24 10:57:25 +01001633 if (chip->irq_nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001634 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001635 irq_set_chip_and_handler(irq, NULL, NULL);
1636 irq_set_chip_data(irq, NULL);
1637}
1638
Linus Walleij14250522014-03-25 10:40:18 +01001639static const struct irq_domain_ops gpiochip_domain_ops = {
1640 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001641 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001642 /* Virtually all GPIO irqchips are twocell:ed */
1643 .xlate = irq_domain_xlate_twocell,
1644};
1645
1646static int gpiochip_irq_reqres(struct irq_data *d)
1647{
1648 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1649
Linus Walleijff2b1352015-10-20 11:10:38 +02001650 if (!try_module_get(chip->gpiodev->owner))
Grygorii Strashko5b76e792015-06-25 20:30:50 +03001651 return -ENODEV;
1652
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001653 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +01001654 chip_err(chip,
1655 "unable to lock HW IRQ %lu for IRQ\n",
1656 d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001657 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001658 return -EINVAL;
1659 }
1660 return 0;
1661}
1662
1663static void gpiochip_irq_relres(struct irq_data *d)
1664{
1665 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1666
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001667 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001668 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001669}
1670
1671static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1672{
1673 return irq_find_mapping(chip->irqdomain, offset);
1674}
1675
1676/**
1677 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1678 * @gpiochip: the gpiochip to remove the irqchip from
1679 *
1680 * This is called only from gpiochip_remove()
1681 */
1682static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1683{
Linus Walleijc3626fd2014-03-28 20:42:01 +01001684 unsigned int offset;
1685
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001686 acpi_gpiochip_free_interrupts(gpiochip);
1687
Linus Walleijd245b3f2016-11-24 10:57:25 +01001688 if (gpiochip->irq_chained_parent) {
1689 irq_set_chained_handler(gpiochip->irq_chained_parent, NULL);
1690 irq_set_handler_data(gpiochip->irq_chained_parent, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001691 }
1692
Linus Walleijc3626fd2014-03-28 20:42:01 +01001693 /* Remove all IRQ mappings and delete the domain */
1694 if (gpiochip->irqdomain) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001695 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1696 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1697 continue;
Grygorii Strashkoe3893382014-09-25 19:09:23 +03001698 irq_dispose_mapping(
1699 irq_find_mapping(gpiochip->irqdomain, offset));
Mika Westerberg79b804c2016-09-20 15:15:21 +03001700 }
Linus Walleij14250522014-03-25 10:40:18 +01001701 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001702 }
Linus Walleij14250522014-03-25 10:40:18 +01001703
1704 if (gpiochip->irqchip) {
1705 gpiochip->irqchip->irq_request_resources = NULL;
1706 gpiochip->irqchip->irq_release_resources = NULL;
1707 gpiochip->irqchip = NULL;
1708 }
Mika Westerberg79b804c2016-09-20 15:15:21 +03001709
1710 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01001711}
1712
1713/**
Linus Walleij739e6f52017-01-11 13:37:07 +01001714 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001715 * @gpiochip: the gpiochip to add the irqchip to
1716 * @irqchip: the irqchip to add to the gpiochip
1717 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1718 * allocate gpiochip irqs from
1719 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02001720 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1721 * to have the core avoid setting up any default type in the hardware.
Linus Walleijd245b3f2016-11-24 10:57:25 +01001722 * @nested: whether this is a nested irqchip calling handle_nested_irq()
1723 * in its IRQ handler
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001724 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +01001725 *
1726 * This function closely associates a certain irqchip with a certain
1727 * gpiochip, providing an irq domain to translate the local IRQs to
1728 * global irqs in the gpiolib core, and making sure that the gpiochip
1729 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01001730 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01001731 * from the gpiochip passed as chip data. An irqdomain will be stored
1732 * in the gpiochip that shall be used by the driver to handle IRQ number
1733 * translation. The gpiochip will need to be initialized and registered
1734 * before calling this function.
1735 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01001736 * This function will handle two cell:ed simple IRQs and assumes all
1737 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01001738 * need to be open coded.
1739 */
Linus Walleij739e6f52017-01-11 13:37:07 +01001740int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
1741 struct irq_chip *irqchip,
1742 unsigned int first_irq,
1743 irq_flow_handler_t handler,
1744 unsigned int type,
1745 bool nested,
1746 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +01001747{
1748 struct device_node *of_node;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001749 bool irq_base_set = false;
Linus Walleij14250522014-03-25 10:40:18 +01001750 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001751 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001752
1753 if (!gpiochip || !irqchip)
1754 return -EINVAL;
1755
Linus Walleij58383c782015-11-04 09:56:26 +01001756 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01001757 pr_err("missing gpiochip .dev parent pointer\n");
1758 return -EINVAL;
1759 }
Linus Walleijd245b3f2016-11-24 10:57:25 +01001760 gpiochip->irq_nested = nested;
Linus Walleij58383c782015-11-04 09:56:26 +01001761 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001762#ifdef CONFIG_OF_GPIO
1763 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07001764 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001765 * FIXME: get rid of this and use gpiochip->parent->of_node
1766 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01001767 */
1768 if (gpiochip->of_node)
1769 of_node = gpiochip->of_node;
1770#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01001771 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001772 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01001773 * used to configure the interrupts, as you may end-up with
1774 * conflicting triggers. Tell the user, and reset to NONE.
1775 */
1776 if (WARN(of_node && type != IRQ_TYPE_NONE,
1777 "%s: Ignoring %d default trigger\n", of_node->full_name, type))
1778 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001779 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1780 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1781 "Ignoring %d default trigger\n", type);
1782 type = IRQ_TYPE_NONE;
1783 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01001784
Linus Walleij14250522014-03-25 10:40:18 +01001785 gpiochip->irqchip = irqchip;
1786 gpiochip->irq_handler = handler;
1787 gpiochip->irq_default_type = type;
1788 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001789 gpiochip->lock_key = lock_key;
Linus Walleij14250522014-03-25 10:40:18 +01001790 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1791 gpiochip->ngpio, first_irq,
1792 &gpiochip_domain_ops, gpiochip);
1793 if (!gpiochip->irqdomain) {
1794 gpiochip->irqchip = NULL;
1795 return -EINVAL;
1796 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02001797
1798 /*
1799 * It is possible for a driver to override this, but only if the
1800 * alternative functions are both implemented.
1801 */
1802 if (!irqchip->irq_request_resources &&
1803 !irqchip->irq_release_resources) {
1804 irqchip->irq_request_resources = gpiochip_irq_reqres;
1805 irqchip->irq_release_resources = gpiochip_irq_relres;
1806 }
Linus Walleij14250522014-03-25 10:40:18 +01001807
1808 /*
1809 * Prepare the mapping since the irqchip shall be orthogonal to
1810 * any gpiochip calls. If the first_irq was zero, this is
1811 * necessary to allocate descriptors for all IRQs.
1812 */
Linus Walleijc3626fd2014-03-28 20:42:01 +01001813 for (offset = 0; offset < gpiochip->ngpio; offset++) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001814 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1815 continue;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001816 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001817 if (!irq_base_set) {
Linus Walleijc3626fd2014-03-28 20:42:01 +01001818 /*
1819 * Store the base into the gpiochip to be used when
1820 * unmapping the irqs.
1821 */
1822 gpiochip->irq_base = irq_base;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001823 irq_base_set = true;
1824 }
Linus Walleijc3626fd2014-03-28 20:42:01 +01001825 }
Linus Walleij14250522014-03-25 10:40:18 +01001826
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001827 acpi_gpiochip_request_interrupts(gpiochip);
1828
Linus Walleij14250522014-03-25 10:40:18 +01001829 return 0;
1830}
Linus Walleij739e6f52017-01-11 13:37:07 +01001831EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
Linus Walleij14250522014-03-25 10:40:18 +01001832
1833#else /* CONFIG_GPIOLIB_IRQCHIP */
1834
1835static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03001836static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1837{
1838 return 0;
1839}
1840static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1841{ }
Linus Walleij14250522014-03-25 10:40:18 +01001842
1843#endif /* CONFIG_GPIOLIB_IRQCHIP */
1844
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001845/**
1846 * gpiochip_generic_request() - request the gpio function for a pin
1847 * @chip: the gpiochip owning the GPIO
1848 * @offset: the offset of the GPIO to request for GPIO function
1849 */
1850int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1851{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001852 return pinctrl_request_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001853}
1854EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1855
1856/**
1857 * gpiochip_generic_free() - free the gpio function from a pin
1858 * @chip: the gpiochip to request the gpio function for
1859 * @offset: the offset of the GPIO to free from GPIO function
1860 */
1861void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1862{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001863 pinctrl_free_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001864}
1865EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1866
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001867/**
1868 * gpiochip_generic_config() - apply configuration for a pin
1869 * @chip: the gpiochip owning the GPIO
1870 * @offset: the offset of the GPIO to apply the configuration
1871 * @config: the configuration to be applied
1872 */
1873int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
1874 unsigned long config)
1875{
1876 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
1877}
1878EXPORT_SYMBOL_GPL(gpiochip_generic_config);
1879
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301880#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001881
Linus Walleij3f0f8672012-11-20 12:40:15 +01001882/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001883 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1884 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001885 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001886 * @gpio_offset: the start offset in the current gpio_chip number space
1887 * @pin_group: name of the pin group inside the pin controller
1888 */
1889int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1890 struct pinctrl_dev *pctldev,
1891 unsigned int gpio_offset, const char *pin_group)
1892{
1893 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001894 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001895 int ret;
1896
1897 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1898 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001899 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001900 return -ENOMEM;
1901 }
1902
1903 /* Use local offset as range ID */
1904 pin_range->range.id = gpio_offset;
1905 pin_range->range.gc = chip;
1906 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001907 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001908 pin_range->pctldev = pctldev;
1909
1910 ret = pinctrl_get_group_pins(pctldev, pin_group,
1911 &pin_range->range.pins,
1912 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001913 if (ret < 0) {
1914 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001915 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001916 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001917
1918 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1919
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001920 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1921 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001922 pinctrl_dev_get_devname(pctldev), pin_group);
1923
Linus Walleij20ec3e32016-02-11 11:03:06 +01001924 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001925
1926 return 0;
1927}
1928EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1929
1930/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001931 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1932 * @chip: the gpiochip to add the range for
1933 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001934 * @gpio_offset: the start offset in the current gpio_chip number space
1935 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001936 * @npins: the number of pins from the offset of each pin space (GPIO and
1937 * pin controller) to accumulate in this range
1938 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001939int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001940 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001941 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301942{
1943 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001944 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001945 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301946
Linus Walleij3f0f8672012-11-20 12:40:15 +01001947 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301948 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001949 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001950 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301951 }
1952
Linus Walleij3f0f8672012-11-20 12:40:15 +01001953 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001954 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001955 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301956 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001957 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001958 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301959 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001960 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301961 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001962 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001963 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001964 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001965 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001966 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001967 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001968 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1969 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001970 pinctl_name,
1971 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301972
Linus Walleij20ec3e32016-02-11 11:03:06 +01001973 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001974
1975 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301976}
Linus Walleij165adc92012-11-06 14:49:39 +01001977EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301978
Linus Walleij3f0f8672012-11-20 12:40:15 +01001979/**
1980 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1981 * @chip: the chip to remove all the mappings for
1982 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301983void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1984{
1985 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01001986 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301987
Linus Walleij20ec3e32016-02-11 11:03:06 +01001988 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301989 list_del(&pin_range->node);
1990 pinctrl_remove_gpio_range(pin_range->pctldev,
1991 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01001992 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301993 }
1994}
Linus Walleij165adc92012-11-06 14:49:39 +01001995EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1996
1997#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301998
David Brownelld2876d02008-02-04 22:28:20 -08001999/* These "optional" allocation calls help prevent drivers from stomping
2000 * on each other, and help provide better diagnostics in debugfs.
2001 * They're called even less than the "set direction" calls.
2002 */
Mika Westerberg77c2d792014-03-10 14:54:50 +02002003static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002004{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002005 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002006 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002007 unsigned long flags;
2008
2009 spin_lock_irqsave(&gpio_lock, flags);
2010
David Brownelld2876d02008-02-04 22:28:20 -08002011 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002012 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002013 */
2014
2015 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2016 desc_set_label(desc, label ? : "?");
2017 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002018 } else {
David Brownelld2876d02008-02-04 22:28:20 -08002019 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002020 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002021 }
2022
2023 if (chip->request) {
2024 /* chip->request may sleep */
2025 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002026 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002027 spin_lock_irqsave(&gpio_lock, flags);
2028
2029 if (status < 0) {
2030 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07002031 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002032 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002033 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002034 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002035 if (chip->get_direction) {
2036 /* chip->get_direction may sleep */
2037 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002038 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002039 spin_lock_irqsave(&gpio_lock, flags);
2040 }
David Brownelld2876d02008-02-04 22:28:20 -08002041done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002042 spin_unlock_irqrestore(&gpio_lock, flags);
2043 return status;
2044}
2045
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002046/*
2047 * This descriptor validation needs to be inserted verbatim into each
2048 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002049 * macro to avoid endless duplication. If the desc is NULL it is an
2050 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002051 */
2052#define VALIDATE_DESC(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002053 if (!desc) \
2054 return 0; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002055 if (IS_ERR(desc)) { \
2056 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2057 return PTR_ERR(desc); \
2058 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002059 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002060 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002061 return -EINVAL; \
2062 } \
2063 if ( !desc->gdev->chip ) { \
2064 dev_warn(&desc->gdev->dev, \
2065 "%s: backing chip is gone\n", __func__); \
2066 return 0; \
2067 } } while (0)
2068
2069#define VALIDATE_DESC_VOID(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002070 if (!desc) \
2071 return; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002072 if (IS_ERR(desc)) { \
2073 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2074 return; \
2075 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002076 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002077 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002078 return; \
2079 } \
2080 if (!desc->gdev->chip) { \
2081 dev_warn(&desc->gdev->dev, \
2082 "%s: backing chip is gone\n", __func__); \
2083 return; \
2084 } } while (0)
2085
2086
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002087int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002088{
2089 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002090 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002091
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002092 VALIDATE_DESC(desc);
2093 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002094
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002095 if (try_module_get(gdev->owner)) {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002096 status = __gpiod_request(desc, label);
2097 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002098 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002099 else
2100 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002101 }
2102
David Brownelld2876d02008-02-04 22:28:20 -08002103 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002104 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002105
David Brownelld2876d02008-02-04 22:28:20 -08002106 return status;
2107}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002108
Mika Westerberg77c2d792014-03-10 14:54:50 +02002109static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002110{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002111 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002112 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002113 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002114
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002115 might_sleep();
2116
Alexandre Courbot372e7222013-02-03 01:29:29 +09002117 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002118
David Brownelld2876d02008-02-04 22:28:20 -08002119 spin_lock_irqsave(&gpio_lock, flags);
2120
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002121 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002122 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2123 if (chip->free) {
2124 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002125 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002126 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002127 spin_lock_irqsave(&gpio_lock, flags);
2128 }
David Brownelld2876d02008-02-04 22:28:20 -08002129 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002130 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002131 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302132 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302133 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002134 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002135 ret = true;
2136 }
David Brownelld2876d02008-02-04 22:28:20 -08002137
2138 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002139 return ret;
2140}
2141
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002142void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002143{
Linus Walleij33a68e82016-02-11 10:28:44 +01002144 if (desc && desc->gdev && __gpiod_free(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002145 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002146 put_device(&desc->gdev->dev);
2147 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002148 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002149 }
David Brownelld2876d02008-02-04 22:28:20 -08002150}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002151
David Brownelld2876d02008-02-04 22:28:20 -08002152/**
2153 * gpiochip_is_requested - return string iff signal was requested
2154 * @chip: controller managing the signal
2155 * @offset: of signal within controller's 0..(ngpio - 1) range
2156 *
2157 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002158 * The string returned is the label passed to gpio_request(); if none has been
2159 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002160 *
2161 * This function is for use by GPIO controller drivers. The label can
2162 * help with diagnostics, and knowing that the signal is used as a GPIO
2163 * can help avoid accidentally multiplexing it to another controller.
2164 */
2165const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2166{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002167 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002168
Dirk Behme48b59532015-08-18 18:02:32 +02002169 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002170 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002171
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002172 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002173
Alexandre Courbot372e7222013-02-03 01:29:29 +09002174 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002175 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002176 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002177}
2178EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2179
Mika Westerberg77c2d792014-03-10 14:54:50 +02002180/**
2181 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2182 * @desc: GPIO descriptor to request
2183 * @label: label for the GPIO
2184 *
2185 * Function allows GPIO chip drivers to request and use their own GPIO
2186 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2187 * function will not increase reference count of the GPIO chip module. This
2188 * allows the GPIO chip module to be unloaded as needed (we assume that the
2189 * GPIO chip driver handles freeing the GPIOs it has requested).
2190 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002191struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2192 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002193{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002194 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2195 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002196
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002197 if (IS_ERR(desc)) {
2198 chip_err(chip, "failed to get GPIO descriptor\n");
2199 return desc;
2200 }
2201
2202 err = __gpiod_request(desc, label);
2203 if (err < 0)
2204 return ERR_PTR(err);
2205
2206 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002207}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002208EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002209
2210/**
2211 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2212 * @desc: GPIO descriptor to free
2213 *
2214 * Function frees the given GPIO requested previously with
2215 * gpiochip_request_own_desc().
2216 */
2217void gpiochip_free_own_desc(struct gpio_desc *desc)
2218{
2219 if (desc)
2220 __gpiod_free(desc);
2221}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002222EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002223
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002224/*
2225 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002226 * some cases this is done in early boot, before IRQs are enabled.
2227 *
2228 * As a rule these aren't called more than once (except for drivers
2229 * using the open-drain emulation idiom) so these are natural places
2230 * to accumulate extra debugging checks. Note that we can't (yet)
2231 * rely on gpio_request() having been called beforehand.
2232 */
2233
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002234/**
2235 * gpiod_direction_input - set the GPIO direction to input
2236 * @desc: GPIO to set to input
2237 *
2238 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2239 * be called safely on it.
2240 *
2241 * Return 0 in case of success, else an error code.
2242 */
2243int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002244{
David Brownelld2876d02008-02-04 22:28:20 -08002245 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002246 int status = -EINVAL;
2247
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002248 VALIDATE_DESC(desc);
2249 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002250
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002251 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002252 gpiod_warn(desc,
2253 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02002254 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002255 return -EIO;
2256 }
2257
Alexandre Courbotd82da792014-07-22 16:17:43 +09002258 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08002259 if (status == 0)
2260 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002261
Alexandre Courbot372e7222013-02-03 01:29:29 +09002262 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002263
David Brownelld2876d02008-02-04 22:28:20 -08002264 return status;
2265}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002266EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002267
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002268static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2269 enum pin_config_param mode)
2270{
2271 unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2272
2273 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2274}
2275
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002276static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002277{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002278 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002279 int val = !!value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002280 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08002281
Linus Walleijd468bf92013-09-24 11:54:38 +02002282 /* GPIOs used for IRQs shall not be set as output */
2283 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2284 gpiod_err(desc,
2285 "%s: tried to set a GPIO tied to an IRQ as output\n",
2286 __func__);
2287 return -EIO;
2288 }
2289
Linus Walleijc663e5f2016-03-22 10:51:16 +01002290 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2291 /* First see if we can enable open drain in hardware */
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002292 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2293 PIN_CONFIG_DRIVE_OPEN_DRAIN);
2294 if (!ret)
2295 goto set_output_value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002296 /* Emulate open drain by not actively driving the line high */
Linus Walleijad177312016-11-13 23:02:44 +01002297 if (val)
Linus Walleijc663e5f2016-03-22 10:51:16 +01002298 return gpiod_direction_input(desc);
2299 }
2300 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002301 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2302 PIN_CONFIG_DRIVE_OPEN_SOURCE);
2303 if (!ret)
2304 goto set_output_value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002305 /* Emulate open source by not actively driving the line low */
Linus Walleijad177312016-11-13 23:02:44 +01002306 if (!val)
Linus Walleijc663e5f2016-03-22 10:51:16 +01002307 return gpiod_direction_input(desc);
2308 } else {
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002309 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2310 PIN_CONFIG_DRIVE_PUSH_PULL);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002311 }
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302312
Linus Walleijc663e5f2016-03-22 10:51:16 +01002313set_output_value:
2314 if (!gc->set || !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002315 gpiod_warn(desc,
2316 "%s: missing set() or direction_output() operations\n",
2317 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002318 return -EIO;
2319 }
2320
Linus Walleijad177312016-11-13 23:02:44 +01002321 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002322 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002323 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002324 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002325 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2326 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002327}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002328
2329/**
2330 * gpiod_direction_output_raw - set the GPIO direction to output
2331 * @desc: GPIO to set to output
2332 * @value: initial output value of the GPIO
2333 *
2334 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2335 * be called safely on it. The initial value of the output must be specified
2336 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2337 *
2338 * Return 0 in case of success, else an error code.
2339 */
2340int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2341{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002342 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002343 return _gpiod_direction_output_raw(desc, value);
2344}
2345EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2346
2347/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302348 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002349 * @desc: GPIO to set to output
2350 * @value: initial output value of the GPIO
2351 *
2352 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2353 * be called safely on it. The initial value of the output must be specified
2354 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2355 * account.
2356 *
2357 * Return 0 in case of success, else an error code.
2358 */
2359int gpiod_direction_output(struct gpio_desc *desc, int value)
2360{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002361 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002362 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2363 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002364 else
2365 value = !!value;
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002366 return _gpiod_direction_output_raw(desc, value);
2367}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002368EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002369
Felipe Balbic4b5be92010-05-26 14:42:23 -07002370/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002371 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07002372 * @gpio: the gpio to set debounce time
2373 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002374 *
2375 * returns -ENOTSUPP if the controller does not support setting
2376 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002377 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002378int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002379{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002380 struct gpio_chip *chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002381 unsigned long config;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002382
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002383 VALIDATE_DESC(desc);
2384 chip = desc->gdev->chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002385 if (!chip->set || !chip->set_config) {
Mark Brown6424de52013-09-09 10:33:49 +01002386 gpiod_dbg(desc,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002387 "%s: missing set() or set_config() operations\n",
Mark Brown6424de52013-09-09 10:33:49 +01002388 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002389 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002390 }
2391
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002392 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2393 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002394}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002395EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002396
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002397/**
2398 * gpiod_is_active_low - test whether a GPIO is active-low or not
2399 * @desc: the gpio descriptor to test
2400 *
2401 * Returns 1 if the GPIO is active-low, 0 otherwise.
2402 */
2403int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002404{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002405 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002406 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002407}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002408EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002409
2410/* I/O calls are only valid after configuration completed; the relevant
2411 * "is this a valid GPIO" error checks should already have been done.
2412 *
2413 * "Get" operations are often inlinable as reading a pin value register,
2414 * and masking the relevant bit in that register.
2415 *
2416 * When "set" operations are inlinable, they involve writing that mask to
2417 * one register to set a low value, or a different register to set it high.
2418 * Otherwise locking is needed, so there may be little value to inlining.
2419 *
2420 *------------------------------------------------------------------------
2421 *
2422 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2423 * have requested the GPIO. That can include implicit requesting by
2424 * a direction setting call. Marking a gpio as requested locks its chip
2425 * in memory, guaranteeing that these table lookups need no more locking
2426 * and that gpiochip_remove() will fail.
2427 *
2428 * REVISIT when debugging, consider adding some instrumentation to ensure
2429 * that the GPIO was actually requested.
2430 */
2431
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002432static int _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002433{
2434 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002435 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002436 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002437
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002438 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002439 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002440 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002441 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002442 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002443 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002444}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002445
David Brownelld2876d02008-02-04 22:28:20 -08002446/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002447 * gpiod_get_raw_value() - return a gpio's raw value
2448 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002449 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002450 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002451 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002452 *
2453 * This function should be called from contexts where we cannot sleep, and will
2454 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002455 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002456int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002457{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002458 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002459 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002460 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002461 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002462}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002463EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002464
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002465/**
2466 * gpiod_get_value() - return a gpio's value
2467 * @desc: gpio whose value will be returned
2468 *
2469 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002470 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002471 *
2472 * This function should be called from contexts where we cannot sleep, and will
2473 * complain if the GPIO chip functions potentially sleep.
2474 */
2475int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002476{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002477 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002478
2479 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002480 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002481 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002482
2483 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002484 if (value < 0)
2485 return value;
2486
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002487 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2488 value = !value;
2489
2490 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002491}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002492EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002493
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302494/*
2495 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002496 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002497 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302498 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002499static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302500{
2501 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002502 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002503 int offset = gpio_chip_hwgpio(desc);
2504
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302505 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002506 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302507 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002508 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302509 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002510 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302511 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002512 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302513 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002514 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302515 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002516 gpiod_err(desc,
2517 "%s: Error in set_value for open drain err %d\n",
2518 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302519}
2520
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302521/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002522 * _gpio_set_open_source_value() - Set the open source gpio's value.
2523 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002524 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302525 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002526static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302527{
2528 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002529 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002530 int offset = gpio_chip_hwgpio(desc);
2531
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302532 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002533 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302534 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002535 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302536 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002537 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302538 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002539 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302540 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002541 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302542 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002543 gpiod_err(desc,
2544 "%s: Error in set_value for open source err %d\n",
2545 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302546}
2547
Alexandre Courbot23600962014-03-11 15:52:09 +09002548static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002549{
2550 struct gpio_chip *chip;
2551
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002552 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002553 trace_gpio_value(desc_to_gpio(desc), 0, value);
2554 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2555 _gpio_set_open_drain_value(desc, value);
2556 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2557 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302558 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09002559 chip->set(chip, gpio_chip_hwgpio(desc), value);
2560}
2561
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002562/*
2563 * set multiple outputs on the same chip;
2564 * use the chip's set_multiple function if available;
2565 * otherwise set the outputs sequentially;
2566 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2567 * defines which outputs are to be changed
2568 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2569 * defines the values the outputs specified by mask are to be set to
2570 */
2571static void gpio_chip_set_multiple(struct gpio_chip *chip,
2572 unsigned long *mask, unsigned long *bits)
2573{
2574 if (chip->set_multiple) {
2575 chip->set_multiple(chip, mask, bits);
2576 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02002577 unsigned int i;
2578
2579 /* set outputs if the corresponding mask bit is set */
2580 for_each_set_bit(i, mask, chip->ngpio)
2581 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002582 }
2583}
2584
Linus Walleij44c72882016-04-24 11:36:59 +02002585void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2586 unsigned int array_size,
2587 struct gpio_desc **desc_array,
2588 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002589{
2590 int i = 0;
2591
2592 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002593 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002594 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2595 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2596 int count = 0;
2597
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002598 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002599 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002600
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002601 memset(mask, 0, sizeof(mask));
2602 do {
2603 struct gpio_desc *desc = desc_array[i];
2604 int hwgpio = gpio_chip_hwgpio(desc);
2605 int value = value_array[i];
2606
2607 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2608 value = !value;
2609 trace_gpio_value(desc_to_gpio(desc), 0, value);
2610 /*
2611 * collect all normal outputs belonging to the same chip
2612 * open drain and open source outputs are set individually
2613 */
2614 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002615 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002616 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2617 _gpio_set_open_source_value(desc, value);
2618 } else {
2619 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002620 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002621 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002622 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002623 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002624 count++;
2625 }
2626 i++;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002627 } while ((i < array_size) &&
2628 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002629 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002630 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002631 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002632 }
2633}
2634
David Brownelld2876d02008-02-04 22:28:20 -08002635/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002636 * gpiod_set_raw_value() - assign a gpio's raw value
2637 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002638 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002639 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002640 * Set the raw value of the GPIO, i.e. the value of its physical line without
2641 * regard for its ACTIVE_LOW status.
2642 *
2643 * This function should be called from contexts where we cannot sleep, and will
2644 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002645 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002646void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002647{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002648 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002649 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002650 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002651 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002652}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002653EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002654
2655/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002656 * gpiod_set_value() - assign a gpio's value
2657 * @desc: gpio whose value will be assigned
2658 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002659 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002660 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2661 * account
2662 *
2663 * This function should be called from contexts where we cannot sleep, and will
2664 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002665 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002666void gpiod_set_value(struct gpio_desc *desc, int value)
2667{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002668 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002669 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002670 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002671 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2672 value = !value;
2673 _gpiod_set_raw_value(desc, value);
2674}
2675EXPORT_SYMBOL_GPL(gpiod_set_value);
2676
2677/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002678 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002679 * @array_size: number of elements in the descriptor / value arrays
2680 * @desc_array: array of GPIO descriptors whose values will be assigned
2681 * @value_array: array of values to assign
2682 *
2683 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2684 * without regard for their ACTIVE_LOW status.
2685 *
2686 * This function should be called from contexts where we cannot sleep, and will
2687 * complain if the GPIO chip functions potentially sleep.
2688 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002689void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002690 struct gpio_desc **desc_array, int *value_array)
2691{
2692 if (!desc_array)
2693 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002694 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2695 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002696}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002697EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002698
2699/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002700 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002701 * @array_size: number of elements in the descriptor / value arrays
2702 * @desc_array: array of GPIO descriptors whose values will be assigned
2703 * @value_array: array of values to assign
2704 *
2705 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2706 * into account.
2707 *
2708 * This function should be called from contexts where we cannot sleep, and will
2709 * complain if the GPIO chip functions potentially sleep.
2710 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002711void gpiod_set_array_value(unsigned int array_size,
2712 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002713{
2714 if (!desc_array)
2715 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002716 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2717 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002718}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002719EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002720
2721/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002722 * gpiod_cansleep() - report whether gpio value access may sleep
2723 * @desc: gpio to check
2724 *
2725 */
2726int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002727{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002728 VALIDATE_DESC(desc);
2729 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002730}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002731EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002732
David Brownell0f6d5042008-10-15 22:03:14 -07002733/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002734 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2735 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07002736 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002737 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2738 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07002739 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002740int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07002741{
Linus Walleij4c37ce82016-05-02 13:13:10 +02002742 struct gpio_chip *chip;
2743 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07002744
Linus Walleij79bb71b2016-06-15 22:57:38 +02002745 /*
2746 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2747 * requires this function to not return zero on an invalid descriptor
2748 * but rather a negative error number.
2749 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02002750 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02002751 return -EINVAL;
2752
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002753 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002754 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02002755 if (chip->to_irq) {
2756 int retirq = chip->to_irq(chip, offset);
2757
2758 /* Zero means NO_IRQ */
2759 if (!retirq)
2760 return -ENXIO;
2761
2762 return retirq;
2763 }
2764 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002765}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002766EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002767
Linus Walleijd468bf92013-09-24 11:54:38 +02002768/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002769 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002770 * @chip: the chip the GPIO to lock belongs to
2771 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002772 *
2773 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08002774 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08002775 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002776int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002777{
Linus Walleij9c102802016-05-25 10:56:03 +02002778 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02002779
Linus Walleij9c102802016-05-25 10:56:03 +02002780 desc = gpiochip_get_desc(chip, offset);
2781 if (IS_ERR(desc))
2782 return PTR_ERR(desc);
2783
Linus Walleij60f83392016-11-12 15:01:09 +01002784 /*
2785 * If it's fast: flush the direction setting if something changed
2786 * behind our back
2787 */
2788 if (!chip->can_sleep && chip->get_direction) {
Linus Walleij9c102802016-05-25 10:56:03 +02002789 int dir = chip->get_direction(chip, offset);
2790
2791 if (dir)
2792 clear_bit(FLAG_IS_OUT, &desc->flags);
2793 else
2794 set_bit(FLAG_IS_OUT, &desc->flags);
2795 }
2796
2797 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002798 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02002799 "%s: tried to flag a GPIO set as output for IRQ\n",
2800 __func__);
2801 return -EIO;
2802 }
2803
Linus Walleij9c102802016-05-25 10:56:03 +02002804 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01002805
2806 /*
2807 * If the consumer has not set up a label (such as when the
2808 * IRQ is referenced from .to_irq()) we set up a label here
2809 * so it is clear this is used as an interrupt.
2810 */
2811 if (!desc->label)
2812 desc_set_label(desc, "interrupt");
2813
Linus Walleijd468bf92013-09-24 11:54:38 +02002814 return 0;
2815}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002816EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002817
Linus Walleijd468bf92013-09-24 11:54:38 +02002818/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002819 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002820 * @chip: the chip the GPIO to lock belongs to
2821 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002822 *
2823 * This is used directly by GPIO drivers that want to indicate
2824 * that a certain GPIO is no longer used exclusively for IRQ.
2825 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002826void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02002827{
Linus Walleij3940c342016-11-14 00:09:07 +01002828 struct gpio_desc *desc;
2829
2830 desc = gpiochip_get_desc(chip, offset);
2831 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02002832 return;
2833
Linus Walleij3940c342016-11-14 00:09:07 +01002834 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
2835
2836 /* If we only had this marking, erase it */
2837 if (desc->label && !strcmp(desc->label, "interrupt"))
2838 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02002839}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002840EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002841
Linus Walleij6cee3822016-02-11 20:16:45 +01002842bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2843{
2844 if (offset >= chip->ngpio)
2845 return false;
2846
2847 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2848}
2849EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2850
Linus Walleij143b65d2016-02-16 15:41:42 +01002851bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2852{
2853 if (offset >= chip->ngpio)
2854 return false;
2855
2856 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2857}
2858EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2859
2860bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2861{
2862 if (offset >= chip->ngpio)
2863 return false;
2864
2865 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2866}
2867EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2868
Charles Keepax05f479b2017-05-23 15:47:29 +01002869bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
2870{
2871 if (offset >= chip->ngpio)
2872 return false;
2873
2874 return !test_bit(FLAG_SLEEP_MAY_LOOSE_VALUE,
2875 &chip->gpiodev->descs[offset].flags);
2876}
2877EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
2878
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002879/**
2880 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2881 * @desc: gpio whose value will be returned
2882 *
2883 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002884 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002885 *
2886 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002887 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002888int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002889{
David Brownelld2876d02008-02-04 22:28:20 -08002890 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002891 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002892 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002893}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002894EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002895
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002896/**
2897 * gpiod_get_value_cansleep() - return a gpio's value
2898 * @desc: gpio whose value will be returned
2899 *
2900 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002901 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002902 *
2903 * This function is to be called from contexts that can sleep.
2904 */
2905int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002906{
David Brownelld2876d02008-02-04 22:28:20 -08002907 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002908
2909 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002910 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002911 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002912 if (value < 0)
2913 return value;
2914
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002915 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2916 value = !value;
2917
David Brownelld2876d02008-02-04 22:28:20 -08002918 return value;
2919}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002920EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002921
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002922/**
2923 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2924 * @desc: gpio whose value will be assigned
2925 * @value: value to assign
2926 *
2927 * Set the raw value of the GPIO, i.e. the value of its physical line without
2928 * regard for its ACTIVE_LOW status.
2929 *
2930 * This function is to be called from contexts that can sleep.
2931 */
2932void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002933{
David Brownelld2876d02008-02-04 22:28:20 -08002934 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002935 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002936 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002937}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002938EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002939
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002940/**
2941 * gpiod_set_value_cansleep() - assign a gpio's value
2942 * @desc: gpio whose value will be assigned
2943 * @value: value to assign
2944 *
2945 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2946 * account
2947 *
2948 * This function is to be called from contexts that can sleep.
2949 */
2950void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002951{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002952 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002953 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002954 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2955 value = !value;
2956 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002957}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002958EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002959
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002960/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002961 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002962 * @array_size: number of elements in the descriptor / value arrays
2963 * @desc_array: array of GPIO descriptors whose values will be assigned
2964 * @value_array: array of values to assign
2965 *
2966 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2967 * without regard for their ACTIVE_LOW status.
2968 *
2969 * This function is to be called from contexts that can sleep.
2970 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002971void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2972 struct gpio_desc **desc_array,
2973 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002974{
2975 might_sleep_if(extra_checks);
2976 if (!desc_array)
2977 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002978 gpiod_set_array_value_complex(true, true, array_size, desc_array,
2979 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002980}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002981EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002982
2983/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002984 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002985 * @array_size: number of elements in the descriptor / value arrays
2986 * @desc_array: array of GPIO descriptors whose values will be assigned
2987 * @value_array: array of values to assign
2988 *
2989 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2990 * into account.
2991 *
2992 * This function is to be called from contexts that can sleep.
2993 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002994void gpiod_set_array_value_cansleep(unsigned int array_size,
2995 struct gpio_desc **desc_array,
2996 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002997{
2998 might_sleep_if(extra_checks);
2999 if (!desc_array)
3000 return;
Linus Walleij44c72882016-04-24 11:36:59 +02003001 gpiod_set_array_value_complex(false, true, array_size, desc_array,
3002 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003003}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003004EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003005
3006/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003007 * gpiod_add_lookup_table() - register GPIO device consumers
3008 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003009 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003010void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003011{
3012 mutex_lock(&gpio_lookup_lock);
3013
Alexandre Courbotad824782013-12-03 12:20:11 +09003014 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003015
3016 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003017}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003018EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003019
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303020/**
3021 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3022 * @table: table of consumers to unregister
3023 */
3024void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3025{
3026 mutex_lock(&gpio_lookup_lock);
3027
3028 list_del(&table->list);
3029
3030 mutex_unlock(&gpio_lookup_lock);
3031}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003032EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303033
Alexandre Courbotad824782013-12-03 12:20:11 +09003034static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3035{
3036 const char *dev_id = dev ? dev_name(dev) : NULL;
3037 struct gpiod_lookup_table *table;
3038
3039 mutex_lock(&gpio_lookup_lock);
3040
3041 list_for_each_entry(table, &gpio_lookup_list, list) {
3042 if (table->dev_id && dev_id) {
3043 /*
3044 * Valid strings on both ends, must be identical to have
3045 * a match
3046 */
3047 if (!strcmp(table->dev_id, dev_id))
3048 goto found;
3049 } else {
3050 /*
3051 * One of the pointers is NULL, so both must be to have
3052 * a match
3053 */
3054 if (dev_id == table->dev_id)
3055 goto found;
3056 }
3057 }
3058 table = NULL;
3059
3060found:
3061 mutex_unlock(&gpio_lookup_lock);
3062 return table;
3063}
3064
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003065static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09003066 unsigned int idx,
3067 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003068{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003069 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003070 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003071 struct gpiod_lookup *p;
3072
Alexandre Courbotad824782013-12-03 12:20:11 +09003073 table = gpiod_find_lookup_table(dev);
3074 if (!table)
3075 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003076
Alexandre Courbotad824782013-12-03 12:20:11 +09003077 for (p = &table->table[0]; p->chip_label; p++) {
3078 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003079
Alexandre Courbotad824782013-12-03 12:20:11 +09003080 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003081 if (p->idx != idx)
3082 continue;
3083
Alexandre Courbotad824782013-12-03 12:20:11 +09003084 /* If the lookup entry has a con_id, require exact match */
3085 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3086 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003087
Alexandre Courbotad824782013-12-03 12:20:11 +09003088 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003089
Alexandre Courbotad824782013-12-03 12:20:11 +09003090 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003091 dev_err(dev, "cannot find GPIO chip %s\n",
3092 p->chip_label);
3093 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003094 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003095
Alexandre Courbotad824782013-12-03 12:20:11 +09003096 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003097 dev_err(dev,
3098 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3099 idx, chip->ngpio, chip->label);
3100 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003101 }
3102
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09003103 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003104 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003105
3106 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003107 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003108
3109 return desc;
3110}
3111
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003112static int dt_gpio_count(struct device *dev, const char *con_id)
3113{
3114 int ret;
3115 char propname[32];
3116 unsigned int i;
3117
3118 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3119 if (con_id)
3120 snprintf(propname, sizeof(propname), "%s-%s",
3121 con_id, gpio_suffixes[i]);
3122 else
3123 snprintf(propname, sizeof(propname), "%s",
3124 gpio_suffixes[i]);
3125
3126 ret = of_gpio_named_count(dev->of_node, propname);
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003127 if (ret > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003128 break;
3129 }
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003130 return ret ? ret : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003131}
3132
3133static int platform_gpio_count(struct device *dev, const char *con_id)
3134{
3135 struct gpiod_lookup_table *table;
3136 struct gpiod_lookup *p;
3137 unsigned int count = 0;
3138
3139 table = gpiod_find_lookup_table(dev);
3140 if (!table)
3141 return -ENOENT;
3142
3143 for (p = &table->table[0]; p->chip_label; p++) {
3144 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3145 (!con_id && !p->con_id))
3146 count++;
3147 }
3148 if (!count)
3149 return -ENOENT;
3150
3151 return count;
3152}
3153
3154/**
3155 * gpiod_count - return the number of GPIOs associated with a device / function
3156 * or -ENOENT if no GPIO has been assigned to the requested function
3157 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3158 * @con_id: function within the GPIO consumer
3159 */
3160int gpiod_count(struct device *dev, const char *con_id)
3161{
3162 int count = -ENOENT;
3163
3164 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3165 count = dt_gpio_count(dev, con_id);
3166 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3167 count = acpi_gpio_count(dev, con_id);
3168
3169 if (count < 0)
3170 count = platform_gpio_count(dev, con_id);
3171
3172 return count;
3173}
3174EXPORT_SYMBOL_GPL(gpiod_count);
3175
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003176/**
Thierry Reding08791622014-04-25 16:54:22 +02003177 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003178 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003179 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003180 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003181 *
3182 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003183 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003184 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003185 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003186struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003187 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003188{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003189 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003190}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003191EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003192
3193/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003194 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3195 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3196 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003197 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003198 *
3199 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3200 * the requested function it will return NULL. This is convenient for drivers
3201 * that need to handle optional GPIOs.
3202 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003203struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003204 const char *con_id,
3205 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003206{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003207 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003208}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003209EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003210
Benoit Parrotf625d462015-02-02 11:44:44 -06003211
3212/**
3213 * gpiod_configure_flags - helper function to configure a given GPIO
3214 * @desc: gpio whose value will be assigned
3215 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02003216 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3217 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003218 * @dflags: gpiod_flags - optional GPIO initialization flags
3219 *
3220 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3221 * requested function and/or index, or another IS_ERR() code if an error
3222 * occurred while trying to acquire the GPIO.
3223 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03003224int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003225 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003226{
3227 int status;
3228
Johan Hovold85b03b32016-07-03 18:32:05 +02003229 if (lflags & GPIO_ACTIVE_LOW)
3230 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3231 if (lflags & GPIO_OPEN_DRAIN)
3232 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3233 if (lflags & GPIO_OPEN_SOURCE)
3234 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Charles Keepax05f479b2017-05-23 15:47:29 +01003235 if (lflags & GPIO_SLEEP_MAY_LOOSE_VALUE)
3236 set_bit(FLAG_SLEEP_MAY_LOOSE_VALUE, &desc->flags);
Johan Hovold85b03b32016-07-03 18:32:05 +02003237
Benoit Parrotf625d462015-02-02 11:44:44 -06003238 /* No particular flag request, return here... */
3239 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3240 pr_debug("no flags found for %s\n", con_id);
3241 return 0;
3242 }
3243
3244 /* Process flags */
3245 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3246 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01003247 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06003248 else
3249 status = gpiod_direction_input(desc);
3250
3251 return status;
3252}
3253
Thierry Reding29a1f2332014-04-25 17:10:06 +02003254/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003255 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003256 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003257 * @con_id: function within the GPIO consumer
3258 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003259 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003260 *
3261 * This variant of gpiod_get() allows to access GPIOs other than the first
3262 * defined one for functions that define several GPIOs.
3263 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003264 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3265 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003266 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003267 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003268struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003269 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003270 unsigned int idx,
3271 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003272{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003273 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003274 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003275 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003276
3277 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3278
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003279 if (dev) {
3280 /* Using device tree? */
3281 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3282 dev_dbg(dev, "using device tree for GPIO lookup\n");
3283 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3284 } else if (ACPI_COMPANION(dev)) {
3285 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003286 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003287 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003288 }
3289
3290 /*
3291 * Either we are not using DT or ACPI, or their lookup did not return
3292 * a result. In that case, use platform lookup as a fallback.
3293 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003294 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003295 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003296 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003297 }
3298
3299 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02003300 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003301 return desc;
3302 }
3303
3304 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003305 if (status < 0)
3306 return ERR_PTR(status);
3307
Johan Hovold85b03b32016-07-03 18:32:05 +02003308 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003309 if (status < 0) {
3310 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3311 gpiod_put(desc);
3312 return ERR_PTR(status);
3313 }
3314
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003315 return desc;
3316}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003317EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003318
3319/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003320 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3321 * @fwnode: handle of the firmware node
3322 * @propname: name of the firmware property representing the GPIO
Boris Brezillon537b94d2017-02-02 14:53:11 +01003323 * @index: index of the GPIO to obtain in the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003324 * @dflags: GPIO initialization flags
Mika Westerberg40b73182014-10-21 13:33:59 +02003325 *
3326 * This function can be used for drivers that get their configuration
3327 * from firmware.
3328 *
3329 * Function properly finds the corresponding GPIO using whatever is the
3330 * underlying firmware interface and then makes sure that the GPIO
3331 * descriptor is requested before it is returned to the caller.
3332 *
Andy Shevchenkoff213782017-02-28 17:03:12 +02003333 * On successful request the GPIO pin is configured in accordance with
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003334 * provided @dflags.
3335 *
Mika Westerberg40b73182014-10-21 13:33:59 +02003336 * In case of error an ERR_PTR() is returned.
3337 */
3338struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Boris Brezillon537b94d2017-02-02 14:53:11 +01003339 const char *propname, int index,
Alexander Steinb2987d72017-01-12 17:39:24 +01003340 enum gpiod_flags dflags,
3341 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02003342{
3343 struct gpio_desc *desc = ERR_PTR(-ENODEV);
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003344 unsigned long lflags = 0;
Mika Westerberg40b73182014-10-21 13:33:59 +02003345 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003346 bool single_ended = false;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303347 bool open_drain = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02003348 int ret;
3349
3350 if (!fwnode)
3351 return ERR_PTR(-EINVAL);
3352
3353 if (is_of_node(fwnode)) {
3354 enum of_gpio_flags flags;
3355
Boris Brezillon537b94d2017-02-02 14:53:11 +01003356 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname,
3357 index, &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003358 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02003359 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003360 single_ended = flags & OF_GPIO_SINGLE_ENDED;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303361 open_drain = flags & OF_GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003362 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003363 } else if (is_acpi_node(fwnode)) {
3364 struct acpi_gpio_info info;
3365
Boris Brezillon537b94d2017-02-02 14:53:11 +01003366 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003367 if (!IS_ERR(desc)) {
Christophe RICARD52044722015-12-23 23:25:34 +01003368 active_low = info.polarity == GPIO_ACTIVE_LOW;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003369 ret = acpi_gpio_update_gpiod_flags(&dflags, info.flags);
3370 if (ret)
3371 pr_debug("Override GPIO initialization flags\n");
3372 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003373 }
3374
3375 if (IS_ERR(desc))
3376 return desc;
3377
Alexander Steinb2987d72017-01-12 17:39:24 +01003378 ret = gpiod_request(desc, label);
Johan Hovold85b03b32016-07-03 18:32:05 +02003379 if (ret)
3380 return ERR_PTR(ret);
3381
Mika Westerberg40b73182014-10-21 13:33:59 +02003382 if (active_low)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003383 lflags |= GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02003384
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003385 if (single_ended) {
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303386 if (open_drain)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003387 lflags |= GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003388 else
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003389 lflags |= GPIO_OPEN_SOURCE;
3390 }
3391
3392 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3393 if (ret < 0) {
3394 gpiod_put(desc);
3395 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003396 }
3397
Mika Westerberg40b73182014-10-21 13:33:59 +02003398 return desc;
3399}
3400EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3401
3402/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003403 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3404 * function
3405 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3406 * @con_id: function within the GPIO consumer
3407 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003408 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003409 *
3410 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3411 * specified index was assigned to the requested function it will return NULL.
3412 * This is convenient for drivers that need to handle optional GPIOs.
3413 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003414struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003415 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003416 unsigned int index,
3417 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003418{
3419 struct gpio_desc *desc;
3420
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003421 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003422 if (IS_ERR(desc)) {
3423 if (PTR_ERR(desc) == -ENOENT)
3424 return NULL;
3425 }
3426
3427 return desc;
3428}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003429EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003430
3431/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003432 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3433 * @desc: gpio whose value will be assigned
3434 * @name: gpio line name
3435 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3436 * of_get_gpio_hog()
3437 * @dflags: gpiod_flags - optional GPIO initialization flags
3438 */
3439int gpiod_hog(struct gpio_desc *desc, const char *name,
3440 unsigned long lflags, enum gpiod_flags dflags)
3441{
3442 struct gpio_chip *chip;
3443 struct gpio_desc *local_desc;
3444 int hwnum;
3445 int status;
3446
3447 chip = gpiod_to_chip(desc);
3448 hwnum = gpio_chip_hwgpio(desc);
3449
3450 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3451 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303452 status = PTR_ERR(local_desc);
3453 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3454 name, chip->label, hwnum, status);
3455 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06003456 }
3457
Johan Hovold85b03b32016-07-03 18:32:05 +02003458 status = gpiod_configure_flags(desc, name, lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06003459 if (status < 0) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303460 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3461 name, chip->label, hwnum, status);
Benoit Parrotf625d462015-02-02 11:44:44 -06003462 gpiochip_free_own_desc(desc);
3463 return status;
3464 }
3465
3466 /* Mark GPIO as hogged so it can be identified and removed later */
3467 set_bit(FLAG_IS_HOGGED, &desc->flags);
3468
3469 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3470 desc_to_gpio(desc), name,
3471 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3472 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3473 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3474
3475 return 0;
3476}
3477
3478/**
3479 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3480 * @chip: gpio chip to act on
3481 *
3482 * This is only used by of_gpiochip_remove to free hogged gpios
3483 */
3484static void gpiochip_free_hogs(struct gpio_chip *chip)
3485{
3486 int id;
3487
3488 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01003489 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3490 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06003491 }
3492}
3493
3494/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003495 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3496 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3497 * @con_id: function within the GPIO consumer
3498 * @flags: optional GPIO initialization flags
3499 *
3500 * This function acquires all the GPIOs defined under a given function.
3501 *
3502 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3503 * no GPIO has been assigned to the requested function, or another IS_ERR()
3504 * code if an error occurred while trying to acquire the GPIOs.
3505 */
3506struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3507 const char *con_id,
3508 enum gpiod_flags flags)
3509{
3510 struct gpio_desc *desc;
3511 struct gpio_descs *descs;
3512 int count;
3513
3514 count = gpiod_count(dev, con_id);
3515 if (count < 0)
3516 return ERR_PTR(count);
3517
3518 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3519 GFP_KERNEL);
3520 if (!descs)
3521 return ERR_PTR(-ENOMEM);
3522
3523 for (descs->ndescs = 0; descs->ndescs < count; ) {
3524 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3525 if (IS_ERR(desc)) {
3526 gpiod_put_array(descs);
3527 return ERR_CAST(desc);
3528 }
3529 descs->desc[descs->ndescs] = desc;
3530 descs->ndescs++;
3531 }
3532 return descs;
3533}
3534EXPORT_SYMBOL_GPL(gpiod_get_array);
3535
3536/**
3537 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3538 * function
3539 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3540 * @con_id: function within the GPIO consumer
3541 * @flags: optional GPIO initialization flags
3542 *
3543 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3544 * assigned to the requested function it will return NULL.
3545 */
3546struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3547 const char *con_id,
3548 enum gpiod_flags flags)
3549{
3550 struct gpio_descs *descs;
3551
3552 descs = gpiod_get_array(dev, con_id, flags);
3553 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3554 return NULL;
3555
3556 return descs;
3557}
3558EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3559
3560/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003561 * gpiod_put - dispose of a GPIO descriptor
3562 * @desc: GPIO descriptor to dispose of
3563 *
3564 * No descriptor can be used after gpiod_put() has been called on it.
3565 */
3566void gpiod_put(struct gpio_desc *desc)
3567{
3568 gpiod_free(desc);
3569}
3570EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08003571
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003572/**
3573 * gpiod_put_array - dispose of multiple GPIO descriptors
3574 * @descs: struct gpio_descs containing an array of descriptors
3575 */
3576void gpiod_put_array(struct gpio_descs *descs)
3577{
3578 unsigned int i;
3579
3580 for (i = 0; i < descs->ndescs; i++)
3581 gpiod_put(descs->desc[i]);
3582
3583 kfree(descs);
3584}
3585EXPORT_SYMBOL_GPL(gpiod_put_array);
3586
Linus Walleij3c702e92015-10-21 15:29:53 +02003587static int __init gpiolib_dev_init(void)
3588{
3589 int ret;
3590
3591 /* Register GPIO sysfs bus */
3592 ret = bus_register(&gpio_bus_type);
3593 if (ret < 0) {
3594 pr_err("gpiolib: could not register GPIO bus type\n");
3595 return ret;
3596 }
3597
3598 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3599 if (ret < 0) {
3600 pr_err("gpiolib: failed to allocate char dev region\n");
3601 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07003602 } else {
3603 gpiolib_initialized = true;
3604 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02003605 }
3606 return ret;
3607}
3608core_initcall(gpiolib_dev_init);
3609
David Brownelld2876d02008-02-04 22:28:20 -08003610#ifdef CONFIG_DEBUG_FS
3611
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003612static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08003613{
3614 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003615 struct gpio_chip *chip = gdev->chip;
3616 unsigned gpio = gdev->base;
3617 struct gpio_desc *gdesc = &gdev->descs[0];
David Brownelld2876d02008-02-04 22:28:20 -08003618 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02003619 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08003620
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003621 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02003622 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3623 if (gdesc->name) {
3624 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3625 gpio, gdesc->name);
3626 }
David Brownelld2876d02008-02-04 22:28:20 -08003627 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02003628 }
David Brownelld2876d02008-02-04 22:28:20 -08003629
Alexandre Courbot372e7222013-02-03 01:29:29 +09003630 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08003631 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02003632 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02003633 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3634 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08003635 is_out ? "out" : "in ",
3636 chip->get
3637 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02003638 : "? ",
3639 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08003640 seq_printf(s, "\n");
3641 }
3642}
3643
Thierry Redingf9c4a312012-04-12 13:26:01 +02003644static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08003645{
Grant Likely362432a2013-02-09 09:41:49 +00003646 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003647 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003648 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003649
3650 s->private = "";
3651
Grant Likely362432a2013-02-09 09:41:49 +00003652 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003653 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00003654 if (index-- == 0) {
3655 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003656 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00003657 }
3658 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003659
3660 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003661}
3662
3663static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3664{
Grant Likely362432a2013-02-09 09:41:49 +00003665 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003666 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003667 void *ret = NULL;
3668
Grant Likely362432a2013-02-09 09:41:49 +00003669 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003670 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003671 ret = NULL;
3672 else
Linus Walleijff2b1352015-10-20 11:10:38 +02003673 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00003674 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003675
3676 s->private = "\n";
3677 ++*pos;
3678
3679 return ret;
3680}
3681
3682static void gpiolib_seq_stop(struct seq_file *s, void *v)
3683{
3684}
3685
3686static int gpiolib_seq_show(struct seq_file *s, void *v)
3687{
Linus Walleijff2b1352015-10-20 11:10:38 +02003688 struct gpio_device *gdev = v;
3689 struct gpio_chip *chip = gdev->chip;
3690 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003691
Linus Walleijff2b1352015-10-20 11:10:38 +02003692 if (!chip) {
3693 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3694 dev_name(&gdev->dev));
3695 return 0;
3696 }
3697
3698 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3699 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003700 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02003701 parent = chip->parent;
3702 if (parent)
3703 seq_printf(s, ", parent: %s/%s",
3704 parent->bus ? parent->bus->name : "no-bus",
3705 dev_name(parent));
Thierry Redingf9c4a312012-04-12 13:26:01 +02003706 if (chip->label)
3707 seq_printf(s, ", %s", chip->label);
3708 if (chip->can_sleep)
3709 seq_printf(s, ", can sleep");
3710 seq_printf(s, ":\n");
3711
3712 if (chip->dbg_show)
3713 chip->dbg_show(s, chip);
3714 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003715 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003716
David Brownelld2876d02008-02-04 22:28:20 -08003717 return 0;
3718}
3719
Thierry Redingf9c4a312012-04-12 13:26:01 +02003720static const struct seq_operations gpiolib_seq_ops = {
3721 .start = gpiolib_seq_start,
3722 .next = gpiolib_seq_next,
3723 .stop = gpiolib_seq_stop,
3724 .show = gpiolib_seq_show,
3725};
3726
David Brownelld2876d02008-02-04 22:28:20 -08003727static int gpiolib_open(struct inode *inode, struct file *file)
3728{
Thierry Redingf9c4a312012-04-12 13:26:01 +02003729 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08003730}
3731
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003732static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02003733 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08003734 .open = gpiolib_open,
3735 .read = seq_read,
3736 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02003737 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08003738};
3739
3740static int __init gpiolib_debugfs_init(void)
3741{
3742 /* /sys/kernel/debug/gpio */
3743 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3744 NULL, NULL, &gpiolib_operations);
3745 return 0;
3746}
3747subsys_initcall(gpiolib_debugfs_init);
3748
3749#endif /* DEBUG_FS */