blob: 7f92f8964efdd5ec6b037ad3ddc3b8af47ba6c56 [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 Brownelld8f388d82008-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
Lars-Peter Clausen3eded5d2016-10-18 16:54:02 +0200347 memset(&ghd, 0, sizeof(ghd));
348
Linus Walleijd7c51b42016-04-26 10:35:29 +0200349 /* TODO: check if descriptors are really input */
350 for (i = 0; i < lh->numdescs; i++) {
351 val = gpiod_get_value_cansleep(lh->descs[i]);
352 if (val < 0)
353 return val;
354 ghd.values[i] = val;
355 }
356
357 if (copy_to_user(ip, &ghd, sizeof(ghd)))
358 return -EFAULT;
359
360 return 0;
361 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
362 int vals[GPIOHANDLES_MAX];
363
364 /* TODO: check if descriptors are really output */
365 if (copy_from_user(&ghd, ip, sizeof(ghd)))
366 return -EFAULT;
367
368 /* Clamp all values to [0,1] */
369 for (i = 0; i < lh->numdescs; i++)
370 vals[i] = !!ghd.values[i];
371
372 /* Reuse the array setting function */
373 gpiod_set_array_value_complex(false,
374 true,
375 lh->numdescs,
376 lh->descs,
377 vals);
378 return 0;
379 }
380 return -EINVAL;
381}
382
383#ifdef CONFIG_COMPAT
384static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
385 unsigned long arg)
386{
387 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
388}
389#endif
390
391static int linehandle_release(struct inode *inode, struct file *filep)
392{
393 struct linehandle_state *lh = filep->private_data;
394 struct gpio_device *gdev = lh->gdev;
395 int i;
396
397 for (i = 0; i < lh->numdescs; i++)
398 gpiod_free(lh->descs[i]);
399 kfree(lh->label);
400 kfree(lh);
401 put_device(&gdev->dev);
402 return 0;
403}
404
405static const struct file_operations linehandle_fileops = {
406 .release = linehandle_release,
407 .owner = THIS_MODULE,
408 .llseek = noop_llseek,
409 .unlocked_ioctl = linehandle_ioctl,
410#ifdef CONFIG_COMPAT
411 .compat_ioctl = linehandle_ioctl_compat,
412#endif
413};
414
415static int linehandle_create(struct gpio_device *gdev, void __user *ip)
416{
417 struct gpiohandle_request handlereq;
418 struct linehandle_state *lh;
419 int fd, i, ret;
420
421 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
422 return -EFAULT;
423 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
424 return -EINVAL;
425
426 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
427 if (!lh)
428 return -ENOMEM;
429 lh->gdev = gdev;
430 get_device(&gdev->dev);
431
432 /* Make sure this is terminated */
433 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
434 if (strlen(handlereq.consumer_label)) {
435 lh->label = kstrdup(handlereq.consumer_label,
436 GFP_KERNEL);
437 if (!lh->label) {
438 ret = -ENOMEM;
439 goto out_free_lh;
440 }
441 }
442
443 /* Request each GPIO */
444 for (i = 0; i < handlereq.lines; i++) {
445 u32 offset = handlereq.lineoffsets[i];
446 u32 lflags = handlereq.flags;
447 struct gpio_desc *desc;
448
Lars-Peter Clausene405f9f2016-10-18 16:54:01 +0200449 if (offset >= gdev->ngpio) {
450 ret = -EINVAL;
451 goto out_free_descs;
452 }
453
Linus Walleijd7c51b42016-04-26 10:35:29 +0200454 desc = &gdev->descs[offset];
455 ret = gpiod_request(desc, lh->label);
456 if (ret)
457 goto out_free_descs;
458 lh->descs[i] = desc;
459
460 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
461 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
462 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
463 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
464 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
465 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
466
467 /*
468 * Lines have to be requested explicitly for input
469 * or output, else the line will be treated "as is".
470 */
471 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
472 int val = !!handlereq.default_values[i];
473
474 ret = gpiod_direction_output(desc, val);
475 if (ret)
476 goto out_free_descs;
477 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
478 ret = gpiod_direction_input(desc);
479 if (ret)
480 goto out_free_descs;
481 }
482 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
483 offset);
484 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200485 /* Let i point at the last handle */
486 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200487 lh->numdescs = handlereq.lines;
488
489 fd = anon_inode_getfd("gpio-linehandle",
490 &linehandle_fileops,
491 lh,
492 O_RDONLY | O_CLOEXEC);
493 if (fd < 0) {
494 ret = fd;
495 goto out_free_descs;
496 }
497
498 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200499 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
500 ret = -EFAULT;
501 goto out_free_descs;
502 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200503
504 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
505 lh->numdescs);
506
507 return 0;
508
509out_free_descs:
510 for (; i >= 0; i--)
511 gpiod_free(lh->descs[i]);
512 kfree(lh->label);
513out_free_lh:
514 kfree(lh);
515 put_device(&gdev->dev);
516 return ret;
517}
518
Linus Walleij61f922d2016-06-02 11:30:15 +0200519/*
520 * GPIO line event management
521 */
522
523/**
524 * struct lineevent_state - contains the state of a userspace event
525 * @gdev: the GPIO device the event pertains to
526 * @label: consumer label used to tag descriptors
527 * @desc: the GPIO descriptor held by this event
528 * @eflags: the event flags this line was requested with
529 * @irq: the interrupt that trigger in response to events on this GPIO
530 * @wait: wait queue that handles blocking reads of events
531 * @events: KFIFO for the GPIO events
532 * @read_lock: mutex lock to protect reads from colliding with adding
533 * new events to the FIFO
534 */
535struct lineevent_state {
536 struct gpio_device *gdev;
537 const char *label;
538 struct gpio_desc *desc;
539 u32 eflags;
540 int irq;
541 wait_queue_head_t wait;
542 DECLARE_KFIFO(events, struct gpioevent_data, 16);
543 struct mutex read_lock;
544};
545
546static unsigned int lineevent_poll(struct file *filep,
547 struct poll_table_struct *wait)
548{
549 struct lineevent_state *le = filep->private_data;
550 unsigned int events = 0;
551
552 poll_wait(filep, &le->wait, wait);
553
554 if (!kfifo_is_empty(&le->events))
555 events = POLLIN | POLLRDNORM;
556
557 return events;
558}
559
560
561static ssize_t lineevent_read(struct file *filep,
562 char __user *buf,
563 size_t count,
564 loff_t *f_ps)
565{
566 struct lineevent_state *le = filep->private_data;
567 unsigned int copied;
568 int ret;
569
570 if (count < sizeof(struct gpioevent_data))
571 return -EINVAL;
572
573 do {
574 if (kfifo_is_empty(&le->events)) {
575 if (filep->f_flags & O_NONBLOCK)
576 return -EAGAIN;
577
578 ret = wait_event_interruptible(le->wait,
579 !kfifo_is_empty(&le->events));
580 if (ret)
581 return ret;
582 }
583
584 if (mutex_lock_interruptible(&le->read_lock))
585 return -ERESTARTSYS;
586 ret = kfifo_to_user(&le->events, buf, count, &copied);
587 mutex_unlock(&le->read_lock);
588
589 if (ret)
590 return ret;
591
592 /*
593 * If we couldn't read anything from the fifo (a different
594 * thread might have been faster) we either return -EAGAIN if
595 * the file descriptor is non-blocking, otherwise we go back to
596 * sleep and wait for more data to arrive.
597 */
598 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
599 return -EAGAIN;
600
601 } while (copied == 0);
602
603 return copied;
604}
605
606static int lineevent_release(struct inode *inode, struct file *filep)
607{
608 struct lineevent_state *le = filep->private_data;
609 struct gpio_device *gdev = le->gdev;
610
611 free_irq(le->irq, le);
612 gpiod_free(le->desc);
613 kfree(le->label);
614 kfree(le);
615 put_device(&gdev->dev);
616 return 0;
617}
618
619static long lineevent_ioctl(struct file *filep, unsigned int cmd,
620 unsigned long arg)
621{
622 struct lineevent_state *le = filep->private_data;
623 void __user *ip = (void __user *)arg;
624 struct gpiohandle_data ghd;
625
626 /*
627 * We can get the value for an event line but not set it,
628 * because it is input by definition.
629 */
630 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
631 int val;
632
Lars-Peter Clausend82aa4a2016-10-18 16:54:04 +0200633 memset(&ghd, 0, sizeof(ghd));
634
Linus Walleij61f922d2016-06-02 11:30:15 +0200635 val = gpiod_get_value_cansleep(le->desc);
636 if (val < 0)
637 return val;
638 ghd.values[0] = val;
639
640 if (copy_to_user(ip, &ghd, sizeof(ghd)))
641 return -EFAULT;
642
643 return 0;
644 }
645 return -EINVAL;
646}
647
648#ifdef CONFIG_COMPAT
649static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
650 unsigned long arg)
651{
652 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
653}
654#endif
655
656static const struct file_operations lineevent_fileops = {
657 .release = lineevent_release,
658 .read = lineevent_read,
659 .poll = lineevent_poll,
660 .owner = THIS_MODULE,
661 .llseek = noop_llseek,
662 .unlocked_ioctl = lineevent_ioctl,
663#ifdef CONFIG_COMPAT
664 .compat_ioctl = lineevent_ioctl_compat,
665#endif
666};
667
Ben Dooks33265b12016-06-17 16:03:13 +0100668static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200669{
670 struct lineevent_state *le = p;
671 struct gpioevent_data ge;
672 int ret;
673
674 ge.timestamp = ktime_get_real_ns();
675
676 if (le->eflags & GPIOEVENT_REQUEST_BOTH_EDGES) {
677 int level = gpiod_get_value_cansleep(le->desc);
678
679 if (level)
680 /* Emit low-to-high event */
681 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
682 else
683 /* Emit high-to-low event */
684 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
685 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) {
686 /* Emit low-to-high event */
687 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
688 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
689 /* Emit high-to-low event */
690 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200691 } else {
692 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200693 }
694
695 ret = kfifo_put(&le->events, ge);
696 if (ret != 0)
697 wake_up_poll(&le->wait, POLLIN);
698
699 return IRQ_HANDLED;
700}
701
702static int lineevent_create(struct gpio_device *gdev, void __user *ip)
703{
704 struct gpioevent_request eventreq;
705 struct lineevent_state *le;
706 struct gpio_desc *desc;
707 u32 offset;
708 u32 lflags;
709 u32 eflags;
710 int fd;
711 int ret;
712 int irqflags = 0;
713
714 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
715 return -EFAULT;
716
717 le = kzalloc(sizeof(*le), GFP_KERNEL);
718 if (!le)
719 return -ENOMEM;
720 le->gdev = gdev;
721 get_device(&gdev->dev);
722
723 /* Make sure this is terminated */
724 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
725 if (strlen(eventreq.consumer_label)) {
726 le->label = kstrdup(eventreq.consumer_label,
727 GFP_KERNEL);
728 if (!le->label) {
729 ret = -ENOMEM;
730 goto out_free_le;
731 }
732 }
733
734 offset = eventreq.lineoffset;
735 lflags = eventreq.handleflags;
736 eflags = eventreq.eventflags;
737
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200738 if (offset >= gdev->ngpio) {
739 ret = -EINVAL;
740 goto out_free_label;
741 }
742
Linus Walleij61f922d2016-06-02 11:30:15 +0200743 /* This is just wrong: we don't look for events on output lines */
744 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
745 ret = -EINVAL;
746 goto out_free_label;
747 }
748
749 desc = &gdev->descs[offset];
750 ret = gpiod_request(desc, le->label);
751 if (ret)
752 goto out_free_desc;
753 le->desc = desc;
754 le->eflags = eflags;
755
756 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
757 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
758 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
759 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
760 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
761 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
762
763 ret = gpiod_direction_input(desc);
764 if (ret)
765 goto out_free_desc;
766
767 le->irq = gpiod_to_irq(desc);
768 if (le->irq <= 0) {
769 ret = -ENODEV;
770 goto out_free_desc;
771 }
772
773 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
774 irqflags |= IRQF_TRIGGER_RISING;
775 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
776 irqflags |= IRQF_TRIGGER_FALLING;
777 irqflags |= IRQF_ONESHOT;
778 irqflags |= IRQF_SHARED;
779
780 INIT_KFIFO(le->events);
781 init_waitqueue_head(&le->wait);
782 mutex_init(&le->read_lock);
783
784 /* Request a thread to read the events */
785 ret = request_threaded_irq(le->irq,
786 NULL,
787 lineevent_irq_thread,
788 irqflags,
789 le->label,
790 le);
791 if (ret)
792 goto out_free_desc;
793
794 fd = anon_inode_getfd("gpio-event",
795 &lineevent_fileops,
796 le,
797 O_RDONLY | O_CLOEXEC);
798 if (fd < 0) {
799 ret = fd;
800 goto out_free_irq;
801 }
802
803 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200804 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
805 ret = -EFAULT;
806 goto out_free_irq;
807 }
Linus Walleij61f922d2016-06-02 11:30:15 +0200808
809 return 0;
810
811out_free_irq:
812 free_irq(le->irq, le);
813out_free_desc:
814 gpiod_free(le->desc);
815out_free_label:
816 kfree(le->label);
817out_free_le:
818 kfree(le);
819 put_device(&gdev->dev);
820 return ret;
821}
822
Linus Walleij3c702e92015-10-21 15:29:53 +0200823/**
824 * gpio_ioctl() - ioctl handler for the GPIO chardev
825 */
826static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
827{
828 struct gpio_device *gdev = filp->private_data;
829 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +0200830 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +0200831
832 /* We fail any subsequent ioctl():s when the chip is gone */
833 if (!chip)
834 return -ENODEV;
835
Linus Walleij521a2ad2016-02-12 22:25:22 +0100836 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +0200837 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +0100838 struct gpiochip_info chipinfo;
839
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +0200840 memset(&chipinfo, 0, sizeof(chipinfo));
841
Linus Walleij3c702e92015-10-21 15:29:53 +0200842 strncpy(chipinfo.name, dev_name(&gdev->dev),
843 sizeof(chipinfo.name));
844 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +0100845 strncpy(chipinfo.label, gdev->label,
846 sizeof(chipinfo.label));
847 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100848 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +0200849 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
850 return -EFAULT;
851 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +0100852 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
853 struct gpioline_info lineinfo;
854 struct gpio_desc *desc;
855
856 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
857 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +0200858 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +0100859 return -EINVAL;
860
861 desc = &gdev->descs[lineinfo.line_offset];
862 if (desc->name) {
863 strncpy(lineinfo.name, desc->name,
864 sizeof(lineinfo.name));
865 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
866 } else {
867 lineinfo.name[0] = '\0';
868 }
869 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +0100870 strncpy(lineinfo.consumer, desc->label,
871 sizeof(lineinfo.consumer));
872 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100873 } else {
Linus Walleij214338e2016-02-25 21:01:48 +0100874 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100875 }
876
877 /*
878 * Userspace only need to know that the kernel is using
879 * this GPIO so it can't use it.
880 */
881 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100882 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
883 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
884 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
885 test_bit(FLAG_EXPORT, &desc->flags) ||
886 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100887 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100888 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100889 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100890 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100891 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100892 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100893 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100894 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100895 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
896
897 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
898 return -EFAULT;
899 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200900 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
901 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +0200902 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
903 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +0200904 }
905 return -EINVAL;
906}
907
Linus Walleij8b92e172016-05-27 14:24:04 +0200908#ifdef CONFIG_COMPAT
909static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
910 unsigned long arg)
911{
912 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
913}
914#endif
915
Linus Walleij3c702e92015-10-21 15:29:53 +0200916/**
917 * gpio_chrdev_open() - open the chardev for ioctl operations
918 * @inode: inode for this chardev
919 * @filp: file struct for storing private data
920 * Returns 0 on success
921 */
922static int gpio_chrdev_open(struct inode *inode, struct file *filp)
923{
924 struct gpio_device *gdev = container_of(inode->i_cdev,
925 struct gpio_device, chrdev);
926
927 /* Fail on open if the backing gpiochip is gone */
928 if (!gdev || !gdev->chip)
929 return -ENODEV;
930 get_device(&gdev->dev);
931 filp->private_data = gdev;
932 return 0;
933}
934
935/**
936 * gpio_chrdev_release() - close chardev after ioctl operations
937 * @inode: inode for this chardev
938 * @filp: file struct for storing private data
939 * Returns 0 on success
940 */
941static int gpio_chrdev_release(struct inode *inode, struct file *filp)
942{
943 struct gpio_device *gdev = container_of(inode->i_cdev,
944 struct gpio_device, chrdev);
945
946 if (!gdev)
947 return -ENODEV;
948 put_device(&gdev->dev);
949 return 0;
950}
951
952
953static const struct file_operations gpio_fileops = {
954 .release = gpio_chrdev_release,
955 .open = gpio_chrdev_open,
956 .owner = THIS_MODULE,
957 .llseek = noop_llseek,
958 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +0200959#ifdef CONFIG_COMPAT
960 .compat_ioctl = gpio_ioctl_compat,
961#endif
Linus Walleij3c702e92015-10-21 15:29:53 +0200962};
963
Linus Walleijff2b1352015-10-20 11:10:38 +0200964static void gpiodevice_release(struct device *dev)
965{
966 struct gpio_device *gdev = dev_get_drvdata(dev);
967
968 list_del(&gdev->list);
969 ida_simple_remove(&gpio_ida, gdev->id);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700970 kfree(gdev->label);
971 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +0100972 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +0200973}
974
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700975static int gpiochip_setup_dev(struct gpio_device *gdev)
976{
977 int status;
978
979 cdev_init(&gdev->chrdev, &gpio_fileops);
980 gdev->chrdev.owner = THIS_MODULE;
981 gdev->chrdev.kobj.parent = &gdev->dev.kobj;
982 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
983 status = cdev_add(&gdev->chrdev, gdev->dev.devt, 1);
984 if (status < 0)
985 chip_warn(gdev->chip, "failed to add char device %d:%d\n",
986 MAJOR(gpio_devt), gdev->id);
987 else
988 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
989 MAJOR(gpio_devt), gdev->id);
990 status = device_add(&gdev->dev);
991 if (status)
992 goto err_remove_chardev;
993
994 status = gpiochip_sysfs_register(gdev);
995 if (status)
996 goto err_remove_device;
997
998 /* From this point, the .release() function cleans up gpio_device */
999 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001000 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1001 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1002 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1003
1004 return 0;
1005
1006err_remove_device:
1007 device_del(&gdev->dev);
1008err_remove_chardev:
1009 cdev_del(&gdev->chrdev);
1010 return status;
1011}
1012
1013static void gpiochip_setup_devs(void)
1014{
1015 struct gpio_device *gdev;
1016 int err;
1017
1018 list_for_each_entry(gdev, &gpio_devices, list) {
1019 err = gpiochip_setup_dev(gdev);
1020 if (err)
1021 pr_err("%s: Failed to initialize gpio device (%d)\n",
1022 dev_name(&gdev->dev), err);
1023 }
1024}
1025
Anton Vorontsov169b6a72008-04-28 02:14:47 -07001026/**
Linus Walleijb08ea352015-12-03 15:14:13 +01001027 * gpiochip_add_data() - register a gpio_chip
David Brownelld2876d02008-02-04 22:28:20 -08001028 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001029 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -08001030 *
1031 * Returns a negative errno if the chip can't be registered, such as
1032 * because the chip->base is invalid or already associated with a
1033 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001034 *
Linus Walleijb08ea352015-12-03 15:14:13 +01001035 * When gpiochip_add_data() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001036 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d82008-07-25 01:46:07 -07001037 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1038 * for GPIOs will fail rudely.
1039 *
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001040 * gpiochip_add_data() must only be called after gpiolib initialization,
1041 * ie after core_initcall().
1042 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001043 * If chip->base is negative, this requests dynamic assignment of
1044 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001045 */
Linus Walleijb08ea352015-12-03 15:14:13 +01001046int gpiochip_add_data(struct gpio_chip *chip, void *data)
David Brownelld2876d02008-02-04 22:28:20 -08001047{
1048 unsigned long flags;
1049 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001050 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001051 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001052 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001053
Linus Walleijff2b1352015-10-20 11:10:38 +02001054 /*
1055 * First: allocate and populate the internal stat container, and
1056 * set up the struct device.
1057 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001058 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001059 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001060 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001061 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001062 gdev->chip = chip;
1063 chip->gpiodev = gdev;
1064 if (chip->parent) {
1065 gdev->dev.parent = chip->parent;
1066 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001067 }
1068
Linus Walleijff2b1352015-10-20 11:10:38 +02001069#ifdef CONFIG_OF_GPIO
1070 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001071 if (chip->of_node)
1072 gdev->dev.of_node = chip->of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001073#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001074
Linus Walleijff2b1352015-10-20 11:10:38 +02001075 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1076 if (gdev->id < 0) {
1077 status = gdev->id;
1078 goto err_free_gdev;
1079 }
1080 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1081 device_initialize(&gdev->dev);
1082 dev_set_drvdata(&gdev->dev, gdev);
1083 if (chip->parent && chip->parent->driver)
1084 gdev->owner = chip->parent->driver->owner;
1085 else if (chip->owner)
1086 /* TODO: remove chip->owner */
1087 gdev->owner = chip->owner;
1088 else
1089 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001090
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001091 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001092 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001093 status = -ENOMEM;
1094 goto err_free_gdev;
1095 }
1096
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001097 if (chip->ngpio == 0) {
1098 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001099 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001100 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001101 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001102
1103 if (chip->label)
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001104 gdev->label = kstrdup(chip->label, GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001105 else
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001106 gdev->label = kstrdup("unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001107 if (!gdev->label) {
1108 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001109 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001110 }
1111
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001112 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001113 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001114
David Brownelld2876d02008-02-04 22:28:20 -08001115 spin_lock_irqsave(&gpio_lock, flags);
1116
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001117 /*
1118 * TODO: this allocates a Linux GPIO number base in the global
1119 * GPIO numberspace for this chip. In the long run we want to
1120 * get *rid* of this numberspace and use only descriptors, but
1121 * it may be a pipe dream. It will not happen before we get rid
1122 * of the sysfs interface anyways.
1123 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001124 if (base < 0) {
1125 base = gpiochip_find_base(chip->ngpio);
1126 if (base < 0) {
1127 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001128 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001129 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001130 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001131 /*
1132 * TODO: it should not be necessary to reflect the assigned
1133 * base outside of the GPIO subsystem. Go over drivers and
1134 * see if anyone makes use of this, else drop this and assign
1135 * a poison instead.
1136 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001137 chip->base = base;
1138 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001139 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001140
Linus Walleijff2b1352015-10-20 11:10:38 +02001141 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001142 if (status) {
1143 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001144 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001145 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001146
Linus Walleij545ebd92016-05-30 17:11:59 +02001147 spin_unlock_irqrestore(&gpio_lock, flags);
1148
Linus Walleijff2b1352015-10-20 11:10:38 +02001149 for (i = 0; i < chip->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001150 struct gpio_desc *desc = &gdev->descs[i];
David Brownelld8f388d82008-07-25 01:46:07 -07001151
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001152 desc->gdev = gdev;
Linus Walleij72d32002016-04-28 13:33:59 +02001153 /*
1154 * REVISIT: most hardware initializes GPIOs as inputs
1155 * (often with pullups enabled) so power usage is
1156 * minimized. Linux code should set the gpio direction
1157 * first thing; but until it does, and in case
1158 * chip->get_direction is not set, we may expose the
1159 * wrong direction in sysfs.
Johan Hovold05aa5202015-01-12 17:12:26 +01001160 */
Linus Walleij72d32002016-04-28 13:33:59 +02001161
1162 if (chip->get_direction) {
1163 /*
1164 * If we have .get_direction, set up the initial
1165 * direction flag from the hardware.
1166 */
1167 int dir = chip->get_direction(chip, i);
1168
1169 if (!dir)
1170 set_bit(FLAG_IS_OUT, &desc->flags);
1171 } else if (!chip->direction_input) {
1172 /*
1173 * If the chip lacks the .direction_input callback
1174 * we logically assume all lines are outputs.
1175 */
1176 set_bit(FLAG_IS_OUT, &desc->flags);
1177 }
David Brownelld2876d02008-02-04 22:28:20 -08001178 }
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001179
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301180#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001181 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301182#endif
1183
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001184 status = gpiochip_set_desc_names(chip);
1185 if (status)
1186 goto err_remove_from_list;
1187
Mika Westerberg79b804c2016-09-20 15:15:21 +03001188 status = gpiochip_irqchip_init_valid_mask(chip);
1189 if (status)
1190 goto err_remove_from_list;
1191
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001192 status = of_gpiochip_add(chip);
1193 if (status)
1194 goto err_remove_chip;
1195
Mika Westerberg664e3e52014-01-08 12:40:54 +02001196 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001197
Linus Walleij3c702e92015-10-21 15:29:53 +02001198 /*
1199 * By first adding the chardev, and then adding the device,
1200 * we get a device node entry in sysfs under
1201 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1202 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001203 * We can do this only if gpiolib has been initialized.
1204 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001205 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001206 if (gpiolib_initialized) {
1207 status = gpiochip_setup_dev(gdev);
1208 if (status)
1209 goto err_remove_chip;
1210 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001211 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001212
Johan Hovold225fce82015-01-12 17:12:25 +01001213err_remove_chip:
1214 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001215 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001216 of_gpiochip_remove(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001217 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001218err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001219 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001220 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001221 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001222err_free_label:
1223 kfree(gdev->label);
1224err_free_descs:
1225 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001226err_free_gdev:
1227 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001228 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +02001229 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001230 gdev->base, gdev->base + gdev->ngpio - 1,
1231 chip->label ? : "generic");
1232 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001233 return status;
1234}
Linus Walleijb08ea352015-12-03 15:14:13 +01001235EXPORT_SYMBOL_GPL(gpiochip_add_data);
David Brownelld2876d02008-02-04 22:28:20 -08001236
1237/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001238 * gpiochip_get_data() - get per-subdriver data for the chip
1239 */
1240void *gpiochip_get_data(struct gpio_chip *chip)
1241{
1242 return chip->gpiodev->data;
1243}
1244EXPORT_SYMBOL_GPL(gpiochip_get_data);
1245
1246/**
David Brownelld2876d02008-02-04 22:28:20 -08001247 * gpiochip_remove() - unregister a gpio_chip
1248 * @chip: the chip to unregister
1249 *
1250 * A gpio_chip with any GPIOs still requested may not be removed.
1251 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001252void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001253{
Linus Walleijff2b1352015-10-20 11:10:38 +02001254 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001255 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001256 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001257 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001258 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001259
Linus Walleijff2b1352015-10-20 11:10:38 +02001260 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001261 gpiochip_sysfs_unregister(gdev);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001262 /* Numb the device, cancelling all outstanding operations */
1263 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001264 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001265 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001266 gpiochip_remove_pin_ranges(chip);
Benoit Parrotf625d462015-02-02 11:44:44 -06001267 gpiochip_free_hogs(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001268 of_gpiochip_remove(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001269 /*
1270 * We accept no more calls into the driver from this point, so
1271 * NULL the driver data pointer
1272 */
1273 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001274
Johan Hovold6798aca2015-01-12 17:12:28 +01001275 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001276 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001277 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001278 if (test_bit(FLAG_REQUESTED, &desc->flags))
1279 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001280 }
David Brownelld2876d02008-02-04 22:28:20 -08001281 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001282
Johan Hovoldfab28b82015-05-04 17:10:27 +02001283 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001284 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001285 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001286
Linus Walleijff2b1352015-10-20 11:10:38 +02001287 /*
1288 * The gpiochip side puts its use of the device to rest here:
1289 * if there are no userspace clients, the chardev and device will
1290 * be removed, else it will be dangling until the last user is
1291 * gone.
1292 */
Ricardo Ribalda Delgadof4833b82016-06-03 19:10:02 +02001293 cdev_del(&gdev->chrdev);
1294 device_del(&gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001295 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001296}
1297EXPORT_SYMBOL_GPL(gpiochip_remove);
1298
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301299static void devm_gpio_chip_release(struct device *dev, void *res)
1300{
1301 struct gpio_chip *chip = *(struct gpio_chip **)res;
1302
1303 gpiochip_remove(chip);
1304}
1305
1306static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1307
1308{
1309 struct gpio_chip **r = res;
1310
1311 if (!r || !*r) {
1312 WARN_ON(!r || !*r);
1313 return 0;
1314 }
1315
1316 return *r == data;
1317}
1318
1319/**
1320 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1321 * @dev: the device pointer on which irq_chip belongs to.
1322 * @chip: the chip to register, with chip->base initialized
1323 * Context: potentially before irqs will work
1324 *
1325 * Returns a negative errno if the chip can't be registered, such as
1326 * because the chip->base is invalid or already associated with a
1327 * different chip. Otherwise it returns zero as a success code.
1328 *
1329 * The gpio chip automatically be released when the device is unbound.
1330 */
1331int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1332 void *data)
1333{
1334 struct gpio_chip **ptr;
1335 int ret;
1336
1337 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1338 GFP_KERNEL);
1339 if (!ptr)
1340 return -ENOMEM;
1341
1342 ret = gpiochip_add_data(chip, data);
1343 if (ret < 0) {
1344 devres_free(ptr);
1345 return ret;
1346 }
1347
1348 *ptr = chip;
1349 devres_add(dev, ptr);
1350
1351 return 0;
1352}
1353EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1354
1355/**
1356 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1357 * @dev: device for which which resource was allocated
1358 * @chip: the chip to remove
1359 *
1360 * A gpio_chip with any GPIOs still requested may not be removed.
1361 */
1362void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1363{
1364 int ret;
1365
1366 ret = devres_release(dev, devm_gpio_chip_release,
1367 devm_gpio_chip_match, chip);
1368 if (!ret)
1369 WARN_ON(ret);
1370}
1371EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1372
Grant Likely594fa262010-06-08 07:48:16 -06001373/**
1374 * gpiochip_find() - iterator for locating a specific gpio_chip
1375 * @data: data to pass to match function
1376 * @callback: Callback function to check gpio_chip
1377 *
1378 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1379 * determined by a user supplied @match callback. The callback should return
1380 * 0 if the device doesn't match and non-zero if it does. If the callback is
1381 * non-zero, this function will return to the caller and not iterate over any
1382 * more gpio_chips.
1383 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001384struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001385 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001386 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001387{
Linus Walleijff2b1352015-10-20 11:10:38 +02001388 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001389 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001390 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001391
1392 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001393 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001394 if (gdev->chip && match(gdev->chip, data)) {
1395 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001396 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001397 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001398
Grant Likely594fa262010-06-08 07:48:16 -06001399 spin_unlock_irqrestore(&gpio_lock, flags);
1400
1401 return chip;
1402}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001403EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001404
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001405static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1406{
1407 const char *name = data;
1408
1409 return !strcmp(chip->label, name);
1410}
1411
1412static struct gpio_chip *find_chip_by_name(const char *name)
1413{
1414 return gpiochip_find((void *)name, gpiochip_match_name);
1415}
1416
Linus Walleij14250522014-03-25 10:40:18 +01001417#ifdef CONFIG_GPIOLIB_IRQCHIP
1418
1419/*
1420 * The following is irqchip helper code for gpiochips.
1421 */
1422
Mika Westerberg79b804c2016-09-20 15:15:21 +03001423static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1424{
1425 int i;
1426
1427 if (!gpiochip->irq_need_valid_mask)
1428 return 0;
1429
1430 gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
1431 sizeof(long), GFP_KERNEL);
1432 if (!gpiochip->irq_valid_mask)
1433 return -ENOMEM;
1434
1435 /* Assume by default all GPIOs are valid */
1436 for (i = 0; i < gpiochip->ngpio; i++)
1437 set_bit(i, gpiochip->irq_valid_mask);
1438
1439 return 0;
1440}
1441
1442static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1443{
1444 kfree(gpiochip->irq_valid_mask);
1445 gpiochip->irq_valid_mask = NULL;
1446}
1447
1448static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1449 unsigned int offset)
1450{
1451 /* No mask means all valid */
1452 if (likely(!gpiochip->irq_valid_mask))
1453 return true;
1454 return test_bit(offset, gpiochip->irq_valid_mask);
1455}
1456
Linus Walleij14250522014-03-25 10:40:18 +01001457/**
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001458 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
1459 * @gpiochip: the gpiochip to set the irqchip chain to
1460 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001461 * @parent_irq: the irq number corresponding to the parent IRQ for this
1462 * chained irqchip
1463 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001464 * coming out of the gpiochip. If the interrupt is nested rather than
1465 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001466 */
1467void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1468 struct irq_chip *irqchip,
1469 int parent_irq,
1470 irq_flow_handler_t parent_handler)
1471{
Linus Walleij83141a72014-09-26 13:50:12 +02001472 unsigned int offset;
1473
Linus Walleij83141a72014-09-26 13:50:12 +02001474 if (!gpiochip->irqdomain) {
1475 chip_err(gpiochip, "called %s before setting up irqchip\n",
1476 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001477 return;
1478 }
1479
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001480 if (parent_handler) {
1481 if (gpiochip->can_sleep) {
1482 chip_err(gpiochip,
1483 "you cannot have chained interrupts on a "
1484 "chip that may sleep\n");
1485 return;
1486 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001487 /*
1488 * The parent irqchip is already using the chip_data for this
1489 * irqchip, so our callbacks simply use the handler_data.
1490 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001491 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1492 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001493
1494 gpiochip->irq_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001495 }
Linus Walleij83141a72014-09-26 13:50:12 +02001496
1497 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001498 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1499 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1500 continue;
Linus Walleij83141a72014-09-26 13:50:12 +02001501 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
1502 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001503 }
Linus Walleij14250522014-03-25 10:40:18 +01001504}
1505EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1506
1507/**
1508 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1509 * @d: the irqdomain used by this irqchip
1510 * @irq: the global irq number used by this GPIO irqchip irq
1511 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1512 *
1513 * This function will set up the mapping for a certain IRQ line on a
1514 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1515 * stored inside the gpiochip.
1516 */
1517static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1518 irq_hw_number_t hwirq)
1519{
1520 struct gpio_chip *chip = d->host_data;
1521
Linus Walleij14250522014-03-25 10:40:18 +01001522 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001523 /*
1524 * This lock class tells lockdep that GPIO irqs are in a different
1525 * category than their parents, so it won't report false recursion.
1526 */
1527 irq_set_lockdep_class(irq, chip->lock_key);
Linus Walleij7633fb92014-04-09 13:20:38 +02001528 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001529 /* Chips that can sleep need nested thread handlers */
Octavian Purdila295494a2014-09-19 23:22:44 +03001530 if (chip->can_sleep && !chip->irq_not_threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001531 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001532 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001533
Linus Walleij1333b902014-04-23 16:45:12 +02001534 /*
1535 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1536 * is passed as default type.
1537 */
1538 if (chip->irq_default_type != IRQ_TYPE_NONE)
1539 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001540
1541 return 0;
1542}
1543
Linus Walleijc3626fd2014-03-28 20:42:01 +01001544static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1545{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001546 struct gpio_chip *chip = d->host_data;
1547
Linus Walleij1c8732b2014-04-09 13:34:39 +02001548 if (chip->can_sleep)
1549 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001550 irq_set_chip_and_handler(irq, NULL, NULL);
1551 irq_set_chip_data(irq, NULL);
1552}
1553
Linus Walleij14250522014-03-25 10:40:18 +01001554static const struct irq_domain_ops gpiochip_domain_ops = {
1555 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001556 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001557 /* Virtually all GPIO irqchips are twocell:ed */
1558 .xlate = irq_domain_xlate_twocell,
1559};
1560
1561static int gpiochip_irq_reqres(struct irq_data *d)
1562{
1563 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1564
Linus Walleijff2b1352015-10-20 11:10:38 +02001565 if (!try_module_get(chip->gpiodev->owner))
Grygorii Strashko5b76e792015-06-25 20:30:50 +03001566 return -ENODEV;
1567
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001568 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +01001569 chip_err(chip,
1570 "unable to lock HW IRQ %lu for IRQ\n",
1571 d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001572 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001573 return -EINVAL;
1574 }
1575 return 0;
1576}
1577
1578static void gpiochip_irq_relres(struct irq_data *d)
1579{
1580 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1581
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001582 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001583 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001584}
1585
1586static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1587{
1588 return irq_find_mapping(chip->irqdomain, offset);
1589}
1590
1591/**
1592 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1593 * @gpiochip: the gpiochip to remove the irqchip from
1594 *
1595 * This is called only from gpiochip_remove()
1596 */
1597static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1598{
Linus Walleijc3626fd2014-03-28 20:42:01 +01001599 unsigned int offset;
1600
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001601 acpi_gpiochip_free_interrupts(gpiochip);
1602
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001603 if (gpiochip->irq_parent) {
1604 irq_set_chained_handler(gpiochip->irq_parent, NULL);
1605 irq_set_handler_data(gpiochip->irq_parent, NULL);
1606 }
1607
Linus Walleijc3626fd2014-03-28 20:42:01 +01001608 /* Remove all IRQ mappings and delete the domain */
1609 if (gpiochip->irqdomain) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001610 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1611 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1612 continue;
Grygorii Strashkoe3893382014-09-25 19:09:23 +03001613 irq_dispose_mapping(
1614 irq_find_mapping(gpiochip->irqdomain, offset));
Mika Westerberg79b804c2016-09-20 15:15:21 +03001615 }
Linus Walleij14250522014-03-25 10:40:18 +01001616 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001617 }
Linus Walleij14250522014-03-25 10:40:18 +01001618
1619 if (gpiochip->irqchip) {
1620 gpiochip->irqchip->irq_request_resources = NULL;
1621 gpiochip->irqchip->irq_release_resources = NULL;
1622 gpiochip->irqchip = NULL;
1623 }
Mika Westerberg79b804c2016-09-20 15:15:21 +03001624
1625 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01001626}
1627
1628/**
1629 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
1630 * @gpiochip: the gpiochip to add the irqchip to
1631 * @irqchip: the irqchip to add to the gpiochip
1632 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1633 * allocate gpiochip irqs from
1634 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02001635 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1636 * to have the core avoid setting up any default type in the hardware.
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001637 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +01001638 *
1639 * This function closely associates a certain irqchip with a certain
1640 * gpiochip, providing an irq domain to translate the local IRQs to
1641 * global irqs in the gpiolib core, and making sure that the gpiochip
1642 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01001643 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01001644 * from the gpiochip passed as chip data. An irqdomain will be stored
1645 * in the gpiochip that shall be used by the driver to handle IRQ number
1646 * translation. The gpiochip will need to be initialized and registered
1647 * before calling this function.
1648 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01001649 * This function will handle two cell:ed simple IRQs and assumes all
1650 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01001651 * need to be open coded.
1652 */
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001653int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
1654 struct irq_chip *irqchip,
1655 unsigned int first_irq,
1656 irq_flow_handler_t handler,
1657 unsigned int type,
1658 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +01001659{
1660 struct device_node *of_node;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001661 bool irq_base_set = false;
Linus Walleij14250522014-03-25 10:40:18 +01001662 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001663 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001664
1665 if (!gpiochip || !irqchip)
1666 return -EINVAL;
1667
Linus Walleij58383c782015-11-04 09:56:26 +01001668 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01001669 pr_err("missing gpiochip .dev parent pointer\n");
1670 return -EINVAL;
1671 }
Linus Walleij58383c782015-11-04 09:56:26 +01001672 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001673#ifdef CONFIG_OF_GPIO
1674 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07001675 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001676 * FIXME: get rid of this and use gpiochip->parent->of_node
1677 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01001678 */
1679 if (gpiochip->of_node)
1680 of_node = gpiochip->of_node;
1681#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01001682 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001683 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01001684 * used to configure the interrupts, as you may end-up with
1685 * conflicting triggers. Tell the user, and reset to NONE.
1686 */
1687 if (WARN(of_node && type != IRQ_TYPE_NONE,
1688 "%s: Ignoring %d default trigger\n", of_node->full_name, type))
1689 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001690 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1691 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1692 "Ignoring %d default trigger\n", type);
1693 type = IRQ_TYPE_NONE;
1694 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01001695
Linus Walleij14250522014-03-25 10:40:18 +01001696 gpiochip->irqchip = irqchip;
1697 gpiochip->irq_handler = handler;
1698 gpiochip->irq_default_type = type;
1699 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001700 gpiochip->lock_key = lock_key;
Linus Walleij14250522014-03-25 10:40:18 +01001701 gpiochip->irqdomain = irq_domain_add_simple(of_node,
1702 gpiochip->ngpio, first_irq,
1703 &gpiochip_domain_ops, gpiochip);
1704 if (!gpiochip->irqdomain) {
1705 gpiochip->irqchip = NULL;
1706 return -EINVAL;
1707 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02001708
1709 /*
1710 * It is possible for a driver to override this, but only if the
1711 * alternative functions are both implemented.
1712 */
1713 if (!irqchip->irq_request_resources &&
1714 !irqchip->irq_release_resources) {
1715 irqchip->irq_request_resources = gpiochip_irq_reqres;
1716 irqchip->irq_release_resources = gpiochip_irq_relres;
1717 }
Linus Walleij14250522014-03-25 10:40:18 +01001718
1719 /*
1720 * Prepare the mapping since the irqchip shall be orthogonal to
1721 * any gpiochip calls. If the first_irq was zero, this is
1722 * necessary to allocate descriptors for all IRQs.
1723 */
Linus Walleijc3626fd2014-03-28 20:42:01 +01001724 for (offset = 0; offset < gpiochip->ngpio; offset++) {
Mika Westerberg79b804c2016-09-20 15:15:21 +03001725 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1726 continue;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001727 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001728 if (!irq_base_set) {
Linus Walleijc3626fd2014-03-28 20:42:01 +01001729 /*
1730 * Store the base into the gpiochip to be used when
1731 * unmapping the irqs.
1732 */
1733 gpiochip->irq_base = irq_base;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001734 irq_base_set = true;
1735 }
Linus Walleijc3626fd2014-03-28 20:42:01 +01001736 }
Linus Walleij14250522014-03-25 10:40:18 +01001737
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001738 acpi_gpiochip_request_interrupts(gpiochip);
1739
Linus Walleij14250522014-03-25 10:40:18 +01001740 return 0;
1741}
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001742EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add);
Linus Walleij14250522014-03-25 10:40:18 +01001743
1744#else /* CONFIG_GPIOLIB_IRQCHIP */
1745
1746static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03001747static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1748{
1749 return 0;
1750}
1751static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1752{ }
Linus Walleij14250522014-03-25 10:40:18 +01001753
1754#endif /* CONFIG_GPIOLIB_IRQCHIP */
1755
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001756/**
1757 * gpiochip_generic_request() - request the gpio function for a pin
1758 * @chip: the gpiochip owning the GPIO
1759 * @offset: the offset of the GPIO to request for GPIO function
1760 */
1761int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1762{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001763 return pinctrl_request_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001764}
1765EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1766
1767/**
1768 * gpiochip_generic_free() - free the gpio function from a pin
1769 * @chip: the gpiochip to request the gpio function for
1770 * @offset: the offset of the GPIO to free from GPIO function
1771 */
1772void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1773{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001774 pinctrl_free_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001775}
1776EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1777
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301778#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001779
Linus Walleij3f0f8672012-11-20 12:40:15 +01001780/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001781 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1782 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001783 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001784 * @gpio_offset: the start offset in the current gpio_chip number space
1785 * @pin_group: name of the pin group inside the pin controller
1786 */
1787int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1788 struct pinctrl_dev *pctldev,
1789 unsigned int gpio_offset, const char *pin_group)
1790{
1791 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001792 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001793 int ret;
1794
1795 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1796 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001797 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001798 return -ENOMEM;
1799 }
1800
1801 /* Use local offset as range ID */
1802 pin_range->range.id = gpio_offset;
1803 pin_range->range.gc = chip;
1804 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001805 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001806 pin_range->pctldev = pctldev;
1807
1808 ret = pinctrl_get_group_pins(pctldev, pin_group,
1809 &pin_range->range.pins,
1810 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001811 if (ret < 0) {
1812 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001813 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001814 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001815
1816 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1817
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001818 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1819 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001820 pinctrl_dev_get_devname(pctldev), pin_group);
1821
Linus Walleij20ec3e32016-02-11 11:03:06 +01001822 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001823
1824 return 0;
1825}
1826EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1827
1828/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001829 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1830 * @chip: the gpiochip to add the range for
1831 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001832 * @gpio_offset: the start offset in the current gpio_chip number space
1833 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001834 * @npins: the number of pins from the offset of each pin space (GPIO and
1835 * pin controller) to accumulate in this range
1836 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001837int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001838 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001839 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301840{
1841 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001842 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001843 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301844
Linus Walleij3f0f8672012-11-20 12:40:15 +01001845 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301846 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001847 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001848 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301849 }
1850
Linus Walleij3f0f8672012-11-20 12:40:15 +01001851 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001852 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001853 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301854 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001855 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001856 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301857 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001858 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301859 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001860 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001861 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001862 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001863 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001864 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001865 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001866 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1867 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001868 pinctl_name,
1869 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301870
Linus Walleij20ec3e32016-02-11 11:03:06 +01001871 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001872
1873 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301874}
Linus Walleij165adc92012-11-06 14:49:39 +01001875EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301876
Linus Walleij3f0f8672012-11-20 12:40:15 +01001877/**
1878 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
1879 * @chip: the chip to remove all the mappings for
1880 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301881void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
1882{
1883 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01001884 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301885
Linus Walleij20ec3e32016-02-11 11:03:06 +01001886 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301887 list_del(&pin_range->node);
1888 pinctrl_remove_gpio_range(pin_range->pctldev,
1889 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01001890 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301891 }
1892}
Linus Walleij165adc92012-11-06 14:49:39 +01001893EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1894
1895#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301896
David Brownelld2876d02008-02-04 22:28:20 -08001897/* These "optional" allocation calls help prevent drivers from stomping
1898 * on each other, and help provide better diagnostics in debugfs.
1899 * They're called even less than the "set direction" calls.
1900 */
Mika Westerberg77c2d792014-03-10 14:54:50 +02001901static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08001902{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001903 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001904 int status;
David Brownelld2876d02008-02-04 22:28:20 -08001905 unsigned long flags;
1906
1907 spin_lock_irqsave(&gpio_lock, flags);
1908
David Brownelld2876d02008-02-04 22:28:20 -08001909 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07001910 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001911 */
1912
1913 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
1914 desc_set_label(desc, label ? : "?");
1915 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07001916 } else {
David Brownelld2876d02008-02-04 22:28:20 -08001917 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08001918 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07001919 }
1920
1921 if (chip->request) {
1922 /* chip->request may sleep */
1923 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001924 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07001925 spin_lock_irqsave(&gpio_lock, flags);
1926
1927 if (status < 0) {
1928 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07001929 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03001930 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07001931 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07001932 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03001933 if (chip->get_direction) {
1934 /* chip->get_direction may sleep */
1935 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001936 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03001937 spin_lock_irqsave(&gpio_lock, flags);
1938 }
David Brownelld2876d02008-02-04 22:28:20 -08001939done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02001940 spin_unlock_irqrestore(&gpio_lock, flags);
1941 return status;
1942}
1943
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001944/*
1945 * This descriptor validation needs to be inserted verbatim into each
1946 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02001947 * macro to avoid endless duplication. If the desc is NULL it is an
1948 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001949 */
1950#define VALIDATE_DESC(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02001951 if (!desc) \
1952 return 0; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001953 if (IS_ERR(desc)) { \
1954 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
1955 return PTR_ERR(desc); \
1956 } \
Linus Walleij54d77192016-05-30 16:48:39 +02001957 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001958 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001959 return -EINVAL; \
1960 } \
1961 if ( !desc->gdev->chip ) { \
1962 dev_warn(&desc->gdev->dev, \
1963 "%s: backing chip is gone\n", __func__); \
1964 return 0; \
1965 } } while (0)
1966
1967#define VALIDATE_DESC_VOID(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02001968 if (!desc) \
1969 return; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001970 if (IS_ERR(desc)) { \
1971 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
1972 return; \
1973 } \
Linus Walleij54d77192016-05-30 16:48:39 +02001974 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02001975 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001976 return; \
1977 } \
1978 if (!desc->gdev->chip) { \
1979 dev_warn(&desc->gdev->dev, \
1980 "%s: backing chip is gone\n", __func__); \
1981 return; \
1982 } } while (0)
1983
1984
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09001985int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02001986{
1987 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001988 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001989
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001990 VALIDATE_DESC(desc);
1991 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001992
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001993 if (try_module_get(gdev->owner)) {
Mika Westerberg77c2d792014-03-10 14:54:50 +02001994 status = __gpiod_request(desc, label);
1995 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001996 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01001997 else
1998 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001999 }
2000
David Brownelld2876d02008-02-04 22:28:20 -08002001 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002002 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002003
David Brownelld2876d02008-02-04 22:28:20 -08002004 return status;
2005}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002006
Mika Westerberg77c2d792014-03-10 14:54:50 +02002007static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002008{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002009 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002010 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002011 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002012
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002013 might_sleep();
2014
Alexandre Courbot372e7222013-02-03 01:29:29 +09002015 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002016
David Brownelld2876d02008-02-04 22:28:20 -08002017 spin_lock_irqsave(&gpio_lock, flags);
2018
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002019 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002020 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2021 if (chip->free) {
2022 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002023 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002024 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002025 spin_lock_irqsave(&gpio_lock, flags);
2026 }
David Brownelld2876d02008-02-04 22:28:20 -08002027 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002028 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002029 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302030 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302031 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002032 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002033 ret = true;
2034 }
David Brownelld2876d02008-02-04 22:28:20 -08002035
2036 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002037 return ret;
2038}
2039
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002040void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002041{
Linus Walleij33a68e82016-02-11 10:28:44 +01002042 if (desc && desc->gdev && __gpiod_free(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002043 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002044 put_device(&desc->gdev->dev);
2045 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002046 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002047 }
David Brownelld2876d02008-02-04 22:28:20 -08002048}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002049
David Brownelld2876d02008-02-04 22:28:20 -08002050/**
2051 * gpiochip_is_requested - return string iff signal was requested
2052 * @chip: controller managing the signal
2053 * @offset: of signal within controller's 0..(ngpio - 1) range
2054 *
2055 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002056 * The string returned is the label passed to gpio_request(); if none has been
2057 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002058 *
2059 * This function is for use by GPIO controller drivers. The label can
2060 * help with diagnostics, and knowing that the signal is used as a GPIO
2061 * can help avoid accidentally multiplexing it to another controller.
2062 */
2063const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2064{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002065 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002066
Dirk Behme48b59532015-08-18 18:02:32 +02002067 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002068 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002069
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002070 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002071
Alexandre Courbot372e7222013-02-03 01:29:29 +09002072 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002073 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002074 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002075}
2076EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2077
Mika Westerberg77c2d792014-03-10 14:54:50 +02002078/**
2079 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
2080 * @desc: GPIO descriptor to request
2081 * @label: label for the GPIO
2082 *
2083 * Function allows GPIO chip drivers to request and use their own GPIO
2084 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2085 * function will not increase reference count of the GPIO chip module. This
2086 * allows the GPIO chip module to be unloaded as needed (we assume that the
2087 * GPIO chip driver handles freeing the GPIOs it has requested).
2088 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002089struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2090 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002091{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002092 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2093 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002094
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002095 if (IS_ERR(desc)) {
2096 chip_err(chip, "failed to get GPIO descriptor\n");
2097 return desc;
2098 }
2099
2100 err = __gpiod_request(desc, label);
2101 if (err < 0)
2102 return ERR_PTR(err);
2103
2104 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002105}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002106EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002107
2108/**
2109 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2110 * @desc: GPIO descriptor to free
2111 *
2112 * Function frees the given GPIO requested previously with
2113 * gpiochip_request_own_desc().
2114 */
2115void gpiochip_free_own_desc(struct gpio_desc *desc)
2116{
2117 if (desc)
2118 __gpiod_free(desc);
2119}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002120EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002121
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002122/*
2123 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002124 * some cases this is done in early boot, before IRQs are enabled.
2125 *
2126 * As a rule these aren't called more than once (except for drivers
2127 * using the open-drain emulation idiom) so these are natural places
2128 * to accumulate extra debugging checks. Note that we can't (yet)
2129 * rely on gpio_request() having been called beforehand.
2130 */
2131
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002132/**
2133 * gpiod_direction_input - set the GPIO direction to input
2134 * @desc: GPIO to set to input
2135 *
2136 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2137 * be called safely on it.
2138 *
2139 * Return 0 in case of success, else an error code.
2140 */
2141int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002142{
David Brownelld2876d02008-02-04 22:28:20 -08002143 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002144 int status = -EINVAL;
2145
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002146 VALIDATE_DESC(desc);
2147 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002148
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002149 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002150 gpiod_warn(desc,
2151 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02002152 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002153 return -EIO;
2154 }
2155
Alexandre Courbotd82da792014-07-22 16:17:43 +09002156 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08002157 if (status == 0)
2158 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002159
Alexandre Courbot372e7222013-02-03 01:29:29 +09002160 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002161
David Brownelld2876d02008-02-04 22:28:20 -08002162 return status;
2163}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002164EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002165
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002166static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002167{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002168 struct gpio_chip *gc = desc->gdev->chip;
2169 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08002170
Linus Walleijd468bf92013-09-24 11:54:38 +02002171 /* GPIOs used for IRQs shall not be set as output */
2172 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2173 gpiod_err(desc,
2174 "%s: tried to set a GPIO tied to an IRQ as output\n",
2175 __func__);
2176 return -EIO;
2177 }
2178
Linus Walleijc663e5f2016-03-22 10:51:16 +01002179 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2180 /* First see if we can enable open drain in hardware */
2181 if (gc->set_single_ended) {
2182 ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc),
2183 LINE_MODE_OPEN_DRAIN);
2184 if (!ret)
2185 goto set_output_value;
2186 }
2187 /* Emulate open drain by not actively driving the line high */
2188 if (value)
2189 return gpiod_direction_input(desc);
2190 }
2191 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2192 if (gc->set_single_ended) {
2193 ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc),
2194 LINE_MODE_OPEN_SOURCE);
2195 if (!ret)
2196 goto set_output_value;
2197 }
2198 /* Emulate open source by not actively driving the line low */
2199 if (!value)
2200 return gpiod_direction_input(desc);
2201 } else {
2202 /* Make sure to disable open drain/source hardware, if any */
2203 if (gc->set_single_ended)
2204 gc->set_single_ended(gc,
2205 gpio_chip_hwgpio(desc),
2206 LINE_MODE_PUSH_PULL);
2207 }
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302208
Linus Walleijc663e5f2016-03-22 10:51:16 +01002209set_output_value:
2210 if (!gc->set || !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002211 gpiod_warn(desc,
2212 "%s: missing set() or direction_output() operations\n",
2213 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002214 return -EIO;
2215 }
2216
Linus Walleijc663e5f2016-03-22 10:51:16 +01002217 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), value);
2218 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002219 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002220 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002221 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2222 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002223}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002224
2225/**
2226 * gpiod_direction_output_raw - set the GPIO direction to output
2227 * @desc: GPIO to set to output
2228 * @value: initial output value of the GPIO
2229 *
2230 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2231 * be called safely on it. The initial value of the output must be specified
2232 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2233 *
2234 * Return 0 in case of success, else an error code.
2235 */
2236int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2237{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002238 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002239 return _gpiod_direction_output_raw(desc, value);
2240}
2241EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2242
2243/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302244 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002245 * @desc: GPIO to set to output
2246 * @value: initial output value of the GPIO
2247 *
2248 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2249 * be called safely on it. The initial value of the output must be specified
2250 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2251 * account.
2252 *
2253 * Return 0 in case of success, else an error code.
2254 */
2255int gpiod_direction_output(struct gpio_desc *desc, int value)
2256{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002257 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002258 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2259 value = !value;
2260 return _gpiod_direction_output_raw(desc, value);
2261}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002262EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002263
Felipe Balbic4b5be92010-05-26 14:42:23 -07002264/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002265 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07002266 * @gpio: the gpio to set debounce time
2267 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002268 *
2269 * returns -ENOTSUPP if the controller does not support setting
2270 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002271 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002272int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002273{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002274 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002275
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002276 VALIDATE_DESC(desc);
2277 chip = desc->gdev->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002278 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01002279 gpiod_dbg(desc,
2280 "%s: missing set() or set_debounce() operations\n",
2281 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002282 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002283 }
2284
Alexandre Courbotd82da792014-07-22 16:17:43 +09002285 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002286}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002287EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002288
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002289/**
2290 * gpiod_is_active_low - test whether a GPIO is active-low or not
2291 * @desc: the gpio descriptor to test
2292 *
2293 * Returns 1 if the GPIO is active-low, 0 otherwise.
2294 */
2295int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002296{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002297 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002298 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002299}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002300EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002301
2302/* I/O calls are only valid after configuration completed; the relevant
2303 * "is this a valid GPIO" error checks should already have been done.
2304 *
2305 * "Get" operations are often inlinable as reading a pin value register,
2306 * and masking the relevant bit in that register.
2307 *
2308 * When "set" operations are inlinable, they involve writing that mask to
2309 * one register to set a low value, or a different register to set it high.
2310 * Otherwise locking is needed, so there may be little value to inlining.
2311 *
2312 *------------------------------------------------------------------------
2313 *
2314 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2315 * have requested the GPIO. That can include implicit requesting by
2316 * a direction setting call. Marking a gpio as requested locks its chip
2317 * in memory, guaranteeing that these table lookups need no more locking
2318 * and that gpiochip_remove() will fail.
2319 *
2320 * REVISIT when debugging, consider adding some instrumentation to ensure
2321 * that the GPIO was actually requested.
2322 */
2323
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002324static int _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002325{
2326 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002327 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002328 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002329
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002330 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002331 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002332 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002333 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002334 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002335 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002336}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002337
David Brownelld2876d02008-02-04 22:28:20 -08002338/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002339 * gpiod_get_raw_value() - return a gpio's raw value
2340 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002341 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002342 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002343 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002344 *
2345 * This function should be called from contexts where we cannot sleep, and will
2346 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002347 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002348int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002349{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002350 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002351 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002352 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002353 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002354}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002355EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002356
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002357/**
2358 * gpiod_get_value() - return a gpio's value
2359 * @desc: gpio whose value will be returned
2360 *
2361 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002362 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002363 *
2364 * This function should be called from contexts where we cannot sleep, and will
2365 * complain if the GPIO chip functions potentially sleep.
2366 */
2367int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002368{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002369 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002370
2371 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002372 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002373 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002374
2375 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002376 if (value < 0)
2377 return value;
2378
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002379 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2380 value = !value;
2381
2382 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002383}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002384EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002385
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302386/*
2387 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002388 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002389 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302390 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002391static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302392{
2393 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002394 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002395 int offset = gpio_chip_hwgpio(desc);
2396
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302397 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002398 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302399 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002400 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302401 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002402 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302403 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002404 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302405 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002406 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302407 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002408 gpiod_err(desc,
2409 "%s: Error in set_value for open drain err %d\n",
2410 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302411}
2412
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302413/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002414 * _gpio_set_open_source_value() - Set the open source gpio's value.
2415 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002416 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302417 */
Alexandre Courbot23600962014-03-11 15:52:09 +09002418static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302419{
2420 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002421 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002422 int offset = gpio_chip_hwgpio(desc);
2423
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302424 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002425 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302426 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002427 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302428 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002429 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302430 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002431 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302432 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002433 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302434 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002435 gpiod_err(desc,
2436 "%s: Error in set_value for open source err %d\n",
2437 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302438}
2439
Alexandre Courbot23600962014-03-11 15:52:09 +09002440static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002441{
2442 struct gpio_chip *chip;
2443
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002444 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002445 trace_gpio_value(desc_to_gpio(desc), 0, value);
2446 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2447 _gpio_set_open_drain_value(desc, value);
2448 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2449 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302450 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09002451 chip->set(chip, gpio_chip_hwgpio(desc), value);
2452}
2453
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002454/*
2455 * set multiple outputs on the same chip;
2456 * use the chip's set_multiple function if available;
2457 * otherwise set the outputs sequentially;
2458 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2459 * defines which outputs are to be changed
2460 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2461 * defines the values the outputs specified by mask are to be set to
2462 */
2463static void gpio_chip_set_multiple(struct gpio_chip *chip,
2464 unsigned long *mask, unsigned long *bits)
2465{
2466 if (chip->set_multiple) {
2467 chip->set_multiple(chip, mask, bits);
2468 } else {
2469 int i;
2470 for (i = 0; i < chip->ngpio; i++) {
2471 if (mask[BIT_WORD(i)] == 0) {
2472 /* no more set bits in this mask word;
2473 * skip ahead to the next word */
2474 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
2475 continue;
2476 }
2477 /* set outputs if the corresponding mask bit is set */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002478 if (__test_and_clear_bit(i, mask))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002479 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002480 }
2481 }
2482}
2483
Linus Walleij44c72882016-04-24 11:36:59 +02002484void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2485 unsigned int array_size,
2486 struct gpio_desc **desc_array,
2487 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002488{
2489 int i = 0;
2490
2491 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002492 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002493 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2494 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2495 int count = 0;
2496
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002497 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002498 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002499
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002500 memset(mask, 0, sizeof(mask));
2501 do {
2502 struct gpio_desc *desc = desc_array[i];
2503 int hwgpio = gpio_chip_hwgpio(desc);
2504 int value = value_array[i];
2505
2506 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2507 value = !value;
2508 trace_gpio_value(desc_to_gpio(desc), 0, value);
2509 /*
2510 * collect all normal outputs belonging to the same chip
2511 * open drain and open source outputs are set individually
2512 */
2513 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002514 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002515 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2516 _gpio_set_open_source_value(desc, value);
2517 } else {
2518 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002519 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002520 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002521 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002522 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002523 count++;
2524 }
2525 i++;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002526 } while ((i < array_size) &&
2527 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002528 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002529 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002530 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002531 }
2532}
2533
David Brownelld2876d02008-02-04 22:28:20 -08002534/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002535 * gpiod_set_raw_value() - assign a gpio's raw value
2536 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002537 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002538 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002539 * Set the raw value of the GPIO, i.e. the value of its physical line without
2540 * regard for its ACTIVE_LOW status.
2541 *
2542 * This function should be called from contexts where we cannot sleep, and will
2543 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002544 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002545void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002546{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002547 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002548 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002549 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002550 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002551}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002552EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002553
2554/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002555 * gpiod_set_value() - assign a gpio's value
2556 * @desc: gpio whose value will be assigned
2557 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002558 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002559 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2560 * account
2561 *
2562 * This function should be called from contexts where we cannot sleep, and will
2563 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002564 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002565void gpiod_set_value(struct gpio_desc *desc, int value)
2566{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002567 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002568 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002569 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002570 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2571 value = !value;
2572 _gpiod_set_raw_value(desc, value);
2573}
2574EXPORT_SYMBOL_GPL(gpiod_set_value);
2575
2576/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002577 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002578 * @array_size: number of elements in the descriptor / value arrays
2579 * @desc_array: array of GPIO descriptors whose values will be assigned
2580 * @value_array: array of values to assign
2581 *
2582 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2583 * without regard for their ACTIVE_LOW status.
2584 *
2585 * This function should be called from contexts where we cannot sleep, and will
2586 * complain if the GPIO chip functions potentially sleep.
2587 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002588void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002589 struct gpio_desc **desc_array, int *value_array)
2590{
2591 if (!desc_array)
2592 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002593 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2594 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002595}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002596EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002597
2598/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002599 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002600 * @array_size: number of elements in the descriptor / value arrays
2601 * @desc_array: array of GPIO descriptors whose values will be assigned
2602 * @value_array: array of values to assign
2603 *
2604 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2605 * into account.
2606 *
2607 * This function should be called from contexts where we cannot sleep, and will
2608 * complain if the GPIO chip functions potentially sleep.
2609 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002610void gpiod_set_array_value(unsigned int array_size,
2611 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002612{
2613 if (!desc_array)
2614 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002615 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2616 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002617}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002618EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002619
2620/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002621 * gpiod_cansleep() - report whether gpio value access may sleep
2622 * @desc: gpio to check
2623 *
2624 */
2625int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002626{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002627 VALIDATE_DESC(desc);
2628 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002629}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002630EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002631
David Brownell0f6d5042008-10-15 22:03:14 -07002632/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002633 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2634 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07002635 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002636 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2637 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07002638 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002639int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07002640{
Linus Walleij4c37ce82016-05-02 13:13:10 +02002641 struct gpio_chip *chip;
2642 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07002643
Linus Walleij79bb71b2016-06-15 22:57:38 +02002644 /*
2645 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2646 * requires this function to not return zero on an invalid descriptor
2647 * but rather a negative error number.
2648 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02002649 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02002650 return -EINVAL;
2651
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002652 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002653 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02002654 if (chip->to_irq) {
2655 int retirq = chip->to_irq(chip, offset);
2656
2657 /* Zero means NO_IRQ */
2658 if (!retirq)
2659 return -ENXIO;
2660
2661 return retirq;
2662 }
2663 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002664}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002665EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002666
Linus Walleijd468bf92013-09-24 11:54:38 +02002667/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002668 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002669 * @chip: the chip the GPIO to lock belongs to
2670 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002671 *
2672 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08002673 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08002674 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002675int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002676{
Linus Walleij9c102802016-05-25 10:56:03 +02002677 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02002678
Linus Walleij9c102802016-05-25 10:56:03 +02002679 desc = gpiochip_get_desc(chip, offset);
2680 if (IS_ERR(desc))
2681 return PTR_ERR(desc);
2682
2683 /* Flush direction if something changed behind our back */
2684 if (chip->get_direction) {
2685 int dir = chip->get_direction(chip, offset);
2686
2687 if (dir)
2688 clear_bit(FLAG_IS_OUT, &desc->flags);
2689 else
2690 set_bit(FLAG_IS_OUT, &desc->flags);
2691 }
2692
2693 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002694 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02002695 "%s: tried to flag a GPIO set as output for IRQ\n",
2696 __func__);
2697 return -EIO;
2698 }
2699
Linus Walleij9c102802016-05-25 10:56:03 +02002700 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002701 return 0;
2702}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002703EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002704
Linus Walleijd468bf92013-09-24 11:54:38 +02002705/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002706 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002707 * @chip: the chip the GPIO to lock belongs to
2708 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002709 *
2710 * This is used directly by GPIO drivers that want to indicate
2711 * that a certain GPIO is no longer used exclusively for IRQ.
2712 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002713void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02002714{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002715 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02002716 return;
2717
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002718 clear_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002719}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002720EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002721
Linus Walleij6cee3822016-02-11 20:16:45 +01002722bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2723{
2724 if (offset >= chip->ngpio)
2725 return false;
2726
2727 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2728}
2729EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2730
Linus Walleij143b65d2016-02-16 15:41:42 +01002731bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
2732{
2733 if (offset >= chip->ngpio)
2734 return false;
2735
2736 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
2737}
2738EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
2739
2740bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
2741{
2742 if (offset >= chip->ngpio)
2743 return false;
2744
2745 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
2746}
2747EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
2748
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002749/**
2750 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
2751 * @desc: gpio whose value will be returned
2752 *
2753 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002754 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002755 *
2756 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002757 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002758int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002759{
David Brownelld2876d02008-02-04 22:28:20 -08002760 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002761 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002762 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002763}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002764EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002765
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002766/**
2767 * gpiod_get_value_cansleep() - return a gpio's value
2768 * @desc: gpio whose value will be returned
2769 *
2770 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002771 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002772 *
2773 * This function is to be called from contexts that can sleep.
2774 */
2775int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002776{
David Brownelld2876d02008-02-04 22:28:20 -08002777 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002778
2779 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002780 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002781 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002782 if (value < 0)
2783 return value;
2784
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002785 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2786 value = !value;
2787
David Brownelld2876d02008-02-04 22:28:20 -08002788 return value;
2789}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002790EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002791
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002792/**
2793 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
2794 * @desc: gpio whose value will be assigned
2795 * @value: value to assign
2796 *
2797 * Set the raw value of the GPIO, i.e. the value of its physical line without
2798 * regard for its ACTIVE_LOW status.
2799 *
2800 * This function is to be called from contexts that can sleep.
2801 */
2802void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002803{
David Brownelld2876d02008-02-04 22:28:20 -08002804 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002805 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002806 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002807}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002808EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002809
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002810/**
2811 * gpiod_set_value_cansleep() - assign a gpio's value
2812 * @desc: gpio whose value will be assigned
2813 * @value: value to assign
2814 *
2815 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2816 * account
2817 *
2818 * This function is to be called from contexts that can sleep.
2819 */
2820void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002821{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002822 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002823 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002824 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2825 value = !value;
2826 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002827}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002828EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002829
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002830/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002831 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002832 * @array_size: number of elements in the descriptor / value arrays
2833 * @desc_array: array of GPIO descriptors whose values will be assigned
2834 * @value_array: array of values to assign
2835 *
2836 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2837 * without regard for their ACTIVE_LOW status.
2838 *
2839 * This function is to be called from contexts that can sleep.
2840 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002841void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
2842 struct gpio_desc **desc_array,
2843 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002844{
2845 might_sleep_if(extra_checks);
2846 if (!desc_array)
2847 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002848 gpiod_set_array_value_complex(true, true, array_size, desc_array,
2849 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002850}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002851EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002852
2853/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002854 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002855 * @array_size: number of elements in the descriptor / value arrays
2856 * @desc_array: array of GPIO descriptors whose values will be assigned
2857 * @value_array: array of values to assign
2858 *
2859 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2860 * into account.
2861 *
2862 * This function is to be called from contexts that can sleep.
2863 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002864void gpiod_set_array_value_cansleep(unsigned int array_size,
2865 struct gpio_desc **desc_array,
2866 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002867{
2868 might_sleep_if(extra_checks);
2869 if (!desc_array)
2870 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002871 gpiod_set_array_value_complex(false, true, array_size, desc_array,
2872 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002873}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002874EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002875
2876/**
Alexandre Courbotad824782013-12-03 12:20:11 +09002877 * gpiod_add_lookup_table() - register GPIO device consumers
2878 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002879 */
Alexandre Courbotad824782013-12-03 12:20:11 +09002880void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002881{
2882 mutex_lock(&gpio_lookup_lock);
2883
Alexandre Courbotad824782013-12-03 12:20:11 +09002884 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002885
2886 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08002887}
2888
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05302889/**
2890 * gpiod_remove_lookup_table() - unregister GPIO device consumers
2891 * @table: table of consumers to unregister
2892 */
2893void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
2894{
2895 mutex_lock(&gpio_lookup_lock);
2896
2897 list_del(&table->list);
2898
2899 mutex_unlock(&gpio_lookup_lock);
2900}
2901
Alexandre Courbotad824782013-12-03 12:20:11 +09002902static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
2903{
2904 const char *dev_id = dev ? dev_name(dev) : NULL;
2905 struct gpiod_lookup_table *table;
2906
2907 mutex_lock(&gpio_lookup_lock);
2908
2909 list_for_each_entry(table, &gpio_lookup_list, list) {
2910 if (table->dev_id && dev_id) {
2911 /*
2912 * Valid strings on both ends, must be identical to have
2913 * a match
2914 */
2915 if (!strcmp(table->dev_id, dev_id))
2916 goto found;
2917 } else {
2918 /*
2919 * One of the pointers is NULL, so both must be to have
2920 * a match
2921 */
2922 if (dev_id == table->dev_id)
2923 goto found;
2924 }
2925 }
2926 table = NULL;
2927
2928found:
2929 mutex_unlock(&gpio_lookup_lock);
2930 return table;
2931}
2932
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002933static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09002934 unsigned int idx,
2935 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002936{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002937 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09002938 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002939 struct gpiod_lookup *p;
2940
Alexandre Courbotad824782013-12-03 12:20:11 +09002941 table = gpiod_find_lookup_table(dev);
2942 if (!table)
2943 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002944
Alexandre Courbotad824782013-12-03 12:20:11 +09002945 for (p = &table->table[0]; p->chip_label; p++) {
2946 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002947
Alexandre Courbotad824782013-12-03 12:20:11 +09002948 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002949 if (p->idx != idx)
2950 continue;
2951
Alexandre Courbotad824782013-12-03 12:20:11 +09002952 /* If the lookup entry has a con_id, require exact match */
2953 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
2954 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002955
Alexandre Courbotad824782013-12-03 12:20:11 +09002956 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002957
Alexandre Courbotad824782013-12-03 12:20:11 +09002958 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002959 dev_err(dev, "cannot find GPIO chip %s\n",
2960 p->chip_label);
2961 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002962 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002963
Alexandre Courbotad824782013-12-03 12:20:11 +09002964 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002965 dev_err(dev,
2966 "requested GPIO %d is out of range [0..%d] for chip %s\n",
2967 idx, chip->ngpio, chip->label);
2968 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09002969 }
2970
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09002971 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09002972 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002973
2974 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09002975 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002976
2977 return desc;
2978}
2979
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01002980static int dt_gpio_count(struct device *dev, const char *con_id)
2981{
2982 int ret;
2983 char propname[32];
2984 unsigned int i;
2985
2986 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
2987 if (con_id)
2988 snprintf(propname, sizeof(propname), "%s-%s",
2989 con_id, gpio_suffixes[i]);
2990 else
2991 snprintf(propname, sizeof(propname), "%s",
2992 gpio_suffixes[i]);
2993
2994 ret = of_gpio_named_count(dev->of_node, propname);
2995 if (ret >= 0)
2996 break;
2997 }
2998 return ret;
2999}
3000
3001static int platform_gpio_count(struct device *dev, const char *con_id)
3002{
3003 struct gpiod_lookup_table *table;
3004 struct gpiod_lookup *p;
3005 unsigned int count = 0;
3006
3007 table = gpiod_find_lookup_table(dev);
3008 if (!table)
3009 return -ENOENT;
3010
3011 for (p = &table->table[0]; p->chip_label; p++) {
3012 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3013 (!con_id && !p->con_id))
3014 count++;
3015 }
3016 if (!count)
3017 return -ENOENT;
3018
3019 return count;
3020}
3021
3022/**
3023 * gpiod_count - return the number of GPIOs associated with a device / function
3024 * or -ENOENT if no GPIO has been assigned to the requested function
3025 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3026 * @con_id: function within the GPIO consumer
3027 */
3028int gpiod_count(struct device *dev, const char *con_id)
3029{
3030 int count = -ENOENT;
3031
3032 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3033 count = dt_gpio_count(dev, con_id);
3034 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3035 count = acpi_gpio_count(dev, con_id);
3036
3037 if (count < 0)
3038 count = platform_gpio_count(dev, con_id);
3039
3040 return count;
3041}
3042EXPORT_SYMBOL_GPL(gpiod_count);
3043
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003044/**
Thierry Reding08791622014-04-25 16:54:22 +02003045 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003046 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003047 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003048 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003049 *
3050 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003051 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003052 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003053 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003054struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003055 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003056{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003057 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003058}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003059EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003060
3061/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003062 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3063 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3064 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003065 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003066 *
3067 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3068 * the requested function it will return NULL. This is convenient for drivers
3069 * that need to handle optional GPIOs.
3070 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003071struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003072 const char *con_id,
3073 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003074{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003075 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003076}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003077EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003078
Benoit Parrotf625d462015-02-02 11:44:44 -06003079
3080/**
3081 * gpiod_configure_flags - helper function to configure a given GPIO
3082 * @desc: gpio whose value will be assigned
3083 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02003084 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3085 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003086 * @dflags: gpiod_flags - optional GPIO initialization flags
3087 *
3088 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3089 * requested function and/or index, or another IS_ERR() code if an error
3090 * occurred while trying to acquire the GPIO.
3091 */
3092static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003093 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003094{
3095 int status;
3096
Johan Hovold85b03b32016-07-03 18:32:05 +02003097 if (lflags & GPIO_ACTIVE_LOW)
3098 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3099 if (lflags & GPIO_OPEN_DRAIN)
3100 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3101 if (lflags & GPIO_OPEN_SOURCE)
3102 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3103
Benoit Parrotf625d462015-02-02 11:44:44 -06003104 /* No particular flag request, return here... */
3105 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3106 pr_debug("no flags found for %s\n", con_id);
3107 return 0;
3108 }
3109
3110 /* Process flags */
3111 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3112 status = gpiod_direction_output(desc,
3113 dflags & GPIOD_FLAGS_BIT_DIR_VAL);
3114 else
3115 status = gpiod_direction_input(desc);
3116
3117 return status;
3118}
3119
Thierry Reding29a1f2332014-04-25 17:10:06 +02003120/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003121 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003122 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003123 * @con_id: function within the GPIO consumer
3124 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003125 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003126 *
3127 * This variant of gpiod_get() allows to access GPIOs other than the first
3128 * defined one for functions that define several GPIOs.
3129 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003130 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3131 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003132 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003133 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003134struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003135 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003136 unsigned int idx,
3137 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003138{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003139 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003140 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003141 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003142
3143 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3144
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003145 if (dev) {
3146 /* Using device tree? */
3147 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3148 dev_dbg(dev, "using device tree for GPIO lookup\n");
3149 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3150 } else if (ACPI_COMPANION(dev)) {
3151 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Dmitry Torokhov25487532016-03-24 10:50:25 -07003152 desc = acpi_find_gpio(dev, con_id, idx, flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003153 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003154 }
3155
3156 /*
3157 * Either we are not using DT or ACPI, or their lookup did not return
3158 * a result. In that case, use platform lookup as a fallback.
3159 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003160 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003161 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003162 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003163 }
3164
3165 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02003166 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003167 return desc;
3168 }
3169
3170 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003171 if (status < 0)
3172 return ERR_PTR(status);
3173
Johan Hovold85b03b32016-07-03 18:32:05 +02003174 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003175 if (status < 0) {
3176 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3177 gpiod_put(desc);
3178 return ERR_PTR(status);
3179 }
3180
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003181 return desc;
3182}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003183EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003184
3185/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003186 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3187 * @fwnode: handle of the firmware node
3188 * @propname: name of the firmware property representing the GPIO
3189 *
3190 * This function can be used for drivers that get their configuration
3191 * from firmware.
3192 *
3193 * Function properly finds the corresponding GPIO using whatever is the
3194 * underlying firmware interface and then makes sure that the GPIO
3195 * descriptor is requested before it is returned to the caller.
3196 *
3197 * In case of error an ERR_PTR() is returned.
3198 */
3199struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
3200 const char *propname)
3201{
3202 struct gpio_desc *desc = ERR_PTR(-ENODEV);
3203 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003204 bool single_ended = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02003205 int ret;
3206
3207 if (!fwnode)
3208 return ERR_PTR(-EINVAL);
3209
3210 if (is_of_node(fwnode)) {
3211 enum of_gpio_flags flags;
3212
Alexander Sverdlinc181fb32015-06-22 22:38:53 +02003213 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
Mika Westerberg40b73182014-10-21 13:33:59 +02003214 &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003215 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02003216 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003217 single_ended = flags & OF_GPIO_SINGLE_ENDED;
3218 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003219 } else if (is_acpi_node(fwnode)) {
3220 struct acpi_gpio_info info;
3221
Rafael J. Wysocki504a3372015-08-27 04:42:33 +02003222 desc = acpi_node_get_gpiod(fwnode, propname, 0, &info);
Mika Westerberg40b73182014-10-21 13:33:59 +02003223 if (!IS_ERR(desc))
Christophe RICARD52044722015-12-23 23:25:34 +01003224 active_low = info.polarity == GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02003225 }
3226
3227 if (IS_ERR(desc))
3228 return desc;
3229
Johan Hovold85b03b32016-07-03 18:32:05 +02003230 ret = gpiod_request(desc, NULL);
3231 if (ret)
3232 return ERR_PTR(ret);
3233
Mika Westerberg40b73182014-10-21 13:33:59 +02003234 if (active_low)
3235 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3236
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003237 if (single_ended) {
3238 if (active_low)
3239 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3240 else
3241 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
3242 }
3243
Mika Westerberg40b73182014-10-21 13:33:59 +02003244 return desc;
3245}
3246EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3247
3248/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003249 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3250 * function
3251 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3252 * @con_id: function within the GPIO consumer
3253 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003254 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003255 *
3256 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3257 * specified index was assigned to the requested function it will return NULL.
3258 * This is convenient for drivers that need to handle optional GPIOs.
3259 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003260struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003261 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003262 unsigned int index,
3263 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003264{
3265 struct gpio_desc *desc;
3266
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003267 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003268 if (IS_ERR(desc)) {
3269 if (PTR_ERR(desc) == -ENOENT)
3270 return NULL;
3271 }
3272
3273 return desc;
3274}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003275EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003276
3277/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003278 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3279 * @desc: gpio whose value will be assigned
3280 * @name: gpio line name
3281 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3282 * of_get_gpio_hog()
3283 * @dflags: gpiod_flags - optional GPIO initialization flags
3284 */
3285int gpiod_hog(struct gpio_desc *desc, const char *name,
3286 unsigned long lflags, enum gpiod_flags dflags)
3287{
3288 struct gpio_chip *chip;
3289 struct gpio_desc *local_desc;
3290 int hwnum;
3291 int status;
3292
3293 chip = gpiod_to_chip(desc);
3294 hwnum = gpio_chip_hwgpio(desc);
3295
3296 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3297 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303298 status = PTR_ERR(local_desc);
3299 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3300 name, chip->label, hwnum, status);
3301 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06003302 }
3303
Johan Hovold85b03b32016-07-03 18:32:05 +02003304 status = gpiod_configure_flags(desc, name, lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06003305 if (status < 0) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303306 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3307 name, chip->label, hwnum, status);
Benoit Parrotf625d462015-02-02 11:44:44 -06003308 gpiochip_free_own_desc(desc);
3309 return status;
3310 }
3311
3312 /* Mark GPIO as hogged so it can be identified and removed later */
3313 set_bit(FLAG_IS_HOGGED, &desc->flags);
3314
3315 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3316 desc_to_gpio(desc), name,
3317 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3318 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3319 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3320
3321 return 0;
3322}
3323
3324/**
3325 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3326 * @chip: gpio chip to act on
3327 *
3328 * This is only used by of_gpiochip_remove to free hogged gpios
3329 */
3330static void gpiochip_free_hogs(struct gpio_chip *chip)
3331{
3332 int id;
3333
3334 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01003335 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3336 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06003337 }
3338}
3339
3340/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003341 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3342 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3343 * @con_id: function within the GPIO consumer
3344 * @flags: optional GPIO initialization flags
3345 *
3346 * This function acquires all the GPIOs defined under a given function.
3347 *
3348 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3349 * no GPIO has been assigned to the requested function, or another IS_ERR()
3350 * code if an error occurred while trying to acquire the GPIOs.
3351 */
3352struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3353 const char *con_id,
3354 enum gpiod_flags flags)
3355{
3356 struct gpio_desc *desc;
3357 struct gpio_descs *descs;
3358 int count;
3359
3360 count = gpiod_count(dev, con_id);
3361 if (count < 0)
3362 return ERR_PTR(count);
3363
3364 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3365 GFP_KERNEL);
3366 if (!descs)
3367 return ERR_PTR(-ENOMEM);
3368
3369 for (descs->ndescs = 0; descs->ndescs < count; ) {
3370 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3371 if (IS_ERR(desc)) {
3372 gpiod_put_array(descs);
3373 return ERR_CAST(desc);
3374 }
3375 descs->desc[descs->ndescs] = desc;
3376 descs->ndescs++;
3377 }
3378 return descs;
3379}
3380EXPORT_SYMBOL_GPL(gpiod_get_array);
3381
3382/**
3383 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3384 * function
3385 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3386 * @con_id: function within the GPIO consumer
3387 * @flags: optional GPIO initialization flags
3388 *
3389 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3390 * assigned to the requested function it will return NULL.
3391 */
3392struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3393 const char *con_id,
3394 enum gpiod_flags flags)
3395{
3396 struct gpio_descs *descs;
3397
3398 descs = gpiod_get_array(dev, con_id, flags);
3399 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3400 return NULL;
3401
3402 return descs;
3403}
3404EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3405
3406/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003407 * gpiod_put - dispose of a GPIO descriptor
3408 * @desc: GPIO descriptor to dispose of
3409 *
3410 * No descriptor can be used after gpiod_put() has been called on it.
3411 */
3412void gpiod_put(struct gpio_desc *desc)
3413{
3414 gpiod_free(desc);
3415}
3416EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08003417
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003418/**
3419 * gpiod_put_array - dispose of multiple GPIO descriptors
3420 * @descs: struct gpio_descs containing an array of descriptors
3421 */
3422void gpiod_put_array(struct gpio_descs *descs)
3423{
3424 unsigned int i;
3425
3426 for (i = 0; i < descs->ndescs; i++)
3427 gpiod_put(descs->desc[i]);
3428
3429 kfree(descs);
3430}
3431EXPORT_SYMBOL_GPL(gpiod_put_array);
3432
Linus Walleij3c702e92015-10-21 15:29:53 +02003433static int __init gpiolib_dev_init(void)
3434{
3435 int ret;
3436
3437 /* Register GPIO sysfs bus */
3438 ret = bus_register(&gpio_bus_type);
3439 if (ret < 0) {
3440 pr_err("gpiolib: could not register GPIO bus type\n");
3441 return ret;
3442 }
3443
3444 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3445 if (ret < 0) {
3446 pr_err("gpiolib: failed to allocate char dev region\n");
3447 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07003448 } else {
3449 gpiolib_initialized = true;
3450 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02003451 }
3452 return ret;
3453}
3454core_initcall(gpiolib_dev_init);
3455
David Brownelld2876d02008-02-04 22:28:20 -08003456#ifdef CONFIG_DEBUG_FS
3457
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003458static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08003459{
3460 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003461 struct gpio_chip *chip = gdev->chip;
3462 unsigned gpio = gdev->base;
3463 struct gpio_desc *gdesc = &gdev->descs[0];
David Brownelld2876d02008-02-04 22:28:20 -08003464 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02003465 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08003466
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003467 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02003468 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3469 if (gdesc->name) {
3470 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3471 gpio, gdesc->name);
3472 }
David Brownelld2876d02008-02-04 22:28:20 -08003473 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02003474 }
David Brownelld2876d02008-02-04 22:28:20 -08003475
Alexandre Courbot372e7222013-02-03 01:29:29 +09003476 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08003477 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02003478 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02003479 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3480 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08003481 is_out ? "out" : "in ",
3482 chip->get
3483 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02003484 : "? ",
3485 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08003486 seq_printf(s, "\n");
3487 }
3488}
3489
Thierry Redingf9c4a312012-04-12 13:26:01 +02003490static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08003491{
Grant Likely362432a2013-02-09 09:41:49 +00003492 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003493 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003494 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003495
3496 s->private = "";
3497
Grant Likely362432a2013-02-09 09:41:49 +00003498 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003499 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00003500 if (index-- == 0) {
3501 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003502 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00003503 }
3504 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003505
3506 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003507}
3508
3509static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3510{
Grant Likely362432a2013-02-09 09:41:49 +00003511 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003512 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003513 void *ret = NULL;
3514
Grant Likely362432a2013-02-09 09:41:49 +00003515 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003516 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003517 ret = NULL;
3518 else
Linus Walleijff2b1352015-10-20 11:10:38 +02003519 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00003520 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003521
3522 s->private = "\n";
3523 ++*pos;
3524
3525 return ret;
3526}
3527
3528static void gpiolib_seq_stop(struct seq_file *s, void *v)
3529{
3530}
3531
3532static int gpiolib_seq_show(struct seq_file *s, void *v)
3533{
Linus Walleijff2b1352015-10-20 11:10:38 +02003534 struct gpio_device *gdev = v;
3535 struct gpio_chip *chip = gdev->chip;
3536 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003537
Linus Walleijff2b1352015-10-20 11:10:38 +02003538 if (!chip) {
3539 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3540 dev_name(&gdev->dev));
3541 return 0;
3542 }
3543
3544 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3545 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003546 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02003547 parent = chip->parent;
3548 if (parent)
3549 seq_printf(s, ", parent: %s/%s",
3550 parent->bus ? parent->bus->name : "no-bus",
3551 dev_name(parent));
Thierry Redingf9c4a312012-04-12 13:26:01 +02003552 if (chip->label)
3553 seq_printf(s, ", %s", chip->label);
3554 if (chip->can_sleep)
3555 seq_printf(s, ", can sleep");
3556 seq_printf(s, ":\n");
3557
3558 if (chip->dbg_show)
3559 chip->dbg_show(s, chip);
3560 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003561 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003562
David Brownelld2876d02008-02-04 22:28:20 -08003563 return 0;
3564}
3565
Thierry Redingf9c4a312012-04-12 13:26:01 +02003566static const struct seq_operations gpiolib_seq_ops = {
3567 .start = gpiolib_seq_start,
3568 .next = gpiolib_seq_next,
3569 .stop = gpiolib_seq_stop,
3570 .show = gpiolib_seq_show,
3571};
3572
David Brownelld2876d02008-02-04 22:28:20 -08003573static int gpiolib_open(struct inode *inode, struct file *file)
3574{
Thierry Redingf9c4a312012-04-12 13:26:01 +02003575 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08003576}
3577
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003578static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02003579 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08003580 .open = gpiolib_open,
3581 .read = seq_read,
3582 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02003583 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08003584};
3585
3586static int __init gpiolib_debugfs_init(void)
3587{
3588 /* /sys/kernel/debug/gpio */
3589 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3590 NULL, NULL, &gpiolib_operations);
3591 return 0;
3592}
3593subsys_initcall(gpiolib_debugfs_init);
3594
3595#endif /* DEBUG_FS */