blob: 0bf8444706930c36f7f3406ba6710556f7960203 [file] [log] [blame]
Andy Shevchenko923a6542017-05-25 16:08:38 +03001#include <linux/bitmap.h>
David Brownelld2876d02008-02-04 22:28:20 -08002#include <linux/kernel.h>
3#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07004#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08005#include <linux/irq.h>
6#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09007#include <linux/list.h>
David Brownelld8f388d82008-07-25 01:46:07 -07008#include <linux/device.h>
9#include <linux/err.h>
10#include <linux/debugfs.h>
11#include <linux/seq_file.h>
12#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060013#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070014#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010016#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090017#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020018#include <linux/gpio/machine.h>
Jonas Gorskic771c2f2015-10-11 17:34:15 +020019#include <linux/pinctrl/consumer.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020020#include <linux/cdev.h>
21#include <linux/fs.h>
22#include <linux/uaccess.h>
Linus Walleij8b92e172016-05-27 14:24:04 +020023#include <linux/compat.h>
Linus Walleijd7c51b42016-04-26 10:35:29 +020024#include <linux/anon_inodes.h>
Lars-Peter Clausen953b9562016-10-24 13:59:15 +020025#include <linux/file.h>
Linus Walleij61f922d2016-06-02 11:30:15 +020026#include <linux/kfifo.h>
27#include <linux/poll.h>
28#include <linux/timekeeping.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020029#include <uapi/linux/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080030
Mika Westerberg664e3e52014-01-08 12:40:54 +020031#include "gpiolib.h"
32
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060033#define CREATE_TRACE_POINTS
34#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080035
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070036/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080037 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070038 * The GPIO programming interface allows for inlining speed-critical
39 * get/set operations for common cases, so that access to SOC-integrated
40 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080041 */
42
43
44/* When debugging, extend minimal trust to callers and platform code.
45 * Also emit diagnostic messages that may help initial bringup, when
46 * board setup or driver bugs are most common.
47 *
48 * Otherwise, minimize overhead in what may be bitbanging codepaths.
49 */
50#ifdef DEBUG
51#define extra_checks 1
52#else
53#define extra_checks 0
54#endif
55
Linus Walleijff2b1352015-10-20 11:10:38 +020056/* Device and char device-related information */
57static DEFINE_IDA(gpio_ida);
Linus Walleij3c702e92015-10-21 15:29:53 +020058static dev_t gpio_devt;
59#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
60static struct bus_type gpio_bus_type = {
61 .name = "gpio",
62};
Linus Walleijff2b1352015-10-20 11:10:38 +020063
David Brownelld2876d02008-02-04 22:28:20 -080064/* gpio_lock prevents conflicts during gpio_desc[] table updates.
65 * While any GPIO is requested, its gpio_chip is not removable;
66 * each GPIO's "requested" flag serves as a lock and refcount.
67 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090068DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080069
Alexandre Courbotbae48da2013-10-17 10:21:38 -070070static DEFINE_MUTEX(gpio_lookup_lock);
71static LIST_HEAD(gpio_lookup_list);
Linus Walleijff2b1352015-10-20 11:10:38 +020072LIST_HEAD(gpio_devices);
Johan Hovold6d867502015-05-04 17:23:25 +020073
74static void gpiochip_free_hogs(struct gpio_chip *chip);
75static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
Mika Westerberg79b804c2016-09-20 15:15:21 +030076static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip);
77static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip);
Johan Hovold6d867502015-05-04 17:23:25 +020078
Guenter Roeck159f3cd2016-03-31 08:11:30 -070079static bool gpiolib_initialized;
Johan Hovold6d867502015-05-04 17:23:25 +020080
David Brownelld2876d02008-02-04 22:28:20 -080081static inline void desc_set_label(struct gpio_desc *d, const char *label)
82{
David Brownelld2876d02008-02-04 22:28:20 -080083 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080084}
85
Alexandre Courbot372e7222013-02-03 01:29:29 +090086/**
Thierry Reding950d55f52017-07-24 16:57:22 +020087 * gpio_to_desc - Convert a GPIO number to its descriptor
88 * @gpio: global GPIO number
89 *
90 * Returns:
91 * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO
92 * with the given number exists in the system.
Alexandre Courbot372e7222013-02-03 01:29:29 +090093 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070094struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090095{
Linus Walleijff2b1352015-10-20 11:10:38 +020096 struct gpio_device *gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +090097 unsigned long flags;
98
99 spin_lock_irqsave(&gpio_lock, flags);
100
Linus Walleijff2b1352015-10-20 11:10:38 +0200101 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100102 if (gdev->base <= gpio &&
103 gdev->base + gdev->ngpio > gpio) {
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900104 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100105 return &gdev->descs[gpio - gdev->base];
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900106 }
107 }
108
109 spin_unlock_irqrestore(&gpio_lock, flags);
110
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +0900111 if (!gpio_is_valid(gpio))
112 WARN(1, "invalid GPIO %d\n", gpio);
113
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900114 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900115}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700116EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900117
118/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200119 * gpiochip_get_desc - get the GPIO descriptor corresponding to the given
120 * hardware number for this chip
121 * @chip: GPIO chip
122 * @hwnum: hardware number of the GPIO for this chip
123 *
124 * Returns:
125 * A pointer to the GPIO descriptor or %ERR_PTR(-EINVAL) if no GPIO exists
126 * in the given chip for the specified hardware number.
Linus Walleijd468bf92013-09-24 11:54:38 +0200127 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900128struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
129 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +0200130{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100131 struct gpio_device *gdev = chip->gpiodev;
132
133 if (hwnum >= gdev->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +0900134 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +0200135
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100136 return &gdev->descs[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200137}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900138
139/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200140 * desc_to_gpio - convert a GPIO descriptor to the integer namespace
141 * @desc: GPIO descriptor
142 *
Alexandre Courbot372e7222013-02-03 01:29:29 +0900143 * This should disappear in the future but is needed since we still
Thierry Reding950d55f52017-07-24 16:57:22 +0200144 * use GPIO numbers for error messages and sysfs nodes.
145 *
146 * Returns:
147 * The global GPIO number for the GPIO specified by its descriptor.
Alexandre Courbot372e7222013-02-03 01:29:29 +0900148 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700149int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900150{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100151 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900152}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700153EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900154
155
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700156/**
157 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
158 * @desc: descriptor to return the chip of
159 */
160struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900161{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100162 if (!desc || !desc->gdev || !desc->gdev->chip)
163 return NULL;
164 return desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900165}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700166EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800167
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700168/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
169static int gpiochip_find_base(int ngpio)
170{
Linus Walleijff2b1352015-10-20 11:10:38 +0200171 struct gpio_device *gdev;
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900172 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700173
Linus Walleijff2b1352015-10-20 11:10:38 +0200174 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900175 /* found a free space? */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100176 if (gdev->base + gdev->ngpio <= base)
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900177 break;
178 else
179 /* nope, check the space right before the chip */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100180 base = gdev->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700181 }
182
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900183 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700184 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900185 return base;
186 } else {
187 pr_err("%s: cannot find free range\n", __func__);
188 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700189 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700190}
191
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700192/**
193 * gpiod_get_direction - return the current direction of a GPIO
194 * @desc: GPIO to get the direction of
195 *
196 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
197 *
198 * This function may sleep if gpiod_cansleep() is true.
199 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900200int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300201{
202 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900203 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300204 int status = -EINVAL;
205
Alexandre Courbot372e7222013-02-03 01:29:29 +0900206 chip = gpiod_to_chip(desc);
207 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300208
209 if (!chip->get_direction)
210 return status;
211
Alexandre Courbot372e7222013-02-03 01:29:29 +0900212 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300213 if (status > 0) {
214 /* GPIOF_DIR_IN, or other positive */
215 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900216 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300217 }
218 if (status == 0) {
219 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900220 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300221 }
222 return status;
223}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700224EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300225
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900226/*
227 * Add a new chip to the global chips list, keeping the list of chips sorted
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800228 * by range(means [base, base + ngpio - 1]) order.
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900229 *
230 * Return -EBUSY if the new chip overlaps with some other chip's integer
231 * space.
232 */
Linus Walleijff2b1352015-10-20 11:10:38 +0200233static int gpiodev_add_to_list(struct gpio_device *gdev)
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900234{
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800235 struct gpio_device *prev, *next;
Linus Walleijff2b1352015-10-20 11:10:38 +0200236
237 if (list_empty(&gpio_devices)) {
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800238 /* initial entry in list */
Linus Walleijff2b1352015-10-20 11:10:38 +0200239 list_add_tail(&gdev->list, &gpio_devices);
Sudip Mukherjeee28ecca2015-12-27 19:06:50 +0530240 return 0;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900241 }
242
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800243 next = list_entry(gpio_devices.next, struct gpio_device, list);
244 if (gdev->base + gdev->ngpio <= next->base) {
245 /* add before first entry */
246 list_add(&gdev->list, &gpio_devices);
Julien Grossholtz96098df2016-01-07 16:46:45 -0500247 return 0;
248 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900249
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800250 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
251 if (prev->base + prev->ngpio <= gdev->base) {
252 /* add behind last entry */
253 list_add_tail(&gdev->list, &gpio_devices);
254 return 0;
255 }
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800256
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800257 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
258 /* at the end of the list */
259 if (&next->list == &gpio_devices)
260 break;
261
262 /* add between prev and next */
263 if (prev->base + prev->ngpio <= gdev->base
264 && gdev->base + gdev->ngpio <= next->base) {
265 list_add(&gdev->list, &prev->list);
266 return 0;
267 }
268 }
269
270 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
271 return -EBUSY;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900272}
273
Thierry Reding950d55f52017-07-24 16:57:22 +0200274/*
Linus Walleijf881bab02015-09-23 16:20:43 -0700275 * Convert a GPIO name to its descriptor
276 */
277static struct gpio_desc *gpio_name_to_desc(const char * const name)
278{
Linus Walleijff2b1352015-10-20 11:10:38 +0200279 struct gpio_device *gdev;
Linus Walleijf881bab02015-09-23 16:20:43 -0700280 unsigned long flags;
281
282 spin_lock_irqsave(&gpio_lock, flags);
283
Linus Walleijff2b1352015-10-20 11:10:38 +0200284 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700285 int i;
286
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100287 for (i = 0; i != gdev->ngpio; ++i) {
288 struct gpio_desc *desc = &gdev->descs[i];
Linus Walleijf881bab02015-09-23 16:20:43 -0700289
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100290 if (!desc->name || !name)
Linus Walleijf881bab02015-09-23 16:20:43 -0700291 continue;
292
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100293 if (!strcmp(desc->name, name)) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700294 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100295 return desc;
Linus Walleijf881bab02015-09-23 16:20:43 -0700296 }
297 }
298 }
299
300 spin_unlock_irqrestore(&gpio_lock, flags);
301
302 return NULL;
303}
304
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200305/*
306 * Takes the names from gc->names and checks if they are all unique. If they
307 * are, they are assigned to their gpio descriptors.
308 *
Bamvor Jian Zhanged379152015-11-14 16:43:20 +0800309 * Warning if one of the names is already used for a different GPIO.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200310 */
311static int gpiochip_set_desc_names(struct gpio_chip *gc)
312{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100313 struct gpio_device *gdev = gc->gpiodev;
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200314 int i;
315
316 if (!gc->names)
317 return 0;
318
319 /* First check all names if they are unique */
320 for (i = 0; i != gc->ngpio; ++i) {
321 struct gpio_desc *gpio;
322
323 gpio = gpio_name_to_desc(gc->names[i]);
Linus Walleijf881bab02015-09-23 16:20:43 -0700324 if (gpio)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100325 dev_warn(&gdev->dev,
Linus Walleij34ffd852015-10-20 11:31:54 +0200326 "Detected name collision for GPIO name '%s'\n",
Linus Walleijf881bab02015-09-23 16:20:43 -0700327 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200328 }
329
330 /* Then add all names to the GPIO descriptors */
331 for (i = 0; i != gc->ngpio; ++i)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100332 gdev->descs[i].name = gc->names[i];
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200333
334 return 0;
335}
336
Linus Walleijd7c51b42016-04-26 10:35:29 +0200337/*
338 * GPIO line handle management
339 */
340
341/**
342 * struct linehandle_state - contains the state of a userspace handle
343 * @gdev: the GPIO device the handle pertains to
344 * @label: consumer label used to tag descriptors
345 * @descs: the GPIO descriptors held by this handle
346 * @numdescs: the number of descriptors held in the descs array
347 */
348struct linehandle_state {
349 struct gpio_device *gdev;
350 const char *label;
351 struct gpio_desc *descs[GPIOHANDLES_MAX];
352 u32 numdescs;
353};
354
Lars-Peter Clausene3e847c2016-10-18 16:54:05 +0200355#define GPIOHANDLE_REQUEST_VALID_FLAGS \
356 (GPIOHANDLE_REQUEST_INPUT | \
357 GPIOHANDLE_REQUEST_OUTPUT | \
358 GPIOHANDLE_REQUEST_ACTIVE_LOW | \
359 GPIOHANDLE_REQUEST_OPEN_DRAIN | \
360 GPIOHANDLE_REQUEST_OPEN_SOURCE)
361
Linus Walleijd7c51b42016-04-26 10:35:29 +0200362static long linehandle_ioctl(struct file *filep, unsigned int cmd,
363 unsigned long arg)
364{
365 struct linehandle_state *lh = filep->private_data;
366 void __user *ip = (void __user *)arg;
367 struct gpiohandle_data ghd;
Lukas Wunnereec1d562017-10-12 12:40:10 +0200368 int vals[GPIOHANDLES_MAX];
Linus Walleijd7c51b42016-04-26 10:35:29 +0200369 int i;
370
371 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
Lukas Wunnereec1d562017-10-12 12:40:10 +0200372 /* TODO: check if descriptors are really input */
373 int ret = gpiod_get_array_value_complex(false,
374 true,
375 lh->numdescs,
376 lh->descs,
377 vals);
378 if (ret)
379 return ret;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200380
Lars-Peter Clausen3eded5d2016-10-18 16:54:02 +0200381 memset(&ghd, 0, sizeof(ghd));
Lukas Wunnereec1d562017-10-12 12:40:10 +0200382 for (i = 0; i < lh->numdescs; i++)
383 ghd.values[i] = vals[i];
Linus Walleijd7c51b42016-04-26 10:35:29 +0200384
385 if (copy_to_user(ip, &ghd, sizeof(ghd)))
386 return -EFAULT;
387
388 return 0;
389 } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) {
Linus Walleijd7c51b42016-04-26 10:35:29 +0200390 /* TODO: check if descriptors are really output */
391 if (copy_from_user(&ghd, ip, sizeof(ghd)))
392 return -EFAULT;
393
394 /* Clamp all values to [0,1] */
395 for (i = 0; i < lh->numdescs; i++)
396 vals[i] = !!ghd.values[i];
397
398 /* Reuse the array setting function */
399 gpiod_set_array_value_complex(false,
400 true,
401 lh->numdescs,
402 lh->descs,
403 vals);
404 return 0;
405 }
406 return -EINVAL;
407}
408
409#ifdef CONFIG_COMPAT
410static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd,
411 unsigned long arg)
412{
413 return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
414}
415#endif
416
417static int linehandle_release(struct inode *inode, struct file *filep)
418{
419 struct linehandle_state *lh = filep->private_data;
420 struct gpio_device *gdev = lh->gdev;
421 int i;
422
423 for (i = 0; i < lh->numdescs; i++)
424 gpiod_free(lh->descs[i]);
425 kfree(lh->label);
426 kfree(lh);
427 put_device(&gdev->dev);
428 return 0;
429}
430
431static const struct file_operations linehandle_fileops = {
432 .release = linehandle_release,
433 .owner = THIS_MODULE,
434 .llseek = noop_llseek,
435 .unlocked_ioctl = linehandle_ioctl,
436#ifdef CONFIG_COMPAT
437 .compat_ioctl = linehandle_ioctl_compat,
438#endif
439};
440
441static int linehandle_create(struct gpio_device *gdev, void __user *ip)
442{
443 struct gpiohandle_request handlereq;
444 struct linehandle_state *lh;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200445 struct file *file;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200446 int fd, i, ret;
Bartosz Golaszewski418ee8e2017-10-16 11:32:29 +0200447 u32 lflags;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200448
449 if (copy_from_user(&handlereq, ip, sizeof(handlereq)))
450 return -EFAULT;
451 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX))
452 return -EINVAL;
453
Bartosz Golaszewski418ee8e2017-10-16 11:32:29 +0200454 lflags = handlereq.flags;
455
456 /* Return an error if an unknown flag is set */
457 if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS)
458 return -EINVAL;
459
Bartosz Golaszewski609aaf62017-10-16 11:32:30 +0200460 /* OPEN_DRAIN and OPEN_SOURCE flags only make sense for output mode. */
461 if (!(lflags & GPIOHANDLE_REQUEST_OUTPUT) &&
462 ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) ||
463 (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)))
464 return -EINVAL;
465
Linus Walleijd7c51b42016-04-26 10:35:29 +0200466 lh = kzalloc(sizeof(*lh), GFP_KERNEL);
467 if (!lh)
468 return -ENOMEM;
469 lh->gdev = gdev;
470 get_device(&gdev->dev);
471
472 /* Make sure this is terminated */
473 handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0';
474 if (strlen(handlereq.consumer_label)) {
475 lh->label = kstrdup(handlereq.consumer_label,
476 GFP_KERNEL);
477 if (!lh->label) {
478 ret = -ENOMEM;
479 goto out_free_lh;
480 }
481 }
482
483 /* Request each GPIO */
484 for (i = 0; i < handlereq.lines; i++) {
485 u32 offset = handlereq.lineoffsets[i];
Linus Walleijd7c51b42016-04-26 10:35:29 +0200486 struct gpio_desc *desc;
487
Lars-Peter Clausene405f9f2016-10-18 16:54:01 +0200488 if (offset >= gdev->ngpio) {
489 ret = -EINVAL;
490 goto out_free_descs;
491 }
492
Linus Walleijd7c51b42016-04-26 10:35:29 +0200493 desc = &gdev->descs[offset];
494 ret = gpiod_request(desc, lh->label);
495 if (ret)
496 goto out_free_descs;
497 lh->descs[i] = desc;
498
499 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
500 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
501 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
502 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
503 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
504 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
505
506 /*
507 * Lines have to be requested explicitly for input
508 * or output, else the line will be treated "as is".
509 */
510 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
511 int val = !!handlereq.default_values[i];
512
513 ret = gpiod_direction_output(desc, val);
514 if (ret)
515 goto out_free_descs;
516 } else if (lflags & GPIOHANDLE_REQUEST_INPUT) {
517 ret = gpiod_direction_input(desc);
518 if (ret)
519 goto out_free_descs;
520 }
521 dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
522 offset);
523 }
Linus Walleije2f608b2016-06-18 10:56:43 +0200524 /* Let i point at the last handle */
525 i--;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200526 lh->numdescs = handlereq.lines;
527
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200528 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200529 if (fd < 0) {
530 ret = fd;
531 goto out_free_descs;
532 }
533
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200534 file = anon_inode_getfile("gpio-linehandle",
535 &linehandle_fileops,
536 lh,
537 O_RDONLY | O_CLOEXEC);
538 if (IS_ERR(file)) {
539 ret = PTR_ERR(file);
540 goto out_put_unused_fd;
541 }
542
Linus Walleijd7c51b42016-04-26 10:35:29 +0200543 handlereq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200544 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200545 /*
546 * fput() will trigger the release() callback, so do not go onto
547 * the regular error cleanup path here.
548 */
549 fput(file);
550 put_unused_fd(fd);
551 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200552 }
Linus Walleijd7c51b42016-04-26 10:35:29 +0200553
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200554 fd_install(fd, file);
555
Linus Walleijd7c51b42016-04-26 10:35:29 +0200556 dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n",
557 lh->numdescs);
558
559 return 0;
560
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200561out_put_unused_fd:
562 put_unused_fd(fd);
Linus Walleijd7c51b42016-04-26 10:35:29 +0200563out_free_descs:
564 for (; i >= 0; i--)
565 gpiod_free(lh->descs[i]);
566 kfree(lh->label);
567out_free_lh:
568 kfree(lh);
569 put_device(&gdev->dev);
570 return ret;
571}
572
Linus Walleij61f922d2016-06-02 11:30:15 +0200573/*
574 * GPIO line event management
575 */
576
577/**
578 * struct lineevent_state - contains the state of a userspace event
579 * @gdev: the GPIO device the event pertains to
580 * @label: consumer label used to tag descriptors
581 * @desc: the GPIO descriptor held by this event
582 * @eflags: the event flags this line was requested with
583 * @irq: the interrupt that trigger in response to events on this GPIO
584 * @wait: wait queue that handles blocking reads of events
585 * @events: KFIFO for the GPIO events
586 * @read_lock: mutex lock to protect reads from colliding with adding
587 * new events to the FIFO
588 */
589struct lineevent_state {
590 struct gpio_device *gdev;
591 const char *label;
592 struct gpio_desc *desc;
593 u32 eflags;
594 int irq;
595 wait_queue_head_t wait;
596 DECLARE_KFIFO(events, struct gpioevent_data, 16);
597 struct mutex read_lock;
598};
599
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200600#define GPIOEVENT_REQUEST_VALID_FLAGS \
601 (GPIOEVENT_REQUEST_RISING_EDGE | \
602 GPIOEVENT_REQUEST_FALLING_EDGE)
603
Linus Walleij61f922d2016-06-02 11:30:15 +0200604static unsigned int lineevent_poll(struct file *filep,
605 struct poll_table_struct *wait)
606{
607 struct lineevent_state *le = filep->private_data;
608 unsigned int events = 0;
609
610 poll_wait(filep, &le->wait, wait);
611
612 if (!kfifo_is_empty(&le->events))
613 events = POLLIN | POLLRDNORM;
614
615 return events;
616}
617
618
619static ssize_t lineevent_read(struct file *filep,
620 char __user *buf,
621 size_t count,
622 loff_t *f_ps)
623{
624 struct lineevent_state *le = filep->private_data;
625 unsigned int copied;
626 int ret;
627
628 if (count < sizeof(struct gpioevent_data))
629 return -EINVAL;
630
631 do {
632 if (kfifo_is_empty(&le->events)) {
633 if (filep->f_flags & O_NONBLOCK)
634 return -EAGAIN;
635
636 ret = wait_event_interruptible(le->wait,
637 !kfifo_is_empty(&le->events));
638 if (ret)
639 return ret;
640 }
641
642 if (mutex_lock_interruptible(&le->read_lock))
643 return -ERESTARTSYS;
644 ret = kfifo_to_user(&le->events, buf, count, &copied);
645 mutex_unlock(&le->read_lock);
646
647 if (ret)
648 return ret;
649
650 /*
651 * If we couldn't read anything from the fifo (a different
652 * thread might have been faster) we either return -EAGAIN if
653 * the file descriptor is non-blocking, otherwise we go back to
654 * sleep and wait for more data to arrive.
655 */
656 if (copied == 0 && (filep->f_flags & O_NONBLOCK))
657 return -EAGAIN;
658
659 } while (copied == 0);
660
661 return copied;
662}
663
664static int lineevent_release(struct inode *inode, struct file *filep)
665{
666 struct lineevent_state *le = filep->private_data;
667 struct gpio_device *gdev = le->gdev;
668
669 free_irq(le->irq, le);
670 gpiod_free(le->desc);
671 kfree(le->label);
672 kfree(le);
673 put_device(&gdev->dev);
674 return 0;
675}
676
677static long lineevent_ioctl(struct file *filep, unsigned int cmd,
678 unsigned long arg)
679{
680 struct lineevent_state *le = filep->private_data;
681 void __user *ip = (void __user *)arg;
682 struct gpiohandle_data ghd;
683
684 /*
685 * We can get the value for an event line but not set it,
686 * because it is input by definition.
687 */
688 if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) {
689 int val;
690
Lars-Peter Clausend82aa4a2016-10-18 16:54:04 +0200691 memset(&ghd, 0, sizeof(ghd));
692
Linus Walleij61f922d2016-06-02 11:30:15 +0200693 val = gpiod_get_value_cansleep(le->desc);
694 if (val < 0)
695 return val;
696 ghd.values[0] = val;
697
698 if (copy_to_user(ip, &ghd, sizeof(ghd)))
699 return -EFAULT;
700
701 return 0;
702 }
703 return -EINVAL;
704}
705
706#ifdef CONFIG_COMPAT
707static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd,
708 unsigned long arg)
709{
710 return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg));
711}
712#endif
713
714static const struct file_operations lineevent_fileops = {
715 .release = lineevent_release,
716 .read = lineevent_read,
717 .poll = lineevent_poll,
718 .owner = THIS_MODULE,
719 .llseek = noop_llseek,
720 .unlocked_ioctl = lineevent_ioctl,
721#ifdef CONFIG_COMPAT
722 .compat_ioctl = lineevent_ioctl_compat,
723#endif
724};
725
Ben Dooks33265b12016-06-17 16:03:13 +0100726static irqreturn_t lineevent_irq_thread(int irq, void *p)
Linus Walleij61f922d2016-06-02 11:30:15 +0200727{
728 struct lineevent_state *le = p;
729 struct gpioevent_data ge;
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200730 int ret, level;
Linus Walleij61f922d2016-06-02 11:30:15 +0200731
732 ge.timestamp = ktime_get_real_ns();
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200733 level = gpiod_get_value_cansleep(le->desc);
Linus Walleij61f922d2016-06-02 11:30:15 +0200734
Bartosz Golaszewskiad537b82017-06-23 13:45:16 +0200735 if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE
736 && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200737 if (level)
738 /* Emit low-to-high event */
739 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
740 else
741 /* Emit high-to-low event */
742 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200743 } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE && level) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200744 /* Emit low-to-high event */
745 ge.id = GPIOEVENT_EVENT_RISING_EDGE;
Bartosz Golaszewskidf1e76f2017-07-03 11:12:03 +0200746 } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE && !level) {
Linus Walleij61f922d2016-06-02 11:30:15 +0200747 /* Emit high-to-low event */
748 ge.id = GPIOEVENT_EVENT_FALLING_EDGE;
Arnd Bergmannbc0207a2016-06-16 11:02:41 +0200749 } else {
750 return IRQ_NONE;
Linus Walleij61f922d2016-06-02 11:30:15 +0200751 }
752
753 ret = kfifo_put(&le->events, ge);
754 if (ret != 0)
755 wake_up_poll(&le->wait, POLLIN);
756
757 return IRQ_HANDLED;
758}
759
760static int lineevent_create(struct gpio_device *gdev, void __user *ip)
761{
762 struct gpioevent_request eventreq;
763 struct lineevent_state *le;
764 struct gpio_desc *desc;
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200765 struct file *file;
Linus Walleij61f922d2016-06-02 11:30:15 +0200766 u32 offset;
767 u32 lflags;
768 u32 eflags;
769 int fd;
770 int ret;
771 int irqflags = 0;
772
773 if (copy_from_user(&eventreq, ip, sizeof(eventreq)))
774 return -EFAULT;
775
776 le = kzalloc(sizeof(*le), GFP_KERNEL);
777 if (!le)
778 return -ENOMEM;
779 le->gdev = gdev;
780 get_device(&gdev->dev);
781
782 /* Make sure this is terminated */
783 eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0';
784 if (strlen(eventreq.consumer_label)) {
785 le->label = kstrdup(eventreq.consumer_label,
786 GFP_KERNEL);
787 if (!le->label) {
788 ret = -ENOMEM;
789 goto out_free_le;
790 }
791 }
792
793 offset = eventreq.lineoffset;
794 lflags = eventreq.handleflags;
795 eflags = eventreq.eventflags;
796
Lars-Peter Clausenb8b0e3d2016-10-18 16:54:03 +0200797 if (offset >= gdev->ngpio) {
798 ret = -EINVAL;
799 goto out_free_label;
800 }
801
Lars-Peter Clausenac7dbb92016-10-18 16:54:06 +0200802 /* Return an error if a unknown flag is set */
803 if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) ||
804 (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) {
805 ret = -EINVAL;
806 goto out_free_label;
807 }
808
Linus Walleij61f922d2016-06-02 11:30:15 +0200809 /* This is just wrong: we don't look for events on output lines */
810 if (lflags & GPIOHANDLE_REQUEST_OUTPUT) {
811 ret = -EINVAL;
812 goto out_free_label;
813 }
814
815 desc = &gdev->descs[offset];
816 ret = gpiod_request(desc, le->label);
817 if (ret)
818 goto out_free_desc;
819 le->desc = desc;
820 le->eflags = eflags;
821
822 if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW)
823 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
824 if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN)
825 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
826 if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)
827 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
828
829 ret = gpiod_direction_input(desc);
830 if (ret)
831 goto out_free_desc;
832
833 le->irq = gpiod_to_irq(desc);
834 if (le->irq <= 0) {
835 ret = -ENODEV;
836 goto out_free_desc;
837 }
838
839 if (eflags & GPIOEVENT_REQUEST_RISING_EDGE)
840 irqflags |= IRQF_TRIGGER_RISING;
841 if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE)
842 irqflags |= IRQF_TRIGGER_FALLING;
843 irqflags |= IRQF_ONESHOT;
844 irqflags |= IRQF_SHARED;
845
846 INIT_KFIFO(le->events);
847 init_waitqueue_head(&le->wait);
848 mutex_init(&le->read_lock);
849
850 /* Request a thread to read the events */
851 ret = request_threaded_irq(le->irq,
852 NULL,
853 lineevent_irq_thread,
854 irqflags,
855 le->label,
856 le);
857 if (ret)
858 goto out_free_desc;
859
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200860 fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC);
Linus Walleij61f922d2016-06-02 11:30:15 +0200861 if (fd < 0) {
862 ret = fd;
863 goto out_free_irq;
864 }
865
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200866 file = anon_inode_getfile("gpio-event",
867 &lineevent_fileops,
868 le,
869 O_RDONLY | O_CLOEXEC);
870 if (IS_ERR(file)) {
871 ret = PTR_ERR(file);
872 goto out_put_unused_fd;
873 }
874
Linus Walleij61f922d2016-06-02 11:30:15 +0200875 eventreq.fd = fd;
Linus Walleijd932cd42016-07-04 13:13:04 +0200876 if (copy_to_user(ip, &eventreq, sizeof(eventreq))) {
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200877 /*
878 * fput() will trigger the release() callback, so do not go onto
879 * the regular error cleanup path here.
880 */
881 fput(file);
882 put_unused_fd(fd);
883 return -EFAULT;
Linus Walleijd932cd42016-07-04 13:13:04 +0200884 }
Linus Walleij61f922d2016-06-02 11:30:15 +0200885
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200886 fd_install(fd, file);
887
Linus Walleij61f922d2016-06-02 11:30:15 +0200888 return 0;
889
Lars-Peter Clausen953b9562016-10-24 13:59:15 +0200890out_put_unused_fd:
891 put_unused_fd(fd);
Linus Walleij61f922d2016-06-02 11:30:15 +0200892out_free_irq:
893 free_irq(le->irq, le);
894out_free_desc:
895 gpiod_free(le->desc);
896out_free_label:
897 kfree(le->label);
898out_free_le:
899 kfree(le);
900 put_device(&gdev->dev);
901 return ret;
902}
903
Thierry Reding950d55f52017-07-24 16:57:22 +0200904/*
Linus Walleij3c702e92015-10-21 15:29:53 +0200905 * gpio_ioctl() - ioctl handler for the GPIO chardev
906 */
907static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
908{
909 struct gpio_device *gdev = filp->private_data;
910 struct gpio_chip *chip = gdev->chip;
Linus Walleij8b92e172016-05-27 14:24:04 +0200911 void __user *ip = (void __user *)arg;
Linus Walleij3c702e92015-10-21 15:29:53 +0200912
913 /* We fail any subsequent ioctl():s when the chip is gone */
914 if (!chip)
915 return -ENODEV;
916
Linus Walleij521a2ad2016-02-12 22:25:22 +0100917 /* Fill in the struct and pass to userspace */
Linus Walleij3c702e92015-10-21 15:29:53 +0200918 if (cmd == GPIO_GET_CHIPINFO_IOCTL) {
Linus Walleij521a2ad2016-02-12 22:25:22 +0100919 struct gpiochip_info chipinfo;
920
Lars-Peter Clausen0f4bbb22016-10-18 16:54:00 +0200921 memset(&chipinfo, 0, sizeof(chipinfo));
922
Linus Walleij3c702e92015-10-21 15:29:53 +0200923 strncpy(chipinfo.name, dev_name(&gdev->dev),
924 sizeof(chipinfo.name));
925 chipinfo.name[sizeof(chipinfo.name)-1] = '\0';
Linus Walleijdf4878e2016-02-12 14:48:23 +0100926 strncpy(chipinfo.label, gdev->label,
927 sizeof(chipinfo.label));
928 chipinfo.label[sizeof(chipinfo.label)-1] = '\0';
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100929 chipinfo.lines = gdev->ngpio;
Linus Walleij3c702e92015-10-21 15:29:53 +0200930 if (copy_to_user(ip, &chipinfo, sizeof(chipinfo)))
931 return -EFAULT;
932 return 0;
Linus Walleij521a2ad2016-02-12 22:25:22 +0100933 } else if (cmd == GPIO_GET_LINEINFO_IOCTL) {
934 struct gpioline_info lineinfo;
935 struct gpio_desc *desc;
936
937 if (copy_from_user(&lineinfo, ip, sizeof(lineinfo)))
938 return -EFAULT;
Lars-Peter Clausen1f1cc452016-10-18 16:53:59 +0200939 if (lineinfo.line_offset >= gdev->ngpio)
Linus Walleij521a2ad2016-02-12 22:25:22 +0100940 return -EINVAL;
941
942 desc = &gdev->descs[lineinfo.line_offset];
943 if (desc->name) {
944 strncpy(lineinfo.name, desc->name,
945 sizeof(lineinfo.name));
946 lineinfo.name[sizeof(lineinfo.name)-1] = '\0';
947 } else {
948 lineinfo.name[0] = '\0';
949 }
950 if (desc->label) {
Linus Walleij214338e2016-02-25 21:01:48 +0100951 strncpy(lineinfo.consumer, desc->label,
952 sizeof(lineinfo.consumer));
953 lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100954 } else {
Linus Walleij214338e2016-02-25 21:01:48 +0100955 lineinfo.consumer[0] = '\0';
Linus Walleij521a2ad2016-02-12 22:25:22 +0100956 }
957
958 /*
959 * Userspace only need to know that the kernel is using
960 * this GPIO so it can't use it.
961 */
962 lineinfo.flags = 0;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100963 if (test_bit(FLAG_REQUESTED, &desc->flags) ||
964 test_bit(FLAG_IS_HOGGED, &desc->flags) ||
965 test_bit(FLAG_USED_AS_IRQ, &desc->flags) ||
966 test_bit(FLAG_EXPORT, &desc->flags) ||
967 test_bit(FLAG_SYSFS, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100968 lineinfo.flags |= GPIOLINE_FLAG_KERNEL;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100969 if (test_bit(FLAG_IS_OUT, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100970 lineinfo.flags |= GPIOLINE_FLAG_IS_OUT;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100971 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100972 lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100973 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100974 lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN;
Linus Walleij9d8cc892016-02-22 13:44:53 +0100975 if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Linus Walleij521a2ad2016-02-12 22:25:22 +0100976 lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE;
977
978 if (copy_to_user(ip, &lineinfo, sizeof(lineinfo)))
979 return -EFAULT;
980 return 0;
Linus Walleijd7c51b42016-04-26 10:35:29 +0200981 } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) {
982 return linehandle_create(gdev, ip);
Linus Walleij61f922d2016-06-02 11:30:15 +0200983 } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) {
984 return lineevent_create(gdev, ip);
Linus Walleij3c702e92015-10-21 15:29:53 +0200985 }
986 return -EINVAL;
987}
988
Linus Walleij8b92e172016-05-27 14:24:04 +0200989#ifdef CONFIG_COMPAT
990static long gpio_ioctl_compat(struct file *filp, unsigned int cmd,
991 unsigned long arg)
992{
993 return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
994}
995#endif
996
Linus Walleij3c702e92015-10-21 15:29:53 +0200997/**
998 * gpio_chrdev_open() - open the chardev for ioctl operations
999 * @inode: inode for this chardev
1000 * @filp: file struct for storing private data
1001 * Returns 0 on success
1002 */
1003static int gpio_chrdev_open(struct inode *inode, struct file *filp)
1004{
1005 struct gpio_device *gdev = container_of(inode->i_cdev,
1006 struct gpio_device, chrdev);
1007
1008 /* Fail on open if the backing gpiochip is gone */
Stephen Boydfb505742017-01-09 11:47:44 -08001009 if (!gdev->chip)
Linus Walleij3c702e92015-10-21 15:29:53 +02001010 return -ENODEV;
1011 get_device(&gdev->dev);
1012 filp->private_data = gdev;
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001013
1014 return nonseekable_open(inode, filp);
Linus Walleij3c702e92015-10-21 15:29:53 +02001015}
1016
1017/**
1018 * gpio_chrdev_release() - close chardev after ioctl operations
1019 * @inode: inode for this chardev
1020 * @filp: file struct for storing private data
1021 * Returns 0 on success
1022 */
1023static int gpio_chrdev_release(struct inode *inode, struct file *filp)
1024{
1025 struct gpio_device *gdev = container_of(inode->i_cdev,
1026 struct gpio_device, chrdev);
1027
Linus Walleij3c702e92015-10-21 15:29:53 +02001028 put_device(&gdev->dev);
1029 return 0;
1030}
1031
1032
1033static const struct file_operations gpio_fileops = {
1034 .release = gpio_chrdev_release,
1035 .open = gpio_chrdev_open,
1036 .owner = THIS_MODULE,
Lars-Peter Clausenf4e81c52016-11-30 13:05:21 +01001037 .llseek = no_llseek,
Linus Walleij3c702e92015-10-21 15:29:53 +02001038 .unlocked_ioctl = gpio_ioctl,
Linus Walleij8b92e172016-05-27 14:24:04 +02001039#ifdef CONFIG_COMPAT
1040 .compat_ioctl = gpio_ioctl_compat,
1041#endif
Linus Walleij3c702e92015-10-21 15:29:53 +02001042};
1043
Linus Walleijff2b1352015-10-20 11:10:38 +02001044static void gpiodevice_release(struct device *dev)
1045{
1046 struct gpio_device *gdev = dev_get_drvdata(dev);
1047
1048 list_del(&gdev->list);
1049 ida_simple_remove(&gpio_ida, gdev->id);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001050 kfree(gdev->label);
1051 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +01001052 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001053}
1054
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001055static int gpiochip_setup_dev(struct gpio_device *gdev)
1056{
1057 int status;
1058
1059 cdev_init(&gdev->chrdev, &gpio_fileops);
1060 gdev->chrdev.owner = THIS_MODULE;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001061 gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id);
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001062
1063 status = cdev_device_add(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001064 if (status)
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001065 return status;
1066
1067 chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n",
1068 MAJOR(gpio_devt), gdev->id);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001069
1070 status = gpiochip_sysfs_register(gdev);
1071 if (status)
1072 goto err_remove_device;
1073
1074 /* From this point, the .release() function cleans up gpio_device */
1075 gdev->dev.release = gpiodevice_release;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001076 pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n",
1077 __func__, gdev->base, gdev->base + gdev->ngpio - 1,
1078 dev_name(&gdev->dev), gdev->chip->label ? : "generic");
1079
1080 return 0;
1081
1082err_remove_device:
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001083 cdev_device_del(&gdev->chrdev, &gdev->dev);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001084 return status;
1085}
1086
1087static void gpiochip_setup_devs(void)
1088{
1089 struct gpio_device *gdev;
1090 int err;
1091
1092 list_for_each_entry(gdev, &gpio_devices, list) {
1093 err = gpiochip_setup_dev(gdev);
1094 if (err)
1095 pr_err("%s: Failed to initialize gpio device (%d)\n",
1096 dev_name(&gdev->dev), err);
1097 }
1098}
1099
Anton Vorontsov169b6a72008-04-28 02:14:47 -07001100/**
Linus Walleijb08ea352015-12-03 15:14:13 +01001101 * gpiochip_add_data() - register a gpio_chip
David Brownelld2876d02008-02-04 22:28:20 -08001102 * @chip: the chip to register, with chip->base initialized
Thierry Reding950d55f52017-07-24 16:57:22 +02001103 * @data: driver-private data associated with this chip
David Brownelld2876d02008-02-04 22:28:20 -08001104 *
Thierry Reding950d55f52017-07-24 16:57:22 +02001105 * Context: potentially before irqs will work
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001106 *
Linus Walleijb08ea352015-12-03 15:14:13 +01001107 * When gpiochip_add_data() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001108 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d82008-07-25 01:46:07 -07001109 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
1110 * for GPIOs will fail rudely.
1111 *
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001112 * gpiochip_add_data() must only be called after gpiolib initialization,
1113 * ie after core_initcall().
1114 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001115 * If chip->base is negative, this requests dynamic assignment of
1116 * a range of valid GPIOs.
Thierry Reding950d55f52017-07-24 16:57:22 +02001117 *
1118 * Returns:
1119 * A negative errno if the chip can't be registered, such as because the
1120 * chip->base is invalid or already associated with a different chip.
1121 * Otherwise it returns zero as a success code.
David Brownelld2876d02008-02-04 22:28:20 -08001122 */
Linus Walleijb08ea352015-12-03 15:14:13 +01001123int gpiochip_add_data(struct gpio_chip *chip, void *data)
David Brownelld2876d02008-02-04 22:28:20 -08001124{
1125 unsigned long flags;
1126 int status = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +02001127 unsigned i;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001128 int base = chip->base;
Linus Walleijff2b1352015-10-20 11:10:38 +02001129 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -08001130
Linus Walleijff2b1352015-10-20 11:10:38 +02001131 /*
1132 * First: allocate and populate the internal stat container, and
1133 * set up the struct device.
1134 */
Josh Cartwright969f07b2016-02-17 16:44:15 -06001135 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +02001136 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001137 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +02001138 gdev->dev.bus = &gpio_bus_type;
Linus Walleijff2b1352015-10-20 11:10:38 +02001139 gdev->chip = chip;
1140 chip->gpiodev = gdev;
1141 if (chip->parent) {
1142 gdev->dev.parent = chip->parent;
1143 gdev->dev.of_node = chip->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +02001144 }
1145
Linus Walleijff2b1352015-10-20 11:10:38 +02001146#ifdef CONFIG_OF_GPIO
1147 /* If the gpiochip has an assigned OF node this takes precedence */
Thierry Redingacc6e332016-07-05 14:11:14 +02001148 if (chip->of_node)
1149 gdev->dev.of_node = chip->of_node;
Linus Walleijff2b1352015-10-20 11:10:38 +02001150#endif
Thierry Redingacc6e332016-07-05 14:11:14 +02001151
Linus Walleijff2b1352015-10-20 11:10:38 +02001152 gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL);
1153 if (gdev->id < 0) {
1154 status = gdev->id;
1155 goto err_free_gdev;
1156 }
1157 dev_set_name(&gdev->dev, "gpiochip%d", gdev->id);
1158 device_initialize(&gdev->dev);
1159 dev_set_drvdata(&gdev->dev, gdev);
1160 if (chip->parent && chip->parent->driver)
1161 gdev->owner = chip->parent->driver->owner;
1162 else if (chip->owner)
1163 /* TODO: remove chip->owner */
1164 gdev->owner = chip->owner;
1165 else
1166 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -08001167
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001168 gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001169 if (!gdev->descs) {
Linus Walleijff2b1352015-10-20 11:10:38 +02001170 status = -ENOMEM;
1171 goto err_free_gdev;
1172 }
1173
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001174 if (chip->ngpio == 0) {
1175 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijff2b1352015-10-20 11:10:38 +02001176 status = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001177 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001178 }
Linus Walleijdf4878e2016-02-12 14:48:23 +01001179
1180 if (chip->label)
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001181 gdev->label = kstrdup(chip->label, GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001182 else
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001183 gdev->label = kstrdup("unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +01001184 if (!gdev->label) {
1185 status = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001186 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +01001187 }
1188
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001189 gdev->ngpio = chip->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +01001190 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +08001191
David Brownelld2876d02008-02-04 22:28:20 -08001192 spin_lock_irqsave(&gpio_lock, flags);
1193
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001194 /*
1195 * TODO: this allocates a Linux GPIO number base in the global
1196 * GPIO numberspace for this chip. In the long run we want to
1197 * get *rid* of this numberspace and use only descriptors, but
1198 * it may be a pipe dream. It will not happen before we get rid
1199 * of the sysfs interface anyways.
1200 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001201 if (base < 0) {
1202 base = gpiochip_find_base(chip->ngpio);
1203 if (base < 0) {
1204 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +01001205 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001206 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001207 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001208 /*
1209 * TODO: it should not be necessary to reflect the assigned
1210 * base outside of the GPIO subsystem. Go over drivers and
1211 * see if anyone makes use of this, else drop this and assign
1212 * a poison instead.
1213 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001214 chip->base = base;
1215 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001216 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -07001217
Linus Walleijff2b1352015-10-20 11:10:38 +02001218 status = gpiodev_add_to_list(gdev);
Johan Hovold05aa5202015-01-12 17:12:26 +01001219 if (status) {
1220 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001221 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +01001222 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +09001223
Linus Walleij545ebd92016-05-30 17:11:59 +02001224 spin_unlock_irqrestore(&gpio_lock, flags);
1225
Linus Walleijff2b1352015-10-20 11:10:38 +02001226 for (i = 0; i < chip->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001227 struct gpio_desc *desc = &gdev->descs[i];
David Brownelld8f388d82008-07-25 01:46:07 -07001228
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001229 desc->gdev = gdev;
Linus Walleij72d32002016-04-28 13:33:59 +02001230 /*
1231 * REVISIT: most hardware initializes GPIOs as inputs
1232 * (often with pullups enabled) so power usage is
1233 * minimized. Linux code should set the gpio direction
1234 * first thing; but until it does, and in case
1235 * chip->get_direction is not set, we may expose the
1236 * wrong direction in sysfs.
Johan Hovold05aa5202015-01-12 17:12:26 +01001237 */
Linus Walleij72d32002016-04-28 13:33:59 +02001238
1239 if (chip->get_direction) {
1240 /*
1241 * If we have .get_direction, set up the initial
1242 * direction flag from the hardware.
1243 */
1244 int dir = chip->get_direction(chip, i);
1245
1246 if (!dir)
1247 set_bit(FLAG_IS_OUT, &desc->flags);
1248 } else if (!chip->direction_input) {
1249 /*
1250 * If the chip lacks the .direction_input callback
1251 * we logically assume all lines are outputs.
1252 */
1253 set_bit(FLAG_IS_OUT, &desc->flags);
1254 }
David Brownelld2876d02008-02-04 22:28:20 -08001255 }
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001256
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301257#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +01001258 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301259#endif
1260
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001261 status = gpiochip_set_desc_names(chip);
1262 if (status)
1263 goto err_remove_from_list;
1264
Mika Westerberg79b804c2016-09-20 15:15:21 +03001265 status = gpiochip_irqchip_init_valid_mask(chip);
1266 if (status)
1267 goto err_remove_from_list;
1268
Tomeu Vizoso28355f82015-07-14 10:29:54 +02001269 status = of_gpiochip_add(chip);
1270 if (status)
1271 goto err_remove_chip;
1272
Mika Westerberg664e3e52014-01-08 12:40:54 +02001273 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001274
Linus Walleij3c702e92015-10-21 15:29:53 +02001275 /*
1276 * By first adding the chardev, and then adding the device,
1277 * we get a device node entry in sysfs under
1278 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
1279 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001280 * We can do this only if gpiolib has been initialized.
1281 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +02001282 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -07001283 if (gpiolib_initialized) {
1284 status = gpiochip_setup_dev(gdev);
1285 if (status)
1286 goto err_remove_chip;
1287 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -06001288 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001289
Johan Hovold225fce82015-01-12 17:12:25 +01001290err_remove_chip:
1291 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +02001292 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +01001293 of_gpiochip_remove(chip);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001294 gpiochip_irqchip_free_valid_mask(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +02001295err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +01001296 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001297 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +08001298 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -07001299err_free_label:
1300 kfree(gdev->label);
1301err_free_descs:
1302 kfree(gdev->descs);
Linus Walleijff2b1352015-10-20 11:10:38 +02001303err_free_gdev:
1304 ida_simple_remove(&gpio_ida, gdev->id);
David Brownelld2876d02008-02-04 22:28:20 -08001305 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +02001306 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001307 gdev->base, gdev->base + gdev->ngpio - 1,
1308 chip->label ? : "generic");
1309 kfree(gdev);
David Brownelld2876d02008-02-04 22:28:20 -08001310 return status;
1311}
Linus Walleijb08ea352015-12-03 15:14:13 +01001312EXPORT_SYMBOL_GPL(gpiochip_add_data);
David Brownelld2876d02008-02-04 22:28:20 -08001313
1314/**
Linus Walleij43c54ec2016-02-11 11:37:48 +01001315 * gpiochip_get_data() - get per-subdriver data for the chip
Thierry Reding950d55f52017-07-24 16:57:22 +02001316 * @chip: GPIO chip
1317 *
1318 * Returns:
1319 * The per-subdriver data for the chip.
Linus Walleij43c54ec2016-02-11 11:37:48 +01001320 */
1321void *gpiochip_get_data(struct gpio_chip *chip)
1322{
1323 return chip->gpiodev->data;
1324}
1325EXPORT_SYMBOL_GPL(gpiochip_get_data);
1326
1327/**
David Brownelld2876d02008-02-04 22:28:20 -08001328 * gpiochip_remove() - unregister a gpio_chip
1329 * @chip: the chip to unregister
1330 *
1331 * A gpio_chip with any GPIOs still requested may not be removed.
1332 */
abdoulaye berthee1db1702014-07-05 18:28:50 +02001333void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -08001334{
Linus Walleijff2b1352015-10-20 11:10:38 +02001335 struct gpio_device *gdev = chip->gpiodev;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001336 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001337 unsigned long flags;
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001338 unsigned i;
Johan Hovoldfab28b82015-05-04 17:10:27 +02001339 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -08001340
Linus Walleijff2b1352015-10-20 11:10:38 +02001341 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +01001342 gpiochip_sysfs_unregister(gdev);
Geert Uytterhoeven5018ada2016-12-19 18:29:23 +01001343 gpiochip_free_hogs(chip);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +08001344 /* Numb the device, cancelling all outstanding operations */
1345 gdev->chip = NULL;
Johan Hovold00acc3d2015-01-12 17:12:27 +01001346 gpiochip_irqchip_remove(chip);
Mika Westerberg6072b9d2014-03-10 14:54:53 +02001347 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +01001348 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -06001349 of_gpiochip_remove(chip);
Linus Walleij43c54ec2016-02-11 11:37:48 +01001350 /*
1351 * We accept no more calls into the driver from this point, so
1352 * NULL the driver data pointer
1353 */
1354 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -06001355
Johan Hovold6798aca2015-01-12 17:12:28 +01001356 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001357 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01001358 desc = &gdev->descs[i];
Johan Hovoldfab28b82015-05-04 17:10:27 +02001359 if (test_bit(FLAG_REQUESTED, &desc->flags))
1360 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -08001361 }
David Brownelld2876d02008-02-04 22:28:20 -08001362 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +09001363
Johan Hovoldfab28b82015-05-04 17:10:27 +02001364 if (requested)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001365 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +01001366 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +02001367
Linus Walleijff2b1352015-10-20 11:10:38 +02001368 /*
1369 * The gpiochip side puts its use of the device to rest here:
1370 * if there are no userspace clients, the chardev and device will
1371 * be removed, else it will be dangling until the last user is
1372 * gone.
1373 */
Logan Gunthorpe111379d2017-03-17 12:48:12 -06001374 cdev_device_del(&gdev->chrdev, &gdev->dev);
Linus Walleijff2b1352015-10-20 11:10:38 +02001375 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -08001376}
1377EXPORT_SYMBOL_GPL(gpiochip_remove);
1378
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301379static void devm_gpio_chip_release(struct device *dev, void *res)
1380{
1381 struct gpio_chip *chip = *(struct gpio_chip **)res;
1382
1383 gpiochip_remove(chip);
1384}
1385
1386static int devm_gpio_chip_match(struct device *dev, void *res, void *data)
1387
1388{
1389 struct gpio_chip **r = res;
1390
1391 if (!r || !*r) {
1392 WARN_ON(!r || !*r);
1393 return 0;
1394 }
1395
1396 return *r == data;
1397}
1398
1399/**
1400 * devm_gpiochip_add_data() - Resource manager piochip_add_data()
1401 * @dev: the device pointer on which irq_chip belongs to.
1402 * @chip: the chip to register, with chip->base initialized
Thierry Reding950d55f52017-07-24 16:57:22 +02001403 * @data: driver-private data associated with this chip
1404 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301405 * Context: potentially before irqs will work
1406 *
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301407 * The gpio chip automatically be released when the device is unbound.
Thierry Reding950d55f52017-07-24 16:57:22 +02001408 *
1409 * Returns:
1410 * A negative errno if the chip can't be registered, such as because the
1411 * chip->base is invalid or already associated with a different chip.
1412 * Otherwise it returns zero as a success code.
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301413 */
1414int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip,
1415 void *data)
1416{
1417 struct gpio_chip **ptr;
1418 int ret;
1419
1420 ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr),
1421 GFP_KERNEL);
1422 if (!ptr)
1423 return -ENOMEM;
1424
1425 ret = gpiochip_add_data(chip, data);
1426 if (ret < 0) {
1427 devres_free(ptr);
1428 return ret;
1429 }
1430
1431 *ptr = chip;
1432 devres_add(dev, ptr);
1433
1434 return 0;
1435}
1436EXPORT_SYMBOL_GPL(devm_gpiochip_add_data);
1437
1438/**
1439 * devm_gpiochip_remove() - Resource manager of gpiochip_remove()
1440 * @dev: device for which which resource was allocated
1441 * @chip: the chip to remove
1442 *
1443 * A gpio_chip with any GPIOs still requested may not be removed.
1444 */
1445void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip)
1446{
1447 int ret;
1448
1449 ret = devres_release(dev, devm_gpio_chip_release,
1450 devm_gpio_chip_match, chip);
Christophe JAILLET3988d662017-01-27 12:56:42 +01001451 WARN_ON(ret);
Laxman Dewangan0cf32922016-02-15 16:32:09 +05301452}
1453EXPORT_SYMBOL_GPL(devm_gpiochip_remove);
1454
Grant Likely594fa262010-06-08 07:48:16 -06001455/**
1456 * gpiochip_find() - iterator for locating a specific gpio_chip
1457 * @data: data to pass to match function
Thierry Reding950d55f52017-07-24 16:57:22 +02001458 * @match: Callback function to check gpio_chip
Grant Likely594fa262010-06-08 07:48:16 -06001459 *
1460 * Similar to bus_find_device. It returns a reference to a gpio_chip as
1461 * determined by a user supplied @match callback. The callback should return
1462 * 0 if the device doesn't match and non-zero if it does. If the callback is
1463 * non-zero, this function will return to the caller and not iterate over any
1464 * more gpio_chips.
1465 */
Grant Likely07ce8ec2012-05-18 23:01:05 -06001466struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -07001467 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -06001468 void *data))
Grant Likely594fa262010-06-08 07:48:16 -06001469{
Linus Walleijff2b1352015-10-20 11:10:38 +02001470 struct gpio_device *gdev;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001471 struct gpio_chip *chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -06001472 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -06001473
1474 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02001475 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001476 if (gdev->chip && match(gdev->chip, data)) {
1477 chip = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -06001478 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +09001479 }
Linus Walleijff2b1352015-10-20 11:10:38 +02001480
Grant Likely594fa262010-06-08 07:48:16 -06001481 spin_unlock_irqrestore(&gpio_lock, flags);
1482
1483 return chip;
1484}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -06001485EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -08001486
Alexandre Courbot79697ef2013-11-16 21:39:32 +09001487static int gpiochip_match_name(struct gpio_chip *chip, void *data)
1488{
1489 const char *name = data;
1490
1491 return !strcmp(chip->label, name);
1492}
1493
1494static struct gpio_chip *find_chip_by_name(const char *name)
1495{
1496 return gpiochip_find((void *)name, gpiochip_match_name);
1497}
1498
Linus Walleij14250522014-03-25 10:40:18 +01001499#ifdef CONFIG_GPIOLIB_IRQCHIP
1500
1501/*
1502 * The following is irqchip helper code for gpiochips.
1503 */
1504
Mika Westerberg79b804c2016-09-20 15:15:21 +03001505static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1506{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001507 if (!gpiochip->irq.need_valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001508 return 0;
1509
Thierry Redingdc7b0382017-11-07 19:15:52 +01001510 gpiochip->irq.valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio),
Mika Westerberg79b804c2016-09-20 15:15:21 +03001511 sizeof(long), GFP_KERNEL);
Thierry Redingdc7b0382017-11-07 19:15:52 +01001512 if (!gpiochip->irq.valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001513 return -ENOMEM;
1514
1515 /* Assume by default all GPIOs are valid */
Thierry Redingdc7b0382017-11-07 19:15:52 +01001516 bitmap_fill(gpiochip->irq.valid_mask, gpiochip->ngpio);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001517
1518 return 0;
1519}
1520
1521static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1522{
Thierry Redingdc7b0382017-11-07 19:15:52 +01001523 kfree(gpiochip->irq.valid_mask);
1524 gpiochip->irq.valid_mask = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001525}
1526
1527static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip,
1528 unsigned int offset)
1529{
1530 /* No mask means all valid */
Thierry Redingdc7b0382017-11-07 19:15:52 +01001531 if (likely(!gpiochip->irq.valid_mask))
Mika Westerberg79b804c2016-09-20 15:15:21 +03001532 return true;
Thierry Redingdc7b0382017-11-07 19:15:52 +01001533 return test_bit(offset, gpiochip->irq.valid_mask);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001534}
1535
Linus Walleij14250522014-03-25 10:40:18 +01001536/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001537 * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001538 * @gpiochip: the gpiochip to set the irqchip chain to
1539 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001540 * @parent_irq: the irq number corresponding to the parent IRQ for this
1541 * chained irqchip
1542 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001543 * coming out of the gpiochip. If the interrupt is nested rather than
1544 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +01001545 */
Linus Walleijd245b3f2016-11-24 10:57:25 +01001546static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip,
1547 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001548 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001549 irq_flow_handler_t parent_handler)
Linus Walleij14250522014-03-25 10:40:18 +01001550{
Linus Walleij83141a72014-09-26 13:50:12 +02001551 unsigned int offset;
1552
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001553 if (!gpiochip->irq.domain) {
Linus Walleij83141a72014-09-26 13:50:12 +02001554 chip_err(gpiochip, "called %s before setting up irqchip\n",
1555 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +02001556 return;
1557 }
1558
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001559 if (parent_handler) {
1560 if (gpiochip->can_sleep) {
1561 chip_err(gpiochip,
1562 "you cannot have chained interrupts on a "
1563 "chip that may sleep\n");
1564 return;
1565 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001566 /*
1567 * The parent irqchip is already using the chip_data for this
1568 * irqchip, so our callbacks simply use the handler_data.
1569 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +02001570 irq_set_chained_handler_and_data(parent_irq, parent_handler,
1571 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001572
Thierry Reding39e5f092017-11-07 19:15:50 +01001573 gpiochip->irq.parents = &parent_irq;
1574 gpiochip->irq.num_parents = 1;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +02001575 }
Linus Walleij83141a72014-09-26 13:50:12 +02001576
1577 /* Set the parent IRQ for all affected IRQs */
Mika Westerberg79b804c2016-09-20 15:15:21 +03001578 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1579 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1580 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001581 irq_set_parent(irq_find_mapping(gpiochip->irq.domain, offset),
Linus Walleij83141a72014-09-26 13:50:12 +02001582 parent_irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001583 }
Linus Walleij14250522014-03-25 10:40:18 +01001584}
Linus Walleijd245b3f2016-11-24 10:57:25 +01001585
1586/**
1587 * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip
1588 * @gpiochip: the gpiochip to set the irqchip chain to
1589 * @irqchip: the irqchip to chain to the gpiochip
1590 * @parent_irq: the irq number corresponding to the parent IRQ for this
1591 * chained irqchip
1592 * @parent_handler: the parent interrupt handler for the accumulated IRQ
1593 * coming out of the gpiochip. If the interrupt is nested rather than
1594 * cascaded, pass NULL in this handler argument
1595 */
1596void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
1597 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001598 unsigned int parent_irq,
Linus Walleijd245b3f2016-11-24 10:57:25 +01001599 irq_flow_handler_t parent_handler)
1600{
1601 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1602 parent_handler);
1603}
Linus Walleij14250522014-03-25 10:40:18 +01001604EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
1605
1606/**
Linus Walleijd245b3f2016-11-24 10:57:25 +01001607 * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip
1608 * @gpiochip: the gpiochip to set the irqchip nested handler to
1609 * @irqchip: the irqchip to nest to the gpiochip
1610 * @parent_irq: the irq number corresponding to the parent IRQ for this
1611 * nested irqchip
1612 */
1613void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip,
1614 struct irq_chip *irqchip,
Thierry Reding6f793092017-04-03 18:05:21 +02001615 unsigned int parent_irq)
Linus Walleijd245b3f2016-11-24 10:57:25 +01001616{
Thierry Redingdc6bafe2017-11-07 19:15:51 +01001617 if (!gpiochip->irq.nested) {
Linus Walleijd245b3f2016-11-24 10:57:25 +01001618 chip_err(gpiochip, "tried to nest a chained gpiochip\n");
1619 return;
1620 }
1621 gpiochip_set_cascaded_irqchip(gpiochip, irqchip, parent_irq,
1622 NULL);
1623}
1624EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip);
1625
1626/**
Linus Walleij14250522014-03-25 10:40:18 +01001627 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1628 * @d: the irqdomain used by this irqchip
1629 * @irq: the global irq number used by this GPIO irqchip irq
1630 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1631 *
1632 * This function will set up the mapping for a certain IRQ line on a
1633 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1634 * stored inside the gpiochip.
1635 */
1636static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1637 irq_hw_number_t hwirq)
1638{
1639 struct gpio_chip *chip = d->host_data;
1640
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001641 if (!gpiochip_irqchip_irq_valid(chip, hwirq))
1642 return -ENXIO;
1643
Linus Walleij14250522014-03-25 10:40:18 +01001644 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001645 /*
1646 * This lock class tells lockdep that GPIO irqs are in a different
1647 * category than their parents, so it won't report false recursion.
1648 */
1649 irq_set_lockdep_class(irq, chip->lock_key);
Thierry Redingc7a0aa52017-11-07 19:15:48 +01001650 irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001651 /* Chips that use nested thread handlers have them marked */
Thierry Redingdc6bafe2017-11-07 19:15:51 +01001652 if (chip->irq.nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001653 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001654 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001655
Linus Walleij1333b902014-04-23 16:45:12 +02001656 /*
1657 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1658 * is passed as default type.
1659 */
Thierry Reding3634eeb2017-11-07 19:15:49 +01001660 if (chip->irq.default_type != IRQ_TYPE_NONE)
1661 irq_set_irq_type(irq, chip->irq.default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001662
1663 return 0;
1664}
1665
Linus Walleijc3626fd2014-03-28 20:42:01 +01001666static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
1667{
Linus Walleij1c8732b2014-04-09 13:34:39 +02001668 struct gpio_chip *chip = d->host_data;
1669
Thierry Redingdc6bafe2017-11-07 19:15:51 +01001670 if (chip->irq.nested)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001671 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001672 irq_set_chip_and_handler(irq, NULL, NULL);
1673 irq_set_chip_data(irq, NULL);
1674}
1675
Linus Walleij14250522014-03-25 10:40:18 +01001676static const struct irq_domain_ops gpiochip_domain_ops = {
1677 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001678 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001679 /* Virtually all GPIO irqchips are twocell:ed */
1680 .xlate = irq_domain_xlate_twocell,
1681};
1682
1683static int gpiochip_irq_reqres(struct irq_data *d)
1684{
1685 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1686
Linus Walleijff2b1352015-10-20 11:10:38 +02001687 if (!try_module_get(chip->gpiodev->owner))
Grygorii Strashko5b76e792015-06-25 20:30:50 +03001688 return -ENODEV;
1689
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001690 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +01001691 chip_err(chip,
1692 "unable to lock HW IRQ %lu for IRQ\n",
1693 d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001694 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001695 return -EINVAL;
1696 }
1697 return 0;
1698}
1699
1700static void gpiochip_irq_relres(struct irq_data *d)
1701{
1702 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
1703
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001704 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleijff2b1352015-10-20 11:10:38 +02001705 module_put(chip->gpiodev->owner);
Linus Walleij14250522014-03-25 10:40:18 +01001706}
1707
1708static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
1709{
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001710 if (!gpiochip_irqchip_irq_valid(chip, offset))
1711 return -ENXIO;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001712 return irq_create_mapping(chip->irq.domain, offset);
Linus Walleij14250522014-03-25 10:40:18 +01001713}
1714
1715/**
1716 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
1717 * @gpiochip: the gpiochip to remove the irqchip from
1718 *
1719 * This is called only from gpiochip_remove()
1720 */
1721static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
1722{
Thierry Reding39e5f092017-11-07 19:15:50 +01001723 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001724
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001725 acpi_gpiochip_free_interrupts(gpiochip);
1726
Thierry Reding39e5f092017-11-07 19:15:50 +01001727 if (gpiochip->irq.num_parents > 0) {
1728 struct gpio_irq_chip *irq = &gpiochip->irq;
1729 unsigned int i;
1730
1731 for (i = 0; i < irq->num_parents; i++)
1732 irq_set_chained_handler_and_data(irq->parents[i],
1733 NULL, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001734 }
1735
Linus Walleijc3626fd2014-03-28 20:42:01 +01001736 /* Remove all IRQ mappings and delete the domain */
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001737 if (gpiochip->irq.domain) {
Thierry Reding39e5f092017-11-07 19:15:50 +01001738 unsigned int irq;
1739
Mika Westerberg79b804c2016-09-20 15:15:21 +03001740 for (offset = 0; offset < gpiochip->ngpio; offset++) {
1741 if (!gpiochip_irqchip_irq_valid(gpiochip, offset))
1742 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001743
1744 irq = irq_find_mapping(gpiochip->irq.domain, offset);
1745 irq_dispose_mapping(irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001746 }
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001747
1748 irq_domain_remove(gpiochip->irq.domain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001749 }
Linus Walleij14250522014-03-25 10:40:18 +01001750
Thierry Redingda80ff82017-11-07 19:15:46 +01001751 if (gpiochip->irq.chip) {
1752 gpiochip->irq.chip->irq_request_resources = NULL;
1753 gpiochip->irq.chip->irq_release_resources = NULL;
1754 gpiochip->irq.chip = NULL;
Linus Walleij14250522014-03-25 10:40:18 +01001755 }
Mika Westerberg79b804c2016-09-20 15:15:21 +03001756
1757 gpiochip_irqchip_free_valid_mask(gpiochip);
Linus Walleij14250522014-03-25 10:40:18 +01001758}
1759
1760/**
Linus Walleij739e6f52017-01-11 13:37:07 +01001761 * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip
Linus Walleij14250522014-03-25 10:40:18 +01001762 * @gpiochip: the gpiochip to add the irqchip to
1763 * @irqchip: the irqchip to add to the gpiochip
1764 * @first_irq: if not dynamically assigned, the base (first) IRQ to
1765 * allocate gpiochip irqs from
1766 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +02001767 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
1768 * to have the core avoid setting up any default type in the hardware.
Linus Walleijd245b3f2016-11-24 10:57:25 +01001769 * @nested: whether this is a nested irqchip calling handle_nested_irq()
1770 * in its IRQ handler
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001771 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +01001772 *
1773 * This function closely associates a certain irqchip with a certain
1774 * gpiochip, providing an irq domain to translate the local IRQs to
1775 * global irqs in the gpiolib core, and making sure that the gpiochip
1776 * is passed as chip data to all related functions. Driver callbacks
Linus Walleij09dd5f92015-12-07 15:31:58 +01001777 * need to use gpiochip_get_data() to get their local state containers back
Linus Walleij14250522014-03-25 10:40:18 +01001778 * from the gpiochip passed as chip data. An irqdomain will be stored
1779 * in the gpiochip that shall be used by the driver to handle IRQ number
1780 * translation. The gpiochip will need to be initialized and registered
1781 * before calling this function.
1782 *
Linus Walleijc3626fd2014-03-28 20:42:01 +01001783 * This function will handle two cell:ed simple IRQs and assumes all
1784 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +01001785 * need to be open coded.
1786 */
Linus Walleij739e6f52017-01-11 13:37:07 +01001787int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip,
1788 struct irq_chip *irqchip,
1789 unsigned int first_irq,
1790 irq_flow_handler_t handler,
1791 unsigned int type,
1792 bool nested,
1793 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +01001794{
1795 struct device_node *of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001796
1797 if (!gpiochip || !irqchip)
1798 return -EINVAL;
1799
Linus Walleij58383c782015-11-04 09:56:26 +01001800 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +01001801 pr_err("missing gpiochip .dev parent pointer\n");
1802 return -EINVAL;
1803 }
Thierry Redingdc6bafe2017-11-07 19:15:51 +01001804 gpiochip->irq.nested = nested;
Linus Walleij58383c782015-11-04 09:56:26 +01001805 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +01001806#ifdef CONFIG_OF_GPIO
1807 /*
Colin Cronin20a8a962015-05-18 11:41:43 -07001808 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +08001809 * FIXME: get rid of this and use gpiochip->parent->of_node
1810 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +01001811 */
1812 if (gpiochip->of_node)
1813 of_node = gpiochip->of_node;
1814#endif
Marc Zyngier332e99d2016-09-07 09:12:11 +01001815 /*
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001816 * Specifying a default trigger is a terrible idea if DT or ACPI is
Marc Zyngier332e99d2016-09-07 09:12:11 +01001817 * used to configure the interrupts, as you may end-up with
1818 * conflicting triggers. Tell the user, and reset to NONE.
1819 */
1820 if (WARN(of_node && type != IRQ_TYPE_NONE,
Rob Herring7eb6ce22017-07-18 16:43:03 -05001821 "%pOF: Ignoring %d default trigger\n", of_node, type))
Marc Zyngier332e99d2016-09-07 09:12:11 +01001822 type = IRQ_TYPE_NONE;
Mika Westerberg0a1e0052016-09-12 14:29:51 +03001823 if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) {
1824 acpi_handle_warn(ACPI_HANDLE(gpiochip->parent),
1825 "Ignoring %d default trigger\n", type);
1826 type = IRQ_TYPE_NONE;
1827 }
Marc Zyngier332e99d2016-09-07 09:12:11 +01001828
Thierry Redingda80ff82017-11-07 19:15:46 +01001829 gpiochip->irq.chip = irqchip;
Thierry Redingc7a0aa52017-11-07 19:15:48 +01001830 gpiochip->irq.handler = handler;
Thierry Reding3634eeb2017-11-07 19:15:49 +01001831 gpiochip->irq.default_type = type;
Linus Walleij14250522014-03-25 10:40:18 +01001832 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001833 gpiochip->lock_key = lock_key;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001834 gpiochip->irq.domain = irq_domain_add_simple(of_node,
Linus Walleij14250522014-03-25 10:40:18 +01001835 gpiochip->ngpio, first_irq,
1836 &gpiochip_domain_ops, gpiochip);
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001837 if (!gpiochip->irq.domain) {
Thierry Redingda80ff82017-11-07 19:15:46 +01001838 gpiochip->irq.chip = NULL;
Linus Walleij14250522014-03-25 10:40:18 +01001839 return -EINVAL;
1840 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +02001841
1842 /*
1843 * It is possible for a driver to override this, but only if the
1844 * alternative functions are both implemented.
1845 */
1846 if (!irqchip->irq_request_resources &&
1847 !irqchip->irq_release_resources) {
1848 irqchip->irq_request_resources = gpiochip_irq_reqres;
1849 irqchip->irq_release_resources = gpiochip_irq_relres;
1850 }
Linus Walleij14250522014-03-25 10:40:18 +01001851
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001852 acpi_gpiochip_request_interrupts(gpiochip);
1853
Linus Walleij14250522014-03-25 10:40:18 +01001854 return 0;
1855}
Linus Walleij739e6f52017-01-11 13:37:07 +01001856EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key);
Linus Walleij14250522014-03-25 10:40:18 +01001857
1858#else /* CONFIG_GPIOLIB_IRQCHIP */
1859
1860static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
Mika Westerberg79b804c2016-09-20 15:15:21 +03001861static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip)
1862{
1863 return 0;
1864}
1865static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1866{ }
Linus Walleij14250522014-03-25 10:40:18 +01001867
1868#endif /* CONFIG_GPIOLIB_IRQCHIP */
1869
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001870/**
1871 * gpiochip_generic_request() - request the gpio function for a pin
1872 * @chip: the gpiochip owning the GPIO
1873 * @offset: the offset of the GPIO to request for GPIO function
1874 */
1875int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1876{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001877 return pinctrl_request_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001878}
1879EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1880
1881/**
1882 * gpiochip_generic_free() - free the gpio function from a pin
1883 * @chip: the gpiochip to request the gpio function for
1884 * @offset: the offset of the GPIO to free from GPIO function
1885 */
1886void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1887{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001888 pinctrl_free_gpio(chip->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001889}
1890EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1891
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001892/**
1893 * gpiochip_generic_config() - apply configuration for a pin
1894 * @chip: the gpiochip owning the GPIO
1895 * @offset: the offset of the GPIO to apply the configuration
1896 * @config: the configuration to be applied
1897 */
1898int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset,
1899 unsigned long config)
1900{
1901 return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config);
1902}
1903EXPORT_SYMBOL_GPL(gpiochip_generic_config);
1904
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301905#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001906
Linus Walleij3f0f8672012-11-20 12:40:15 +01001907/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001908 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
1909 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001910 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001911 * @gpio_offset: the start offset in the current gpio_chip number space
1912 * @pin_group: name of the pin group inside the pin controller
1913 */
1914int gpiochip_add_pingroup_range(struct gpio_chip *chip,
1915 struct pinctrl_dev *pctldev,
1916 unsigned int gpio_offset, const char *pin_group)
1917{
1918 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001919 struct gpio_device *gdev = chip->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001920 int ret;
1921
1922 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1923 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001924 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001925 return -ENOMEM;
1926 }
1927
1928 /* Use local offset as range ID */
1929 pin_range->range.id = gpio_offset;
1930 pin_range->range.gc = chip;
1931 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001932 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001933 pin_range->pctldev = pctldev;
1934
1935 ret = pinctrl_get_group_pins(pctldev, pin_group,
1936 &pin_range->range.pins,
1937 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001938 if (ret < 0) {
1939 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001940 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001941 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001942
1943 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1944
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001945 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
1946 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001947 pinctrl_dev_get_devname(pctldev), pin_group);
1948
Linus Walleij20ec3e32016-02-11 11:03:06 +01001949 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001950
1951 return 0;
1952}
1953EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1954
1955/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001956 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
1957 * @chip: the gpiochip to add the range for
Thierry Reding950d55f52017-07-24 16:57:22 +02001958 * @pinctl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001959 * @gpio_offset: the start offset in the current gpio_chip number space
1960 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001961 * @npins: the number of pins from the offset of each pin space (GPIO and
1962 * pin controller) to accumulate in this range
Thierry Reding950d55f52017-07-24 16:57:22 +02001963 *
1964 * Returns:
1965 * 0 on success, or a negative error-code on failure.
Linus Walleij3f0f8672012-11-20 12:40:15 +01001966 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001967int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001968 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001969 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301970{
1971 struct gpio_pin_range *pin_range;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001972 struct gpio_device *gdev = chip->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001973 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301974
Linus Walleij3f0f8672012-11-20 12:40:15 +01001975 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301976 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001977 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001978 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301979 }
1980
Linus Walleij3f0f8672012-11-20 12:40:15 +01001981 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001982 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001983 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301984 pin_range->range.name = chip->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001985 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001986 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301987 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001988 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301989 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001990 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001991 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001992 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001993 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001994 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001995 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001996 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
1997 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001998 pinctl_name,
1999 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302000
Linus Walleij20ec3e32016-02-11 11:03:06 +01002001 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01002002
2003 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302004}
Linus Walleij165adc92012-11-06 14:49:39 +01002005EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302006
Linus Walleij3f0f8672012-11-20 12:40:15 +01002007/**
2008 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
2009 * @chip: the chip to remove all the mappings for
2010 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302011void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
2012{
2013 struct gpio_pin_range *pin_range, *tmp;
Linus Walleij20ec3e32016-02-11 11:03:06 +01002014 struct gpio_device *gdev = chip->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302015
Linus Walleij20ec3e32016-02-11 11:03:06 +01002016 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302017 list_del(&pin_range->node);
2018 pinctrl_remove_gpio_range(pin_range->pctldev,
2019 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01002020 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302021 }
2022}
Linus Walleij165adc92012-11-06 14:49:39 +01002023EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
2024
2025#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05302026
David Brownelld2876d02008-02-04 22:28:20 -08002027/* These "optional" allocation calls help prevent drivers from stomping
2028 * on each other, and help provide better diagnostics in debugfs.
2029 * They're called even less than the "set direction" calls.
2030 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002031static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08002032{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002033 struct gpio_chip *chip = desc->gdev->chip;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002034 int status;
David Brownelld2876d02008-02-04 22:28:20 -08002035 unsigned long flags;
2036
2037 spin_lock_irqsave(&gpio_lock, flags);
2038
David Brownelld2876d02008-02-04 22:28:20 -08002039 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07002040 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08002041 */
2042
2043 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
2044 desc_set_label(desc, label ? : "?");
2045 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002046 } else {
David Brownelld2876d02008-02-04 22:28:20 -08002047 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -08002048 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002049 }
2050
2051 if (chip->request) {
2052 /* chip->request may sleep */
2053 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002054 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002055 spin_lock_irqsave(&gpio_lock, flags);
2056
2057 if (status < 0) {
2058 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07002059 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002060 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -07002061 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07002062 }
Mathias Nyman80b0a602012-10-24 17:25:27 +03002063 if (chip->get_direction) {
2064 /* chip->get_direction may sleep */
2065 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002066 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03002067 spin_lock_irqsave(&gpio_lock, flags);
2068 }
David Brownelld2876d02008-02-04 22:28:20 -08002069done:
Mika Westerberg77c2d792014-03-10 14:54:50 +02002070 spin_unlock_irqrestore(&gpio_lock, flags);
2071 return status;
2072}
2073
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002074/*
2075 * This descriptor validation needs to be inserted verbatim into each
2076 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02002077 * macro to avoid endless duplication. If the desc is NULL it is an
2078 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002079 */
2080#define VALIDATE_DESC(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002081 if (!desc) \
2082 return 0; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002083 if (IS_ERR(desc)) { \
2084 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2085 return PTR_ERR(desc); \
2086 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002087 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002088 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002089 return -EINVAL; \
2090 } \
2091 if ( !desc->gdev->chip ) { \
2092 dev_warn(&desc->gdev->dev, \
2093 "%s: backing chip is gone\n", __func__); \
2094 return 0; \
2095 } } while (0)
2096
2097#define VALIDATE_DESC_VOID(desc) do { \
Linus Walleij54d77192016-05-30 16:48:39 +02002098 if (!desc) \
2099 return; \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002100 if (IS_ERR(desc)) { \
2101 pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \
2102 return; \
2103 } \
Linus Walleij54d77192016-05-30 16:48:39 +02002104 if (!desc->gdev) { \
Linus Walleijbfbbe442016-06-16 11:55:55 +02002105 pr_warn("%s: invalid GPIO (no device)\n", __func__); \
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002106 return; \
2107 } \
2108 if (!desc->gdev->chip) { \
2109 dev_warn(&desc->gdev->dev, \
2110 "%s: backing chip is gone\n", __func__); \
2111 return; \
2112 } } while (0)
2113
2114
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002115int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002116{
2117 int status = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002118 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002119
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002120 VALIDATE_DESC(desc);
2121 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002122
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002123 if (try_module_get(gdev->owner)) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002124 status = gpiod_request_commit(desc, label);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002125 if (status < 0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002126 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002127 else
2128 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002129 }
2130
David Brownelld2876d02008-02-04 22:28:20 -08002131 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +02002132 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002133
David Brownelld2876d02008-02-04 22:28:20 -08002134 return status;
2135}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002136
Linus Walleijfac9d882017-09-26 20:58:28 +02002137static bool gpiod_free_commit(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002138{
Mika Westerberg77c2d792014-03-10 14:54:50 +02002139 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08002140 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -07002141 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002142
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07002143 might_sleep();
2144
Alexandre Courbot372e7222013-02-03 01:29:29 +09002145 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07002146
David Brownelld2876d02008-02-04 22:28:20 -08002147 spin_lock_irqsave(&gpio_lock, flags);
2148
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002149 chip = desc->gdev->chip;
David Brownell35e8bb52008-10-15 22:03:16 -07002150 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
2151 if (chip->free) {
2152 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07002153 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002154 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07002155 spin_lock_irqsave(&gpio_lock, flags);
2156 }
David Brownelld2876d02008-02-04 22:28:20 -08002157 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08002158 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07002159 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302160 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302161 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002162 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002163 ret = true;
2164 }
David Brownelld2876d02008-02-04 22:28:20 -08002165
2166 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002167 return ret;
2168}
2169
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09002170void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002171{
Linus Walleijfac9d882017-09-26 20:58:28 +02002172 if (desc && desc->gdev && gpiod_free_commit(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002173 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01002174 put_device(&desc->gdev->dev);
2175 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02002176 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01002177 }
David Brownelld2876d02008-02-04 22:28:20 -08002178}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002179
David Brownelld2876d02008-02-04 22:28:20 -08002180/**
2181 * gpiochip_is_requested - return string iff signal was requested
2182 * @chip: controller managing the signal
2183 * @offset: of signal within controller's 0..(ngpio - 1) range
2184 *
2185 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002186 * The string returned is the label passed to gpio_request(); if none has been
2187 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002188 *
2189 * This function is for use by GPIO controller drivers. The label can
2190 * help with diagnostics, and knowing that the signal is used as a GPIO
2191 * can help avoid accidentally multiplexing it to another controller.
2192 */
2193const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
2194{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002195 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002196
Dirk Behme48b59532015-08-18 18:02:32 +02002197 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002198 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002199
Linus Walleij1c3cdb12016-02-09 13:51:59 +01002200 desc = &chip->gpiodev->descs[offset];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002201
Alexandre Courbot372e7222013-02-03 01:29:29 +09002202 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002203 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002204 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002205}
2206EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2207
Mika Westerberg77c2d792014-03-10 14:54:50 +02002208/**
2209 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
Thierry Reding950d55f52017-07-24 16:57:22 +02002210 * @chip: GPIO chip
2211 * @hwnum: hardware number of the GPIO for which to request the descriptor
Mika Westerberg77c2d792014-03-10 14:54:50 +02002212 * @label: label for the GPIO
2213 *
2214 * Function allows GPIO chip drivers to request and use their own GPIO
2215 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2216 * function will not increase reference count of the GPIO chip module. This
2217 * allows the GPIO chip module to be unloaded as needed (we assume that the
2218 * GPIO chip driver handles freeing the GPIOs it has requested).
Thierry Reding950d55f52017-07-24 16:57:22 +02002219 *
2220 * Returns:
2221 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2222 * code on failure.
Mika Westerberg77c2d792014-03-10 14:54:50 +02002223 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002224struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
2225 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002226{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002227 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
2228 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002229
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002230 if (IS_ERR(desc)) {
2231 chip_err(chip, "failed to get GPIO descriptor\n");
2232 return desc;
2233 }
2234
Linus Walleijfac9d882017-09-26 20:58:28 +02002235 err = gpiod_request_commit(desc, label);
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002236 if (err < 0)
2237 return ERR_PTR(err);
2238
2239 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002240}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002241EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002242
2243/**
2244 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2245 * @desc: GPIO descriptor to free
2246 *
2247 * Function frees the given GPIO requested previously with
2248 * gpiochip_request_own_desc().
2249 */
2250void gpiochip_free_own_desc(struct gpio_desc *desc)
2251{
2252 if (desc)
Linus Walleijfac9d882017-09-26 20:58:28 +02002253 gpiod_free_commit(desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002254}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002255EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002256
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002257/*
2258 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002259 * some cases this is done in early boot, before IRQs are enabled.
2260 *
2261 * As a rule these aren't called more than once (except for drivers
2262 * using the open-drain emulation idiom) so these are natural places
2263 * to accumulate extra debugging checks. Note that we can't (yet)
2264 * rely on gpio_request() having been called beforehand.
2265 */
2266
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002267/**
2268 * gpiod_direction_input - set the GPIO direction to input
2269 * @desc: GPIO to set to input
2270 *
2271 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2272 * be called safely on it.
2273 *
2274 * Return 0 in case of success, else an error code.
2275 */
2276int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002277{
David Brownelld2876d02008-02-04 22:28:20 -08002278 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08002279 int status = -EINVAL;
2280
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002281 VALIDATE_DESC(desc);
2282 chip = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002283
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002284 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002285 gpiod_warn(desc,
2286 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02002287 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002288 return -EIO;
2289 }
2290
Alexandre Courbotd82da792014-07-22 16:17:43 +09002291 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08002292 if (status == 0)
2293 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002294
Alexandre Courbot372e7222013-02-03 01:29:29 +09002295 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002296
David Brownelld2876d02008-02-04 22:28:20 -08002297 return status;
2298}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002299EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002300
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002301static int gpio_set_drive_single_ended(struct gpio_chip *gc, unsigned offset,
2302 enum pin_config_param mode)
2303{
2304 unsigned long config = { PIN_CONF_PACKED(mode, 0) };
2305
2306 return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP;
2307}
2308
Linus Walleijfac9d882017-09-26 20:58:28 +02002309static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002310{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002311 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002312 int val = !!value;
Linus Walleijc663e5f2016-03-22 10:51:16 +01002313 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08002314
Linus Walleijc663e5f2016-03-22 10:51:16 +01002315 if (!gc->set || !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002316 gpiod_warn(desc,
2317 "%s: missing set() or direction_output() operations\n",
2318 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002319 return -EIO;
2320 }
2321
Linus Walleijad177312016-11-13 23:02:44 +01002322 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002323 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002324 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002325 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002326 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2327 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002328}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002329
2330/**
2331 * gpiod_direction_output_raw - set the GPIO direction to output
2332 * @desc: GPIO to set to output
2333 * @value: initial output value of the GPIO
2334 *
2335 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2336 * be called safely on it. The initial value of the output must be specified
2337 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2338 *
2339 * Return 0 in case of success, else an error code.
2340 */
2341int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2342{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002343 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02002344 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002345}
2346EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2347
2348/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302349 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002350 * @desc: GPIO to set to output
2351 * @value: initial output value of the GPIO
2352 *
2353 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2354 * be called safely on it. The initial value of the output must be specified
2355 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2356 * account.
2357 *
2358 * Return 0 in case of success, else an error code.
2359 */
2360int gpiod_direction_output(struct gpio_desc *desc, int value)
2361{
Linus Walleij02e47982017-09-26 21:20:23 +02002362 struct gpio_chip *gc = desc->gdev->chip;
2363 int ret;
2364
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002365 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002366 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2367 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002368 else
2369 value = !!value;
Linus Walleij02e47982017-09-26 21:20:23 +02002370
2371 /* GPIOs used for IRQs shall not be set as output */
2372 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
2373 gpiod_err(desc,
2374 "%s: tried to set a GPIO tied to an IRQ as output\n",
2375 __func__);
2376 return -EIO;
2377 }
2378
2379 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2380 /* First see if we can enable open drain in hardware */
2381 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2382 PIN_CONFIG_DRIVE_OPEN_DRAIN);
2383 if (!ret)
2384 goto set_output_value;
2385 /* Emulate open drain by not actively driving the line high */
2386 if (value)
2387 return gpiod_direction_input(desc);
2388 }
2389 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
2390 ret = gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2391 PIN_CONFIG_DRIVE_OPEN_SOURCE);
2392 if (!ret)
2393 goto set_output_value;
2394 /* Emulate open source by not actively driving the line low */
2395 if (!value)
2396 return gpiod_direction_input(desc);
2397 } else {
2398 gpio_set_drive_single_ended(gc, gpio_chip_hwgpio(desc),
2399 PIN_CONFIG_DRIVE_PUSH_PULL);
2400 }
2401
2402set_output_value:
Linus Walleijfac9d882017-09-26 20:58:28 +02002403 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002404}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002405EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002406
Felipe Balbic4b5be92010-05-26 14:42:23 -07002407/**
Thierry Reding950d55f52017-07-24 16:57:22 +02002408 * gpiod_set_debounce - sets @debounce time for a GPIO
2409 * @desc: descriptor of the GPIO for which to set debounce time
2410 * @debounce: debounce time in microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002411 *
Thierry Reding950d55f52017-07-24 16:57:22 +02002412 * Returns:
2413 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2414 * debounce time.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002415 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002416int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002417{
Felipe Balbic4b5be92010-05-26 14:42:23 -07002418 struct gpio_chip *chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002419 unsigned long config;
Felipe Balbic4b5be92010-05-26 14:42:23 -07002420
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002421 VALIDATE_DESC(desc);
2422 chip = desc->gdev->chip;
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002423 if (!chip->set || !chip->set_config) {
Mark Brown6424de52013-09-09 10:33:49 +01002424 gpiod_dbg(desc,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002425 "%s: missing set() or set_config() operations\n",
Mark Brown6424de52013-09-09 10:33:49 +01002426 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02002427 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002428 }
2429
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002430 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
2431 return chip->set_config(chip, gpio_chip_hwgpio(desc), config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002432}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002433EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002434
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002435/**
2436 * gpiod_is_active_low - test whether a GPIO is active-low or not
2437 * @desc: the gpio descriptor to test
2438 *
2439 * Returns 1 if the GPIO is active-low, 0 otherwise.
2440 */
2441int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002442{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002443 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002444 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002445}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002446EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002447
2448/* I/O calls are only valid after configuration completed; the relevant
2449 * "is this a valid GPIO" error checks should already have been done.
2450 *
2451 * "Get" operations are often inlinable as reading a pin value register,
2452 * and masking the relevant bit in that register.
2453 *
2454 * When "set" operations are inlinable, they involve writing that mask to
2455 * one register to set a low value, or a different register to set it high.
2456 * Otherwise locking is needed, so there may be little value to inlining.
2457 *
2458 *------------------------------------------------------------------------
2459 *
2460 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2461 * have requested the GPIO. That can include implicit requesting by
2462 * a direction setting call. Marking a gpio as requested locks its chip
2463 * in memory, guaranteeing that these table lookups need no more locking
2464 * and that gpiochip_remove() will fail.
2465 *
2466 * REVISIT when debugging, consider adding some instrumentation to ensure
2467 * that the GPIO was actually requested.
2468 */
2469
Linus Walleijfac9d882017-09-26 20:58:28 +02002470static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002471{
2472 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002473 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002474 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002475
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002476 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002477 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002478 value = chip->get ? chip->get(chip, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002479 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002480 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002481 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002482}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002483
Lukas Wunnereec1d562017-10-12 12:40:10 +02002484static int gpio_chip_get_multiple(struct gpio_chip *chip,
2485 unsigned long *mask, unsigned long *bits)
2486{
2487 if (chip->get_multiple) {
2488 return chip->get_multiple(chip, mask, bits);
2489 } else if (chip->get) {
2490 int i, value;
2491
2492 for_each_set_bit(i, mask, chip->ngpio) {
2493 value = chip->get(chip, i);
2494 if (value < 0)
2495 return value;
2496 __assign_bit(i, bits, value);
2497 }
2498 return 0;
2499 }
2500 return -EIO;
2501}
2502
2503int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2504 unsigned int array_size,
2505 struct gpio_desc **desc_array,
2506 int *value_array)
2507{
2508 int i = 0;
2509
2510 while (i < array_size) {
2511 struct gpio_chip *chip = desc_array[i]->gdev->chip;
2512 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2513 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2514 int first, j, ret;
2515
2516 if (!can_sleep)
2517 WARN_ON(chip->can_sleep);
2518
2519 /* collect all inputs belonging to the same chip */
2520 first = i;
2521 memset(mask, 0, sizeof(mask));
2522 do {
2523 const struct gpio_desc *desc = desc_array[i];
2524 int hwgpio = gpio_chip_hwgpio(desc);
2525
2526 __set_bit(hwgpio, mask);
2527 i++;
2528 } while ((i < array_size) &&
2529 (desc_array[i]->gdev->chip == chip));
2530
2531 ret = gpio_chip_get_multiple(chip, mask, bits);
2532 if (ret)
2533 return ret;
2534
2535 for (j = first; j < i; j++) {
2536 const struct gpio_desc *desc = desc_array[j];
2537 int hwgpio = gpio_chip_hwgpio(desc);
2538 int value = test_bit(hwgpio, bits);
2539
2540 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2541 value = !value;
2542 value_array[j] = value;
2543 trace_gpio_value(desc_to_gpio(desc), 1, value);
2544 }
2545 }
2546 return 0;
2547}
2548
David Brownelld2876d02008-02-04 22:28:20 -08002549/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002550 * gpiod_get_raw_value() - return a gpio's raw value
2551 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002552 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002553 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002554 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002555 *
2556 * This function should be called from contexts where we cannot sleep, and will
2557 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002558 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002559int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002560{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002561 VALIDATE_DESC(desc);
David Brownelld2876d02008-02-04 22:28:20 -08002562 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002563 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02002564 return gpiod_get_raw_value_commit(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002565}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002566EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002567
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002568/**
2569 * gpiod_get_value() - return a gpio's value
2570 * @desc: gpio whose value will be returned
2571 *
2572 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002573 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002574 *
2575 * This function should be called from contexts where we cannot sleep, and will
2576 * complain if the GPIO chip functions potentially sleep.
2577 */
2578int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002579{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002580 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002581
2582 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002583 /* Should be using gpio_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002584 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002585
Linus Walleijfac9d882017-09-26 20:58:28 +02002586 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002587 if (value < 0)
2588 return value;
2589
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002590 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2591 value = !value;
2592
2593 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002594}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002595EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002596
Lukas Wunnereec1d562017-10-12 12:40:10 +02002597/**
2598 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
2599 * @array_size: number of elements in the descriptor / value arrays
2600 * @desc_array: array of GPIO descriptors whose values will be read
2601 * @value_array: array to store the read values
2602 *
2603 * Read the raw values of the GPIOs, i.e. the values of the physical lines
2604 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
2605 * else an error code.
2606 *
2607 * This function should be called from contexts where we cannot sleep,
2608 * and it will complain if the GPIO chip functions potentially sleep.
2609 */
2610int gpiod_get_raw_array_value(unsigned int array_size,
2611 struct gpio_desc **desc_array, int *value_array)
2612{
2613 if (!desc_array)
2614 return -EINVAL;
2615 return gpiod_get_array_value_complex(true, false, array_size,
2616 desc_array, value_array);
2617}
2618EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
2619
2620/**
2621 * gpiod_get_array_value() - read values from an array of GPIOs
2622 * @array_size: number of elements in the descriptor / value arrays
2623 * @desc_array: array of GPIO descriptors whose values will be read
2624 * @value_array: array to store the read values
2625 *
2626 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2627 * into account. Return 0 in case of success, else an error code.
2628 *
2629 * This function should be called from contexts where we cannot sleep,
2630 * and it will complain if the GPIO chip functions potentially sleep.
2631 */
2632int gpiod_get_array_value(unsigned int array_size,
2633 struct gpio_desc **desc_array, int *value_array)
2634{
2635 if (!desc_array)
2636 return -EINVAL;
2637 return gpiod_get_array_value_complex(false, false, array_size,
2638 desc_array, value_array);
2639}
2640EXPORT_SYMBOL_GPL(gpiod_get_array_value);
2641
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302642/*
Linus Walleijfac9d882017-09-26 20:58:28 +02002643 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002644 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002645 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302646 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002647static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302648{
2649 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002650 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002651 int offset = gpio_chip_hwgpio(desc);
2652
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302653 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002654 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302655 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002656 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302657 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002658 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302659 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002660 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302661 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002662 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302663 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002664 gpiod_err(desc,
2665 "%s: Error in set_value for open drain err %d\n",
2666 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302667}
2668
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302669/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002670 * _gpio_set_open_source_value() - Set the open source gpio's value.
2671 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002672 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302673 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002674static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302675{
2676 int err = 0;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002677 struct gpio_chip *chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002678 int offset = gpio_chip_hwgpio(desc);
2679
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302680 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002681 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302682 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002683 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302684 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09002685 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302686 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002687 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302688 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09002689 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302690 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002691 gpiod_err(desc,
2692 "%s: Error in set_value for open source err %d\n",
2693 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302694}
2695
Linus Walleijfac9d882017-09-26 20:58:28 +02002696static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002697{
2698 struct gpio_chip *chip;
2699
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002700 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002701 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleij02e47982017-09-26 21:20:23 +02002702 chip->set(chip, gpio_chip_hwgpio(desc), value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002703}
2704
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002705/*
2706 * set multiple outputs on the same chip;
2707 * use the chip's set_multiple function if available;
2708 * otherwise set the outputs sequentially;
2709 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2710 * defines which outputs are to be changed
2711 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2712 * defines the values the outputs specified by mask are to be set to
2713 */
2714static void gpio_chip_set_multiple(struct gpio_chip *chip,
2715 unsigned long *mask, unsigned long *bits)
2716{
2717 if (chip->set_multiple) {
2718 chip->set_multiple(chip, mask, bits);
2719 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02002720 unsigned int i;
2721
2722 /* set outputs if the corresponding mask bit is set */
2723 for_each_set_bit(i, mask, chip->ngpio)
2724 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002725 }
2726}
2727
Linus Walleij44c72882016-04-24 11:36:59 +02002728void gpiod_set_array_value_complex(bool raw, bool can_sleep,
2729 unsigned int array_size,
2730 struct gpio_desc **desc_array,
2731 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002732{
2733 int i = 0;
2734
2735 while (i < array_size) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002736 struct gpio_chip *chip = desc_array[i]->gdev->chip;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002737 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
2738 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
2739 int count = 0;
2740
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002741 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002742 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002743
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002744 memset(mask, 0, sizeof(mask));
2745 do {
2746 struct gpio_desc *desc = desc_array[i];
2747 int hwgpio = gpio_chip_hwgpio(desc);
2748 int value = value_array[i];
2749
2750 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2751 value = !value;
2752 trace_gpio_value(desc_to_gpio(desc), 0, value);
2753 /*
2754 * collect all normal outputs belonging to the same chip
2755 * open drain and open source outputs are set individually
2756 */
Linus Walleij02e47982017-09-26 21:20:23 +02002757 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002758 gpio_set_open_drain_value_commit(desc, value);
Linus Walleij02e47982017-09-26 21:20:23 +02002759 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002760 gpio_set_open_source_value_commit(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002761 } else {
2762 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002763 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002764 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002765 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002766 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002767 count++;
2768 }
2769 i++;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002770 } while ((i < array_size) &&
2771 (desc_array[i]->gdev->chip == chip));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002772 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002773 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002774 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002775 }
2776}
2777
David Brownelld2876d02008-02-04 22:28:20 -08002778/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002779 * gpiod_set_raw_value() - assign a gpio's raw value
2780 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002781 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002782 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002783 * Set the raw value of the GPIO, i.e. the value of its physical line without
2784 * regard for its ACTIVE_LOW status.
2785 *
2786 * This function should be called from contexts where we cannot sleep, and will
2787 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002788 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002789void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002790{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002791 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002792 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002793 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02002794 gpiod_set_raw_value_commit(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002795}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002796EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002797
2798/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002799 * gpiod_set_value() - assign a gpio's value
2800 * @desc: gpio whose value will be assigned
2801 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002802 *
Linus Walleij02e47982017-09-26 21:20:23 +02002803 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
2804 * OPEN_DRAIN and OPEN_SOURCE flags into account.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002805 *
2806 * This function should be called from contexts where we cannot sleep, and will
2807 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002808 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002809void gpiod_set_value(struct gpio_desc *desc, int value)
2810{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002811 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1cfab8f2016-03-14 16:24:12 +01002812 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002813 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002814 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2815 value = !value;
Linus Walleij02e47982017-09-26 21:20:23 +02002816 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2817 gpio_set_open_drain_value_commit(desc, value);
2818 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2819 gpio_set_open_source_value_commit(desc, value);
2820 else
2821 gpiod_set_raw_value_commit(desc, value);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002822}
2823EXPORT_SYMBOL_GPL(gpiod_set_value);
2824
2825/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002826 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002827 * @array_size: number of elements in the descriptor / value arrays
2828 * @desc_array: array of GPIO descriptors whose values will be assigned
2829 * @value_array: array of values to assign
2830 *
2831 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2832 * without regard for their ACTIVE_LOW status.
2833 *
2834 * This function should be called from contexts where we cannot sleep, and will
2835 * complain if the GPIO chip functions potentially sleep.
2836 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002837void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002838 struct gpio_desc **desc_array, int *value_array)
2839{
2840 if (!desc_array)
2841 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002842 gpiod_set_array_value_complex(true, false, array_size, desc_array,
2843 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002844}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002845EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002846
2847/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002848 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002849 * @array_size: number of elements in the descriptor / value arrays
2850 * @desc_array: array of GPIO descriptors whose values will be assigned
2851 * @value_array: array of values to assign
2852 *
2853 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2854 * into account.
2855 *
2856 * This function should be called from contexts where we cannot sleep, and will
2857 * complain if the GPIO chip functions potentially sleep.
2858 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002859void gpiod_set_array_value(unsigned int array_size,
2860 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002861{
2862 if (!desc_array)
2863 return;
Linus Walleij44c72882016-04-24 11:36:59 +02002864 gpiod_set_array_value_complex(false, false, array_size, desc_array,
2865 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002866}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002867EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002868
2869/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002870 * gpiod_cansleep() - report whether gpio value access may sleep
2871 * @desc: gpio to check
2872 *
2873 */
2874int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002875{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002876 VALIDATE_DESC(desc);
2877 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002878}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002879EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08002880
David Brownell0f6d5042008-10-15 22:03:14 -07002881/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002882 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
2883 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07002884 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002885 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
2886 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07002887 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002888int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07002889{
Linus Walleij4c37ce82016-05-02 13:13:10 +02002890 struct gpio_chip *chip;
2891 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07002892
Linus Walleij79bb71b2016-06-15 22:57:38 +02002893 /*
2894 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
2895 * requires this function to not return zero on an invalid descriptor
2896 * but rather a negative error number.
2897 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02002898 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02002899 return -EINVAL;
2900
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002901 chip = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002902 offset = gpio_chip_hwgpio(desc);
Linus Walleij4c37ce82016-05-02 13:13:10 +02002903 if (chip->to_irq) {
2904 int retirq = chip->to_irq(chip, offset);
2905
2906 /* Zero means NO_IRQ */
2907 if (!retirq)
2908 return -ENXIO;
2909
2910 return retirq;
2911 }
2912 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002913}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002914EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002915
Linus Walleijd468bf92013-09-24 11:54:38 +02002916/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002917 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002918 * @chip: the chip the GPIO to lock belongs to
2919 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002920 *
2921 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08002922 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08002923 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002924int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002925{
Linus Walleij9c102802016-05-25 10:56:03 +02002926 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02002927
Linus Walleij9c102802016-05-25 10:56:03 +02002928 desc = gpiochip_get_desc(chip, offset);
2929 if (IS_ERR(desc))
2930 return PTR_ERR(desc);
2931
Linus Walleij60f83392016-11-12 15:01:09 +01002932 /*
2933 * If it's fast: flush the direction setting if something changed
2934 * behind our back
2935 */
2936 if (!chip->can_sleep && chip->get_direction) {
Linus Walleij9c102802016-05-25 10:56:03 +02002937 int dir = chip->get_direction(chip, offset);
2938
2939 if (dir)
2940 clear_bit(FLAG_IS_OUT, &desc->flags);
2941 else
2942 set_bit(FLAG_IS_OUT, &desc->flags);
2943 }
2944
2945 if (test_bit(FLAG_IS_OUT, &desc->flags)) {
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002946 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02002947 "%s: tried to flag a GPIO set as output for IRQ\n",
2948 __func__);
2949 return -EIO;
2950 }
2951
Linus Walleij9c102802016-05-25 10:56:03 +02002952 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01002953
2954 /*
2955 * If the consumer has not set up a label (such as when the
2956 * IRQ is referenced from .to_irq()) we set up a label here
2957 * so it is clear this is used as an interrupt.
2958 */
2959 if (!desc->label)
2960 desc_set_label(desc, "interrupt");
2961
Linus Walleijd468bf92013-09-24 11:54:38 +02002962 return 0;
2963}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002964EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002965
Linus Walleijd468bf92013-09-24 11:54:38 +02002966/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002967 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09002968 * @chip: the chip the GPIO to lock belongs to
2969 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02002970 *
2971 * This is used directly by GPIO drivers that want to indicate
2972 * that a certain GPIO is no longer used exclusively for IRQ.
2973 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002974void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02002975{
Linus Walleij3940c342016-11-14 00:09:07 +01002976 struct gpio_desc *desc;
2977
2978 desc = gpiochip_get_desc(chip, offset);
2979 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02002980 return;
2981
Linus Walleij3940c342016-11-14 00:09:07 +01002982 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
2983
2984 /* If we only had this marking, erase it */
2985 if (desc->label && !strcmp(desc->label, "interrupt"))
2986 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02002987}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09002988EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02002989
Linus Walleij6cee3822016-02-11 20:16:45 +01002990bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset)
2991{
2992 if (offset >= chip->ngpio)
2993 return false;
2994
2995 return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags);
2996}
2997EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
2998
Linus Walleij143b65d2016-02-16 15:41:42 +01002999bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset)
3000{
3001 if (offset >= chip->ngpio)
3002 return false;
3003
3004 return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags);
3005}
3006EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3007
3008bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset)
3009{
3010 if (offset >= chip->ngpio)
3011 return false;
3012
3013 return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags);
3014}
3015EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3016
Charles Keepax05f479b2017-05-23 15:47:29 +01003017bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset)
3018{
3019 if (offset >= chip->ngpio)
3020 return false;
3021
Andrew Jeffery2cbfca62017-10-20 13:27:58 +10303022 return !test_bit(FLAG_SLEEP_MAY_LOSE_VALUE,
Charles Keepax05f479b2017-05-23 15:47:29 +01003023 &chip->gpiodev->descs[offset].flags);
3024}
3025EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3026
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003027/**
3028 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3029 * @desc: gpio whose value will be returned
3030 *
3031 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003032 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003033 *
3034 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003035 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003036int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003037{
David Brownelld2876d02008-02-04 22:28:20 -08003038 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003039 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003040 return gpiod_get_raw_value_commit(desc);
David Brownelld2876d02008-02-04 22:28:20 -08003041}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003042EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003043
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003044/**
3045 * gpiod_get_value_cansleep() - return a gpio's value
3046 * @desc: gpio whose value will be returned
3047 *
3048 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003049 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003050 *
3051 * This function is to be called from contexts that can sleep.
3052 */
3053int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003054{
David Brownelld2876d02008-02-04 22:28:20 -08003055 int value;
David Brownelld2876d02008-02-04 22:28:20 -08003056
3057 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003058 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003059 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003060 if (value < 0)
3061 return value;
3062
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003063 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3064 value = !value;
3065
David Brownelld2876d02008-02-04 22:28:20 -08003066 return value;
3067}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003068EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003069
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003070/**
Lukas Wunnereec1d562017-10-12 12:40:10 +02003071 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
3072 * @array_size: number of elements in the descriptor / value arrays
3073 * @desc_array: array of GPIO descriptors whose values will be read
3074 * @value_array: array to store the read values
3075 *
3076 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3077 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3078 * else an error code.
3079 *
3080 * This function is to be called from contexts that can sleep.
3081 */
3082int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3083 struct gpio_desc **desc_array,
3084 int *value_array)
3085{
3086 might_sleep_if(extra_checks);
3087 if (!desc_array)
3088 return -EINVAL;
3089 return gpiod_get_array_value_complex(true, true, array_size,
3090 desc_array, value_array);
3091}
3092EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3093
3094/**
3095 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
3096 * @array_size: number of elements in the descriptor / value arrays
3097 * @desc_array: array of GPIO descriptors whose values will be read
3098 * @value_array: array to store the read values
3099 *
3100 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3101 * into account. Return 0 in case of success, else an error code.
3102 *
3103 * This function is to be called from contexts that can sleep.
3104 */
3105int gpiod_get_array_value_cansleep(unsigned int array_size,
3106 struct gpio_desc **desc_array,
3107 int *value_array)
3108{
3109 might_sleep_if(extra_checks);
3110 if (!desc_array)
3111 return -EINVAL;
3112 return gpiod_get_array_value_complex(false, true, array_size,
3113 desc_array, value_array);
3114}
3115EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3116
3117/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003118 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3119 * @desc: gpio whose value will be assigned
3120 * @value: value to assign
3121 *
3122 * Set the raw value of the GPIO, i.e. the value of its physical line without
3123 * regard for its ACTIVE_LOW status.
3124 *
3125 * This function is to be called from contexts that can sleep.
3126 */
3127void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003128{
David Brownelld2876d02008-02-04 22:28:20 -08003129 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003130 VALIDATE_DESC_VOID(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003131 gpiod_set_raw_value_commit(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003132}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003133EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003134
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003135/**
3136 * gpiod_set_value_cansleep() - assign a gpio's value
3137 * @desc: gpio whose value will be assigned
3138 * @value: value to assign
3139 *
3140 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3141 * account
3142 *
3143 * This function is to be called from contexts that can sleep.
3144 */
3145void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003146{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003147 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003148 VALIDATE_DESC_VOID(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003149 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3150 value = !value;
Linus Walleijfac9d882017-09-26 20:58:28 +02003151 gpiod_set_raw_value_commit(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003152}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003153EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003154
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003155/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003156 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003157 * @array_size: number of elements in the descriptor / value arrays
3158 * @desc_array: array of GPIO descriptors whose values will be assigned
3159 * @value_array: array of values to assign
3160 *
3161 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3162 * without regard for their ACTIVE_LOW status.
3163 *
3164 * This function is to be called from contexts that can sleep.
3165 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003166void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
3167 struct gpio_desc **desc_array,
3168 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003169{
3170 might_sleep_if(extra_checks);
3171 if (!desc_array)
3172 return;
Linus Walleij44c72882016-04-24 11:36:59 +02003173 gpiod_set_array_value_complex(true, true, array_size, desc_array,
3174 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003175}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003176EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003177
3178/**
Dmitry Torokhov3946d182017-08-14 21:59:55 -07003179 * gpiod_add_lookup_tables() - register GPIO device consumers
3180 * @tables: list of tables of consumers to register
3181 * @n: number of tables in the list
3182 */
3183void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3184{
3185 unsigned int i;
3186
3187 mutex_lock(&gpio_lookup_lock);
3188
3189 for (i = 0; i < n; i++)
3190 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3191
3192 mutex_unlock(&gpio_lookup_lock);
3193}
3194
3195/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003196 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003197 * @array_size: number of elements in the descriptor / value arrays
3198 * @desc_array: array of GPIO descriptors whose values will be assigned
3199 * @value_array: array of values to assign
3200 *
3201 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3202 * into account.
3203 *
3204 * This function is to be called from contexts that can sleep.
3205 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003206void gpiod_set_array_value_cansleep(unsigned int array_size,
3207 struct gpio_desc **desc_array,
3208 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003209{
3210 might_sleep_if(extra_checks);
3211 if (!desc_array)
3212 return;
Linus Walleij44c72882016-04-24 11:36:59 +02003213 gpiod_set_array_value_complex(false, true, array_size, desc_array,
3214 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003215}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003216EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003217
3218/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003219 * gpiod_add_lookup_table() - register GPIO device consumers
3220 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003221 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003222void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003223{
3224 mutex_lock(&gpio_lookup_lock);
3225
Alexandre Courbotad824782013-12-03 12:20:11 +09003226 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003227
3228 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003229}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003230EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003231
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303232/**
3233 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3234 * @table: table of consumers to unregister
3235 */
3236void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3237{
3238 mutex_lock(&gpio_lookup_lock);
3239
3240 list_del(&table->list);
3241
3242 mutex_unlock(&gpio_lookup_lock);
3243}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003244EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303245
Alexandre Courbotad824782013-12-03 12:20:11 +09003246static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3247{
3248 const char *dev_id = dev ? dev_name(dev) : NULL;
3249 struct gpiod_lookup_table *table;
3250
3251 mutex_lock(&gpio_lookup_lock);
3252
3253 list_for_each_entry(table, &gpio_lookup_list, list) {
3254 if (table->dev_id && dev_id) {
3255 /*
3256 * Valid strings on both ends, must be identical to have
3257 * a match
3258 */
3259 if (!strcmp(table->dev_id, dev_id))
3260 goto found;
3261 } else {
3262 /*
3263 * One of the pointers is NULL, so both must be to have
3264 * a match
3265 */
3266 if (dev_id == table->dev_id)
3267 goto found;
3268 }
3269 }
3270 table = NULL;
3271
3272found:
3273 mutex_unlock(&gpio_lookup_lock);
3274 return table;
3275}
3276
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003277static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09003278 unsigned int idx,
3279 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003280{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003281 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003282 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003283 struct gpiod_lookup *p;
3284
Alexandre Courbotad824782013-12-03 12:20:11 +09003285 table = gpiod_find_lookup_table(dev);
3286 if (!table)
3287 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003288
Alexandre Courbotad824782013-12-03 12:20:11 +09003289 for (p = &table->table[0]; p->chip_label; p++) {
3290 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003291
Alexandre Courbotad824782013-12-03 12:20:11 +09003292 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003293 if (p->idx != idx)
3294 continue;
3295
Alexandre Courbotad824782013-12-03 12:20:11 +09003296 /* If the lookup entry has a con_id, require exact match */
3297 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3298 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003299
Alexandre Courbotad824782013-12-03 12:20:11 +09003300 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003301
Alexandre Courbotad824782013-12-03 12:20:11 +09003302 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003303 dev_err(dev, "cannot find GPIO chip %s\n",
3304 p->chip_label);
3305 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003306 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003307
Alexandre Courbotad824782013-12-03 12:20:11 +09003308 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003309 dev_err(dev,
3310 "requested GPIO %d is out of range [0..%d] for chip %s\n",
3311 idx, chip->ngpio, chip->label);
3312 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003313 }
3314
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09003315 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003316 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003317
3318 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003319 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003320
3321 return desc;
3322}
3323
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003324static int dt_gpio_count(struct device *dev, const char *con_id)
3325{
3326 int ret;
3327 char propname[32];
3328 unsigned int i;
3329
3330 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3331 if (con_id)
3332 snprintf(propname, sizeof(propname), "%s-%s",
3333 con_id, gpio_suffixes[i]);
3334 else
3335 snprintf(propname, sizeof(propname), "%s",
3336 gpio_suffixes[i]);
3337
3338 ret = of_gpio_named_count(dev->of_node, propname);
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003339 if (ret > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003340 break;
3341 }
Andy Shevchenko4033d4a2017-02-20 18:15:47 +02003342 return ret ? ret : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003343}
3344
3345static int platform_gpio_count(struct device *dev, const char *con_id)
3346{
3347 struct gpiod_lookup_table *table;
3348 struct gpiod_lookup *p;
3349 unsigned int count = 0;
3350
3351 table = gpiod_find_lookup_table(dev);
3352 if (!table)
3353 return -ENOENT;
3354
3355 for (p = &table->table[0]; p->chip_label; p++) {
3356 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3357 (!con_id && !p->con_id))
3358 count++;
3359 }
3360 if (!count)
3361 return -ENOENT;
3362
3363 return count;
3364}
3365
3366/**
3367 * gpiod_count - return the number of GPIOs associated with a device / function
3368 * or -ENOENT if no GPIO has been assigned to the requested function
3369 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3370 * @con_id: function within the GPIO consumer
3371 */
3372int gpiod_count(struct device *dev, const char *con_id)
3373{
3374 int count = -ENOENT;
3375
3376 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
3377 count = dt_gpio_count(dev, con_id);
3378 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3379 count = acpi_gpio_count(dev, con_id);
3380
3381 if (count < 0)
3382 count = platform_gpio_count(dev, con_id);
3383
3384 return count;
3385}
3386EXPORT_SYMBOL_GPL(gpiod_count);
3387
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003388/**
Thierry Reding08791622014-04-25 16:54:22 +02003389 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003390 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003391 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003392 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003393 *
3394 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003395 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003396 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003397 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003398struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003399 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003400{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003401 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003402}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003403EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003404
3405/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003406 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3407 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3408 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003409 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003410 *
3411 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3412 * the requested function it will return NULL. This is convenient for drivers
3413 * that need to handle optional GPIOs.
3414 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003415struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003416 const char *con_id,
3417 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003418{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003419 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003420}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003421EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003422
Benoit Parrotf625d462015-02-02 11:44:44 -06003423
3424/**
3425 * gpiod_configure_flags - helper function to configure a given GPIO
3426 * @desc: gpio whose value will be assigned
3427 * @con_id: function within the GPIO consumer
Johan Hovold85b03b32016-07-03 18:32:05 +02003428 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3429 * of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003430 * @dflags: gpiod_flags - optional GPIO initialization flags
3431 *
3432 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3433 * requested function and/or index, or another IS_ERR() code if an error
3434 * occurred while trying to acquire the GPIO.
3435 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03003436int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003437 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003438{
3439 int status;
3440
Johan Hovold85b03b32016-07-03 18:32:05 +02003441 if (lflags & GPIO_ACTIVE_LOW)
3442 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
3443 if (lflags & GPIO_OPEN_DRAIN)
3444 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3445 if (lflags & GPIO_OPEN_SOURCE)
3446 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Andrew Jeffery2cbfca62017-10-20 13:27:58 +10303447 if (lflags & GPIO_SLEEP_MAY_LOSE_VALUE)
3448 set_bit(FLAG_SLEEP_MAY_LOSE_VALUE, &desc->flags);
Johan Hovold85b03b32016-07-03 18:32:05 +02003449
Benoit Parrotf625d462015-02-02 11:44:44 -06003450 /* No particular flag request, return here... */
3451 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
3452 pr_debug("no flags found for %s\n", con_id);
3453 return 0;
3454 }
3455
3456 /* Process flags */
3457 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
3458 status = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01003459 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06003460 else
3461 status = gpiod_direction_input(desc);
3462
3463 return status;
3464}
3465
Thierry Reding29a1f2332014-04-25 17:10:06 +02003466/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003467 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003468 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003469 * @con_id: function within the GPIO consumer
3470 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003471 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003472 *
3473 * This variant of gpiod_get() allows to access GPIOs other than the first
3474 * defined one for functions that define several GPIOs.
3475 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003476 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3477 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003478 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003479 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003480struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003481 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003482 unsigned int idx,
3483 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003484{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003485 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003486 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003487 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003488
3489 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3490
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003491 if (dev) {
3492 /* Using device tree? */
3493 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3494 dev_dbg(dev, "using device tree for GPIO lookup\n");
3495 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3496 } else if (ACPI_COMPANION(dev)) {
3497 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003498 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003499 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003500 }
3501
3502 /*
3503 * Either we are not using DT or ACPI, or their lookup did not return
3504 * a result. In that case, use platform lookup as a fallback.
3505 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003506 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003507 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003508 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003509 }
3510
3511 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02003512 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003513 return desc;
3514 }
3515
3516 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003517 if (status < 0)
3518 return ERR_PTR(status);
3519
Johan Hovold85b03b32016-07-03 18:32:05 +02003520 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003521 if (status < 0) {
3522 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3523 gpiod_put(desc);
3524 return ERR_PTR(status);
3525 }
3526
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003527 return desc;
3528}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003529EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003530
3531/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003532 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3533 * @fwnode: handle of the firmware node
3534 * @propname: name of the firmware property representing the GPIO
Boris Brezillon537b94d2017-02-02 14:53:11 +01003535 * @index: index of the GPIO to obtain in the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003536 * @dflags: GPIO initialization flags
Thierry Reding950d55f52017-07-24 16:57:22 +02003537 * @label: label to attach to the requested GPIO
Mika Westerberg40b73182014-10-21 13:33:59 +02003538 *
3539 * This function can be used for drivers that get their configuration
3540 * from firmware.
3541 *
3542 * Function properly finds the corresponding GPIO using whatever is the
3543 * underlying firmware interface and then makes sure that the GPIO
3544 * descriptor is requested before it is returned to the caller.
3545 *
Thierry Reding950d55f52017-07-24 16:57:22 +02003546 * Returns:
Andy Shevchenkoff213782017-02-28 17:03:12 +02003547 * On successful request the GPIO pin is configured in accordance with
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003548 * provided @dflags.
3549 *
Mika Westerberg40b73182014-10-21 13:33:59 +02003550 * In case of error an ERR_PTR() is returned.
3551 */
3552struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Boris Brezillon537b94d2017-02-02 14:53:11 +01003553 const char *propname, int index,
Alexander Steinb2987d72017-01-12 17:39:24 +01003554 enum gpiod_flags dflags,
3555 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02003556{
3557 struct gpio_desc *desc = ERR_PTR(-ENODEV);
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003558 unsigned long lflags = 0;
Mika Westerberg40b73182014-10-21 13:33:59 +02003559 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003560 bool single_ended = false;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303561 bool open_drain = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02003562 int ret;
3563
3564 if (!fwnode)
3565 return ERR_PTR(-EINVAL);
3566
3567 if (is_of_node(fwnode)) {
3568 enum of_gpio_flags flags;
3569
Boris Brezillon537b94d2017-02-02 14:53:11 +01003570 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname,
3571 index, &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003572 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02003573 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003574 single_ended = flags & OF_GPIO_SINGLE_ENDED;
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303575 open_drain = flags & OF_GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003576 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003577 } else if (is_acpi_node(fwnode)) {
3578 struct acpi_gpio_info info;
3579
Boris Brezillon537b94d2017-02-02 14:53:11 +01003580 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003581 if (!IS_ERR(desc)) {
Christophe RICARD52044722015-12-23 23:25:34 +01003582 active_low = info.polarity == GPIO_ACTIVE_LOW;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003583 ret = acpi_gpio_update_gpiod_flags(&dflags, info.flags);
3584 if (ret)
3585 pr_debug("Override GPIO initialization flags\n");
3586 }
Mika Westerberg40b73182014-10-21 13:33:59 +02003587 }
3588
3589 if (IS_ERR(desc))
3590 return desc;
3591
Alexander Steinb2987d72017-01-12 17:39:24 +01003592 ret = gpiod_request(desc, label);
Johan Hovold85b03b32016-07-03 18:32:05 +02003593 if (ret)
3594 return ERR_PTR(ret);
3595
Mika Westerberg40b73182014-10-21 13:33:59 +02003596 if (active_low)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003597 lflags |= GPIO_ACTIVE_LOW;
Mika Westerberg40b73182014-10-21 13:33:59 +02003598
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003599 if (single_ended) {
Laxman Dewangan4c0facd2017-04-06 19:05:52 +05303600 if (open_drain)
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003601 lflags |= GPIO_OPEN_DRAIN;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003602 else
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003603 lflags |= GPIO_OPEN_SOURCE;
3604 }
3605
3606 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3607 if (ret < 0) {
3608 gpiod_put(desc);
3609 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003610 }
3611
Mika Westerberg40b73182014-10-21 13:33:59 +02003612 return desc;
3613}
3614EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3615
3616/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003617 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3618 * function
3619 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3620 * @con_id: function within the GPIO consumer
3621 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003622 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003623 *
3624 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3625 * specified index was assigned to the requested function it will return NULL.
3626 * This is convenient for drivers that need to handle optional GPIOs.
3627 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003628struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003629 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003630 unsigned int index,
3631 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003632{
3633 struct gpio_desc *desc;
3634
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003635 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003636 if (IS_ERR(desc)) {
3637 if (PTR_ERR(desc) == -ENOENT)
3638 return NULL;
3639 }
3640
3641 return desc;
3642}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003643EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003644
3645/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003646 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3647 * @desc: gpio whose value will be assigned
3648 * @name: gpio line name
3649 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
3650 * of_get_gpio_hog()
3651 * @dflags: gpiod_flags - optional GPIO initialization flags
3652 */
3653int gpiod_hog(struct gpio_desc *desc, const char *name,
3654 unsigned long lflags, enum gpiod_flags dflags)
3655{
3656 struct gpio_chip *chip;
3657 struct gpio_desc *local_desc;
3658 int hwnum;
3659 int status;
3660
3661 chip = gpiod_to_chip(desc);
3662 hwnum = gpio_chip_hwgpio(desc);
3663
3664 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
3665 if (IS_ERR(local_desc)) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303666 status = PTR_ERR(local_desc);
3667 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
3668 name, chip->label, hwnum, status);
3669 return status;
Benoit Parrotf625d462015-02-02 11:44:44 -06003670 }
3671
Johan Hovold85b03b32016-07-03 18:32:05 +02003672 status = gpiod_configure_flags(desc, name, lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06003673 if (status < 0) {
Laxman Dewanganc31a5712016-03-11 19:13:21 +05303674 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n",
3675 name, chip->label, hwnum, status);
Benoit Parrotf625d462015-02-02 11:44:44 -06003676 gpiochip_free_own_desc(desc);
3677 return status;
3678 }
3679
3680 /* Mark GPIO as hogged so it can be identified and removed later */
3681 set_bit(FLAG_IS_HOGGED, &desc->flags);
3682
3683 pr_info("GPIO line %d (%s) hogged as %s%s\n",
3684 desc_to_gpio(desc), name,
3685 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
3686 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
3687 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
3688
3689 return 0;
3690}
3691
3692/**
3693 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
3694 * @chip: gpio chip to act on
3695 *
3696 * This is only used by of_gpiochip_remove to free hogged gpios
3697 */
3698static void gpiochip_free_hogs(struct gpio_chip *chip)
3699{
3700 int id;
3701
3702 for (id = 0; id < chip->ngpio; id++) {
Linus Walleij1c3cdb12016-02-09 13:51:59 +01003703 if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags))
3704 gpiochip_free_own_desc(&chip->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06003705 }
3706}
3707
3708/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003709 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
3710 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3711 * @con_id: function within the GPIO consumer
3712 * @flags: optional GPIO initialization flags
3713 *
3714 * This function acquires all the GPIOs defined under a given function.
3715 *
3716 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
3717 * no GPIO has been assigned to the requested function, or another IS_ERR()
3718 * code if an error occurred while trying to acquire the GPIOs.
3719 */
3720struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
3721 const char *con_id,
3722 enum gpiod_flags flags)
3723{
3724 struct gpio_desc *desc;
3725 struct gpio_descs *descs;
3726 int count;
3727
3728 count = gpiod_count(dev, con_id);
3729 if (count < 0)
3730 return ERR_PTR(count);
3731
3732 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
3733 GFP_KERNEL);
3734 if (!descs)
3735 return ERR_PTR(-ENOMEM);
3736
3737 for (descs->ndescs = 0; descs->ndescs < count; ) {
3738 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
3739 if (IS_ERR(desc)) {
3740 gpiod_put_array(descs);
3741 return ERR_CAST(desc);
3742 }
3743 descs->desc[descs->ndescs] = desc;
3744 descs->ndescs++;
3745 }
3746 return descs;
3747}
3748EXPORT_SYMBOL_GPL(gpiod_get_array);
3749
3750/**
3751 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
3752 * function
3753 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3754 * @con_id: function within the GPIO consumer
3755 * @flags: optional GPIO initialization flags
3756 *
3757 * This is equivalent to gpiod_get_array(), except that when no GPIO was
3758 * assigned to the requested function it will return NULL.
3759 */
3760struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
3761 const char *con_id,
3762 enum gpiod_flags flags)
3763{
3764 struct gpio_descs *descs;
3765
3766 descs = gpiod_get_array(dev, con_id, flags);
3767 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
3768 return NULL;
3769
3770 return descs;
3771}
3772EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
3773
3774/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003775 * gpiod_put - dispose of a GPIO descriptor
3776 * @desc: GPIO descriptor to dispose of
3777 *
3778 * No descriptor can be used after gpiod_put() has been called on it.
3779 */
3780void gpiod_put(struct gpio_desc *desc)
3781{
3782 gpiod_free(desc);
3783}
3784EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08003785
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003786/**
3787 * gpiod_put_array - dispose of multiple GPIO descriptors
3788 * @descs: struct gpio_descs containing an array of descriptors
3789 */
3790void gpiod_put_array(struct gpio_descs *descs)
3791{
3792 unsigned int i;
3793
3794 for (i = 0; i < descs->ndescs; i++)
3795 gpiod_put(descs->desc[i]);
3796
3797 kfree(descs);
3798}
3799EXPORT_SYMBOL_GPL(gpiod_put_array);
3800
Linus Walleij3c702e92015-10-21 15:29:53 +02003801static int __init gpiolib_dev_init(void)
3802{
3803 int ret;
3804
3805 /* Register GPIO sysfs bus */
3806 ret = bus_register(&gpio_bus_type);
3807 if (ret < 0) {
3808 pr_err("gpiolib: could not register GPIO bus type\n");
3809 return ret;
3810 }
3811
3812 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip");
3813 if (ret < 0) {
3814 pr_err("gpiolib: failed to allocate char dev region\n");
3815 bus_unregister(&gpio_bus_type);
Guenter Roeck159f3cd2016-03-31 08:11:30 -07003816 } else {
3817 gpiolib_initialized = true;
3818 gpiochip_setup_devs();
Linus Walleij3c702e92015-10-21 15:29:53 +02003819 }
3820 return ret;
3821}
3822core_initcall(gpiolib_dev_init);
3823
David Brownelld2876d02008-02-04 22:28:20 -08003824#ifdef CONFIG_DEBUG_FS
3825
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003826static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08003827{
3828 unsigned i;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003829 struct gpio_chip *chip = gdev->chip;
3830 unsigned gpio = gdev->base;
3831 struct gpio_desc *gdesc = &gdev->descs[0];
David Brownelld2876d02008-02-04 22:28:20 -08003832 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02003833 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08003834
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003835 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02003836 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
3837 if (gdesc->name) {
3838 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
3839 gpio, gdesc->name);
3840 }
David Brownelld2876d02008-02-04 22:28:20 -08003841 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02003842 }
David Brownelld2876d02008-02-04 22:28:20 -08003843
Alexandre Courbot372e7222013-02-03 01:29:29 +09003844 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08003845 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02003846 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02003847 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
3848 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08003849 is_out ? "out" : "in ",
3850 chip->get
3851 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02003852 : "? ",
3853 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08003854 seq_printf(s, "\n");
3855 }
3856}
3857
Thierry Redingf9c4a312012-04-12 13:26:01 +02003858static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08003859{
Grant Likely362432a2013-02-09 09:41:49 +00003860 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003861 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003862 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003863
3864 s->private = "";
3865
Grant Likely362432a2013-02-09 09:41:49 +00003866 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003867 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00003868 if (index-- == 0) {
3869 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003870 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00003871 }
3872 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003873
3874 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003875}
3876
3877static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
3878{
Grant Likely362432a2013-02-09 09:41:49 +00003879 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02003880 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003881 void *ret = NULL;
3882
Grant Likely362432a2013-02-09 09:41:49 +00003883 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02003884 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09003885 ret = NULL;
3886 else
Linus Walleijff2b1352015-10-20 11:10:38 +02003887 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00003888 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003889
3890 s->private = "\n";
3891 ++*pos;
3892
3893 return ret;
3894}
3895
3896static void gpiolib_seq_stop(struct seq_file *s, void *v)
3897{
3898}
3899
3900static int gpiolib_seq_show(struct seq_file *s, void *v)
3901{
Linus Walleijff2b1352015-10-20 11:10:38 +02003902 struct gpio_device *gdev = v;
3903 struct gpio_chip *chip = gdev->chip;
3904 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02003905
Linus Walleijff2b1352015-10-20 11:10:38 +02003906 if (!chip) {
3907 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
3908 dev_name(&gdev->dev));
3909 return 0;
3910 }
3911
3912 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
3913 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003914 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleijff2b1352015-10-20 11:10:38 +02003915 parent = chip->parent;
3916 if (parent)
3917 seq_printf(s, ", parent: %s/%s",
3918 parent->bus ? parent->bus->name : "no-bus",
3919 dev_name(parent));
Thierry Redingf9c4a312012-04-12 13:26:01 +02003920 if (chip->label)
3921 seq_printf(s, ", %s", chip->label);
3922 if (chip->can_sleep)
3923 seq_printf(s, ", can sleep");
3924 seq_printf(s, ":\n");
3925
3926 if (chip->dbg_show)
3927 chip->dbg_show(s, chip);
3928 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003929 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02003930
David Brownelld2876d02008-02-04 22:28:20 -08003931 return 0;
3932}
3933
Thierry Redingf9c4a312012-04-12 13:26:01 +02003934static const struct seq_operations gpiolib_seq_ops = {
3935 .start = gpiolib_seq_start,
3936 .next = gpiolib_seq_next,
3937 .stop = gpiolib_seq_stop,
3938 .show = gpiolib_seq_show,
3939};
3940
David Brownelld2876d02008-02-04 22:28:20 -08003941static int gpiolib_open(struct inode *inode, struct file *file)
3942{
Thierry Redingf9c4a312012-04-12 13:26:01 +02003943 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08003944}
3945
Alexey Dobriyan828c0952009-10-01 15:43:56 -07003946static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02003947 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08003948 .open = gpiolib_open,
3949 .read = seq_read,
3950 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02003951 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08003952};
3953
3954static int __init gpiolib_debugfs_init(void)
3955{
3956 /* /sys/kernel/debug/gpio */
3957 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
3958 NULL, NULL, &gpiolib_operations);
3959 return 0;
3960}
3961subsys_initcall(gpiolib_debugfs_init);
3962
3963#endif /* DEBUG_FS */