blob: c76fa4ffb59c2103c361110762331a9c02b0b162 [file] [log] [blame]
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02001#include <linux/bitops.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 Walleijf881bab02015-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 Walleijf881bab02015-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 Walleijf881bab02015-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 Walleijf881bab02015-09-23 16:20:43 -0700272
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100273 if (!desc->name || !name)
Linus Walleijf881bab02015-09-23 16:20:43 -0700274 continue;
275
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100276 if (!strcmp(desc->name, name)) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700277 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100278 return desc;
Linus Walleijf881bab02015-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 Walleijf881bab02015-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 Walleijf881bab02015-09-23 16:20:43 -0700310 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200311 }
312
313 /* Then add all names to the GPIO descriptors */
314 for (i = 0; i != gc->ngpio; ++i)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100315 gdev->descs[i].name = gc->names[i];
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200316
317 return 0;
318}
319
Linus Walleijd7c51b42016-04-26 10:35:29 +0200320/*
321 * GPIO line handle management
322 */
323
324/**
325 * struct linehandle_state - contains the state of a userspace handle
326 * @gdev: the GPIO device the handle pertains to
327 * @label: consumer label used to tag descriptors
328 * @descs: the GPIO descriptors held by this handle
329 * @numdescs: the number of descriptors held in the descs array
330 */
331struct linehandle_state {
332 struct gpio_device *gdev;
333 const char *label;
334 struct gpio_desc *descs[GPIOHANDLES_MAX];
335 u32 numdescs;
336};
337
Lars-Peter Clausene3e847c2016-10-18 16:54:05 +0200338#define GPIOHANDLE_REQUEST_VALID_FLAGS \
339 (GPIOHANDLE_REQUEST_INPUT | \
340 GPIOHANDLE_REQUEST_OUTPUT | \
341 GPIOHANDLE_REQUEST_ACTIVE_LOW | \
342 GPIOHANDLE_REQUEST_OPEN_DRAIN | \
343 GPIOHANDLE_REQUEST_OPEN_SOURCE)
344
Linus Walleijd7c51b42016-04-26 10:35:29 +0200345static long linehandle_ioctl(struct file *filep, unsigned int cmd,
346 unsigned long arg)
347{
348 struct linehandle_state *lh = filep->private_data;
349 void __user *ip = (void __user *)arg;
350 struct gpiohandle_data ghd;
351 int i;
352
353 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
354 int val;
355
Lars-Peter Clausen3eded5d2016-10-18 16:54:02 +0200356 memset(&ghd, 0, sizeof(ghd));
357
Linus Walleijd7c51b42016-04-26 10:35:29 +0200358 /* TODO: check if descriptors are really input */
359 for (i = 0; i < lh->numdescs; i++) {
360 val = gpiod_get_value_cansleep(lh->descs[i]);
361 if (val < 0)
362 return val;
363 ghd.values[i] = val;
364 }
365
366 if (copy_to_user(ip, &ghd, sizeof(ghd)))
367 return -EFAULT;
368
369 return 0;
370 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
371 int vals[GPIOHANDLES_MAX];
372
373 /* TODO: check if descriptors are really output */
374 if (copy_from_user(&ghd, ip, sizeof(ghd)))
375 return -EFAULT;
376
377 /* Clamp all values to [0,1] */
378 for (i = 0; i < lh->numdescs; i++)
379 vals[i] = !!ghd.values[i];
380
381 /* Reuse the array setting function */
382 gpiod_set_array_value_complex(false,
383 true,
384 lh->numdescs,
385 lh->descs,
386 vals);
387 return 0;
388 }
389 return -EINVAL;
390}
391
392#ifdef CONFIG_COMPAT
393static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
394 unsigned long arg)
395{
396 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
397}
398#endif
399
400static int linehandle_release(struct inode *inode, struct file *filep)
401{
402 struct linehandle_state *lh = filep->private_data;
403 struct gpio_device *gdev = lh->gdev;
404 int i;
405
406 for (i = 0; i < lh->numdescs; i++)
407 gpiod_free(lh->descs[i]);
408 kfree(lh->label);
409 kfree(lh);
410 put_device(&gdev->dev);
411 return 0;
412}
413
414static const struct file_operations linehandle_fileops = {
415 .release = linehandle_release,
416 .owner = THIS_MODULE,
417 .llseek = noop_llseek,
418 .unlocked_ioctl = linehandle_ioctl,
419#ifdef CONFIG_COMPAT
420 .compat_ioctl = linehandle_ioctl_compat,
421#endif
422};
423
424static int linehandle_create(struct gpio_device *gdev, void __user *ip)
425{
426 struct gpiohandle_request handlereq;
427 struct linehandle_state *lh;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200428 struct file *file;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200429 int fd, i, ret;
430
431 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
432 return -EFAULT;
433 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
434 return -EINVAL;
435
436 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
437 if (!lh)
438 return -ENOMEM;
439 lh->gdev = gdev;
440 get_device(&gdev->dev);
441
442 /* Make sure this is terminated */
443 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
444 if (strlen(handlereq.consumer_label)) {
445 lh->label = kstrdup(handlereq.consumer_label,
446 GFP_KERNEL);
447 if (!lh->label) {
448 ret = -ENOMEM;
449 goto out_free_lh;
450 }
451 }
452
453 /* Request each GPIO */
454 for (i = 0; i < handlereq.lines; i++) {
455 u32 offset = handlereq.lineoffsets[i];
456 u32 lflags = handlereq.flags;
457 struct gpio_desc *desc;
458
Lars-Peter Clausene405f9f2016-10-18 16:54:01 +0200459 if (offset >= gdev->ngpio) {
460 ret = -EINVAL;
461 goto out_free_descs;
462 }
463
Lars-Peter Clausene3e847c2016-10-18 16:54:05 +0200464 /* Return an error if a unknown flag is set */
465 if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) {
466 ret = -EINVAL;
467 goto out_free_descs;
468 }
469
Linus Walleijd7c51b42016-04-26 10:35:29 +0200470 desc = &gdev->descs[offset];
471 ret = gpiod_request(desc, lh->label);
472 if (ret)
473 goto out_free_descs;
474 lh->descs[i] = desc;
475
476 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
477 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
478 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
479 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
480 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
481 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
482
483 /*
484 * Lines have to be requested explicitly for input
485 * or output, else the line will be treated "as is".
486 */
487 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
488 int val = !!handlereq.default_values[i];
489
490 ret = gpiod_direction_output(desc, val);
491 if (ret)
492 goto out_free_descs;
493 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
494 ret = gpiod_direction_input(desc);
495 if (ret)
496 goto out_free_descs;
497 }
498 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
499 offset);
500 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200501 /* Let i point at the last handle */
502 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200503 lh->numdescs = handlereq.lines;
504
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200505 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200506 if (fd < 0) {
507 ret = fd;
508 goto out_free_descs;
509 }
510
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200511 file = anon_inode_getfile("gpio-linehandle",
512 &linehandle_fileops,
513 lh,
514 O_RDONLY | O_CLOEXEC);
515 if (IS_ERR(file)) {
516 ret = PTR_ERR(file);
517 goto out_put_unused_fd;
518 }
519
Linus Walleijd7c51b42016-04-26 10:35:29 +0200520 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200521 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200522 /*
523 * fput() will trigger the release() callback, so do not go onto
524 * the regular error cleanup path here.
525 */
526 fput(file);
527 put_unused_fd(fd);
528 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200529 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200530
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200531 fd_install(fd, file);
532
Linus Walleijd7c51b42016-04-26 10:35:29 +0200533 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
534 lh->numdescs);
535
536 return 0;
537
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200538out_put_unused_fd:
539 put_unused_fd(fd);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200540out_free_descs:
541 for (; i >= 0; i--)
542 gpiod_free(lh->descs[i]);
543 kfree(lh->label);
544out_free_lh:
545 kfree(lh);
546 put_device(&gdev->dev);
547 return ret;
548}
549
Linus Walleij61f922d2016-06-02 11:30:15 +0200550/*
551 * GPIO line event management
552 */
553
554/**
555 * struct lineevent_state - contains the state of a userspace event
556 * @gdev: the GPIO device the event pertains to
557 * @label: consumer label used to tag descriptors
558 * @desc: the GPIO descriptor held by this event
559 * @eflags: the event flags this line was requested with
560 * @irq: the interrupt that trigger in response to events on this GPIO
561 * @wait: wait queue that handles blocking reads of events
562 * @events: KFIFO for the GPIO events
563 * @read_lock: mutex lock to protect reads from colliding with adding
564 * new events to the FIFO
565 */
566struct lineevent_state {
567 struct gpio_device *gdev;
568 const char *label;
569 struct gpio_desc *desc;
570 u32 eflags;
571 int irq;
572 wait_queue_head_t wait;
573 DECLARE_KFIFO(events, struct gpioevent_data, 16);
574 struct mutex read_lock;
575};
576
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200577#define GPIOEVENT_REQUEST_VALID_FLAGS \
578 (GPIOEVENT_REQUEST_RISING_EDGE | \
579 GPIOEVENT_REQUEST_FALLING_EDGE)
580
Linus Walleij61f922d2016-06-02 11:30:15 +0200581static unsigned int lineevent_poll(struct file *filep,
582 struct poll_table_struct *wait)
583{
584 struct lineevent_state *le = filep->private_data;
585 unsigned int events = 0;
586
587 poll_wait(filep, &le->wait, wait);
588
589 if (!kfifo_is_empty(&le->events))
590 events = POLLIN | POLLRDNORM;
591
592 return events;
593}
594
595
596static ssize_t lineevent_read(struct file *filep,
597 char __user *buf,
598 size_t count,
599 loff_t *f_ps)
600{
601 struct lineevent_state *le = filep->private_data;
602 unsigned int copied;
603 int ret;
604
605 if (count < sizeof(struct gpioevent_data))
606 return -EINVAL;
607
608 do {
609 if (kfifo_is_empty(&le->events)) {
610 if (filep->f_flags & O_NONBLOCK)
611 return -EAGAIN;
612
613 ret = wait_event_interruptible(le->wait,
614 !kfifo_is_empty(&le->events));
615 if (ret)
616 return ret;
617 }
618
619 if (mutex_lock_interruptible(&le->read_lock))
620 return -ERESTARTSYS;
621 ret = kfifo_to_user(&le->events, buf, count, &copied);
622 mutex_unlock(&le->read_lock);
623
624 if (ret)
625 return ret;
626
627 /*
628 * If we couldn't read anything from the fifo (a different
629 * thread might have been faster) we either return -EAGAIN if
630 * the file descriptor is non-blocking, otherwise we go back to
631 * sleep and wait for more data to arrive.
632 */
633 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
634 return -EAGAIN;
635
636 } while (copied == 0);
637
638 return copied;
639}
640
641static int lineevent_release(struct inode *inode, struct file *filep)
642{
643 struct lineevent_state *le = filep->private_data;
644 struct gpio_device *gdev = le->gdev;
645
646 free_irq(le->irq, le);
647 gpiod_free(le->desc);
648 kfree(le->label);
649 kfree(le);
650 put_device(&gdev->dev);
651 return 0;
652}
653
654static long lineevent_ioctl(struct file *filep, unsigned int cmd,
655 unsigned long arg)
656{
657 struct lineevent_state *le = filep->private_data;
658 void __user *ip = (void __user *)arg;
659 struct gpiohandle_data ghd;
660
661 /*
662 * We can get the value for an event line but not set it,
663 * because it is input by definition.
664 */
665 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
666 int val;
667
Lars-Peter Clausend82aa4a2016-10-18 16:54:04 +0200668 memset(&ghd, 0, sizeof(ghd));
669
Linus Walleij61f922d2016-06-02 11:30:15 +0200670 val = gpiod_get_value_cansleep(le->desc);
671 if (val < 0)
672 return val;
673 ghd.values[0] = val;
674
675 if (copy_to_user(ip, &ghd, sizeof(ghd)))
676 return -EFAULT;
677
678 return 0;
679 }
680 return -EINVAL;
681}
682
683#ifdef CONFIG_COMPAT
684static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
685 unsigned long arg)
686{
687 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
688}
689#endif
690
691static const struct file_operations lineevent_fileops = {
692 .release = lineevent_release,
693 .read = lineevent_read,
694 .poll = lineevent_poll,
695 .owner = THIS_MODULE,
696 .llseek = noop_llseek,
697 .unlocked_ioctl = lineevent_ioctl,
698#ifdef CONFIG_COMPAT
699 .compat_ioctl = lineevent_ioctl_compat,
700#endif
701};
702
Ben Dooks33265b12016-06-17 16:03:13 +0100703static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200704{
705 struct lineevent_state *le = p;
706 struct gpioevent_data ge;
707 int ret;
708
709 ge.timestamp = ktime_get_real_ns();
710
711 if (le->eflags & GPIOEVENT_REQUEST_BOTH_EDGES) {
712 int level = gpiod_get_value_cansleep(le->desc);
713
714 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;
720 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
721 /* Emit low-to-high event */
722 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
723 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
724 /* 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;
1038 gdev->chrdev.kobj.parent = &gdev->dev.kobj;
1039 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
1040 status = cdev_add(&gdev->chrdev, gdev->dev.devt, 1);
1041 if (status < 0)
1042 chip_warn(gdev->chip, "failed to add char device %d:%d\n",
1043 MAJOR(gpio_devt), gdev->id);
1044 else
1045 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1046 MAJOR(gpio_devt), gdev->id);
1047 status = device_add(&gdev->dev);
1048 if (status)
1049 goto err_remove_chardev;
1050
1051 status = gpiochip_sysfs_register(gdev);
1052 if (status)
1053 goto err_remove_device;
1054
1055 /* From this point, the .release() function cleans up gpio_device */
1056 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001057 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1058 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1059 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1060
1061 return 0;
1062
1063err_remove_device:
1064 device_del(&gdev->dev);
1065err_remove_chardev:
1066 cdev_del(&gdev->chrdev);
1067 return status;
1068}
1069
1070static void gpiochip_setup_devs(void)
1071{
1072 struct gpio_device *gdev;
1073 int err;
1074
1075 list_for_each_entry(gdev, &gpio_devices, list) {
1076 err = gpiochip_setup_dev(gdev);
1077 if (err)
1078 pr_err("%s: Failed to initialize gpio device (%d)\n",
1079 dev_name(&gdev->dev), err);
1080 }
1081}
1082
Anton Vorontsov169b6a72008-04-28 02:14:47 -07001083/**
Linus Walleijb08ea352015-12-03 15:14:13 +01001084 * gpiochip_add_data() - register a gpio_chip
David Brownelld2876d02008-02-04 22:28:20 -08001085 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001086 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -08001087 *
1088 * Returns a negative errno if the chip can't be registered, such as
1089 * because the chip->base is invalid or already associated with a
1090 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001091 *
Linus Walleijb08ea352015-12-03 15:14:13 +01001092 * When gpiochip_add_data() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001093 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d82008-07-25 01:46:07 -07001094 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1095 * for GPIOs will fail rudely.
1096 *
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001097 * gpiochip_add_data() must only be called after gpiolib initialization,
1098 * ie after core_initcall().
1099 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001100 * If chip->base is negative, this requests dynamic assignment of
1101 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001102 */
Linus Walleijb08ea352015-12-03 15:14:13 +01001103int gpiochip_add_data(struct gpio_chip *chip, void *data)
David Brownelld2876d02008-02-04 22:28:20 -08001104{
1105 unsigned long flags;
1106 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001107 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001108 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001109 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001110
Linus Walleijff2b1352015-10-20 11:10:38 +02001111 /*
1112 * First: allocate and populate the internal stat container, and
1113 * set up the struct device.
1114 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001115 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001116 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001117 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001118 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001119 gdev->chip = chip;
1120 chip->gpiodev = gdev;
1121 if (chip->parent) {
1122 gdev->dev.parent = chip->parent;
1123 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001124 }
1125
Linus Walleijff2b1352015-10-20 11:10:38 +02001126#ifdef CONFIG_OF_GPIO
1127 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001128 if (chip->of_node)
1129 gdev->dev.of_node = chip->of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001130#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001131
Linus Walleijff2b1352015-10-20 11:10:38 +02001132 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1133 if (gdev->id < 0) {
1134 status = gdev->id;
1135 goto err_free_gdev;
1136 }
1137 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1138 device_initialize(&gdev->dev);
1139 dev_set_drvdata(&gdev->dev, gdev);
1140 if (chip->parent && chip->parent->driver)
1141 gdev->owner = chip->parent->driver->owner;
1142 else if (chip->owner)
1143 /* TODO: remove chip->owner */
1144 gdev->owner = chip->owner;
1145 else
1146 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001147
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001148 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001149 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001150 status = -ENOMEM;
1151 goto err_free_gdev;
1152 }
1153
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001154 if (chip->ngpio == 0) {
1155 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001156 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001157 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001158 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001159
1160 if (chip->label)
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001161 gdev->label = kstrdup(chip->label, GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001162 else
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001163 gdev->label = kstrdup("unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001164 if (!gdev->label) {
1165 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001166 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001167 }
1168
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001169 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001170 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001171
David Brownelld2876d02008-02-04 22:28:20 -08001172 spin_lock_irqsave(&gpio_lock, flags);
1173
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001174 /*
1175 * TODO: this allocates a Linux GPIO number base in the global
1176 * GPIO numberspace for this chip. In the long run we want to
1177 * get *rid* of this numberspace and use only descriptors, but
1178 * it may be a pipe dream. It will not happen before we get rid
1179 * of the sysfs interface anyways.
1180 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001181 if (base < 0) {
1182 base = gpiochip_find_base(chip->ngpio);
1183 if (base < 0) {
1184 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001185 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001186 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001187 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001188 /*
1189 * TODO: it should not be necessary to reflect the assigned
1190 * base outside of the GPIO subsystem. Go over drivers and
1191 * see if anyone makes use of this, else drop this and assign
1192 * a poison instead.
1193 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001194 chip->base = base;
1195 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001196 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001197
Linus Walleijff2b1352015-10-20 11:10:38 +02001198 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001199 if (status) {
1200 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001201 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001202 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001203
Linus Walleij545ebd92016-05-30 17:11:59 +02001204 spin_unlock_irqrestore(&gpio_lock, flags);
1205
Linus Walleijff2b1352015-10-20 11:10:38 +02001206 for (i = 0; i < chip->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001207 struct gpio_desc *desc = &gdev->descs[i];
David Brownelld8f388d82008-07-25 01:46:07 -07001208
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001209 desc->gdev = gdev;
Linus Walleij72d32002016-04-28 13:33:59 +02001210 /*
1211 * REVISIT: most hardware initializes GPIOs as inputs
1212 * (often with pullups enabled) so power usage is
1213 * minimized. Linux code should set the gpio direction
1214 * first thing; but until it does, and in case
1215 * chip->get_direction is not set, we may expose the
1216 * wrong direction in sysfs.
Johan Hovold05aa5202015-01-12 17:12:26 +01001217 */
Linus Walleij72d32002016-04-28 13:33:59 +02001218
1219 if (chip->get_direction) {
1220 /*
1221 * If we have .get_direction, set up the initial
1222 * direction flag from the hardware.
1223 */
1224 int dir = chip->get_direction(chip, i);
1225
1226 if (!dir)
1227 set_bit(FLAG_IS_OUT, &desc->flags);
1228 } else if (!chip->direction_input) {
1229 /*
1230 * If the chip lacks the .direction_input callback
1231 * we logically assume all lines are outputs.
1232 */
1233 set_bit(FLAG_IS_OUT, &desc->flags);
1234 }
David Brownelld2876d02008-02-04 22:28:20 -08001235 }
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001236
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301237#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001238 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301239#endif
1240
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001241 status = gpiochip_set_desc_names(chip);
1242 if (status)
1243 goto err_remove_from_list;
1244
Mika Westerberg79b804c2016-09-20 15:15:21 +03001245 status = gpiochip_irqchip_init_valid_mask(chip);
1246 if (status)
1247 goto err_remove_from_list;
1248
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001249 status = of_gpiochip_add(chip);
1250 if (status)
1251 goto err_remove_chip;
1252
Mika Westerberg664e3e52014-01-08 12:40:54 +02001253 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001254
Linus Walleij3c702e92015-10-21 15:29:53 +02001255 /*
1256 * By first adding the chardev, and then adding the device,
1257 * we get a device node entry in sysfs under
1258 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1259 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001260 * We can do this only if gpiolib has been initialized.
1261 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001262 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001263 if (gpiolib_initialized) {
1264 status = gpiochip_setup_dev(gdev);
1265 if (status)
1266 goto err_remove_chip;
1267 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001268 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001269
Johan Hovold225fce82015-01-12 17:12:25 +01001270err_remove_chip:
1271 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001272 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001273 of_gpiochip_remove(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001274 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001275err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001276 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001277 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001278 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001279err_free_label:
1280 kfree(gdev->label);
1281err_free_descs:
1282 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001283err_free_gdev:
1284 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001285 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +02001286 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001287 gdev->base, gdev->base + gdev->ngpio - 1,
1288 chip->label ? : "generic");
1289 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001290 return status;
1291}
Linus Walleijb08ea352015-12-03 15:14:13 +01001292EXPORT_SYMBOL_GPL(gpiochip_add_data);
David Brownelld2876d02008-02-04 22:28:20 -08001293
1294/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001295 * gpiochip_get_data() - get per-subdriver data for the chip
1296 */
1297void *gpiochip_get_data(struct gpio_chip *chip)
1298{
1299 return chip->gpiodev->data;
1300}
1301EXPORT_SYMBOL_GPL(gpiochip_get_data);
1302
1303/**
David Brownelld2876d02008-02-04 22:28:20 -08001304 * gpiochip_remove() - unregister a gpio_chip
1305 * @chip: the chip to unregister
1306 *
1307 * A gpio_chip with any GPIOs still requested may not be removed.
1308 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001309void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001310{
Linus Walleijff2b1352015-10-20 11:10:38 +02001311 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001312 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001313 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001314 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001315 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001316
Linus Walleijff2b1352015-10-20 11:10:38 +02001317 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001318 gpiochip_sysfs_unregister(gdev);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001319 /* Numb the device, cancelling all outstanding operations */
1320 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001321 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001322 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001323 gpiochip_remove_pin_ranges(chip);
Benoit Parrotf625d462015-02-02 11:44:44 -06001324 gpiochip_free_hogs(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001325 of_gpiochip_remove(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001326 /*
1327 * We accept no more calls into the driver from this point, so
1328 * NULL the driver data pointer
1329 */
1330 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001331
Johan Hovold6798aca2015-01-12 17:12:28 +01001332 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001333 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001334 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001335 if (test_bit(FLAG_REQUESTED, &desc->flags))
1336 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001337 }
David Brownelld2876d02008-02-04 22:28:20 -08001338 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001339
Johan Hovoldfab28b82015-05-04 17:10:27 +02001340 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001341 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001342 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001343
Linus Walleijff2b1352015-10-20 11:10:38 +02001344 /*
1345 * The gpiochip side puts its use of the device to rest here:
1346 * if there are no userspace clients, the chardev and device will
1347 * be removed, else it will be dangling until the last user is
1348 * gone.
1349 */
Ricardo Ribalda Delgadof4833b82016-06-03 19:10:02 +02001350 cdev_del(&gdev->chrdev);
1351 device_del(&gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001352 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001353}
1354EXPORT_SYMBOL_GPL(gpiochip_remove);
1355
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301356static void devm_gpio_chip_release(struct device *dev, void *res)
1357{
1358 struct gpio_chip *chip = *(struct gpio_chip **)res;
1359
1360 gpiochip_remove(chip);
1361}
1362
1363static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1364
1365{
1366 struct gpio_chip **r = res;
1367
1368 if (!r || !*r) {
1369 WARN_ON(!r || !*r);
1370 return 0;
1371 }
1372
1373 return *r == data;
1374}
1375
1376/**
1377 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1378 * @dev: the device pointer on which irq_chip belongs to.
1379 * @chip: the chip to register, with chip->base initialized
1380 * Context: potentially before irqs will work
1381 *
1382 * Returns a negative errno if the chip can't be registered, such as
1383 * because the chip->base is invalid or already associated with a
1384 * different chip. Otherwise it returns zero as a success code.
1385 *
1386 * The gpio chip automatically be released when the device is unbound.
1387 */
1388int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1389 void *data)
1390{
1391 struct gpio_chip **ptr;
1392 int ret;
1393
1394 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1395 GFP_KERNEL);
1396 if (!ptr)
1397 return -ENOMEM;
1398
1399 ret = gpiochip_add_data(chip, data);
1400 if (ret < 0) {
1401 devres_free(ptr);
1402 return ret;
1403 }
1404
1405 *ptr = chip;
1406 devres_add(dev, ptr);
1407
1408 return 0;
1409}
1410EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1411
1412/**
1413 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1414 * @dev: device for which which resource was allocated
1415 * @chip: the chip to remove
1416 *
1417 * A gpio_chip with any GPIOs still requested may not be removed.
1418 */
1419void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1420{
1421 int ret;
1422
1423 ret = devres_release(dev, devm_gpio_chip_release,
1424 devm_gpio_chip_match, chip);
1425 if (!ret)
1426 WARN_ON(ret);
1427}
1428EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1429
Grant Likely594fa262010-06-08 07:48:16 -06001430/**
1431 * gpiochip_find() - iterator for locating a specific gpio_chip
1432 * @data: data to pass to match function
1433 * @callback: Callback function to check gpio_chip
1434 *
1435 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1436 * determined by a user supplied @match callback. The callback should return
1437 * 0 if the device doesn't match and non-zero if it does. If the callback is
1438 * non-zero, this function will return to the caller and not iterate over any
1439 * more gpio_chips.
1440 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001441struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001442 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001443 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001444{
Linus Walleijff2b1352015-10-20 11:10:38 +02001445 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001446 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001447 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001448
1449 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001450 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001451 if (gdev->chip && match(gdev->chip, data)) {
1452 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001453 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001454 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001455
Grant Likely594fa262010-06-08 07:48:16 -06001456 spin_unlock_irqrestore(&gpio_lock, flags);
1457
1458 return chip;
1459}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001460EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001461
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001462static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1463{
1464 const char *name = data;
1465
1466 return !strcmp(chip->label, name);
1467}
1468
1469static struct gpio_chip *find_chip_by_name(const char *name)
1470{
1471 return gpiochip_find((void *)name, gpiochip_match_name);
1472}
1473
Linus Walleij14250522014-03-25 10:40:18 +01001474#ifdef CONFIG_GPIOLIB_IRQCHIP
1475
1476/*
1477 * The following is irqchip helper code for gpiochips.
1478 */
1479
Mika Westerberg79b804c2016-09-20 15:15:21 +03001480static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1481{
1482 int i;
1483
1484 if (!gpiochip->irq_need_valid_mask)
1485 return 0;
1486
1487 gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
1488 sizeof(long), GFP_KERNEL);
1489 if (!gpiochip->irq_valid_mask)
1490 return -ENOMEM;
1491
1492 /* Assume by default all GPIOs are valid */
1493 for (i = 0; i < gpiochip->ngpio; i++)
1494 set_bit(i, gpiochip->irq_valid_mask);
1495
1496 return 0;
1497}
1498
1499static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1500{
1501 kfree(gpiochip->irq_valid_mask);
1502 gpiochip->irq_valid_mask = NULL;
1503}
1504
1505static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1506 unsigned int offset)
1507{
1508 /* No mask means all valid */
1509 if (likely(!gpiochip->irq_valid_mask))
1510 return true;
1511 return test_bit(offset, gpiochip->irq_valid_mask);
1512}
1513
Linus Walleij14250522014-03-25 10:40:18 +01001514/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001515 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001516 * @gpiochip: the gpiochip to set the irqchip chain to
1517 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001518 * @parent_irq: the irq number corresponding to the parent IRQ for this
1519 * chained irqchip
1520 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001521 * coming out of the gpiochip. If the interrupt is nested rather than
1522 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001523 */
Linus Walleijd245b3f2016-11-24 10:57:25 +01001524static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1525 struct irq_chip *irqchip,
1526 int parent_irq,
1527 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001528{
Linus Walleij83141a72014-09-26 13:50:12 +02001529 unsigned int offset;
1530
Linus Walleij83141a72014-09-26 13:50:12 +02001531 if (!gpiochip->irqdomain) {
1532 chip_err(gpiochip, "called %s before setting up irqchip\n",
1533 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001534 return;
1535 }
1536
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001537 if (parent_handler) {
1538 if (gpiochip->can_sleep) {
1539 chip_err(gpiochip,
1540 "you cannot have chained interrupts on a "
1541 "chip that may sleep\n");
1542 return;
1543 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001544 /*
1545 * The parent irqchip is already using the chip_data for this
1546 * irqchip, so our callbacks simply use the handler_data.
1547 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001548 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1549 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001550
Linus Walleijd245b3f2016-11-24 10:57:25 +01001551 gpiochip->irq_chained_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001552 }
Linus Walleij83141a72014-09-26 13:50:12 +02001553
1554 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001555 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1556 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1557 continue;
Linus Walleij83141a72014-09-26 13:50:12 +02001558 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
1559 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001560 }
Linus Walleij14250522014-03-25 10:40:18 +01001561}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001562
1563/**
1564 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1565 * @gpiochip: the gpiochip to set the irqchip chain to
1566 * @irqchip: the irqchip to chain to the gpiochip
1567 * @parent_irq: the irq number corresponding to the parent IRQ for this
1568 * chained irqchip
1569 * @parent_handler: the parent interrupt handler for the accumulated IRQ
1570 * coming out of the gpiochip. If the interrupt is nested rather than
1571 * cascaded, pass NULL in this handler argument
1572 */
1573void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1574 struct irq_chip *irqchip,
1575 int parent_irq,
1576 irq_flow_handler_t parent_handler)
1577{
1578 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1579 parent_handler);
1580}
Linus Walleij14250522014-03-25 10:40:18 +01001581EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1582
1583/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001584 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1585 * @gpiochip: the gpiochip to set the irqchip nested handler to
1586 * @irqchip: the irqchip to nest to the gpiochip
1587 * @parent_irq: the irq number corresponding to the parent IRQ for this
1588 * nested irqchip
1589 */
1590void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1591 struct irq_chip *irqchip,
1592 int parent_irq)
1593{
1594 if (!gpiochip->irq_nested) {
1595 chip_err(gpiochip, "tried to nest a chained gpiochip\n");
1596 return;
1597 }
1598 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1599 NULL);
1600}
1601EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1602
1603/**
Linus Walleij14250522014-03-25 10:40:18 +01001604 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1605 * @d: the irqdomain used by this irqchip
1606 * @irq: the global irq number used by this GPIO irqchip irq
1607 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1608 *
1609 * This function will set up the mapping for a certain IRQ line on a
1610 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1611 * stored inside the gpiochip.
1612 */
1613static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1614 irq_hw_number_t hwirq)
1615{
1616 struct gpio_chip *chip = d->host_data;
1617
Linus Walleij14250522014-03-25 10:40:18 +01001618 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001619 /*
1620 * This lock class tells lockdep that GPIO irqs are in a different
1621 * category than their parents, so it won't report false recursion.
1622 */
1623 irq_set_lockdep_class(irq, chip->lock_key);
Linus Walleij7633fb92014-04-09 13:20:38 +02001624 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001625 /* Chips that use nested thread handlers have them marked */
1626 if (chip->irq_nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001627 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001628 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001629
Linus Walleij1333b902014-04-23 16:45:12 +02001630 /*
1631 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1632 * is passed as default type.
1633 */
1634 if (chip->irq_default_type != IRQ_TYPE_NONE)
1635 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001636
1637 return 0;
1638}
1639
Linus Walleijc3626fd2014-03-28 20:42:01 +01001640static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1641{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001642 struct gpio_chip *chip = d->host_data;
1643
Linus Walleijd245b3f2016-11-24 10:57:25 +01001644 if (chip->irq_nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001645 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001646 irq_set_chip_and_handler(irq, NULL, NULL);
1647 irq_set_chip_data(irq, NULL);
1648}
1649
Linus Walleij14250522014-03-25 10:40:18 +01001650static const struct irq_domain_ops gpiochip_domain_ops = {
1651 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001652 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001653 /* Virtually all GPIO irqchips are twocell:ed */
1654 .xlate = irq_domain_xlate_twocell,
1655};
1656
1657static int gpiochip_irq_reqres(struct irq_data *d)
1658{
1659 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1660
Linus Walleijff2b1352015-10-20 11:10:38 +02001661 if (!try_module_get(chip->gpiodev->owner))
Grygorii Strashko5b76e792015-06-25 20:30:50 +03001662 return -ENODEV;
1663
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001664 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +01001665 chip_err(chip,
1666 "unable to lock HW IRQ %lu for IRQ\n",
1667 d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001668 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001669 return -EINVAL;
1670 }
1671 return 0;
1672}
1673
1674static void gpiochip_irq_relres(struct irq_data *d)
1675{
1676 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1677
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001678 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001679 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001680}
1681
1682static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1683{
1684 return irq_find_mapping(chip->irqdomain, offset);
1685}
1686
1687/**
1688 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1689 * @gpiochip: the gpiochip to remove the irqchip from
1690 *
1691 * This is called only from gpiochip_remove()
1692 */
1693static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1694{
Linus Walleijc3626fd2014-03-28 20:42:01 +01001695 unsigned int offset;
1696
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001697 acpi_gpiochip_free_interrupts(gpiochip);
1698
Linus Walleijd245b3f2016-11-24 10:57:25 +01001699 if (gpiochip->irq_chained_parent) {
1700 irq_set_chained_handler(gpiochip->irq_chained_parent, NULL);
1701 irq_set_handler_data(gpiochip->irq_chained_parent, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001702 }
1703
Linus Walleijc3626fd2014-03-28 20:42:01 +01001704 /* Remove all IRQ mappings and delete the domain */
1705 if (gpiochip->irqdomain) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001706 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1707 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1708 continue;
Grygorii Strashkoe3893382014-09-25 19:09:23 +03001709 irq_dispose_mapping(
1710 irq_find_mapping(gpiochip->irqdomain, offset));
Mika Westerberg79b804c2016-09-20 15:15:21 +03001711 }
Linus Walleij14250522014-03-25 10:40:18 +01001712 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001713 }
Linus Walleij14250522014-03-25 10:40:18 +01001714
1715 if (gpiochip->irqchip) {
1716 gpiochip->irqchip->irq_request_resources = NULL;
1717 gpiochip->irqchip->irq_release_resources = NULL;
1718 gpiochip->irqchip = NULL;
1719 }
Mika Westerberg79b804c2016-09-20 15:15:21 +03001720
1721 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01001722}
1723
1724/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001725 * _gpiochip_irqchip_add() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001726 * @gpiochip: the gpiochip to add the irqchip to
1727 * @irqchip: the irqchip to add to the gpiochip
1728 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1729 * allocate gpiochip irqs from
1730 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02001731 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1732 * to have the core avoid setting up any default type in the hardware.
Linus Walleijd245b3f2016-11-24 10:57:25 +01001733 * @nested: whether this is a nested irqchip calling handle_nested_irq()
1734 * in its IRQ handler
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001735 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +01001736 *
1737 * This function closely associates a certain irqchip with a certain
1738 * gpiochip, providing an irq domain to translate the local IRQs to
1739 * global irqs in the gpiolib core, and making sure that the gpiochip
1740 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01001741 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01001742 * from the gpiochip passed as chip data. An irqdomain will be stored
1743 * in the gpiochip that shall be used by the driver to handle IRQ number
1744 * translation. The gpiochip will need to be initialized and registered
1745 * before calling this function.
1746 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01001747 * This function will handle two cell:ed simple IRQs and assumes all
1748 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01001749 * need to be open coded.
1750 */
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001751int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
1752 struct irq_chip *irqchip,
1753 unsigned int first_irq,
1754 irq_flow_handler_t handler,
1755 unsigned int type,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001756 bool nested,
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001757 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +01001758{
1759 struct device_node *of_node;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001760 bool irq_base_set = false;
Linus Walleij14250522014-03-25 10:40:18 +01001761 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001762 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001763
1764 if (!gpiochip || !irqchip)
1765 return -EINVAL;
1766
Linus Walleij58383c782015-11-04 09:56:26 +01001767 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01001768 pr_err("missing gpiochip .dev parent pointer\n");
1769 return -EINVAL;
1770 }
Linus Walleijd245b3f2016-11-24 10:57:25 +01001771 gpiochip->irq_nested = nested;
Linus Walleij58383c782015-11-04 09:56:26 +01001772 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001773#ifdef CONFIG_OF_GPIO
1774 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07001775 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001776 * FIXME: get rid of this and use gpiochip->parent->of_node
1777 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01001778 */
1779 if (gpiochip->of_node)
1780 of_node = gpiochip->of_node;
1781#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01001782 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001783 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01001784 * used to configure the interrupts, as you may end-up with
1785 * conflicting triggers. Tell the user, and reset to NONE.
1786 */
1787 if (WARN(of_node && type != IRQ_TYPE_NONE,
1788 "%s: Ignoring %d default trigger\n", of_node->full_name, type))
1789 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001790 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1791 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1792 "Ignoring %d default trigger\n", type);
1793 type = IRQ_TYPE_NONE;
1794 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01001795
Linus Walleij14250522014-03-25 10:40:18 +01001796 gpiochip->irqchip = irqchip;
1797 gpiochip->irq_handler = handler;
1798 gpiochip->irq_default_type = type;
1799 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001800 gpiochip->lock_key = lock_key;
Linus Walleij14250522014-03-25 10:40:18 +01001801 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1802 gpiochip->ngpio, first_irq,
1803 &gpiochip_domain_ops, gpiochip);
1804 if (!gpiochip->irqdomain) {
1805 gpiochip->irqchip = NULL;
1806 return -EINVAL;
1807 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02001808
1809 /*
1810 * It is possible for a driver to override this, but only if the
1811 * alternative functions are both implemented.
1812 */
1813 if (!irqchip->irq_request_resources &&
1814 !irqchip->irq_release_resources) {
1815 irqchip->irq_request_resources = gpiochip_irq_reqres;
1816 irqchip->irq_release_resources = gpiochip_irq_relres;
1817 }
Linus Walleij14250522014-03-25 10:40:18 +01001818
1819 /*
1820 * Prepare the mapping since the irqchip shall be orthogonal to
1821 * any gpiochip calls. If the first_irq was zero, this is
1822 * necessary to allocate descriptors for all IRQs.
1823 */
Linus Walleijc3626fd2014-03-28 20:42:01 +01001824 for (offset = 0; offset < gpiochip->ngpio; offset++) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001825 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1826 continue;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001827 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001828 if (!irq_base_set) {
Linus Walleijc3626fd2014-03-28 20:42:01 +01001829 /*
1830 * Store the base into the gpiochip to be used when
1831 * unmapping the irqs.
1832 */
1833 gpiochip->irq_base = irq_base;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001834 irq_base_set = true;
1835 }
Linus Walleijc3626fd2014-03-28 20:42:01 +01001836 }
Linus Walleij14250522014-03-25 10:40:18 +01001837
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001838 acpi_gpiochip_request_interrupts(gpiochip);
1839
Linus Walleij14250522014-03-25 10:40:18 +01001840 return 0;
1841}
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001842EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add);
Linus Walleij14250522014-03-25 10:40:18 +01001843
1844#else /* CONFIG_GPIOLIB_IRQCHIP */
1845
1846static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03001847static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1848{
1849 return 0;
1850}
1851static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1852{ }
Linus Walleij14250522014-03-25 10:40:18 +01001853
1854#endif /* CONFIG_GPIOLIB_IRQCHIP */
1855
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001856/**
1857 * gpiochip_generic_request() - request the gpio function for a pin
1858 * @chip: the gpiochip owning the GPIO
1859 * @offset: the offset of the GPIO to request for GPIO function
1860 */
1861int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1862{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001863 return pinctrl_request_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001864}
1865EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1866
1867/**
1868 * gpiochip_generic_free() - free the gpio function from a pin
1869 * @chip: the gpiochip to request the gpio function for
1870 * @offset: the offset of the GPIO to free from GPIO function
1871 */
1872void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1873{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001874 pinctrl_free_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001875}
1876EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1877
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301878#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001879
Linus Walleij3f0f8672012-11-20 12:40:15 +01001880/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001881 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1882 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001883 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001884 * @gpio_offset: the start offset in the current gpio_chip number space
1885 * @pin_group: name of the pin group inside the pin controller
1886 */
1887int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1888 struct pinctrl_dev *pctldev,
1889 unsigned int gpio_offset, const char *pin_group)
1890{
1891 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001892 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001893 int ret;
1894
1895 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1896 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001897 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001898 return -ENOMEM;
1899 }
1900
1901 /* Use local offset as range ID */
1902 pin_range->range.id = gpio_offset;
1903 pin_range->range.gc = chip;
1904 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001905 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001906 pin_range->pctldev = pctldev;
1907
1908 ret = pinctrl_get_group_pins(pctldev, pin_group,
1909 &pin_range->range.pins,
1910 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001911 if (ret < 0) {
1912 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001913 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001914 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001915
1916 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1917
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001918 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1919 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001920 pinctrl_dev_get_devname(pctldev), pin_group);
1921
Linus Walleij20ec3e32016-02-11 11:03:06 +01001922 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001923
1924 return 0;
1925}
1926EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1927
1928/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001929 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1930 * @chip: the gpiochip to add the range for
1931 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001932 * @gpio_offset: the start offset in the current gpio_chip number space
1933 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001934 * @npins: the number of pins from the offset of each pin space (GPIO and
1935 * pin controller) to accumulate in this range
1936 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001937int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001938 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001939 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301940{
1941 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001942 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001943 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301944
Linus Walleij3f0f8672012-11-20 12:40:15 +01001945 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301946 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001947 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001948 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301949 }
1950
Linus Walleij3f0f8672012-11-20 12:40:15 +01001951 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001952 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001953 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301954 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001955 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001956 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301957 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001958 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301959 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001960 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001961 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001962 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001963 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001964 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001965 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001966 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1967 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001968 pinctl_name,
1969 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301970
Linus Walleij20ec3e32016-02-11 11:03:06 +01001971 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001972
1973 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301974}
Linus Walleij165adc92012-11-06 14:49:39 +01001975EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301976
Linus Walleij3f0f8672012-11-20 12:40:15 +01001977/**
1978 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1979 * @chip: the chip to remove all the mappings for
1980 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301981void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1982{
1983 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01001984 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301985
Linus Walleij20ec3e32016-02-11 11:03:06 +01001986 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301987 list_del(&pin_range->node);
1988 pinctrl_remove_gpio_range(pin_range->pctldev,
1989 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01001990 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301991 }
1992}
Linus Walleij165adc92012-11-06 14:49:39 +01001993EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1994
1995#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301996
David Brownelld2876d02008-02-04 22:28:20 -08001997/* These "optional" allocation calls help prevent drivers from stomping
1998 * on each other, and help provide better diagnostics in debugfs.
1999 * They're called even less than the "set direction" calls.
2000 */
Mika Westerberg77c2d792014-03-10 14:54:50 +02002001static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002002{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002003 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002004 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002005 unsigned long flags;
2006
2007 spin_lock_irqsave(&gpio_lock, flags);
2008
David Brownelld2876d02008-02-04 22:28:20 -08002009 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002010 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002011 */
2012
2013 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2014 desc_set_label(desc, label ? : "?");
2015 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002016 } else {
David Brownelld2876d02008-02-04 22:28:20 -08002017 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002018 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002019 }
2020
2021 if (chip->request) {
2022 /* chip->request may sleep */
2023 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002024 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002025 spin_lock_irqsave(&gpio_lock, flags);
2026
2027 if (status < 0) {
2028 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07002029 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002030 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002031 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002032 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002033 if (chip->get_direction) {
2034 /* chip->get_direction may sleep */
2035 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002036 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002037 spin_lock_irqsave(&gpio_lock, flags);
2038 }
David Brownelld2876d02008-02-04 22:28:20 -08002039done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002040 spin_unlock_irqrestore(&gpio_lock, flags);
2041 return status;
2042}
2043
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002044/*
2045 * This descriptor validation needs to be inserted verbatim into each
2046 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002047 * macro to avoid endless duplication. If the desc is NULL it is an
2048 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002049 */
2050#define VALIDATE_DESC(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002051 if (!desc) \
2052 return 0; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002053 if (IS_ERR(desc)) { \
2054 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2055 return PTR_ERR(desc); \
2056 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002057 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002058 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002059 return -EINVAL; \
2060 } \
2061 if ( !desc->gdev->chip ) { \
2062 dev_warn(&desc->gdev->dev, \
2063 "%s: backing chip is gone\n", __func__); \
2064 return 0; \
2065 } } while (0)
2066
2067#define VALIDATE_DESC_VOID(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002068 if (!desc) \
2069 return; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002070 if (IS_ERR(desc)) { \
2071 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2072 return; \
2073 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002074 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002075 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002076 return; \
2077 } \
2078 if (!desc->gdev->chip) { \
2079 dev_warn(&desc->gdev->dev, \
2080 "%s: backing chip is gone\n", __func__); \
2081 return; \
2082 } } while (0)
2083
2084
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002085int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002086{
2087 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002088 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002089
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002090 VALIDATE_DESC(desc);
2091 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002092
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002093 if (try_module_get(gdev->owner)) {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002094 status = __gpiod_request(desc, label);
2095 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002096 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002097 else
2098 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002099 }
2100
David Brownelld2876d02008-02-04 22:28:20 -08002101 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002102 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002103
David Brownelld2876d02008-02-04 22:28:20 -08002104 return status;
2105}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002106
Mika Westerberg77c2d792014-03-10 14:54:50 +02002107static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002108{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002109 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002110 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002111 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002112
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002113 might_sleep();
2114
Alexandre Courbot372e7222013-02-03 01:29:29 +09002115 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002116
David Brownelld2876d02008-02-04 22:28:20 -08002117 spin_lock_irqsave(&gpio_lock, flags);
2118
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002119 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002120 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2121 if (chip->free) {
2122 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002123 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002124 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002125 spin_lock_irqsave(&gpio_lock, flags);
2126 }
David Brownelld2876d02008-02-04 22:28:20 -08002127 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002128 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002129 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302130 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302131 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002132 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002133 ret = true;
2134 }
David Brownelld2876d02008-02-04 22:28:20 -08002135
2136 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002137 return ret;
2138}
2139
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002140void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002141{
Linus Walleij33a68e82016-02-11 10:28:44 +01002142 if (desc && desc->gdev && __gpiod_free(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002143 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002144 put_device(&desc->gdev->dev);
2145 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002146 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002147 }
David Brownelld2876d02008-02-04 22:28:20 -08002148}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002149
David Brownelld2876d02008-02-04 22:28:20 -08002150/**
2151 * gpiochip_is_requested - return string iff signal was requested
2152 * @chip: controller managing the signal
2153 * @offset: of signal within controller's 0..(ngpio - 1) range
2154 *
2155 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002156 * The string returned is the label passed to gpio_request(); if none has been
2157 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002158 *
2159 * This function is for use by GPIO controller drivers. The label can
2160 * help with diagnostics, and knowing that the signal is used as a GPIO
2161 * can help avoid accidentally multiplexing it to another controller.
2162 */
2163const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2164{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002165 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002166
Dirk Behme48b59532015-08-18 18:02:32 +02002167 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002168 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002169
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002170 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002171
Alexandre Courbot372e7222013-02-03 01:29:29 +09002172 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002173 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002174 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002175}
2176EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2177
Mika Westerberg77c2d792014-03-10 14:54:50 +02002178/**
2179 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2180 * @desc: GPIO descriptor to request
2181 * @label: label for the GPIO
2182 *
2183 * Function allows GPIO chip drivers to request and use their own GPIO
2184 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2185 * function will not increase reference count of the GPIO chip module. This
2186 * allows the GPIO chip module to be unloaded as needed (we assume that the
2187 * GPIO chip driver handles freeing the GPIOs it has requested).
2188 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002189struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2190 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002191{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002192 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2193 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002194
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002195 if (IS_ERR(desc)) {
2196 chip_err(chip, "failed to get GPIO descriptor\n");
2197 return desc;
2198 }
2199
2200 err = __gpiod_request(desc, label);
2201 if (err < 0)
2202 return ERR_PTR(err);
2203
2204 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002205}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002206EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002207
2208/**
2209 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2210 * @desc: GPIO descriptor to free
2211 *
2212 * Function frees the given GPIO requested previously with
2213 * gpiochip_request_own_desc().
2214 */
2215void gpiochip_free_own_desc(struct gpio_desc *desc)
2216{
2217 if (desc)
2218 __gpiod_free(desc);
2219}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002220EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002221
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002222/*
2223 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002224 * some cases this is done in early boot, before IRQs are enabled.
2225 *
2226 * As a rule these aren't called more than once (except for drivers
2227 * using the open-drain emulation idiom) so these are natural places
2228 * to accumulate extra debugging checks. Note that we can't (yet)
2229 * rely on gpio_request() having been called beforehand.
2230 */
2231
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002232/**
2233 * gpiod_direction_input - set the GPIO direction to input
2234 * @desc: GPIO to set to input
2235 *
2236 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2237 * be called safely on it.
2238 *
2239 * Return 0 in case of success, else an error code.
2240 */
2241int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002242{
David Brownelld2876d02008-02-04 22:28:20 -08002243 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002244 int status = -EINVAL;
2245
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002246 VALIDATE_DESC(desc);
2247 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002248
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002249 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002250 gpiod_warn(desc,
2251 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02002252 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002253 return -EIO;
2254 }
2255
Alexandre Courbotd82da792014-07-22 16:17:43 +09002256 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08002257 if (status == 0)
2258 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002259
Alexandre Courbot372e7222013-02-03 01:29:29 +09002260 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002261
David Brownelld2876d02008-02-04 22:28:20 -08002262 return status;
2263}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002264EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002265
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002266static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002267{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002268 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002269 int val = !!value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002270 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08002271
Linus Walleijd468bf92013-09-24 11:54:38 +02002272 /* GPIOs used for IRQs shall not be set as output */
2273 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2274 gpiod_err(desc,
2275 "%s: tried to set a GPIO tied to an IRQ as output\n",
2276 __func__);
2277 return -EIO;
2278 }
2279
Linus Walleijc663e5f2016-03-22 10:51:16 +01002280 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2281 /* First see if we can enable open drain in hardware */
2282 if (gc->set_single_ended) {
2283 ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc),
2284 LINE_MODE_OPEN_DRAIN);
2285 if (!ret)
2286 goto set_output_value;
2287 }
2288 /* Emulate open drain by not actively driving the line high */
Linus Walleijad177312016-11-13 23:02:44 +01002289 if (val)
Linus Walleijc663e5f2016-03-22 10:51:16 +01002290 return gpiod_direction_input(desc);
2291 }
2292 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2293 if (gc->set_single_ended) {
2294 ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc),
2295 LINE_MODE_OPEN_SOURCE);
2296 if (!ret)
2297 goto set_output_value;
2298 }
2299 /* Emulate open source by not actively driving the line low */
Linus Walleijad177312016-11-13 23:02:44 +01002300 if (!val)
Linus Walleijc663e5f2016-03-22 10:51:16 +01002301 return gpiod_direction_input(desc);
2302 } else {
2303 /* Make sure to disable open drain/source hardware, if any */
2304 if (gc->set_single_ended)
2305 gc->set_single_ended(gc,
2306 gpio_chip_hwgpio(desc),
2307 LINE_MODE_PUSH_PULL);
2308 }
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302309
Linus Walleijc663e5f2016-03-22 10:51:16 +01002310set_output_value:
2311 if (!gc->set || !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002312 gpiod_warn(desc,
2313 "%s: missing set() or direction_output() operations\n",
2314 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002315 return -EIO;
2316 }
2317
Linus Walleijad177312016-11-13 23:02:44 +01002318 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002319 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002320 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002321 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002322 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2323 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002324}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002325
2326/**
2327 * gpiod_direction_output_raw - set the GPIO direction to output
2328 * @desc: GPIO to set to output
2329 * @value: initial output value of the GPIO
2330 *
2331 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2332 * be called safely on it. The initial value of the output must be specified
2333 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2334 *
2335 * Return 0 in case of success, else an error code.
2336 */
2337int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2338{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002339 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002340 return _gpiod_direction_output_raw(desc, value);
2341}
2342EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2343
2344/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302345 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002346 * @desc: GPIO to set to output
2347 * @value: initial output value of the GPIO
2348 *
2349 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2350 * be called safely on it. The initial value of the output must be specified
2351 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2352 * account.
2353 *
2354 * Return 0 in case of success, else an error code.
2355 */
2356int gpiod_direction_output(struct gpio_desc *desc, int value)
2357{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002358 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002359 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2360 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002361 else
2362 value = !!value;
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002363 return _gpiod_direction_output_raw(desc, value);
2364}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002365EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002366
Felipe Balbic4b5be92010-05-26 14:42:23 -07002367/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002368 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07002369 * @gpio: the gpio to set debounce time
2370 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002371 *
2372 * returns -ENOTSUPP if the controller does not support setting
2373 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002374 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002375int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002376{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002377 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002378
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002379 VALIDATE_DESC(desc);
2380 chip = desc->gdev->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002381 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01002382 gpiod_dbg(desc,
2383 "%s: missing set() or set_debounce() operations\n",
2384 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002385 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002386 }
2387
Alexandre Courbotd82da792014-07-22 16:17:43 +09002388 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002389}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002390EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002391
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002392/**
2393 * gpiod_is_active_low - test whether a GPIO is active-low or not
2394 * @desc: the gpio descriptor to test
2395 *
2396 * Returns 1 if the GPIO is active-low, 0 otherwise.
2397 */
2398int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002399{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002400 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002401 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002402}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002403EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002404
2405/* I/O calls are only valid after configuration completed; the relevant
2406 * "is this a valid GPIO" error checks should already have been done.
2407 *
2408 * "Get" operations are often inlinable as reading a pin value register,
2409 * and masking the relevant bit in that register.
2410 *
2411 * When "set" operations are inlinable, they involve writing that mask to
2412 * one register to set a low value, or a different register to set it high.
2413 * Otherwise locking is needed, so there may be little value to inlining.
2414 *
2415 *------------------------------------------------------------------------
2416 *
2417 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2418 * have requested the GPIO. That can include implicit requesting by
2419 * a direction setting call. Marking a gpio as requested locks its chip
2420 * in memory, guaranteeing that these table lookups need no more locking
2421 * and that gpiochip_remove() will fail.
2422 *
2423 * REVISIT when debugging, consider adding some instrumentation to ensure
2424 * that the GPIO was actually requested.
2425 */
2426
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002427static int _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002428{
2429 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002430 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002431 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002432
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002433 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002434 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002435 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002436 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002437 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002438 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002439}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002440
David Brownelld2876d02008-02-04 22:28:20 -08002441/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002442 * gpiod_get_raw_value() - return a gpio's raw value
2443 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002444 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002445 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002446 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002447 *
2448 * This function should be called from contexts where we cannot sleep, and will
2449 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002450 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002451int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002452{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002453 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002454 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002455 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002456 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002457}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002458EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002459
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002460/**
2461 * gpiod_get_value() - return a gpio's value
2462 * @desc: gpio whose value will be returned
2463 *
2464 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002465 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002466 *
2467 * This function should be called from contexts where we cannot sleep, and will
2468 * complain if the GPIO chip functions potentially sleep.
2469 */
2470int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002471{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002472 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002473
2474 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002475 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002476 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002477
2478 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002479 if (value < 0)
2480 return value;
2481
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002482 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2483 value = !value;
2484
2485 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002486}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002487EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002488
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302489/*
2490 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002491 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002492 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302493 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002494static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302495{
2496 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002497 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002498 int offset = gpio_chip_hwgpio(desc);
2499
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302500 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002501 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302502 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002503 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302504 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002505 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302506 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002507 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302508 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002509 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302510 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002511 gpiod_err(desc,
2512 "%s: Error in set_value for open drain err %d\n",
2513 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302514}
2515
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302516/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002517 * _gpio_set_open_source_value() - Set the open source gpio's value.
2518 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002519 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302520 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002521static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302522{
2523 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002524 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002525 int offset = gpio_chip_hwgpio(desc);
2526
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302527 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002528 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302529 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002530 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302531 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002532 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302533 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002534 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302535 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002536 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302537 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002538 gpiod_err(desc,
2539 "%s: Error in set_value for open source err %d\n",
2540 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302541}
2542
Alexandre Courbot23600962014-03-11 15:52:09 +09002543static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002544{
2545 struct gpio_chip *chip;
2546
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002547 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002548 trace_gpio_value(desc_to_gpio(desc), 0, value);
2549 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2550 _gpio_set_open_drain_value(desc, value);
2551 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2552 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302553 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09002554 chip->set(chip, gpio_chip_hwgpio(desc), value);
2555}
2556
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002557/*
2558 * set multiple outputs on the same chip;
2559 * use the chip's set_multiple function if available;
2560 * otherwise set the outputs sequentially;
2561 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2562 * defines which outputs are to be changed
2563 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2564 * defines the values the outputs specified by mask are to be set to
2565 */
2566static void gpio_chip_set_multiple(struct gpio_chip *chip,
2567 unsigned long *mask, unsigned long *bits)
2568{
2569 if (chip->set_multiple) {
2570 chip->set_multiple(chip, mask, bits);
2571 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02002572 unsigned int i;
2573
2574 /* set outputs if the corresponding mask bit is set */
2575 for_each_set_bit(i, mask, chip->ngpio)
2576 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002577 }
2578}
2579
Linus Walleij44c72882016-04-24 11:36:59 +02002580void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2581 unsigned int array_size,
2582 struct gpio_desc **desc_array,
2583 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002584{
2585 int i = 0;
2586
2587 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002588 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002589 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2590 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2591 int count = 0;
2592
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002593 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002594 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002595
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002596 memset(mask, 0, sizeof(mask));
2597 do {
2598 struct gpio_desc *desc = desc_array[i];
2599 int hwgpio = gpio_chip_hwgpio(desc);
2600 int value = value_array[i];
2601
2602 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2603 value = !value;
2604 trace_gpio_value(desc_to_gpio(desc), 0, value);
2605 /*
2606 * collect all normal outputs belonging to the same chip
2607 * open drain and open source outputs are set individually
2608 */
2609 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002610 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002611 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2612 _gpio_set_open_source_value(desc, value);
2613 } else {
2614 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002615 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002616 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002617 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002618 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002619 count++;
2620 }
2621 i++;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002622 } while ((i < array_size) &&
2623 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002624 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002625 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002626 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002627 }
2628}
2629
David Brownelld2876d02008-02-04 22:28:20 -08002630/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002631 * gpiod_set_raw_value() - assign a gpio's raw value
2632 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002633 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002634 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002635 * Set the raw value of the GPIO, i.e. the value of its physical line without
2636 * regard for its ACTIVE_LOW status.
2637 *
2638 * This function should be called from contexts where we cannot sleep, and will
2639 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002640 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002641void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002642{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002643 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002644 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002645 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002646 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002647}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002648EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002649
2650/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002651 * gpiod_set_value() - assign a gpio's value
2652 * @desc: gpio whose value will be assigned
2653 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002654 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002655 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2656 * account
2657 *
2658 * This function should be called from contexts where we cannot sleep, and will
2659 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002660 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002661void gpiod_set_value(struct gpio_desc *desc, int value)
2662{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002663 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002664 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002665 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002666 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2667 value = !value;
2668 _gpiod_set_raw_value(desc, value);
2669}
2670EXPORT_SYMBOL_GPL(gpiod_set_value);
2671
2672/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002673 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002674 * @array_size: number of elements in the descriptor / value arrays
2675 * @desc_array: array of GPIO descriptors whose values will be assigned
2676 * @value_array: array of values to assign
2677 *
2678 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2679 * without regard for their ACTIVE_LOW status.
2680 *
2681 * This function should be called from contexts where we cannot sleep, and will
2682 * complain if the GPIO chip functions potentially sleep.
2683 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002684void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002685 struct gpio_desc **desc_array, int *value_array)
2686{
2687 if (!desc_array)
2688 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002689 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2690 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002691}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002692EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002693
2694/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002695 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002696 * @array_size: number of elements in the descriptor / value arrays
2697 * @desc_array: array of GPIO descriptors whose values will be assigned
2698 * @value_array: array of values to assign
2699 *
2700 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2701 * into account.
2702 *
2703 * This function should be called from contexts where we cannot sleep, and will
2704 * complain if the GPIO chip functions potentially sleep.
2705 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002706void gpiod_set_array_value(unsigned int array_size,
2707 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002708{
2709 if (!desc_array)
2710 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002711 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2712 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002713}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002714EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002715
2716/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002717 * gpiod_cansleep() - report whether gpio value access may sleep
2718 * @desc: gpio to check
2719 *
2720 */
2721int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002722{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002723 VALIDATE_DESC(desc);
2724 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002725}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002726EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002727
David Brownell0f6d5042008-10-15 22:03:14 -07002728/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002729 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2730 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07002731 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002732 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2733 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07002734 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002735int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07002736{
Linus Walleij4c37ce82016-05-02 13:13:10 +02002737 struct gpio_chip *chip;
2738 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07002739
Linus Walleij79bb71b2016-06-15 22:57:38 +02002740 /*
2741 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2742 * requires this function to not return zero on an invalid descriptor
2743 * but rather a negative error number.
2744 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02002745 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02002746 return -EINVAL;
2747
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002748 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002749 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02002750 if (chip->to_irq) {
2751 int retirq = chip->to_irq(chip, offset);
2752
2753 /* Zero means NO_IRQ */
2754 if (!retirq)
2755 return -ENXIO;
2756
2757 return retirq;
2758 }
2759 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002760}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002761EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002762
Linus Walleijd468bf92013-09-24 11:54:38 +02002763/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002764 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002765 * @chip: the chip the GPIO to lock belongs to
2766 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002767 *
2768 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08002769 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08002770 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002771int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002772{
Linus Walleij9c102802016-05-25 10:56:03 +02002773 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02002774
Linus Walleij9c102802016-05-25 10:56:03 +02002775 desc = gpiochip_get_desc(chip, offset);
2776 if (IS_ERR(desc))
2777 return PTR_ERR(desc);
2778
Linus Walleij60f83392016-11-12 15:01:09 +01002779 /*
2780 * If it's fast: flush the direction setting if something changed
2781 * behind our back
2782 */
2783 if (!chip->can_sleep && chip->get_direction) {
Linus Walleij9c102802016-05-25 10:56:03 +02002784 int dir = chip->get_direction(chip, offset);
2785
2786 if (dir)
2787 clear_bit(FLAG_IS_OUT, &desc->flags);
2788 else
2789 set_bit(FLAG_IS_OUT, &desc->flags);
2790 }
2791
2792 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002793 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02002794 "%s: tried to flag a GPIO set as output for IRQ\n",
2795 __func__);
2796 return -EIO;
2797 }
2798
Linus Walleij9c102802016-05-25 10:56:03 +02002799 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01002800
2801 /*
2802 * If the consumer has not set up a label (such as when the
2803 * IRQ is referenced from .to_irq()) we set up a label here
2804 * so it is clear this is used as an interrupt.
2805 */
2806 if (!desc->label)
2807 desc_set_label(desc, "interrupt");
2808
Linus Walleijd468bf92013-09-24 11:54:38 +02002809 return 0;
2810}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002811EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002812
Linus Walleijd468bf92013-09-24 11:54:38 +02002813/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002814 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002815 * @chip: the chip the GPIO to lock belongs to
2816 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002817 *
2818 * This is used directly by GPIO drivers that want to indicate
2819 * that a certain GPIO is no longer used exclusively for IRQ.
2820 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002821void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02002822{
Linus Walleij3940c342016-11-14 00:09:07 +01002823 struct gpio_desc *desc;
2824
2825 desc = gpiochip_get_desc(chip, offset);
2826 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02002827 return;
2828
Linus Walleij3940c342016-11-14 00:09:07 +01002829 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
2830
2831 /* If we only had this marking, erase it */
2832 if (desc->label && !strcmp(desc->label, "interrupt"))
2833 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02002834}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002835EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002836
Linus Walleij6cee3822016-02-11 20:16:45 +01002837bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2838{
2839 if (offset >= chip->ngpio)
2840 return false;
2841
2842 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2843}
2844EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2845
Linus Walleij143b65d2016-02-16 15:41:42 +01002846bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2847{
2848 if (offset >= chip->ngpio)
2849 return false;
2850
2851 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2852}
2853EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2854
2855bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2856{
2857 if (offset >= chip->ngpio)
2858 return false;
2859
2860 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2861}
2862EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2863
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002864/**
2865 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2866 * @desc: gpio whose value will be returned
2867 *
2868 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002869 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002870 *
2871 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002872 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002873int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002874{
David Brownelld2876d02008-02-04 22:28:20 -08002875 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002876 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002877 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002878}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002879EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002880
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002881/**
2882 * gpiod_get_value_cansleep() - return a gpio's value
2883 * @desc: gpio whose value will be returned
2884 *
2885 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002886 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002887 *
2888 * This function is to be called from contexts that can sleep.
2889 */
2890int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002891{
David Brownelld2876d02008-02-04 22:28:20 -08002892 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002893
2894 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002895 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002896 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002897 if (value < 0)
2898 return value;
2899
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002900 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2901 value = !value;
2902
David Brownelld2876d02008-02-04 22:28:20 -08002903 return value;
2904}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002905EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002906
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002907/**
2908 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2909 * @desc: gpio whose value will be assigned
2910 * @value: value to assign
2911 *
2912 * Set the raw value of the GPIO, i.e. the value of its physical line without
2913 * regard for its ACTIVE_LOW status.
2914 *
2915 * This function is to be called from contexts that can sleep.
2916 */
2917void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002918{
David Brownelld2876d02008-02-04 22:28:20 -08002919 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002920 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002921 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002922}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002923EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002924
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002925/**
2926 * gpiod_set_value_cansleep() - assign a gpio's value
2927 * @desc: gpio whose value will be assigned
2928 * @value: value to assign
2929 *
2930 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2931 * account
2932 *
2933 * This function is to be called from contexts that can sleep.
2934 */
2935void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002936{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002937 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002938 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002939 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2940 value = !value;
2941 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002942}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002943EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002944
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002945/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002946 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002947 * @array_size: number of elements in the descriptor / value arrays
2948 * @desc_array: array of GPIO descriptors whose values will be assigned
2949 * @value_array: array of values to assign
2950 *
2951 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2952 * without regard for their ACTIVE_LOW status.
2953 *
2954 * This function is to be called from contexts that can sleep.
2955 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002956void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2957 struct gpio_desc **desc_array,
2958 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002959{
2960 might_sleep_if(extra_checks);
2961 if (!desc_array)
2962 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002963 gpiod_set_array_value_complex(true, true, array_size, desc_array,
2964 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002965}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002966EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002967
2968/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002969 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002970 * @array_size: number of elements in the descriptor / value arrays
2971 * @desc_array: array of GPIO descriptors whose values will be assigned
2972 * @value_array: array of values to assign
2973 *
2974 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2975 * into account.
2976 *
2977 * This function is to be called from contexts that can sleep.
2978 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002979void gpiod_set_array_value_cansleep(unsigned int array_size,
2980 struct gpio_desc **desc_array,
2981 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002982{
2983 might_sleep_if(extra_checks);
2984 if (!desc_array)
2985 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002986 gpiod_set_array_value_complex(false, true, array_size, desc_array,
2987 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002988}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002989EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002990
2991/**
Alexandre Courbotad824782013-12-03 12:20:11 +09002992 * gpiod_add_lookup_table() - register GPIO device consumers
2993 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002994 */
Alexandre Courbotad824782013-12-03 12:20:11 +09002995void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002996{
2997 mutex_lock(&gpio_lookup_lock);
2998
Alexandre Courbotad824782013-12-03 12:20:11 +09002999 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003000
3001 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003002}
3003
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303004/**
3005 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3006 * @table: table of consumers to unregister
3007 */
3008void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3009{
3010 mutex_lock(&gpio_lookup_lock);
3011
3012 list_del(&table->list);
3013
3014 mutex_unlock(&gpio_lookup_lock);
3015}
3016
Alexandre Courbotad824782013-12-03 12:20:11 +09003017static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3018{
3019 const char *dev_id = dev ? dev_name(dev) : NULL;
3020 struct gpiod_lookup_table *table;
3021
3022 mutex_lock(&gpio_lookup_lock);
3023
3024 list_for_each_entry(table, &gpio_lookup_list, list) {
3025 if (table->dev_id && dev_id) {
3026 /*
3027 * Valid strings on both ends, must be identical to have
3028 * a match
3029 */
3030 if (!strcmp(table->dev_id, dev_id))
3031 goto found;
3032 } else {
3033 /*
3034 * One of the pointers is NULL, so both must be to have
3035 * a match
3036 */
3037 if (dev_id == table->dev_id)
3038 goto found;
3039 }
3040 }
3041 table = NULL;
3042
3043found:
3044 mutex_unlock(&gpio_lookup_lock);
3045 return table;
3046}
3047
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003048static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09003049 unsigned int idx,
3050 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003051{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003052 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003053 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003054 struct gpiod_lookup *p;
3055
Alexandre Courbotad824782013-12-03 12:20:11 +09003056 table = gpiod_find_lookup_table(dev);
3057 if (!table)
3058 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003059
Alexandre Courbotad824782013-12-03 12:20:11 +09003060 for (p = &table->table[0]; p->chip_label; p++) {
3061 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003062
Alexandre Courbotad824782013-12-03 12:20:11 +09003063 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003064 if (p->idx != idx)
3065 continue;
3066
Alexandre Courbotad824782013-12-03 12:20:11 +09003067 /* If the lookup entry has a con_id, require exact match */
3068 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3069 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003070
Alexandre Courbotad824782013-12-03 12:20:11 +09003071 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003072
Alexandre Courbotad824782013-12-03 12:20:11 +09003073 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003074 dev_err(dev, "cannot find GPIO chip %s\n",
3075 p->chip_label);
3076 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003077 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003078
Alexandre Courbotad824782013-12-03 12:20:11 +09003079 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003080 dev_err(dev,
3081 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3082 idx, chip->ngpio, chip->label);
3083 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003084 }
3085
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09003086 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003087 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003088
3089 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003090 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003091
3092 return desc;
3093}
3094
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003095static int dt_gpio_count(struct device *dev, const char *con_id)
3096{
3097 int ret;
3098 char propname[32];
3099 unsigned int i;
3100
3101 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3102 if (con_id)
3103 snprintf(propname, sizeof(propname), "%s-%s",
3104 con_id, gpio_suffixes[i]);
3105 else
3106 snprintf(propname, sizeof(propname), "%s",
3107 gpio_suffixes[i]);
3108
3109 ret = of_gpio_named_count(dev->of_node, propname);
3110 if (ret >= 0)
3111 break;
3112 }
3113 return ret;
3114}
3115
3116static int platform_gpio_count(struct device *dev, const char *con_id)
3117{
3118 struct gpiod_lookup_table *table;
3119 struct gpiod_lookup *p;
3120 unsigned int count = 0;
3121
3122 table = gpiod_find_lookup_table(dev);
3123 if (!table)
3124 return -ENOENT;
3125
3126 for (p = &table->table[0]; p->chip_label; p++) {
3127 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3128 (!con_id && !p->con_id))
3129 count++;
3130 }
3131 if (!count)
3132 return -ENOENT;
3133
3134 return count;
3135}
3136
3137/**
3138 * gpiod_count - return the number of GPIOs associated with a device / function
3139 * or -ENOENT if no GPIO has been assigned to the requested function
3140 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3141 * @con_id: function within the GPIO consumer
3142 */
3143int gpiod_count(struct device *dev, const char *con_id)
3144{
3145 int count = -ENOENT;
3146
3147 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3148 count = dt_gpio_count(dev, con_id);
3149 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3150 count = acpi_gpio_count(dev, con_id);
3151
3152 if (count < 0)
3153 count = platform_gpio_count(dev, con_id);
3154
3155 return count;
3156}
3157EXPORT_SYMBOL_GPL(gpiod_count);
3158
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003159/**
Thierry Reding08791622014-04-25 16:54:22 +02003160 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003161 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003162 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003163 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003164 *
3165 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003166 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003167 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003168 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003169struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003170 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003171{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003172 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003173}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003174EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003175
3176/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003177 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3178 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3179 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003180 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003181 *
3182 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3183 * the requested function it will return NULL. This is convenient for drivers
3184 * that need to handle optional GPIOs.
3185 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003186struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003187 const char *con_id,
3188 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003189{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003190 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003191}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003192EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003193
Benoit Parrotf625d462015-02-02 11:44:44 -06003194
3195/**
3196 * gpiod_configure_flags - helper function to configure a given GPIO
3197 * @desc: gpio whose value will be assigned
3198 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02003199 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3200 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003201 * @dflags: gpiod_flags - optional GPIO initialization flags
3202 *
3203 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3204 * requested function and/or index, or another IS_ERR() code if an error
3205 * occurred while trying to acquire the GPIO.
3206 */
3207static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003208 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003209{
3210 int status;
3211
Johan Hovold85b03b32016-07-03 18:32:05 +02003212 if (lflags & GPIO_ACTIVE_LOW)
3213 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3214 if (lflags & GPIO_OPEN_DRAIN)
3215 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3216 if (lflags & GPIO_OPEN_SOURCE)
3217 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3218
Benoit Parrotf625d462015-02-02 11:44:44 -06003219 /* No particular flag request, return here... */
3220 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3221 pr_debug("no flags found for %s\n", con_id);
3222 return 0;
3223 }
3224
3225 /* Process flags */
3226 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3227 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01003228 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06003229 else
3230 status = gpiod_direction_input(desc);
3231
3232 return status;
3233}
3234
Thierry Reding29a1f2332014-04-25 17:10:06 +02003235/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003236 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003237 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003238 * @con_id: function within the GPIO consumer
3239 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003240 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003241 *
3242 * This variant of gpiod_get() allows to access GPIOs other than the first
3243 * defined one for functions that define several GPIOs.
3244 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003245 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3246 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003247 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003248 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003249struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003250 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003251 unsigned int idx,
3252 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003253{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003254 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003255 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003256 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003257
3258 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3259
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003260 if (dev) {
3261 /* Using device tree? */
3262 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3263 dev_dbg(dev, "using device tree for GPIO lookup\n");
3264 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3265 } else if (ACPI_COMPANION(dev)) {
3266 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Dmitry Torokhov25487532016-03-24 10:50:25 -07003267 desc = acpi_find_gpio(dev, con_id, idx, flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003268 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003269 }
3270
3271 /*
3272 * Either we are not using DT or ACPI, or their lookup did not return
3273 * a result. In that case, use platform lookup as a fallback.
3274 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003275 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003276 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003277 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003278 }
3279
3280 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02003281 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003282 return desc;
3283 }
3284
3285 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003286 if (status < 0)
3287 return ERR_PTR(status);
3288
Johan Hovold85b03b32016-07-03 18:32:05 +02003289 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003290 if (status < 0) {
3291 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3292 gpiod_put(desc);
3293 return ERR_PTR(status);
3294 }
3295
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003296 return desc;
3297}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003298EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003299
3300/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003301 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3302 * @fwnode: handle of the firmware node
3303 * @propname: name of the firmware property representing the GPIO
3304 *
3305 * This function can be used for drivers that get their configuration
3306 * from firmware.
3307 *
3308 * Function properly finds the corresponding GPIO using whatever is the
3309 * underlying firmware interface and then makes sure that the GPIO
3310 * descriptor is requested before it is returned to the caller.
3311 *
3312 * In case of error an ERR_PTR() is returned.
3313 */
3314struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3315 const char *propname)
3316{
3317 struct gpio_desc *desc = ERR_PTR(-ENODEV);
3318 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003319 bool single_ended = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02003320 int ret;
3321
3322 if (!fwnode)
3323 return ERR_PTR(-EINVAL);
3324
3325 if (is_of_node(fwnode)) {
3326 enum of_gpio_flags flags;
3327
Alexander Sverdlinc181fb32015-06-22 22:38:53 +02003328 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
Mika Westerberg40b73182014-10-21 13:33:59 +02003329 &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003330 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02003331 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003332 single_ended = flags & OF_GPIO_SINGLE_ENDED;
3333 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003334 } else if (is_acpi_node(fwnode)) {
3335 struct acpi_gpio_info info;
3336
Rafael J. Wysocki504a3372015-08-27 04:42:33 +02003337 desc = acpi_node_get_gpiod(fwnode, propname, 0, &info);
Mika Westerberg40b73182014-10-21 13:33:59 +02003338 if (!IS_ERR(desc))
Christophe RICARD52044722015-12-23 23:25:34 +01003339 active_low = info.polarity == GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02003340 }
3341
3342 if (IS_ERR(desc))
3343 return desc;
3344
Johan Hovold85b03b32016-07-03 18:32:05 +02003345 ret = gpiod_request(desc, NULL);
3346 if (ret)
3347 return ERR_PTR(ret);
3348
Mika Westerberg40b73182014-10-21 13:33:59 +02003349 if (active_low)
3350 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3351
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003352 if (single_ended) {
3353 if (active_low)
3354 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3355 else
3356 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3357 }
3358
Mika Westerberg40b73182014-10-21 13:33:59 +02003359 return desc;
3360}
3361EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3362
3363/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003364 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3365 * function
3366 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3367 * @con_id: function within the GPIO consumer
3368 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003369 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003370 *
3371 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3372 * specified index was assigned to the requested function it will return NULL.
3373 * This is convenient for drivers that need to handle optional GPIOs.
3374 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003375struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003376 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003377 unsigned int index,
3378 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003379{
3380 struct gpio_desc *desc;
3381
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003382 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003383 if (IS_ERR(desc)) {
3384 if (PTR_ERR(desc) == -ENOENT)
3385 return NULL;
3386 }
3387
3388 return desc;
3389}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003390EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003391
3392/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003393 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3394 * @desc: gpio whose value will be assigned
3395 * @name: gpio line name
3396 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3397 * of_get_gpio_hog()
3398 * @dflags: gpiod_flags - optional GPIO initialization flags
3399 */
3400int gpiod_hog(struct gpio_desc *desc, const char *name,
3401 unsigned long lflags, enum gpiod_flags dflags)
3402{
3403 struct gpio_chip *chip;
3404 struct gpio_desc *local_desc;
3405 int hwnum;
3406 int status;
3407
3408 chip = gpiod_to_chip(desc);
3409 hwnum = gpio_chip_hwgpio(desc);
3410
3411 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3412 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303413 status = PTR_ERR(local_desc);
3414 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3415 name, chip->label, hwnum, status);
3416 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06003417 }
3418
Johan Hovold85b03b32016-07-03 18:32:05 +02003419 status = gpiod_configure_flags(desc, name, lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06003420 if (status < 0) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303421 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3422 name, chip->label, hwnum, status);
Benoit Parrotf625d462015-02-02 11:44:44 -06003423 gpiochip_free_own_desc(desc);
3424 return status;
3425 }
3426
3427 /* Mark GPIO as hogged so it can be identified and removed later */
3428 set_bit(FLAG_IS_HOGGED, &desc->flags);
3429
3430 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3431 desc_to_gpio(desc), name,
3432 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3433 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3434 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3435
3436 return 0;
3437}
3438
3439/**
3440 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3441 * @chip: gpio chip to act on
3442 *
3443 * This is only used by of_gpiochip_remove to free hogged gpios
3444 */
3445static void gpiochip_free_hogs(struct gpio_chip *chip)
3446{
3447 int id;
3448
3449 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01003450 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3451 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06003452 }
3453}
3454
3455/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003456 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3457 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3458 * @con_id: function within the GPIO consumer
3459 * @flags: optional GPIO initialization flags
3460 *
3461 * This function acquires all the GPIOs defined under a given function.
3462 *
3463 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3464 * no GPIO has been assigned to the requested function, or another IS_ERR()
3465 * code if an error occurred while trying to acquire the GPIOs.
3466 */
3467struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3468 const char *con_id,
3469 enum gpiod_flags flags)
3470{
3471 struct gpio_desc *desc;
3472 struct gpio_descs *descs;
3473 int count;
3474
3475 count = gpiod_count(dev, con_id);
3476 if (count < 0)
3477 return ERR_PTR(count);
3478
3479 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3480 GFP_KERNEL);
3481 if (!descs)
3482 return ERR_PTR(-ENOMEM);
3483
3484 for (descs->ndescs = 0; descs->ndescs < count; ) {
3485 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3486 if (IS_ERR(desc)) {
3487 gpiod_put_array(descs);
3488 return ERR_CAST(desc);
3489 }
3490 descs->desc[descs->ndescs] = desc;
3491 descs->ndescs++;
3492 }
3493 return descs;
3494}
3495EXPORT_SYMBOL_GPL(gpiod_get_array);
3496
3497/**
3498 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3499 * function
3500 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3501 * @con_id: function within the GPIO consumer
3502 * @flags: optional GPIO initialization flags
3503 *
3504 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3505 * assigned to the requested function it will return NULL.
3506 */
3507struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3508 const char *con_id,
3509 enum gpiod_flags flags)
3510{
3511 struct gpio_descs *descs;
3512
3513 descs = gpiod_get_array(dev, con_id, flags);
3514 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3515 return NULL;
3516
3517 return descs;
3518}
3519EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3520
3521/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003522 * gpiod_put - dispose of a GPIO descriptor
3523 * @desc: GPIO descriptor to dispose of
3524 *
3525 * No descriptor can be used after gpiod_put() has been called on it.
3526 */
3527void gpiod_put(struct gpio_desc *desc)
3528{
3529 gpiod_free(desc);
3530}
3531EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08003532
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003533/**
3534 * gpiod_put_array - dispose of multiple GPIO descriptors
3535 * @descs: struct gpio_descs containing an array of descriptors
3536 */
3537void gpiod_put_array(struct gpio_descs *descs)
3538{
3539 unsigned int i;
3540
3541 for (i = 0; i < descs->ndescs; i++)
3542 gpiod_put(descs->desc[i]);
3543
3544 kfree(descs);
3545}
3546EXPORT_SYMBOL_GPL(gpiod_put_array);
3547
Linus Walleij3c702e92015-10-21 15:29:53 +02003548static int __init gpiolib_dev_init(void)
3549{
3550 int ret;
3551
3552 /* Register GPIO sysfs bus */
3553 ret = bus_register(&gpio_bus_type);
3554 if (ret < 0) {
3555 pr_err("gpiolib: could not register GPIO bus type\n");
3556 return ret;
3557 }
3558
3559 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3560 if (ret < 0) {
3561 pr_err("gpiolib: failed to allocate char dev region\n");
3562 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07003563 } else {
3564 gpiolib_initialized = true;
3565 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02003566 }
3567 return ret;
3568}
3569core_initcall(gpiolib_dev_init);
3570
David Brownelld2876d02008-02-04 22:28:20 -08003571#ifdef CONFIG_DEBUG_FS
3572
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003573static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08003574{
3575 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003576 struct gpio_chip *chip = gdev->chip;
3577 unsigned gpio = gdev->base;
3578 struct gpio_desc *gdesc = &gdev->descs[0];
David Brownelld2876d02008-02-04 22:28:20 -08003579 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02003580 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08003581
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003582 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02003583 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3584 if (gdesc->name) {
3585 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3586 gpio, gdesc->name);
3587 }
David Brownelld2876d02008-02-04 22:28:20 -08003588 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02003589 }
David Brownelld2876d02008-02-04 22:28:20 -08003590
Alexandre Courbot372e7222013-02-03 01:29:29 +09003591 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08003592 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02003593 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02003594 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3595 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08003596 is_out ? "out" : "in ",
3597 chip->get
3598 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02003599 : "? ",
3600 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08003601 seq_printf(s, "\n");
3602 }
3603}
3604
Thierry Redingf9c4a312012-04-12 13:26:01 +02003605static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08003606{
Grant Likely362432a2013-02-09 09:41:49 +00003607 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003608 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003609 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003610
3611 s->private = "";
3612
Grant Likely362432a2013-02-09 09:41:49 +00003613 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003614 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00003615 if (index-- == 0) {
3616 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003617 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00003618 }
3619 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003620
3621 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003622}
3623
3624static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3625{
Grant Likely362432a2013-02-09 09:41:49 +00003626 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003627 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003628 void *ret = NULL;
3629
Grant Likely362432a2013-02-09 09:41:49 +00003630 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003631 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003632 ret = NULL;
3633 else
Linus Walleijff2b1352015-10-20 11:10:38 +02003634 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00003635 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003636
3637 s->private = "\n";
3638 ++*pos;
3639
3640 return ret;
3641}
3642
3643static void gpiolib_seq_stop(struct seq_file *s, void *v)
3644{
3645}
3646
3647static int gpiolib_seq_show(struct seq_file *s, void *v)
3648{
Linus Walleijff2b1352015-10-20 11:10:38 +02003649 struct gpio_device *gdev = v;
3650 struct gpio_chip *chip = gdev->chip;
3651 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003652
Linus Walleijff2b1352015-10-20 11:10:38 +02003653 if (!chip) {
3654 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3655 dev_name(&gdev->dev));
3656 return 0;
3657 }
3658
3659 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3660 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003661 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02003662 parent = chip->parent;
3663 if (parent)
3664 seq_printf(s, ", parent: %s/%s",
3665 parent->bus ? parent->bus->name : "no-bus",
3666 dev_name(parent));
Thierry Redingf9c4a312012-04-12 13:26:01 +02003667 if (chip->label)
3668 seq_printf(s, ", %s", chip->label);
3669 if (chip->can_sleep)
3670 seq_printf(s, ", can sleep");
3671 seq_printf(s, ":\n");
3672
3673 if (chip->dbg_show)
3674 chip->dbg_show(s, chip);
3675 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003676 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003677
David Brownelld2876d02008-02-04 22:28:20 -08003678 return 0;
3679}
3680
Thierry Redingf9c4a312012-04-12 13:26:01 +02003681static const struct seq_operations gpiolib_seq_ops = {
3682 .start = gpiolib_seq_start,
3683 .next = gpiolib_seq_next,
3684 .stop = gpiolib_seq_stop,
3685 .show = gpiolib_seq_show,
3686};
3687
David Brownelld2876d02008-02-04 22:28:20 -08003688static int gpiolib_open(struct inode *inode, struct file *file)
3689{
Thierry Redingf9c4a312012-04-12 13:26:01 +02003690 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08003691}
3692
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003693static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02003694 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08003695 .open = gpiolib_open,
3696 .read = seq_read,
3697 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02003698 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08003699};
3700
3701static int __init gpiolib_debugfs_init(void)
3702{
3703 /* /sys/kernel/debug/gpio */
3704 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3705 NULL, NULL, &gpiolib_operations);
3706 return 0;
3707}
3708subsys_initcall(gpiolib_debugfs_init);
3709
3710#endif /* DEBUG_FS */