blob: a5831d6a9b9108c0c5b676f0912ab347c5ec9fb3 [file] [log] [blame]
David Brownelld2876d02008-02-04 22:28:20 -08001#include <linux/kernel.h>
2#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07003#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08004#include <linux/irq.h>
5#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09006#include <linux/list.h>
David Brownelld8f388d82008-07-25 01:46:07 -07007#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/debugfs.h>
10#include <linux/seq_file.h>
11#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060012#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070013#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010015#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090016#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020017#include <linux/gpio/machine.h>
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
David Brownelld2876d02008-02-04 22:28:20 -080050static struct gpio_desc gpio_desc[ARCH_NR_GPIOS];
51
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090052#define GPIO_OFFSET_VALID(chip, offset) (offset >= 0 && offset < chip->ngpio)
53
Alexandre Courbotbae48da2013-10-17 10:21:38 -070054static DEFINE_MUTEX(gpio_lookup_lock);
55static LIST_HEAD(gpio_lookup_list);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090056LIST_HEAD(gpio_chips);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +020057
David Brownelld2876d02008-02-04 22:28:20 -080058static inline void desc_set_label(struct gpio_desc *d, const char *label)
59{
David Brownelld2876d02008-02-04 22:28:20 -080060 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080061}
62
Alexandre Courbot372e7222013-02-03 01:29:29 +090063/**
64 * Convert a GPIO number to its descriptor
65 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070066struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090067{
68 if (WARN(!gpio_is_valid(gpio), "invalid GPIO %d\n", gpio))
69 return NULL;
70 else
71 return &gpio_desc[gpio];
72}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070073EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +090074
75/**
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090076 * Get the GPIO descriptor corresponding to the given hw number for this chip.
Linus Walleijd468bf92013-09-24 11:54:38 +020077 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090078struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
79 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +020080{
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090081 if (hwnum >= chip->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +090082 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +020083
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090084 return &chip->desc[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +020085}
Alexandre Courbot372e7222013-02-03 01:29:29 +090086
87/**
88 * Convert a GPIO descriptor to the integer namespace.
89 * This should disappear in the future but is needed since we still
90 * use GPIO numbers for error messages and sysfs nodes
91 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070092int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +090093{
Alexandre Courbot8c0fca82013-10-04 10:59:57 -070094 return desc - &gpio_desc[0];
Alexandre Courbot372e7222013-02-03 01:29:29 +090095}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070096EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +090097
98
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070099/**
100 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
101 * @desc: descriptor to return the chip of
102 */
103struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900104{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900105 return desc ? desc->chip : NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900106}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700107EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800108
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700109/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
110static int gpiochip_find_base(int ngpio)
111{
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900112 struct gpio_chip *chip;
113 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700114
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900115 list_for_each_entry_reverse(chip, &gpio_chips, list) {
116 /* found a free space? */
117 if (chip->base + chip->ngpio <= base)
118 break;
119 else
120 /* nope, check the space right before the chip */
121 base = chip->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700122 }
123
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900124 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700125 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900126 return base;
127 } else {
128 pr_err("%s: cannot find free range\n", __func__);
129 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700130 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700131}
132
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700133/**
134 * gpiod_get_direction - return the current direction of a GPIO
135 * @desc: GPIO to get the direction of
136 *
137 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
138 *
139 * This function may sleep if gpiod_cansleep() is true.
140 */
141int gpiod_get_direction(const struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300142{
143 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900144 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300145 int status = -EINVAL;
146
Alexandre Courbot372e7222013-02-03 01:29:29 +0900147 chip = gpiod_to_chip(desc);
148 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300149
150 if (!chip->get_direction)
151 return status;
152
Alexandre Courbot372e7222013-02-03 01:29:29 +0900153 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300154 if (status > 0) {
155 /* GPIOF_DIR_IN, or other positive */
156 status = 1;
Alexandre Courbotdef63432013-02-15 14:46:15 +0900157 /* FLAG_IS_OUT is just a cache of the result of get_direction(),
158 * so it does not affect constness per se */
159 clear_bit(FLAG_IS_OUT, &((struct gpio_desc *)desc)->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300160 }
161 if (status == 0) {
162 /* GPIOF_DIR_OUT */
Alexandre Courbotdef63432013-02-15 14:46:15 +0900163 set_bit(FLAG_IS_OUT, &((struct gpio_desc *)desc)->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300164 }
165 return status;
166}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700167EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300168
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900169/*
170 * Add a new chip to the global chips list, keeping the list of chips sorted
171 * by base order.
172 *
173 * Return -EBUSY if the new chip overlaps with some other chip's integer
174 * space.
175 */
176static int gpiochip_add_to_list(struct gpio_chip *chip)
177{
178 struct list_head *pos = &gpio_chips;
179 struct gpio_chip *_chip;
180 int err = 0;
181
182 /* find where to insert our chip */
183 list_for_each(pos, &gpio_chips) {
184 _chip = list_entry(pos, struct gpio_chip, list);
185 /* shall we insert before _chip? */
186 if (_chip->base >= chip->base + chip->ngpio)
187 break;
188 }
189
190 /* are we stepping on the chip right before? */
191 if (pos != &gpio_chips && pos->prev != &gpio_chips) {
192 _chip = list_entry(pos->prev, struct gpio_chip, list);
193 if (_chip->base + _chip->ngpio > chip->base) {
194 dev_err(chip->dev,
195 "GPIO integer space overlap, cannot add chip\n");
196 err = -EBUSY;
197 }
198 }
199
200 if (!err)
201 list_add_tail(&chip->list, pos);
202
203 return err;
204}
205
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700206/**
David Brownelld2876d02008-02-04 22:28:20 -0800207 * gpiochip_add() - register a gpio_chip
208 * @chip: the chip to register, with chip->base initialized
209 * Context: potentially before irqs or kmalloc will work
210 *
211 * Returns a negative errno if the chip can't be registered, such as
212 * because the chip->base is invalid or already associated with a
213 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700214 *
David Brownelld8f388d82008-07-25 01:46:07 -0700215 * When gpiochip_add() is called very early during boot, so that GPIOs
216 * can be freely used, the chip->dev device must be registered before
217 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
218 * for GPIOs will fail rudely.
219 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700220 * If chip->base is negative, this requests dynamic assignment of
221 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800222 */
223int gpiochip_add(struct gpio_chip *chip)
224{
225 unsigned long flags;
226 int status = 0;
227 unsigned id;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700228 int base = chip->base;
David Brownelld2876d02008-02-04 22:28:20 -0800229
Trent Piephobff5fda2008-05-23 13:04:44 -0700230 if ((!gpio_is_valid(base) || !gpio_is_valid(base + chip->ngpio - 1))
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700231 && base >= 0) {
David Brownelld2876d02008-02-04 22:28:20 -0800232 status = -EINVAL;
233 goto fail;
234 }
235
236 spin_lock_irqsave(&gpio_lock, flags);
237
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700238 if (base < 0) {
239 base = gpiochip_find_base(chip->ngpio);
240 if (base < 0) {
241 status = base;
David Brownelld8f388d82008-07-25 01:46:07 -0700242 goto unlock;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700243 }
244 chip->base = base;
245 }
246
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900247 status = gpiochip_add_to_list(chip);
248
David Brownelld2876d02008-02-04 22:28:20 -0800249 if (status == 0) {
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900250 chip->desc = &gpio_desc[chip->base];
251
252 for (id = 0; id < chip->ngpio; id++) {
253 struct gpio_desc *desc = &chip->desc[id];
254 desc->chip = chip;
David Brownelld8f388d82008-07-25 01:46:07 -0700255
256 /* REVISIT: most hardware initializes GPIOs as
257 * inputs (often with pullups enabled) so power
258 * usage is minimized. Linux code should set the
259 * gpio direction first thing; but until it does,
Mathias Nyman80b0a602012-10-24 17:25:27 +0300260 * and in case chip->get_direction is not set,
David Brownelld8f388d82008-07-25 01:46:07 -0700261 * we may expose the wrong direction in sysfs.
262 */
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900263 desc->flags = !chip->direction_input
David Brownelld8f388d82008-07-25 01:46:07 -0700264 ? (1 << FLAG_IS_OUT)
265 : 0;
David Brownelld2876d02008-02-04 22:28:20 -0800266 }
267 }
268
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800269 spin_unlock_irqrestore(&gpio_lock, flags);
270
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530271#ifdef CONFIG_PINCTRL
272 INIT_LIST_HEAD(&chip->pin_ranges);
273#endif
274
Anton Vorontsov391c9702010-06-08 07:48:17 -0600275 of_gpiochip_add(chip);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200276 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600277
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600278 if (status)
279 goto fail;
280
281 status = gpiochip_export(chip);
282 if (status)
283 goto fail;
284
Andy Shevchenko7589e592013-12-05 11:26:23 +0200285 pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__,
Grant Likely64842aa2011-11-06 11:36:18 -0700286 chip->base, chip->base + chip->ngpio - 1,
287 chip->label ? : "generic");
288
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600289 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800290
291unlock:
292 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownelld2876d02008-02-04 22:28:20 -0800293fail:
294 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +0200295 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600296 chip->base, chip->base + chip->ngpio - 1,
297 chip->label ? : "generic");
David Brownelld2876d02008-02-04 22:28:20 -0800298 return status;
299}
300EXPORT_SYMBOL_GPL(gpiochip_add);
301
Linus Walleij14250522014-03-25 10:40:18 +0100302/* Forward-declaration */
303static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
304
David Brownelld2876d02008-02-04 22:28:20 -0800305/**
306 * gpiochip_remove() - unregister a gpio_chip
307 * @chip: the chip to unregister
308 *
309 * A gpio_chip with any GPIOs still requested may not be removed.
310 */
311int gpiochip_remove(struct gpio_chip *chip)
312{
313 unsigned long flags;
314 int status = 0;
315 unsigned id;
316
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200317 acpi_gpiochip_remove(chip);
318
David Brownelld2876d02008-02-04 22:28:20 -0800319 spin_lock_irqsave(&gpio_lock, flags);
320
Linus Walleij14250522014-03-25 10:40:18 +0100321 gpiochip_irqchip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +0100322 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600323 of_gpiochip_remove(chip);
324
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900325 for (id = 0; id < chip->ngpio; id++) {
326 if (test_bit(FLAG_REQUESTED, &chip->desc[id].flags)) {
David Brownelld2876d02008-02-04 22:28:20 -0800327 status = -EBUSY;
328 break;
329 }
330 }
331 if (status == 0) {
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900332 for (id = 0; id < chip->ngpio; id++)
333 chip->desc[id].chip = NULL;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900334
335 list_del(&chip->list);
David Brownelld2876d02008-02-04 22:28:20 -0800336 }
337
338 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownelld8f388d82008-07-25 01:46:07 -0700339
340 if (status == 0)
341 gpiochip_unexport(chip);
342
David Brownelld2876d02008-02-04 22:28:20 -0800343 return status;
344}
345EXPORT_SYMBOL_GPL(gpiochip_remove);
346
Grant Likely594fa262010-06-08 07:48:16 -0600347/**
348 * gpiochip_find() - iterator for locating a specific gpio_chip
349 * @data: data to pass to match function
350 * @callback: Callback function to check gpio_chip
351 *
352 * Similar to bus_find_device. It returns a reference to a gpio_chip as
353 * determined by a user supplied @match callback. The callback should return
354 * 0 if the device doesn't match and non-zero if it does. If the callback is
355 * non-zero, this function will return to the caller and not iterate over any
356 * more gpio_chips.
357 */
Grant Likely07ce8ec2012-05-18 23:01:05 -0600358struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -0700359 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600360 void *data))
Grant Likely594fa262010-06-08 07:48:16 -0600361{
Alexandre Courbot125eef92013-02-03 01:29:26 +0900362 struct gpio_chip *chip;
Grant Likely594fa262010-06-08 07:48:16 -0600363 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -0600364
365 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot125eef92013-02-03 01:29:26 +0900366 list_for_each_entry(chip, &gpio_chips, list)
367 if (match(chip, data))
Grant Likely594fa262010-06-08 07:48:16 -0600368 break;
Alexandre Courbot125eef92013-02-03 01:29:26 +0900369
370 /* No match? */
371 if (&chip->list == &gpio_chips)
372 chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -0600373 spin_unlock_irqrestore(&gpio_lock, flags);
374
375 return chip;
376}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -0600377EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -0800378
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900379static int gpiochip_match_name(struct gpio_chip *chip, void *data)
380{
381 const char *name = data;
382
383 return !strcmp(chip->label, name);
384}
385
386static struct gpio_chip *find_chip_by_name(const char *name)
387{
388 return gpiochip_find((void *)name, gpiochip_match_name);
389}
390
Linus Walleij14250522014-03-25 10:40:18 +0100391#ifdef CONFIG_GPIOLIB_IRQCHIP
392
393/*
394 * The following is irqchip helper code for gpiochips.
395 */
396
397/**
398 * gpiochip_add_chained_irqchip() - adds a chained irqchip to a gpiochip
399 * @gpiochip: the gpiochip to add the irqchip to
400 * @irqchip: the irqchip to add to the gpiochip
401 * @parent_irq: the irq number corresponding to the parent IRQ for this
402 * chained irqchip
403 * @parent_handler: the parent interrupt handler for the accumulated IRQ
404 * coming out of the gpiochip
405 */
406void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
407 struct irq_chip *irqchip,
408 int parent_irq,
409 irq_flow_handler_t parent_handler)
410{
Linus Walleij1c8732b2014-04-09 13:34:39 +0200411 if (gpiochip->can_sleep) {
412 chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n");
413 return;
414 }
415
Linus Walleij14250522014-03-25 10:40:18 +0100416 irq_set_chained_handler(parent_irq, parent_handler);
417 /*
418 * The parent irqchip is already using the chip_data for this
419 * irqchip, so our callbacks simply use the handler_data.
420 */
421 irq_set_handler_data(parent_irq, gpiochip);
422}
423EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
424
Linus Walleije45d1c82014-04-22 14:01:46 +0200425/*
426 * This lock class tells lockdep that GPIO irqs are in a different
427 * category than their parents, so it won't report false recursion.
428 */
429static struct lock_class_key gpiochip_irq_lock_class;
430
Linus Walleij14250522014-03-25 10:40:18 +0100431/**
432 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
433 * @d: the irqdomain used by this irqchip
434 * @irq: the global irq number used by this GPIO irqchip irq
435 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
436 *
437 * This function will set up the mapping for a certain IRQ line on a
438 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
439 * stored inside the gpiochip.
440 */
441static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
442 irq_hw_number_t hwirq)
443{
444 struct gpio_chip *chip = d->host_data;
445
Linus Walleij14250522014-03-25 10:40:18 +0100446 irq_set_chip_data(irq, chip);
Linus Walleije45d1c82014-04-22 14:01:46 +0200447 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class);
Linus Walleij7633fb92014-04-09 13:20:38 +0200448 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200449 /* Chips that can sleep need nested thread handlers */
450 if (chip->can_sleep)
451 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +0100452#ifdef CONFIG_ARM
453 set_irq_flags(irq, IRQF_VALID);
454#else
455 irq_set_noprobe(irq);
456#endif
Linus Walleij1333b902014-04-23 16:45:12 +0200457 /*
458 * No set-up of the hardware will happen if IRQ_TYPE_NONE
459 * is passed as default type.
460 */
461 if (chip->irq_default_type != IRQ_TYPE_NONE)
462 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +0100463
464 return 0;
465}
466
Linus Walleijc3626fd2014-03-28 20:42:01 +0100467static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
468{
Linus Walleij1c8732b2014-04-09 13:34:39 +0200469 struct gpio_chip *chip = d->host_data;
470
Linus Walleijc3626fd2014-03-28 20:42:01 +0100471#ifdef CONFIG_ARM
472 set_irq_flags(irq, 0);
473#endif
Linus Walleij1c8732b2014-04-09 13:34:39 +0200474 if (chip->can_sleep)
475 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100476 irq_set_chip_and_handler(irq, NULL, NULL);
477 irq_set_chip_data(irq, NULL);
478}
479
Linus Walleij14250522014-03-25 10:40:18 +0100480static const struct irq_domain_ops gpiochip_domain_ops = {
481 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +0100482 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +0100483 /* Virtually all GPIO irqchips are twocell:ed */
484 .xlate = irq_domain_xlate_twocell,
485};
486
487static int gpiochip_irq_reqres(struct irq_data *d)
488{
489 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
490
491 if (gpio_lock_as_irq(chip, d->hwirq)) {
492 chip_err(chip,
493 "unable to lock HW IRQ %lu for IRQ\n",
494 d->hwirq);
495 return -EINVAL;
496 }
497 return 0;
498}
499
500static void gpiochip_irq_relres(struct irq_data *d)
501{
502 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
503
504 gpio_unlock_as_irq(chip, d->hwirq);
505}
506
507static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
508{
509 return irq_find_mapping(chip->irqdomain, offset);
510}
511
512/**
513 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
514 * @gpiochip: the gpiochip to remove the irqchip from
515 *
516 * This is called only from gpiochip_remove()
517 */
518static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
519{
Linus Walleijc3626fd2014-03-28 20:42:01 +0100520 unsigned int offset;
521
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300522 acpi_gpiochip_free_interrupts(gpiochip);
523
Linus Walleijc3626fd2014-03-28 20:42:01 +0100524 /* Remove all IRQ mappings and delete the domain */
525 if (gpiochip->irqdomain) {
526 for (offset = 0; offset < gpiochip->ngpio; offset++)
527 irq_dispose_mapping(gpiochip->irq_base + offset);
Linus Walleij14250522014-03-25 10:40:18 +0100528 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100529 }
Linus Walleij14250522014-03-25 10:40:18 +0100530
531 if (gpiochip->irqchip) {
532 gpiochip->irqchip->irq_request_resources = NULL;
533 gpiochip->irqchip->irq_release_resources = NULL;
534 gpiochip->irqchip = NULL;
535 }
536}
537
538/**
539 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
540 * @gpiochip: the gpiochip to add the irqchip to
541 * @irqchip: the irqchip to add to the gpiochip
542 * @first_irq: if not dynamically assigned, the base (first) IRQ to
543 * allocate gpiochip irqs from
544 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +0200545 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
546 * to have the core avoid setting up any default type in the hardware.
Linus Walleij14250522014-03-25 10:40:18 +0100547 *
548 * This function closely associates a certain irqchip with a certain
549 * gpiochip, providing an irq domain to translate the local IRQs to
550 * global irqs in the gpiolib core, and making sure that the gpiochip
551 * is passed as chip data to all related functions. Driver callbacks
552 * need to use container_of() to get their local state containers back
553 * from the gpiochip passed as chip data. An irqdomain will be stored
554 * in the gpiochip that shall be used by the driver to handle IRQ number
555 * translation. The gpiochip will need to be initialized and registered
556 * before calling this function.
557 *
Linus Walleijc3626fd2014-03-28 20:42:01 +0100558 * This function will handle two cell:ed simple IRQs and assumes all
559 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +0100560 * need to be open coded.
561 */
562int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
563 struct irq_chip *irqchip,
564 unsigned int first_irq,
565 irq_flow_handler_t handler,
566 unsigned int type)
567{
568 struct device_node *of_node;
569 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +0100570 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +0100571
572 if (!gpiochip || !irqchip)
573 return -EINVAL;
574
575 if (!gpiochip->dev) {
576 pr_err("missing gpiochip .dev parent pointer\n");
577 return -EINVAL;
578 }
579 of_node = gpiochip->dev->of_node;
580#ifdef CONFIG_OF_GPIO
581 /*
582 * If the gpiochip has an assigned OF node this takes precendence
583 * FIXME: get rid of this and use gpiochip->dev->of_node everywhere
584 */
585 if (gpiochip->of_node)
586 of_node = gpiochip->of_node;
587#endif
588 gpiochip->irqchip = irqchip;
589 gpiochip->irq_handler = handler;
590 gpiochip->irq_default_type = type;
591 gpiochip->to_irq = gpiochip_to_irq;
592 gpiochip->irqdomain = irq_domain_add_simple(of_node,
593 gpiochip->ngpio, first_irq,
594 &gpiochip_domain_ops, gpiochip);
595 if (!gpiochip->irqdomain) {
596 gpiochip->irqchip = NULL;
597 return -EINVAL;
598 }
599 irqchip->irq_request_resources = gpiochip_irq_reqres;
600 irqchip->irq_release_resources = gpiochip_irq_relres;
601
602 /*
603 * Prepare the mapping since the irqchip shall be orthogonal to
604 * any gpiochip calls. If the first_irq was zero, this is
605 * necessary to allocate descriptors for all IRQs.
606 */
Linus Walleijc3626fd2014-03-28 20:42:01 +0100607 for (offset = 0; offset < gpiochip->ngpio; offset++) {
608 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
609 if (offset == 0)
610 /*
611 * Store the base into the gpiochip to be used when
612 * unmapping the irqs.
613 */
614 gpiochip->irq_base = irq_base;
615 }
Linus Walleij14250522014-03-25 10:40:18 +0100616
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300617 acpi_gpiochip_request_interrupts(gpiochip);
618
Linus Walleij14250522014-03-25 10:40:18 +0100619 return 0;
620}
621EXPORT_SYMBOL_GPL(gpiochip_irqchip_add);
622
623#else /* CONFIG_GPIOLIB_IRQCHIP */
624
625static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
626
627#endif /* CONFIG_GPIOLIB_IRQCHIP */
628
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530629#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +0100630
Linus Walleij3f0f8672012-11-20 12:40:15 +0100631/**
Christian Ruppert586a87e2013-10-15 15:37:54 +0200632 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
633 * @chip: the gpiochip to add the range for
634 * @pinctrl: the dev_name() of the pin controller to map to
635 * @gpio_offset: the start offset in the current gpio_chip number space
636 * @pin_group: name of the pin group inside the pin controller
637 */
638int gpiochip_add_pingroup_range(struct gpio_chip *chip,
639 struct pinctrl_dev *pctldev,
640 unsigned int gpio_offset, const char *pin_group)
641{
642 struct gpio_pin_range *pin_range;
643 int ret;
644
645 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
646 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200647 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +0200648 return -ENOMEM;
649 }
650
651 /* Use local offset as range ID */
652 pin_range->range.id = gpio_offset;
653 pin_range->range.gc = chip;
654 pin_range->range.name = chip->label;
655 pin_range->range.base = chip->base + gpio_offset;
656 pin_range->pctldev = pctldev;
657
658 ret = pinctrl_get_group_pins(pctldev, pin_group,
659 &pin_range->range.pins,
660 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100661 if (ret < 0) {
662 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +0200663 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100664 }
Christian Ruppert586a87e2013-10-15 15:37:54 +0200665
666 pinctrl_add_gpio_range(pctldev, &pin_range->range);
667
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200668 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
669 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +0200670 pinctrl_dev_get_devname(pctldev), pin_group);
671
672 list_add_tail(&pin_range->node, &chip->pin_ranges);
673
674 return 0;
675}
676EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
677
678/**
Linus Walleij3f0f8672012-11-20 12:40:15 +0100679 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
680 * @chip: the gpiochip to add the range for
681 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +0100682 * @gpio_offset: the start offset in the current gpio_chip number space
683 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +0100684 * @npins: the number of pins from the offset of each pin space (GPIO and
685 * pin controller) to accumulate in this range
686 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100687int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +0100688 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +0100689 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530690{
691 struct gpio_pin_range *pin_range;
Axel Linb4d4b1f2012-11-21 14:33:56 +0800692 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530693
Linus Walleij3f0f8672012-11-20 12:40:15 +0100694 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530695 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200696 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100697 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530698 }
699
Linus Walleij3f0f8672012-11-20 12:40:15 +0100700 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +0100701 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100702 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530703 pin_range->range.name = chip->label;
Linus Walleij316511c2012-11-21 08:48:09 +0100704 pin_range->range.base = chip->base + gpio_offset;
705 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530706 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +0100707 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530708 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +0100709 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +0800710 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200711 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +0100712 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +0800713 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100714 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200715 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
716 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +0100717 pinctl_name,
718 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530719
720 list_add_tail(&pin_range->node, &chip->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100721
722 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530723}
Linus Walleij165adc92012-11-06 14:49:39 +0100724EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530725
Linus Walleij3f0f8672012-11-20 12:40:15 +0100726/**
727 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
728 * @chip: the chip to remove all the mappings for
729 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530730void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
731{
732 struct gpio_pin_range *pin_range, *tmp;
733
734 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) {
735 list_del(&pin_range->node);
736 pinctrl_remove_gpio_range(pin_range->pctldev,
737 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +0100738 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530739 }
740}
Linus Walleij165adc92012-11-06 14:49:39 +0100741EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
742
743#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530744
David Brownelld2876d02008-02-04 22:28:20 -0800745/* These "optional" allocation calls help prevent drivers from stomping
746 * on each other, and help provide better diagnostics in debugfs.
747 * They're called even less than the "set direction" calls.
748 */
Mika Westerberg77c2d792014-03-10 14:54:50 +0200749static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -0800750{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200751 struct gpio_chip *chip = desc->chip;
752 int status;
David Brownelld2876d02008-02-04 22:28:20 -0800753 unsigned long flags;
754
755 spin_lock_irqsave(&gpio_lock, flags);
756
David Brownelld2876d02008-02-04 22:28:20 -0800757 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -0700758 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800759 */
760
761 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
762 desc_set_label(desc, label ? : "?");
763 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700764 } else {
David Brownelld2876d02008-02-04 22:28:20 -0800765 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -0800766 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700767 }
768
769 if (chip->request) {
770 /* chip->request may sleep */
771 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900772 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700773 spin_lock_irqsave(&gpio_lock, flags);
774
775 if (status < 0) {
776 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -0700777 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300778 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700779 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700780 }
Mathias Nyman80b0a602012-10-24 17:25:27 +0300781 if (chip->get_direction) {
782 /* chip->get_direction may sleep */
783 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900784 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300785 spin_lock_irqsave(&gpio_lock, flags);
786 }
David Brownelld2876d02008-02-04 22:28:20 -0800787done:
Mika Westerberg77c2d792014-03-10 14:54:50 +0200788 spin_unlock_irqrestore(&gpio_lock, flags);
789 return status;
790}
791
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900792int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200793{
794 int status = -EPROBE_DEFER;
795 struct gpio_chip *chip;
796
797 if (!desc) {
798 pr_warn("%s: invalid GPIO\n", __func__);
799 return -EINVAL;
800 }
801
802 chip = desc->chip;
803 if (!chip)
804 goto done;
805
806 if (try_module_get(chip->owner)) {
807 status = __gpiod_request(desc, label);
808 if (status < 0)
809 module_put(chip->owner);
810 }
811
812done:
David Brownelld2876d02008-02-04 22:28:20 -0800813 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +0200814 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200815
David Brownelld2876d02008-02-04 22:28:20 -0800816 return status;
817}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900818
Mika Westerberg77c2d792014-03-10 14:54:50 +0200819static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800820{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200821 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -0800822 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -0700823 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800824
Uwe Kleine-König3d599d12008-10-15 22:03:12 -0700825 might_sleep();
826
Alexandre Courbot372e7222013-02-03 01:29:29 +0900827 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -0700828
David Brownelld2876d02008-02-04 22:28:20 -0800829 spin_lock_irqsave(&gpio_lock, flags);
830
David Brownell35e8bb52008-10-15 22:03:16 -0700831 chip = desc->chip;
832 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
833 if (chip->free) {
834 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -0700835 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900836 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700837 spin_lock_irqsave(&gpio_lock, flags);
838 }
David Brownelld2876d02008-02-04 22:28:20 -0800839 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -0800840 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -0700841 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530842 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530843 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200844 ret = true;
845 }
David Brownelld2876d02008-02-04 22:28:20 -0800846
847 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200848 return ret;
849}
850
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900851void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200852{
853 if (desc && __gpiod_free(desc))
854 module_put(desc->chip->owner);
855 else
856 WARN_ON(extra_checks);
David Brownelld2876d02008-02-04 22:28:20 -0800857}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900858
David Brownelld2876d02008-02-04 22:28:20 -0800859/**
860 * gpiochip_is_requested - return string iff signal was requested
861 * @chip: controller managing the signal
862 * @offset: of signal within controller's 0..(ngpio - 1) range
863 *
864 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +0900865 * The string returned is the label passed to gpio_request(); if none has been
866 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -0800867 *
868 * This function is for use by GPIO controller drivers. The label can
869 * help with diagnostics, and knowing that the signal is used as a GPIO
870 * can help avoid accidentally multiplexing it to another controller.
871 */
872const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
873{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900874 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -0800875
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900876 if (!GPIO_OFFSET_VALID(chip, offset))
David Brownelld2876d02008-02-04 22:28:20 -0800877 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900878
879 desc = &chip->desc[offset];
880
Alexandre Courbot372e7222013-02-03 01:29:29 +0900881 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -0800882 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900883 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -0800884}
885EXPORT_SYMBOL_GPL(gpiochip_is_requested);
886
Mika Westerberg77c2d792014-03-10 14:54:50 +0200887/**
888 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
889 * @desc: GPIO descriptor to request
890 * @label: label for the GPIO
891 *
892 * Function allows GPIO chip drivers to request and use their own GPIO
893 * descriptors via gpiolib API. Difference to gpiod_request() is that this
894 * function will not increase reference count of the GPIO chip module. This
895 * allows the GPIO chip module to be unloaded as needed (we assume that the
896 * GPIO chip driver handles freeing the GPIOs it has requested).
897 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700898struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
899 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200900{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700901 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
902 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200903
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700904 if (IS_ERR(desc)) {
905 chip_err(chip, "failed to get GPIO descriptor\n");
906 return desc;
907 }
908
909 err = __gpiod_request(desc, label);
910 if (err < 0)
911 return ERR_PTR(err);
912
913 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200914}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700915EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200916
917/**
918 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
919 * @desc: GPIO descriptor to free
920 *
921 * Function frees the given GPIO requested previously with
922 * gpiochip_request_own_desc().
923 */
924void gpiochip_free_own_desc(struct gpio_desc *desc)
925{
926 if (desc)
927 __gpiod_free(desc);
928}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700929EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -0800930
931/* Drivers MUST set GPIO direction before making get/set calls. In
932 * some cases this is done in early boot, before IRQs are enabled.
933 *
934 * As a rule these aren't called more than once (except for drivers
935 * using the open-drain emulation idiom) so these are natural places
936 * to accumulate extra debugging checks. Note that we can't (yet)
937 * rely on gpio_request() having been called beforehand.
938 */
939
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700940/**
941 * gpiod_direction_input - set the GPIO direction to input
942 * @desc: GPIO to set to input
943 *
944 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
945 * be called safely on it.
946 *
947 * Return 0 in case of success, else an error code.
948 */
949int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800950{
David Brownelld2876d02008-02-04 22:28:20 -0800951 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800952 int status = -EINVAL;
953
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200954 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900955 pr_warn("%s: invalid GPIO\n", __func__);
956 return -EINVAL;
957 }
958
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200959 chip = desc->chip;
960 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +0100961 gpiod_warn(desc,
962 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +0200963 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200964 return -EIO;
965 }
966
Alexandre Courbotd82da792014-07-22 16:17:43 +0900967 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -0800968 if (status == 0)
969 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -0600970
Alexandre Courbot372e7222013-02-03 01:29:29 +0900971 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +0900972
David Brownelld2876d02008-02-04 22:28:20 -0800973 return status;
974}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700975EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900976
Philipp Zabelef70bbe2014-01-07 12:34:11 +0100977static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -0800978{
David Brownelld2876d02008-02-04 22:28:20 -0800979 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800980 int status = -EINVAL;
981
Linus Walleijd468bf92013-09-24 11:54:38 +0200982 /* GPIOs used for IRQs shall not be set as output */
983 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
984 gpiod_err(desc,
985 "%s: tried to set a GPIO tied to an IRQ as output\n",
986 __func__);
987 return -EIO;
988 }
989
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530990 /* Open drain pin should not be driven to 1 */
991 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +0900992 return gpiod_direction_input(desc);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530993
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530994 /* Open source pin should not be driven to 0 */
995 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +0900996 return gpiod_direction_input(desc);
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530997
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200998 chip = desc->chip;
999 if (!chip->set || !chip->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01001000 gpiod_warn(desc,
1001 "%s: missing set() or direction_output() operations\n",
1002 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001003 return -EIO;
1004 }
1005
Alexandre Courbotd82da792014-07-22 16:17:43 +09001006 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
David Brownelld2876d02008-02-04 22:28:20 -08001007 if (status == 0)
1008 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001009 trace_gpio_value(desc_to_gpio(desc), 0, value);
1010 trace_gpio_direction(desc_to_gpio(desc), 0, status);
David Brownelld2876d02008-02-04 22:28:20 -08001011 return status;
1012}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001013
1014/**
1015 * gpiod_direction_output_raw - set the GPIO direction to output
1016 * @desc: GPIO to set to output
1017 * @value: initial output value of the GPIO
1018 *
1019 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1020 * be called safely on it. The initial value of the output must be specified
1021 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1022 *
1023 * Return 0 in case of success, else an error code.
1024 */
1025int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1026{
1027 if (!desc || !desc->chip) {
1028 pr_warn("%s: invalid GPIO\n", __func__);
1029 return -EINVAL;
1030 }
1031 return _gpiod_direction_output_raw(desc, value);
1032}
1033EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1034
1035/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05301036 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001037 * @desc: GPIO to set to output
1038 * @value: initial output value of the GPIO
1039 *
1040 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1041 * be called safely on it. The initial value of the output must be specified
1042 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1043 * account.
1044 *
1045 * Return 0 in case of success, else an error code.
1046 */
1047int gpiod_direction_output(struct gpio_desc *desc, int value)
1048{
1049 if (!desc || !desc->chip) {
1050 pr_warn("%s: invalid GPIO\n", __func__);
1051 return -EINVAL;
1052 }
1053 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1054 value = !value;
1055 return _gpiod_direction_output_raw(desc, value);
1056}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001057EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08001058
Felipe Balbic4b5be92010-05-26 14:42:23 -07001059/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001060 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07001061 * @gpio: the gpio to set debounce time
1062 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02001063 *
1064 * returns -ENOTSUPP if the controller does not support setting
1065 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07001066 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001067int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07001068{
Felipe Balbic4b5be92010-05-26 14:42:23 -07001069 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07001070
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001071 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001072 pr_warn("%s: invalid GPIO\n", __func__);
1073 return -EINVAL;
1074 }
1075
Felipe Balbic4b5be92010-05-26 14:42:23 -07001076 chip = desc->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001077 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01001078 gpiod_dbg(desc,
1079 "%s: missing set() or set_debounce() operations\n",
1080 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02001081 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001082 }
1083
Alexandre Courbotd82da792014-07-22 16:17:43 +09001084 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07001085}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001086EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001087
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001088/**
1089 * gpiod_is_active_low - test whether a GPIO is active-low or not
1090 * @desc: the gpio descriptor to test
1091 *
1092 * Returns 1 if the GPIO is active-low, 0 otherwise.
1093 */
1094int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001095{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001096 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001097}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001098EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08001099
1100/* I/O calls are only valid after configuration completed; the relevant
1101 * "is this a valid GPIO" error checks should already have been done.
1102 *
1103 * "Get" operations are often inlinable as reading a pin value register,
1104 * and masking the relevant bit in that register.
1105 *
1106 * When "set" operations are inlinable, they involve writing that mask to
1107 * one register to set a low value, or a different register to set it high.
1108 * Otherwise locking is needed, so there may be little value to inlining.
1109 *
1110 *------------------------------------------------------------------------
1111 *
1112 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1113 * have requested the GPIO. That can include implicit requesting by
1114 * a direction setting call. Marking a gpio as requested locks its chip
1115 * in memory, guaranteeing that these table lookups need no more locking
1116 * and that gpiochip_remove() will fail.
1117 *
1118 * REVISIT when debugging, consider adding some instrumentation to ensure
1119 * that the GPIO was actually requested.
1120 */
1121
Alexandre Courbot23600962014-03-11 15:52:09 +09001122static bool _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001123{
1124 struct gpio_chip *chip;
Alexandre Courbot23600962014-03-11 15:52:09 +09001125 bool value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001126 int offset;
David Brownelld2876d02008-02-04 22:28:20 -08001127
Alexandre Courbot372e7222013-02-03 01:29:29 +09001128 chip = desc->chip;
1129 offset = gpio_chip_hwgpio(desc);
Alexandre Courbot23600962014-03-11 15:52:09 +09001130 value = chip->get ? chip->get(chip, offset) : false;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001131 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001132 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001133}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001134
David Brownelld2876d02008-02-04 22:28:20 -08001135/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001136 * gpiod_get_raw_value() - return a gpio's raw value
1137 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08001138 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001139 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1140 * its ACTIVE_LOW status.
1141 *
1142 * This function should be called from contexts where we cannot sleep, and will
1143 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001144 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001145int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001146{
David Brownelld2876d02008-02-04 22:28:20 -08001147 if (!desc)
1148 return 0;
David Brownelld2876d02008-02-04 22:28:20 -08001149 /* Should be using gpio_get_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001150 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001151 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001152}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001153EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001154
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001155/**
1156 * gpiod_get_value() - return a gpio's value
1157 * @desc: gpio whose value will be returned
1158 *
1159 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1160 * account.
1161 *
1162 * This function should be called from contexts where we cannot sleep, and will
1163 * complain if the GPIO chip functions potentially sleep.
1164 */
1165int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001166{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001167 int value;
1168 if (!desc)
1169 return 0;
1170 /* Should be using gpio_get_value_cansleep() */
1171 WARN_ON(desc->chip->can_sleep);
1172
1173 value = _gpiod_get_raw_value(desc);
1174 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1175 value = !value;
1176
1177 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001178}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001179EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08001180
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301181/*
1182 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001183 * @desc: gpio descriptor whose state need to be set.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301184 * @value: Non-zero for setting it HIGH otherise it will set to LOW.
1185 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001186static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301187{
1188 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001189 struct gpio_chip *chip = desc->chip;
1190 int offset = gpio_chip_hwgpio(desc);
1191
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301192 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001193 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301194 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001195 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301196 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001197 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301198 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001199 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301200 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001201 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301202 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001203 gpiod_err(desc,
1204 "%s: Error in set_value for open drain err %d\n",
1205 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301206}
1207
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301208/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001209 * _gpio_set_open_source_value() - Set the open source gpio's value.
1210 * @desc: gpio descriptor whose state need to be set.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301211 * @value: Non-zero for setting it HIGH otherise it will set to LOW.
1212 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001213static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301214{
1215 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001216 struct gpio_chip *chip = desc->chip;
1217 int offset = gpio_chip_hwgpio(desc);
1218
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301219 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001220 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301221 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001222 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301223 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001224 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301225 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001226 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301227 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001228 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301229 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001230 gpiod_err(desc,
1231 "%s: Error in set_value for open source err %d\n",
1232 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301233}
1234
Alexandre Courbot23600962014-03-11 15:52:09 +09001235static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08001236{
1237 struct gpio_chip *chip;
1238
Alexandre Courbot372e7222013-02-03 01:29:29 +09001239 chip = desc->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001240 trace_gpio_value(desc_to_gpio(desc), 0, value);
1241 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1242 _gpio_set_open_drain_value(desc, value);
1243 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1244 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301245 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09001246 chip->set(chip, gpio_chip_hwgpio(desc), value);
1247}
1248
David Brownelld2876d02008-02-04 22:28:20 -08001249/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001250 * gpiod_set_raw_value() - assign a gpio's raw value
1251 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08001252 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001253 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001254 * Set the raw value of the GPIO, i.e. the value of its physical line without
1255 * regard for its ACTIVE_LOW status.
1256 *
1257 * This function should be called from contexts where we cannot sleep, and will
1258 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001259 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001260void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001261{
David Brownelld2876d02008-02-04 22:28:20 -08001262 if (!desc)
1263 return;
David Brownelld2876d02008-02-04 22:28:20 -08001264 /* Should be using gpio_set_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001265 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001266 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001267}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001268EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001269
1270/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001271 * gpiod_set_value() - assign a gpio's value
1272 * @desc: gpio whose value will be assigned
1273 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001274 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001275 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1276 * account
1277 *
1278 * This function should be called from contexts where we cannot sleep, and will
1279 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001280 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001281void gpiod_set_value(struct gpio_desc *desc, int value)
1282{
1283 if (!desc)
1284 return;
1285 /* Should be using gpio_set_value_cansleep() */
1286 WARN_ON(desc->chip->can_sleep);
1287 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1288 value = !value;
1289 _gpiod_set_raw_value(desc, value);
1290}
1291EXPORT_SYMBOL_GPL(gpiod_set_value);
1292
1293/**
1294 * gpiod_cansleep() - report whether gpio value access may sleep
1295 * @desc: gpio to check
1296 *
1297 */
1298int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001299{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001300 if (!desc)
1301 return 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001302 return desc->chip->can_sleep;
1303}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001304EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001305
David Brownell0f6d5042008-10-15 22:03:14 -07001306/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001307 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1308 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07001309 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001310 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1311 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07001312 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001313int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07001314{
1315 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001316 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07001317
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001318 if (!desc)
1319 return -EINVAL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001320 chip = desc->chip;
1321 offset = gpio_chip_hwgpio(desc);
1322 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
1323}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001324EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001325
Linus Walleijd468bf92013-09-24 11:54:38 +02001326/**
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001327 * gpio_lock_as_irq() - lock a GPIO to be used as IRQ
1328 * @chip: the chip the GPIO to lock belongs to
1329 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001330 *
1331 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08001332 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08001333 */
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001334int gpio_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08001335{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001336 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001337 return -EINVAL;
1338
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001339 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) {
1340 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02001341 "%s: tried to flag a GPIO set as output for IRQ\n",
1342 __func__);
1343 return -EIO;
1344 }
1345
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001346 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001347 return 0;
1348}
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001349EXPORT_SYMBOL_GPL(gpio_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001350
Linus Walleijd468bf92013-09-24 11:54:38 +02001351/**
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001352 * gpio_unlock_as_irq() - unlock a GPIO used as IRQ
1353 * @chip: the chip the GPIO to lock belongs to
1354 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001355 *
1356 * This is used directly by GPIO drivers that want to indicate
1357 * that a certain GPIO is no longer used exclusively for IRQ.
1358 */
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001359void gpio_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02001360{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001361 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001362 return;
1363
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001364 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001365}
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001366EXPORT_SYMBOL_GPL(gpio_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001367
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001368/**
1369 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
1370 * @desc: gpio whose value will be returned
1371 *
1372 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1373 * its ACTIVE_LOW status.
1374 *
1375 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001376 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001377int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001378{
David Brownelld2876d02008-02-04 22:28:20 -08001379 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001380 if (!desc)
1381 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001382 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08001383}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001384EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001385
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001386/**
1387 * gpiod_get_value_cansleep() - return a gpio's value
1388 * @desc: gpio whose value will be returned
1389 *
1390 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1391 * account.
1392 *
1393 * This function is to be called from contexts that can sleep.
1394 */
1395int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001396{
David Brownelld2876d02008-02-04 22:28:20 -08001397 int value;
David Brownelld2876d02008-02-04 22:28:20 -08001398
1399 might_sleep_if(extra_checks);
1400 if (!desc)
1401 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001402
1403 value = _gpiod_get_raw_value(desc);
1404 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1405 value = !value;
1406
David Brownelld2876d02008-02-04 22:28:20 -08001407 return value;
1408}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001409EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001410
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001411/**
1412 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
1413 * @desc: gpio whose value will be assigned
1414 * @value: value to assign
1415 *
1416 * Set the raw value of the GPIO, i.e. the value of its physical line without
1417 * regard for its ACTIVE_LOW status.
1418 *
1419 * This function is to be called from contexts that can sleep.
1420 */
1421void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001422{
David Brownelld2876d02008-02-04 22:28:20 -08001423 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001424 if (!desc)
1425 return;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001426 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001427}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001428EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001429
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001430/**
1431 * gpiod_set_value_cansleep() - assign a gpio's value
1432 * @desc: gpio whose value will be assigned
1433 * @value: value to assign
1434 *
1435 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1436 * account
1437 *
1438 * This function is to be called from contexts that can sleep.
1439 */
1440void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001441{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001442 might_sleep_if(extra_checks);
1443 if (!desc)
1444 return;
1445
1446 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1447 value = !value;
1448 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001449}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001450EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001451
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001452/**
Alexandre Courbotad824782013-12-03 12:20:11 +09001453 * gpiod_add_lookup_table() - register GPIO device consumers
1454 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001455 */
Alexandre Courbotad824782013-12-03 12:20:11 +09001456void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001457{
1458 mutex_lock(&gpio_lookup_lock);
1459
Alexandre Courbotad824782013-12-03 12:20:11 +09001460 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001461
1462 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08001463}
1464
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001465static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001466 unsigned int idx,
1467 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001468{
Thierry Redingdd34c372014-04-23 17:28:09 +02001469 static const char *suffixes[] = { "gpios", "gpio" };
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001470 char prop_name[32]; /* 32 is max size of property name */
1471 enum of_gpio_flags of_flags;
1472 struct gpio_desc *desc;
Thierry Redingdd34c372014-04-23 17:28:09 +02001473 unsigned int i;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001474
Thierry Redingdd34c372014-04-23 17:28:09 +02001475 for (i = 0; i < ARRAY_SIZE(suffixes); i++) {
1476 if (con_id)
1477 snprintf(prop_name, 32, "%s-%s", con_id, suffixes[i]);
1478 else
1479 snprintf(prop_name, 32, "%s", suffixes[i]);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001480
Thierry Redingdd34c372014-04-23 17:28:09 +02001481 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
1482 &of_flags);
Tony Lindgren06fc3b72014-06-02 16:13:46 -07001483 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
Thierry Redingdd34c372014-04-23 17:28:09 +02001484 break;
1485 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001486
1487 if (IS_ERR(desc))
1488 return desc;
1489
1490 if (of_flags & OF_GPIO_ACTIVE_LOW)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001491 *flags |= GPIO_ACTIVE_LOW;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001492
1493 return desc;
1494}
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001495
Mika Westerberg81f59e92013-10-10 11:01:09 +03001496static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001497 unsigned int idx,
1498 enum gpio_lookup_flags *flags)
Mika Westerberg81f59e92013-10-10 11:01:09 +03001499{
Mika Westerberge01f4402013-10-10 11:01:10 +03001500 struct acpi_gpio_info info;
1501 struct gpio_desc *desc;
1502
1503 desc = acpi_get_gpiod_by_index(dev, idx, &info);
1504 if (IS_ERR(desc))
1505 return desc;
1506
1507 if (info.gpioint && info.active_low)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001508 *flags |= GPIO_ACTIVE_LOW;
Mika Westerberge01f4402013-10-10 11:01:10 +03001509
1510 return desc;
Mika Westerberg81f59e92013-10-10 11:01:09 +03001511}
1512
Alexandre Courbotad824782013-12-03 12:20:11 +09001513static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
1514{
1515 const char *dev_id = dev ? dev_name(dev) : NULL;
1516 struct gpiod_lookup_table *table;
1517
1518 mutex_lock(&gpio_lookup_lock);
1519
1520 list_for_each_entry(table, &gpio_lookup_list, list) {
1521 if (table->dev_id && dev_id) {
1522 /*
1523 * Valid strings on both ends, must be identical to have
1524 * a match
1525 */
1526 if (!strcmp(table->dev_id, dev_id))
1527 goto found;
1528 } else {
1529 /*
1530 * One of the pointers is NULL, so both must be to have
1531 * a match
1532 */
1533 if (dev_id == table->dev_id)
1534 goto found;
1535 }
1536 }
1537 table = NULL;
1538
1539found:
1540 mutex_unlock(&gpio_lookup_lock);
1541 return table;
1542}
1543
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001544static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001545 unsigned int idx,
1546 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001547{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001548 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09001549 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001550 struct gpiod_lookup *p;
1551
Alexandre Courbotad824782013-12-03 12:20:11 +09001552 table = gpiod_find_lookup_table(dev);
1553 if (!table)
1554 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001555
Alexandre Courbotad824782013-12-03 12:20:11 +09001556 for (p = &table->table[0]; p->chip_label; p++) {
1557 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001558
Alexandre Courbotad824782013-12-03 12:20:11 +09001559 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001560 if (p->idx != idx)
1561 continue;
1562
Alexandre Courbotad824782013-12-03 12:20:11 +09001563 /* If the lookup entry has a con_id, require exact match */
1564 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
1565 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001566
Alexandre Courbotad824782013-12-03 12:20:11 +09001567 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001568
Alexandre Courbotad824782013-12-03 12:20:11 +09001569 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001570 dev_err(dev, "cannot find GPIO chip %s\n",
1571 p->chip_label);
1572 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001573 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001574
Alexandre Courbotad824782013-12-03 12:20:11 +09001575 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001576 dev_err(dev,
1577 "requested GPIO %d is out of range [0..%d] for chip %s\n",
1578 idx, chip->ngpio, chip->label);
1579 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09001580 }
1581
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09001582 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09001583 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001584
1585 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09001586 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001587
1588 return desc;
1589}
1590
1591/**
Thierry Reding08791622014-04-25 16:54:22 +02001592 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09001593 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001594 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001595 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001596 *
1597 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001598 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
1599 * another IS_ERR() code if an error occured while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001600 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001601struct gpio_desc *__must_check __gpiod_get(struct device *dev, const char *con_id,
1602 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001603{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001604 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001605}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001606EXPORT_SYMBOL_GPL(__gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001607
1608/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001609 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
1610 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1611 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001612 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001613 *
1614 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
1615 * the requested function it will return NULL. This is convenient for drivers
1616 * that need to handle optional GPIOs.
1617 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001618struct gpio_desc *__must_check __gpiod_get_optional(struct device *dev,
1619 const char *con_id,
1620 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001621{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001622 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001623}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001624EXPORT_SYMBOL_GPL(__gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001625
1626/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001627 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02001628 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001629 * @con_id: function within the GPIO consumer
1630 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001631 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001632 *
1633 * This variant of gpiod_get() allows to access GPIOs other than the first
1634 * defined one for functions that define several GPIOs.
1635 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001636 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
1637 * requested function and/or index, or another IS_ERR() code if an error
1638 * occured while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001639 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001640struct gpio_desc *__must_check __gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001641 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001642 unsigned int idx,
1643 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001644{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001645 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001646 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001647 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001648
1649 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
1650
1651 /* Using device tree? */
1652 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) {
1653 dev_dbg(dev, "using device tree for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001654 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
Mika Westerberg81f59e92013-10-10 11:01:09 +03001655 } else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) {
1656 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001657 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags);
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001658 }
1659
1660 /*
1661 * Either we are not using DT or ACPI, or their lookup did not return
1662 * a result. In that case, use platform lookup as a fallback.
1663 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001664 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001665 dev_dbg(dev, "using lookup tables for GPIO lookup");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001666 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001667 }
1668
1669 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02001670 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001671 return desc;
1672 }
1673
1674 status = gpiod_request(desc, con_id);
1675
1676 if (status < 0)
1677 return ERR_PTR(status);
1678
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001679 if (lookupflags & GPIO_ACTIVE_LOW)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001680 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001681 if (lookupflags & GPIO_OPEN_DRAIN)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001682 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001683 if (lookupflags & GPIO_OPEN_SOURCE)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001684 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001685
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001686 /* No particular flag request, return here... */
1687 if (flags & GPIOD_FLAGS_BIT_DIR_SET)
1688 return desc;
1689
1690 /* Process flags */
1691 if (flags & GPIOD_FLAGS_BIT_DIR_OUT)
1692 status = gpiod_direction_output(desc,
1693 flags & GPIOD_FLAGS_BIT_DIR_VAL);
1694 else
1695 status = gpiod_direction_input(desc);
1696
1697 if (status < 0) {
1698 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
1699 gpiod_put(desc);
1700 return ERR_PTR(status);
1701 }
1702
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001703 return desc;
1704}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001705EXPORT_SYMBOL_GPL(__gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001706
1707/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001708 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
1709 * function
1710 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1711 * @con_id: function within the GPIO consumer
1712 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001713 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001714 *
1715 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
1716 * specified index was assigned to the requested function it will return NULL.
1717 * This is convenient for drivers that need to handle optional GPIOs.
1718 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001719struct gpio_desc *__must_check __gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02001720 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001721 unsigned int index,
1722 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001723{
1724 struct gpio_desc *desc;
1725
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001726 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001727 if (IS_ERR(desc)) {
1728 if (PTR_ERR(desc) == -ENOENT)
1729 return NULL;
1730 }
1731
1732 return desc;
1733}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001734EXPORT_SYMBOL_GPL(__gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001735
1736/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001737 * gpiod_put - dispose of a GPIO descriptor
1738 * @desc: GPIO descriptor to dispose of
1739 *
1740 * No descriptor can be used after gpiod_put() has been called on it.
1741 */
1742void gpiod_put(struct gpio_desc *desc)
1743{
1744 gpiod_free(desc);
1745}
1746EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08001747
David Brownelld2876d02008-02-04 22:28:20 -08001748#ifdef CONFIG_DEBUG_FS
1749
1750static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1751{
1752 unsigned i;
1753 unsigned gpio = chip->base;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09001754 struct gpio_desc *gdesc = &chip->desc[0];
David Brownelld2876d02008-02-04 22:28:20 -08001755 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02001756 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08001757
1758 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
1759 if (!test_bit(FLAG_REQUESTED, &gdesc->flags))
1760 continue;
1761
Alexandre Courbot372e7222013-02-03 01:29:29 +09001762 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08001763 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001764 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
1765 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s",
David Brownelld2876d02008-02-04 22:28:20 -08001766 gpio, gdesc->label,
1767 is_out ? "out" : "in ",
1768 chip->get
1769 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02001770 : "? ",
1771 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08001772 seq_printf(s, "\n");
1773 }
1774}
1775
Thierry Redingf9c4a312012-04-12 13:26:01 +02001776static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08001777{
Grant Likely362432a2013-02-09 09:41:49 +00001778 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001779 struct gpio_chip *chip = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001780 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001781
1782 s->private = "";
1783
Grant Likely362432a2013-02-09 09:41:49 +00001784 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001785 list_for_each_entry(chip, &gpio_chips, list)
Grant Likely362432a2013-02-09 09:41:49 +00001786 if (index-- == 0) {
1787 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001788 return chip;
Grant Likely362432a2013-02-09 09:41:49 +00001789 }
1790 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001791
1792 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001793}
1794
1795static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
1796{
Grant Likely362432a2013-02-09 09:41:49 +00001797 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001798 struct gpio_chip *chip = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001799 void *ret = NULL;
1800
Grant Likely362432a2013-02-09 09:41:49 +00001801 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001802 if (list_is_last(&chip->list, &gpio_chips))
1803 ret = NULL;
1804 else
1805 ret = list_entry(chip->list.next, struct gpio_chip, list);
Grant Likely362432a2013-02-09 09:41:49 +00001806 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02001807
1808 s->private = "\n";
1809 ++*pos;
1810
1811 return ret;
1812}
1813
1814static void gpiolib_seq_stop(struct seq_file *s, void *v)
1815{
1816}
1817
1818static int gpiolib_seq_show(struct seq_file *s, void *v)
1819{
1820 struct gpio_chip *chip = v;
1821 struct device *dev;
1822
1823 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private,
1824 chip->base, chip->base + chip->ngpio - 1);
1825 dev = chip->dev;
1826 if (dev)
1827 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus",
1828 dev_name(dev));
1829 if (chip->label)
1830 seq_printf(s, ", %s", chip->label);
1831 if (chip->can_sleep)
1832 seq_printf(s, ", can sleep");
1833 seq_printf(s, ":\n");
1834
1835 if (chip->dbg_show)
1836 chip->dbg_show(s, chip);
1837 else
1838 gpiolib_dbg_show(s, chip);
1839
David Brownelld2876d02008-02-04 22:28:20 -08001840 return 0;
1841}
1842
Thierry Redingf9c4a312012-04-12 13:26:01 +02001843static const struct seq_operations gpiolib_seq_ops = {
1844 .start = gpiolib_seq_start,
1845 .next = gpiolib_seq_next,
1846 .stop = gpiolib_seq_stop,
1847 .show = gpiolib_seq_show,
1848};
1849
David Brownelld2876d02008-02-04 22:28:20 -08001850static int gpiolib_open(struct inode *inode, struct file *file)
1851{
Thierry Redingf9c4a312012-04-12 13:26:01 +02001852 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08001853}
1854
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001855static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02001856 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08001857 .open = gpiolib_open,
1858 .read = seq_read,
1859 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02001860 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08001861};
1862
1863static int __init gpiolib_debugfs_init(void)
1864{
1865 /* /sys/kernel/debug/gpio */
1866 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
1867 NULL, NULL, &gpiolib_operations);
1868 return 0;
1869}
1870subsys_initcall(gpiolib_debugfs_init);
1871
1872#endif /* DEBUG_FS */