blob: 9362b5b817af150597ee5edebce5e70fe4e08bd8 [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 */
abdoulaye berthee1db1702014-07-05 18:28:50 +0200311void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -0800312{
313 unsigned long flags;
David Brownelld2876d02008-02-04 22:28:20 -0800314 unsigned id;
315
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200316 acpi_gpiochip_remove(chip);
317
David Brownelld2876d02008-02-04 22:28:20 -0800318 spin_lock_irqsave(&gpio_lock, flags);
319
Linus Walleij14250522014-03-25 10:40:18 +0100320 gpiochip_irqchip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +0100321 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600322 of_gpiochip_remove(chip);
323
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900324 for (id = 0; id < chip->ngpio; id++) {
abdoulaye berthee1db1702014-07-05 18:28:50 +0200325 if (test_bit(FLAG_REQUESTED, &chip->desc[id].flags))
326 dev_crit(chip->dev, "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
David Brownelld2876d02008-02-04 22:28:20 -0800327 }
abdoulaye berthee1db1702014-07-05 18:28:50 +0200328 for (id = 0; id < chip->ngpio; id++)
329 chip->desc[id].chip = NULL;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900330
abdoulaye berthee1db1702014-07-05 18:28:50 +0200331 list_del(&chip->list);
David Brownelld2876d02008-02-04 22:28:20 -0800332 spin_unlock_irqrestore(&gpio_lock, flags);
abdoulaye berthee1db1702014-07-05 18:28:50 +0200333 gpiochip_unexport(chip);
David Brownelld2876d02008-02-04 22:28:20 -0800334}
335EXPORT_SYMBOL_GPL(gpiochip_remove);
336
Grant Likely594fa262010-06-08 07:48:16 -0600337/**
338 * gpiochip_find() - iterator for locating a specific gpio_chip
339 * @data: data to pass to match function
340 * @callback: Callback function to check gpio_chip
341 *
342 * Similar to bus_find_device. It returns a reference to a gpio_chip as
343 * determined by a user supplied @match callback. The callback should return
344 * 0 if the device doesn't match and non-zero if it does. If the callback is
345 * non-zero, this function will return to the caller and not iterate over any
346 * more gpio_chips.
347 */
Grant Likely07ce8ec2012-05-18 23:01:05 -0600348struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -0700349 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600350 void *data))
Grant Likely594fa262010-06-08 07:48:16 -0600351{
Alexandre Courbot125eef92013-02-03 01:29:26 +0900352 struct gpio_chip *chip;
Grant Likely594fa262010-06-08 07:48:16 -0600353 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -0600354
355 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot125eef92013-02-03 01:29:26 +0900356 list_for_each_entry(chip, &gpio_chips, list)
357 if (match(chip, data))
Grant Likely594fa262010-06-08 07:48:16 -0600358 break;
Alexandre Courbot125eef92013-02-03 01:29:26 +0900359
360 /* No match? */
361 if (&chip->list == &gpio_chips)
362 chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -0600363 spin_unlock_irqrestore(&gpio_lock, flags);
364
365 return chip;
366}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -0600367EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -0800368
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900369static int gpiochip_match_name(struct gpio_chip *chip, void *data)
370{
371 const char *name = data;
372
373 return !strcmp(chip->label, name);
374}
375
376static struct gpio_chip *find_chip_by_name(const char *name)
377{
378 return gpiochip_find((void *)name, gpiochip_match_name);
379}
380
Linus Walleij14250522014-03-25 10:40:18 +0100381#ifdef CONFIG_GPIOLIB_IRQCHIP
382
383/*
384 * The following is irqchip helper code for gpiochips.
385 */
386
387/**
388 * gpiochip_add_chained_irqchip() - adds a chained irqchip to a gpiochip
389 * @gpiochip: the gpiochip to add the irqchip to
390 * @irqchip: the irqchip to add to the gpiochip
391 * @parent_irq: the irq number corresponding to the parent IRQ for this
392 * chained irqchip
393 * @parent_handler: the parent interrupt handler for the accumulated IRQ
394 * coming out of the gpiochip
395 */
396void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
397 struct irq_chip *irqchip,
398 int parent_irq,
399 irq_flow_handler_t parent_handler)
400{
Linus Walleij83141a72014-09-26 13:50:12 +0200401 unsigned int offset;
402
Linus Walleij1c8732b2014-04-09 13:34:39 +0200403 if (gpiochip->can_sleep) {
404 chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n");
405 return;
406 }
Linus Walleij83141a72014-09-26 13:50:12 +0200407 if (!gpiochip->irqdomain) {
408 chip_err(gpiochip, "called %s before setting up irqchip\n",
409 __func__);
410 return;
411 }
Linus Walleij1c8732b2014-04-09 13:34:39 +0200412
Linus Walleij14250522014-03-25 10:40:18 +0100413 irq_set_chained_handler(parent_irq, parent_handler);
Linus Walleij83141a72014-09-26 13:50:12 +0200414
Linus Walleij14250522014-03-25 10:40:18 +0100415 /*
416 * The parent irqchip is already using the chip_data for this
417 * irqchip, so our callbacks simply use the handler_data.
418 */
419 irq_set_handler_data(parent_irq, gpiochip);
Linus Walleij83141a72014-09-26 13:50:12 +0200420
421 /* Set the parent IRQ for all affected IRQs */
422 for (offset = 0; offset < gpiochip->ngpio; offset++)
423 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
424 parent_irq);
Linus Walleij14250522014-03-25 10:40:18 +0100425}
426EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
427
Linus Walleije45d1c82014-04-22 14:01:46 +0200428/*
429 * This lock class tells lockdep that GPIO irqs are in a different
430 * category than their parents, so it won't report false recursion.
431 */
432static struct lock_class_key gpiochip_irq_lock_class;
433
Linus Walleij14250522014-03-25 10:40:18 +0100434/**
435 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
436 * @d: the irqdomain used by this irqchip
437 * @irq: the global irq number used by this GPIO irqchip irq
438 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
439 *
440 * This function will set up the mapping for a certain IRQ line on a
441 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
442 * stored inside the gpiochip.
443 */
444static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
445 irq_hw_number_t hwirq)
446{
447 struct gpio_chip *chip = d->host_data;
448
Linus Walleij14250522014-03-25 10:40:18 +0100449 irq_set_chip_data(irq, chip);
Linus Walleije45d1c82014-04-22 14:01:46 +0200450 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class);
Linus Walleij7633fb92014-04-09 13:20:38 +0200451 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200452 /* Chips that can sleep need nested thread handlers */
Octavian Purdila295494a2014-09-19 23:22:44 +0300453 if (chip->can_sleep && !chip->irq_not_threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +0200454 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +0100455#ifdef CONFIG_ARM
456 set_irq_flags(irq, IRQF_VALID);
457#else
458 irq_set_noprobe(irq);
459#endif
Linus Walleij1333b902014-04-23 16:45:12 +0200460 /*
461 * No set-up of the hardware will happen if IRQ_TYPE_NONE
462 * is passed as default type.
463 */
464 if (chip->irq_default_type != IRQ_TYPE_NONE)
465 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +0100466
467 return 0;
468}
469
Linus Walleijc3626fd2014-03-28 20:42:01 +0100470static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
471{
Linus Walleij1c8732b2014-04-09 13:34:39 +0200472 struct gpio_chip *chip = d->host_data;
473
Linus Walleijc3626fd2014-03-28 20:42:01 +0100474#ifdef CONFIG_ARM
475 set_irq_flags(irq, 0);
476#endif
Linus Walleij1c8732b2014-04-09 13:34:39 +0200477 if (chip->can_sleep)
478 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100479 irq_set_chip_and_handler(irq, NULL, NULL);
480 irq_set_chip_data(irq, NULL);
481}
482
Linus Walleij14250522014-03-25 10:40:18 +0100483static const struct irq_domain_ops gpiochip_domain_ops = {
484 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +0100485 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +0100486 /* Virtually all GPIO irqchips are twocell:ed */
487 .xlate = irq_domain_xlate_twocell,
488};
489
490static int gpiochip_irq_reqres(struct irq_data *d)
491{
492 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
493
494 if (gpio_lock_as_irq(chip, d->hwirq)) {
495 chip_err(chip,
496 "unable to lock HW IRQ %lu for IRQ\n",
497 d->hwirq);
498 return -EINVAL;
499 }
500 return 0;
501}
502
503static void gpiochip_irq_relres(struct irq_data *d)
504{
505 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
506
507 gpio_unlock_as_irq(chip, d->hwirq);
508}
509
510static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
511{
512 return irq_find_mapping(chip->irqdomain, offset);
513}
514
515/**
516 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
517 * @gpiochip: the gpiochip to remove the irqchip from
518 *
519 * This is called only from gpiochip_remove()
520 */
521static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
522{
Linus Walleijc3626fd2014-03-28 20:42:01 +0100523 unsigned int offset;
524
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300525 acpi_gpiochip_free_interrupts(gpiochip);
526
Linus Walleijc3626fd2014-03-28 20:42:01 +0100527 /* Remove all IRQ mappings and delete the domain */
528 if (gpiochip->irqdomain) {
529 for (offset = 0; offset < gpiochip->ngpio; offset++)
Grygorii Strashkoe3893382014-09-25 19:09:23 +0300530 irq_dispose_mapping(
531 irq_find_mapping(gpiochip->irqdomain, offset));
Linus Walleij14250522014-03-25 10:40:18 +0100532 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100533 }
Linus Walleij14250522014-03-25 10:40:18 +0100534
535 if (gpiochip->irqchip) {
536 gpiochip->irqchip->irq_request_resources = NULL;
537 gpiochip->irqchip->irq_release_resources = NULL;
538 gpiochip->irqchip = NULL;
539 }
540}
541
542/**
543 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
544 * @gpiochip: the gpiochip to add the irqchip to
545 * @irqchip: the irqchip to add to the gpiochip
546 * @first_irq: if not dynamically assigned, the base (first) IRQ to
547 * allocate gpiochip irqs from
548 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +0200549 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
550 * to have the core avoid setting up any default type in the hardware.
Linus Walleij14250522014-03-25 10:40:18 +0100551 *
552 * This function closely associates a certain irqchip with a certain
553 * gpiochip, providing an irq domain to translate the local IRQs to
554 * global irqs in the gpiolib core, and making sure that the gpiochip
555 * is passed as chip data to all related functions. Driver callbacks
556 * need to use container_of() to get their local state containers back
557 * from the gpiochip passed as chip data. An irqdomain will be stored
558 * in the gpiochip that shall be used by the driver to handle IRQ number
559 * translation. The gpiochip will need to be initialized and registered
560 * before calling this function.
561 *
Linus Walleijc3626fd2014-03-28 20:42:01 +0100562 * This function will handle two cell:ed simple IRQs and assumes all
563 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +0100564 * need to be open coded.
565 */
566int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
567 struct irq_chip *irqchip,
568 unsigned int first_irq,
569 irq_flow_handler_t handler,
570 unsigned int type)
571{
572 struct device_node *of_node;
573 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +0100574 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +0100575
576 if (!gpiochip || !irqchip)
577 return -EINVAL;
578
579 if (!gpiochip->dev) {
580 pr_err("missing gpiochip .dev parent pointer\n");
581 return -EINVAL;
582 }
583 of_node = gpiochip->dev->of_node;
584#ifdef CONFIG_OF_GPIO
585 /*
586 * If the gpiochip has an assigned OF node this takes precendence
587 * FIXME: get rid of this and use gpiochip->dev->of_node everywhere
588 */
589 if (gpiochip->of_node)
590 of_node = gpiochip->of_node;
591#endif
592 gpiochip->irqchip = irqchip;
593 gpiochip->irq_handler = handler;
594 gpiochip->irq_default_type = type;
595 gpiochip->to_irq = gpiochip_to_irq;
596 gpiochip->irqdomain = irq_domain_add_simple(of_node,
597 gpiochip->ngpio, first_irq,
598 &gpiochip_domain_ops, gpiochip);
599 if (!gpiochip->irqdomain) {
600 gpiochip->irqchip = NULL;
601 return -EINVAL;
602 }
603 irqchip->irq_request_resources = gpiochip_irq_reqres;
604 irqchip->irq_release_resources = gpiochip_irq_relres;
605
606 /*
607 * Prepare the mapping since the irqchip shall be orthogonal to
608 * any gpiochip calls. If the first_irq was zero, this is
609 * necessary to allocate descriptors for all IRQs.
610 */
Linus Walleijc3626fd2014-03-28 20:42:01 +0100611 for (offset = 0; offset < gpiochip->ngpio; offset++) {
612 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
613 if (offset == 0)
614 /*
615 * Store the base into the gpiochip to be used when
616 * unmapping the irqs.
617 */
618 gpiochip->irq_base = irq_base;
619 }
Linus Walleij14250522014-03-25 10:40:18 +0100620
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300621 acpi_gpiochip_request_interrupts(gpiochip);
622
Linus Walleij14250522014-03-25 10:40:18 +0100623 return 0;
624}
625EXPORT_SYMBOL_GPL(gpiochip_irqchip_add);
626
627#else /* CONFIG_GPIOLIB_IRQCHIP */
628
629static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
630
631#endif /* CONFIG_GPIOLIB_IRQCHIP */
632
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530633#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +0100634
Linus Walleij3f0f8672012-11-20 12:40:15 +0100635/**
Christian Ruppert586a87e2013-10-15 15:37:54 +0200636 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
637 * @chip: the gpiochip to add the range for
638 * @pinctrl: the dev_name() of the pin controller to map to
639 * @gpio_offset: the start offset in the current gpio_chip number space
640 * @pin_group: name of the pin group inside the pin controller
641 */
642int gpiochip_add_pingroup_range(struct gpio_chip *chip,
643 struct pinctrl_dev *pctldev,
644 unsigned int gpio_offset, const char *pin_group)
645{
646 struct gpio_pin_range *pin_range;
647 int ret;
648
649 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
650 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200651 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +0200652 return -ENOMEM;
653 }
654
655 /* Use local offset as range ID */
656 pin_range->range.id = gpio_offset;
657 pin_range->range.gc = chip;
658 pin_range->range.name = chip->label;
659 pin_range->range.base = chip->base + gpio_offset;
660 pin_range->pctldev = pctldev;
661
662 ret = pinctrl_get_group_pins(pctldev, pin_group,
663 &pin_range->range.pins,
664 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100665 if (ret < 0) {
666 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +0200667 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100668 }
Christian Ruppert586a87e2013-10-15 15:37:54 +0200669
670 pinctrl_add_gpio_range(pctldev, &pin_range->range);
671
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200672 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
673 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +0200674 pinctrl_dev_get_devname(pctldev), pin_group);
675
676 list_add_tail(&pin_range->node, &chip->pin_ranges);
677
678 return 0;
679}
680EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
681
682/**
Linus Walleij3f0f8672012-11-20 12:40:15 +0100683 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
684 * @chip: the gpiochip to add the range for
685 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +0100686 * @gpio_offset: the start offset in the current gpio_chip number space
687 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +0100688 * @npins: the number of pins from the offset of each pin space (GPIO and
689 * pin controller) to accumulate in this range
690 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100691int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +0100692 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +0100693 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530694{
695 struct gpio_pin_range *pin_range;
Axel Linb4d4b1f2012-11-21 14:33:56 +0800696 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530697
Linus Walleij3f0f8672012-11-20 12:40:15 +0100698 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530699 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200700 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100701 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530702 }
703
Linus Walleij3f0f8672012-11-20 12:40:15 +0100704 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +0100705 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100706 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530707 pin_range->range.name = chip->label;
Linus Walleij316511c2012-11-21 08:48:09 +0100708 pin_range->range.base = chip->base + gpio_offset;
709 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530710 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +0100711 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530712 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +0100713 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +0800714 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200715 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +0100716 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +0800717 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100718 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200719 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
720 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +0100721 pinctl_name,
722 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530723
724 list_add_tail(&pin_range->node, &chip->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100725
726 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530727}
Linus Walleij165adc92012-11-06 14:49:39 +0100728EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530729
Linus Walleij3f0f8672012-11-20 12:40:15 +0100730/**
731 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
732 * @chip: the chip to remove all the mappings for
733 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530734void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
735{
736 struct gpio_pin_range *pin_range, *tmp;
737
738 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) {
739 list_del(&pin_range->node);
740 pinctrl_remove_gpio_range(pin_range->pctldev,
741 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +0100742 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530743 }
744}
Linus Walleij165adc92012-11-06 14:49:39 +0100745EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
746
747#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530748
David Brownelld2876d02008-02-04 22:28:20 -0800749/* These "optional" allocation calls help prevent drivers from stomping
750 * on each other, and help provide better diagnostics in debugfs.
751 * They're called even less than the "set direction" calls.
752 */
Mika Westerberg77c2d792014-03-10 14:54:50 +0200753static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -0800754{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200755 struct gpio_chip *chip = desc->chip;
756 int status;
David Brownelld2876d02008-02-04 22:28:20 -0800757 unsigned long flags;
758
759 spin_lock_irqsave(&gpio_lock, flags);
760
David Brownelld2876d02008-02-04 22:28:20 -0800761 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -0700762 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800763 */
764
765 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
766 desc_set_label(desc, label ? : "?");
767 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700768 } else {
David Brownelld2876d02008-02-04 22:28:20 -0800769 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -0800770 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700771 }
772
773 if (chip->request) {
774 /* chip->request may sleep */
775 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900776 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700777 spin_lock_irqsave(&gpio_lock, flags);
778
779 if (status < 0) {
780 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -0700781 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300782 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700783 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700784 }
Mathias Nyman80b0a602012-10-24 17:25:27 +0300785 if (chip->get_direction) {
786 /* chip->get_direction may sleep */
787 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900788 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300789 spin_lock_irqsave(&gpio_lock, flags);
790 }
David Brownelld2876d02008-02-04 22:28:20 -0800791done:
Mika Westerberg77c2d792014-03-10 14:54:50 +0200792 spin_unlock_irqrestore(&gpio_lock, flags);
793 return status;
794}
795
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900796int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200797{
798 int status = -EPROBE_DEFER;
799 struct gpio_chip *chip;
800
801 if (!desc) {
802 pr_warn("%s: invalid GPIO\n", __func__);
803 return -EINVAL;
804 }
805
806 chip = desc->chip;
807 if (!chip)
808 goto done;
809
810 if (try_module_get(chip->owner)) {
811 status = __gpiod_request(desc, label);
812 if (status < 0)
813 module_put(chip->owner);
814 }
815
816done:
David Brownelld2876d02008-02-04 22:28:20 -0800817 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +0200818 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200819
David Brownelld2876d02008-02-04 22:28:20 -0800820 return status;
821}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900822
Mika Westerberg77c2d792014-03-10 14:54:50 +0200823static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800824{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200825 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -0800826 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -0700827 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800828
Uwe Kleine-König3d599d12008-10-15 22:03:12 -0700829 might_sleep();
830
Alexandre Courbot372e7222013-02-03 01:29:29 +0900831 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -0700832
David Brownelld2876d02008-02-04 22:28:20 -0800833 spin_lock_irqsave(&gpio_lock, flags);
834
David Brownell35e8bb52008-10-15 22:03:16 -0700835 chip = desc->chip;
836 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
837 if (chip->free) {
838 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -0700839 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900840 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700841 spin_lock_irqsave(&gpio_lock, flags);
842 }
David Brownelld2876d02008-02-04 22:28:20 -0800843 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -0800844 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -0700845 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530846 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530847 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200848 ret = true;
849 }
David Brownelld2876d02008-02-04 22:28:20 -0800850
851 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200852 return ret;
853}
854
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900855void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200856{
857 if (desc && __gpiod_free(desc))
858 module_put(desc->chip->owner);
859 else
860 WARN_ON(extra_checks);
David Brownelld2876d02008-02-04 22:28:20 -0800861}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900862
David Brownelld2876d02008-02-04 22:28:20 -0800863/**
864 * gpiochip_is_requested - return string iff signal was requested
865 * @chip: controller managing the signal
866 * @offset: of signal within controller's 0..(ngpio - 1) range
867 *
868 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +0900869 * The string returned is the label passed to gpio_request(); if none has been
870 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -0800871 *
872 * This function is for use by GPIO controller drivers. The label can
873 * help with diagnostics, and knowing that the signal is used as a GPIO
874 * can help avoid accidentally multiplexing it to another controller.
875 */
876const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
877{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900878 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -0800879
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900880 if (!GPIO_OFFSET_VALID(chip, offset))
David Brownelld2876d02008-02-04 22:28:20 -0800881 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900882
883 desc = &chip->desc[offset];
884
Alexandre Courbot372e7222013-02-03 01:29:29 +0900885 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -0800886 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900887 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -0800888}
889EXPORT_SYMBOL_GPL(gpiochip_is_requested);
890
Mika Westerberg77c2d792014-03-10 14:54:50 +0200891/**
892 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
893 * @desc: GPIO descriptor to request
894 * @label: label for the GPIO
895 *
896 * Function allows GPIO chip drivers to request and use their own GPIO
897 * descriptors via gpiolib API. Difference to gpiod_request() is that this
898 * function will not increase reference count of the GPIO chip module. This
899 * allows the GPIO chip module to be unloaded as needed (we assume that the
900 * GPIO chip driver handles freeing the GPIOs it has requested).
901 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700902struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
903 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200904{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700905 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
906 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200907
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700908 if (IS_ERR(desc)) {
909 chip_err(chip, "failed to get GPIO descriptor\n");
910 return desc;
911 }
912
913 err = __gpiod_request(desc, label);
914 if (err < 0)
915 return ERR_PTR(err);
916
917 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200918}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700919EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200920
921/**
922 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
923 * @desc: GPIO descriptor to free
924 *
925 * Function frees the given GPIO requested previously with
926 * gpiochip_request_own_desc().
927 */
928void gpiochip_free_own_desc(struct gpio_desc *desc)
929{
930 if (desc)
931 __gpiod_free(desc);
932}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700933EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -0800934
935/* Drivers MUST set GPIO direction before making get/set calls. In
936 * some cases this is done in early boot, before IRQs are enabled.
937 *
938 * As a rule these aren't called more than once (except for drivers
939 * using the open-drain emulation idiom) so these are natural places
940 * to accumulate extra debugging checks. Note that we can't (yet)
941 * rely on gpio_request() having been called beforehand.
942 */
943
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700944/**
945 * gpiod_direction_input - set the GPIO direction to input
946 * @desc: GPIO to set to input
947 *
948 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
949 * be called safely on it.
950 *
951 * Return 0 in case of success, else an error code.
952 */
953int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800954{
David Brownelld2876d02008-02-04 22:28:20 -0800955 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800956 int status = -EINVAL;
957
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200958 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900959 pr_warn("%s: invalid GPIO\n", __func__);
960 return -EINVAL;
961 }
962
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200963 chip = desc->chip;
964 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +0100965 gpiod_warn(desc,
966 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +0200967 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200968 return -EIO;
969 }
970
Alexandre Courbotd82da792014-07-22 16:17:43 +0900971 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -0800972 if (status == 0)
973 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -0600974
Alexandre Courbot372e7222013-02-03 01:29:29 +0900975 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +0900976
David Brownelld2876d02008-02-04 22:28:20 -0800977 return status;
978}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700979EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900980
Philipp Zabelef70bbe2014-01-07 12:34:11 +0100981static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -0800982{
David Brownelld2876d02008-02-04 22:28:20 -0800983 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800984 int status = -EINVAL;
985
Linus Walleijd468bf92013-09-24 11:54:38 +0200986 /* GPIOs used for IRQs shall not be set as output */
987 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
988 gpiod_err(desc,
989 "%s: tried to set a GPIO tied to an IRQ as output\n",
990 __func__);
991 return -EIO;
992 }
993
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530994 /* Open drain pin should not be driven to 1 */
995 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +0900996 return gpiod_direction_input(desc);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530997
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530998 /* Open source pin should not be driven to 0 */
999 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001000 return gpiod_direction_input(desc);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301001
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001002 chip = desc->chip;
1003 if (!chip->set || !chip->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01001004 gpiod_warn(desc,
1005 "%s: missing set() or direction_output() operations\n",
1006 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001007 return -EIO;
1008 }
1009
Alexandre Courbotd82da792014-07-22 16:17:43 +09001010 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
David Brownelld2876d02008-02-04 22:28:20 -08001011 if (status == 0)
1012 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001013 trace_gpio_value(desc_to_gpio(desc), 0, value);
1014 trace_gpio_direction(desc_to_gpio(desc), 0, status);
David Brownelld2876d02008-02-04 22:28:20 -08001015 return status;
1016}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001017
1018/**
1019 * gpiod_direction_output_raw - set the GPIO direction to output
1020 * @desc: GPIO to set to output
1021 * @value: initial output value of the GPIO
1022 *
1023 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1024 * be called safely on it. The initial value of the output must be specified
1025 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1026 *
1027 * Return 0 in case of success, else an error code.
1028 */
1029int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1030{
1031 if (!desc || !desc->chip) {
1032 pr_warn("%s: invalid GPIO\n", __func__);
1033 return -EINVAL;
1034 }
1035 return _gpiod_direction_output_raw(desc, value);
1036}
1037EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1038
1039/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05301040 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001041 * @desc: GPIO to set to output
1042 * @value: initial output value of the GPIO
1043 *
1044 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1045 * be called safely on it. The initial value of the output must be specified
1046 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1047 * account.
1048 *
1049 * Return 0 in case of success, else an error code.
1050 */
1051int gpiod_direction_output(struct gpio_desc *desc, int value)
1052{
1053 if (!desc || !desc->chip) {
1054 pr_warn("%s: invalid GPIO\n", __func__);
1055 return -EINVAL;
1056 }
1057 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1058 value = !value;
1059 return _gpiod_direction_output_raw(desc, value);
1060}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001061EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08001062
Felipe Balbic4b5be92010-05-26 14:42:23 -07001063/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001064 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07001065 * @gpio: the gpio to set debounce time
1066 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02001067 *
1068 * returns -ENOTSUPP if the controller does not support setting
1069 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07001070 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001071int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07001072{
Felipe Balbic4b5be92010-05-26 14:42:23 -07001073 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07001074
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001075 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001076 pr_warn("%s: invalid GPIO\n", __func__);
1077 return -EINVAL;
1078 }
1079
Felipe Balbic4b5be92010-05-26 14:42:23 -07001080 chip = desc->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001081 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01001082 gpiod_dbg(desc,
1083 "%s: missing set() or set_debounce() operations\n",
1084 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02001085 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001086 }
1087
Alexandre Courbotd82da792014-07-22 16:17:43 +09001088 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07001089}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001090EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001091
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001092/**
1093 * gpiod_is_active_low - test whether a GPIO is active-low or not
1094 * @desc: the gpio descriptor to test
1095 *
1096 * Returns 1 if the GPIO is active-low, 0 otherwise.
1097 */
1098int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001099{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001100 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001101}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001102EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08001103
1104/* I/O calls are only valid after configuration completed; the relevant
1105 * "is this a valid GPIO" error checks should already have been done.
1106 *
1107 * "Get" operations are often inlinable as reading a pin value register,
1108 * and masking the relevant bit in that register.
1109 *
1110 * When "set" operations are inlinable, they involve writing that mask to
1111 * one register to set a low value, or a different register to set it high.
1112 * Otherwise locking is needed, so there may be little value to inlining.
1113 *
1114 *------------------------------------------------------------------------
1115 *
1116 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1117 * have requested the GPIO. That can include implicit requesting by
1118 * a direction setting call. Marking a gpio as requested locks its chip
1119 * in memory, guaranteeing that these table lookups need no more locking
1120 * and that gpiochip_remove() will fail.
1121 *
1122 * REVISIT when debugging, consider adding some instrumentation to ensure
1123 * that the GPIO was actually requested.
1124 */
1125
Alexandre Courbot23600962014-03-11 15:52:09 +09001126static bool _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001127{
1128 struct gpio_chip *chip;
Alexandre Courbot23600962014-03-11 15:52:09 +09001129 bool value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001130 int offset;
David Brownelld2876d02008-02-04 22:28:20 -08001131
Alexandre Courbot372e7222013-02-03 01:29:29 +09001132 chip = desc->chip;
1133 offset = gpio_chip_hwgpio(desc);
Alexandre Courbot23600962014-03-11 15:52:09 +09001134 value = chip->get ? chip->get(chip, offset) : false;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001135 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001136 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001137}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001138
David Brownelld2876d02008-02-04 22:28:20 -08001139/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001140 * gpiod_get_raw_value() - return a gpio's raw value
1141 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08001142 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001143 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1144 * its ACTIVE_LOW status.
1145 *
1146 * This function should be called from contexts where we cannot sleep, and will
1147 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001148 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001149int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001150{
David Brownelld2876d02008-02-04 22:28:20 -08001151 if (!desc)
1152 return 0;
David Brownelld2876d02008-02-04 22:28:20 -08001153 /* Should be using gpio_get_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001154 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001155 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001156}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001157EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001158
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001159/**
1160 * gpiod_get_value() - return a gpio's value
1161 * @desc: gpio whose value will be returned
1162 *
1163 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1164 * account.
1165 *
1166 * This function should be called from contexts where we cannot sleep, and will
1167 * complain if the GPIO chip functions potentially sleep.
1168 */
1169int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001170{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001171 int value;
1172 if (!desc)
1173 return 0;
1174 /* Should be using gpio_get_value_cansleep() */
1175 WARN_ON(desc->chip->can_sleep);
1176
1177 value = _gpiod_get_raw_value(desc);
1178 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1179 value = !value;
1180
1181 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001182}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001183EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08001184
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301185/*
1186 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001187 * @desc: gpio descriptor whose state need to be set.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301188 * @value: Non-zero for setting it HIGH otherise it will set to LOW.
1189 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001190static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301191{
1192 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001193 struct gpio_chip *chip = desc->chip;
1194 int offset = gpio_chip_hwgpio(desc);
1195
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301196 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001197 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301198 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001199 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301200 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001201 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301202 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001203 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301204 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001205 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301206 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001207 gpiod_err(desc,
1208 "%s: Error in set_value for open drain err %d\n",
1209 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301210}
1211
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301212/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001213 * _gpio_set_open_source_value() - Set the open source gpio's value.
1214 * @desc: gpio descriptor whose state need to be set.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301215 * @value: Non-zero for setting it HIGH otherise it will set to LOW.
1216 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001217static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301218{
1219 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001220 struct gpio_chip *chip = desc->chip;
1221 int offset = gpio_chip_hwgpio(desc);
1222
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301223 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001224 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301225 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001226 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301227 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001228 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301229 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001230 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301231 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001232 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301233 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001234 gpiod_err(desc,
1235 "%s: Error in set_value for open source err %d\n",
1236 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301237}
1238
Alexandre Courbot23600962014-03-11 15:52:09 +09001239static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08001240{
1241 struct gpio_chip *chip;
1242
Alexandre Courbot372e7222013-02-03 01:29:29 +09001243 chip = desc->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001244 trace_gpio_value(desc_to_gpio(desc), 0, value);
1245 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1246 _gpio_set_open_drain_value(desc, value);
1247 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1248 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301249 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09001250 chip->set(chip, gpio_chip_hwgpio(desc), value);
1251}
1252
David Brownelld2876d02008-02-04 22:28:20 -08001253/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001254 * gpiod_set_raw_value() - assign a gpio's raw value
1255 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08001256 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001257 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001258 * Set the raw value of the GPIO, i.e. the value of its physical line without
1259 * regard for its ACTIVE_LOW status.
1260 *
1261 * This function should be called from contexts where we cannot sleep, and will
1262 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001263 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001264void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001265{
David Brownelld2876d02008-02-04 22:28:20 -08001266 if (!desc)
1267 return;
David Brownelld2876d02008-02-04 22:28:20 -08001268 /* Should be using gpio_set_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001269 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001270 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001271}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001272EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001273
1274/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001275 * gpiod_set_value() - assign a gpio's value
1276 * @desc: gpio whose value will be assigned
1277 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001278 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001279 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1280 * account
1281 *
1282 * This function should be called from contexts where we cannot sleep, and will
1283 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001284 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001285void gpiod_set_value(struct gpio_desc *desc, int value)
1286{
1287 if (!desc)
1288 return;
1289 /* Should be using gpio_set_value_cansleep() */
1290 WARN_ON(desc->chip->can_sleep);
1291 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1292 value = !value;
1293 _gpiod_set_raw_value(desc, value);
1294}
1295EXPORT_SYMBOL_GPL(gpiod_set_value);
1296
1297/**
1298 * gpiod_cansleep() - report whether gpio value access may sleep
1299 * @desc: gpio to check
1300 *
1301 */
1302int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001303{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001304 if (!desc)
1305 return 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001306 return desc->chip->can_sleep;
1307}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001308EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001309
David Brownell0f6d5042008-10-15 22:03:14 -07001310/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001311 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1312 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07001313 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001314 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1315 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07001316 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001317int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07001318{
1319 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001320 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07001321
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001322 if (!desc)
1323 return -EINVAL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001324 chip = desc->chip;
1325 offset = gpio_chip_hwgpio(desc);
1326 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
1327}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001328EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001329
Linus Walleijd468bf92013-09-24 11:54:38 +02001330/**
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001331 * gpio_lock_as_irq() - lock a GPIO to be used as IRQ
1332 * @chip: the chip the GPIO to lock belongs to
1333 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001334 *
1335 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08001336 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08001337 */
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001338int gpio_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08001339{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001340 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001341 return -EINVAL;
1342
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001343 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) {
1344 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02001345 "%s: tried to flag a GPIO set as output for IRQ\n",
1346 __func__);
1347 return -EIO;
1348 }
1349
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001350 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001351 return 0;
1352}
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001353EXPORT_SYMBOL_GPL(gpio_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001354
Linus Walleijd468bf92013-09-24 11:54:38 +02001355/**
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001356 * gpio_unlock_as_irq() - unlock a GPIO used as IRQ
1357 * @chip: the chip the GPIO to lock belongs to
1358 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001359 *
1360 * This is used directly by GPIO drivers that want to indicate
1361 * that a certain GPIO is no longer used exclusively for IRQ.
1362 */
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001363void gpio_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02001364{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001365 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001366 return;
1367
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001368 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001369}
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001370EXPORT_SYMBOL_GPL(gpio_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001371
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001372/**
1373 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
1374 * @desc: gpio whose value will be returned
1375 *
1376 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1377 * its ACTIVE_LOW status.
1378 *
1379 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001380 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001381int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001382{
David Brownelld2876d02008-02-04 22:28:20 -08001383 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001384 if (!desc)
1385 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001386 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08001387}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001388EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001389
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001390/**
1391 * gpiod_get_value_cansleep() - return a gpio's value
1392 * @desc: gpio whose value will be returned
1393 *
1394 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1395 * account.
1396 *
1397 * This function is to be called from contexts that can sleep.
1398 */
1399int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001400{
David Brownelld2876d02008-02-04 22:28:20 -08001401 int value;
David Brownelld2876d02008-02-04 22:28:20 -08001402
1403 might_sleep_if(extra_checks);
1404 if (!desc)
1405 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001406
1407 value = _gpiod_get_raw_value(desc);
1408 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1409 value = !value;
1410
David Brownelld2876d02008-02-04 22:28:20 -08001411 return value;
1412}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001413EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001414
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001415/**
1416 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
1417 * @desc: gpio whose value will be assigned
1418 * @value: value to assign
1419 *
1420 * Set the raw value of the GPIO, i.e. the value of its physical line without
1421 * regard for its ACTIVE_LOW status.
1422 *
1423 * This function is to be called from contexts that can sleep.
1424 */
1425void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001426{
David Brownelld2876d02008-02-04 22:28:20 -08001427 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001428 if (!desc)
1429 return;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001430 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001431}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001432EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001433
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001434/**
1435 * gpiod_set_value_cansleep() - assign a gpio's value
1436 * @desc: gpio whose value will be assigned
1437 * @value: value to assign
1438 *
1439 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1440 * account
1441 *
1442 * This function is to be called from contexts that can sleep.
1443 */
1444void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001445{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001446 might_sleep_if(extra_checks);
1447 if (!desc)
1448 return;
1449
1450 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1451 value = !value;
1452 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001453}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001454EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001455
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001456/**
Alexandre Courbotad824782013-12-03 12:20:11 +09001457 * gpiod_add_lookup_table() - register GPIO device consumers
1458 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001459 */
Alexandre Courbotad824782013-12-03 12:20:11 +09001460void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001461{
1462 mutex_lock(&gpio_lookup_lock);
1463
Alexandre Courbotad824782013-12-03 12:20:11 +09001464 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001465
1466 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08001467}
1468
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001469static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001470 unsigned int idx,
1471 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001472{
Thierry Redingdd34c372014-04-23 17:28:09 +02001473 static const char *suffixes[] = { "gpios", "gpio" };
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001474 char prop_name[32]; /* 32 is max size of property name */
1475 enum of_gpio_flags of_flags;
1476 struct gpio_desc *desc;
Thierry Redingdd34c372014-04-23 17:28:09 +02001477 unsigned int i;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001478
Thierry Redingdd34c372014-04-23 17:28:09 +02001479 for (i = 0; i < ARRAY_SIZE(suffixes); i++) {
1480 if (con_id)
1481 snprintf(prop_name, 32, "%s-%s", con_id, suffixes[i]);
1482 else
1483 snprintf(prop_name, 32, "%s", suffixes[i]);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001484
Thierry Redingdd34c372014-04-23 17:28:09 +02001485 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
1486 &of_flags);
Tony Lindgren06fc3b72014-06-02 16:13:46 -07001487 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
Thierry Redingdd34c372014-04-23 17:28:09 +02001488 break;
1489 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001490
1491 if (IS_ERR(desc))
1492 return desc;
1493
1494 if (of_flags & OF_GPIO_ACTIVE_LOW)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001495 *flags |= GPIO_ACTIVE_LOW;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001496
1497 return desc;
1498}
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001499
Mika Westerberg81f59e92013-10-10 11:01:09 +03001500static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001501 unsigned int idx,
1502 enum gpio_lookup_flags *flags)
Mika Westerberg81f59e92013-10-10 11:01:09 +03001503{
Mika Westerberge01f4402013-10-10 11:01:10 +03001504 struct acpi_gpio_info info;
1505 struct gpio_desc *desc;
1506
1507 desc = acpi_get_gpiod_by_index(dev, idx, &info);
1508 if (IS_ERR(desc))
1509 return desc;
1510
1511 if (info.gpioint && info.active_low)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001512 *flags |= GPIO_ACTIVE_LOW;
Mika Westerberge01f4402013-10-10 11:01:10 +03001513
1514 return desc;
Mika Westerberg81f59e92013-10-10 11:01:09 +03001515}
1516
Alexandre Courbotad824782013-12-03 12:20:11 +09001517static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
1518{
1519 const char *dev_id = dev ? dev_name(dev) : NULL;
1520 struct gpiod_lookup_table *table;
1521
1522 mutex_lock(&gpio_lookup_lock);
1523
1524 list_for_each_entry(table, &gpio_lookup_list, list) {
1525 if (table->dev_id && dev_id) {
1526 /*
1527 * Valid strings on both ends, must be identical to have
1528 * a match
1529 */
1530 if (!strcmp(table->dev_id, dev_id))
1531 goto found;
1532 } else {
1533 /*
1534 * One of the pointers is NULL, so both must be to have
1535 * a match
1536 */
1537 if (dev_id == table->dev_id)
1538 goto found;
1539 }
1540 }
1541 table = NULL;
1542
1543found:
1544 mutex_unlock(&gpio_lookup_lock);
1545 return table;
1546}
1547
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001548static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001549 unsigned int idx,
1550 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001551{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001552 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09001553 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001554 struct gpiod_lookup *p;
1555
Alexandre Courbotad824782013-12-03 12:20:11 +09001556 table = gpiod_find_lookup_table(dev);
1557 if (!table)
1558 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001559
Alexandre Courbotad824782013-12-03 12:20:11 +09001560 for (p = &table->table[0]; p->chip_label; p++) {
1561 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001562
Alexandre Courbotad824782013-12-03 12:20:11 +09001563 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001564 if (p->idx != idx)
1565 continue;
1566
Alexandre Courbotad824782013-12-03 12:20:11 +09001567 /* If the lookup entry has a con_id, require exact match */
1568 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
1569 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001570
Alexandre Courbotad824782013-12-03 12:20:11 +09001571 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001572
Alexandre Courbotad824782013-12-03 12:20:11 +09001573 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001574 dev_err(dev, "cannot find GPIO chip %s\n",
1575 p->chip_label);
1576 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001577 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001578
Alexandre Courbotad824782013-12-03 12:20:11 +09001579 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001580 dev_err(dev,
1581 "requested GPIO %d is out of range [0..%d] for chip %s\n",
1582 idx, chip->ngpio, chip->label);
1583 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09001584 }
1585
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09001586 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09001587 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001588
1589 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09001590 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001591
1592 return desc;
1593}
1594
1595/**
Thierry Reding08791622014-04-25 16:54:22 +02001596 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09001597 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001598 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001599 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001600 *
1601 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001602 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
1603 * another IS_ERR() code if an error occured while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001604 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001605struct gpio_desc *__must_check __gpiod_get(struct device *dev, const char *con_id,
1606 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001607{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001608 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001609}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001610EXPORT_SYMBOL_GPL(__gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001611
1612/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001613 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
1614 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1615 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001616 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001617 *
1618 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
1619 * the requested function it will return NULL. This is convenient for drivers
1620 * that need to handle optional GPIOs.
1621 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001622struct gpio_desc *__must_check __gpiod_get_optional(struct device *dev,
1623 const char *con_id,
1624 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001625{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001626 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001627}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001628EXPORT_SYMBOL_GPL(__gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001629
1630/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001631 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02001632 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001633 * @con_id: function within the GPIO consumer
1634 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001635 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001636 *
1637 * This variant of gpiod_get() allows to access GPIOs other than the first
1638 * defined one for functions that define several GPIOs.
1639 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001640 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
1641 * requested function and/or index, or another IS_ERR() code if an error
1642 * occured while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001643 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001644struct gpio_desc *__must_check __gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001645 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001646 unsigned int idx,
1647 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001648{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001649 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001650 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001651 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001652
1653 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
1654
1655 /* Using device tree? */
1656 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) {
1657 dev_dbg(dev, "using device tree for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001658 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
Mika Westerberg81f59e92013-10-10 11:01:09 +03001659 } else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) {
1660 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001661 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags);
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001662 }
1663
1664 /*
1665 * Either we are not using DT or ACPI, or their lookup did not return
1666 * a result. In that case, use platform lookup as a fallback.
1667 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001668 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04001669 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001670 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001671 }
1672
1673 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02001674 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001675 return desc;
1676 }
1677
1678 status = gpiod_request(desc, con_id);
1679
1680 if (status < 0)
1681 return ERR_PTR(status);
1682
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001683 if (lookupflags & GPIO_ACTIVE_LOW)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001684 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001685 if (lookupflags & GPIO_OPEN_DRAIN)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001686 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001687 if (lookupflags & GPIO_OPEN_SOURCE)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001688 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001689
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001690 /* No particular flag request, return here... */
1691 if (flags & GPIOD_FLAGS_BIT_DIR_SET)
1692 return desc;
1693
1694 /* Process flags */
1695 if (flags & GPIOD_FLAGS_BIT_DIR_OUT)
1696 status = gpiod_direction_output(desc,
1697 flags & GPIOD_FLAGS_BIT_DIR_VAL);
1698 else
1699 status = gpiod_direction_input(desc);
1700
1701 if (status < 0) {
1702 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
1703 gpiod_put(desc);
1704 return ERR_PTR(status);
1705 }
1706
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001707 return desc;
1708}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001709EXPORT_SYMBOL_GPL(__gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001710
1711/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001712 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
1713 * function
1714 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1715 * @con_id: function within the GPIO consumer
1716 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001717 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001718 *
1719 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
1720 * specified index was assigned to the requested function it will return NULL.
1721 * This is convenient for drivers that need to handle optional GPIOs.
1722 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001723struct gpio_desc *__must_check __gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02001724 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001725 unsigned int index,
1726 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001727{
1728 struct gpio_desc *desc;
1729
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001730 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001731 if (IS_ERR(desc)) {
1732 if (PTR_ERR(desc) == -ENOENT)
1733 return NULL;
1734 }
1735
1736 return desc;
1737}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001738EXPORT_SYMBOL_GPL(__gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001739
1740/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001741 * gpiod_put - dispose of a GPIO descriptor
1742 * @desc: GPIO descriptor to dispose of
1743 *
1744 * No descriptor can be used after gpiod_put() has been called on it.
1745 */
1746void gpiod_put(struct gpio_desc *desc)
1747{
1748 gpiod_free(desc);
1749}
1750EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08001751
David Brownelld2876d02008-02-04 22:28:20 -08001752#ifdef CONFIG_DEBUG_FS
1753
1754static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1755{
1756 unsigned i;
1757 unsigned gpio = chip->base;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09001758 struct gpio_desc *gdesc = &chip->desc[0];
David Brownelld2876d02008-02-04 22:28:20 -08001759 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02001760 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08001761
1762 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
1763 if (!test_bit(FLAG_REQUESTED, &gdesc->flags))
1764 continue;
1765
Alexandre Courbot372e7222013-02-03 01:29:29 +09001766 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08001767 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001768 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
1769 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s",
David Brownelld2876d02008-02-04 22:28:20 -08001770 gpio, gdesc->label,
1771 is_out ? "out" : "in ",
1772 chip->get
1773 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02001774 : "? ",
1775 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08001776 seq_printf(s, "\n");
1777 }
1778}
1779
Thierry Redingf9c4a312012-04-12 13:26:01 +02001780static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08001781{
Grant Likely362432a2013-02-09 09:41:49 +00001782 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001783 struct gpio_chip *chip = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001784 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001785
1786 s->private = "";
1787
Grant Likely362432a2013-02-09 09:41:49 +00001788 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001789 list_for_each_entry(chip, &gpio_chips, list)
Grant Likely362432a2013-02-09 09:41:49 +00001790 if (index-- == 0) {
1791 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001792 return chip;
Grant Likely362432a2013-02-09 09:41:49 +00001793 }
1794 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001795
1796 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001797}
1798
1799static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
1800{
Grant Likely362432a2013-02-09 09:41:49 +00001801 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001802 struct gpio_chip *chip = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02001803 void *ret = NULL;
1804
Grant Likely362432a2013-02-09 09:41:49 +00001805 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09001806 if (list_is_last(&chip->list, &gpio_chips))
1807 ret = NULL;
1808 else
1809 ret = list_entry(chip->list.next, struct gpio_chip, list);
Grant Likely362432a2013-02-09 09:41:49 +00001810 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02001811
1812 s->private = "\n";
1813 ++*pos;
1814
1815 return ret;
1816}
1817
1818static void gpiolib_seq_stop(struct seq_file *s, void *v)
1819{
1820}
1821
1822static int gpiolib_seq_show(struct seq_file *s, void *v)
1823{
1824 struct gpio_chip *chip = v;
1825 struct device *dev;
1826
1827 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private,
1828 chip->base, chip->base + chip->ngpio - 1);
1829 dev = chip->dev;
1830 if (dev)
1831 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus",
1832 dev_name(dev));
1833 if (chip->label)
1834 seq_printf(s, ", %s", chip->label);
1835 if (chip->can_sleep)
1836 seq_printf(s, ", can sleep");
1837 seq_printf(s, ":\n");
1838
1839 if (chip->dbg_show)
1840 chip->dbg_show(s, chip);
1841 else
1842 gpiolib_dbg_show(s, chip);
1843
David Brownelld2876d02008-02-04 22:28:20 -08001844 return 0;
1845}
1846
Thierry Redingf9c4a312012-04-12 13:26:01 +02001847static const struct seq_operations gpiolib_seq_ops = {
1848 .start = gpiolib_seq_start,
1849 .next = gpiolib_seq_next,
1850 .stop = gpiolib_seq_stop,
1851 .show = gpiolib_seq_show,
1852};
1853
David Brownelld2876d02008-02-04 22:28:20 -08001854static int gpiolib_open(struct inode *inode, struct file *file)
1855{
Thierry Redingf9c4a312012-04-12 13:26:01 +02001856 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08001857}
1858
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001859static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02001860 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08001861 .open = gpiolib_open,
1862 .read = seq_read,
1863 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02001864 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08001865};
1866
1867static int __init gpiolib_debugfs_init(void)
1868{
1869 /* /sys/kernel/debug/gpio */
1870 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
1871 NULL, NULL, &gpiolib_operations);
1872 return 0;
1873}
1874subsys_initcall(gpiolib_debugfs_init);
1875
1876#endif /* DEBUG_FS */