blob: e63bebc9ae602b932f1cdc2625b2c3bb1ee77276 [file] [log] [blame]
David Brownelld2876d02008-02-04 22:28:20 -08001#include <linux/kernel.h>
2#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07003#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08004#include <linux/irq.h>
5#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09006#include <linux/list.h>
David Brownelld8f388d2008-07-25 01:46:07 -07007#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/debugfs.h>
10#include <linux/seq_file.h>
11#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060012#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070013#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010015#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090016#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020017#include <linux/gpio/machine.h>
Jonas Gorskic771c2f2015-10-11 17:34:15 +020018#include <linux/pinctrl/consumer.h>
David Brownelld2876d02008-02-04 22:28:20 -080019
Mika Westerberg664e3e52014-01-08 12:40:54 +020020#include "gpiolib.h"
21
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060022#define CREATE_TRACE_POINTS
23#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080024
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070025/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080026 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070027 * The GPIO programming interface allows for inlining speed-critical
28 * get/set operations for common cases, so that access to SOC-integrated
29 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080030 */
31
32
33/* When debugging, extend minimal trust to callers and platform code.
34 * Also emit diagnostic messages that may help initial bringup, when
35 * board setup or driver bugs are most common.
36 *
37 * Otherwise, minimize overhead in what may be bitbanging codepaths.
38 */
39#ifdef DEBUG
40#define extra_checks 1
41#else
42#define extra_checks 0
43#endif
44
45/* gpio_lock prevents conflicts during gpio_desc[] table updates.
46 * While any GPIO is requested, its gpio_chip is not removable;
47 * each GPIO's "requested" flag serves as a lock and refcount.
48 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090049DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080050
Alexandre Courbotbae48da2013-10-17 10:21:38 -070051static DEFINE_MUTEX(gpio_lookup_lock);
52static LIST_HEAD(gpio_lookup_list);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090053LIST_HEAD(gpio_chips);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +020054
Johan Hovold6d867502015-05-04 17:23:25 +020055
56static void gpiochip_free_hogs(struct gpio_chip *chip);
57static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
58
59
David Brownelld2876d02008-02-04 22:28:20 -080060static inline void desc_set_label(struct gpio_desc *d, const char *label)
61{
David Brownelld2876d02008-02-04 22:28:20 -080062 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080063}
64
Alexandre Courbot372e7222013-02-03 01:29:29 +090065/**
66 * Convert a GPIO number to its descriptor
67 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070068struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090069{
Alexandre Courbot14e85c02014-11-19 16:51:27 +090070 struct gpio_chip *chip;
71 unsigned long flags;
72
73 spin_lock_irqsave(&gpio_lock, flags);
74
75 list_for_each_entry(chip, &gpio_chips, list) {
76 if (chip->base <= gpio && chip->base + chip->ngpio > gpio) {
77 spin_unlock_irqrestore(&gpio_lock, flags);
78 return &chip->desc[gpio - chip->base];
79 }
80 }
81
82 spin_unlock_irqrestore(&gpio_lock, flags);
83
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +090084 if (!gpio_is_valid(gpio))
85 WARN(1, "invalid GPIO %d\n", gpio);
86
Alexandre Courbot14e85c02014-11-19 16:51:27 +090087 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +090088}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070089EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +090090
91/**
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090092 * Get the GPIO descriptor corresponding to the given hw number for this chip.
Linus Walleijd468bf92013-09-24 11:54:38 +020093 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090094struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
95 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +020096{
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090097 if (hwnum >= chip->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +090098 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +020099
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900100 return &chip->desc[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200101}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900102
103/**
104 * Convert a GPIO descriptor to the integer namespace.
105 * This should disappear in the future but is needed since we still
106 * use GPIO numbers for error messages and sysfs nodes
107 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700108int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900109{
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900110 return desc->chip->base + (desc - &desc->chip->desc[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900111}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700112EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900113
114
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700115/**
116 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
117 * @desc: descriptor to return the chip of
118 */
119struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900120{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900121 return desc ? desc->chip : NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900122}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700123EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800124
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700125/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
126static int gpiochip_find_base(int ngpio)
127{
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900128 struct gpio_chip *chip;
129 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700130
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900131 list_for_each_entry_reverse(chip, &gpio_chips, list) {
132 /* found a free space? */
133 if (chip->base + chip->ngpio <= base)
134 break;
135 else
136 /* nope, check the space right before the chip */
137 base = chip->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700138 }
139
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900140 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700141 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900142 return base;
143 } else {
144 pr_err("%s: cannot find free range\n", __func__);
145 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700146 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700147}
148
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700149/**
150 * gpiod_get_direction - return the current direction of a GPIO
151 * @desc: GPIO to get the direction of
152 *
153 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
154 *
155 * This function may sleep if gpiod_cansleep() is true.
156 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900157int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300158{
159 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900160 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300161 int status = -EINVAL;
162
Alexandre Courbot372e7222013-02-03 01:29:29 +0900163 chip = gpiod_to_chip(desc);
164 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300165
166 if (!chip->get_direction)
167 return status;
168
Alexandre Courbot372e7222013-02-03 01:29:29 +0900169 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300170 if (status > 0) {
171 /* GPIOF_DIR_IN, or other positive */
172 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900173 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300174 }
175 if (status == 0) {
176 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900177 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300178 }
179 return status;
180}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700181EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300182
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900183/*
184 * Add a new chip to the global chips list, keeping the list of chips sorted
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800185 * by range(means [base, base + ngpio - 1]) order.
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900186 *
187 * Return -EBUSY if the new chip overlaps with some other chip's integer
188 * space.
189 */
190static int gpiochip_add_to_list(struct gpio_chip *chip)
191{
Masahiro Yamadad1aceb82015-07-21 14:45:40 +0900192 struct list_head *pos;
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800193 struct gpio_chip *iterator;
194 struct gpio_chip *previous = NULL;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900195
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800196 if (list_empty(&gpio_chips)) {
197 pos = gpio_chips.next;
198 goto found;
199 }
200
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900201 list_for_each(pos, &gpio_chips) {
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800202 iterator = list_entry(pos, struct gpio_chip, list);
203 if (iterator->base >= chip->base + chip->ngpio) {
204 /*
205 * Iterator is the first GPIO chip so there is no
206 * previous one
207 */
208 if (previous == NULL) {
209 goto found;
210 } else {
211 /*
212 * We found a valid range(means
213 * [base, base + ngpio - 1]) between previous
214 * and iterator chip.
215 */
216 if (previous->base + previous->ngpio
217 <= chip->base)
218 goto found;
219 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900220 }
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800221 previous = iterator;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900222 }
223
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800224 /* We are beyond the last chip in the list */
225 if (iterator->base + iterator->ngpio <= chip->base)
226 goto found;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900227
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800228 dev_err(chip->parent,
229 "GPIO integer space overlap, cannot add chip\n");
230 return -EBUSY;
231
232found:
233 list_add_tail(&chip->list, pos);
234 return 0;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900235}
236
Linus Walleijf881bab2015-09-23 16:20:43 -0700237/**
238 * Convert a GPIO name to its descriptor
239 */
240static struct gpio_desc *gpio_name_to_desc(const char * const name)
241{
242 struct gpio_chip *chip;
243 unsigned long flags;
244
245 spin_lock_irqsave(&gpio_lock, flags);
246
247 list_for_each_entry(chip, &gpio_chips, list) {
248 int i;
249
250 for (i = 0; i != chip->ngpio; ++i) {
251 struct gpio_desc *gpio = &chip->desc[i];
252
253 if (!gpio->name)
254 continue;
255
256 if (!strcmp(gpio->name, name)) {
257 spin_unlock_irqrestore(&gpio_lock, flags);
258 return gpio;
259 }
260 }
261 }
262
263 spin_unlock_irqrestore(&gpio_lock, flags);
264
265 return NULL;
266}
267
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200268/*
269 * Takes the names from gc->names and checks if they are all unique. If they
270 * are, they are assigned to their gpio descriptors.
271 *
Bamvor Jian Zhanged379152015-11-14 16:43:20 +0800272 * Warning if one of the names is already used for a different GPIO.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200273 */
274static int gpiochip_set_desc_names(struct gpio_chip *gc)
275{
276 int i;
277
278 if (!gc->names)
279 return 0;
280
281 /* First check all names if they are unique */
282 for (i = 0; i != gc->ngpio; ++i) {
283 struct gpio_desc *gpio;
284
285 gpio = gpio_name_to_desc(gc->names[i]);
Linus Walleijf881bab2015-09-23 16:20:43 -0700286 if (gpio)
Linus Walleij58383c72015-11-04 09:56:26 +0100287 dev_warn(gc->parent, "Detected name collision for "
Linus Walleijf881bab2015-09-23 16:20:43 -0700288 "GPIO name '%s'\n",
289 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200290 }
291
292 /* Then add all names to the GPIO descriptors */
293 for (i = 0; i != gc->ngpio; ++i)
294 gc->desc[i].name = gc->names[i];
295
296 return 0;
297}
298
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700299/**
David Brownelld2876d02008-02-04 22:28:20 -0800300 * gpiochip_add() - register a gpio_chip
301 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900302 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -0800303 *
304 * Returns a negative errno if the chip can't be registered, such as
305 * because the chip->base is invalid or already associated with a
306 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700307 *
David Brownelld8f388d2008-07-25 01:46:07 -0700308 * When gpiochip_add() is called very early during boot, so that GPIOs
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +0800309 * can be freely used, the chip->parent device must be registered before
David Brownelld8f388d2008-07-25 01:46:07 -0700310 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
311 * for GPIOs will fail rudely.
312 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700313 * If chip->base is negative, this requests dynamic assignment of
314 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800315 */
316int gpiochip_add(struct gpio_chip *chip)
317{
318 unsigned long flags;
319 int status = 0;
320 unsigned id;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700321 int base = chip->base;
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900322 struct gpio_desc *descs;
David Brownelld2876d02008-02-04 22:28:20 -0800323
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900324 descs = kcalloc(chip->ngpio, sizeof(descs[0]), GFP_KERNEL);
325 if (!descs)
326 return -ENOMEM;
David Brownelld2876d02008-02-04 22:28:20 -0800327
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +0800328 if (chip->ngpio == 0) {
329 chip_err(chip, "tried to insert a GPIO chip with zero lines\n");
330 return -EINVAL;
331 }
332
David Brownelld2876d02008-02-04 22:28:20 -0800333 spin_lock_irqsave(&gpio_lock, flags);
334
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700335 if (base < 0) {
336 base = gpiochip_find_base(chip->ngpio);
337 if (base < 0) {
338 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +0100339 spin_unlock_irqrestore(&gpio_lock, flags);
340 goto err_free_descs;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700341 }
342 chip->base = base;
343 }
344
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900345 status = gpiochip_add_to_list(chip);
Johan Hovold05aa5202015-01-12 17:12:26 +0100346 if (status) {
347 spin_unlock_irqrestore(&gpio_lock, flags);
348 goto err_free_descs;
349 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900350
Johan Hovold05aa5202015-01-12 17:12:26 +0100351 for (id = 0; id < chip->ngpio; id++) {
352 struct gpio_desc *desc = &descs[id];
David Brownelld8f388d2008-07-25 01:46:07 -0700353
Johan Hovold05aa5202015-01-12 17:12:26 +0100354 desc->chip = chip;
355
356 /* REVISIT: most hardware initializes GPIOs as inputs (often
357 * with pullups enabled) so power usage is minimized. Linux
358 * code should set the gpio direction first thing; but until
359 * it does, and in case chip->get_direction is not set, we may
360 * expose the wrong direction in sysfs.
361 */
362 desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0;
David Brownelld2876d02008-02-04 22:28:20 -0800363 }
364
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900365 chip->desc = descs;
366
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800367 spin_unlock_irqrestore(&gpio_lock, flags);
368
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530369#ifdef CONFIG_PINCTRL
370 INIT_LIST_HEAD(&chip->pin_ranges);
371#endif
372
Linus Walleij58383c72015-11-04 09:56:26 +0100373 if (!chip->owner && chip->parent && chip->parent->driver)
374 chip->owner = chip->parent->driver->owner;
Grygorii Strashko37269602015-06-25 20:30:51 +0300375
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200376 status = gpiochip_set_desc_names(chip);
377 if (status)
378 goto err_remove_from_list;
379
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200380 status = of_gpiochip_add(chip);
381 if (status)
382 goto err_remove_chip;
383
Mika Westerberg664e3e52014-01-08 12:40:54 +0200384 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600385
Johan Hovold426577b2015-05-04 17:10:32 +0200386 status = gpiochip_sysfs_register(chip);
Johan Hovold225fce82015-01-12 17:12:25 +0100387 if (status)
388 goto err_remove_chip;
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600389
Andy Shevchenko7589e592013-12-05 11:26:23 +0200390 pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__,
Grant Likely64842aa2011-11-06 11:36:18 -0700391 chip->base, chip->base + chip->ngpio - 1,
392 chip->label ? : "generic");
393
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600394 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800395
Johan Hovold225fce82015-01-12 17:12:25 +0100396err_remove_chip:
397 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +0200398 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +0100399 of_gpiochip_remove(chip);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200400err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +0100401 spin_lock_irqsave(&gpio_lock, flags);
402 list_del(&chip->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800403 spin_unlock_irqrestore(&gpio_lock, flags);
Johan Hovold05aa5202015-01-12 17:12:26 +0100404 chip->desc = NULL;
Johan Hovold225fce82015-01-12 17:12:25 +0100405err_free_descs:
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900406 kfree(descs);
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900407
David Brownelld2876d02008-02-04 22:28:20 -0800408 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +0200409 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600410 chip->base, chip->base + chip->ngpio - 1,
411 chip->label ? : "generic");
David Brownelld2876d02008-02-04 22:28:20 -0800412 return status;
413}
414EXPORT_SYMBOL_GPL(gpiochip_add);
415
416/**
417 * gpiochip_remove() - unregister a gpio_chip
418 * @chip: the chip to unregister
419 *
420 * A gpio_chip with any GPIOs still requested may not be removed.
421 */
abdoulaye berthee1db1702014-07-05 18:28:50 +0200422void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -0800423{
Johan Hovoldfab28b82015-05-04 17:10:27 +0200424 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -0800425 unsigned long flags;
David Brownelld2876d02008-02-04 22:28:20 -0800426 unsigned id;
Johan Hovoldfab28b82015-05-04 17:10:27 +0200427 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -0800428
Johan Hovold426577b2015-05-04 17:10:32 +0200429 gpiochip_sysfs_unregister(chip);
Johan Hovold01cca932015-01-12 17:12:29 +0100430
Johan Hovold00acc3d2015-01-12 17:12:27 +0100431 gpiochip_irqchip_remove(chip);
432
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200433 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +0100434 gpiochip_remove_pin_ranges(chip);
Benoit Parrotf625d462015-02-02 11:44:44 -0600435 gpiochip_free_hogs(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600436 of_gpiochip_remove(chip);
437
Johan Hovold6798aca2015-01-12 17:12:28 +0100438 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900439 for (id = 0; id < chip->ngpio; id++) {
Johan Hovoldfab28b82015-05-04 17:10:27 +0200440 desc = &chip->desc[id];
441 desc->chip = NULL;
442 if (test_bit(FLAG_REQUESTED, &desc->flags))
443 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -0800444 }
abdoulaye berthee1db1702014-07-05 18:28:50 +0200445 list_del(&chip->list);
David Brownelld2876d02008-02-04 22:28:20 -0800446 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900447
Johan Hovoldfab28b82015-05-04 17:10:27 +0200448 if (requested)
Linus Walleij58383c72015-11-04 09:56:26 +0100449 dev_crit(chip->parent,
450 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +0200451
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900452 kfree(chip->desc);
453 chip->desc = NULL;
David Brownelld2876d02008-02-04 22:28:20 -0800454}
455EXPORT_SYMBOL_GPL(gpiochip_remove);
456
Grant Likely594fa262010-06-08 07:48:16 -0600457/**
458 * gpiochip_find() - iterator for locating a specific gpio_chip
459 * @data: data to pass to match function
460 * @callback: Callback function to check gpio_chip
461 *
462 * Similar to bus_find_device. It returns a reference to a gpio_chip as
463 * determined by a user supplied @match callback. The callback should return
464 * 0 if the device doesn't match and non-zero if it does. If the callback is
465 * non-zero, this function will return to the caller and not iterate over any
466 * more gpio_chips.
467 */
Grant Likely07ce8ec2012-05-18 23:01:05 -0600468struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -0700469 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600470 void *data))
Grant Likely594fa262010-06-08 07:48:16 -0600471{
Alexandre Courbot125eef92013-02-03 01:29:26 +0900472 struct gpio_chip *chip;
Grant Likely594fa262010-06-08 07:48:16 -0600473 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -0600474
475 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot125eef92013-02-03 01:29:26 +0900476 list_for_each_entry(chip, &gpio_chips, list)
477 if (match(chip, data))
Grant Likely594fa262010-06-08 07:48:16 -0600478 break;
Alexandre Courbot125eef92013-02-03 01:29:26 +0900479
480 /* No match? */
481 if (&chip->list == &gpio_chips)
482 chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -0600483 spin_unlock_irqrestore(&gpio_lock, flags);
484
485 return chip;
486}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -0600487EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -0800488
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900489static int gpiochip_match_name(struct gpio_chip *chip, void *data)
490{
491 const char *name = data;
492
493 return !strcmp(chip->label, name);
494}
495
496static struct gpio_chip *find_chip_by_name(const char *name)
497{
498 return gpiochip_find((void *)name, gpiochip_match_name);
499}
500
Linus Walleij14250522014-03-25 10:40:18 +0100501#ifdef CONFIG_GPIOLIB_IRQCHIP
502
503/*
504 * The following is irqchip helper code for gpiochips.
505 */
506
507/**
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200508 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
509 * @gpiochip: the gpiochip to set the irqchip chain to
510 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +0100511 * @parent_irq: the irq number corresponding to the parent IRQ for this
512 * chained irqchip
513 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200514 * coming out of the gpiochip. If the interrupt is nested rather than
515 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +0100516 */
517void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
518 struct irq_chip *irqchip,
519 int parent_irq,
520 irq_flow_handler_t parent_handler)
521{
Linus Walleij83141a72014-09-26 13:50:12 +0200522 unsigned int offset;
523
Linus Walleij83141a72014-09-26 13:50:12 +0200524 if (!gpiochip->irqdomain) {
525 chip_err(gpiochip, "called %s before setting up irqchip\n",
526 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200527 return;
528 }
529
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200530 if (parent_handler) {
531 if (gpiochip->can_sleep) {
532 chip_err(gpiochip,
533 "you cannot have chained interrupts on a "
534 "chip that may sleep\n");
535 return;
536 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200537 /*
538 * The parent irqchip is already using the chip_data for this
539 * irqchip, so our callbacks simply use the handler_data.
540 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +0200541 irq_set_chained_handler_and_data(parent_irq, parent_handler,
542 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +0300543
544 gpiochip->irq_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200545 }
Linus Walleij83141a72014-09-26 13:50:12 +0200546
547 /* Set the parent IRQ for all affected IRQs */
548 for (offset = 0; offset < gpiochip->ngpio; offset++)
549 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
550 parent_irq);
Linus Walleij14250522014-03-25 10:40:18 +0100551}
552EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
553
554/**
555 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
556 * @d: the irqdomain used by this irqchip
557 * @irq: the global irq number used by this GPIO irqchip irq
558 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
559 *
560 * This function will set up the mapping for a certain IRQ line on a
561 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
562 * stored inside the gpiochip.
563 */
564static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
565 irq_hw_number_t hwirq)
566{
567 struct gpio_chip *chip = d->host_data;
568
Linus Walleij14250522014-03-25 10:40:18 +0100569 irq_set_chip_data(irq, chip);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +0300570 /*
571 * This lock class tells lockdep that GPIO irqs are in a different
572 * category than their parents, so it won't report false recursion.
573 */
574 irq_set_lockdep_class(irq, chip->lock_key);
Linus Walleij7633fb92014-04-09 13:20:38 +0200575 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200576 /* Chips that can sleep need nested thread handlers */
Octavian Purdila295494a2014-09-19 23:22:44 +0300577 if (chip->can_sleep && !chip->irq_not_threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +0200578 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +0100579 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -0500580
Linus Walleij1333b902014-04-23 16:45:12 +0200581 /*
582 * No set-up of the hardware will happen if IRQ_TYPE_NONE
583 * is passed as default type.
584 */
585 if (chip->irq_default_type != IRQ_TYPE_NONE)
586 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +0100587
588 return 0;
589}
590
Linus Walleijc3626fd2014-03-28 20:42:01 +0100591static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
592{
Linus Walleij1c8732b2014-04-09 13:34:39 +0200593 struct gpio_chip *chip = d->host_data;
594
Linus Walleij1c8732b2014-04-09 13:34:39 +0200595 if (chip->can_sleep)
596 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100597 irq_set_chip_and_handler(irq, NULL, NULL);
598 irq_set_chip_data(irq, NULL);
599}
600
Linus Walleij14250522014-03-25 10:40:18 +0100601static const struct irq_domain_ops gpiochip_domain_ops = {
602 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +0100603 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +0100604 /* Virtually all GPIO irqchips are twocell:ed */
605 .xlate = irq_domain_xlate_twocell,
606};
607
608static int gpiochip_irq_reqres(struct irq_data *d)
609{
610 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
611
Grygorii Strashko5b76e792015-06-25 20:30:50 +0300612 if (!try_module_get(chip->owner))
613 return -ENODEV;
614
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900615 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +0100616 chip_err(chip,
617 "unable to lock HW IRQ %lu for IRQ\n",
618 d->hwirq);
Grygorii Strashko5b76e792015-06-25 20:30:50 +0300619 module_put(chip->owner);
Linus Walleij14250522014-03-25 10:40:18 +0100620 return -EINVAL;
621 }
622 return 0;
623}
624
625static void gpiochip_irq_relres(struct irq_data *d)
626{
627 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
628
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900629 gpiochip_unlock_as_irq(chip, d->hwirq);
Grygorii Strashko5b76e792015-06-25 20:30:50 +0300630 module_put(chip->owner);
Linus Walleij14250522014-03-25 10:40:18 +0100631}
632
633static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
634{
635 return irq_find_mapping(chip->irqdomain, offset);
636}
637
638/**
639 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
640 * @gpiochip: the gpiochip to remove the irqchip from
641 *
642 * This is called only from gpiochip_remove()
643 */
644static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
645{
Linus Walleijc3626fd2014-03-28 20:42:01 +0100646 unsigned int offset;
647
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300648 acpi_gpiochip_free_interrupts(gpiochip);
649
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +0300650 if (gpiochip->irq_parent) {
651 irq_set_chained_handler(gpiochip->irq_parent, NULL);
652 irq_set_handler_data(gpiochip->irq_parent, NULL);
653 }
654
Linus Walleijc3626fd2014-03-28 20:42:01 +0100655 /* Remove all IRQ mappings and delete the domain */
656 if (gpiochip->irqdomain) {
657 for (offset = 0; offset < gpiochip->ngpio; offset++)
Grygorii Strashkoe3893382014-09-25 19:09:23 +0300658 irq_dispose_mapping(
659 irq_find_mapping(gpiochip->irqdomain, offset));
Linus Walleij14250522014-03-25 10:40:18 +0100660 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100661 }
Linus Walleij14250522014-03-25 10:40:18 +0100662
663 if (gpiochip->irqchip) {
664 gpiochip->irqchip->irq_request_resources = NULL;
665 gpiochip->irqchip->irq_release_resources = NULL;
666 gpiochip->irqchip = NULL;
667 }
668}
669
670/**
671 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
672 * @gpiochip: the gpiochip to add the irqchip to
673 * @irqchip: the irqchip to add to the gpiochip
674 * @first_irq: if not dynamically assigned, the base (first) IRQ to
675 * allocate gpiochip irqs from
676 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +0200677 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
678 * to have the core avoid setting up any default type in the hardware.
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +0300679 * @lock_key: lockdep class
Linus Walleij14250522014-03-25 10:40:18 +0100680 *
681 * This function closely associates a certain irqchip with a certain
682 * gpiochip, providing an irq domain to translate the local IRQs to
683 * global irqs in the gpiolib core, and making sure that the gpiochip
684 * is passed as chip data to all related functions. Driver callbacks
685 * need to use container_of() to get their local state containers back
686 * from the gpiochip passed as chip data. An irqdomain will be stored
687 * in the gpiochip that shall be used by the driver to handle IRQ number
688 * translation. The gpiochip will need to be initialized and registered
689 * before calling this function.
690 *
Linus Walleijc3626fd2014-03-28 20:42:01 +0100691 * This function will handle two cell:ed simple IRQs and assumes all
692 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +0100693 * need to be open coded.
694 */
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +0300695int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
696 struct irq_chip *irqchip,
697 unsigned int first_irq,
698 irq_flow_handler_t handler,
699 unsigned int type,
700 struct lock_class_key *lock_key)
Linus Walleij14250522014-03-25 10:40:18 +0100701{
702 struct device_node *of_node;
703 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +0100704 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +0100705
706 if (!gpiochip || !irqchip)
707 return -EINVAL;
708
Linus Walleij58383c72015-11-04 09:56:26 +0100709 if (!gpiochip->parent) {
Linus Walleij14250522014-03-25 10:40:18 +0100710 pr_err("missing gpiochip .dev parent pointer\n");
711 return -EINVAL;
712 }
Linus Walleij58383c72015-11-04 09:56:26 +0100713 of_node = gpiochip->parent->of_node;
Linus Walleij14250522014-03-25 10:40:18 +0100714#ifdef CONFIG_OF_GPIO
715 /*
Colin Cronin20a8a962015-05-18 11:41:43 -0700716 * If the gpiochip has an assigned OF node this takes precedence
Bamvor Jian Zhangc88402c2015-11-18 17:07:07 +0800717 * FIXME: get rid of this and use gpiochip->parent->of_node
718 * everywhere
Linus Walleij14250522014-03-25 10:40:18 +0100719 */
720 if (gpiochip->of_node)
721 of_node = gpiochip->of_node;
722#endif
723 gpiochip->irqchip = irqchip;
724 gpiochip->irq_handler = handler;
725 gpiochip->irq_default_type = type;
726 gpiochip->to_irq = gpiochip_to_irq;
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +0300727 gpiochip->lock_key = lock_key;
Linus Walleij14250522014-03-25 10:40:18 +0100728 gpiochip->irqdomain = irq_domain_add_simple(of_node,
729 gpiochip->ngpio, first_irq,
730 &gpiochip_domain_ops, gpiochip);
731 if (!gpiochip->irqdomain) {
732 gpiochip->irqchip = NULL;
733 return -EINVAL;
734 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +0200735
736 /*
737 * It is possible for a driver to override this, but only if the
738 * alternative functions are both implemented.
739 */
740 if (!irqchip->irq_request_resources &&
741 !irqchip->irq_release_resources) {
742 irqchip->irq_request_resources = gpiochip_irq_reqres;
743 irqchip->irq_release_resources = gpiochip_irq_relres;
744 }
Linus Walleij14250522014-03-25 10:40:18 +0100745
746 /*
747 * Prepare the mapping since the irqchip shall be orthogonal to
748 * any gpiochip calls. If the first_irq was zero, this is
749 * necessary to allocate descriptors for all IRQs.
750 */
Linus Walleijc3626fd2014-03-28 20:42:01 +0100751 for (offset = 0; offset < gpiochip->ngpio; offset++) {
752 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
753 if (offset == 0)
754 /*
755 * Store the base into the gpiochip to be used when
756 * unmapping the irqs.
757 */
758 gpiochip->irq_base = irq_base;
759 }
Linus Walleij14250522014-03-25 10:40:18 +0100760
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300761 acpi_gpiochip_request_interrupts(gpiochip);
762
Linus Walleij14250522014-03-25 10:40:18 +0100763 return 0;
764}
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +0300765EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add);
Linus Walleij14250522014-03-25 10:40:18 +0100766
767#else /* CONFIG_GPIOLIB_IRQCHIP */
768
769static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
770
771#endif /* CONFIG_GPIOLIB_IRQCHIP */
772
Jonas Gorskic771c2f2015-10-11 17:34:15 +0200773/**
774 * gpiochip_generic_request() - request the gpio function for a pin
775 * @chip: the gpiochip owning the GPIO
776 * @offset: the offset of the GPIO to request for GPIO function
777 */
778int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
779{
780 return pinctrl_request_gpio(chip->base + offset);
781}
782EXPORT_SYMBOL_GPL(gpiochip_generic_request);
783
784/**
785 * gpiochip_generic_free() - free the gpio function from a pin
786 * @chip: the gpiochip to request the gpio function for
787 * @offset: the offset of the GPIO to free from GPIO function
788 */
789void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
790{
791 pinctrl_free_gpio(chip->base + offset);
792}
793EXPORT_SYMBOL_GPL(gpiochip_generic_free);
794
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530795#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +0100796
Linus Walleij3f0f8672012-11-20 12:40:15 +0100797/**
Christian Ruppert586a87e2013-10-15 15:37:54 +0200798 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
799 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +0200800 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +0200801 * @gpio_offset: the start offset in the current gpio_chip number space
802 * @pin_group: name of the pin group inside the pin controller
803 */
804int gpiochip_add_pingroup_range(struct gpio_chip *chip,
805 struct pinctrl_dev *pctldev,
806 unsigned int gpio_offset, const char *pin_group)
807{
808 struct gpio_pin_range *pin_range;
809 int ret;
810
811 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
812 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200813 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +0200814 return -ENOMEM;
815 }
816
817 /* Use local offset as range ID */
818 pin_range->range.id = gpio_offset;
819 pin_range->range.gc = chip;
820 pin_range->range.name = chip->label;
821 pin_range->range.base = chip->base + gpio_offset;
822 pin_range->pctldev = pctldev;
823
824 ret = pinctrl_get_group_pins(pctldev, pin_group,
825 &pin_range->range.pins,
826 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100827 if (ret < 0) {
828 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +0200829 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100830 }
Christian Ruppert586a87e2013-10-15 15:37:54 +0200831
832 pinctrl_add_gpio_range(pctldev, &pin_range->range);
833
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200834 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
835 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +0200836 pinctrl_dev_get_devname(pctldev), pin_group);
837
838 list_add_tail(&pin_range->node, &chip->pin_ranges);
839
840 return 0;
841}
842EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
843
844/**
Linus Walleij3f0f8672012-11-20 12:40:15 +0100845 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
846 * @chip: the gpiochip to add the range for
847 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +0100848 * @gpio_offset: the start offset in the current gpio_chip number space
849 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +0100850 * @npins: the number of pins from the offset of each pin space (GPIO and
851 * pin controller) to accumulate in this range
852 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100853int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +0100854 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +0100855 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530856{
857 struct gpio_pin_range *pin_range;
Axel Linb4d4b1f2012-11-21 14:33:56 +0800858 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530859
Linus Walleij3f0f8672012-11-20 12:40:15 +0100860 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530861 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200862 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100863 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530864 }
865
Linus Walleij3f0f8672012-11-20 12:40:15 +0100866 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +0100867 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100868 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530869 pin_range->range.name = chip->label;
Linus Walleij316511c2012-11-21 08:48:09 +0100870 pin_range->range.base = chip->base + gpio_offset;
871 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530872 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +0100873 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530874 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +0100875 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +0800876 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200877 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +0100878 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +0800879 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100880 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200881 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
882 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +0100883 pinctl_name,
884 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530885
886 list_add_tail(&pin_range->node, &chip->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100887
888 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530889}
Linus Walleij165adc92012-11-06 14:49:39 +0100890EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530891
Linus Walleij3f0f8672012-11-20 12:40:15 +0100892/**
893 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
894 * @chip: the chip to remove all the mappings for
895 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530896void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
897{
898 struct gpio_pin_range *pin_range, *tmp;
899
900 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) {
901 list_del(&pin_range->node);
902 pinctrl_remove_gpio_range(pin_range->pctldev,
903 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +0100904 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530905 }
906}
Linus Walleij165adc92012-11-06 14:49:39 +0100907EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
908
909#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530910
David Brownelld2876d02008-02-04 22:28:20 -0800911/* These "optional" allocation calls help prevent drivers from stomping
912 * on each other, and help provide better diagnostics in debugfs.
913 * They're called even less than the "set direction" calls.
914 */
Mika Westerberg77c2d792014-03-10 14:54:50 +0200915static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -0800916{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200917 struct gpio_chip *chip = desc->chip;
918 int status;
David Brownelld2876d02008-02-04 22:28:20 -0800919 unsigned long flags;
920
921 spin_lock_irqsave(&gpio_lock, flags);
922
David Brownelld2876d02008-02-04 22:28:20 -0800923 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -0700924 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800925 */
926
927 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
928 desc_set_label(desc, label ? : "?");
929 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700930 } else {
David Brownelld2876d02008-02-04 22:28:20 -0800931 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -0800932 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700933 }
934
935 if (chip->request) {
936 /* chip->request may sleep */
937 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900938 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700939 spin_lock_irqsave(&gpio_lock, flags);
940
941 if (status < 0) {
942 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -0700943 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300944 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700945 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700946 }
Mathias Nyman80b0a602012-10-24 17:25:27 +0300947 if (chip->get_direction) {
948 /* chip->get_direction may sleep */
949 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900950 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300951 spin_lock_irqsave(&gpio_lock, flags);
952 }
David Brownelld2876d02008-02-04 22:28:20 -0800953done:
Laurent Pinchart923b93e2015-10-13 00:20:20 +0300954 if (status < 0) {
955 /* Clear flags that might have been set by the caller before
956 * requesting the GPIO.
957 */
958 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
959 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
960 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
961 }
Mika Westerberg77c2d792014-03-10 14:54:50 +0200962 spin_unlock_irqrestore(&gpio_lock, flags);
963 return status;
964}
965
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900966int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200967{
968 int status = -EPROBE_DEFER;
969 struct gpio_chip *chip;
970
971 if (!desc) {
972 pr_warn("%s: invalid GPIO\n", __func__);
973 return -EINVAL;
974 }
975
976 chip = desc->chip;
977 if (!chip)
978 goto done;
979
980 if (try_module_get(chip->owner)) {
981 status = __gpiod_request(desc, label);
982 if (status < 0)
983 module_put(chip->owner);
984 }
985
986done:
David Brownelld2876d02008-02-04 22:28:20 -0800987 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +0200988 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200989
David Brownelld2876d02008-02-04 22:28:20 -0800990 return status;
991}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900992
Mika Westerberg77c2d792014-03-10 14:54:50 +0200993static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800994{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200995 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -0800996 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -0700997 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800998
Uwe Kleine-König3d599d12008-10-15 22:03:12 -0700999 might_sleep();
1000
Alexandre Courbot372e7222013-02-03 01:29:29 +09001001 gpiod_unexport(desc);
David Brownelld8f388d2008-07-25 01:46:07 -07001002
David Brownelld2876d02008-02-04 22:28:20 -08001003 spin_lock_irqsave(&gpio_lock, flags);
1004
David Brownell35e8bb52008-10-15 22:03:16 -07001005 chip = desc->chip;
1006 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
1007 if (chip->free) {
1008 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -07001009 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001010 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07001011 spin_lock_irqsave(&gpio_lock, flags);
1012 }
David Brownelld2876d02008-02-04 22:28:20 -08001013 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08001014 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07001015 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301016 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301017 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06001018 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001019 ret = true;
1020 }
David Brownelld2876d02008-02-04 22:28:20 -08001021
1022 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001023 return ret;
1024}
1025
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09001026void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02001027{
1028 if (desc && __gpiod_free(desc))
1029 module_put(desc->chip->owner);
1030 else
1031 WARN_ON(extra_checks);
David Brownelld2876d02008-02-04 22:28:20 -08001032}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001033
David Brownelld2876d02008-02-04 22:28:20 -08001034/**
1035 * gpiochip_is_requested - return string iff signal was requested
1036 * @chip: controller managing the signal
1037 * @offset: of signal within controller's 0..(ngpio - 1) range
1038 *
1039 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09001040 * The string returned is the label passed to gpio_request(); if none has been
1041 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08001042 *
1043 * This function is for use by GPIO controller drivers. The label can
1044 * help with diagnostics, and knowing that the signal is used as a GPIO
1045 * can help avoid accidentally multiplexing it to another controller.
1046 */
1047const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
1048{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09001049 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08001050
Dirk Behme48b59532015-08-18 18:02:32 +02001051 if (offset >= chip->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08001052 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09001053
1054 desc = &chip->desc[offset];
1055
Alexandre Courbot372e7222013-02-03 01:29:29 +09001056 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08001057 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001058 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08001059}
1060EXPORT_SYMBOL_GPL(gpiochip_is_requested);
1061
Mika Westerberg77c2d792014-03-10 14:54:50 +02001062/**
1063 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
1064 * @desc: GPIO descriptor to request
1065 * @label: label for the GPIO
1066 *
1067 * Function allows GPIO chip drivers to request and use their own GPIO
1068 * descriptors via gpiolib API. Difference to gpiod_request() is that this
1069 * function will not increase reference count of the GPIO chip module. This
1070 * allows the GPIO chip module to be unloaded as needed (we assume that the
1071 * GPIO chip driver handles freeing the GPIOs it has requested).
1072 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07001073struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
1074 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02001075{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07001076 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
1077 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001078
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07001079 if (IS_ERR(desc)) {
1080 chip_err(chip, "failed to get GPIO descriptor\n");
1081 return desc;
1082 }
1083
1084 err = __gpiod_request(desc, label);
1085 if (err < 0)
1086 return ERR_PTR(err);
1087
1088 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001089}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07001090EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001091
1092/**
1093 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
1094 * @desc: GPIO descriptor to free
1095 *
1096 * Function frees the given GPIO requested previously with
1097 * gpiochip_request_own_desc().
1098 */
1099void gpiochip_free_own_desc(struct gpio_desc *desc)
1100{
1101 if (desc)
1102 __gpiod_free(desc);
1103}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07001104EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08001105
1106/* Drivers MUST set GPIO direction before making get/set calls. In
1107 * some cases this is done in early boot, before IRQs are enabled.
1108 *
1109 * As a rule these aren't called more than once (except for drivers
1110 * using the open-drain emulation idiom) so these are natural places
1111 * to accumulate extra debugging checks. Note that we can't (yet)
1112 * rely on gpio_request() having been called beforehand.
1113 */
1114
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001115/**
1116 * gpiod_direction_input - set the GPIO direction to input
1117 * @desc: GPIO to set to input
1118 *
1119 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
1120 * be called safely on it.
1121 *
1122 * Return 0 in case of success, else an error code.
1123 */
1124int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001125{
David Brownelld2876d02008-02-04 22:28:20 -08001126 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08001127 int status = -EINVAL;
1128
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001129 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001130 pr_warn("%s: invalid GPIO\n", __func__);
1131 return -EINVAL;
1132 }
1133
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001134 chip = desc->chip;
1135 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01001136 gpiod_warn(desc,
1137 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02001138 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001139 return -EIO;
1140 }
1141
Alexandre Courbotd82da792014-07-22 16:17:43 +09001142 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08001143 if (status == 0)
1144 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001145
Alexandre Courbot372e7222013-02-03 01:29:29 +09001146 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09001147
David Brownelld2876d02008-02-04 22:28:20 -08001148 return status;
1149}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001150EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001151
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001152static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08001153{
David Brownelld2876d02008-02-04 22:28:20 -08001154 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08001155 int status = -EINVAL;
1156
Linus Walleijd468bf92013-09-24 11:54:38 +02001157 /* GPIOs used for IRQs shall not be set as output */
1158 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
1159 gpiod_err(desc,
1160 "%s: tried to set a GPIO tied to an IRQ as output\n",
1161 __func__);
1162 return -EIO;
1163 }
1164
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301165 /* Open drain pin should not be driven to 1 */
1166 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001167 return gpiod_direction_input(desc);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301168
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301169 /* Open source pin should not be driven to 0 */
1170 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001171 return gpiod_direction_input(desc);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301172
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001173 chip = desc->chip;
1174 if (!chip->set || !chip->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01001175 gpiod_warn(desc,
1176 "%s: missing set() or direction_output() operations\n",
1177 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001178 return -EIO;
1179 }
1180
Alexandre Courbotd82da792014-07-22 16:17:43 +09001181 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
David Brownelld2876d02008-02-04 22:28:20 -08001182 if (status == 0)
1183 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001184 trace_gpio_value(desc_to_gpio(desc), 0, value);
1185 trace_gpio_direction(desc_to_gpio(desc), 0, status);
David Brownelld2876d02008-02-04 22:28:20 -08001186 return status;
1187}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001188
1189/**
1190 * gpiod_direction_output_raw - set the GPIO direction to output
1191 * @desc: GPIO to set to output
1192 * @value: initial output value of the GPIO
1193 *
1194 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1195 * be called safely on it. The initial value of the output must be specified
1196 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1197 *
1198 * Return 0 in case of success, else an error code.
1199 */
1200int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1201{
1202 if (!desc || !desc->chip) {
1203 pr_warn("%s: invalid GPIO\n", __func__);
1204 return -EINVAL;
1205 }
1206 return _gpiod_direction_output_raw(desc, value);
1207}
1208EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1209
1210/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05301211 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001212 * @desc: GPIO to set to output
1213 * @value: initial output value of the GPIO
1214 *
1215 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1216 * be called safely on it. The initial value of the output must be specified
1217 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1218 * account.
1219 *
1220 * Return 0 in case of success, else an error code.
1221 */
1222int gpiod_direction_output(struct gpio_desc *desc, int value)
1223{
1224 if (!desc || !desc->chip) {
1225 pr_warn("%s: invalid GPIO\n", __func__);
1226 return -EINVAL;
1227 }
1228 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1229 value = !value;
1230 return _gpiod_direction_output_raw(desc, value);
1231}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001232EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08001233
Felipe Balbic4b5be92010-05-26 14:42:23 -07001234/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001235 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07001236 * @gpio: the gpio to set debounce time
1237 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02001238 *
1239 * returns -ENOTSUPP if the controller does not support setting
1240 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07001241 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001242int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07001243{
Felipe Balbic4b5be92010-05-26 14:42:23 -07001244 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07001245
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001246 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001247 pr_warn("%s: invalid GPIO\n", __func__);
1248 return -EINVAL;
1249 }
1250
Felipe Balbic4b5be92010-05-26 14:42:23 -07001251 chip = desc->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001252 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01001253 gpiod_dbg(desc,
1254 "%s: missing set() or set_debounce() operations\n",
1255 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02001256 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001257 }
1258
Alexandre Courbotd82da792014-07-22 16:17:43 +09001259 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07001260}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001261EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001262
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001263/**
1264 * gpiod_is_active_low - test whether a GPIO is active-low or not
1265 * @desc: the gpio descriptor to test
1266 *
1267 * Returns 1 if the GPIO is active-low, 0 otherwise.
1268 */
1269int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001270{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001271 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001272}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001273EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08001274
1275/* I/O calls are only valid after configuration completed; the relevant
1276 * "is this a valid GPIO" error checks should already have been done.
1277 *
1278 * "Get" operations are often inlinable as reading a pin value register,
1279 * and masking the relevant bit in that register.
1280 *
1281 * When "set" operations are inlinable, they involve writing that mask to
1282 * one register to set a low value, or a different register to set it high.
1283 * Otherwise locking is needed, so there may be little value to inlining.
1284 *
1285 *------------------------------------------------------------------------
1286 *
1287 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1288 * have requested the GPIO. That can include implicit requesting by
1289 * a direction setting call. Marking a gpio as requested locks its chip
1290 * in memory, guaranteeing that these table lookups need no more locking
1291 * and that gpiochip_remove() will fail.
1292 *
1293 * REVISIT when debugging, consider adding some instrumentation to ensure
1294 * that the GPIO was actually requested.
1295 */
1296
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001297static int _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001298{
1299 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001300 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001301 int value;
David Brownelld2876d02008-02-04 22:28:20 -08001302
Alexandre Courbot372e7222013-02-03 01:29:29 +09001303 chip = desc->chip;
1304 offset = gpio_chip_hwgpio(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001305 value = chip->get ? chip->get(chip, offset) : -EIO;
1306 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001307 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001308 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001309}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001310
David Brownelld2876d02008-02-04 22:28:20 -08001311/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001312 * gpiod_get_raw_value() - return a gpio's raw value
1313 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08001314 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001315 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001316 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001317 *
1318 * This function should be called from contexts where we cannot sleep, and will
1319 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001320 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001321int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001322{
David Brownelld2876d02008-02-04 22:28:20 -08001323 if (!desc)
1324 return 0;
David Brownelld2876d02008-02-04 22:28:20 -08001325 /* Should be using gpio_get_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001326 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001327 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001328}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001329EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001330
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001331/**
1332 * gpiod_get_value() - return a gpio's value
1333 * @desc: gpio whose value will be returned
1334 *
1335 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001336 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001337 *
1338 * This function should be called from contexts where we cannot sleep, and will
1339 * complain if the GPIO chip functions potentially sleep.
1340 */
1341int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001342{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001343 int value;
1344 if (!desc)
1345 return 0;
1346 /* Should be using gpio_get_value_cansleep() */
1347 WARN_ON(desc->chip->can_sleep);
1348
1349 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001350 if (value < 0)
1351 return value;
1352
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001353 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1354 value = !value;
1355
1356 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001357}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001358EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08001359
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301360/*
1361 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001362 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07001363 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301364 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001365static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301366{
1367 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001368 struct gpio_chip *chip = desc->chip;
1369 int offset = gpio_chip_hwgpio(desc);
1370
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301371 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001372 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301373 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001374 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301375 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001376 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301377 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001378 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301379 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001380 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301381 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001382 gpiod_err(desc,
1383 "%s: Error in set_value for open drain err %d\n",
1384 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301385}
1386
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301387/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001388 * _gpio_set_open_source_value() - Set the open source gpio's value.
1389 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07001390 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301391 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001392static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301393{
1394 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001395 struct gpio_chip *chip = desc->chip;
1396 int offset = gpio_chip_hwgpio(desc);
1397
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301398 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001399 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301400 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001401 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301402 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001403 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301404 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001405 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301406 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001407 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301408 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001409 gpiod_err(desc,
1410 "%s: Error in set_value for open source err %d\n",
1411 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301412}
1413
Alexandre Courbot23600962014-03-11 15:52:09 +09001414static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08001415{
1416 struct gpio_chip *chip;
1417
Alexandre Courbot372e7222013-02-03 01:29:29 +09001418 chip = desc->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001419 trace_gpio_value(desc_to_gpio(desc), 0, value);
1420 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1421 _gpio_set_open_drain_value(desc, value);
1422 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1423 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301424 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09001425 chip->set(chip, gpio_chip_hwgpio(desc), value);
1426}
1427
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001428/*
1429 * set multiple outputs on the same chip;
1430 * use the chip's set_multiple function if available;
1431 * otherwise set the outputs sequentially;
1432 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
1433 * defines which outputs are to be changed
1434 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
1435 * defines the values the outputs specified by mask are to be set to
1436 */
1437static void gpio_chip_set_multiple(struct gpio_chip *chip,
1438 unsigned long *mask, unsigned long *bits)
1439{
1440 if (chip->set_multiple) {
1441 chip->set_multiple(chip, mask, bits);
1442 } else {
1443 int i;
1444 for (i = 0; i < chip->ngpio; i++) {
1445 if (mask[BIT_WORD(i)] == 0) {
1446 /* no more set bits in this mask word;
1447 * skip ahead to the next word */
1448 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
1449 continue;
1450 }
1451 /* set outputs if the corresponding mask bit is set */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001452 if (__test_and_clear_bit(i, mask))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001453 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001454 }
1455 }
1456}
1457
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001458static void gpiod_set_array_value_priv(bool raw, bool can_sleep,
1459 unsigned int array_size,
1460 struct gpio_desc **desc_array,
1461 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001462{
1463 int i = 0;
1464
1465 while (i < array_size) {
1466 struct gpio_chip *chip = desc_array[i]->chip;
1467 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
1468 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
1469 int count = 0;
1470
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001471 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001472 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001473
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001474 memset(mask, 0, sizeof(mask));
1475 do {
1476 struct gpio_desc *desc = desc_array[i];
1477 int hwgpio = gpio_chip_hwgpio(desc);
1478 int value = value_array[i];
1479
1480 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1481 value = !value;
1482 trace_gpio_value(desc_to_gpio(desc), 0, value);
1483 /*
1484 * collect all normal outputs belonging to the same chip
1485 * open drain and open source outputs are set individually
1486 */
1487 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001488 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001489 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
1490 _gpio_set_open_source_value(desc, value);
1491 } else {
1492 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001493 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001494 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001495 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001496 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001497 count++;
1498 }
1499 i++;
1500 } while ((i < array_size) && (desc_array[i]->chip == chip));
1501 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001502 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001503 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001504 }
1505}
1506
David Brownelld2876d02008-02-04 22:28:20 -08001507/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001508 * gpiod_set_raw_value() - assign a gpio's raw value
1509 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08001510 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001511 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001512 * Set the raw value of the GPIO, i.e. the value of its physical line without
1513 * regard for its ACTIVE_LOW status.
1514 *
1515 * This function should be called from contexts where we cannot sleep, and will
1516 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001517 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001518void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001519{
David Brownelld2876d02008-02-04 22:28:20 -08001520 if (!desc)
1521 return;
David Brownelld2876d02008-02-04 22:28:20 -08001522 /* Should be using gpio_set_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001523 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001524 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001525}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001526EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001527
1528/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001529 * gpiod_set_value() - assign a gpio's value
1530 * @desc: gpio whose value will be assigned
1531 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001532 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001533 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1534 * account
1535 *
1536 * This function should be called from contexts where we cannot sleep, and will
1537 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001538 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001539void gpiod_set_value(struct gpio_desc *desc, int value)
1540{
1541 if (!desc)
1542 return;
1543 /* Should be using gpio_set_value_cansleep() */
1544 WARN_ON(desc->chip->can_sleep);
1545 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1546 value = !value;
1547 _gpiod_set_raw_value(desc, value);
1548}
1549EXPORT_SYMBOL_GPL(gpiod_set_value);
1550
1551/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001552 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001553 * @array_size: number of elements in the descriptor / value arrays
1554 * @desc_array: array of GPIO descriptors whose values will be assigned
1555 * @value_array: array of values to assign
1556 *
1557 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1558 * without regard for their ACTIVE_LOW status.
1559 *
1560 * This function should be called from contexts where we cannot sleep, and will
1561 * complain if the GPIO chip functions potentially sleep.
1562 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001563void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001564 struct gpio_desc **desc_array, int *value_array)
1565{
1566 if (!desc_array)
1567 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001568 gpiod_set_array_value_priv(true, false, array_size, desc_array,
1569 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001570}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001571EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001572
1573/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001574 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001575 * @array_size: number of elements in the descriptor / value arrays
1576 * @desc_array: array of GPIO descriptors whose values will be assigned
1577 * @value_array: array of values to assign
1578 *
1579 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1580 * into account.
1581 *
1582 * This function should be called from contexts where we cannot sleep, and will
1583 * complain if the GPIO chip functions potentially sleep.
1584 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001585void gpiod_set_array_value(unsigned int array_size,
1586 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001587{
1588 if (!desc_array)
1589 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001590 gpiod_set_array_value_priv(false, false, array_size, desc_array,
1591 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001592}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001593EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001594
1595/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001596 * gpiod_cansleep() - report whether gpio value access may sleep
1597 * @desc: gpio to check
1598 *
1599 */
1600int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001601{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001602 if (!desc)
1603 return 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001604 return desc->chip->can_sleep;
1605}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001606EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001607
David Brownell0f6d5042008-10-15 22:03:14 -07001608/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001609 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1610 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07001611 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001612 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1613 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07001614 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001615int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07001616{
1617 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001618 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07001619
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001620 if (!desc)
1621 return -EINVAL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001622 chip = desc->chip;
1623 offset = gpio_chip_hwgpio(desc);
1624 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
1625}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001626EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001627
Linus Walleijd468bf92013-09-24 11:54:38 +02001628/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001629 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001630 * @chip: the chip the GPIO to lock belongs to
1631 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001632 *
1633 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08001634 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08001635 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001636int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08001637{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001638 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001639 return -EINVAL;
1640
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001641 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) {
1642 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02001643 "%s: tried to flag a GPIO set as output for IRQ\n",
1644 __func__);
1645 return -EIO;
1646 }
1647
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001648 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001649 return 0;
1650}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001651EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001652
Linus Walleijd468bf92013-09-24 11:54:38 +02001653/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001654 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001655 * @chip: the chip the GPIO to lock belongs to
1656 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001657 *
1658 * This is used directly by GPIO drivers that want to indicate
1659 * that a certain GPIO is no longer used exclusively for IRQ.
1660 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001661void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02001662{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001663 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001664 return;
1665
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001666 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001667}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001668EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001669
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001670/**
1671 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
1672 * @desc: gpio whose value will be returned
1673 *
1674 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001675 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001676 *
1677 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001678 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001679int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001680{
David Brownelld2876d02008-02-04 22:28:20 -08001681 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001682 if (!desc)
1683 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001684 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08001685}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001686EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001687
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001688/**
1689 * gpiod_get_value_cansleep() - return a gpio's value
1690 * @desc: gpio whose value will be returned
1691 *
1692 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001693 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001694 *
1695 * This function is to be called from contexts that can sleep.
1696 */
1697int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001698{
David Brownelld2876d02008-02-04 22:28:20 -08001699 int value;
David Brownelld2876d02008-02-04 22:28:20 -08001700
1701 might_sleep_if(extra_checks);
1702 if (!desc)
1703 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001704
1705 value = _gpiod_get_raw_value(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07001706 if (value < 0)
1707 return value;
1708
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001709 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1710 value = !value;
1711
David Brownelld2876d02008-02-04 22:28:20 -08001712 return value;
1713}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001714EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001715
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001716/**
1717 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
1718 * @desc: gpio whose value will be assigned
1719 * @value: value to assign
1720 *
1721 * Set the raw value of the GPIO, i.e. the value of its physical line without
1722 * regard for its ACTIVE_LOW status.
1723 *
1724 * This function is to be called from contexts that can sleep.
1725 */
1726void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001727{
David Brownelld2876d02008-02-04 22:28:20 -08001728 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001729 if (!desc)
1730 return;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001731 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001732}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001733EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001734
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001735/**
1736 * gpiod_set_value_cansleep() - assign a gpio's value
1737 * @desc: gpio whose value will be assigned
1738 * @value: value to assign
1739 *
1740 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1741 * account
1742 *
1743 * This function is to be called from contexts that can sleep.
1744 */
1745void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001746{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001747 might_sleep_if(extra_checks);
1748 if (!desc)
1749 return;
1750
1751 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1752 value = !value;
1753 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001754}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001755EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001756
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001757/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001758 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001759 * @array_size: number of elements in the descriptor / value arrays
1760 * @desc_array: array of GPIO descriptors whose values will be assigned
1761 * @value_array: array of values to assign
1762 *
1763 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1764 * without regard for their ACTIVE_LOW status.
1765 *
1766 * This function is to be called from contexts that can sleep.
1767 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001768void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
1769 struct gpio_desc **desc_array,
1770 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001771{
1772 might_sleep_if(extra_checks);
1773 if (!desc_array)
1774 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001775 gpiod_set_array_value_priv(true, true, array_size, desc_array,
1776 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001777}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001778EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001779
1780/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001781 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001782 * @array_size: number of elements in the descriptor / value arrays
1783 * @desc_array: array of GPIO descriptors whose values will be assigned
1784 * @value_array: array of values to assign
1785 *
1786 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1787 * into account.
1788 *
1789 * This function is to be called from contexts that can sleep.
1790 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001791void gpiod_set_array_value_cansleep(unsigned int array_size,
1792 struct gpio_desc **desc_array,
1793 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001794{
1795 might_sleep_if(extra_checks);
1796 if (!desc_array)
1797 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001798 gpiod_set_array_value_priv(false, true, array_size, desc_array,
1799 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001800}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001801EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001802
1803/**
Alexandre Courbotad824782013-12-03 12:20:11 +09001804 * gpiod_add_lookup_table() - register GPIO device consumers
1805 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001806 */
Alexandre Courbotad824782013-12-03 12:20:11 +09001807void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001808{
1809 mutex_lock(&gpio_lookup_lock);
1810
Alexandre Courbotad824782013-12-03 12:20:11 +09001811 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001812
1813 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08001814}
1815
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05301816/**
1817 * gpiod_remove_lookup_table() - unregister GPIO device consumers
1818 * @table: table of consumers to unregister
1819 */
1820void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
1821{
1822 mutex_lock(&gpio_lookup_lock);
1823
1824 list_del(&table->list);
1825
1826 mutex_unlock(&gpio_lookup_lock);
1827}
1828
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001829static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001830 unsigned int idx,
1831 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001832{
1833 char prop_name[32]; /* 32 is max size of property name */
1834 enum of_gpio_flags of_flags;
1835 struct gpio_desc *desc;
Thierry Redingdd34c372014-04-23 17:28:09 +02001836 unsigned int i;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001837
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001838 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Thierry Redingdd34c372014-04-23 17:28:09 +02001839 if (con_id)
Olliver Schinagl9e089242015-01-21 22:33:45 +01001840 snprintf(prop_name, sizeof(prop_name), "%s-%s", con_id,
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001841 gpio_suffixes[i]);
Thierry Redingdd34c372014-04-23 17:28:09 +02001842 else
Olliver Schinagl9e089242015-01-21 22:33:45 +01001843 snprintf(prop_name, sizeof(prop_name), "%s",
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001844 gpio_suffixes[i]);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001845
Thierry Redingdd34c372014-04-23 17:28:09 +02001846 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
1847 &of_flags);
Tony Lindgren06fc3b72014-06-02 16:13:46 -07001848 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
Thierry Redingdd34c372014-04-23 17:28:09 +02001849 break;
1850 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001851
1852 if (IS_ERR(desc))
1853 return desc;
1854
1855 if (of_flags & OF_GPIO_ACTIVE_LOW)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001856 *flags |= GPIO_ACTIVE_LOW;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001857
Laurent Pinchart90b665f2015-10-13 00:20:21 +03001858 if (of_flags & OF_GPIO_SINGLE_ENDED) {
1859 if (of_flags & OF_GPIO_ACTIVE_LOW)
1860 *flags |= GPIO_OPEN_DRAIN;
1861 else
1862 *flags |= GPIO_OPEN_SOURCE;
1863 }
1864
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001865 return desc;
1866}
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001867
Mika Westerberg81f59e92013-10-10 11:01:09 +03001868static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001869 unsigned int idx,
1870 enum gpio_lookup_flags *flags)
Mika Westerberg81f59e92013-10-10 11:01:09 +03001871{
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001872 struct acpi_device *adev = ACPI_COMPANION(dev);
Mika Westerberge01f4402013-10-10 11:01:10 +03001873 struct acpi_gpio_info info;
1874 struct gpio_desc *desc;
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001875 char propname[32];
1876 int i;
Mika Westerberge01f4402013-10-10 11:01:10 +03001877
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001878 /* Try first from _DSD */
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001879 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001880 if (con_id && strcmp(con_id, "gpios")) {
1881 snprintf(propname, sizeof(propname), "%s-%s",
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001882 con_id, gpio_suffixes[i]);
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001883 } else {
1884 snprintf(propname, sizeof(propname), "%s",
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001885 gpio_suffixes[i]);
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001886 }
Mika Westerberge01f4402013-10-10 11:01:10 +03001887
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001888 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
1889 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
1890 break;
1891 }
1892
1893 /* Then from plain _CRS GPIOs */
1894 if (IS_ERR(desc)) {
Dmitry Torokhov9c3c9bc2015-11-11 11:45:30 -08001895 if (!acpi_can_fallback_to_crs(adev, con_id))
1896 return ERR_PTR(-ENOENT);
1897
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001898 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
1899 if (IS_ERR(desc))
1900 return desc;
1901 }
1902
1903 if (info.active_low)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001904 *flags |= GPIO_ACTIVE_LOW;
Mika Westerberge01f4402013-10-10 11:01:10 +03001905
1906 return desc;
Mika Westerberg81f59e92013-10-10 11:01:09 +03001907}
1908
Alexandre Courbotad824782013-12-03 12:20:11 +09001909static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
1910{
1911 const char *dev_id = dev ? dev_name(dev) : NULL;
1912 struct gpiod_lookup_table *table;
1913
1914 mutex_lock(&gpio_lookup_lock);
1915
1916 list_for_each_entry(table, &gpio_lookup_list, list) {
1917 if (table->dev_id && dev_id) {
1918 /*
1919 * Valid strings on both ends, must be identical to have
1920 * a match
1921 */
1922 if (!strcmp(table->dev_id, dev_id))
1923 goto found;
1924 } else {
1925 /*
1926 * One of the pointers is NULL, so both must be to have
1927 * a match
1928 */
1929 if (dev_id == table->dev_id)
1930 goto found;
1931 }
1932 }
1933 table = NULL;
1934
1935found:
1936 mutex_unlock(&gpio_lookup_lock);
1937 return table;
1938}
1939
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001940static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001941 unsigned int idx,
1942 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001943{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001944 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09001945 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001946 struct gpiod_lookup *p;
1947
Alexandre Courbotad824782013-12-03 12:20:11 +09001948 table = gpiod_find_lookup_table(dev);
1949 if (!table)
1950 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001951
Alexandre Courbotad824782013-12-03 12:20:11 +09001952 for (p = &table->table[0]; p->chip_label; p++) {
1953 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001954
Alexandre Courbotad824782013-12-03 12:20:11 +09001955 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001956 if (p->idx != idx)
1957 continue;
1958
Alexandre Courbotad824782013-12-03 12:20:11 +09001959 /* If the lookup entry has a con_id, require exact match */
1960 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
1961 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001962
Alexandre Courbotad824782013-12-03 12:20:11 +09001963 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001964
Alexandre Courbotad824782013-12-03 12:20:11 +09001965 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001966 dev_err(dev, "cannot find GPIO chip %s\n",
1967 p->chip_label);
1968 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001969 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001970
Alexandre Courbotad824782013-12-03 12:20:11 +09001971 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001972 dev_err(dev,
1973 "requested GPIO %d is out of range [0..%d] for chip %s\n",
1974 idx, chip->ngpio, chip->label);
1975 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09001976 }
1977
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09001978 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09001979 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001980
1981 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09001982 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001983
1984 return desc;
1985}
1986
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001987static int dt_gpio_count(struct device *dev, const char *con_id)
1988{
1989 int ret;
1990 char propname[32];
1991 unsigned int i;
1992
1993 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
1994 if (con_id)
1995 snprintf(propname, sizeof(propname), "%s-%s",
1996 con_id, gpio_suffixes[i]);
1997 else
1998 snprintf(propname, sizeof(propname), "%s",
1999 gpio_suffixes[i]);
2000
2001 ret = of_gpio_named_count(dev->of_node, propname);
2002 if (ret >= 0)
2003 break;
2004 }
2005 return ret;
2006}
2007
2008static int platform_gpio_count(struct device *dev, const char *con_id)
2009{
2010 struct gpiod_lookup_table *table;
2011 struct gpiod_lookup *p;
2012 unsigned int count = 0;
2013
2014 table = gpiod_find_lookup_table(dev);
2015 if (!table)
2016 return -ENOENT;
2017
2018 for (p = &table->table[0]; p->chip_label; p++) {
2019 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
2020 (!con_id && !p->con_id))
2021 count++;
2022 }
2023 if (!count)
2024 return -ENOENT;
2025
2026 return count;
2027}
2028
2029/**
2030 * gpiod_count - return the number of GPIOs associated with a device / function
2031 * or -ENOENT if no GPIO has been assigned to the requested function
2032 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2033 * @con_id: function within the GPIO consumer
2034 */
2035int gpiod_count(struct device *dev, const char *con_id)
2036{
2037 int count = -ENOENT;
2038
2039 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
2040 count = dt_gpio_count(dev, con_id);
2041 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
2042 count = acpi_gpio_count(dev, con_id);
2043
2044 if (count < 0)
2045 count = platform_gpio_count(dev, con_id);
2046
2047 return count;
2048}
2049EXPORT_SYMBOL_GPL(gpiod_count);
2050
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002051/**
Thierry Reding08791622014-04-25 16:54:22 +02002052 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09002053 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002054 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002055 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002056 *
2057 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002058 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07002059 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002060 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002061struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002062 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002063{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002064 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002065}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002066EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002067
2068/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02002069 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
2070 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2071 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002072 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02002073 *
2074 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
2075 * the requested function it will return NULL. This is convenient for drivers
2076 * that need to handle optional GPIOs.
2077 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002078struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002079 const char *con_id,
2080 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02002081{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002082 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002083}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002084EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002085
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002086/**
2087 * gpiod_parse_flags - helper function to parse GPIO lookup flags
2088 * @desc: gpio to be setup
2089 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2090 * of_get_gpio_hog()
2091 *
2092 * Set the GPIO descriptor flags based on the given GPIO lookup flags.
2093 */
2094static void gpiod_parse_flags(struct gpio_desc *desc, unsigned long lflags)
2095{
2096 if (lflags & GPIO_ACTIVE_LOW)
2097 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2098 if (lflags & GPIO_OPEN_DRAIN)
2099 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
2100 if (lflags & GPIO_OPEN_SOURCE)
2101 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
2102}
Benoit Parrotf625d462015-02-02 11:44:44 -06002103
2104/**
2105 * gpiod_configure_flags - helper function to configure a given GPIO
2106 * @desc: gpio whose value will be assigned
2107 * @con_id: function within the GPIO consumer
Benoit Parrotf625d462015-02-02 11:44:44 -06002108 * @dflags: gpiod_flags - optional GPIO initialization flags
2109 *
2110 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
2111 * requested function and/or index, or another IS_ERR() code if an error
2112 * occurred while trying to acquire the GPIO.
2113 */
2114static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002115 enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06002116{
2117 int status;
2118
Benoit Parrotf625d462015-02-02 11:44:44 -06002119 /* No particular flag request, return here... */
2120 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
2121 pr_debug("no flags found for %s\n", con_id);
2122 return 0;
2123 }
2124
2125 /* Process flags */
2126 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
2127 status = gpiod_direction_output(desc,
2128 dflags & GPIOD_FLAGS_BIT_DIR_VAL);
2129 else
2130 status = gpiod_direction_input(desc);
2131
2132 return status;
2133}
2134
Thierry Reding29a1f2332014-04-25 17:10:06 +02002135/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002136 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02002137 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002138 * @con_id: function within the GPIO consumer
2139 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002140 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002141 *
2142 * This variant of gpiod_get() allows to access GPIOs other than the first
2143 * defined one for functions that define several GPIOs.
2144 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002145 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
2146 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07002147 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002148 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002149struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002150 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002151 unsigned int idx,
2152 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002153{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09002154 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002155 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002156 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002157
2158 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
2159
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01002160 if (dev) {
2161 /* Using device tree? */
2162 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
2163 dev_dbg(dev, "using device tree for GPIO lookup\n");
2164 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
2165 } else if (ACPI_COMPANION(dev)) {
2166 dev_dbg(dev, "using ACPI for GPIO lookup\n");
2167 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags);
2168 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09002169 }
2170
2171 /*
2172 * Either we are not using DT or ACPI, or their lookup did not return
2173 * a result. In that case, use platform lookup as a fallback.
2174 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002175 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04002176 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002177 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002178 }
2179
2180 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02002181 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002182 return desc;
2183 }
2184
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002185 gpiod_parse_flags(desc, lookupflags);
2186
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002187 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002188 if (status < 0)
2189 return ERR_PTR(status);
2190
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002191 status = gpiod_configure_flags(desc, con_id, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002192 if (status < 0) {
2193 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
2194 gpiod_put(desc);
2195 return ERR_PTR(status);
2196 }
2197
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002198 return desc;
2199}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002200EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002201
2202/**
Mika Westerberg40b73182014-10-21 13:33:59 +02002203 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
2204 * @fwnode: handle of the firmware node
2205 * @propname: name of the firmware property representing the GPIO
2206 *
2207 * This function can be used for drivers that get their configuration
2208 * from firmware.
2209 *
2210 * Function properly finds the corresponding GPIO using whatever is the
2211 * underlying firmware interface and then makes sure that the GPIO
2212 * descriptor is requested before it is returned to the caller.
2213 *
2214 * In case of error an ERR_PTR() is returned.
2215 */
2216struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
2217 const char *propname)
2218{
2219 struct gpio_desc *desc = ERR_PTR(-ENODEV);
2220 bool active_low = false;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03002221 bool single_ended = false;
Mika Westerberg40b73182014-10-21 13:33:59 +02002222 int ret;
2223
2224 if (!fwnode)
2225 return ERR_PTR(-EINVAL);
2226
2227 if (is_of_node(fwnode)) {
2228 enum of_gpio_flags flags;
2229
Alexander Sverdlinc181fb32015-06-22 22:38:53 +02002230 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
Mika Westerberg40b73182014-10-21 13:33:59 +02002231 &flags);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03002232 if (!IS_ERR(desc)) {
Mika Westerberg40b73182014-10-21 13:33:59 +02002233 active_low = flags & OF_GPIO_ACTIVE_LOW;
Laurent Pinchart90b665f2015-10-13 00:20:21 +03002234 single_ended = flags & OF_GPIO_SINGLE_ENDED;
2235 }
Mika Westerberg40b73182014-10-21 13:33:59 +02002236 } else if (is_acpi_node(fwnode)) {
2237 struct acpi_gpio_info info;
2238
Rafael J. Wysocki504a3372015-08-27 04:42:33 +02002239 desc = acpi_node_get_gpiod(fwnode, propname, 0, &info);
Mika Westerberg40b73182014-10-21 13:33:59 +02002240 if (!IS_ERR(desc))
2241 active_low = info.active_low;
2242 }
2243
2244 if (IS_ERR(desc))
2245 return desc;
2246
Mika Westerberg40b73182014-10-21 13:33:59 +02002247 if (active_low)
2248 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2249
Laurent Pinchart90b665f2015-10-13 00:20:21 +03002250 if (single_ended) {
2251 if (active_low)
2252 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
2253 else
2254 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
2255 }
2256
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002257 ret = gpiod_request(desc, NULL);
2258 if (ret)
2259 return ERR_PTR(ret);
2260
Mika Westerberg40b73182014-10-21 13:33:59 +02002261 return desc;
2262}
2263EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
2264
2265/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02002266 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
2267 * function
2268 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2269 * @con_id: function within the GPIO consumer
2270 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002271 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02002272 *
2273 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
2274 * specified index was assigned to the requested function it will return NULL.
2275 * This is convenient for drivers that need to handle optional GPIOs.
2276 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002277struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02002278 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002279 unsigned int index,
2280 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02002281{
2282 struct gpio_desc *desc;
2283
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002284 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002285 if (IS_ERR(desc)) {
2286 if (PTR_ERR(desc) == -ENOENT)
2287 return NULL;
2288 }
2289
2290 return desc;
2291}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002292EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002293
2294/**
Benoit Parrotf625d462015-02-02 11:44:44 -06002295 * gpiod_hog - Hog the specified GPIO desc given the provided flags
2296 * @desc: gpio whose value will be assigned
2297 * @name: gpio line name
2298 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2299 * of_get_gpio_hog()
2300 * @dflags: gpiod_flags - optional GPIO initialization flags
2301 */
2302int gpiod_hog(struct gpio_desc *desc, const char *name,
2303 unsigned long lflags, enum gpiod_flags dflags)
2304{
2305 struct gpio_chip *chip;
2306 struct gpio_desc *local_desc;
2307 int hwnum;
2308 int status;
2309
2310 chip = gpiod_to_chip(desc);
2311 hwnum = gpio_chip_hwgpio(desc);
2312
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002313 gpiod_parse_flags(desc, lflags);
2314
Benoit Parrotf625d462015-02-02 11:44:44 -06002315 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
2316 if (IS_ERR(local_desc)) {
Linus Walleija7138902015-06-05 11:36:10 +02002317 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed\n",
2318 name, chip->label, hwnum);
Benoit Parrotf625d462015-02-02 11:44:44 -06002319 return PTR_ERR(local_desc);
2320 }
2321
Laurent Pinchart923b93e2015-10-13 00:20:20 +03002322 status = gpiod_configure_flags(desc, name, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06002323 if (status < 0) {
Linus Walleija7138902015-06-05 11:36:10 +02002324 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed\n",
2325 name, chip->label, hwnum);
Benoit Parrotf625d462015-02-02 11:44:44 -06002326 gpiochip_free_own_desc(desc);
2327 return status;
2328 }
2329
2330 /* Mark GPIO as hogged so it can be identified and removed later */
2331 set_bit(FLAG_IS_HOGGED, &desc->flags);
2332
2333 pr_info("GPIO line %d (%s) hogged as %s%s\n",
2334 desc_to_gpio(desc), name,
2335 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
2336 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
2337 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
2338
2339 return 0;
2340}
2341
2342/**
2343 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
2344 * @chip: gpio chip to act on
2345 *
2346 * This is only used by of_gpiochip_remove to free hogged gpios
2347 */
2348static void gpiochip_free_hogs(struct gpio_chip *chip)
2349{
2350 int id;
2351
2352 for (id = 0; id < chip->ngpio; id++) {
2353 if (test_bit(FLAG_IS_HOGGED, &chip->desc[id].flags))
2354 gpiochip_free_own_desc(&chip->desc[id]);
2355 }
2356}
2357
2358/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01002359 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
2360 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2361 * @con_id: function within the GPIO consumer
2362 * @flags: optional GPIO initialization flags
2363 *
2364 * This function acquires all the GPIOs defined under a given function.
2365 *
2366 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
2367 * no GPIO has been assigned to the requested function, or another IS_ERR()
2368 * code if an error occurred while trying to acquire the GPIOs.
2369 */
2370struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
2371 const char *con_id,
2372 enum gpiod_flags flags)
2373{
2374 struct gpio_desc *desc;
2375 struct gpio_descs *descs;
2376 int count;
2377
2378 count = gpiod_count(dev, con_id);
2379 if (count < 0)
2380 return ERR_PTR(count);
2381
2382 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
2383 GFP_KERNEL);
2384 if (!descs)
2385 return ERR_PTR(-ENOMEM);
2386
2387 for (descs->ndescs = 0; descs->ndescs < count; ) {
2388 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
2389 if (IS_ERR(desc)) {
2390 gpiod_put_array(descs);
2391 return ERR_CAST(desc);
2392 }
2393 descs->desc[descs->ndescs] = desc;
2394 descs->ndescs++;
2395 }
2396 return descs;
2397}
2398EXPORT_SYMBOL_GPL(gpiod_get_array);
2399
2400/**
2401 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
2402 * function
2403 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2404 * @con_id: function within the GPIO consumer
2405 * @flags: optional GPIO initialization flags
2406 *
2407 * This is equivalent to gpiod_get_array(), except that when no GPIO was
2408 * assigned to the requested function it will return NULL.
2409 */
2410struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
2411 const char *con_id,
2412 enum gpiod_flags flags)
2413{
2414 struct gpio_descs *descs;
2415
2416 descs = gpiod_get_array(dev, con_id, flags);
2417 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
2418 return NULL;
2419
2420 return descs;
2421}
2422EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
2423
2424/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002425 * gpiod_put - dispose of a GPIO descriptor
2426 * @desc: GPIO descriptor to dispose of
2427 *
2428 * No descriptor can be used after gpiod_put() has been called on it.
2429 */
2430void gpiod_put(struct gpio_desc *desc)
2431{
2432 gpiod_free(desc);
2433}
2434EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08002435
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01002436/**
2437 * gpiod_put_array - dispose of multiple GPIO descriptors
2438 * @descs: struct gpio_descs containing an array of descriptors
2439 */
2440void gpiod_put_array(struct gpio_descs *descs)
2441{
2442 unsigned int i;
2443
2444 for (i = 0; i < descs->ndescs; i++)
2445 gpiod_put(descs->desc[i]);
2446
2447 kfree(descs);
2448}
2449EXPORT_SYMBOL_GPL(gpiod_put_array);
2450
David Brownelld2876d02008-02-04 22:28:20 -08002451#ifdef CONFIG_DEBUG_FS
2452
2453static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
2454{
2455 unsigned i;
2456 unsigned gpio = chip->base;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002457 struct gpio_desc *gdesc = &chip->desc[0];
David Brownelld2876d02008-02-04 22:28:20 -08002458 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02002459 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08002460
2461 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02002462 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
2463 if (gdesc->name) {
2464 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
2465 gpio, gdesc->name);
2466 }
David Brownelld2876d02008-02-04 22:28:20 -08002467 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02002468 }
David Brownelld2876d02008-02-04 22:28:20 -08002469
Alexandre Courbot372e7222013-02-03 01:29:29 +09002470 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08002471 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002472 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Markus Pargmannced433e2015-08-14 16:11:02 +02002473 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s",
2474 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08002475 is_out ? "out" : "in ",
2476 chip->get
2477 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02002478 : "? ",
2479 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08002480 seq_printf(s, "\n");
2481 }
2482}
2483
Thierry Redingf9c4a312012-04-12 13:26:01 +02002484static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08002485{
Grant Likely362432a2013-02-09 09:41:49 +00002486 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002487 struct gpio_chip *chip = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002488 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002489
2490 s->private = "";
2491
Grant Likely362432a2013-02-09 09:41:49 +00002492 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002493 list_for_each_entry(chip, &gpio_chips, list)
Grant Likely362432a2013-02-09 09:41:49 +00002494 if (index-- == 0) {
2495 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002496 return chip;
Grant Likely362432a2013-02-09 09:41:49 +00002497 }
2498 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002499
2500 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002501}
2502
2503static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
2504{
Grant Likely362432a2013-02-09 09:41:49 +00002505 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002506 struct gpio_chip *chip = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002507 void *ret = NULL;
2508
Grant Likely362432a2013-02-09 09:41:49 +00002509 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002510 if (list_is_last(&chip->list, &gpio_chips))
2511 ret = NULL;
2512 else
2513 ret = list_entry(chip->list.next, struct gpio_chip, list);
Grant Likely362432a2013-02-09 09:41:49 +00002514 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02002515
2516 s->private = "\n";
2517 ++*pos;
2518
2519 return ret;
2520}
2521
2522static void gpiolib_seq_stop(struct seq_file *s, void *v)
2523{
2524}
2525
2526static int gpiolib_seq_show(struct seq_file *s, void *v)
2527{
2528 struct gpio_chip *chip = v;
2529 struct device *dev;
2530
2531 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private,
2532 chip->base, chip->base + chip->ngpio - 1);
Linus Walleij58383c72015-11-04 09:56:26 +01002533 dev = chip->parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002534 if (dev)
2535 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus",
2536 dev_name(dev));
2537 if (chip->label)
2538 seq_printf(s, ", %s", chip->label);
2539 if (chip->can_sleep)
2540 seq_printf(s, ", can sleep");
2541 seq_printf(s, ":\n");
2542
2543 if (chip->dbg_show)
2544 chip->dbg_show(s, chip);
2545 else
2546 gpiolib_dbg_show(s, chip);
2547
David Brownelld2876d02008-02-04 22:28:20 -08002548 return 0;
2549}
2550
Thierry Redingf9c4a312012-04-12 13:26:01 +02002551static const struct seq_operations gpiolib_seq_ops = {
2552 .start = gpiolib_seq_start,
2553 .next = gpiolib_seq_next,
2554 .stop = gpiolib_seq_stop,
2555 .show = gpiolib_seq_show,
2556};
2557
David Brownelld2876d02008-02-04 22:28:20 -08002558static int gpiolib_open(struct inode *inode, struct file *file)
2559{
Thierry Redingf9c4a312012-04-12 13:26:01 +02002560 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08002561}
2562
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002563static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02002564 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08002565 .open = gpiolib_open,
2566 .read = seq_read,
2567 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02002568 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08002569};
2570
2571static int __init gpiolib_debugfs_init(void)
2572{
2573 /* /sys/kernel/debug/gpio */
2574 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
2575 NULL, NULL, &gpiolib_operations);
2576 return 0;
2577}
2578subsys_initcall(gpiolib_debugfs_init);
2579
2580#endif /* DEBUG_FS */