blob: 34f95fbc884a5197c60c571a2e6518f9e42558d6 [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>
David Brownelld2876d02008-02-04 22:28:20 -080018
Mika Westerberg664e3e52014-01-08 12:40:54 +020019#include "gpiolib.h"
20
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060021#define CREATE_TRACE_POINTS
22#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080023
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070024/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080025 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070026 * The GPIO programming interface allows for inlining speed-critical
27 * get/set operations for common cases, so that access to SOC-integrated
28 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080029 */
30
31
32/* When debugging, extend minimal trust to callers and platform code.
33 * Also emit diagnostic messages that may help initial bringup, when
34 * board setup or driver bugs are most common.
35 *
36 * Otherwise, minimize overhead in what may be bitbanging codepaths.
37 */
38#ifdef DEBUG
39#define extra_checks 1
40#else
41#define extra_checks 0
42#endif
43
44/* gpio_lock prevents conflicts during gpio_desc[] table updates.
45 * While any GPIO is requested, its gpio_chip is not removable;
46 * each GPIO's "requested" flag serves as a lock and refcount.
47 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090048DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080049
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090050#define GPIO_OFFSET_VALID(chip, offset) (offset >= 0 && offset < chip->ngpio)
51
Alexandre Courbotbae48da2013-10-17 10:21:38 -070052static DEFINE_MUTEX(gpio_lookup_lock);
53static LIST_HEAD(gpio_lookup_list);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090054LIST_HEAD(gpio_chips);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +020055
Johan Hovold6d867502015-05-04 17:23:25 +020056
57static void gpiochip_free_hogs(struct gpio_chip *chip);
58static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
59
60
David Brownelld2876d02008-02-04 22:28:20 -080061static inline void desc_set_label(struct gpio_desc *d, const char *label)
62{
David Brownelld2876d02008-02-04 22:28:20 -080063 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080064}
65
Alexandre Courbot372e7222013-02-03 01:29:29 +090066/**
67 * Convert a GPIO number to its descriptor
68 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070069struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090070{
Alexandre Courbot14e85c02014-11-19 16:51:27 +090071 struct gpio_chip *chip;
72 unsigned long flags;
73
74 spin_lock_irqsave(&gpio_lock, flags);
75
76 list_for_each_entry(chip, &gpio_chips, list) {
77 if (chip->base <= gpio && chip->base + chip->ngpio > gpio) {
78 spin_unlock_irqrestore(&gpio_lock, flags);
79 return &chip->desc[gpio - chip->base];
80 }
81 }
82
83 spin_unlock_irqrestore(&gpio_lock, flags);
84
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +090085 if (!gpio_is_valid(gpio))
86 WARN(1, "invalid GPIO %d\n", gpio);
87
Alexandre Courbot14e85c02014-11-19 16:51:27 +090088 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +090089}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070090EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +090091
92/**
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090093 * Get the GPIO descriptor corresponding to the given hw number for this chip.
Linus Walleijd468bf92013-09-24 11:54:38 +020094 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090095struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
96 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +020097{
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090098 if (hwnum >= chip->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +090099 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +0200100
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +0900101 return &chip->desc[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200102}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900103
104/**
105 * Convert a GPIO descriptor to the integer namespace.
106 * This should disappear in the future but is needed since we still
107 * use GPIO numbers for error messages and sysfs nodes
108 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700109int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900110{
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900111 return desc->chip->base + (desc - &desc->chip->desc[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900112}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700113EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900114
115
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700116/**
117 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
118 * @desc: descriptor to return the chip of
119 */
120struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900121{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900122 return desc ? desc->chip : NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900123}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700124EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800125
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700126/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
127static int gpiochip_find_base(int ngpio)
128{
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900129 struct gpio_chip *chip;
130 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700131
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900132 list_for_each_entry_reverse(chip, &gpio_chips, list) {
133 /* found a free space? */
134 if (chip->base + chip->ngpio <= base)
135 break;
136 else
137 /* nope, check the space right before the chip */
138 base = chip->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700139 }
140
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900141 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700142 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900143 return base;
144 } else {
145 pr_err("%s: cannot find free range\n", __func__);
146 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700147 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700148}
149
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700150/**
151 * gpiod_get_direction - return the current direction of a GPIO
152 * @desc: GPIO to get the direction of
153 *
154 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
155 *
156 * This function may sleep if gpiod_cansleep() is true.
157 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900158int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300159{
160 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900161 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300162 int status = -EINVAL;
163
Alexandre Courbot372e7222013-02-03 01:29:29 +0900164 chip = gpiod_to_chip(desc);
165 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300166
167 if (!chip->get_direction)
168 return status;
169
Alexandre Courbot372e7222013-02-03 01:29:29 +0900170 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300171 if (status > 0) {
172 /* GPIOF_DIR_IN, or other positive */
173 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900174 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300175 }
176 if (status == 0) {
177 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900178 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300179 }
180 return status;
181}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700182EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300183
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900184/*
185 * Add a new chip to the global chips list, keeping the list of chips sorted
186 * by base order.
187 *
188 * Return -EBUSY if the new chip overlaps with some other chip's integer
189 * space.
190 */
191static int gpiochip_add_to_list(struct gpio_chip *chip)
192{
Masahiro Yamadad1aceb82015-07-21 14:45:40 +0900193 struct list_head *pos;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900194 struct gpio_chip *_chip;
195 int err = 0;
196
197 /* find where to insert our chip */
198 list_for_each(pos, &gpio_chips) {
199 _chip = list_entry(pos, struct gpio_chip, list);
200 /* shall we insert before _chip? */
201 if (_chip->base >= chip->base + chip->ngpio)
202 break;
203 }
204
205 /* are we stepping on the chip right before? */
206 if (pos != &gpio_chips && pos->prev != &gpio_chips) {
207 _chip = list_entry(pos->prev, struct gpio_chip, list);
208 if (_chip->base + _chip->ngpio > chip->base) {
209 dev_err(chip->dev,
210 "GPIO integer space overlap, cannot add chip\n");
211 err = -EBUSY;
212 }
213 }
214
215 if (!err)
216 list_add_tail(&chip->list, pos);
217
218 return err;
219}
220
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700221/**
David Brownelld2876d02008-02-04 22:28:20 -0800222 * gpiochip_add() - register a gpio_chip
223 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900224 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -0800225 *
226 * Returns a negative errno if the chip can't be registered, such as
227 * because the chip->base is invalid or already associated with a
228 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700229 *
David Brownelld8f388d2008-07-25 01:46:07 -0700230 * When gpiochip_add() is called very early during boot, so that GPIOs
231 * can be freely used, the chip->dev device must be registered before
232 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
233 * for GPIOs will fail rudely.
234 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700235 * If chip->base is negative, this requests dynamic assignment of
236 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800237 */
238int gpiochip_add(struct gpio_chip *chip)
239{
240 unsigned long flags;
241 int status = 0;
242 unsigned id;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700243 int base = chip->base;
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900244 struct gpio_desc *descs;
David Brownelld2876d02008-02-04 22:28:20 -0800245
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900246 descs = kcalloc(chip->ngpio, sizeof(descs[0]), GFP_KERNEL);
247 if (!descs)
248 return -ENOMEM;
David Brownelld2876d02008-02-04 22:28:20 -0800249
250 spin_lock_irqsave(&gpio_lock, flags);
251
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700252 if (base < 0) {
253 base = gpiochip_find_base(chip->ngpio);
254 if (base < 0) {
255 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +0100256 spin_unlock_irqrestore(&gpio_lock, flags);
257 goto err_free_descs;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700258 }
259 chip->base = base;
260 }
261
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900262 status = gpiochip_add_to_list(chip);
Johan Hovold05aa5202015-01-12 17:12:26 +0100263 if (status) {
264 spin_unlock_irqrestore(&gpio_lock, flags);
265 goto err_free_descs;
266 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900267
Johan Hovold05aa5202015-01-12 17:12:26 +0100268 for (id = 0; id < chip->ngpio; id++) {
269 struct gpio_desc *desc = &descs[id];
David Brownelld8f388d2008-07-25 01:46:07 -0700270
Johan Hovold05aa5202015-01-12 17:12:26 +0100271 desc->chip = chip;
272
273 /* REVISIT: most hardware initializes GPIOs as inputs (often
274 * with pullups enabled) so power usage is minimized. Linux
275 * code should set the gpio direction first thing; but until
276 * it does, and in case chip->get_direction is not set, we may
277 * expose the wrong direction in sysfs.
278 */
279 desc->flags = !chip->direction_input ? (1 << FLAG_IS_OUT) : 0;
David Brownelld2876d02008-02-04 22:28:20 -0800280 }
281
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900282 chip->desc = descs;
283
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800284 spin_unlock_irqrestore(&gpio_lock, flags);
285
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530286#ifdef CONFIG_PINCTRL
287 INIT_LIST_HEAD(&chip->pin_ranges);
288#endif
289
Grygorii Strashko37269602015-06-25 20:30:51 +0300290 if (!chip->owner && chip->dev && chip->dev->driver)
291 chip->owner = chip->dev->driver->owner;
292
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200293 status = of_gpiochip_add(chip);
294 if (status)
295 goto err_remove_chip;
296
Mika Westerberg664e3e52014-01-08 12:40:54 +0200297 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600298
Johan Hovold426577b2015-05-04 17:10:32 +0200299 status = gpiochip_sysfs_register(chip);
Johan Hovold225fce82015-01-12 17:12:25 +0100300 if (status)
301 goto err_remove_chip;
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600302
Andy Shevchenko7589e592013-12-05 11:26:23 +0200303 pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__,
Grant Likely64842aa2011-11-06 11:36:18 -0700304 chip->base, chip->base + chip->ngpio - 1,
305 chip->label ? : "generic");
306
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600307 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800308
Johan Hovold225fce82015-01-12 17:12:25 +0100309err_remove_chip:
310 acpi_gpiochip_remove(chip);
Johan Hovold6d867502015-05-04 17:23:25 +0200311 gpiochip_free_hogs(chip);
Johan Hovold225fce82015-01-12 17:12:25 +0100312 of_gpiochip_remove(chip);
313 spin_lock_irqsave(&gpio_lock, flags);
314 list_del(&chip->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800315 spin_unlock_irqrestore(&gpio_lock, flags);
Johan Hovold05aa5202015-01-12 17:12:26 +0100316 chip->desc = NULL;
Johan Hovold225fce82015-01-12 17:12:25 +0100317err_free_descs:
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900318 kfree(descs);
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900319
David Brownelld2876d02008-02-04 22:28:20 -0800320 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +0200321 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600322 chip->base, chip->base + chip->ngpio - 1,
323 chip->label ? : "generic");
David Brownelld2876d02008-02-04 22:28:20 -0800324 return status;
325}
326EXPORT_SYMBOL_GPL(gpiochip_add);
327
328/**
329 * gpiochip_remove() - unregister a gpio_chip
330 * @chip: the chip to unregister
331 *
332 * A gpio_chip with any GPIOs still requested may not be removed.
333 */
abdoulaye berthee1db1702014-07-05 18:28:50 +0200334void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -0800335{
Johan Hovoldfab28b82015-05-04 17:10:27 +0200336 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -0800337 unsigned long flags;
David Brownelld2876d02008-02-04 22:28:20 -0800338 unsigned id;
Johan Hovoldfab28b82015-05-04 17:10:27 +0200339 bool requested = false;
David Brownelld2876d02008-02-04 22:28:20 -0800340
Johan Hovold426577b2015-05-04 17:10:32 +0200341 gpiochip_sysfs_unregister(chip);
Johan Hovold01cca932015-01-12 17:12:29 +0100342
Johan Hovold00acc3d2015-01-12 17:12:27 +0100343 gpiochip_irqchip_remove(chip);
344
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200345 acpi_gpiochip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +0100346 gpiochip_remove_pin_ranges(chip);
Benoit Parrotf625d462015-02-02 11:44:44 -0600347 gpiochip_free_hogs(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600348 of_gpiochip_remove(chip);
349
Johan Hovold6798aca2015-01-12 17:12:28 +0100350 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900351 for (id = 0; id < chip->ngpio; id++) {
Johan Hovoldfab28b82015-05-04 17:10:27 +0200352 desc = &chip->desc[id];
353 desc->chip = NULL;
354 if (test_bit(FLAG_REQUESTED, &desc->flags))
355 requested = true;
David Brownelld2876d02008-02-04 22:28:20 -0800356 }
abdoulaye berthee1db1702014-07-05 18:28:50 +0200357 list_del(&chip->list);
David Brownelld2876d02008-02-04 22:28:20 -0800358 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900359
Johan Hovoldfab28b82015-05-04 17:10:27 +0200360 if (requested)
361 dev_crit(chip->dev, "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
362
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900363 kfree(chip->desc);
364 chip->desc = NULL;
David Brownelld2876d02008-02-04 22:28:20 -0800365}
366EXPORT_SYMBOL_GPL(gpiochip_remove);
367
Grant Likely594fa262010-06-08 07:48:16 -0600368/**
369 * gpiochip_find() - iterator for locating a specific gpio_chip
370 * @data: data to pass to match function
371 * @callback: Callback function to check gpio_chip
372 *
373 * Similar to bus_find_device. It returns a reference to a gpio_chip as
374 * determined by a user supplied @match callback. The callback should return
375 * 0 if the device doesn't match and non-zero if it does. If the callback is
376 * non-zero, this function will return to the caller and not iterate over any
377 * more gpio_chips.
378 */
Grant Likely07ce8ec2012-05-18 23:01:05 -0600379struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -0700380 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600381 void *data))
Grant Likely594fa262010-06-08 07:48:16 -0600382{
Alexandre Courbot125eef92013-02-03 01:29:26 +0900383 struct gpio_chip *chip;
Grant Likely594fa262010-06-08 07:48:16 -0600384 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -0600385
386 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot125eef92013-02-03 01:29:26 +0900387 list_for_each_entry(chip, &gpio_chips, list)
388 if (match(chip, data))
Grant Likely594fa262010-06-08 07:48:16 -0600389 break;
Alexandre Courbot125eef92013-02-03 01:29:26 +0900390
391 /* No match? */
392 if (&chip->list == &gpio_chips)
393 chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -0600394 spin_unlock_irqrestore(&gpio_lock, flags);
395
396 return chip;
397}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -0600398EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -0800399
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900400static int gpiochip_match_name(struct gpio_chip *chip, void *data)
401{
402 const char *name = data;
403
404 return !strcmp(chip->label, name);
405}
406
407static struct gpio_chip *find_chip_by_name(const char *name)
408{
409 return gpiochip_find((void *)name, gpiochip_match_name);
410}
411
Linus Walleij14250522014-03-25 10:40:18 +0100412#ifdef CONFIG_GPIOLIB_IRQCHIP
413
414/*
415 * The following is irqchip helper code for gpiochips.
416 */
417
418/**
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200419 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
420 * @gpiochip: the gpiochip to set the irqchip chain to
421 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +0100422 * @parent_irq: the irq number corresponding to the parent IRQ for this
423 * chained irqchip
424 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200425 * coming out of the gpiochip. If the interrupt is nested rather than
426 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +0100427 */
428void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
429 struct irq_chip *irqchip,
430 int parent_irq,
431 irq_flow_handler_t parent_handler)
432{
Linus Walleij83141a72014-09-26 13:50:12 +0200433 unsigned int offset;
434
Linus Walleij83141a72014-09-26 13:50:12 +0200435 if (!gpiochip->irqdomain) {
436 chip_err(gpiochip, "called %s before setting up irqchip\n",
437 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200438 return;
439 }
440
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200441 if (parent_handler) {
442 if (gpiochip->can_sleep) {
443 chip_err(gpiochip,
444 "you cannot have chained interrupts on a "
445 "chip that may sleep\n");
446 return;
447 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200448 /*
449 * The parent irqchip is already using the chip_data for this
450 * irqchip, so our callbacks simply use the handler_data.
451 */
Thomas Gleixnerf7f87752015-06-21 21:10:48 +0200452 irq_set_chained_handler_and_data(parent_irq, parent_handler,
453 gpiochip);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +0300454
455 gpiochip->irq_parent = parent_irq;
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200456 }
Linus Walleij83141a72014-09-26 13:50:12 +0200457
458 /* Set the parent IRQ for all affected IRQs */
459 for (offset = 0; offset < gpiochip->ngpio; offset++)
460 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
461 parent_irq);
Linus Walleij14250522014-03-25 10:40:18 +0100462}
463EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
464
Linus Walleije45d1c82014-04-22 14:01:46 +0200465/*
466 * This lock class tells lockdep that GPIO irqs are in a different
467 * category than their parents, so it won't report false recursion.
468 */
469static struct lock_class_key gpiochip_irq_lock_class;
470
Linus Walleij14250522014-03-25 10:40:18 +0100471/**
472 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
473 * @d: the irqdomain used by this irqchip
474 * @irq: the global irq number used by this GPIO irqchip irq
475 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
476 *
477 * This function will set up the mapping for a certain IRQ line on a
478 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
479 * stored inside the gpiochip.
480 */
481static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
482 irq_hw_number_t hwirq)
483{
484 struct gpio_chip *chip = d->host_data;
485
Linus Walleij14250522014-03-25 10:40:18 +0100486 irq_set_chip_data(irq, chip);
Linus Walleije45d1c82014-04-22 14:01:46 +0200487 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class);
Linus Walleij7633fb92014-04-09 13:20:38 +0200488 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200489 /* Chips that can sleep need nested thread handlers */
Octavian Purdila295494a2014-09-19 23:22:44 +0300490 if (chip->can_sleep && !chip->irq_not_threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +0200491 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +0100492 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -0500493
Linus Walleij1333b902014-04-23 16:45:12 +0200494 /*
495 * No set-up of the hardware will happen if IRQ_TYPE_NONE
496 * is passed as default type.
497 */
498 if (chip->irq_default_type != IRQ_TYPE_NONE)
499 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +0100500
501 return 0;
502}
503
Linus Walleijc3626fd2014-03-28 20:42:01 +0100504static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
505{
Linus Walleij1c8732b2014-04-09 13:34:39 +0200506 struct gpio_chip *chip = d->host_data;
507
Linus Walleij1c8732b2014-04-09 13:34:39 +0200508 if (chip->can_sleep)
509 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100510 irq_set_chip_and_handler(irq, NULL, NULL);
511 irq_set_chip_data(irq, NULL);
512}
513
Linus Walleij14250522014-03-25 10:40:18 +0100514static const struct irq_domain_ops gpiochip_domain_ops = {
515 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +0100516 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +0100517 /* Virtually all GPIO irqchips are twocell:ed */
518 .xlate = irq_domain_xlate_twocell,
519};
520
521static int gpiochip_irq_reqres(struct irq_data *d)
522{
523 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
524
Grygorii Strashko5b76e792015-06-25 20:30:50 +0300525 if (!try_module_get(chip->owner))
526 return -ENODEV;
527
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900528 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +0100529 chip_err(chip,
530 "unable to lock HW IRQ %lu for IRQ\n",
531 d->hwirq);
Grygorii Strashko5b76e792015-06-25 20:30:50 +0300532 module_put(chip->owner);
Linus Walleij14250522014-03-25 10:40:18 +0100533 return -EINVAL;
534 }
535 return 0;
536}
537
538static void gpiochip_irq_relres(struct irq_data *d)
539{
540 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
541
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900542 gpiochip_unlock_as_irq(chip, d->hwirq);
Grygorii Strashko5b76e792015-06-25 20:30:50 +0300543 module_put(chip->owner);
Linus Walleij14250522014-03-25 10:40:18 +0100544}
545
546static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
547{
548 return irq_find_mapping(chip->irqdomain, offset);
549}
550
551/**
552 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
553 * @gpiochip: the gpiochip to remove the irqchip from
554 *
555 * This is called only from gpiochip_remove()
556 */
557static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
558{
Linus Walleijc3626fd2014-03-28 20:42:01 +0100559 unsigned int offset;
560
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300561 acpi_gpiochip_free_interrupts(gpiochip);
562
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +0300563 if (gpiochip->irq_parent) {
564 irq_set_chained_handler(gpiochip->irq_parent, NULL);
565 irq_set_handler_data(gpiochip->irq_parent, NULL);
566 }
567
Linus Walleijc3626fd2014-03-28 20:42:01 +0100568 /* Remove all IRQ mappings and delete the domain */
569 if (gpiochip->irqdomain) {
570 for (offset = 0; offset < gpiochip->ngpio; offset++)
Grygorii Strashkoe3893382014-09-25 19:09:23 +0300571 irq_dispose_mapping(
572 irq_find_mapping(gpiochip->irqdomain, offset));
Linus Walleij14250522014-03-25 10:40:18 +0100573 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100574 }
Linus Walleij14250522014-03-25 10:40:18 +0100575
576 if (gpiochip->irqchip) {
577 gpiochip->irqchip->irq_request_resources = NULL;
578 gpiochip->irqchip->irq_release_resources = NULL;
579 gpiochip->irqchip = NULL;
580 }
581}
582
583/**
584 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
585 * @gpiochip: the gpiochip to add the irqchip to
586 * @irqchip: the irqchip to add to the gpiochip
587 * @first_irq: if not dynamically assigned, the base (first) IRQ to
588 * allocate gpiochip irqs from
589 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +0200590 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
591 * to have the core avoid setting up any default type in the hardware.
Linus Walleij14250522014-03-25 10:40:18 +0100592 *
593 * This function closely associates a certain irqchip with a certain
594 * gpiochip, providing an irq domain to translate the local IRQs to
595 * global irqs in the gpiolib core, and making sure that the gpiochip
596 * is passed as chip data to all related functions. Driver callbacks
597 * need to use container_of() to get their local state containers back
598 * from the gpiochip passed as chip data. An irqdomain will be stored
599 * in the gpiochip that shall be used by the driver to handle IRQ number
600 * translation. The gpiochip will need to be initialized and registered
601 * before calling this function.
602 *
Linus Walleijc3626fd2014-03-28 20:42:01 +0100603 * This function will handle two cell:ed simple IRQs and assumes all
604 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +0100605 * need to be open coded.
606 */
607int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
608 struct irq_chip *irqchip,
609 unsigned int first_irq,
610 irq_flow_handler_t handler,
611 unsigned int type)
612{
613 struct device_node *of_node;
614 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +0100615 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +0100616
617 if (!gpiochip || !irqchip)
618 return -EINVAL;
619
620 if (!gpiochip->dev) {
621 pr_err("missing gpiochip .dev parent pointer\n");
622 return -EINVAL;
623 }
624 of_node = gpiochip->dev->of_node;
625#ifdef CONFIG_OF_GPIO
626 /*
Colin Cronin20a8a962015-05-18 11:41:43 -0700627 * If the gpiochip has an assigned OF node this takes precedence
Linus Walleij14250522014-03-25 10:40:18 +0100628 * FIXME: get rid of this and use gpiochip->dev->of_node everywhere
629 */
630 if (gpiochip->of_node)
631 of_node = gpiochip->of_node;
632#endif
633 gpiochip->irqchip = irqchip;
634 gpiochip->irq_handler = handler;
635 gpiochip->irq_default_type = type;
636 gpiochip->to_irq = gpiochip_to_irq;
637 gpiochip->irqdomain = irq_domain_add_simple(of_node,
638 gpiochip->ngpio, first_irq,
639 &gpiochip_domain_ops, gpiochip);
640 if (!gpiochip->irqdomain) {
641 gpiochip->irqchip = NULL;
642 return -EINVAL;
643 }
Rabin Vincent8b67a1f2015-07-31 14:48:56 +0200644
645 /*
646 * It is possible for a driver to override this, but only if the
647 * alternative functions are both implemented.
648 */
649 if (!irqchip->irq_request_resources &&
650 !irqchip->irq_release_resources) {
651 irqchip->irq_request_resources = gpiochip_irq_reqres;
652 irqchip->irq_release_resources = gpiochip_irq_relres;
653 }
Linus Walleij14250522014-03-25 10:40:18 +0100654
655 /*
656 * Prepare the mapping since the irqchip shall be orthogonal to
657 * any gpiochip calls. If the first_irq was zero, this is
658 * necessary to allocate descriptors for all IRQs.
659 */
Linus Walleijc3626fd2014-03-28 20:42:01 +0100660 for (offset = 0; offset < gpiochip->ngpio; offset++) {
661 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
662 if (offset == 0)
663 /*
664 * Store the base into the gpiochip to be used when
665 * unmapping the irqs.
666 */
667 gpiochip->irq_base = irq_base;
668 }
Linus Walleij14250522014-03-25 10:40:18 +0100669
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300670 acpi_gpiochip_request_interrupts(gpiochip);
671
Linus Walleij14250522014-03-25 10:40:18 +0100672 return 0;
673}
674EXPORT_SYMBOL_GPL(gpiochip_irqchip_add);
675
676#else /* CONFIG_GPIOLIB_IRQCHIP */
677
678static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
679
680#endif /* CONFIG_GPIOLIB_IRQCHIP */
681
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530682#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +0100683
Linus Walleij3f0f8672012-11-20 12:40:15 +0100684/**
Christian Ruppert586a87e2013-10-15 15:37:54 +0200685 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
686 * @chip: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +0200687 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +0200688 * @gpio_offset: the start offset in the current gpio_chip number space
689 * @pin_group: name of the pin group inside the pin controller
690 */
691int gpiochip_add_pingroup_range(struct gpio_chip *chip,
692 struct pinctrl_dev *pctldev,
693 unsigned int gpio_offset, const char *pin_group)
694{
695 struct gpio_pin_range *pin_range;
696 int ret;
697
698 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
699 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200700 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +0200701 return -ENOMEM;
702 }
703
704 /* Use local offset as range ID */
705 pin_range->range.id = gpio_offset;
706 pin_range->range.gc = chip;
707 pin_range->range.name = chip->label;
708 pin_range->range.base = chip->base + gpio_offset;
709 pin_range->pctldev = pctldev;
710
711 ret = pinctrl_get_group_pins(pctldev, pin_group,
712 &pin_range->range.pins,
713 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100714 if (ret < 0) {
715 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +0200716 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100717 }
Christian Ruppert586a87e2013-10-15 15:37:54 +0200718
719 pinctrl_add_gpio_range(pctldev, &pin_range->range);
720
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200721 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
722 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +0200723 pinctrl_dev_get_devname(pctldev), pin_group);
724
725 list_add_tail(&pin_range->node, &chip->pin_ranges);
726
727 return 0;
728}
729EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
730
731/**
Linus Walleij3f0f8672012-11-20 12:40:15 +0100732 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
733 * @chip: the gpiochip to add the range for
734 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +0100735 * @gpio_offset: the start offset in the current gpio_chip number space
736 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +0100737 * @npins: the number of pins from the offset of each pin space (GPIO and
738 * pin controller) to accumulate in this range
739 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100740int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +0100741 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +0100742 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530743{
744 struct gpio_pin_range *pin_range;
Axel Linb4d4b1f2012-11-21 14:33:56 +0800745 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530746
Linus Walleij3f0f8672012-11-20 12:40:15 +0100747 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530748 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200749 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100750 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530751 }
752
Linus Walleij3f0f8672012-11-20 12:40:15 +0100753 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +0100754 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100755 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530756 pin_range->range.name = chip->label;
Linus Walleij316511c2012-11-21 08:48:09 +0100757 pin_range->range.base = chip->base + gpio_offset;
758 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530759 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +0100760 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530761 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +0100762 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +0800763 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200764 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +0100765 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +0800766 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100767 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200768 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
769 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +0100770 pinctl_name,
771 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530772
773 list_add_tail(&pin_range->node, &chip->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100774
775 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530776}
Linus Walleij165adc92012-11-06 14:49:39 +0100777EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530778
Linus Walleij3f0f8672012-11-20 12:40:15 +0100779/**
780 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
781 * @chip: the chip to remove all the mappings for
782 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530783void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
784{
785 struct gpio_pin_range *pin_range, *tmp;
786
787 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) {
788 list_del(&pin_range->node);
789 pinctrl_remove_gpio_range(pin_range->pctldev,
790 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +0100791 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530792 }
793}
Linus Walleij165adc92012-11-06 14:49:39 +0100794EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
795
796#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530797
David Brownelld2876d02008-02-04 22:28:20 -0800798/* These "optional" allocation calls help prevent drivers from stomping
799 * on each other, and help provide better diagnostics in debugfs.
800 * They're called even less than the "set direction" calls.
801 */
Mika Westerberg77c2d792014-03-10 14:54:50 +0200802static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -0800803{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200804 struct gpio_chip *chip = desc->chip;
805 int status;
David Brownelld2876d02008-02-04 22:28:20 -0800806 unsigned long flags;
807
808 spin_lock_irqsave(&gpio_lock, flags);
809
David Brownelld2876d02008-02-04 22:28:20 -0800810 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -0700811 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800812 */
813
814 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
815 desc_set_label(desc, label ? : "?");
816 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700817 } else {
David Brownelld2876d02008-02-04 22:28:20 -0800818 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -0800819 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700820 }
821
822 if (chip->request) {
823 /* chip->request may sleep */
824 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900825 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700826 spin_lock_irqsave(&gpio_lock, flags);
827
828 if (status < 0) {
829 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -0700830 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300831 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700832 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700833 }
Mathias Nyman80b0a602012-10-24 17:25:27 +0300834 if (chip->get_direction) {
835 /* chip->get_direction may sleep */
836 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900837 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300838 spin_lock_irqsave(&gpio_lock, flags);
839 }
David Brownelld2876d02008-02-04 22:28:20 -0800840done:
Mika Westerberg77c2d792014-03-10 14:54:50 +0200841 spin_unlock_irqrestore(&gpio_lock, flags);
842 return status;
843}
844
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900845int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200846{
847 int status = -EPROBE_DEFER;
848 struct gpio_chip *chip;
849
850 if (!desc) {
851 pr_warn("%s: invalid GPIO\n", __func__);
852 return -EINVAL;
853 }
854
855 chip = desc->chip;
856 if (!chip)
857 goto done;
858
859 if (try_module_get(chip->owner)) {
860 status = __gpiod_request(desc, label);
861 if (status < 0)
862 module_put(chip->owner);
863 }
864
865done:
David Brownelld2876d02008-02-04 22:28:20 -0800866 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +0200867 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200868
David Brownelld2876d02008-02-04 22:28:20 -0800869 return status;
870}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900871
Mika Westerberg77c2d792014-03-10 14:54:50 +0200872static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800873{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200874 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -0800875 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -0700876 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800877
Uwe Kleine-König3d599d12008-10-15 22:03:12 -0700878 might_sleep();
879
Alexandre Courbot372e7222013-02-03 01:29:29 +0900880 gpiod_unexport(desc);
David Brownelld8f388d2008-07-25 01:46:07 -0700881
David Brownelld2876d02008-02-04 22:28:20 -0800882 spin_lock_irqsave(&gpio_lock, flags);
883
David Brownell35e8bb52008-10-15 22:03:16 -0700884 chip = desc->chip;
885 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
886 if (chip->free) {
887 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -0700888 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900889 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700890 spin_lock_irqsave(&gpio_lock, flags);
891 }
David Brownelld2876d02008-02-04 22:28:20 -0800892 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -0800893 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -0700894 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530895 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530896 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -0600897 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200898 ret = true;
899 }
David Brownelld2876d02008-02-04 22:28:20 -0800900
901 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200902 return ret;
903}
904
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900905void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200906{
907 if (desc && __gpiod_free(desc))
908 module_put(desc->chip->owner);
909 else
910 WARN_ON(extra_checks);
David Brownelld2876d02008-02-04 22:28:20 -0800911}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900912
David Brownelld2876d02008-02-04 22:28:20 -0800913/**
914 * gpiochip_is_requested - return string iff signal was requested
915 * @chip: controller managing the signal
916 * @offset: of signal within controller's 0..(ngpio - 1) range
917 *
918 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +0900919 * The string returned is the label passed to gpio_request(); if none has been
920 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -0800921 *
922 * This function is for use by GPIO controller drivers. The label can
923 * help with diagnostics, and knowing that the signal is used as a GPIO
924 * can help avoid accidentally multiplexing it to another controller.
925 */
926const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
927{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900928 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -0800929
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900930 if (!GPIO_OFFSET_VALID(chip, offset))
David Brownelld2876d02008-02-04 22:28:20 -0800931 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900932
933 desc = &chip->desc[offset];
934
Alexandre Courbot372e7222013-02-03 01:29:29 +0900935 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -0800936 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900937 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -0800938}
939EXPORT_SYMBOL_GPL(gpiochip_is_requested);
940
Mika Westerberg77c2d792014-03-10 14:54:50 +0200941/**
942 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
943 * @desc: GPIO descriptor to request
944 * @label: label for the GPIO
945 *
946 * Function allows GPIO chip drivers to request and use their own GPIO
947 * descriptors via gpiolib API. Difference to gpiod_request() is that this
948 * function will not increase reference count of the GPIO chip module. This
949 * allows the GPIO chip module to be unloaded as needed (we assume that the
950 * GPIO chip driver handles freeing the GPIOs it has requested).
951 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700952struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
953 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200954{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700955 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
956 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200957
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700958 if (IS_ERR(desc)) {
959 chip_err(chip, "failed to get GPIO descriptor\n");
960 return desc;
961 }
962
963 err = __gpiod_request(desc, label);
964 if (err < 0)
965 return ERR_PTR(err);
966
967 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200968}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700969EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200970
971/**
972 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
973 * @desc: GPIO descriptor to free
974 *
975 * Function frees the given GPIO requested previously with
976 * gpiochip_request_own_desc().
977 */
978void gpiochip_free_own_desc(struct gpio_desc *desc)
979{
980 if (desc)
981 __gpiod_free(desc);
982}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700983EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -0800984
985/* Drivers MUST set GPIO direction before making get/set calls. In
986 * some cases this is done in early boot, before IRQs are enabled.
987 *
988 * As a rule these aren't called more than once (except for drivers
989 * using the open-drain emulation idiom) so these are natural places
990 * to accumulate extra debugging checks. Note that we can't (yet)
991 * rely on gpio_request() having been called beforehand.
992 */
993
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700994/**
995 * gpiod_direction_input - set the GPIO direction to input
996 * @desc: GPIO to set to input
997 *
998 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
999 * be called safely on it.
1000 *
1001 * Return 0 in case of success, else an error code.
1002 */
1003int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001004{
David Brownelld2876d02008-02-04 22:28:20 -08001005 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08001006 int status = -EINVAL;
1007
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001008 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001009 pr_warn("%s: invalid GPIO\n", __func__);
1010 return -EINVAL;
1011 }
1012
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001013 chip = desc->chip;
1014 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01001015 gpiod_warn(desc,
1016 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +02001017 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001018 return -EIO;
1019 }
1020
Alexandre Courbotd82da792014-07-22 16:17:43 +09001021 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -08001022 if (status == 0)
1023 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001024
Alexandre Courbot372e7222013-02-03 01:29:29 +09001025 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09001026
David Brownelld2876d02008-02-04 22:28:20 -08001027 return status;
1028}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001029EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001030
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001031static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08001032{
David Brownelld2876d02008-02-04 22:28:20 -08001033 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08001034 int status = -EINVAL;
1035
Linus Walleijd468bf92013-09-24 11:54:38 +02001036 /* GPIOs used for IRQs shall not be set as output */
1037 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
1038 gpiod_err(desc,
1039 "%s: tried to set a GPIO tied to an IRQ as output\n",
1040 __func__);
1041 return -EIO;
1042 }
1043
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301044 /* Open drain pin should not be driven to 1 */
1045 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001046 return gpiod_direction_input(desc);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301047
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301048 /* Open source pin should not be driven to 0 */
1049 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001050 return gpiod_direction_input(desc);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301051
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001052 chip = desc->chip;
1053 if (!chip->set || !chip->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01001054 gpiod_warn(desc,
1055 "%s: missing set() or direction_output() operations\n",
1056 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001057 return -EIO;
1058 }
1059
Alexandre Courbotd82da792014-07-22 16:17:43 +09001060 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
David Brownelld2876d02008-02-04 22:28:20 -08001061 if (status == 0)
1062 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001063 trace_gpio_value(desc_to_gpio(desc), 0, value);
1064 trace_gpio_direction(desc_to_gpio(desc), 0, status);
David Brownelld2876d02008-02-04 22:28:20 -08001065 return status;
1066}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001067
1068/**
1069 * gpiod_direction_output_raw - set the GPIO direction to output
1070 * @desc: GPIO to set to output
1071 * @value: initial output value of the GPIO
1072 *
1073 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1074 * be called safely on it. The initial value of the output must be specified
1075 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1076 *
1077 * Return 0 in case of success, else an error code.
1078 */
1079int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1080{
1081 if (!desc || !desc->chip) {
1082 pr_warn("%s: invalid GPIO\n", __func__);
1083 return -EINVAL;
1084 }
1085 return _gpiod_direction_output_raw(desc, value);
1086}
1087EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1088
1089/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05301090 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001091 * @desc: GPIO to set to output
1092 * @value: initial output value of the GPIO
1093 *
1094 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1095 * be called safely on it. The initial value of the output must be specified
1096 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1097 * account.
1098 *
1099 * Return 0 in case of success, else an error code.
1100 */
1101int gpiod_direction_output(struct gpio_desc *desc, int value)
1102{
1103 if (!desc || !desc->chip) {
1104 pr_warn("%s: invalid GPIO\n", __func__);
1105 return -EINVAL;
1106 }
1107 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1108 value = !value;
1109 return _gpiod_direction_output_raw(desc, value);
1110}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001111EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08001112
Felipe Balbic4b5be92010-05-26 14:42:23 -07001113/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001114 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07001115 * @gpio: the gpio to set debounce time
1116 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02001117 *
1118 * returns -ENOTSUPP if the controller does not support setting
1119 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07001120 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001121int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07001122{
Felipe Balbic4b5be92010-05-26 14:42:23 -07001123 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07001124
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001125 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001126 pr_warn("%s: invalid GPIO\n", __func__);
1127 return -EINVAL;
1128 }
1129
Felipe Balbic4b5be92010-05-26 14:42:23 -07001130 chip = desc->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001131 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01001132 gpiod_dbg(desc,
1133 "%s: missing set() or set_debounce() operations\n",
1134 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02001135 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001136 }
1137
Alexandre Courbotd82da792014-07-22 16:17:43 +09001138 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07001139}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001140EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001141
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001142/**
1143 * gpiod_is_active_low - test whether a GPIO is active-low or not
1144 * @desc: the gpio descriptor to test
1145 *
1146 * Returns 1 if the GPIO is active-low, 0 otherwise.
1147 */
1148int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001149{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001150 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001151}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001152EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08001153
1154/* I/O calls are only valid after configuration completed; the relevant
1155 * "is this a valid GPIO" error checks should already have been done.
1156 *
1157 * "Get" operations are often inlinable as reading a pin value register,
1158 * and masking the relevant bit in that register.
1159 *
1160 * When "set" operations are inlinable, they involve writing that mask to
1161 * one register to set a low value, or a different register to set it high.
1162 * Otherwise locking is needed, so there may be little value to inlining.
1163 *
1164 *------------------------------------------------------------------------
1165 *
1166 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1167 * have requested the GPIO. That can include implicit requesting by
1168 * a direction setting call. Marking a gpio as requested locks its chip
1169 * in memory, guaranteeing that these table lookups need no more locking
1170 * and that gpiochip_remove() will fail.
1171 *
1172 * REVISIT when debugging, consider adding some instrumentation to ensure
1173 * that the GPIO was actually requested.
1174 */
1175
Alexandre Courbot23600962014-03-11 15:52:09 +09001176static bool _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001177{
1178 struct gpio_chip *chip;
Alexandre Courbot23600962014-03-11 15:52:09 +09001179 bool value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001180 int offset;
David Brownelld2876d02008-02-04 22:28:20 -08001181
Alexandre Courbot372e7222013-02-03 01:29:29 +09001182 chip = desc->chip;
1183 offset = gpio_chip_hwgpio(desc);
Alexandre Courbot23600962014-03-11 15:52:09 +09001184 value = chip->get ? chip->get(chip, offset) : false;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001185 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001186 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001187}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001188
David Brownelld2876d02008-02-04 22:28:20 -08001189/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001190 * gpiod_get_raw_value() - return a gpio's raw value
1191 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08001192 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001193 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1194 * its ACTIVE_LOW status.
1195 *
1196 * This function should be called from contexts where we cannot sleep, and will
1197 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001198 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001199int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001200{
David Brownelld2876d02008-02-04 22:28:20 -08001201 if (!desc)
1202 return 0;
David Brownelld2876d02008-02-04 22:28:20 -08001203 /* Should be using gpio_get_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001204 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001205 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001206}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001207EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001208
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001209/**
1210 * gpiod_get_value() - return a gpio's value
1211 * @desc: gpio whose value will be returned
1212 *
1213 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1214 * account.
1215 *
1216 * This function should be called from contexts where we cannot sleep, and will
1217 * complain if the GPIO chip functions potentially sleep.
1218 */
1219int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001220{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001221 int value;
1222 if (!desc)
1223 return 0;
1224 /* Should be using gpio_get_value_cansleep() */
1225 WARN_ON(desc->chip->can_sleep);
1226
1227 value = _gpiod_get_raw_value(desc);
1228 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1229 value = !value;
1230
1231 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001232}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001233EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08001234
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301235/*
1236 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001237 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07001238 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301239 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001240static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301241{
1242 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001243 struct gpio_chip *chip = desc->chip;
1244 int offset = gpio_chip_hwgpio(desc);
1245
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301246 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001247 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301248 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001249 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301250 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001251 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301252 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001253 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301254 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001255 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301256 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001257 gpiod_err(desc,
1258 "%s: Error in set_value for open drain err %d\n",
1259 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301260}
1261
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301262/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001263 * _gpio_set_open_source_value() - Set the open source gpio's value.
1264 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07001265 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301266 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001267static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301268{
1269 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001270 struct gpio_chip *chip = desc->chip;
1271 int offset = gpio_chip_hwgpio(desc);
1272
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301273 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001274 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301275 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001276 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301277 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001278 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301279 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001280 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301281 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001282 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301283 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001284 gpiod_err(desc,
1285 "%s: Error in set_value for open source err %d\n",
1286 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301287}
1288
Alexandre Courbot23600962014-03-11 15:52:09 +09001289static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08001290{
1291 struct gpio_chip *chip;
1292
Alexandre Courbot372e7222013-02-03 01:29:29 +09001293 chip = desc->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001294 trace_gpio_value(desc_to_gpio(desc), 0, value);
1295 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1296 _gpio_set_open_drain_value(desc, value);
1297 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1298 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301299 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09001300 chip->set(chip, gpio_chip_hwgpio(desc), value);
1301}
1302
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001303/*
1304 * set multiple outputs on the same chip;
1305 * use the chip's set_multiple function if available;
1306 * otherwise set the outputs sequentially;
1307 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
1308 * defines which outputs are to be changed
1309 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
1310 * defines the values the outputs specified by mask are to be set to
1311 */
1312static void gpio_chip_set_multiple(struct gpio_chip *chip,
1313 unsigned long *mask, unsigned long *bits)
1314{
1315 if (chip->set_multiple) {
1316 chip->set_multiple(chip, mask, bits);
1317 } else {
1318 int i;
1319 for (i = 0; i < chip->ngpio; i++) {
1320 if (mask[BIT_WORD(i)] == 0) {
1321 /* no more set bits in this mask word;
1322 * skip ahead to the next word */
1323 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
1324 continue;
1325 }
1326 /* set outputs if the corresponding mask bit is set */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001327 if (__test_and_clear_bit(i, mask))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001328 chip->set(chip, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001329 }
1330 }
1331}
1332
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001333static void gpiod_set_array_value_priv(bool raw, bool can_sleep,
1334 unsigned int array_size,
1335 struct gpio_desc **desc_array,
1336 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001337{
1338 int i = 0;
1339
1340 while (i < array_size) {
1341 struct gpio_chip *chip = desc_array[i]->chip;
1342 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
1343 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
1344 int count = 0;
1345
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001346 if (!can_sleep)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001347 WARN_ON(chip->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001348
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001349 memset(mask, 0, sizeof(mask));
1350 do {
1351 struct gpio_desc *desc = desc_array[i];
1352 int hwgpio = gpio_chip_hwgpio(desc);
1353 int value = value_array[i];
1354
1355 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1356 value = !value;
1357 trace_gpio_value(desc_to_gpio(desc), 0, value);
1358 /*
1359 * collect all normal outputs belonging to the same chip
1360 * open drain and open source outputs are set individually
1361 */
1362 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001363 _gpio_set_open_drain_value(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001364 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
1365 _gpio_set_open_source_value(desc, value);
1366 } else {
1367 __set_bit(hwgpio, mask);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001368 if (value)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001369 __set_bit(hwgpio, bits);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001370 else
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001371 __clear_bit(hwgpio, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001372 count++;
1373 }
1374 i++;
1375 } while ((i < array_size) && (desc_array[i]->chip == chip));
1376 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01001377 if (count != 0)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001378 gpio_chip_set_multiple(chip, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001379 }
1380}
1381
David Brownelld2876d02008-02-04 22:28:20 -08001382/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001383 * gpiod_set_raw_value() - assign a gpio's raw value
1384 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08001385 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001386 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001387 * Set the raw value of the GPIO, i.e. the value of its physical line without
1388 * regard for its ACTIVE_LOW status.
1389 *
1390 * This function should be called from contexts where we cannot sleep, and will
1391 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001392 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001393void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001394{
David Brownelld2876d02008-02-04 22:28:20 -08001395 if (!desc)
1396 return;
David Brownelld2876d02008-02-04 22:28:20 -08001397 /* Should be using gpio_set_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001398 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001399 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001400}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001401EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001402
1403/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001404 * gpiod_set_value() - assign a gpio's value
1405 * @desc: gpio whose value will be assigned
1406 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001407 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001408 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1409 * account
1410 *
1411 * This function should be called from contexts where we cannot sleep, and will
1412 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001413 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001414void gpiod_set_value(struct gpio_desc *desc, int value)
1415{
1416 if (!desc)
1417 return;
1418 /* Should be using gpio_set_value_cansleep() */
1419 WARN_ON(desc->chip->can_sleep);
1420 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1421 value = !value;
1422 _gpiod_set_raw_value(desc, value);
1423}
1424EXPORT_SYMBOL_GPL(gpiod_set_value);
1425
1426/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001427 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001428 * @array_size: number of elements in the descriptor / value arrays
1429 * @desc_array: array of GPIO descriptors whose values will be assigned
1430 * @value_array: array of values to assign
1431 *
1432 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1433 * without regard for their ACTIVE_LOW status.
1434 *
1435 * This function should be called from contexts where we cannot sleep, and will
1436 * complain if the GPIO chip functions potentially sleep.
1437 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001438void gpiod_set_raw_array_value(unsigned int array_size,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001439 struct gpio_desc **desc_array, int *value_array)
1440{
1441 if (!desc_array)
1442 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001443 gpiod_set_array_value_priv(true, false, array_size, desc_array,
1444 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001445}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001446EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001447
1448/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001449 * gpiod_set_array_value() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001450 * @array_size: number of elements in the descriptor / value arrays
1451 * @desc_array: array of GPIO descriptors whose values will be assigned
1452 * @value_array: array of values to assign
1453 *
1454 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1455 * into account.
1456 *
1457 * This function should be called from contexts where we cannot sleep, and will
1458 * complain if the GPIO chip functions potentially sleep.
1459 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001460void gpiod_set_array_value(unsigned int array_size,
1461 struct gpio_desc **desc_array, int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001462{
1463 if (!desc_array)
1464 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001465 gpiod_set_array_value_priv(false, false, array_size, desc_array,
1466 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001467}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001468EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001469
1470/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001471 * gpiod_cansleep() - report whether gpio value access may sleep
1472 * @desc: gpio to check
1473 *
1474 */
1475int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001476{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001477 if (!desc)
1478 return 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001479 return desc->chip->can_sleep;
1480}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001481EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001482
David Brownell0f6d5042008-10-15 22:03:14 -07001483/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001484 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1485 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07001486 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001487 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1488 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07001489 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001490int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07001491{
1492 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001493 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07001494
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001495 if (!desc)
1496 return -EINVAL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001497 chip = desc->chip;
1498 offset = gpio_chip_hwgpio(desc);
1499 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
1500}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001501EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001502
Linus Walleijd468bf92013-09-24 11:54:38 +02001503/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001504 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001505 * @chip: the chip the GPIO to lock belongs to
1506 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001507 *
1508 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08001509 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08001510 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001511int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08001512{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001513 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001514 return -EINVAL;
1515
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001516 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) {
1517 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02001518 "%s: tried to flag a GPIO set as output for IRQ\n",
1519 __func__);
1520 return -EIO;
1521 }
1522
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001523 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001524 return 0;
1525}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001526EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001527
Linus Walleijd468bf92013-09-24 11:54:38 +02001528/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001529 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001530 * @chip: the chip the GPIO to lock belongs to
1531 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001532 *
1533 * This is used directly by GPIO drivers that want to indicate
1534 * that a certain GPIO is no longer used exclusively for IRQ.
1535 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001536void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02001537{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001538 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001539 return;
1540
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001541 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001542}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001543EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001544
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001545/**
1546 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
1547 * @desc: gpio whose value will be returned
1548 *
1549 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1550 * its ACTIVE_LOW status.
1551 *
1552 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001553 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001554int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001555{
David Brownelld2876d02008-02-04 22:28:20 -08001556 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001557 if (!desc)
1558 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001559 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08001560}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001561EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001562
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001563/**
1564 * gpiod_get_value_cansleep() - return a gpio's value
1565 * @desc: gpio whose value will be returned
1566 *
1567 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1568 * account.
1569 *
1570 * This function is to be called from contexts that can sleep.
1571 */
1572int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001573{
David Brownelld2876d02008-02-04 22:28:20 -08001574 int value;
David Brownelld2876d02008-02-04 22:28:20 -08001575
1576 might_sleep_if(extra_checks);
1577 if (!desc)
1578 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001579
1580 value = _gpiod_get_raw_value(desc);
1581 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1582 value = !value;
1583
David Brownelld2876d02008-02-04 22:28:20 -08001584 return value;
1585}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001586EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001587
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001588/**
1589 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
1590 * @desc: gpio whose value will be assigned
1591 * @value: value to assign
1592 *
1593 * Set the raw value of the GPIO, i.e. the value of its physical line without
1594 * regard for its ACTIVE_LOW status.
1595 *
1596 * This function is to be called from contexts that can sleep.
1597 */
1598void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001599{
David Brownelld2876d02008-02-04 22:28:20 -08001600 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001601 if (!desc)
1602 return;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001603 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001604}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001605EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001606
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001607/**
1608 * gpiod_set_value_cansleep() - assign a gpio's value
1609 * @desc: gpio whose value will be assigned
1610 * @value: value to assign
1611 *
1612 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1613 * account
1614 *
1615 * This function is to be called from contexts that can sleep.
1616 */
1617void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001618{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001619 might_sleep_if(extra_checks);
1620 if (!desc)
1621 return;
1622
1623 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1624 value = !value;
1625 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001626}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001627EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001628
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001629/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001630 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001631 * @array_size: number of elements in the descriptor / value arrays
1632 * @desc_array: array of GPIO descriptors whose values will be assigned
1633 * @value_array: array of values to assign
1634 *
1635 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1636 * without regard for their ACTIVE_LOW status.
1637 *
1638 * This function is to be called from contexts that can sleep.
1639 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001640void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
1641 struct gpio_desc **desc_array,
1642 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001643{
1644 might_sleep_if(extra_checks);
1645 if (!desc_array)
1646 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001647 gpiod_set_array_value_priv(true, true, array_size, desc_array,
1648 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001649}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001650EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001651
1652/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001653 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001654 * @array_size: number of elements in the descriptor / value arrays
1655 * @desc_array: array of GPIO descriptors whose values will be assigned
1656 * @value_array: array of values to assign
1657 *
1658 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1659 * into account.
1660 *
1661 * This function is to be called from contexts that can sleep.
1662 */
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001663void gpiod_set_array_value_cansleep(unsigned int array_size,
1664 struct gpio_desc **desc_array,
1665 int *value_array)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001666{
1667 might_sleep_if(extra_checks);
1668 if (!desc_array)
1669 return;
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001670 gpiod_set_array_value_priv(false, true, array_size, desc_array,
1671 value_array);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001672}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02001673EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001674
1675/**
Alexandre Courbotad824782013-12-03 12:20:11 +09001676 * gpiod_add_lookup_table() - register GPIO device consumers
1677 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001678 */
Alexandre Courbotad824782013-12-03 12:20:11 +09001679void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001680{
1681 mutex_lock(&gpio_lookup_lock);
1682
Alexandre Courbotad824782013-12-03 12:20:11 +09001683 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001684
1685 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08001686}
1687
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001688static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001689 unsigned int idx,
1690 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001691{
1692 char prop_name[32]; /* 32 is max size of property name */
1693 enum of_gpio_flags of_flags;
1694 struct gpio_desc *desc;
Thierry Redingdd34c372014-04-23 17:28:09 +02001695 unsigned int i;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001696
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001697 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Thierry Redingdd34c372014-04-23 17:28:09 +02001698 if (con_id)
Olliver Schinagl9e089242015-01-21 22:33:45 +01001699 snprintf(prop_name, sizeof(prop_name), "%s-%s", con_id,
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001700 gpio_suffixes[i]);
Thierry Redingdd34c372014-04-23 17:28:09 +02001701 else
Olliver Schinagl9e089242015-01-21 22:33:45 +01001702 snprintf(prop_name, sizeof(prop_name), "%s",
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001703 gpio_suffixes[i]);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001704
Thierry Redingdd34c372014-04-23 17:28:09 +02001705 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
1706 &of_flags);
Tony Lindgren06fc3b72014-06-02 16:13:46 -07001707 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
Thierry Redingdd34c372014-04-23 17:28:09 +02001708 break;
1709 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001710
1711 if (IS_ERR(desc))
1712 return desc;
1713
1714 if (of_flags & OF_GPIO_ACTIVE_LOW)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001715 *flags |= GPIO_ACTIVE_LOW;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001716
1717 return desc;
1718}
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001719
Mika Westerberg81f59e92013-10-10 11:01:09 +03001720static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001721 unsigned int idx,
1722 enum gpio_lookup_flags *flags)
Mika Westerberg81f59e92013-10-10 11:01:09 +03001723{
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001724 struct acpi_device *adev = ACPI_COMPANION(dev);
Mika Westerberge01f4402013-10-10 11:01:10 +03001725 struct acpi_gpio_info info;
1726 struct gpio_desc *desc;
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001727 char propname[32];
1728 int i;
Mika Westerberge01f4402013-10-10 11:01:10 +03001729
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001730 /* Try first from _DSD */
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001731 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001732 if (con_id && strcmp(con_id, "gpios")) {
1733 snprintf(propname, sizeof(propname), "%s-%s",
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001734 con_id, gpio_suffixes[i]);
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001735 } else {
1736 snprintf(propname, sizeof(propname), "%s",
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +01001737 gpio_suffixes[i]);
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001738 }
Mika Westerberge01f4402013-10-10 11:01:10 +03001739
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001740 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
1741 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
1742 break;
1743 }
1744
1745 /* Then from plain _CRS GPIOs */
1746 if (IS_ERR(desc)) {
1747 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
1748 if (IS_ERR(desc))
1749 return desc;
1750 }
1751
1752 if (info.active_low)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001753 *flags |= GPIO_ACTIVE_LOW;
Mika Westerberge01f4402013-10-10 11:01:10 +03001754
1755 return desc;
Mika Westerberg81f59e92013-10-10 11:01:09 +03001756}
1757
Alexandre Courbotad824782013-12-03 12:20:11 +09001758static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
1759{
1760 const char *dev_id = dev ? dev_name(dev) : NULL;
1761 struct gpiod_lookup_table *table;
1762
1763 mutex_lock(&gpio_lookup_lock);
1764
1765 list_for_each_entry(table, &gpio_lookup_list, list) {
1766 if (table->dev_id && dev_id) {
1767 /*
1768 * Valid strings on both ends, must be identical to have
1769 * a match
1770 */
1771 if (!strcmp(table->dev_id, dev_id))
1772 goto found;
1773 } else {
1774 /*
1775 * One of the pointers is NULL, so both must be to have
1776 * a match
1777 */
1778 if (dev_id == table->dev_id)
1779 goto found;
1780 }
1781 }
1782 table = NULL;
1783
1784found:
1785 mutex_unlock(&gpio_lookup_lock);
1786 return table;
1787}
1788
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001789static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001790 unsigned int idx,
1791 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001792{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001793 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09001794 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001795 struct gpiod_lookup *p;
1796
Alexandre Courbotad824782013-12-03 12:20:11 +09001797 table = gpiod_find_lookup_table(dev);
1798 if (!table)
1799 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001800
Alexandre Courbotad824782013-12-03 12:20:11 +09001801 for (p = &table->table[0]; p->chip_label; p++) {
1802 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001803
Alexandre Courbotad824782013-12-03 12:20:11 +09001804 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001805 if (p->idx != idx)
1806 continue;
1807
Alexandre Courbotad824782013-12-03 12:20:11 +09001808 /* If the lookup entry has a con_id, require exact match */
1809 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
1810 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001811
Alexandre Courbotad824782013-12-03 12:20:11 +09001812 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001813
Alexandre Courbotad824782013-12-03 12:20:11 +09001814 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001815 dev_err(dev, "cannot find GPIO chip %s\n",
1816 p->chip_label);
1817 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001818 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001819
Alexandre Courbotad824782013-12-03 12:20:11 +09001820 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001821 dev_err(dev,
1822 "requested GPIO %d is out of range [0..%d] for chip %s\n",
1823 idx, chip->ngpio, chip->label);
1824 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09001825 }
1826
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09001827 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09001828 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001829
1830 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09001831 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001832
1833 return desc;
1834}
1835
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001836static int dt_gpio_count(struct device *dev, const char *con_id)
1837{
1838 int ret;
1839 char propname[32];
1840 unsigned int i;
1841
1842 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
1843 if (con_id)
1844 snprintf(propname, sizeof(propname), "%s-%s",
1845 con_id, gpio_suffixes[i]);
1846 else
1847 snprintf(propname, sizeof(propname), "%s",
1848 gpio_suffixes[i]);
1849
1850 ret = of_gpio_named_count(dev->of_node, propname);
1851 if (ret >= 0)
1852 break;
1853 }
1854 return ret;
1855}
1856
1857static int platform_gpio_count(struct device *dev, const char *con_id)
1858{
1859 struct gpiod_lookup_table *table;
1860 struct gpiod_lookup *p;
1861 unsigned int count = 0;
1862
1863 table = gpiod_find_lookup_table(dev);
1864 if (!table)
1865 return -ENOENT;
1866
1867 for (p = &table->table[0]; p->chip_label; p++) {
1868 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
1869 (!con_id && !p->con_id))
1870 count++;
1871 }
1872 if (!count)
1873 return -ENOENT;
1874
1875 return count;
1876}
1877
1878/**
1879 * gpiod_count - return the number of GPIOs associated with a device / function
1880 * or -ENOENT if no GPIO has been assigned to the requested function
1881 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1882 * @con_id: function within the GPIO consumer
1883 */
1884int gpiod_count(struct device *dev, const char *con_id)
1885{
1886 int count = -ENOENT;
1887
1888 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
1889 count = dt_gpio_count(dev, con_id);
1890 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
1891 count = acpi_gpio_count(dev, con_id);
1892
1893 if (count < 0)
1894 count = platform_gpio_count(dev, con_id);
1895
1896 return count;
1897}
1898EXPORT_SYMBOL_GPL(gpiod_count);
1899
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001900/**
Thierry Reding08791622014-04-25 16:54:22 +02001901 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09001902 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001903 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001904 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001905 *
1906 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001907 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07001908 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001909 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01001910struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001911 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001912{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001913 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001914}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01001915EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001916
1917/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001918 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
1919 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1920 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001921 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001922 *
1923 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
1924 * the requested function it will return NULL. This is convenient for drivers
1925 * that need to handle optional GPIOs.
1926 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01001927struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001928 const char *con_id,
1929 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001930{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001931 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001932}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01001933EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001934
Benoit Parrotf625d462015-02-02 11:44:44 -06001935
1936/**
1937 * gpiod_configure_flags - helper function to configure a given GPIO
1938 * @desc: gpio whose value will be assigned
1939 * @con_id: function within the GPIO consumer
1940 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
1941 * of_get_gpio_hog()
1942 * @dflags: gpiod_flags - optional GPIO initialization flags
1943 *
1944 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
1945 * requested function and/or index, or another IS_ERR() code if an error
1946 * occurred while trying to acquire the GPIO.
1947 */
1948static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
1949 unsigned long lflags, enum gpiod_flags dflags)
1950{
1951 int status;
1952
1953 if (lflags & GPIO_ACTIVE_LOW)
1954 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
1955 if (lflags & GPIO_OPEN_DRAIN)
1956 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
1957 if (lflags & GPIO_OPEN_SOURCE)
1958 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
1959
1960 /* No particular flag request, return here... */
1961 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
1962 pr_debug("no flags found for %s\n", con_id);
1963 return 0;
1964 }
1965
1966 /* Process flags */
1967 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
1968 status = gpiod_direction_output(desc,
1969 dflags & GPIOD_FLAGS_BIT_DIR_VAL);
1970 else
1971 status = gpiod_direction_input(desc);
1972
1973 return status;
1974}
1975
Thierry Reding29a1f2332014-04-25 17:10:06 +02001976/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001977 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02001978 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001979 * @con_id: function within the GPIO consumer
1980 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001981 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001982 *
1983 * This variant of gpiod_get() allows to access GPIOs other than the first
1984 * defined one for functions that define several GPIOs.
1985 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001986 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
1987 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07001988 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001989 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01001990struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001991 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001992 unsigned int idx,
1993 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001994{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001995 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001996 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001997 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001998
1999 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
2000
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01002001 if (dev) {
2002 /* Using device tree? */
2003 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
2004 dev_dbg(dev, "using device tree for GPIO lookup\n");
2005 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
2006 } else if (ACPI_COMPANION(dev)) {
2007 dev_dbg(dev, "using ACPI for GPIO lookup\n");
2008 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags);
2009 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09002010 }
2011
2012 /*
2013 * Either we are not using DT or ACPI, or their lookup did not return
2014 * a result. In that case, use platform lookup as a fallback.
2015 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09002016 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04002017 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002018 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002019 }
2020
2021 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02002022 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002023 return desc;
2024 }
2025
2026 status = gpiod_request(desc, con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002027 if (status < 0)
2028 return ERR_PTR(status);
2029
Benoit Parrotf625d462015-02-02 11:44:44 -06002030 status = gpiod_configure_flags(desc, con_id, lookupflags, flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002031 if (status < 0) {
2032 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
2033 gpiod_put(desc);
2034 return ERR_PTR(status);
2035 }
2036
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002037 return desc;
2038}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002039EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002040
2041/**
Mika Westerberg40b73182014-10-21 13:33:59 +02002042 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
2043 * @fwnode: handle of the firmware node
2044 * @propname: name of the firmware property representing the GPIO
2045 *
2046 * This function can be used for drivers that get their configuration
2047 * from firmware.
2048 *
2049 * Function properly finds the corresponding GPIO using whatever is the
2050 * underlying firmware interface and then makes sure that the GPIO
2051 * descriptor is requested before it is returned to the caller.
2052 *
2053 * In case of error an ERR_PTR() is returned.
2054 */
2055struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
2056 const char *propname)
2057{
2058 struct gpio_desc *desc = ERR_PTR(-ENODEV);
2059 bool active_low = false;
2060 int ret;
2061
2062 if (!fwnode)
2063 return ERR_PTR(-EINVAL);
2064
2065 if (is_of_node(fwnode)) {
2066 enum of_gpio_flags flags;
2067
Alexander Sverdlinc181fb32015-06-22 22:38:53 +02002068 desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0,
Mika Westerberg40b73182014-10-21 13:33:59 +02002069 &flags);
2070 if (!IS_ERR(desc))
2071 active_low = flags & OF_GPIO_ACTIVE_LOW;
2072 } else if (is_acpi_node(fwnode)) {
2073 struct acpi_gpio_info info;
2074
Alexander Sverdlinc181fb32015-06-22 22:38:53 +02002075 desc = acpi_get_gpiod_by_index(to_acpi_node(fwnode), propname, 0,
Mika Westerberg40b73182014-10-21 13:33:59 +02002076 &info);
2077 if (!IS_ERR(desc))
2078 active_low = info.active_low;
2079 }
2080
2081 if (IS_ERR(desc))
2082 return desc;
2083
2084 ret = gpiod_request(desc, NULL);
2085 if (ret)
2086 return ERR_PTR(ret);
2087
2088 /* Only value flag can be set from both DT and ACPI is active_low */
2089 if (active_low)
2090 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
2091
2092 return desc;
2093}
2094EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
2095
2096/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02002097 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
2098 * function
2099 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2100 * @con_id: function within the GPIO consumer
2101 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002102 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02002103 *
2104 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
2105 * specified index was assigned to the requested function it will return NULL.
2106 * This is convenient for drivers that need to handle optional GPIOs.
2107 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002108struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02002109 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002110 unsigned int index,
2111 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02002112{
2113 struct gpio_desc *desc;
2114
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002115 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002116 if (IS_ERR(desc)) {
2117 if (PTR_ERR(desc) == -ENOENT)
2118 return NULL;
2119 }
2120
2121 return desc;
2122}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01002123EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002124
2125/**
Benoit Parrotf625d462015-02-02 11:44:44 -06002126 * gpiod_hog - Hog the specified GPIO desc given the provided flags
2127 * @desc: gpio whose value will be assigned
2128 * @name: gpio line name
2129 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
2130 * of_get_gpio_hog()
2131 * @dflags: gpiod_flags - optional GPIO initialization flags
2132 */
2133int gpiod_hog(struct gpio_desc *desc, const char *name,
2134 unsigned long lflags, enum gpiod_flags dflags)
2135{
2136 struct gpio_chip *chip;
2137 struct gpio_desc *local_desc;
2138 int hwnum;
2139 int status;
2140
2141 chip = gpiod_to_chip(desc);
2142 hwnum = gpio_chip_hwgpio(desc);
2143
2144 local_desc = gpiochip_request_own_desc(chip, hwnum, name);
2145 if (IS_ERR(local_desc)) {
Linus Walleija7138902015-06-05 11:36:10 +02002146 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed\n",
2147 name, chip->label, hwnum);
Benoit Parrotf625d462015-02-02 11:44:44 -06002148 return PTR_ERR(local_desc);
2149 }
2150
2151 status = gpiod_configure_flags(desc, name, lflags, dflags);
2152 if (status < 0) {
Linus Walleija7138902015-06-05 11:36:10 +02002153 pr_err("setup of hog GPIO %s (chip %s, offset %d) failed\n",
2154 name, chip->label, hwnum);
Benoit Parrotf625d462015-02-02 11:44:44 -06002155 gpiochip_free_own_desc(desc);
2156 return status;
2157 }
2158
2159 /* Mark GPIO as hogged so it can be identified and removed later */
2160 set_bit(FLAG_IS_HOGGED, &desc->flags);
2161
2162 pr_info("GPIO line %d (%s) hogged as %s%s\n",
2163 desc_to_gpio(desc), name,
2164 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
2165 (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ?
2166 (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":"");
2167
2168 return 0;
2169}
2170
2171/**
2172 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
2173 * @chip: gpio chip to act on
2174 *
2175 * This is only used by of_gpiochip_remove to free hogged gpios
2176 */
2177static void gpiochip_free_hogs(struct gpio_chip *chip)
2178{
2179 int id;
2180
2181 for (id = 0; id < chip->ngpio; id++) {
2182 if (test_bit(FLAG_IS_HOGGED, &chip->desc[id].flags))
2183 gpiochip_free_own_desc(&chip->desc[id]);
2184 }
2185}
2186
2187/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01002188 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
2189 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2190 * @con_id: function within the GPIO consumer
2191 * @flags: optional GPIO initialization flags
2192 *
2193 * This function acquires all the GPIOs defined under a given function.
2194 *
2195 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
2196 * no GPIO has been assigned to the requested function, or another IS_ERR()
2197 * code if an error occurred while trying to acquire the GPIOs.
2198 */
2199struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
2200 const char *con_id,
2201 enum gpiod_flags flags)
2202{
2203 struct gpio_desc *desc;
2204 struct gpio_descs *descs;
2205 int count;
2206
2207 count = gpiod_count(dev, con_id);
2208 if (count < 0)
2209 return ERR_PTR(count);
2210
2211 descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count,
2212 GFP_KERNEL);
2213 if (!descs)
2214 return ERR_PTR(-ENOMEM);
2215
2216 for (descs->ndescs = 0; descs->ndescs < count; ) {
2217 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
2218 if (IS_ERR(desc)) {
2219 gpiod_put_array(descs);
2220 return ERR_CAST(desc);
2221 }
2222 descs->desc[descs->ndescs] = desc;
2223 descs->ndescs++;
2224 }
2225 return descs;
2226}
2227EXPORT_SYMBOL_GPL(gpiod_get_array);
2228
2229/**
2230 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
2231 * function
2232 * @dev: GPIO consumer, can be NULL for system-global GPIOs
2233 * @con_id: function within the GPIO consumer
2234 * @flags: optional GPIO initialization flags
2235 *
2236 * This is equivalent to gpiod_get_array(), except that when no GPIO was
2237 * assigned to the requested function it will return NULL.
2238 */
2239struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
2240 const char *con_id,
2241 enum gpiod_flags flags)
2242{
2243 struct gpio_descs *descs;
2244
2245 descs = gpiod_get_array(dev, con_id, flags);
2246 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
2247 return NULL;
2248
2249 return descs;
2250}
2251EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
2252
2253/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002254 * gpiod_put - dispose of a GPIO descriptor
2255 * @desc: GPIO descriptor to dispose of
2256 *
2257 * No descriptor can be used after gpiod_put() has been called on it.
2258 */
2259void gpiod_put(struct gpio_desc *desc)
2260{
2261 gpiod_free(desc);
2262}
2263EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08002264
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01002265/**
2266 * gpiod_put_array - dispose of multiple GPIO descriptors
2267 * @descs: struct gpio_descs containing an array of descriptors
2268 */
2269void gpiod_put_array(struct gpio_descs *descs)
2270{
2271 unsigned int i;
2272
2273 for (i = 0; i < descs->ndescs; i++)
2274 gpiod_put(descs->desc[i]);
2275
2276 kfree(descs);
2277}
2278EXPORT_SYMBOL_GPL(gpiod_put_array);
2279
David Brownelld2876d02008-02-04 22:28:20 -08002280#ifdef CONFIG_DEBUG_FS
2281
2282static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
2283{
2284 unsigned i;
2285 unsigned gpio = chip->base;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002286 struct gpio_desc *gdesc = &chip->desc[0];
David Brownelld2876d02008-02-04 22:28:20 -08002287 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02002288 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08002289
2290 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
2291 if (!test_bit(FLAG_REQUESTED, &gdesc->flags))
2292 continue;
2293
Alexandre Courbot372e7222013-02-03 01:29:29 +09002294 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08002295 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002296 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
2297 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s",
David Brownelld2876d02008-02-04 22:28:20 -08002298 gpio, gdesc->label,
2299 is_out ? "out" : "in ",
2300 chip->get
2301 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02002302 : "? ",
2303 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08002304 seq_printf(s, "\n");
2305 }
2306}
2307
Thierry Redingf9c4a312012-04-12 13:26:01 +02002308static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08002309{
Grant Likely362432a2013-02-09 09:41:49 +00002310 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002311 struct gpio_chip *chip = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002312 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002313
2314 s->private = "";
2315
Grant Likely362432a2013-02-09 09:41:49 +00002316 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002317 list_for_each_entry(chip, &gpio_chips, list)
Grant Likely362432a2013-02-09 09:41:49 +00002318 if (index-- == 0) {
2319 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002320 return chip;
Grant Likely362432a2013-02-09 09:41:49 +00002321 }
2322 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002323
2324 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002325}
2326
2327static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
2328{
Grant Likely362432a2013-02-09 09:41:49 +00002329 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002330 struct gpio_chip *chip = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002331 void *ret = NULL;
2332
Grant Likely362432a2013-02-09 09:41:49 +00002333 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002334 if (list_is_last(&chip->list, &gpio_chips))
2335 ret = NULL;
2336 else
2337 ret = list_entry(chip->list.next, struct gpio_chip, list);
Grant Likely362432a2013-02-09 09:41:49 +00002338 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02002339
2340 s->private = "\n";
2341 ++*pos;
2342
2343 return ret;
2344}
2345
2346static void gpiolib_seq_stop(struct seq_file *s, void *v)
2347{
2348}
2349
2350static int gpiolib_seq_show(struct seq_file *s, void *v)
2351{
2352 struct gpio_chip *chip = v;
2353 struct device *dev;
2354
2355 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private,
2356 chip->base, chip->base + chip->ngpio - 1);
2357 dev = chip->dev;
2358 if (dev)
2359 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus",
2360 dev_name(dev));
2361 if (chip->label)
2362 seq_printf(s, ", %s", chip->label);
2363 if (chip->can_sleep)
2364 seq_printf(s, ", can sleep");
2365 seq_printf(s, ":\n");
2366
2367 if (chip->dbg_show)
2368 chip->dbg_show(s, chip);
2369 else
2370 gpiolib_dbg_show(s, chip);
2371
David Brownelld2876d02008-02-04 22:28:20 -08002372 return 0;
2373}
2374
Thierry Redingf9c4a312012-04-12 13:26:01 +02002375static const struct seq_operations gpiolib_seq_ops = {
2376 .start = gpiolib_seq_start,
2377 .next = gpiolib_seq_next,
2378 .stop = gpiolib_seq_stop,
2379 .show = gpiolib_seq_show,
2380};
2381
David Brownelld2876d02008-02-04 22:28:20 -08002382static int gpiolib_open(struct inode *inode, struct file *file)
2383{
Thierry Redingf9c4a312012-04-12 13:26:01 +02002384 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08002385}
2386
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002387static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02002388 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08002389 .open = gpiolib_open,
2390 .read = seq_read,
2391 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02002392 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08002393};
2394
2395static int __init gpiolib_debugfs_init(void)
2396{
2397 /* /sys/kernel/debug/gpio */
2398 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
2399 NULL, NULL, &gpiolib_operations);
2400 return 0;
2401}
2402subsys_initcall(gpiolib_debugfs_init);
2403
2404#endif /* DEBUG_FS */