blob: f0fc3a0d37c829de62e3c136f37cdb7a835a11b7 [file] [log] [blame]
David Brownelld2876d02008-02-04 22:28:20 -08001#include <linux/kernel.h>
2#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07003#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08004#include <linux/irq.h>
5#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09006#include <linux/list.h>
David Brownelld8f388d2008-07-25 01:46:07 -07007#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/debugfs.h>
10#include <linux/seq_file.h>
11#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060012#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070013#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010015#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090016#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020017#include <linux/gpio/machine.h>
Jonas Gorskic771c2f2015-10-11 17:34:15 +020018#include <linux/pinctrl/consumer.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020019#include <linux/cdev.h>
20#include <linux/fs.h>
21#include <linux/uaccess.h>
Linus Walleij8b92e172016-05-27 14:24:04 +020022#include <linux/compat.h>
Linus Walleijd7c51b42016-04-26 10:35:29 +020023#include <linux/anon_inodes.h>
Linus Walleij61f922d2016-06-02 11:30:15 +020024#include <linux/kfifo.h>
25#include <linux/poll.h>
26#include <linux/timekeeping.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020027#include <uapi/linux/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080028
Mika Westerberg664e3e52014-01-08 12:40:54 +020029#include "gpiolib.h"
30
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060031#define CREATE_TRACE_POINTS
32#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080033
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070034/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080035 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070036 * The GPIO programming interface allows for inlining speed-critical
37 * get/set operations for common cases, so that access to SOC-integrated
38 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080039 */
40
41
42/* When debugging, extend minimal trust to callers and platform code.
43 * Also emit diagnostic messages that may help initial bringup, when
44 * board setup or driver bugs are most common.
45 *
46 * Otherwise, minimize overhead in what may be bitbanging codepaths.
47 */
48#ifdef DEBUG
49#define extra_checks 1
50#else
51#define extra_checks 0
52#endif
53
Linus Walleijff2b1352015-10-20 11:10:38 +020054/* Device and char device-related information */
55static DEFINE_IDA(gpio_ida);
Linus Walleij3c702e92015-10-21 15:29:53 +020056static dev_t gpio_devt;
57#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
58static struct bus_type gpio_bus_type = {
59 .name = "gpio",
60};
Linus Walleijff2b1352015-10-20 11:10:38 +020061
David Brownelld2876d02008-02-04 22:28:20 -080062/* gpio_lock prevents conflicts during gpio_desc[] table updates.
63 * While any GPIO is requested, its gpio_chip is not removable;
64 * each GPIO's "requested" flag serves as a lock and refcount.
65 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090066DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080067
Alexandre Courbotbae48da2013-10-17 10:21:38 -070068static DEFINE_MUTEX(gpio_lookup_lock);
69static LIST_HEAD(gpio_lookup_list);
Linus Walleijff2b1352015-10-20 11:10:38 +020070LIST_HEAD(gpio_devices);
Johan Hovold6d867502015-05-04 17:23:25 +020071
72static void gpiochip_free_hogs(struct gpio_chip *chip);
73static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
Mika Westerberg79b804c2016-09-20 15:15:21 +030074static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
75static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
Johan Hovold6d867502015-05-04 17:23:25 +020076
Guenter Roeck159f3cd2016-03-31 08:11:30 -070077static bool gpiolib_initialized;
Johan Hovold6d867502015-05-04 17:23:25 +020078
David Brownelld2876d02008-02-04 22:28:20 -080079static inline void desc_set_label(struct gpio_desc *d, const char *label)
80{
David Brownelld2876d02008-02-04 22:28:20 -080081 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080082}
83
Alexandre Courbot372e7222013-02-03 01:29:29 +090084/**
85 * Convert a GPIO number to its descriptor
86 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070087struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090088{
Linus Walleijff2b1352015-10-20 11:10:38 +020089 struct gpio_device *gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +090090 unsigned long flags;
91
92 spin_lock_irqsave(&gpio_lock, flags);
93
Linus Walleijff2b1352015-10-20 11:10:38 +020094 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +010095 if (gdev->base <= gpio &&
96 gdev->base + gdev->ngpio > gpio) {
Alexandre Courbot14e85c02014-11-19 16:51:27 +090097 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +010098 return &gdev->descs[gpio - gdev->base];
Alexandre Courbot14e85c02014-11-19 16:51:27 +090099 }
100 }
101
102 spin_unlock_irqrestore(&gpio_lock, flags);
103
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +0900104 if (!gpio_is_valid(gpio))
105 WARN(1, "invalid GPIO %d\n", gpio);
106
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900107 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900108}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700109EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900110
111/**
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900112 * Get the GPIO descriptor corresponding to the given hw number for this chip.
Linus Walleijd468bf92013-09-24 11:54:38 +0200113 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900114struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
115 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +0200116{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100117 struct gpio_device *gdev = chip->gpiodev;
118
119 if (hwnum >= gdev->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +0900120 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +0200121
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100122 return &gdev->descs[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200123}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900124
125/**
126 * Convert a GPIO descriptor to the integer namespace.
127 * This should disappear in the future but is needed since we still
128 * use GPIO numbers for error messages and sysfs nodes
129 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700130int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900131{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100132 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900133}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700134EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900135
136
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700137/**
138 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
139 * @desc: descriptor to return the chip of
140 */
141struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900142{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100143 if (!desc || !desc->gdev || !desc->gdev->chip)
144 return NULL;
145 return desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900146}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700147EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800148
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700149/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
150static int gpiochip_find_base(int ngpio)
151{
Linus Walleijff2b1352015-10-20 11:10:38 +0200152 struct gpio_device *gdev;
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900153 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700154
Linus Walleijff2b1352015-10-20 11:10:38 +0200155 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900156 /* found a free space? */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100157 if (gdev->base + gdev->ngpio <= base)
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900158 break;
159 else
160 /* nope, check the space right before the chip */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100161 base = gdev->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700162 }
163
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900164 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700165 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900166 return base;
167 } else {
168 pr_err("%s: cannot find free range\n", __func__);
169 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700170 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700171}
172
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700173/**
174 * gpiod_get_direction - return the current direction of a GPIO
175 * @desc: GPIO to get the direction of
176 *
177 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
178 *
179 * This function may sleep if gpiod_cansleep() is true.
180 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900181int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300182{
183 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900184 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300185 int status = -EINVAL;
186
Alexandre Courbot372e7222013-02-03 01:29:29 +0900187 chip = gpiod_to_chip(desc);
188 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300189
190 if (!chip->get_direction)
191 return status;
192
Alexandre Courbot372e7222013-02-03 01:29:29 +0900193 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300194 if (status > 0) {
195 /* GPIOF_DIR_IN, or other positive */
196 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900197 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300198 }
199 if (status == 0) {
200 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900201 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300202 }
203 return status;
204}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700205EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300206
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900207/*
208 * Add a new chip to the global chips list, keeping the list of chips sorted
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800209 * by range(means [base, base + ngpio - 1]) order.
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900210 *
211 * Return -EBUSY if the new chip overlaps with some other chip's integer
212 * space.
213 */
Linus Walleijff2b1352015-10-20 11:10:38 +0200214static int gpiodev_add_to_list(struct gpio_device *gdev)
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900215{
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800216 struct gpio_device *prev, *next;
Linus Walleijff2b1352015-10-20 11:10:38 +0200217
218 if (list_empty(&gpio_devices)) {
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800219 /* initial entry in list */
Linus Walleijff2b1352015-10-20 11:10:38 +0200220 list_add_tail(&gdev->list, &gpio_devices);
Sudip Mukherjeee28ecca2015-12-27 19:06:50 +0530221 return 0;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900222 }
223
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800224 next = list_entry(gpio_devices.next, struct gpio_device, list);
225 if (gdev->base + gdev->ngpio <= next->base) {
226 /* add before first entry */
227 list_add(&gdev->list, &gpio_devices);
Julien Grossholtz96098df2016-01-07 16:46:45 -0500228 return 0;
229 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900230
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800231 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
232 if (prev->base + prev->ngpio <= gdev->base) {
233 /* add behind last entry */
234 list_add_tail(&gdev->list, &gpio_devices);
235 return 0;
236 }
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800237
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800238 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
239 /* at the end of the list */
240 if (&next->list == &gpio_devices)
241 break;
242
243 /* add between prev and next */
244 if (prev->base + prev->ngpio <= gdev->base
245 && gdev->base + gdev->ngpio <= next->base) {
246 list_add(&gdev->list, &prev->list);
247 return 0;
248 }
249 }
250
251 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
252 return -EBUSY;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900253}
254
Linus Walleijf881bab2015-09-23 16:20:43 -0700255/**
256 * Convert a GPIO name to its descriptor
257 */
258static struct gpio_desc *gpio_name_to_desc(const char * const name)
259{
Linus Walleijff2b1352015-10-20 11:10:38 +0200260 struct gpio_device *gdev;
Linus Walleijf881bab2015-09-23 16:20:43 -0700261 unsigned long flags;
262
263 spin_lock_irqsave(&gpio_lock, flags);
264
Linus Walleijff2b1352015-10-20 11:10:38 +0200265 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijf881bab2015-09-23 16:20:43 -0700266 int i;
267
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100268 for (i = 0; i != gdev->ngpio; ++i) {
269 struct gpio_desc *desc = &gdev->descs[i];
Linus Walleijf881bab2015-09-23 16:20:43 -0700270
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100271 if (!desc->name || !name)
Linus Walleijf881bab2015-09-23 16:20:43 -0700272 continue;
273
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100274 if (!strcmp(desc->name, name)) {
Linus Walleijf881bab2015-09-23 16:20:43 -0700275 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100276 return desc;
Linus Walleijf881bab2015-09-23 16:20:43 -0700277 }
278 }
279 }
280
281 spin_unlock_irqrestore(&gpio_lock, flags);
282
283 return NULL;
284}
285
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200286/*
287 * Takes the names from gc->names and checks if they are all unique. If they
288 * are, they are assigned to their gpio descriptors.
289 *
Bamvor Jian Zhanged379152015-11-14 16:43:20 +0800290 * Warning if one of the names is already used for a different GPIO.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200291 */
292static int gpiochip_set_desc_names(struct gpio_chip *gc)
293{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100294 struct gpio_device *gdev = gc->gpiodev;
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200295 int i;
296
297 if (!gc->names)
298 return 0;
299
300 /* First check all names if they are unique */
301 for (i = 0; i != gc->ngpio; ++i) {
302 struct gpio_desc *gpio;
303
304 gpio = gpio_name_to_desc(gc->names[i]);
Linus Walleijf881bab2015-09-23 16:20:43 -0700305 if (gpio)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100306 dev_warn(&gdev->dev,
Linus Walleij34ffd852015-10-20 11:31:54 +0200307 "Detected name collision for GPIO name '%s'\n",
Linus Walleijf881bab2015-09-23 16:20:43 -0700308 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200309 }
310
311 /* Then add all names to the GPIO descriptors */
312 for (i = 0; i != gc->ngpio; ++i)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100313 gdev->descs[i].name = gc->names[i];
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200314
315 return 0;
316}
317
Linus Walleijd7c51b42016-04-26 10:35:29 +0200318/*
319 * GPIO line handle management
320 */
321
322/**
323 * struct linehandle_state - contains the state of a userspace handle
324 * @gdev: the GPIO device the handle pertains to
325 * @label: consumer label used to tag descriptors
326 * @descs: the GPIO descriptors held by this handle
327 * @numdescs: the number of descriptors held in the descs array
328 */
329struct linehandle_state {
330 struct gpio_device *gdev;
331 const char *label;
332 struct gpio_desc *descs[GPIOHANDLES_MAX];
333 u32 numdescs;
334};
335
336static long linehandle_ioctl(struct file *filep, unsigned int cmd,
337 unsigned long arg)
338{
339 struct linehandle_state *lh = filep->private_data;
340 void __user *ip = (void __user *)arg;
341 struct gpiohandle_data ghd;
342 int i;
343
344 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
345 int val;
346
347 /* TODO: check if descriptors are really input */
348 for (i = 0; i < lh->numdescs; i++) {
349 val = gpiod_get_value_cansleep(lh->descs[i]);
350 if (val < 0)
351 return val;
352 ghd.values[i] = val;
353 }
354
355 if (copy_to_user(ip, &ghd, sizeof(ghd)))
356 return -EFAULT;
357
358 return 0;
359 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
360 int vals[GPIOHANDLES_MAX];
361
362 /* TODO: check if descriptors are really output */
363 if (copy_from_user(&ghd, ip, sizeof(ghd)))
364 return -EFAULT;
365
366 /* Clamp all values to [0,1] */
367 for (i = 0; i < lh->numdescs; i++)
368 vals[i] = !!ghd.values[i];
369
370 /* Reuse the array setting function */
371 gpiod_set_array_value_complex(false,
372 true,
373 lh->numdescs,
374 lh->descs,
375 vals);
376 return 0;
377 }
378 return -EINVAL;
379}
380
381#ifdef CONFIG_COMPAT
382static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
383 unsigned long arg)
384{
385 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
386}
387#endif
388
389static int linehandle_release(struct inode *inode, struct file *filep)
390{
391 struct linehandle_state *lh = filep->private_data;
392 struct gpio_device *gdev = lh->gdev;
393 int i;
394
395 for (i = 0; i < lh->numdescs; i++)
396 gpiod_free(lh->descs[i]);
397 kfree(lh->label);
398 kfree(lh);
399 put_device(&gdev->dev);
400 return 0;
401}
402
403static const struct file_operations linehandle_fileops = {
404 .release = linehandle_release,
405 .owner = THIS_MODULE,
406 .llseek = noop_llseek,
407 .unlocked_ioctl = linehandle_ioctl,
408#ifdef CONFIG_COMPAT
409 .compat_ioctl = linehandle_ioctl_compat,
410#endif
411};
412
413static int linehandle_create(struct gpio_device *gdev, void __user *ip)
414{
415 struct gpiohandle_request handlereq;
416 struct linehandle_state *lh;
417 int fd, i, ret;
418
419 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
420 return -EFAULT;
421 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
422 return -EINVAL;
423
424 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
425 if (!lh)
426 return -ENOMEM;
427 lh->gdev = gdev;
428 get_device(&gdev->dev);
429
430 /* Make sure this is terminated */
431 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
432 if (strlen(handlereq.consumer_label)) {
433 lh->label = kstrdup(handlereq.consumer_label,
434 GFP_KERNEL);
435 if (!lh->label) {
436 ret = -ENOMEM;
437 goto out_free_lh;
438 }
439 }
440
441 /* Request each GPIO */
442 for (i = 0; i < handlereq.lines; i++) {
443 u32 offset = handlereq.lineoffsets[i];
444 u32 lflags = handlereq.flags;
445 struct gpio_desc *desc;
446
447 desc = &gdev->descs[offset];
448 ret = gpiod_request(desc, lh->label);
449 if (ret)
450 goto out_free_descs;
451 lh->descs[i] = desc;
452
453 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
454 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
455 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
456 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
457 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
458 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
459
460 /*
461 * Lines have to be requested explicitly for input
462 * or output, else the line will be treated "as is".
463 */
464 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
465 int val = !!handlereq.default_values[i];
466
467 ret = gpiod_direction_output(desc, val);
468 if (ret)
469 goto out_free_descs;
470 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
471 ret = gpiod_direction_input(desc);
472 if (ret)
473 goto out_free_descs;
474 }
475 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
476 offset);
477 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200478 /* Let i point at the last handle */
479 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200480 lh->numdescs = handlereq.lines;
481
482 fd = anon_inode_getfd("gpio-linehandle",
483 &linehandle_fileops,
484 lh,
485 O_RDONLY | O_CLOEXEC);
486 if (fd < 0) {
487 ret = fd;
488 goto out_free_descs;
489 }
490
491 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200492 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
493 ret = -EFAULT;
494 goto out_free_descs;
495 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200496
497 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
498 lh->numdescs);
499
500 return 0;
501
502out_free_descs:
503 for (; i >= 0; i--)
504 gpiod_free(lh->descs[i]);
505 kfree(lh->label);
506out_free_lh:
507 kfree(lh);
508 put_device(&gdev->dev);
509 return ret;
510}
511
Linus Walleij61f922d2016-06-02 11:30:15 +0200512/*
513 * GPIO line event management
514 */
515
516/**
517 * struct lineevent_state - contains the state of a userspace event
518 * @gdev: the GPIO device the event pertains to
519 * @label: consumer label used to tag descriptors
520 * @desc: the GPIO descriptor held by this event
521 * @eflags: the event flags this line was requested with
522 * @irq: the interrupt that trigger in response to events on this GPIO
523 * @wait: wait queue that handles blocking reads of events
524 * @events: KFIFO for the GPIO events
525 * @read_lock: mutex lock to protect reads from colliding with adding
526 * new events to the FIFO
527 */
528struct lineevent_state {
529 struct gpio_device *gdev;
530 const char *label;
531 struct gpio_desc *desc;
532 u32 eflags;
533 int irq;
534 wait_queue_head_t wait;
535 DECLARE_KFIFO(events, struct gpioevent_data, 16);
536 struct mutex read_lock;
537};
538
539static unsigned int lineevent_poll(struct file *filep,
540 struct poll_table_struct *wait)
541{
542 struct lineevent_state *le = filep->private_data;
543 unsigned int events = 0;
544
545 poll_wait(filep, &le->wait, wait);
546
547 if (!kfifo_is_empty(&le->events))
548 events = POLLIN | POLLRDNORM;
549
550 return events;
551}
552
553
554static ssize_t lineevent_read(struct file *filep,
555 char __user *buf,
556 size_t count,
557 loff_t *f_ps)
558{
559 struct lineevent_state *le = filep->private_data;
560 unsigned int copied;
561 int ret;
562
563 if (count < sizeof(struct gpioevent_data))
564 return -EINVAL;
565
566 do {
567 if (kfifo_is_empty(&le->events)) {
568 if (filep->f_flags & O_NONBLOCK)
569 return -EAGAIN;
570
571 ret = wait_event_interruptible(le->wait,
572 !kfifo_is_empty(&le->events));
573 if (ret)
574 return ret;
575 }
576
577 if (mutex_lock_interruptible(&le->read_lock))
578 return -ERESTARTSYS;
579 ret = kfifo_to_user(&le->events, buf, count, &copied);
580 mutex_unlock(&le->read_lock);
581
582 if (ret)
583 return ret;
584
585 /*
586 * If we couldn't read anything from the fifo (a different
587 * thread might have been faster) we either return -EAGAIN if
588 * the file descriptor is non-blocking, otherwise we go back to
589 * sleep and wait for more data to arrive.
590 */
591 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
592 return -EAGAIN;
593
594 } while (copied == 0);
595
596 return copied;
597}
598
599static int lineevent_release(struct inode *inode, struct file *filep)
600{
601 struct lineevent_state *le = filep->private_data;
602 struct gpio_device *gdev = le->gdev;
603
604 free_irq(le->irq, le);
605 gpiod_free(le->desc);
606 kfree(le->label);
607 kfree(le);
608 put_device(&gdev->dev);
609 return 0;
610}
611
612static long lineevent_ioctl(struct file *filep, unsigned int cmd,
613 unsigned long arg)
614{
615 struct lineevent_state *le = filep->private_data;
616 void __user *ip = (void __user *)arg;
617 struct gpiohandle_data ghd;
618
619 /*
620 * We can get the value for an event line but not set it,
621 * because it is input by definition.
622 */
623 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
624 int val;
625
626 val = gpiod_get_value_cansleep(le->desc);
627 if (val < 0)
628 return val;
629 ghd.values[0] = val;
630
631 if (copy_to_user(ip, &ghd, sizeof(ghd)))
632 return -EFAULT;
633
634 return 0;
635 }
636 return -EINVAL;
637}
638
639#ifdef CONFIG_COMPAT
640static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
641 unsigned long arg)
642{
643 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
644}
645#endif
646
647static const struct file_operations lineevent_fileops = {
648 .release = lineevent_release,
649 .read = lineevent_read,
650 .poll = lineevent_poll,
651 .owner = THIS_MODULE,
652 .llseek = noop_llseek,
653 .unlocked_ioctl = lineevent_ioctl,
654#ifdef CONFIG_COMPAT
655 .compat_ioctl = lineevent_ioctl_compat,
656#endif
657};
658
Ben Dooks33265b12016-06-17 16:03:13 +0100659static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200660{
661 struct lineevent_state *le = p;
662 struct gpioevent_data ge;
663 int ret;
664
665 ge.timestamp = ktime_get_real_ns();
666
667 if (le->eflags & GPIOEVENT_REQUEST_BOTH_EDGES) {
668 int level = gpiod_get_value_cansleep(le->desc);
669
670 if (level)
671 /* Emit low-to-high event */
672 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
673 else
674 /* Emit high-to-low event */
675 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
676 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
677 /* Emit low-to-high event */
678 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
679 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
680 /* Emit high-to-low event */
681 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200682 } else {
683 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200684 }
685
686 ret = kfifo_put(&le->events, ge);
687 if (ret != 0)
688 wake_up_poll(&le->wait, POLLIN);
689
690 return IRQ_HANDLED;
691}
692
693static int lineevent_create(struct gpio_device *gdev, void __user *ip)
694{
695 struct gpioevent_request eventreq;
696 struct lineevent_state *le;
697 struct gpio_desc *desc;
698 u32 offset;
699 u32 lflags;
700 u32 eflags;
701 int fd;
702 int ret;
703 int irqflags = 0;
704
705 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
706 return -EFAULT;
707
708 le = kzalloc(sizeof(*le), GFP_KERNEL);
709 if (!le)
710 return -ENOMEM;
711 le->gdev = gdev;
712 get_device(&gdev->dev);
713
714 /* Make sure this is terminated */
715 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
716 if (strlen(eventreq.consumer_label)) {
717 le->label = kstrdup(eventreq.consumer_label,
718 GFP_KERNEL);
719 if (!le->label) {
720 ret = -ENOMEM;
721 goto out_free_le;
722 }
723 }
724
725 offset = eventreq.lineoffset;
726 lflags = eventreq.handleflags;
727 eflags = eventreq.eventflags;
728
729 /* This is just wrong: we don't look for events on output lines */
730 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
731 ret = -EINVAL;
732 goto out_free_label;
733 }
734
735 desc = &gdev->descs[offset];
736 ret = gpiod_request(desc, le->label);
737 if (ret)
738 goto out_free_desc;
739 le->desc = desc;
740 le->eflags = eflags;
741
742 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
743 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
744 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
745 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
746 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
747 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
748
749 ret = gpiod_direction_input(desc);
750 if (ret)
751 goto out_free_desc;
752
753 le->irq = gpiod_to_irq(desc);
754 if (le->irq <= 0) {
755 ret = -ENODEV;
756 goto out_free_desc;
757 }
758
759 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
760 irqflags |= IRQF_TRIGGER_RISING;
761 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
762 irqflags |= IRQF_TRIGGER_FALLING;
763 irqflags |= IRQF_ONESHOT;
764 irqflags |= IRQF_SHARED;
765
766 INIT_KFIFO(le->events);
767 init_waitqueue_head(&le->wait);
768 mutex_init(&le->read_lock);
769
770 /* Request a thread to read the events */
771 ret = request_threaded_irq(le->irq,
772 NULL,
773 lineevent_irq_thread,
774 irqflags,
775 le->label,
776 le);
777 if (ret)
778 goto out_free_desc;
779
780 fd = anon_inode_getfd("gpio-event",
781 &lineevent_fileops,
782 le,
783 O_RDONLY | O_CLOEXEC);
784 if (fd < 0) {
785 ret = fd;
786 goto out_free_irq;
787 }
788
789 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200790 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
791 ret = -EFAULT;
792 goto out_free_irq;
793 }
Linus Walleij61f922d2016-06-02 11:30:15 +0200794
795 return 0;
796
797out_free_irq:
798 free_irq(le->irq, le);
799out_free_desc:
800 gpiod_free(le->desc);
801out_free_label:
802 kfree(le->label);
803out_free_le:
804 kfree(le);
805 put_device(&gdev->dev);
806 return ret;
807}
808
Linus Walleij3c702e92015-10-21 15:29:53 +0200809/**
810 * gpio_ioctl() - ioctl handler for the GPIO chardev
811 */
812static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
813{
814 struct gpio_device *gdev = filp->private_data;
815 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +0200816 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +0200817
818 /* We fail any subsequent ioctl():s when the chip is gone */
819 if (!chip)
820 return -ENODEV;
821
Linus Walleij521a2ad2016-02-12 22:25:22 +0100822 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +0200823 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +0100824 struct gpiochip_info chipinfo;
825
Linus Walleij3c702e92015-10-21 15:29:53 +0200826 strncpy(chipinfo.name, dev_name(&gdev->dev),
827 sizeof(chipinfo.name));
828 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +0100829 strncpy(chipinfo.label, gdev->label,
830 sizeof(chipinfo.label));
831 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100832 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +0200833 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
834 return -EFAULT;
835 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +0100836 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
837 struct gpioline_info lineinfo;
838 struct gpio_desc *desc;
839
840 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
841 return -EFAULT;
842 if (lineinfo.line_offset > gdev->ngpio)
843 return -EINVAL;
844
845 desc = &gdev->descs[lineinfo.line_offset];
846 if (desc->name) {
847 strncpy(lineinfo.name, desc->name,
848 sizeof(lineinfo.name));
849 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
850 } else {
851 lineinfo.name[0] = '\0';
852 }
853 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +0100854 strncpy(lineinfo.consumer, desc->label,
855 sizeof(lineinfo.consumer));
856 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100857 } else {
Linus Walleij214338e2016-02-25 21:01:48 +0100858 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100859 }
860
861 /*
862 * Userspace only need to know that the kernel is using
863 * this GPIO so it can't use it.
864 */
865 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100866 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
867 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
868 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
869 test_bit(FLAG_EXPORT, &desc->flags) ||
870 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100871 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100872 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100873 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100874 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100875 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100876 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100877 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100878 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100879 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
880
881 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
882 return -EFAULT;
883 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200884 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
885 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +0200886 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
887 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +0200888 }
889 return -EINVAL;
890}
891
Linus Walleij8b92e172016-05-27 14:24:04 +0200892#ifdef CONFIG_COMPAT
893static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
894 unsigned long arg)
895{
896 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
897}
898#endif
899
Linus Walleij3c702e92015-10-21 15:29:53 +0200900/**
901 * gpio_chrdev_open() - open the chardev for ioctl operations
902 * @inode: inode for this chardev
903 * @filp: file struct for storing private data
904 * Returns 0 on success
905 */
906static int gpio_chrdev_open(struct inode *inode, struct file *filp)
907{
908 struct gpio_device *gdev = container_of(inode->i_cdev,
909 struct gpio_device, chrdev);
910
911 /* Fail on open if the backing gpiochip is gone */
912 if (!gdev || !gdev->chip)
913 return -ENODEV;
914 get_device(&gdev->dev);
915 filp->private_data = gdev;
916 return 0;
917}
918
919/**
920 * gpio_chrdev_release() - close chardev after ioctl operations
921 * @inode: inode for this chardev
922 * @filp: file struct for storing private data
923 * Returns 0 on success
924 */
925static int gpio_chrdev_release(struct inode *inode, struct file *filp)
926{
927 struct gpio_device *gdev = container_of(inode->i_cdev,
928 struct gpio_device, chrdev);
929
930 if (!gdev)
931 return -ENODEV;
932 put_device(&gdev->dev);
933 return 0;
934}
935
936
937static const struct file_operations gpio_fileops = {
938 .release = gpio_chrdev_release,
939 .open = gpio_chrdev_open,
940 .owner = THIS_MODULE,
941 .llseek = noop_llseek,
942 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +0200943#ifdef CONFIG_COMPAT
944 .compat_ioctl = gpio_ioctl_compat,
945#endif
Linus Walleij3c702e92015-10-21 15:29:53 +0200946};
947
Linus Walleijff2b1352015-10-20 11:10:38 +0200948static void gpiodevice_release(struct device *dev)
949{
950 struct gpio_device *gdev = dev_get_drvdata(dev);
951
952 list_del(&gdev->list);
953 ida_simple_remove(&gpio_ida, gdev->id);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700954 kfree(gdev->label);
955 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +0100956 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +0200957}
958
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700959static int gpiochip_setup_dev(struct gpio_device *gdev)
960{
961 int status;
962
963 cdev_init(&gdev->chrdev, &gpio_fileops);
964 gdev->chrdev.owner = THIS_MODULE;
965 gdev->chrdev.kobj.parent = &gdev->dev.kobj;
966 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
967 status = cdev_add(&gdev->chrdev, gdev->dev.devt, 1);
968 if (status < 0)
969 chip_warn(gdev->chip, "failed to add char device %d:%d\n",
970 MAJOR(gpio_devt), gdev->id);
971 else
972 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
973 MAJOR(gpio_devt), gdev->id);
974 status = device_add(&gdev->dev);
975 if (status)
976 goto err_remove_chardev;
977
978 status = gpiochip_sysfs_register(gdev);
979 if (status)
980 goto err_remove_device;
981
982 /* From this point, the .release() function cleans up gpio_device */
983 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700984 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
985 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
986 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
987
988 return 0;
989
990err_remove_device:
991 device_del(&gdev->dev);
992err_remove_chardev:
993 cdev_del(&gdev->chrdev);
994 return status;
995}
996
997static void gpiochip_setup_devs(void)
998{
999 struct gpio_device *gdev;
1000 int err;
1001
1002 list_for_each_entry(gdev, &gpio_devices, list) {
1003 err = gpiochip_setup_dev(gdev);
1004 if (err)
1005 pr_err("%s: Failed to initialize gpio device (%d)\n",
1006 dev_name(&gdev->dev), err);
1007 }
1008}
1009
Anton Vorontsov169b6a72008-04-28 02:14:47 -07001010/**
Linus Walleijb08ea352015-12-03 15:14:13 +01001011 * gpiochip_add_data() - register a gpio_chip
David Brownelld2876d02008-02-04 22:28:20 -08001012 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001013 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -08001014 *
1015 * Returns a negative errno if the chip can't be registered, such as
1016 * because the chip->base is invalid or already associated with a
1017 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001018 *
Linus Walleijb08ea352015-12-03 15:14:13 +01001019 * When gpiochip_add_data() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001020 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d2008-07-25 01:46:07 -07001021 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1022 * for GPIOs will fail rudely.
1023 *
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001024 * gpiochip_add_data() must only be called after gpiolib initialization,
1025 * ie after core_initcall().
1026 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001027 * If chip->base is negative, this requests dynamic assignment of
1028 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001029 */
Linus Walleijb08ea352015-12-03 15:14:13 +01001030int gpiochip_add_data(struct gpio_chip *chip, void *data)
David Brownelld2876d02008-02-04 22:28:20 -08001031{
1032 unsigned long flags;
1033 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001034 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001035 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001036 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001037
Linus Walleijff2b1352015-10-20 11:10:38 +02001038 /*
1039 * First: allocate and populate the internal stat container, and
1040 * set up the struct device.
1041 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001042 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001043 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001044 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001045 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001046 gdev->chip = chip;
1047 chip->gpiodev = gdev;
1048 if (chip->parent) {
1049 gdev->dev.parent = chip->parent;
1050 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001051 }
1052
Linus Walleijff2b1352015-10-20 11:10:38 +02001053#ifdef CONFIG_OF_GPIO
1054 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001055 if (chip->of_node)
1056 gdev->dev.of_node = chip->of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001057#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001058
Linus Walleijff2b1352015-10-20 11:10:38 +02001059 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1060 if (gdev->id < 0) {
1061 status = gdev->id;
1062 goto err_free_gdev;
1063 }
1064 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1065 device_initialize(&gdev->dev);
1066 dev_set_drvdata(&gdev->dev, gdev);
1067 if (chip->parent && chip->parent->driver)
1068 gdev->owner = chip->parent->driver->owner;
1069 else if (chip->owner)
1070 /* TODO: remove chip->owner */
1071 gdev->owner = chip->owner;
1072 else
1073 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001074
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001075 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001076 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001077 status = -ENOMEM;
1078 goto err_free_gdev;
1079 }
1080
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001081 if (chip->ngpio == 0) {
1082 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001083 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001084 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001085 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001086
1087 if (chip->label)
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001088 gdev->label = kstrdup(chip->label, GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001089 else
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001090 gdev->label = kstrdup("unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001091 if (!gdev->label) {
1092 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001093 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001094 }
1095
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001096 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001097 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001098
David Brownelld2876d02008-02-04 22:28:20 -08001099 spin_lock_irqsave(&gpio_lock, flags);
1100
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001101 /*
1102 * TODO: this allocates a Linux GPIO number base in the global
1103 * GPIO numberspace for this chip. In the long run we want to
1104 * get *rid* of this numberspace and use only descriptors, but
1105 * it may be a pipe dream. It will not happen before we get rid
1106 * of the sysfs interface anyways.
1107 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001108 if (base < 0) {
1109 base = gpiochip_find_base(chip->ngpio);
1110 if (base < 0) {
1111 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001112 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001113 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001114 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001115 /*
1116 * TODO: it should not be necessary to reflect the assigned
1117 * base outside of the GPIO subsystem. Go over drivers and
1118 * see if anyone makes use of this, else drop this and assign
1119 * a poison instead.
1120 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001121 chip->base = base;
1122 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001123 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001124
Linus Walleijff2b1352015-10-20 11:10:38 +02001125 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001126 if (status) {
1127 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001128 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001129 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001130
Linus Walleij545ebd92016-05-30 17:11:59 +02001131 spin_unlock_irqrestore(&gpio_lock, flags);
1132
Linus Walleijff2b1352015-10-20 11:10:38 +02001133 for (i = 0; i < chip->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001134 struct gpio_desc *desc = &gdev->descs[i];
David Brownelld8f388d2008-07-25 01:46:07 -07001135
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001136 desc->gdev = gdev;
Linus Walleij72d32002016-04-28 13:33:59 +02001137 /*
1138 * REVISIT: most hardware initializes GPIOs as inputs
1139 * (often with pullups enabled) so power usage is
1140 * minimized. Linux code should set the gpio direction
1141 * first thing; but until it does, and in case
1142 * chip->get_direction is not set, we may expose the
1143 * wrong direction in sysfs.
Johan Hovold05aa5202015-01-12 17:12:26 +01001144 */
Linus Walleij72d32002016-04-28 13:33:59 +02001145
1146 if (chip->get_direction) {
1147 /*
1148 * If we have .get_direction, set up the initial
1149 * direction flag from the hardware.
1150 */
1151 int dir = chip->get_direction(chip, i);
1152
1153 if (!dir)
1154 set_bit(FLAG_IS_OUT, &desc->flags);
1155 } else if (!chip->direction_input) {
1156 /*
1157 * If the chip lacks the .direction_input callback
1158 * we logically assume all lines are outputs.
1159 */
1160 set_bit(FLAG_IS_OUT, &desc->flags);
1161 }
David Brownelld2876d02008-02-04 22:28:20 -08001162 }
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001163
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301164#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001165 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301166#endif
1167
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001168 status = gpiochip_set_desc_names(chip);
1169 if (status)
1170 goto err_remove_from_list;
1171
Mika Westerberg79b804c2016-09-20 15:15:21 +03001172 status = gpiochip_irqchip_init_valid_mask(chip);
1173 if (status)
1174 goto err_remove_from_list;
1175
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001176 status = of_gpiochip_add(chip);
1177 if (status)
1178 goto err_remove_chip;
1179
Mika Westerberg664e3e52014-01-08 12:40:54 +02001180 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001181
Linus Walleij3c702e92015-10-21 15:29:53 +02001182 /*
1183 * By first adding the chardev, and then adding the device,
1184 * we get a device node entry in sysfs under
1185 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1186 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001187 * We can do this only if gpiolib has been initialized.
1188 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001189 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001190 if (gpiolib_initialized) {
1191 status = gpiochip_setup_dev(gdev);
1192 if (status)
1193 goto err_remove_chip;
1194 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001195 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001196
Johan Hovold225fce82015-01-12 17:12:25 +01001197err_remove_chip:
1198 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001199 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001200 of_gpiochip_remove(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001201 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001202err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001203 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001204 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001205 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001206err_free_label:
1207 kfree(gdev->label);
1208err_free_descs:
1209 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001210err_free_gdev:
1211 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001212 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +02001213 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001214 gdev->base, gdev->base + gdev->ngpio - 1,
1215 chip->label ? : "generic");
1216 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001217 return status;
1218}
Linus Walleijb08ea352015-12-03 15:14:13 +01001219EXPORT_SYMBOL_GPL(gpiochip_add_data);
David Brownelld2876d02008-02-04 22:28:20 -08001220
1221/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001222 * gpiochip_get_data() - get per-subdriver data for the chip
1223 */
1224void *gpiochip_get_data(struct gpio_chip *chip)
1225{
1226 return chip->gpiodev->data;
1227}
1228EXPORT_SYMBOL_GPL(gpiochip_get_data);
1229
1230/**
David Brownelld2876d02008-02-04 22:28:20 -08001231 * gpiochip_remove() - unregister a gpio_chip
1232 * @chip: the chip to unregister
1233 *
1234 * A gpio_chip with any GPIOs still requested may not be removed.
1235 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001236void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001237{
Linus Walleijff2b1352015-10-20 11:10:38 +02001238 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001239 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001240 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001241 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001242 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001243
Linus Walleijff2b1352015-10-20 11:10:38 +02001244 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001245 gpiochip_sysfs_unregister(gdev);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001246 /* Numb the device, cancelling all outstanding operations */
1247 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001248 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001249 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001250 gpiochip_remove_pin_ranges(chip);
Benoit Parrotf625d462015-02-02 11:44:44 -06001251 gpiochip_free_hogs(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001252 of_gpiochip_remove(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001253 /*
1254 * We accept no more calls into the driver from this point, so
1255 * NULL the driver data pointer
1256 */
1257 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001258
Johan Hovold6798aca2015-01-12 17:12:28 +01001259 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001260 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001261 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001262 if (test_bit(FLAG_REQUESTED, &desc->flags))
1263 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001264 }
David Brownelld2876d02008-02-04 22:28:20 -08001265 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001266
Johan Hovoldfab28b82015-05-04 17:10:27 +02001267 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001268 dev_crit(&gdev->dev,
Linus Walleij58383c72015-11-04 09:56:26 +01001269 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001270
Linus Walleijff2b1352015-10-20 11:10:38 +02001271 /*
1272 * The gpiochip side puts its use of the device to rest here:
1273 * if there are no userspace clients, the chardev and device will
1274 * be removed, else it will be dangling until the last user is
1275 * gone.
1276 */
Ricardo Ribalda Delgadof4833b82016-06-03 19:10:02 +02001277 cdev_del(&gdev->chrdev);
1278 device_del(&gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001279 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001280}
1281EXPORT_SYMBOL_GPL(gpiochip_remove);
1282
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301283static void devm_gpio_chip_release(struct device *dev, void *res)
1284{
1285 struct gpio_chip *chip = *(struct gpio_chip **)res;
1286
1287 gpiochip_remove(chip);
1288}
1289
1290static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1291
1292{
1293 struct gpio_chip **r = res;
1294
1295 if (!r || !*r) {
1296 WARN_ON(!r || !*r);
1297 return 0;
1298 }
1299
1300 return *r == data;
1301}
1302
1303/**
1304 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1305 * @dev: the device pointer on which irq_chip belongs to.
1306 * @chip: the chip to register, with chip->base initialized
1307 * Context: potentially before irqs will work
1308 *
1309 * Returns a negative errno if the chip can't be registered, such as
1310 * because the chip->base is invalid or already associated with a
1311 * different chip. Otherwise it returns zero as a success code.
1312 *
1313 * The gpio chip automatically be released when the device is unbound.
1314 */
1315int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1316 void *data)
1317{
1318 struct gpio_chip **ptr;
1319 int ret;
1320
1321 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1322 GFP_KERNEL);
1323 if (!ptr)
1324 return -ENOMEM;
1325
1326 ret = gpiochip_add_data(chip, data);
1327 if (ret < 0) {
1328 devres_free(ptr);
1329 return ret;
1330 }
1331
1332 *ptr = chip;
1333 devres_add(dev, ptr);
1334
1335 return 0;
1336}
1337EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1338
1339/**
1340 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1341 * @dev: device for which which resource was allocated
1342 * @chip: the chip to remove
1343 *
1344 * A gpio_chip with any GPIOs still requested may not be removed.
1345 */
1346void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1347{
1348 int ret;
1349
1350 ret = devres_release(dev, devm_gpio_chip_release,
1351 devm_gpio_chip_match, chip);
1352 if (!ret)
1353 WARN_ON(ret);
1354}
1355EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1356
Grant Likely594fa262010-06-08 07:48:16 -06001357/**
1358 * gpiochip_find() - iterator for locating a specific gpio_chip
1359 * @data: data to pass to match function
1360 * @callback: Callback function to check gpio_chip
1361 *
1362 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1363 * determined by a user supplied @match callback. The callback should return
1364 * 0 if the device doesn't match and non-zero if it does. If the callback is
1365 * non-zero, this function will return to the caller and not iterate over any
1366 * more gpio_chips.
1367 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001368struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001369 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001370 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001371{
Linus Walleijff2b1352015-10-20 11:10:38 +02001372 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001373 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001374 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001375
1376 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001377 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001378 if (gdev->chip && match(gdev->chip, data)) {
1379 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001380 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001381 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001382
Grant Likely594fa262010-06-08 07:48:16 -06001383 spin_unlock_irqrestore(&gpio_lock, flags);
1384
1385 return chip;
1386}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001387EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001388
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001389static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1390{
1391 const char *name = data;
1392
1393 return !strcmp(chip->label, name);
1394}
1395
1396static struct gpio_chip *find_chip_by_name(const char *name)
1397{
1398 return gpiochip_find((void *)name, gpiochip_match_name);
1399}
1400
Linus Walleij14250522014-03-25 10:40:18 +01001401#ifdef CONFIG_GPIOLIB_IRQCHIP
1402
1403/*
1404 * The following is irqchip helper code for gpiochips.
1405 */
1406
Mika Westerberg79b804c2016-09-20 15:15:21 +03001407static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1408{
1409 int i;
1410
1411 if (!gpiochip->irq_need_valid_mask)
1412 return 0;
1413
1414 gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
1415 sizeof(long), GFP_KERNEL);
1416 if (!gpiochip->irq_valid_mask)
1417 return -ENOMEM;
1418
1419 /* Assume by default all GPIOs are valid */
1420 for (i = 0; i < gpiochip->ngpio; i++)
1421 set_bit(i, gpiochip->irq_valid_mask);
1422
1423 return 0;
1424}
1425
1426static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1427{
1428 kfree(gpiochip->irq_valid_mask);
1429 gpiochip->irq_valid_mask = NULL;
1430}
1431
1432static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1433 unsigned int offset)
1434{
1435 /* No mask means all valid */
1436 if (likely(!gpiochip->irq_valid_mask))
1437 return true;
1438 return test_bit(offset, gpiochip->irq_valid_mask);
1439}
1440
Linus Walleij14250522014-03-25 10:40:18 +01001441/**
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001442 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
1443 * @gpiochip: the gpiochip to set the irqchip chain to
1444 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001445 * @parent_irq: the irq number corresponding to the parent IRQ for this
1446 * chained irqchip
1447 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001448 * coming out of the gpiochip. If the interrupt is nested rather than
1449 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001450 */
1451void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1452 struct irq_chip *irqchip,
1453 int parent_irq,
1454 irq_flow_handler_t parent_handler)
1455{
Linus Walleij83141a72014-09-26 13:50:12 +02001456 unsigned int offset;
1457
Linus Walleij83141a72014-09-26 13:50:12 +02001458 if (!gpiochip->irqdomain) {
1459 chip_err(gpiochip, "called %s before setting up irqchip\n",
1460 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001461 return;
1462 }
1463
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001464 if (parent_handler) {
1465 if (gpiochip->can_sleep) {
1466 chip_err(gpiochip,
1467 "you cannot have chained interrupts on a "
1468 "chip that may sleep\n");
1469 return;
1470 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001471 /*
1472 * The parent irqchip is already using the chip_data for this
1473 * irqchip, so our callbacks simply use the handler_data.
1474 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001475 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1476 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001477
1478 gpiochip->irq_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001479 }
Linus Walleij83141a72014-09-26 13:50:12 +02001480
1481 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001482 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1483 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1484 continue;
Linus Walleij83141a72014-09-26 13:50:12 +02001485 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
1486 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001487 }
Linus Walleij14250522014-03-25 10:40:18 +01001488}
1489EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1490
1491/**
1492 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1493 * @d: the irqdomain used by this irqchip
1494 * @irq: the global irq number used by this GPIO irqchip irq
1495 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1496 *
1497 * This function will set up the mapping for a certain IRQ line on a
1498 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1499 * stored inside the gpiochip.
1500 */
1501static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1502 irq_hw_number_t hwirq)
1503{
1504 struct gpio_chip *chip = d->host_data;
1505
Linus Walleij14250522014-03-25 10:40:18 +01001506 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001507 /*
1508 * This lock class tells lockdep that GPIO irqs are in a different
1509 * category than their parents, so it won't report false recursion.
1510 */
1511 irq_set_lockdep_class(irq, chip->lock_key);
Linus Walleij7633fb92014-04-09 13:20:38 +02001512 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001513 /* Chips that can sleep need nested thread handlers */
Octavian Purdila295494a2014-09-19 23:22:44 +03001514 if (chip->can_sleep && !chip->irq_not_threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001515 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001516 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001517
Linus Walleij1333b902014-04-23 16:45:12 +02001518 /*
1519 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1520 * is passed as default type.
1521 */
1522 if (chip->irq_default_type != IRQ_TYPE_NONE)
1523 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001524
1525 return 0;
1526}
1527
Linus Walleijc3626fd2014-03-28 20:42:01 +01001528static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1529{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001530 struct gpio_chip *chip = d->host_data;
1531
Linus Walleij1c8732b2014-04-09 13:34:39 +02001532 if (chip->can_sleep)
1533 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001534 irq_set_chip_and_handler(irq, NULL, NULL);
1535 irq_set_chip_data(irq, NULL);
1536}
1537
Linus Walleij14250522014-03-25 10:40:18 +01001538static const struct irq_domain_ops gpiochip_domain_ops = {
1539 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001540 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001541 /* Virtually all GPIO irqchips are twocell:ed */
1542 .xlate = irq_domain_xlate_twocell,
1543};
1544
1545static int gpiochip_irq_reqres(struct irq_data *d)
1546{
1547 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1548
Linus Walleijff2b1352015-10-20 11:10:38 +02001549 if (!try_module_get(chip->gpiodev->owner))
Grygorii Strashko5b76e792015-06-25 20:30:50 +03001550 return -ENODEV;
1551
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001552 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +01001553 chip_err(chip,
1554 "unable to lock HW IRQ %lu for IRQ\n",
1555 d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001556 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001557 return -EINVAL;
1558 }
1559 return 0;
1560}
1561
1562static void gpiochip_irq_relres(struct irq_data *d)
1563{
1564 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1565
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001566 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001567 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001568}
1569
1570static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1571{
1572 return irq_find_mapping(chip->irqdomain, offset);
1573}
1574
1575/**
1576 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1577 * @gpiochip: the gpiochip to remove the irqchip from
1578 *
1579 * This is called only from gpiochip_remove()
1580 */
1581static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1582{
Linus Walleijc3626fd2014-03-28 20:42:01 +01001583 unsigned int offset;
1584
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001585 acpi_gpiochip_free_interrupts(gpiochip);
1586
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001587 if (gpiochip->irq_parent) {
1588 irq_set_chained_handler(gpiochip->irq_parent, NULL);
1589 irq_set_handler_data(gpiochip->irq_parent, NULL);
1590 }
1591
Linus Walleijc3626fd2014-03-28 20:42:01 +01001592 /* Remove all IRQ mappings and delete the domain */
1593 if (gpiochip->irqdomain) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001594 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1595 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1596 continue;
Grygorii Strashkoe3893382014-09-25 19:09:23 +03001597 irq_dispose_mapping(
1598 irq_find_mapping(gpiochip->irqdomain, offset));
Mika Westerberg79b804c2016-09-20 15:15:21 +03001599 }
Linus Walleij14250522014-03-25 10:40:18 +01001600 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001601 }
Linus Walleij14250522014-03-25 10:40:18 +01001602
1603 if (gpiochip->irqchip) {
1604 gpiochip->irqchip->irq_request_resources = NULL;
1605 gpiochip->irqchip->irq_release_resources = NULL;
1606 gpiochip->irqchip = NULL;
1607 }
Mika Westerberg79b804c2016-09-20 15:15:21 +03001608
1609 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01001610}
1611
1612/**
1613 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
1614 * @gpiochip: the gpiochip to add the irqchip to
1615 * @irqchip: the irqchip to add to the gpiochip
1616 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1617 * allocate gpiochip irqs from
1618 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02001619 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1620 * to have the core avoid setting up any default type in the hardware.
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001621 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +01001622 *
1623 * This function closely associates a certain irqchip with a certain
1624 * gpiochip, providing an irq domain to translate the local IRQs to
1625 * global irqs in the gpiolib core, and making sure that the gpiochip
1626 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01001627 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01001628 * from the gpiochip passed as chip data. An irqdomain will be stored
1629 * in the gpiochip that shall be used by the driver to handle IRQ number
1630 * translation. The gpiochip will need to be initialized and registered
1631 * before calling this function.
1632 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01001633 * This function will handle two cell:ed simple IRQs and assumes all
1634 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01001635 * need to be open coded.
1636 */
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001637int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
1638 struct irq_chip *irqchip,
1639 unsigned int first_irq,
1640 irq_flow_handler_t handler,
1641 unsigned int type,
1642 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +01001643{
1644 struct device_node *of_node;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001645 bool irq_base_set = false;
Linus Walleij14250522014-03-25 10:40:18 +01001646 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001647 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001648
1649 if (!gpiochip || !irqchip)
1650 return -EINVAL;
1651
Linus Walleij58383c72015-11-04 09:56:26 +01001652 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01001653 pr_err("missing gpiochip .dev parent pointer\n");
1654 return -EINVAL;
1655 }
Linus Walleij58383c72015-11-04 09:56:26 +01001656 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001657#ifdef CONFIG_OF_GPIO
1658 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07001659 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001660 * FIXME: get rid of this and use gpiochip->parent->of_node
1661 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01001662 */
1663 if (gpiochip->of_node)
1664 of_node = gpiochip->of_node;
1665#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01001666 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001667 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01001668 * used to configure the interrupts, as you may end-up with
1669 * conflicting triggers. Tell the user, and reset to NONE.
1670 */
1671 if (WARN(of_node && type != IRQ_TYPE_NONE,
1672 "%s: Ignoring %d default trigger\n", of_node->full_name, type))
1673 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001674 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1675 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1676 "Ignoring %d default trigger\n", type);
1677 type = IRQ_TYPE_NONE;
1678 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01001679
Linus Walleij14250522014-03-25 10:40:18 +01001680 gpiochip->irqchip = irqchip;
1681 gpiochip->irq_handler = handler;
1682 gpiochip->irq_default_type = type;
1683 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001684 gpiochip->lock_key = lock_key;
Linus Walleij14250522014-03-25 10:40:18 +01001685 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1686 gpiochip->ngpio, first_irq,
1687 &gpiochip_domain_ops, gpiochip);
1688 if (!gpiochip->irqdomain) {
1689 gpiochip->irqchip = NULL;
1690 return -EINVAL;
1691 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02001692
1693 /*
1694 * It is possible for a driver to override this, but only if the
1695 * alternative functions are both implemented.
1696 */
1697 if (!irqchip->irq_request_resources &&
1698 !irqchip->irq_release_resources) {
1699 irqchip->irq_request_resources = gpiochip_irq_reqres;
1700 irqchip->irq_release_resources = gpiochip_irq_relres;
1701 }
Linus Walleij14250522014-03-25 10:40:18 +01001702
1703 /*
1704 * Prepare the mapping since the irqchip shall be orthogonal to
1705 * any gpiochip calls. If the first_irq was zero, this is
1706 * necessary to allocate descriptors for all IRQs.
1707 */
Linus Walleijc3626fd2014-03-28 20:42:01 +01001708 for (offset = 0; offset < gpiochip->ngpio; offset++) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001709 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1710 continue;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001711 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001712 if (!irq_base_set) {
Linus Walleijc3626fd2014-03-28 20:42:01 +01001713 /*
1714 * Store the base into the gpiochip to be used when
1715 * unmapping the irqs.
1716 */
1717 gpiochip->irq_base = irq_base;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001718 irq_base_set = true;
1719 }
Linus Walleijc3626fd2014-03-28 20:42:01 +01001720 }
Linus Walleij14250522014-03-25 10:40:18 +01001721
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001722 acpi_gpiochip_request_interrupts(gpiochip);
1723
Linus Walleij14250522014-03-25 10:40:18 +01001724 return 0;
1725}
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001726EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add);
Linus Walleij14250522014-03-25 10:40:18 +01001727
1728#else /* CONFIG_GPIOLIB_IRQCHIP */
1729
1730static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03001731static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1732{
1733 return 0;
1734}
1735static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1736{ }
Linus Walleij14250522014-03-25 10:40:18 +01001737
1738#endif /* CONFIG_GPIOLIB_IRQCHIP */
1739
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001740/**
1741 * gpiochip_generic_request() - request the gpio function for a pin
1742 * @chip: the gpiochip owning the GPIO
1743 * @offset: the offset of the GPIO to request for GPIO function
1744 */
1745int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1746{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001747 return pinctrl_request_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001748}
1749EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1750
1751/**
1752 * gpiochip_generic_free() - free the gpio function from a pin
1753 * @chip: the gpiochip to request the gpio function for
1754 * @offset: the offset of the GPIO to free from GPIO function
1755 */
1756void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1757{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001758 pinctrl_free_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001759}
1760EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1761
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301762#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001763
Linus Walleij3f0f8672012-11-20 12:40:15 +01001764/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001765 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1766 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001767 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001768 * @gpio_offset: the start offset in the current gpio_chip number space
1769 * @pin_group: name of the pin group inside the pin controller
1770 */
1771int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1772 struct pinctrl_dev *pctldev,
1773 unsigned int gpio_offset, const char *pin_group)
1774{
1775 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001776 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001777 int ret;
1778
1779 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1780 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001781 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001782 return -ENOMEM;
1783 }
1784
1785 /* Use local offset as range ID */
1786 pin_range->range.id = gpio_offset;
1787 pin_range->range.gc = chip;
1788 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001789 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001790 pin_range->pctldev = pctldev;
1791
1792 ret = pinctrl_get_group_pins(pctldev, pin_group,
1793 &pin_range->range.pins,
1794 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001795 if (ret < 0) {
1796 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001797 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001798 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001799
1800 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1801
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001802 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1803 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001804 pinctrl_dev_get_devname(pctldev), pin_group);
1805
Linus Walleij20ec3e32016-02-11 11:03:06 +01001806 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001807
1808 return 0;
1809}
1810EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1811
1812/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001813 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1814 * @chip: the gpiochip to add the range for
1815 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001816 * @gpio_offset: the start offset in the current gpio_chip number space
1817 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001818 * @npins: the number of pins from the offset of each pin space (GPIO and
1819 * pin controller) to accumulate in this range
1820 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001821int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001822 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001823 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301824{
1825 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001826 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001827 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301828
Linus Walleij3f0f8672012-11-20 12:40:15 +01001829 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301830 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001831 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001832 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301833 }
1834
Linus Walleij3f0f8672012-11-20 12:40:15 +01001835 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001836 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001837 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301838 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001839 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001840 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301841 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001842 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301843 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001844 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001845 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001846 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001847 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001848 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001849 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001850 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1851 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001852 pinctl_name,
1853 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301854
Linus Walleij20ec3e32016-02-11 11:03:06 +01001855 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001856
1857 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301858}
Linus Walleij165adc92012-11-06 14:49:39 +01001859EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301860
Linus Walleij3f0f8672012-11-20 12:40:15 +01001861/**
1862 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1863 * @chip: the chip to remove all the mappings for
1864 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301865void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1866{
1867 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01001868 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301869
Linus Walleij20ec3e32016-02-11 11:03:06 +01001870 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301871 list_del(&pin_range->node);
1872 pinctrl_remove_gpio_range(pin_range->pctldev,
1873 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01001874 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301875 }
1876}
Linus Walleij165adc92012-11-06 14:49:39 +01001877EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1878
1879#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301880
David Brownelld2876d02008-02-04 22:28:20 -08001881/* These "optional" allocation calls help prevent drivers from stomping
1882 * on each other, and help provide better diagnostics in debugfs.
1883 * They're called even less than the "set direction" calls.
1884 */
Mika Westerberg77c2d792014-03-10 14:54:50 +02001885static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08001886{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001887 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001888 int status;
David Brownelld2876d02008-02-04 22:28:20 -08001889 unsigned long flags;
1890
1891 spin_lock_irqsave(&gpio_lock, flags);
1892
David Brownelld2876d02008-02-04 22:28:20 -08001893 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07001894 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001895 */
1896
1897 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
1898 desc_set_label(desc, label ? : "?");
1899 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07001900 } else {
David Brownelld2876d02008-02-04 22:28:20 -08001901 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08001902 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07001903 }
1904
1905 if (chip->request) {
1906 /* chip->request may sleep */
1907 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001908 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07001909 spin_lock_irqsave(&gpio_lock, flags);
1910
1911 if (status < 0) {
1912 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07001913 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03001914 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07001915 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07001916 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03001917 if (chip->get_direction) {
1918 /* chip->get_direction may sleep */
1919 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001920 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03001921 spin_lock_irqsave(&gpio_lock, flags);
1922 }
David Brownelld2876d02008-02-04 22:28:20 -08001923done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02001924 spin_unlock_irqrestore(&gpio_lock, flags);
1925 return status;
1926}
1927
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001928/*
1929 * This descriptor validation needs to be inserted verbatim into each
1930 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02001931 * macro to avoid endless duplication. If the desc is NULL it is an
1932 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001933 */
1934#define VALIDATE_DESC(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02001935 if (!desc) \
1936 return 0; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001937 if (IS_ERR(desc)) { \
1938 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
1939 return PTR_ERR(desc); \
1940 } \
Linus Walleij54d77192016-05-30 16:48:39 +02001941 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001942 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001943 return -EINVAL; \
1944 } \
1945 if ( !desc->gdev->chip ) { \
1946 dev_warn(&desc->gdev->dev, \
1947 "%s: backing chip is gone\n", __func__); \
1948 return 0; \
1949 } } while (0)
1950
1951#define VALIDATE_DESC_VOID(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02001952 if (!desc) \
1953 return; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001954 if (IS_ERR(desc)) { \
1955 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
1956 return; \
1957 } \
Linus Walleij54d77192016-05-30 16:48:39 +02001958 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001959 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001960 return; \
1961 } \
1962 if (!desc->gdev->chip) { \
1963 dev_warn(&desc->gdev->dev, \
1964 "%s: backing chip is gone\n", __func__); \
1965 return; \
1966 } } while (0)
1967
1968
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09001969int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02001970{
1971 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001972 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001973
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001974 VALIDATE_DESC(desc);
1975 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001976
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001977 if (try_module_get(gdev->owner)) {
Mika Westerberg77c2d792014-03-10 14:54:50 +02001978 status = __gpiod_request(desc, label);
1979 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001980 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01001981 else
1982 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001983 }
1984
David Brownelld2876d02008-02-04 22:28:20 -08001985 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02001986 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001987
David Brownelld2876d02008-02-04 22:28:20 -08001988 return status;
1989}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001990
Mika Westerberg77c2d792014-03-10 14:54:50 +02001991static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001992{
Mika Westerberg77c2d792014-03-10 14:54:50 +02001993 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08001994 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07001995 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08001996
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07001997 might_sleep();
1998
Alexandre Courbot372e7222013-02-03 01:29:29 +09001999 gpiod_unexport(desc);
David Brownelld8f388d2008-07-25 01:46:07 -07002000
David Brownelld2876d02008-02-04 22:28:20 -08002001 spin_lock_irqsave(&gpio_lock, flags);
2002
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002003 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002004 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2005 if (chip->free) {
2006 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002007 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002008 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002009 spin_lock_irqsave(&gpio_lock, flags);
2010 }
David Brownelld2876d02008-02-04 22:28:20 -08002011 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002012 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002013 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302014 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302015 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002016 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002017 ret = true;
2018 }
David Brownelld2876d02008-02-04 22:28:20 -08002019
2020 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002021 return ret;
2022}
2023
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002024void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002025{
Linus Walleij33a68e82016-02-11 10:28:44 +01002026 if (desc && desc->gdev && __gpiod_free(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002027 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002028 put_device(&desc->gdev->dev);
2029 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002030 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002031 }
David Brownelld2876d02008-02-04 22:28:20 -08002032}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002033
David Brownelld2876d02008-02-04 22:28:20 -08002034/**
2035 * gpiochip_is_requested - return string iff signal was requested
2036 * @chip: controller managing the signal
2037 * @offset: of signal within controller's 0..(ngpio - 1) range
2038 *
2039 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002040 * The string returned is the label passed to gpio_request(); if none has been
2041 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002042 *
2043 * This function is for use by GPIO controller drivers. The label can
2044 * help with diagnostics, and knowing that the signal is used as a GPIO
2045 * can help avoid accidentally multiplexing it to another controller.
2046 */
2047const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2048{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002049 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002050
Dirk Behme48b59532015-08-18 18:02:32 +02002051 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002052 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002053
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002054 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002055
Alexandre Courbot372e7222013-02-03 01:29:29 +09002056 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002057 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002058 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002059}
2060EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2061
Mika Westerberg77c2d792014-03-10 14:54:50 +02002062/**
2063 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2064 * @desc: GPIO descriptor to request
2065 * @label: label for the GPIO
2066 *
2067 * Function allows GPIO chip drivers to request and use their own GPIO
2068 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2069 * function will not increase reference count of the GPIO chip module. This
2070 * allows the GPIO chip module to be unloaded as needed (we assume that the
2071 * GPIO chip driver handles freeing the GPIOs it has requested).
2072 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002073struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2074 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002075{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002076 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2077 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002078
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002079 if (IS_ERR(desc)) {
2080 chip_err(chip, "failed to get GPIO descriptor\n");
2081 return desc;
2082 }
2083
2084 err = __gpiod_request(desc, label);
2085 if (err < 0)
2086 return ERR_PTR(err);
2087
2088 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002089}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002090EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002091
2092/**
2093 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2094 * @desc: GPIO descriptor to free
2095 *
2096 * Function frees the given GPIO requested previously with
2097 * gpiochip_request_own_desc().
2098 */
2099void gpiochip_free_own_desc(struct gpio_desc *desc)
2100{
2101 if (desc)
2102 __gpiod_free(desc);
2103}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002104EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002105
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002106/*
2107 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002108 * some cases this is done in early boot, before IRQs are enabled.
2109 *
2110 * As a rule these aren't called more than once (except for drivers
2111 * using the open-drain emulation idiom) so these are natural places
2112 * to accumulate extra debugging checks. Note that we can't (yet)
2113 * rely on gpio_request() having been called beforehand.
2114 */
2115
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002116/**
2117 * gpiod_direction_input - set the GPIO direction to input
2118 * @desc: GPIO to set to input
2119 *
2120 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2121 * be called safely on it.
2122 *
2123 * Return 0 in case of success, else an error code.
2124 */
2125int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002126{
David Brownelld2876d02008-02-04 22:28:20 -08002127 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002128 int status = -EINVAL;
2129
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002130 VALIDATE_DESC(desc);
2131 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002132
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002133 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002134 gpiod_warn(desc,
2135 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02002136 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002137 return -EIO;
2138 }
2139
Alexandre Courbotd82da792014-07-22 16:17:43 +09002140 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08002141 if (status == 0)
2142 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002143
Alexandre Courbot372e7222013-02-03 01:29:29 +09002144 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002145
David Brownelld2876d02008-02-04 22:28:20 -08002146 return status;
2147}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002148EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002149
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002150static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002151{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002152 struct gpio_chip *gc = desc->gdev->chip;
2153 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08002154
Linus Walleijd468bf92013-09-24 11:54:38 +02002155 /* GPIOs used for IRQs shall not be set as output */
2156 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2157 gpiod_err(desc,
2158 "%s: tried to set a GPIO tied to an IRQ as output\n",
2159 __func__);
2160 return -EIO;
2161 }
2162
Linus Walleijc663e5f2016-03-22 10:51:16 +01002163 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2164 /* First see if we can enable open drain in hardware */
2165 if (gc->set_single_ended) {
2166 ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc),
2167 LINE_MODE_OPEN_DRAIN);
2168 if (!ret)
2169 goto set_output_value;
2170 }
2171 /* Emulate open drain by not actively driving the line high */
2172 if (value)
2173 return gpiod_direction_input(desc);
2174 }
2175 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2176 if (gc->set_single_ended) {
2177 ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc),
2178 LINE_MODE_OPEN_SOURCE);
2179 if (!ret)
2180 goto set_output_value;
2181 }
2182 /* Emulate open source by not actively driving the line low */
2183 if (!value)
2184 return gpiod_direction_input(desc);
2185 } else {
2186 /* Make sure to disable open drain/source hardware, if any */
2187 if (gc->set_single_ended)
2188 gc->set_single_ended(gc,
2189 gpio_chip_hwgpio(desc),
2190 LINE_MODE_PUSH_PULL);
2191 }
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302192
Linus Walleijc663e5f2016-03-22 10:51:16 +01002193set_output_value:
2194 if (!gc->set || !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002195 gpiod_warn(desc,
2196 "%s: missing set() or direction_output() operations\n",
2197 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002198 return -EIO;
2199 }
2200
Linus Walleijc663e5f2016-03-22 10:51:16 +01002201 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), value);
2202 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002203 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002204 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002205 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2206 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002207}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002208
2209/**
2210 * gpiod_direction_output_raw - set the GPIO direction to output
2211 * @desc: GPIO to set to output
2212 * @value: initial output value of the GPIO
2213 *
2214 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2215 * be called safely on it. The initial value of the output must be specified
2216 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2217 *
2218 * Return 0 in case of success, else an error code.
2219 */
2220int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2221{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002222 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002223 return _gpiod_direction_output_raw(desc, value);
2224}
2225EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2226
2227/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302228 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002229 * @desc: GPIO to set to output
2230 * @value: initial output value of the GPIO
2231 *
2232 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2233 * be called safely on it. The initial value of the output must be specified
2234 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2235 * account.
2236 *
2237 * Return 0 in case of success, else an error code.
2238 */
2239int gpiod_direction_output(struct gpio_desc *desc, int value)
2240{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002241 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002242 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2243 value = !value;
2244 return _gpiod_direction_output_raw(desc, value);
2245}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002246EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002247
Felipe Balbic4b5be92010-05-26 14:42:23 -07002248/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002249 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07002250 * @gpio: the gpio to set debounce time
2251 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002252 *
2253 * returns -ENOTSUPP if the controller does not support setting
2254 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002255 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002256int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002257{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002258 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002259
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002260 VALIDATE_DESC(desc);
2261 chip = desc->gdev->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002262 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01002263 gpiod_dbg(desc,
2264 "%s: missing set() or set_debounce() operations\n",
2265 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002266 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002267 }
2268
Alexandre Courbotd82da792014-07-22 16:17:43 +09002269 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002270}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002271EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002272
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002273/**
2274 * gpiod_is_active_low - test whether a GPIO is active-low or not
2275 * @desc: the gpio descriptor to test
2276 *
2277 * Returns 1 if the GPIO is active-low, 0 otherwise.
2278 */
2279int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002280{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002281 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002282 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002283}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002284EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002285
2286/* I/O calls are only valid after configuration completed; the relevant
2287 * "is this a valid GPIO" error checks should already have been done.
2288 *
2289 * "Get" operations are often inlinable as reading a pin value register,
2290 * and masking the relevant bit in that register.
2291 *
2292 * When "set" operations are inlinable, they involve writing that mask to
2293 * one register to set a low value, or a different register to set it high.
2294 * Otherwise locking is needed, so there may be little value to inlining.
2295 *
2296 *------------------------------------------------------------------------
2297 *
2298 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2299 * have requested the GPIO. That can include implicit requesting by
2300 * a direction setting call. Marking a gpio as requested locks its chip
2301 * in memory, guaranteeing that these table lookups need no more locking
2302 * and that gpiochip_remove() will fail.
2303 *
2304 * REVISIT when debugging, consider adding some instrumentation to ensure
2305 * that the GPIO was actually requested.
2306 */
2307
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002308static int _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002309{
2310 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002311 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002312 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002313
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002314 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002315 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002316 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002317 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002318 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002319 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002320}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002321
David Brownelld2876d02008-02-04 22:28:20 -08002322/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002323 * gpiod_get_raw_value() - return a gpio's raw value
2324 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002325 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002326 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002327 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002328 *
2329 * This function should be called from contexts where we cannot sleep, and will
2330 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002331 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002332int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002333{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002334 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002335 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002336 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002337 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002338}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002339EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002340
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002341/**
2342 * gpiod_get_value() - return a gpio's value
2343 * @desc: gpio whose value will be returned
2344 *
2345 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002346 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002347 *
2348 * This function should be called from contexts where we cannot sleep, and will
2349 * complain if the GPIO chip functions potentially sleep.
2350 */
2351int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002352{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002353 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002354
2355 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002356 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002357 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002358
2359 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002360 if (value < 0)
2361 return value;
2362
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002363 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2364 value = !value;
2365
2366 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002367}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002368EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002369
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302370/*
2371 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002372 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002373 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302374 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002375static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302376{
2377 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002378 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002379 int offset = gpio_chip_hwgpio(desc);
2380
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302381 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002382 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302383 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002384 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302385 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002386 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302387 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002388 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302389 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002390 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302391 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002392 gpiod_err(desc,
2393 "%s: Error in set_value for open drain err %d\n",
2394 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302395}
2396
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302397/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002398 * _gpio_set_open_source_value() - Set the open source gpio's value.
2399 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002400 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302401 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002402static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302403{
2404 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002405 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002406 int offset = gpio_chip_hwgpio(desc);
2407
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302408 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002409 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302410 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002411 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302412 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002413 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302414 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002415 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302416 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002417 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302418 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002419 gpiod_err(desc,
2420 "%s: Error in set_value for open source err %d\n",
2421 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302422}
2423
Alexandre Courbot23600962014-03-11 15:52:09 +09002424static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002425{
2426 struct gpio_chip *chip;
2427
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002428 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002429 trace_gpio_value(desc_to_gpio(desc), 0, value);
2430 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2431 _gpio_set_open_drain_value(desc, value);
2432 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2433 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302434 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09002435 chip->set(chip, gpio_chip_hwgpio(desc), value);
2436}
2437
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002438/*
2439 * set multiple outputs on the same chip;
2440 * use the chip's set_multiple function if available;
2441 * otherwise set the outputs sequentially;
2442 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2443 * defines which outputs are to be changed
2444 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2445 * defines the values the outputs specified by mask are to be set to
2446 */
2447static void gpio_chip_set_multiple(struct gpio_chip *chip,
2448 unsigned long *mask, unsigned long *bits)
2449{
2450 if (chip->set_multiple) {
2451 chip->set_multiple(chip, mask, bits);
2452 } else {
2453 int i;
2454 for (i = 0; i < chip->ngpio; i++) {
2455 if (mask[BIT_WORD(i)] == 0) {
2456 /* no more set bits in this mask word;
2457 * skip ahead to the next word */
2458 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
2459 continue;
2460 }
2461 /* set outputs if the corresponding mask bit is set */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002462 if (__test_and_clear_bit(i, mask))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002463 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002464 }
2465 }
2466}
2467
Linus Walleij44c7288f2016-04-24 11:36:59 +02002468void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2469 unsigned int array_size,
2470 struct gpio_desc **desc_array,
2471 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002472{
2473 int i = 0;
2474
2475 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002476 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002477 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2478 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2479 int count = 0;
2480
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002481 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002482 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002483
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002484 memset(mask, 0, sizeof(mask));
2485 do {
2486 struct gpio_desc *desc = desc_array[i];
2487 int hwgpio = gpio_chip_hwgpio(desc);
2488 int value = value_array[i];
2489
2490 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2491 value = !value;
2492 trace_gpio_value(desc_to_gpio(desc), 0, value);
2493 /*
2494 * collect all normal outputs belonging to the same chip
2495 * open drain and open source outputs are set individually
2496 */
2497 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002498 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002499 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2500 _gpio_set_open_source_value(desc, value);
2501 } else {
2502 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002503 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002504 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002505 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002506 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002507 count++;
2508 }
2509 i++;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002510 } while ((i < array_size) &&
2511 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002512 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002513 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002514 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002515 }
2516}
2517
David Brownelld2876d02008-02-04 22:28:20 -08002518/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002519 * gpiod_set_raw_value() - assign a gpio's raw value
2520 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002521 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002522 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002523 * Set the raw value of the GPIO, i.e. the value of its physical line without
2524 * regard for its ACTIVE_LOW status.
2525 *
2526 * This function should be called from contexts where we cannot sleep, and will
2527 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002528 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002529void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002530{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002531 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002532 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002533 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002534 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002535}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002536EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002537
2538/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002539 * gpiod_set_value() - assign a gpio's value
2540 * @desc: gpio whose value will be assigned
2541 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002542 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002543 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2544 * account
2545 *
2546 * This function should be called from contexts where we cannot sleep, and will
2547 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002548 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002549void gpiod_set_value(struct gpio_desc *desc, int value)
2550{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002551 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002552 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002553 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002554 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2555 value = !value;
2556 _gpiod_set_raw_value(desc, value);
2557}
2558EXPORT_SYMBOL_GPL(gpiod_set_value);
2559
2560/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002561 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002562 * @array_size: number of elements in the descriptor / value arrays
2563 * @desc_array: array of GPIO descriptors whose values will be assigned
2564 * @value_array: array of values to assign
2565 *
2566 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2567 * without regard for their ACTIVE_LOW status.
2568 *
2569 * This function should be called from contexts where we cannot sleep, and will
2570 * complain if the GPIO chip functions potentially sleep.
2571 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002572void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002573 struct gpio_desc **desc_array, int *value_array)
2574{
2575 if (!desc_array)
2576 return;
Linus Walleij44c7288f2016-04-24 11:36:59 +02002577 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2578 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002579}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002580EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002581
2582/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002583 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002584 * @array_size: number of elements in the descriptor / value arrays
2585 * @desc_array: array of GPIO descriptors whose values will be assigned
2586 * @value_array: array of values to assign
2587 *
2588 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2589 * into account.
2590 *
2591 * This function should be called from contexts where we cannot sleep, and will
2592 * complain if the GPIO chip functions potentially sleep.
2593 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002594void gpiod_set_array_value(unsigned int array_size,
2595 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002596{
2597 if (!desc_array)
2598 return;
Linus Walleij44c7288f2016-04-24 11:36:59 +02002599 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2600 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002601}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002602EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002603
2604/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002605 * gpiod_cansleep() - report whether gpio value access may sleep
2606 * @desc: gpio to check
2607 *
2608 */
2609int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002610{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002611 VALIDATE_DESC(desc);
2612 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002613}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002614EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002615
David Brownell0f6d5042008-10-15 22:03:14 -07002616/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002617 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2618 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07002619 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002620 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2621 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07002622 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002623int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07002624{
Linus Walleij4c37ce82016-05-02 13:13:10 +02002625 struct gpio_chip *chip;
2626 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07002627
Linus Walleij79bb71b2016-06-15 22:57:38 +02002628 /*
2629 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2630 * requires this function to not return zero on an invalid descriptor
2631 * but rather a negative error number.
2632 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02002633 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02002634 return -EINVAL;
2635
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002636 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002637 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02002638 if (chip->to_irq) {
2639 int retirq = chip->to_irq(chip, offset);
2640
2641 /* Zero means NO_IRQ */
2642 if (!retirq)
2643 return -ENXIO;
2644
2645 return retirq;
2646 }
2647 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002648}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002649EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002650
Linus Walleijd468bf92013-09-24 11:54:38 +02002651/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002652 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002653 * @chip: the chip the GPIO to lock belongs to
2654 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002655 *
2656 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08002657 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08002658 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002659int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002660{
Linus Walleij9c102802016-05-25 10:56:03 +02002661 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02002662
Linus Walleij9c102802016-05-25 10:56:03 +02002663 desc = gpiochip_get_desc(chip, offset);
2664 if (IS_ERR(desc))
2665 return PTR_ERR(desc);
2666
2667 /* Flush direction if something changed behind our back */
2668 if (chip->get_direction) {
2669 int dir = chip->get_direction(chip, offset);
2670
2671 if (dir)
2672 clear_bit(FLAG_IS_OUT, &desc->flags);
2673 else
2674 set_bit(FLAG_IS_OUT, &desc->flags);
2675 }
2676
2677 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002678 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02002679 "%s: tried to flag a GPIO set as output for IRQ\n",
2680 __func__);
2681 return -EIO;
2682 }
2683
Linus Walleij9c102802016-05-25 10:56:03 +02002684 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002685 return 0;
2686}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002687EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002688
Linus Walleijd468bf92013-09-24 11:54:38 +02002689/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002690 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002691 * @chip: the chip the GPIO to lock belongs to
2692 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002693 *
2694 * This is used directly by GPIO drivers that want to indicate
2695 * that a certain GPIO is no longer used exclusively for IRQ.
2696 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002697void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02002698{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002699 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02002700 return;
2701
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002702 clear_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002703}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002704EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002705
Linus Walleij6cee3822016-02-11 20:16:45 +01002706bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2707{
2708 if (offset >= chip->ngpio)
2709 return false;
2710
2711 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2712}
2713EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2714
Linus Walleij143b65d2016-02-16 15:41:42 +01002715bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2716{
2717 if (offset >= chip->ngpio)
2718 return false;
2719
2720 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2721}
2722EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2723
2724bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2725{
2726 if (offset >= chip->ngpio)
2727 return false;
2728
2729 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2730}
2731EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2732
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002733/**
2734 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2735 * @desc: gpio whose value will be returned
2736 *
2737 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002738 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002739 *
2740 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002741 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002742int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002743{
David Brownelld2876d02008-02-04 22:28:20 -08002744 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002745 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002746 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002747}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002748EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002749
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002750/**
2751 * gpiod_get_value_cansleep() - return a gpio's value
2752 * @desc: gpio whose value will be returned
2753 *
2754 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002755 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002756 *
2757 * This function is to be called from contexts that can sleep.
2758 */
2759int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002760{
David Brownelld2876d02008-02-04 22:28:20 -08002761 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002762
2763 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002764 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002765 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002766 if (value < 0)
2767 return value;
2768
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002769 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2770 value = !value;
2771
David Brownelld2876d02008-02-04 22:28:20 -08002772 return value;
2773}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002774EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002775
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002776/**
2777 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2778 * @desc: gpio whose value will be assigned
2779 * @value: value to assign
2780 *
2781 * Set the raw value of the GPIO, i.e. the value of its physical line without
2782 * regard for its ACTIVE_LOW status.
2783 *
2784 * This function is to be called from contexts that can sleep.
2785 */
2786void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002787{
David Brownelld2876d02008-02-04 22:28:20 -08002788 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002789 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002790 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002791}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002792EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002793
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002794/**
2795 * gpiod_set_value_cansleep() - assign a gpio's value
2796 * @desc: gpio whose value will be assigned
2797 * @value: value to assign
2798 *
2799 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2800 * account
2801 *
2802 * This function is to be called from contexts that can sleep.
2803 */
2804void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002805{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002806 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002807 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002808 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2809 value = !value;
2810 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002811}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002812EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002813
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002814/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002815 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002816 * @array_size: number of elements in the descriptor / value arrays
2817 * @desc_array: array of GPIO descriptors whose values will be assigned
2818 * @value_array: array of values to assign
2819 *
2820 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2821 * without regard for their ACTIVE_LOW status.
2822 *
2823 * This function is to be called from contexts that can sleep.
2824 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002825void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2826 struct gpio_desc **desc_array,
2827 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002828{
2829 might_sleep_if(extra_checks);
2830 if (!desc_array)
2831 return;
Linus Walleij44c7288f2016-04-24 11:36:59 +02002832 gpiod_set_array_value_complex(true, true, array_size, desc_array,
2833 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002834}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002835EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002836
2837/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002838 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002839 * @array_size: number of elements in the descriptor / value arrays
2840 * @desc_array: array of GPIO descriptors whose values will be assigned
2841 * @value_array: array of values to assign
2842 *
2843 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2844 * into account.
2845 *
2846 * This function is to be called from contexts that can sleep.
2847 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002848void gpiod_set_array_value_cansleep(unsigned int array_size,
2849 struct gpio_desc **desc_array,
2850 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002851{
2852 might_sleep_if(extra_checks);
2853 if (!desc_array)
2854 return;
Linus Walleij44c7288f2016-04-24 11:36:59 +02002855 gpiod_set_array_value_complex(false, true, array_size, desc_array,
2856 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002857}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002858EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002859
2860/**
Alexandre Courbotad824782013-12-03 12:20:11 +09002861 * gpiod_add_lookup_table() - register GPIO device consumers
2862 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002863 */
Alexandre Courbotad824782013-12-03 12:20:11 +09002864void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002865{
2866 mutex_lock(&gpio_lookup_lock);
2867
Alexandre Courbotad824782013-12-03 12:20:11 +09002868 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002869
2870 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08002871}
2872
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05302873/**
2874 * gpiod_remove_lookup_table() - unregister GPIO device consumers
2875 * @table: table of consumers to unregister
2876 */
2877void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
2878{
2879 mutex_lock(&gpio_lookup_lock);
2880
2881 list_del(&table->list);
2882
2883 mutex_unlock(&gpio_lookup_lock);
2884}
2885
Alexandre Courbotad824782013-12-03 12:20:11 +09002886static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
2887{
2888 const char *dev_id = dev ? dev_name(dev) : NULL;
2889 struct gpiod_lookup_table *table;
2890
2891 mutex_lock(&gpio_lookup_lock);
2892
2893 list_for_each_entry(table, &gpio_lookup_list, list) {
2894 if (table->dev_id && dev_id) {
2895 /*
2896 * Valid strings on both ends, must be identical to have
2897 * a match
2898 */
2899 if (!strcmp(table->dev_id, dev_id))
2900 goto found;
2901 } else {
2902 /*
2903 * One of the pointers is NULL, so both must be to have
2904 * a match
2905 */
2906 if (dev_id == table->dev_id)
2907 goto found;
2908 }
2909 }
2910 table = NULL;
2911
2912found:
2913 mutex_unlock(&gpio_lookup_lock);
2914 return table;
2915}
2916
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002917static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09002918 unsigned int idx,
2919 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002920{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002921 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09002922 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002923 struct gpiod_lookup *p;
2924
Alexandre Courbotad824782013-12-03 12:20:11 +09002925 table = gpiod_find_lookup_table(dev);
2926 if (!table)
2927 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002928
Alexandre Courbotad824782013-12-03 12:20:11 +09002929 for (p = &table->table[0]; p->chip_label; p++) {
2930 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002931
Alexandre Courbotad824782013-12-03 12:20:11 +09002932 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002933 if (p->idx != idx)
2934 continue;
2935
Alexandre Courbotad824782013-12-03 12:20:11 +09002936 /* If the lookup entry has a con_id, require exact match */
2937 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
2938 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002939
Alexandre Courbotad824782013-12-03 12:20:11 +09002940 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002941
Alexandre Courbotad824782013-12-03 12:20:11 +09002942 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002943 dev_err(dev, "cannot find GPIO chip %s\n",
2944 p->chip_label);
2945 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002946 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002947
Alexandre Courbotad824782013-12-03 12:20:11 +09002948 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002949 dev_err(dev,
2950 "requested GPIO %d is out of range [0..%d] for chip %s\n",
2951 idx, chip->ngpio, chip->label);
2952 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09002953 }
2954
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09002955 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09002956 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002957
2958 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09002959 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002960
2961 return desc;
2962}
2963
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01002964static int dt_gpio_count(struct device *dev, const char *con_id)
2965{
2966 int ret;
2967 char propname[32];
2968 unsigned int i;
2969
2970 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
2971 if (con_id)
2972 snprintf(propname, sizeof(propname), "%s-%s",
2973 con_id, gpio_suffixes[i]);
2974 else
2975 snprintf(propname, sizeof(propname), "%s",
2976 gpio_suffixes[i]);
2977
2978 ret = of_gpio_named_count(dev->of_node, propname);
2979 if (ret >= 0)
2980 break;
2981 }
2982 return ret;
2983}
2984
2985static int platform_gpio_count(struct device *dev, const char *con_id)
2986{
2987 struct gpiod_lookup_table *table;
2988 struct gpiod_lookup *p;
2989 unsigned int count = 0;
2990
2991 table = gpiod_find_lookup_table(dev);
2992 if (!table)
2993 return -ENOENT;
2994
2995 for (p = &table->table[0]; p->chip_label; p++) {
2996 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
2997 (!con_id && !p->con_id))
2998 count++;
2999 }
3000 if (!count)
3001 return -ENOENT;
3002
3003 return count;
3004}
3005
3006/**
3007 * gpiod_count - return the number of GPIOs associated with a device / function
3008 * or -ENOENT if no GPIO has been assigned to the requested function
3009 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3010 * @con_id: function within the GPIO consumer
3011 */
3012int gpiod_count(struct device *dev, const char *con_id)
3013{
3014 int count = -ENOENT;
3015
3016 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3017 count = dt_gpio_count(dev, con_id);
3018 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3019 count = acpi_gpio_count(dev, con_id);
3020
3021 if (count < 0)
3022 count = platform_gpio_count(dev, con_id);
3023
3024 return count;
3025}
3026EXPORT_SYMBOL_GPL(gpiod_count);
3027
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003028/**
Thierry Reding08791622014-04-25 16:54:22 +02003029 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003030 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003031 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003032 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003033 *
3034 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003035 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003036 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003037 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003038struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003039 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003040{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003041 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003042}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003043EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003044
3045/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003046 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3047 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3048 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003049 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003050 *
3051 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3052 * the requested function it will return NULL. This is convenient for drivers
3053 * that need to handle optional GPIOs.
3054 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003055struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003056 const char *con_id,
3057 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003058{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003059 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003060}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003061EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003062
Benoit Parrotf625d462015-02-02 11:44:44 -06003063
3064/**
3065 * gpiod_configure_flags - helper function to configure a given GPIO
3066 * @desc: gpio whose value will be assigned
3067 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02003068 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3069 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003070 * @dflags: gpiod_flags - optional GPIO initialization flags
3071 *
3072 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3073 * requested function and/or index, or another IS_ERR() code if an error
3074 * occurred while trying to acquire the GPIO.
3075 */
3076static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003077 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003078{
3079 int status;
3080
Johan Hovold85b03b32016-07-03 18:32:05 +02003081 if (lflags & GPIO_ACTIVE_LOW)
3082 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3083 if (lflags & GPIO_OPEN_DRAIN)
3084 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3085 if (lflags & GPIO_OPEN_SOURCE)
3086 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3087
Benoit Parrotf625d462015-02-02 11:44:44 -06003088 /* No particular flag request, return here... */
3089 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3090 pr_debug("no flags found for %s\n", con_id);
3091 return 0;
3092 }
3093
3094 /* Process flags */
3095 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3096 status = gpiod_direction_output(desc,
3097 dflags & GPIOD_FLAGS_BIT_DIR_VAL);
3098 else
3099 status = gpiod_direction_input(desc);
3100
3101 return status;
3102}
3103
Thierry Reding29a1f2332014-04-25 17:10:06 +02003104/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003105 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003106 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003107 * @con_id: function within the GPIO consumer
3108 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003109 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003110 *
3111 * This variant of gpiod_get() allows to access GPIOs other than the first
3112 * defined one for functions that define several GPIOs.
3113 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003114 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3115 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003116 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003117 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003118struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003119 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003120 unsigned int idx,
3121 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003122{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003123 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003124 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003125 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003126
3127 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3128
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003129 if (dev) {
3130 /* Using device tree? */
3131 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3132 dev_dbg(dev, "using device tree for GPIO lookup\n");
3133 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3134 } else if (ACPI_COMPANION(dev)) {
3135 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Dmitry Torokhov25487532016-03-24 10:50:25 -07003136 desc = acpi_find_gpio(dev, con_id, idx, flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003137 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003138 }
3139
3140 /*
3141 * Either we are not using DT or ACPI, or their lookup did not return
3142 * a result. In that case, use platform lookup as a fallback.
3143 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003144 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003145 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003146 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003147 }
3148
3149 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02003150 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003151 return desc;
3152 }
3153
3154 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003155 if (status < 0)
3156 return ERR_PTR(status);
3157
Johan Hovold85b03b32016-07-03 18:32:05 +02003158 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003159 if (status < 0) {
3160 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3161 gpiod_put(desc);
3162 return ERR_PTR(status);
3163 }
3164
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003165 return desc;
3166}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003167EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003168
3169/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003170 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3171 * @fwnode: handle of the firmware node
3172 * @propname: name of the firmware property representing the GPIO
3173 *
3174 * This function can be used for drivers that get their configuration
3175 * from firmware.
3176 *
3177 * Function properly finds the corresponding GPIO using whatever is the
3178 * underlying firmware interface and then makes sure that the GPIO
3179 * descriptor is requested before it is returned to the caller.
3180 *
3181 * In case of error an ERR_PTR() is returned.
3182 */
3183struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3184 const char *propname)
3185{
3186 struct gpio_desc *desc = ERR_PTR(-ENODEV);
3187 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003188 bool single_ended = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02003189 int ret;
3190
3191 if (!fwnode)
3192 return ERR_PTR(-EINVAL);
3193
3194 if (is_of_node(fwnode)) {
3195 enum of_gpio_flags flags;
3196
Alexander Sverdlinc181fb32015-06-22 22:38:53 +02003197 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
Mika Westerberg40b73182014-10-21 13:33:59 +02003198 &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003199 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02003200 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003201 single_ended = flags & OF_GPIO_SINGLE_ENDED;
3202 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003203 } else if (is_acpi_node(fwnode)) {
3204 struct acpi_gpio_info info;
3205
Rafael J. Wysocki504a3372015-08-27 04:42:33 +02003206 desc = acpi_node_get_gpiod(fwnode, propname, 0, &info);
Mika Westerberg40b73182014-10-21 13:33:59 +02003207 if (!IS_ERR(desc))
Christophe RICARD52044722015-12-23 23:25:34 +01003208 active_low = info.polarity == GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02003209 }
3210
3211 if (IS_ERR(desc))
3212 return desc;
3213
Johan Hovold85b03b32016-07-03 18:32:05 +02003214 ret = gpiod_request(desc, NULL);
3215 if (ret)
3216 return ERR_PTR(ret);
3217
Mika Westerberg40b73182014-10-21 13:33:59 +02003218 if (active_low)
3219 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3220
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003221 if (single_ended) {
3222 if (active_low)
3223 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3224 else
3225 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3226 }
3227
Mika Westerberg40b73182014-10-21 13:33:59 +02003228 return desc;
3229}
3230EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3231
3232/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003233 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3234 * function
3235 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3236 * @con_id: function within the GPIO consumer
3237 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003238 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003239 *
3240 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3241 * specified index was assigned to the requested function it will return NULL.
3242 * This is convenient for drivers that need to handle optional GPIOs.
3243 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003244struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003245 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003246 unsigned int index,
3247 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003248{
3249 struct gpio_desc *desc;
3250
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003251 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003252 if (IS_ERR(desc)) {
3253 if (PTR_ERR(desc) == -ENOENT)
3254 return NULL;
3255 }
3256
3257 return desc;
3258}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003259EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003260
3261/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003262 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3263 * @desc: gpio whose value will be assigned
3264 * @name: gpio line name
3265 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3266 * of_get_gpio_hog()
3267 * @dflags: gpiod_flags - optional GPIO initialization flags
3268 */
3269int gpiod_hog(struct gpio_desc *desc, const char *name,
3270 unsigned long lflags, enum gpiod_flags dflags)
3271{
3272 struct gpio_chip *chip;
3273 struct gpio_desc *local_desc;
3274 int hwnum;
3275 int status;
3276
3277 chip = gpiod_to_chip(desc);
3278 hwnum = gpio_chip_hwgpio(desc);
3279
3280 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3281 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303282 status = PTR_ERR(local_desc);
3283 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3284 name, chip->label, hwnum, status);
3285 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06003286 }
3287
Johan Hovold85b03b32016-07-03 18:32:05 +02003288 status = gpiod_configure_flags(desc, name, lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06003289 if (status < 0) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303290 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3291 name, chip->label, hwnum, status);
Benoit Parrotf625d462015-02-02 11:44:44 -06003292 gpiochip_free_own_desc(desc);
3293 return status;
3294 }
3295
3296 /* Mark GPIO as hogged so it can be identified and removed later */
3297 set_bit(FLAG_IS_HOGGED, &desc->flags);
3298
3299 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3300 desc_to_gpio(desc), name,
3301 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3302 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3303 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3304
3305 return 0;
3306}
3307
3308/**
3309 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3310 * @chip: gpio chip to act on
3311 *
3312 * This is only used by of_gpiochip_remove to free hogged gpios
3313 */
3314static void gpiochip_free_hogs(struct gpio_chip *chip)
3315{
3316 int id;
3317
3318 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01003319 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3320 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06003321 }
3322}
3323
3324/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003325 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3326 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3327 * @con_id: function within the GPIO consumer
3328 * @flags: optional GPIO initialization flags
3329 *
3330 * This function acquires all the GPIOs defined under a given function.
3331 *
3332 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3333 * no GPIO has been assigned to the requested function, or another IS_ERR()
3334 * code if an error occurred while trying to acquire the GPIOs.
3335 */
3336struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3337 const char *con_id,
3338 enum gpiod_flags flags)
3339{
3340 struct gpio_desc *desc;
3341 struct gpio_descs *descs;
3342 int count;
3343
3344 count = gpiod_count(dev, con_id);
3345 if (count < 0)
3346 return ERR_PTR(count);
3347
3348 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3349 GFP_KERNEL);
3350 if (!descs)
3351 return ERR_PTR(-ENOMEM);
3352
3353 for (descs->ndescs = 0; descs->ndescs < count; ) {
3354 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3355 if (IS_ERR(desc)) {
3356 gpiod_put_array(descs);
3357 return ERR_CAST(desc);
3358 }
3359 descs->desc[descs->ndescs] = desc;
3360 descs->ndescs++;
3361 }
3362 return descs;
3363}
3364EXPORT_SYMBOL_GPL(gpiod_get_array);
3365
3366/**
3367 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3368 * function
3369 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3370 * @con_id: function within the GPIO consumer
3371 * @flags: optional GPIO initialization flags
3372 *
3373 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3374 * assigned to the requested function it will return NULL.
3375 */
3376struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3377 const char *con_id,
3378 enum gpiod_flags flags)
3379{
3380 struct gpio_descs *descs;
3381
3382 descs = gpiod_get_array(dev, con_id, flags);
3383 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3384 return NULL;
3385
3386 return descs;
3387}
3388EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3389
3390/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003391 * gpiod_put - dispose of a GPIO descriptor
3392 * @desc: GPIO descriptor to dispose of
3393 *
3394 * No descriptor can be used after gpiod_put() has been called on it.
3395 */
3396void gpiod_put(struct gpio_desc *desc)
3397{
3398 gpiod_free(desc);
3399}
3400EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08003401
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003402/**
3403 * gpiod_put_array - dispose of multiple GPIO descriptors
3404 * @descs: struct gpio_descs containing an array of descriptors
3405 */
3406void gpiod_put_array(struct gpio_descs *descs)
3407{
3408 unsigned int i;
3409
3410 for (i = 0; i < descs->ndescs; i++)
3411 gpiod_put(descs->desc[i]);
3412
3413 kfree(descs);
3414}
3415EXPORT_SYMBOL_GPL(gpiod_put_array);
3416
Linus Walleij3c702e92015-10-21 15:29:53 +02003417static int __init gpiolib_dev_init(void)
3418{
3419 int ret;
3420
3421 /* Register GPIO sysfs bus */
3422 ret = bus_register(&gpio_bus_type);
3423 if (ret < 0) {
3424 pr_err("gpiolib: could not register GPIO bus type\n");
3425 return ret;
3426 }
3427
3428 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3429 if (ret < 0) {
3430 pr_err("gpiolib: failed to allocate char dev region\n");
3431 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07003432 } else {
3433 gpiolib_initialized = true;
3434 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02003435 }
3436 return ret;
3437}
3438core_initcall(gpiolib_dev_init);
3439
David Brownelld2876d02008-02-04 22:28:20 -08003440#ifdef CONFIG_DEBUG_FS
3441
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003442static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08003443{
3444 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003445 struct gpio_chip *chip = gdev->chip;
3446 unsigned gpio = gdev->base;
3447 struct gpio_desc *gdesc = &gdev->descs[0];
David Brownelld2876d02008-02-04 22:28:20 -08003448 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02003449 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08003450
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003451 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02003452 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3453 if (gdesc->name) {
3454 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3455 gpio, gdesc->name);
3456 }
David Brownelld2876d02008-02-04 22:28:20 -08003457 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02003458 }
David Brownelld2876d02008-02-04 22:28:20 -08003459
Alexandre Courbot372e7222013-02-03 01:29:29 +09003460 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08003461 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02003462 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02003463 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3464 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08003465 is_out ? "out" : "in ",
3466 chip->get
3467 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02003468 : "? ",
3469 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08003470 seq_printf(s, "\n");
3471 }
3472}
3473
Thierry Redingf9c4a312012-04-12 13:26:01 +02003474static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08003475{
Grant Likely362432a2013-02-09 09:41:49 +00003476 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003477 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003478 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003479
3480 s->private = "";
3481
Grant Likely362432a2013-02-09 09:41:49 +00003482 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003483 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00003484 if (index-- == 0) {
3485 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003486 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00003487 }
3488 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003489
3490 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003491}
3492
3493static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3494{
Grant Likely362432a2013-02-09 09:41:49 +00003495 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003496 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003497 void *ret = NULL;
3498
Grant Likely362432a2013-02-09 09:41:49 +00003499 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003500 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003501 ret = NULL;
3502 else
Linus Walleijff2b1352015-10-20 11:10:38 +02003503 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00003504 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003505
3506 s->private = "\n";
3507 ++*pos;
3508
3509 return ret;
3510}
3511
3512static void gpiolib_seq_stop(struct seq_file *s, void *v)
3513{
3514}
3515
3516static int gpiolib_seq_show(struct seq_file *s, void *v)
3517{
Linus Walleijff2b1352015-10-20 11:10:38 +02003518 struct gpio_device *gdev = v;
3519 struct gpio_chip *chip = gdev->chip;
3520 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003521
Linus Walleijff2b1352015-10-20 11:10:38 +02003522 if (!chip) {
3523 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3524 dev_name(&gdev->dev));
3525 return 0;
3526 }
3527
3528 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3529 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003530 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02003531 parent = chip->parent;
3532 if (parent)
3533 seq_printf(s, ", parent: %s/%s",
3534 parent->bus ? parent->bus->name : "no-bus",
3535 dev_name(parent));
Thierry Redingf9c4a312012-04-12 13:26:01 +02003536 if (chip->label)
3537 seq_printf(s, ", %s", chip->label);
3538 if (chip->can_sleep)
3539 seq_printf(s, ", can sleep");
3540 seq_printf(s, ":\n");
3541
3542 if (chip->dbg_show)
3543 chip->dbg_show(s, chip);
3544 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003545 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003546
David Brownelld2876d02008-02-04 22:28:20 -08003547 return 0;
3548}
3549
Thierry Redingf9c4a312012-04-12 13:26:01 +02003550static const struct seq_operations gpiolib_seq_ops = {
3551 .start = gpiolib_seq_start,
3552 .next = gpiolib_seq_next,
3553 .stop = gpiolib_seq_stop,
3554 .show = gpiolib_seq_show,
3555};
3556
David Brownelld2876d02008-02-04 22:28:20 -08003557static int gpiolib_open(struct inode *inode, struct file *file)
3558{
Thierry Redingf9c4a312012-04-12 13:26:01 +02003559 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08003560}
3561
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003562static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02003563 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08003564 .open = gpiolib_open,
3565 .read = seq_read,
3566 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02003567 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08003568};
3569
3570static int __init gpiolib_debugfs_init(void)
3571{
3572 /* /sys/kernel/debug/gpio */
3573 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3574 NULL, NULL, &gpiolib_operations);
3575 return 0;
3576}
3577subsys_initcall(gpiolib_debugfs_init);
3578
3579#endif /* DEBUG_FS */