blob: ac5944b4e4d88a6667d0ca6af78d34a5e539c1c5 [file] [log] [blame]
David Brownelld2876d02008-02-04 22:28:20 -08001#include <linux/kernel.h>
2#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07003#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08004#include <linux/irq.h>
5#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09006#include <linux/list.h>
David Brownelld8f388d2008-07-25 01:46:07 -07007#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/debugfs.h>
10#include <linux/seq_file.h>
11#include <linux/gpio.h>
Anton Vorontsov391c9702010-06-08 07:48:17 -060012#include <linux/of_gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070013#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010015#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090016#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020017#include <linux/gpio/machine.h>
David Brownelld2876d02008-02-04 22:28:20 -080018
Mika Westerberg664e3e52014-01-08 12:40:54 +020019#include "gpiolib.h"
20
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060021#define CREATE_TRACE_POINTS
22#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080023
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070024/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080025 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070026 * The GPIO programming interface allows for inlining speed-critical
27 * get/set operations for common cases, so that access to SOC-integrated
28 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080029 */
30
31
32/* When debugging, extend minimal trust to callers and platform code.
33 * Also emit diagnostic messages that may help initial bringup, when
34 * board setup or driver bugs are most common.
35 *
36 * Otherwise, minimize overhead in what may be bitbanging codepaths.
37 */
38#ifdef DEBUG
39#define extra_checks 1
40#else
41#define extra_checks 0
42#endif
43
44/* gpio_lock prevents conflicts during gpio_desc[] table updates.
45 * While any GPIO is requested, its gpio_chip is not removable;
46 * each GPIO's "requested" flag serves as a lock and refcount.
47 */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090048DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080049
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090050#define GPIO_OFFSET_VALID(chip, offset) (offset >= 0 && offset < chip->ngpio)
51
Alexandre Courbotbae48da2013-10-17 10:21:38 -070052static DEFINE_MUTEX(gpio_lookup_lock);
53static LIST_HEAD(gpio_lookup_list);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090054LIST_HEAD(gpio_chips);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +020055
David Brownelld2876d02008-02-04 22:28:20 -080056static inline void desc_set_label(struct gpio_desc *d, const char *label)
57{
David Brownelld2876d02008-02-04 22:28:20 -080058 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080059}
60
Alexandre Courbot372e7222013-02-03 01:29:29 +090061/**
62 * Convert a GPIO number to its descriptor
63 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070064struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +090065{
Alexandre Courbot14e85c02014-11-19 16:51:27 +090066 struct gpio_chip *chip;
67 unsigned long flags;
68
69 spin_lock_irqsave(&gpio_lock, flags);
70
71 list_for_each_entry(chip, &gpio_chips, list) {
72 if (chip->base <= gpio && chip->base + chip->ngpio > gpio) {
73 spin_unlock_irqrestore(&gpio_lock, flags);
74 return &chip->desc[gpio - chip->base];
75 }
76 }
77
78 spin_unlock_irqrestore(&gpio_lock, flags);
79
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +090080 if (!gpio_is_valid(gpio))
81 WARN(1, "invalid GPIO %d\n", gpio);
82
Alexandre Courbot14e85c02014-11-19 16:51:27 +090083 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +090084}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070085EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +090086
87/**
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090088 * Get the GPIO descriptor corresponding to the given hw number for this chip.
Linus Walleijd468bf92013-09-24 11:54:38 +020089 */
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090090struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip,
91 u16 hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +020092{
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090093 if (hwnum >= chip->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +090094 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +020095
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +090096 return &chip->desc[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +020097}
Alexandre Courbot372e7222013-02-03 01:29:29 +090098
99/**
100 * Convert a GPIO descriptor to the integer namespace.
101 * This should disappear in the future but is needed since we still
102 * use GPIO numbers for error messages and sysfs nodes
103 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700104int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900105{
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900106 return desc->chip->base + (desc - &desc->chip->desc[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900107}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700108EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900109
110
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700111/**
112 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
113 * @desc: descriptor to return the chip of
114 */
115struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900116{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900117 return desc ? desc->chip : NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900118}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700119EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800120
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700121/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
122static int gpiochip_find_base(int ngpio)
123{
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900124 struct gpio_chip *chip;
125 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700126
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900127 list_for_each_entry_reverse(chip, &gpio_chips, list) {
128 /* found a free space? */
129 if (chip->base + chip->ngpio <= base)
130 break;
131 else
132 /* nope, check the space right before the chip */
133 base = chip->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700134 }
135
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900136 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700137 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900138 return base;
139 } else {
140 pr_err("%s: cannot find free range\n", __func__);
141 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700142 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700143}
144
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700145/**
146 * gpiod_get_direction - return the current direction of a GPIO
147 * @desc: GPIO to get the direction of
148 *
149 * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error.
150 *
151 * This function may sleep if gpiod_cansleep() is true.
152 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900153int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300154{
155 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900156 unsigned offset;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300157 int status = -EINVAL;
158
Alexandre Courbot372e7222013-02-03 01:29:29 +0900159 chip = gpiod_to_chip(desc);
160 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300161
162 if (!chip->get_direction)
163 return status;
164
Alexandre Courbot372e7222013-02-03 01:29:29 +0900165 status = chip->get_direction(chip, offset);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300166 if (status > 0) {
167 /* GPIOF_DIR_IN, or other positive */
168 status = 1;
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900169 clear_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300170 }
171 if (status == 0) {
172 /* GPIOF_DIR_OUT */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900173 set_bit(FLAG_IS_OUT, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300174 }
175 return status;
176}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700177EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300178
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900179/*
180 * Add a new chip to the global chips list, keeping the list of chips sorted
181 * by base order.
182 *
183 * Return -EBUSY if the new chip overlaps with some other chip's integer
184 * space.
185 */
186static int gpiochip_add_to_list(struct gpio_chip *chip)
187{
188 struct list_head *pos = &gpio_chips;
189 struct gpio_chip *_chip;
190 int err = 0;
191
192 /* find where to insert our chip */
193 list_for_each(pos, &gpio_chips) {
194 _chip = list_entry(pos, struct gpio_chip, list);
195 /* shall we insert before _chip? */
196 if (_chip->base >= chip->base + chip->ngpio)
197 break;
198 }
199
200 /* are we stepping on the chip right before? */
201 if (pos != &gpio_chips && pos->prev != &gpio_chips) {
202 _chip = list_entry(pos->prev, struct gpio_chip, list);
203 if (_chip->base + _chip->ngpio > chip->base) {
204 dev_err(chip->dev,
205 "GPIO integer space overlap, cannot add chip\n");
206 err = -EBUSY;
207 }
208 }
209
210 if (!err)
211 list_add_tail(&chip->list, pos);
212
213 return err;
214}
215
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700216/**
David Brownelld2876d02008-02-04 22:28:20 -0800217 * gpiochip_add() - register a gpio_chip
218 * @chip: the chip to register, with chip->base initialized
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900219 * Context: potentially before irqs will work
David Brownelld2876d02008-02-04 22:28:20 -0800220 *
221 * Returns a negative errno if the chip can't be registered, such as
222 * because the chip->base is invalid or already associated with a
223 * different chip. Otherwise it returns zero as a success code.
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700224 *
David Brownelld8f388d2008-07-25 01:46:07 -0700225 * When gpiochip_add() is called very early during boot, so that GPIOs
226 * can be freely used, the chip->dev device must be registered before
227 * the gpio framework's arch_initcall(). Otherwise sysfs initialization
228 * for GPIOs will fail rudely.
229 *
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700230 * If chip->base is negative, this requests dynamic assignment of
231 * a range of valid GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800232 */
233int gpiochip_add(struct gpio_chip *chip)
234{
235 unsigned long flags;
236 int status = 0;
237 unsigned id;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700238 int base = chip->base;
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900239 struct gpio_desc *descs;
David Brownelld2876d02008-02-04 22:28:20 -0800240
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900241 descs = kcalloc(chip->ngpio, sizeof(descs[0]), GFP_KERNEL);
242 if (!descs)
243 return -ENOMEM;
David Brownelld2876d02008-02-04 22:28:20 -0800244
245 spin_lock_irqsave(&gpio_lock, flags);
246
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700247 if (base < 0) {
248 base = gpiochip_find_base(chip->ngpio);
249 if (base < 0) {
250 status = base;
Johan Hovold225fce82015-01-12 17:12:25 +0100251 spin_unlock_irqrestore(&gpio_lock, flags);
252 goto err_free_descs;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700253 }
254 chip->base = base;
255 }
256
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900257 status = gpiochip_add_to_list(chip);
258
David Brownelld2876d02008-02-04 22:28:20 -0800259 if (status == 0) {
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900260 for (id = 0; id < chip->ngpio; id++) {
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900261 struct gpio_desc *desc = &descs[id];
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900262 desc->chip = chip;
David Brownelld8f388d2008-07-25 01:46:07 -0700263
264 /* REVISIT: most hardware initializes GPIOs as
265 * inputs (often with pullups enabled) so power
266 * usage is minimized. Linux code should set the
267 * gpio direction first thing; but until it does,
Mathias Nyman80b0a602012-10-24 17:25:27 +0300268 * and in case chip->get_direction is not set,
David Brownelld8f388d2008-07-25 01:46:07 -0700269 * we may expose the wrong direction in sysfs.
270 */
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900271 desc->flags = !chip->direction_input
David Brownelld8f388d2008-07-25 01:46:07 -0700272 ? (1 << FLAG_IS_OUT)
273 : 0;
David Brownelld2876d02008-02-04 22:28:20 -0800274 }
275 }
276
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900277 chip->desc = descs;
278
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800279 spin_unlock_irqrestore(&gpio_lock, flags);
280
Johan Hovold5539b3c2015-01-12 17:12:24 +0100281 if (status)
282 goto fail;
283
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530284#ifdef CONFIG_PINCTRL
285 INIT_LIST_HEAD(&chip->pin_ranges);
286#endif
287
Anton Vorontsov391c9702010-06-08 07:48:17 -0600288 of_gpiochip_add(chip);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200289 acpi_gpiochip_add(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600290
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600291 status = gpiochip_export(chip);
Johan Hovold225fce82015-01-12 17:12:25 +0100292 if (status)
293 goto err_remove_chip;
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600294
Andy Shevchenko7589e592013-12-05 11:26:23 +0200295 pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__,
Grant Likely64842aa2011-11-06 11:36:18 -0700296 chip->base, chip->base + chip->ngpio - 1,
297 chip->label ? : "generic");
298
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600299 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800300
Johan Hovold225fce82015-01-12 17:12:25 +0100301err_remove_chip:
302 acpi_gpiochip_remove(chip);
303 of_gpiochip_remove(chip);
304 spin_lock_irqsave(&gpio_lock, flags);
305 list_del(&chip->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800306 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownelld2876d02008-02-04 22:28:20 -0800307fail:
Johan Hovold225fce82015-01-12 17:12:25 +0100308err_free_descs:
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900309 kfree(descs);
310 chip->desc = NULL;
311
David Brownelld2876d02008-02-04 22:28:20 -0800312 /* failures here can mean systems won't boot... */
Andy Shevchenko7589e592013-12-05 11:26:23 +0200313 pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__,
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600314 chip->base, chip->base + chip->ngpio - 1,
315 chip->label ? : "generic");
David Brownelld2876d02008-02-04 22:28:20 -0800316 return status;
317}
318EXPORT_SYMBOL_GPL(gpiochip_add);
319
Linus Walleij14250522014-03-25 10:40:18 +0100320/* Forward-declaration */
321static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip);
322
David Brownelld2876d02008-02-04 22:28:20 -0800323/**
324 * gpiochip_remove() - unregister a gpio_chip
325 * @chip: the chip to unregister
326 *
327 * A gpio_chip with any GPIOs still requested may not be removed.
328 */
abdoulaye berthee1db1702014-07-05 18:28:50 +0200329void gpiochip_remove(struct gpio_chip *chip)
David Brownelld2876d02008-02-04 22:28:20 -0800330{
331 unsigned long flags;
David Brownelld2876d02008-02-04 22:28:20 -0800332 unsigned id;
333
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200334 acpi_gpiochip_remove(chip);
335
David Brownelld2876d02008-02-04 22:28:20 -0800336 spin_lock_irqsave(&gpio_lock, flags);
337
Linus Walleij14250522014-03-25 10:40:18 +0100338 gpiochip_irqchip_remove(chip);
Linus Walleij9ef0d6f2012-11-06 15:15:44 +0100339 gpiochip_remove_pin_ranges(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600340 of_gpiochip_remove(chip);
341
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900342 for (id = 0; id < chip->ngpio; id++) {
abdoulaye berthee1db1702014-07-05 18:28:50 +0200343 if (test_bit(FLAG_REQUESTED, &chip->desc[id].flags))
344 dev_crit(chip->dev, "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
David Brownelld2876d02008-02-04 22:28:20 -0800345 }
abdoulaye berthee1db1702014-07-05 18:28:50 +0200346 for (id = 0; id < chip->ngpio; id++)
347 chip->desc[id].chip = NULL;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900348
abdoulaye berthee1db1702014-07-05 18:28:50 +0200349 list_del(&chip->list);
David Brownelld2876d02008-02-04 22:28:20 -0800350 spin_unlock_irqrestore(&gpio_lock, flags);
abdoulaye berthee1db1702014-07-05 18:28:50 +0200351 gpiochip_unexport(chip);
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900352
353 kfree(chip->desc);
354 chip->desc = NULL;
David Brownelld2876d02008-02-04 22:28:20 -0800355}
356EXPORT_SYMBOL_GPL(gpiochip_remove);
357
Grant Likely594fa262010-06-08 07:48:16 -0600358/**
359 * gpiochip_find() - iterator for locating a specific gpio_chip
360 * @data: data to pass to match function
361 * @callback: Callback function to check gpio_chip
362 *
363 * Similar to bus_find_device. It returns a reference to a gpio_chip as
364 * determined by a user supplied @match callback. The callback should return
365 * 0 if the device doesn't match and non-zero if it does. If the callback is
366 * non-zero, this function will return to the caller and not iterate over any
367 * more gpio_chips.
368 */
Grant Likely07ce8ec2012-05-18 23:01:05 -0600369struct gpio_chip *gpiochip_find(void *data,
Grant Likely6e2cf652012-03-02 15:56:03 -0700370 int (*match)(struct gpio_chip *chip,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600371 void *data))
Grant Likely594fa262010-06-08 07:48:16 -0600372{
Alexandre Courbot125eef92013-02-03 01:29:26 +0900373 struct gpio_chip *chip;
Grant Likely594fa262010-06-08 07:48:16 -0600374 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -0600375
376 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbot125eef92013-02-03 01:29:26 +0900377 list_for_each_entry(chip, &gpio_chips, list)
378 if (match(chip, data))
Grant Likely594fa262010-06-08 07:48:16 -0600379 break;
Alexandre Courbot125eef92013-02-03 01:29:26 +0900380
381 /* No match? */
382 if (&chip->list == &gpio_chips)
383 chip = NULL;
Grant Likely594fa262010-06-08 07:48:16 -0600384 spin_unlock_irqrestore(&gpio_lock, flags);
385
386 return chip;
387}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -0600388EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -0800389
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900390static int gpiochip_match_name(struct gpio_chip *chip, void *data)
391{
392 const char *name = data;
393
394 return !strcmp(chip->label, name);
395}
396
397static struct gpio_chip *find_chip_by_name(const char *name)
398{
399 return gpiochip_find((void *)name, gpiochip_match_name);
400}
401
Linus Walleij14250522014-03-25 10:40:18 +0100402#ifdef CONFIG_GPIOLIB_IRQCHIP
403
404/*
405 * The following is irqchip helper code for gpiochips.
406 */
407
408/**
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200409 * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip
410 * @gpiochip: the gpiochip to set the irqchip chain to
411 * @irqchip: the irqchip to chain to the gpiochip
Linus Walleij14250522014-03-25 10:40:18 +0100412 * @parent_irq: the irq number corresponding to the parent IRQ for this
413 * chained irqchip
414 * @parent_handler: the parent interrupt handler for the accumulated IRQ
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200415 * coming out of the gpiochip. If the interrupt is nested rather than
416 * cascaded, pass NULL in this handler argument
Linus Walleij14250522014-03-25 10:40:18 +0100417 */
418void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip,
419 struct irq_chip *irqchip,
420 int parent_irq,
421 irq_flow_handler_t parent_handler)
422{
Linus Walleij83141a72014-09-26 13:50:12 +0200423 unsigned int offset;
424
Linus Walleij83141a72014-09-26 13:50:12 +0200425 if (!gpiochip->irqdomain) {
426 chip_err(gpiochip, "called %s before setting up irqchip\n",
427 __func__);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200428 return;
429 }
430
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200431 if (parent_handler) {
432 if (gpiochip->can_sleep) {
433 chip_err(gpiochip,
434 "you cannot have chained interrupts on a "
435 "chip that may sleep\n");
436 return;
437 }
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200438 /*
439 * The parent irqchip is already using the chip_data for this
440 * irqchip, so our callbacks simply use the handler_data.
441 */
442 irq_set_handler_data(parent_irq, gpiochip);
Linus Torvaldsea584592014-10-09 14:58:15 -0400443 irq_set_chained_handler(parent_irq, parent_handler);
Linus Walleij3f97d5fc2014-09-26 14:19:52 +0200444 }
Linus Walleij83141a72014-09-26 13:50:12 +0200445
446 /* Set the parent IRQ for all affected IRQs */
447 for (offset = 0; offset < gpiochip->ngpio; offset++)
448 irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset),
449 parent_irq);
Linus Walleij14250522014-03-25 10:40:18 +0100450}
451EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip);
452
Linus Walleije45d1c82014-04-22 14:01:46 +0200453/*
454 * This lock class tells lockdep that GPIO irqs are in a different
455 * category than their parents, so it won't report false recursion.
456 */
457static struct lock_class_key gpiochip_irq_lock_class;
458
Linus Walleij14250522014-03-25 10:40:18 +0100459/**
460 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
461 * @d: the irqdomain used by this irqchip
462 * @irq: the global irq number used by this GPIO irqchip irq
463 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
464 *
465 * This function will set up the mapping for a certain IRQ line on a
466 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
467 * stored inside the gpiochip.
468 */
469static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
470 irq_hw_number_t hwirq)
471{
472 struct gpio_chip *chip = d->host_data;
473
Linus Walleij14250522014-03-25 10:40:18 +0100474 irq_set_chip_data(irq, chip);
Linus Walleije45d1c82014-04-22 14:01:46 +0200475 irq_set_lockdep_class(irq, &gpiochip_irq_lock_class);
Linus Walleij7633fb92014-04-09 13:20:38 +0200476 irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler);
Linus Walleij1c8732b2014-04-09 13:34:39 +0200477 /* Chips that can sleep need nested thread handlers */
Octavian Purdila295494a2014-09-19 23:22:44 +0300478 if (chip->can_sleep && !chip->irq_not_threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +0200479 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +0100480#ifdef CONFIG_ARM
481 set_irq_flags(irq, IRQF_VALID);
482#else
483 irq_set_noprobe(irq);
484#endif
Linus Walleij1333b902014-04-23 16:45:12 +0200485 /*
486 * No set-up of the hardware will happen if IRQ_TYPE_NONE
487 * is passed as default type.
488 */
489 if (chip->irq_default_type != IRQ_TYPE_NONE)
490 irq_set_irq_type(irq, chip->irq_default_type);
Linus Walleij14250522014-03-25 10:40:18 +0100491
492 return 0;
493}
494
Linus Walleijc3626fd2014-03-28 20:42:01 +0100495static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
496{
Linus Walleij1c8732b2014-04-09 13:34:39 +0200497 struct gpio_chip *chip = d->host_data;
498
Linus Walleijc3626fd2014-03-28 20:42:01 +0100499#ifdef CONFIG_ARM
500 set_irq_flags(irq, 0);
501#endif
Linus Walleij1c8732b2014-04-09 13:34:39 +0200502 if (chip->can_sleep)
503 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100504 irq_set_chip_and_handler(irq, NULL, NULL);
505 irq_set_chip_data(irq, NULL);
506}
507
Linus Walleij14250522014-03-25 10:40:18 +0100508static const struct irq_domain_ops gpiochip_domain_ops = {
509 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +0100510 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +0100511 /* Virtually all GPIO irqchips are twocell:ed */
512 .xlate = irq_domain_xlate_twocell,
513};
514
515static int gpiochip_irq_reqres(struct irq_data *d)
516{
517 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
518
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900519 if (gpiochip_lock_as_irq(chip, d->hwirq)) {
Linus Walleij14250522014-03-25 10:40:18 +0100520 chip_err(chip,
521 "unable to lock HW IRQ %lu for IRQ\n",
522 d->hwirq);
523 return -EINVAL;
524 }
525 return 0;
526}
527
528static void gpiochip_irq_relres(struct irq_data *d)
529{
530 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
531
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900532 gpiochip_unlock_as_irq(chip, d->hwirq);
Linus Walleij14250522014-03-25 10:40:18 +0100533}
534
535static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset)
536{
537 return irq_find_mapping(chip->irqdomain, offset);
538}
539
540/**
541 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
542 * @gpiochip: the gpiochip to remove the irqchip from
543 *
544 * This is called only from gpiochip_remove()
545 */
546static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip)
547{
Linus Walleijc3626fd2014-03-28 20:42:01 +0100548 unsigned int offset;
549
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300550 acpi_gpiochip_free_interrupts(gpiochip);
551
Linus Walleijc3626fd2014-03-28 20:42:01 +0100552 /* Remove all IRQ mappings and delete the domain */
553 if (gpiochip->irqdomain) {
554 for (offset = 0; offset < gpiochip->ngpio; offset++)
Grygorii Strashkoe3893382014-09-25 19:09:23 +0300555 irq_dispose_mapping(
556 irq_find_mapping(gpiochip->irqdomain, offset));
Linus Walleij14250522014-03-25 10:40:18 +0100557 irq_domain_remove(gpiochip->irqdomain);
Linus Walleijc3626fd2014-03-28 20:42:01 +0100558 }
Linus Walleij14250522014-03-25 10:40:18 +0100559
560 if (gpiochip->irqchip) {
561 gpiochip->irqchip->irq_request_resources = NULL;
562 gpiochip->irqchip->irq_release_resources = NULL;
563 gpiochip->irqchip = NULL;
564 }
565}
566
567/**
568 * gpiochip_irqchip_add() - adds an irqchip to a gpiochip
569 * @gpiochip: the gpiochip to add the irqchip to
570 * @irqchip: the irqchip to add to the gpiochip
571 * @first_irq: if not dynamically assigned, the base (first) IRQ to
572 * allocate gpiochip irqs from
573 * @handler: the irq handler to use (often a predefined irq core function)
Linus Walleij1333b902014-04-23 16:45:12 +0200574 * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE
575 * to have the core avoid setting up any default type in the hardware.
Linus Walleij14250522014-03-25 10:40:18 +0100576 *
577 * This function closely associates a certain irqchip with a certain
578 * gpiochip, providing an irq domain to translate the local IRQs to
579 * global irqs in the gpiolib core, and making sure that the gpiochip
580 * is passed as chip data to all related functions. Driver callbacks
581 * need to use container_of() to get their local state containers back
582 * from the gpiochip passed as chip data. An irqdomain will be stored
583 * in the gpiochip that shall be used by the driver to handle IRQ number
584 * translation. The gpiochip will need to be initialized and registered
585 * before calling this function.
586 *
Linus Walleijc3626fd2014-03-28 20:42:01 +0100587 * This function will handle two cell:ed simple IRQs and assumes all
588 * the pins on the gpiochip can generate a unique IRQ. Everything else
Linus Walleij14250522014-03-25 10:40:18 +0100589 * need to be open coded.
590 */
591int gpiochip_irqchip_add(struct gpio_chip *gpiochip,
592 struct irq_chip *irqchip,
593 unsigned int first_irq,
594 irq_flow_handler_t handler,
595 unsigned int type)
596{
597 struct device_node *of_node;
598 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +0100599 unsigned irq_base = 0;
Linus Walleij14250522014-03-25 10:40:18 +0100600
601 if (!gpiochip || !irqchip)
602 return -EINVAL;
603
604 if (!gpiochip->dev) {
605 pr_err("missing gpiochip .dev parent pointer\n");
606 return -EINVAL;
607 }
608 of_node = gpiochip->dev->of_node;
609#ifdef CONFIG_OF_GPIO
610 /*
611 * If the gpiochip has an assigned OF node this takes precendence
612 * FIXME: get rid of this and use gpiochip->dev->of_node everywhere
613 */
614 if (gpiochip->of_node)
615 of_node = gpiochip->of_node;
616#endif
617 gpiochip->irqchip = irqchip;
618 gpiochip->irq_handler = handler;
619 gpiochip->irq_default_type = type;
620 gpiochip->to_irq = gpiochip_to_irq;
621 gpiochip->irqdomain = irq_domain_add_simple(of_node,
622 gpiochip->ngpio, first_irq,
623 &gpiochip_domain_ops, gpiochip);
624 if (!gpiochip->irqdomain) {
625 gpiochip->irqchip = NULL;
626 return -EINVAL;
627 }
628 irqchip->irq_request_resources = gpiochip_irq_reqres;
629 irqchip->irq_release_resources = gpiochip_irq_relres;
630
631 /*
632 * Prepare the mapping since the irqchip shall be orthogonal to
633 * any gpiochip calls. If the first_irq was zero, this is
634 * necessary to allocate descriptors for all IRQs.
635 */
Linus Walleijc3626fd2014-03-28 20:42:01 +0100636 for (offset = 0; offset < gpiochip->ngpio; offset++) {
637 irq_base = irq_create_mapping(gpiochip->irqdomain, offset);
638 if (offset == 0)
639 /*
640 * Store the base into the gpiochip to be used when
641 * unmapping the irqs.
642 */
643 gpiochip->irq_base = irq_base;
644 }
Linus Walleij14250522014-03-25 10:40:18 +0100645
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300646 acpi_gpiochip_request_interrupts(gpiochip);
647
Linus Walleij14250522014-03-25 10:40:18 +0100648 return 0;
649}
650EXPORT_SYMBOL_GPL(gpiochip_irqchip_add);
651
652#else /* CONFIG_GPIOLIB_IRQCHIP */
653
654static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {}
655
656#endif /* CONFIG_GPIOLIB_IRQCHIP */
657
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530658#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +0100659
Linus Walleij3f0f8672012-11-20 12:40:15 +0100660/**
Christian Ruppert586a87e2013-10-15 15:37:54 +0200661 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
662 * @chip: the gpiochip to add the range for
663 * @pinctrl: the dev_name() of the pin controller to map to
664 * @gpio_offset: the start offset in the current gpio_chip number space
665 * @pin_group: name of the pin group inside the pin controller
666 */
667int gpiochip_add_pingroup_range(struct gpio_chip *chip,
668 struct pinctrl_dev *pctldev,
669 unsigned int gpio_offset, const char *pin_group)
670{
671 struct gpio_pin_range *pin_range;
672 int ret;
673
674 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
675 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200676 chip_err(chip, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +0200677 return -ENOMEM;
678 }
679
680 /* Use local offset as range ID */
681 pin_range->range.id = gpio_offset;
682 pin_range->range.gc = chip;
683 pin_range->range.name = chip->label;
684 pin_range->range.base = chip->base + gpio_offset;
685 pin_range->pctldev = pctldev;
686
687 ret = pinctrl_get_group_pins(pctldev, pin_group,
688 &pin_range->range.pins,
689 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100690 if (ret < 0) {
691 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +0200692 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +0100693 }
Christian Ruppert586a87e2013-10-15 15:37:54 +0200694
695 pinctrl_add_gpio_range(pctldev, &pin_range->range);
696
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200697 chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n",
698 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +0200699 pinctrl_dev_get_devname(pctldev), pin_group);
700
701 list_add_tail(&pin_range->node, &chip->pin_ranges);
702
703 return 0;
704}
705EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
706
707/**
Linus Walleij3f0f8672012-11-20 12:40:15 +0100708 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
709 * @chip: the gpiochip to add the range for
710 * @pinctrl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +0100711 * @gpio_offset: the start offset in the current gpio_chip number space
712 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +0100713 * @npins: the number of pins from the offset of each pin space (GPIO and
714 * pin controller) to accumulate in this range
715 */
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100716int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +0100717 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +0100718 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530719{
720 struct gpio_pin_range *pin_range;
Axel Linb4d4b1f2012-11-21 14:33:56 +0800721 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530722
Linus Walleij3f0f8672012-11-20 12:40:15 +0100723 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530724 if (!pin_range) {
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200725 chip_err(chip, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100726 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530727 }
728
Linus Walleij3f0f8672012-11-20 12:40:15 +0100729 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +0100730 pin_range->range.id = gpio_offset;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100731 pin_range->range.gc = chip;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530732 pin_range->range.name = chip->label;
Linus Walleij316511c2012-11-21 08:48:09 +0100733 pin_range->range.base = chip->base + gpio_offset;
734 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530735 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +0100736 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530737 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +0100738 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +0800739 ret = PTR_ERR(pin_range->pctldev);
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200740 chip_err(chip, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +0100741 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +0800742 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +0100743 }
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +0200744 chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
745 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +0100746 pinctl_name,
747 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530748
749 list_add_tail(&pin_range->node, &chip->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100750
751 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530752}
Linus Walleij165adc92012-11-06 14:49:39 +0100753EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530754
Linus Walleij3f0f8672012-11-20 12:40:15 +0100755/**
756 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
757 * @chip: the chip to remove all the mappings for
758 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530759void gpiochip_remove_pin_ranges(struct gpio_chip *chip)
760{
761 struct gpio_pin_range *pin_range, *tmp;
762
763 list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) {
764 list_del(&pin_range->node);
765 pinctrl_remove_gpio_range(pin_range->pctldev,
766 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +0100767 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530768 }
769}
Linus Walleij165adc92012-11-06 14:49:39 +0100770EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
771
772#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530773
David Brownelld2876d02008-02-04 22:28:20 -0800774/* These "optional" allocation calls help prevent drivers from stomping
775 * on each other, and help provide better diagnostics in debugfs.
776 * They're called even less than the "set direction" calls.
777 */
Mika Westerberg77c2d792014-03-10 14:54:50 +0200778static int __gpiod_request(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -0800779{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200780 struct gpio_chip *chip = desc->chip;
781 int status;
David Brownelld2876d02008-02-04 22:28:20 -0800782 unsigned long flags;
783
784 spin_lock_irqsave(&gpio_lock, flags);
785
David Brownelld2876d02008-02-04 22:28:20 -0800786 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -0700787 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -0800788 */
789
790 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
791 desc_set_label(desc, label ? : "?");
792 status = 0;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700793 } else {
David Brownelld2876d02008-02-04 22:28:20 -0800794 status = -EBUSY;
Magnus Damm7460db52009-01-29 14:25:12 -0800795 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700796 }
797
798 if (chip->request) {
799 /* chip->request may sleep */
800 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900801 status = chip->request(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700802 spin_lock_irqsave(&gpio_lock, flags);
803
804 if (status < 0) {
805 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -0700806 clear_bit(FLAG_REQUESTED, &desc->flags);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300807 goto done;
David Brownell35e8bb52008-10-15 22:03:16 -0700808 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -0700809 }
Mathias Nyman80b0a602012-10-24 17:25:27 +0300810 if (chip->get_direction) {
811 /* chip->get_direction may sleep */
812 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900813 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300814 spin_lock_irqsave(&gpio_lock, flags);
815 }
David Brownelld2876d02008-02-04 22:28:20 -0800816done:
Mika Westerberg77c2d792014-03-10 14:54:50 +0200817 spin_unlock_irqrestore(&gpio_lock, flags);
818 return status;
819}
820
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900821int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200822{
823 int status = -EPROBE_DEFER;
824 struct gpio_chip *chip;
825
826 if (!desc) {
827 pr_warn("%s: invalid GPIO\n", __func__);
828 return -EINVAL;
829 }
830
831 chip = desc->chip;
832 if (!chip)
833 goto done;
834
835 if (try_module_get(chip->owner)) {
836 status = __gpiod_request(desc, label);
837 if (status < 0)
838 module_put(chip->owner);
839 }
840
841done:
David Brownelld2876d02008-02-04 22:28:20 -0800842 if (status)
Andy Shevchenko7589e592013-12-05 11:26:23 +0200843 gpiod_dbg(desc, "%s: status %d\n", __func__, status);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200844
David Brownelld2876d02008-02-04 22:28:20 -0800845 return status;
846}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900847
Mika Westerberg77c2d792014-03-10 14:54:50 +0200848static bool __gpiod_free(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800849{
Mika Westerberg77c2d792014-03-10 14:54:50 +0200850 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -0800851 unsigned long flags;
David Brownell35e8bb52008-10-15 22:03:16 -0700852 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800853
Uwe Kleine-König3d599d12008-10-15 22:03:12 -0700854 might_sleep();
855
Alexandre Courbot372e7222013-02-03 01:29:29 +0900856 gpiod_unexport(desc);
David Brownelld8f388d2008-07-25 01:46:07 -0700857
David Brownelld2876d02008-02-04 22:28:20 -0800858 spin_lock_irqsave(&gpio_lock, flags);
859
David Brownell35e8bb52008-10-15 22:03:16 -0700860 chip = desc->chip;
861 if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) {
862 if (chip->free) {
863 spin_unlock_irqrestore(&gpio_lock, flags);
David Brownell9c4ba942010-08-10 18:02:24 -0700864 might_sleep_if(chip->can_sleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900865 chip->free(chip, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -0700866 spin_lock_irqsave(&gpio_lock, flags);
867 }
David Brownelld2876d02008-02-04 22:28:20 -0800868 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -0800869 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -0700870 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +0530871 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +0530872 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200873 ret = true;
874 }
David Brownelld2876d02008-02-04 22:28:20 -0800875
876 spin_unlock_irqrestore(&gpio_lock, flags);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200877 return ret;
878}
879
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900880void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200881{
882 if (desc && __gpiod_free(desc))
883 module_put(desc->chip->owner);
884 else
885 WARN_ON(extra_checks);
David Brownelld2876d02008-02-04 22:28:20 -0800886}
Alexandre Courbot372e7222013-02-03 01:29:29 +0900887
David Brownelld2876d02008-02-04 22:28:20 -0800888/**
889 * gpiochip_is_requested - return string iff signal was requested
890 * @chip: controller managing the signal
891 * @offset: of signal within controller's 0..(ngpio - 1) range
892 *
893 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +0900894 * The string returned is the label passed to gpio_request(); if none has been
895 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -0800896 *
897 * This function is for use by GPIO controller drivers. The label can
898 * help with diagnostics, and knowing that the signal is used as a GPIO
899 * can help avoid accidentally multiplexing it to another controller.
900 */
901const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset)
902{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900903 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -0800904
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900905 if (!GPIO_OFFSET_VALID(chip, offset))
David Brownelld2876d02008-02-04 22:28:20 -0800906 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +0900907
908 desc = &chip->desc[offset];
909
Alexandre Courbot372e7222013-02-03 01:29:29 +0900910 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -0800911 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900912 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -0800913}
914EXPORT_SYMBOL_GPL(gpiochip_is_requested);
915
Mika Westerberg77c2d792014-03-10 14:54:50 +0200916/**
917 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
918 * @desc: GPIO descriptor to request
919 * @label: label for the GPIO
920 *
921 * Function allows GPIO chip drivers to request and use their own GPIO
922 * descriptors via gpiolib API. Difference to gpiod_request() is that this
923 * function will not increase reference count of the GPIO chip module. This
924 * allows the GPIO chip module to be unloaded as needed (we assume that the
925 * GPIO chip driver handles freeing the GPIOs it has requested).
926 */
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700927struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum,
928 const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +0200929{
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700930 struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum);
931 int err;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200932
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700933 if (IS_ERR(desc)) {
934 chip_err(chip, "failed to get GPIO descriptor\n");
935 return desc;
936 }
937
938 err = __gpiod_request(desc, label);
939 if (err < 0)
940 return ERR_PTR(err);
941
942 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +0200943}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700944EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +0200945
946/**
947 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
948 * @desc: GPIO descriptor to free
949 *
950 * Function frees the given GPIO requested previously with
951 * gpiochip_request_own_desc().
952 */
953void gpiochip_free_own_desc(struct gpio_desc *desc)
954{
955 if (desc)
956 __gpiod_free(desc);
957}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -0700958EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -0800959
960/* Drivers MUST set GPIO direction before making get/set calls. In
961 * some cases this is done in early boot, before IRQs are enabled.
962 *
963 * As a rule these aren't called more than once (except for drivers
964 * using the open-drain emulation idiom) so these are natural places
965 * to accumulate extra debugging checks. Note that we can't (yet)
966 * rely on gpio_request() having been called beforehand.
967 */
968
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700969/**
970 * gpiod_direction_input - set the GPIO direction to input
971 * @desc: GPIO to set to input
972 *
973 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
974 * be called safely on it.
975 *
976 * Return 0 in case of success, else an error code.
977 */
978int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -0800979{
David Brownelld2876d02008-02-04 22:28:20 -0800980 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -0800981 int status = -EINVAL;
982
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200983 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +0900984 pr_warn("%s: invalid GPIO\n", __func__);
985 return -EINVAL;
986 }
987
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200988 chip = desc->chip;
989 if (!chip->get || !chip->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +0100990 gpiod_warn(desc,
991 "%s: missing get() or direction_input() operations\n",
Andy Shevchenko7589e592013-12-05 11:26:23 +0200992 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +0200993 return -EIO;
994 }
995
Alexandre Courbotd82da792014-07-22 16:17:43 +0900996 status = chip->direction_input(chip, gpio_chip_hwgpio(desc));
David Brownelld2876d02008-02-04 22:28:20 -0800997 if (status == 0)
998 clear_bit(FLAG_IS_OUT, &desc->flags);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -0600999
Alexandre Courbot372e7222013-02-03 01:29:29 +09001000 trace_gpio_direction(desc_to_gpio(desc), 1, status);
Alexandre Courbotd82da792014-07-22 16:17:43 +09001001
David Brownelld2876d02008-02-04 22:28:20 -08001002 return status;
1003}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001004EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001005
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001006static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08001007{
David Brownelld2876d02008-02-04 22:28:20 -08001008 struct gpio_chip *chip;
David Brownelld2876d02008-02-04 22:28:20 -08001009 int status = -EINVAL;
1010
Linus Walleijd468bf92013-09-24 11:54:38 +02001011 /* GPIOs used for IRQs shall not be set as output */
1012 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) {
1013 gpiod_err(desc,
1014 "%s: tried to set a GPIO tied to an IRQ as output\n",
1015 __func__);
1016 return -EIO;
1017 }
1018
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301019 /* Open drain pin should not be driven to 1 */
1020 if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001021 return gpiod_direction_input(desc);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301022
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301023 /* Open source pin should not be driven to 0 */
1024 if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags))
Alexandre Courbot372e7222013-02-03 01:29:29 +09001025 return gpiod_direction_input(desc);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301026
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001027 chip = desc->chip;
1028 if (!chip->set || !chip->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01001029 gpiod_warn(desc,
1030 "%s: missing set() or direction_output() operations\n",
1031 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001032 return -EIO;
1033 }
1034
Alexandre Courbotd82da792014-07-22 16:17:43 +09001035 status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value);
David Brownelld2876d02008-02-04 22:28:20 -08001036 if (status == 0)
1037 set_bit(FLAG_IS_OUT, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001038 trace_gpio_value(desc_to_gpio(desc), 0, value);
1039 trace_gpio_direction(desc_to_gpio(desc), 0, status);
David Brownelld2876d02008-02-04 22:28:20 -08001040 return status;
1041}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001042
1043/**
1044 * gpiod_direction_output_raw - set the GPIO direction to output
1045 * @desc: GPIO to set to output
1046 * @value: initial output value of the GPIO
1047 *
1048 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1049 * be called safely on it. The initial value of the output must be specified
1050 * as raw value on the physical line without regard for the ACTIVE_LOW status.
1051 *
1052 * Return 0 in case of success, else an error code.
1053 */
1054int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
1055{
1056 if (!desc || !desc->chip) {
1057 pr_warn("%s: invalid GPIO\n", __func__);
1058 return -EINVAL;
1059 }
1060 return _gpiod_direction_output_raw(desc, value);
1061}
1062EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
1063
1064/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05301065 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01001066 * @desc: GPIO to set to output
1067 * @value: initial output value of the GPIO
1068 *
1069 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
1070 * be called safely on it. The initial value of the output must be specified
1071 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1072 * account.
1073 *
1074 * Return 0 in case of success, else an error code.
1075 */
1076int gpiod_direction_output(struct gpio_desc *desc, int value)
1077{
1078 if (!desc || !desc->chip) {
1079 pr_warn("%s: invalid GPIO\n", __func__);
1080 return -EINVAL;
1081 }
1082 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1083 value = !value;
1084 return _gpiod_direction_output_raw(desc, value);
1085}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001086EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08001087
Felipe Balbic4b5be92010-05-26 14:42:23 -07001088/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001089 * gpiod_set_debounce - sets @debounce time for a @gpio
Felipe Balbic4b5be92010-05-26 14:42:23 -07001090 * @gpio: the gpio to set debounce time
1091 * @debounce: debounce time is microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02001092 *
1093 * returns -ENOTSUPP if the controller does not support setting
1094 * debounce.
Felipe Balbic4b5be92010-05-26 14:42:23 -07001095 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001096int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07001097{
Felipe Balbic4b5be92010-05-26 14:42:23 -07001098 struct gpio_chip *chip;
Felipe Balbic4b5be92010-05-26 14:42:23 -07001099
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001100 if (!desc || !desc->chip) {
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001101 pr_warn("%s: invalid GPIO\n", __func__);
1102 return -EINVAL;
1103 }
1104
Felipe Balbic4b5be92010-05-26 14:42:23 -07001105 chip = desc->chip;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001106 if (!chip->set || !chip->set_debounce) {
Mark Brown6424de52013-09-09 10:33:49 +01001107 gpiod_dbg(desc,
1108 "%s: missing set() or set_debounce() operations\n",
1109 __func__);
Linus Walleij65d87652013-09-04 14:17:08 +02001110 return -ENOTSUPP;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02001111 }
1112
Alexandre Courbotd82da792014-07-22 16:17:43 +09001113 return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce);
Felipe Balbic4b5be92010-05-26 14:42:23 -07001114}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001115EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001116
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001117/**
1118 * gpiod_is_active_low - test whether a GPIO is active-low or not
1119 * @desc: the gpio descriptor to test
1120 *
1121 * Returns 1 if the GPIO is active-low, 0 otherwise.
1122 */
1123int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001124{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001125 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001126}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001127EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08001128
1129/* I/O calls are only valid after configuration completed; the relevant
1130 * "is this a valid GPIO" error checks should already have been done.
1131 *
1132 * "Get" operations are often inlinable as reading a pin value register,
1133 * and masking the relevant bit in that register.
1134 *
1135 * When "set" operations are inlinable, they involve writing that mask to
1136 * one register to set a low value, or a different register to set it high.
1137 * Otherwise locking is needed, so there may be little value to inlining.
1138 *
1139 *------------------------------------------------------------------------
1140 *
1141 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
1142 * have requested the GPIO. That can include implicit requesting by
1143 * a direction setting call. Marking a gpio as requested locks its chip
1144 * in memory, guaranteeing that these table lookups need no more locking
1145 * and that gpiochip_remove() will fail.
1146 *
1147 * REVISIT when debugging, consider adding some instrumentation to ensure
1148 * that the GPIO was actually requested.
1149 */
1150
Alexandre Courbot23600962014-03-11 15:52:09 +09001151static bool _gpiod_get_raw_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001152{
1153 struct gpio_chip *chip;
Alexandre Courbot23600962014-03-11 15:52:09 +09001154 bool value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001155 int offset;
David Brownelld2876d02008-02-04 22:28:20 -08001156
Alexandre Courbot372e7222013-02-03 01:29:29 +09001157 chip = desc->chip;
1158 offset = gpio_chip_hwgpio(desc);
Alexandre Courbot23600962014-03-11 15:52:09 +09001159 value = chip->get ? chip->get(chip, offset) : false;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001160 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06001161 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001162}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001163
David Brownelld2876d02008-02-04 22:28:20 -08001164/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001165 * gpiod_get_raw_value() - return a gpio's raw value
1166 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08001167 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001168 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1169 * its ACTIVE_LOW status.
1170 *
1171 * This function should be called from contexts where we cannot sleep, and will
1172 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001173 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001174int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001175{
David Brownelld2876d02008-02-04 22:28:20 -08001176 if (!desc)
1177 return 0;
David Brownelld2876d02008-02-04 22:28:20 -08001178 /* Should be using gpio_get_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001179 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001180 return _gpiod_get_raw_value(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001181}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001182EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001183
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001184/**
1185 * gpiod_get_value() - return a gpio's value
1186 * @desc: gpio whose value will be returned
1187 *
1188 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1189 * account.
1190 *
1191 * This function should be called from contexts where we cannot sleep, and will
1192 * complain if the GPIO chip functions potentially sleep.
1193 */
1194int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001195{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001196 int value;
1197 if (!desc)
1198 return 0;
1199 /* Should be using gpio_get_value_cansleep() */
1200 WARN_ON(desc->chip->can_sleep);
1201
1202 value = _gpiod_get_raw_value(desc);
1203 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1204 value = !value;
1205
1206 return value;
David Brownelld2876d02008-02-04 22:28:20 -08001207}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001208EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08001209
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301210/*
1211 * _gpio_set_open_drain_value() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001212 * @desc: gpio descriptor whose state need to be set.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301213 * @value: Non-zero for setting it HIGH otherise it will set to LOW.
1214 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001215static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301216{
1217 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001218 struct gpio_chip *chip = desc->chip;
1219 int offset = gpio_chip_hwgpio(desc);
1220
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301221 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001222 err = chip->direction_input(chip, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301223 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001224 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301225 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001226 err = chip->direction_output(chip, offset, 0);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301227 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001228 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301229 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001230 trace_gpio_direction(desc_to_gpio(desc), value, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301231 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001232 gpiod_err(desc,
1233 "%s: Error in set_value for open drain err %d\n",
1234 __func__, err);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301235}
1236
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301237/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001238 * _gpio_set_open_source_value() - Set the open source gpio's value.
1239 * @desc: gpio descriptor whose state need to be set.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301240 * @value: Non-zero for setting it HIGH otherise it will set to LOW.
1241 */
Alexandre Courbot23600962014-03-11 15:52:09 +09001242static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301243{
1244 int err = 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001245 struct gpio_chip *chip = desc->chip;
1246 int offset = gpio_chip_hwgpio(desc);
1247
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301248 if (value) {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001249 err = chip->direction_output(chip, offset, 1);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301250 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001251 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301252 } else {
Alexandre Courbot372e7222013-02-03 01:29:29 +09001253 err = chip->direction_input(chip, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301254 if (!err)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001255 clear_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301256 }
Alexandre Courbot372e7222013-02-03 01:29:29 +09001257 trace_gpio_direction(desc_to_gpio(desc), !value, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301258 if (err < 0)
Mark Brown6424de52013-09-09 10:33:49 +01001259 gpiod_err(desc,
1260 "%s: Error in set_value for open source err %d\n",
1261 __func__, err);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301262}
1263
Alexandre Courbot23600962014-03-11 15:52:09 +09001264static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08001265{
1266 struct gpio_chip *chip;
1267
Alexandre Courbot372e7222013-02-03 01:29:29 +09001268 chip = desc->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001269 trace_gpio_value(desc_to_gpio(desc), 0, value);
1270 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
1271 _gpio_set_open_drain_value(desc, value);
1272 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
1273 _gpio_set_open_source_value(desc, value);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301274 else
Alexandre Courbot372e7222013-02-03 01:29:29 +09001275 chip->set(chip, gpio_chip_hwgpio(desc), value);
1276}
1277
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001278/*
1279 * set multiple outputs on the same chip;
1280 * use the chip's set_multiple function if available;
1281 * otherwise set the outputs sequentially;
1282 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
1283 * defines which outputs are to be changed
1284 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
1285 * defines the values the outputs specified by mask are to be set to
1286 */
1287static void gpio_chip_set_multiple(struct gpio_chip *chip,
1288 unsigned long *mask, unsigned long *bits)
1289{
1290 if (chip->set_multiple) {
1291 chip->set_multiple(chip, mask, bits);
1292 } else {
1293 int i;
1294 for (i = 0; i < chip->ngpio; i++) {
1295 if (mask[BIT_WORD(i)] == 0) {
1296 /* no more set bits in this mask word;
1297 * skip ahead to the next word */
1298 i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1;
1299 continue;
1300 }
1301 /* set outputs if the corresponding mask bit is set */
1302 if (__test_and_clear_bit(i, mask)) {
1303 chip->set(chip, i, test_bit(i, bits));
1304 }
1305 }
1306 }
1307}
1308
1309static void gpiod_set_array_priv(bool raw, bool can_sleep,
1310 unsigned int array_size,
1311 struct gpio_desc **desc_array,
1312 int *value_array)
1313{
1314 int i = 0;
1315
1316 while (i < array_size) {
1317 struct gpio_chip *chip = desc_array[i]->chip;
1318 unsigned long mask[BITS_TO_LONGS(chip->ngpio)];
1319 unsigned long bits[BITS_TO_LONGS(chip->ngpio)];
1320 int count = 0;
1321
1322 if (!can_sleep) {
1323 WARN_ON(chip->can_sleep);
1324 }
1325 memset(mask, 0, sizeof(mask));
1326 do {
1327 struct gpio_desc *desc = desc_array[i];
1328 int hwgpio = gpio_chip_hwgpio(desc);
1329 int value = value_array[i];
1330
1331 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1332 value = !value;
1333 trace_gpio_value(desc_to_gpio(desc), 0, value);
1334 /*
1335 * collect all normal outputs belonging to the same chip
1336 * open drain and open source outputs are set individually
1337 */
1338 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
1339 _gpio_set_open_drain_value(desc,value);
1340 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
1341 _gpio_set_open_source_value(desc, value);
1342 } else {
1343 __set_bit(hwgpio, mask);
1344 if (value) {
1345 __set_bit(hwgpio, bits);
1346 } else {
1347 __clear_bit(hwgpio, bits);
1348 }
1349 count++;
1350 }
1351 i++;
1352 } while ((i < array_size) && (desc_array[i]->chip == chip));
1353 /* push collected bits to outputs */
1354 if (count != 0) {
1355 gpio_chip_set_multiple(chip, mask, bits);
1356 }
1357 }
1358}
1359
David Brownelld2876d02008-02-04 22:28:20 -08001360/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001361 * gpiod_set_raw_value() - assign a gpio's raw value
1362 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08001363 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001364 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001365 * Set the raw value of the GPIO, i.e. the value of its physical line without
1366 * regard for its ACTIVE_LOW status.
1367 *
1368 * This function should be called from contexts where we cannot sleep, and will
1369 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001370 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001371void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001372{
David Brownelld2876d02008-02-04 22:28:20 -08001373 if (!desc)
1374 return;
David Brownelld2876d02008-02-04 22:28:20 -08001375 /* Should be using gpio_set_value_cansleep() */
Alexandre Courbotd8e0ac02013-09-04 20:29:25 +09001376 WARN_ON(desc->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001377 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001378}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001379EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08001380
1381/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001382 * gpiod_set_value() - assign a gpio's value
1383 * @desc: gpio whose value will be assigned
1384 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08001385 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001386 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1387 * account
1388 *
1389 * This function should be called from contexts where we cannot sleep, and will
1390 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001391 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001392void gpiod_set_value(struct gpio_desc *desc, int value)
1393{
1394 if (!desc)
1395 return;
1396 /* Should be using gpio_set_value_cansleep() */
1397 WARN_ON(desc->chip->can_sleep);
1398 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1399 value = !value;
1400 _gpiod_set_raw_value(desc, value);
1401}
1402EXPORT_SYMBOL_GPL(gpiod_set_value);
1403
1404/**
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001405 * gpiod_set_raw_array() - assign values to an array of GPIOs
1406 * @array_size: number of elements in the descriptor / value arrays
1407 * @desc_array: array of GPIO descriptors whose values will be assigned
1408 * @value_array: array of values to assign
1409 *
1410 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1411 * without regard for their ACTIVE_LOW status.
1412 *
1413 * This function should be called from contexts where we cannot sleep, and will
1414 * complain if the GPIO chip functions potentially sleep.
1415 */
1416void gpiod_set_raw_array(unsigned int array_size,
1417 struct gpio_desc **desc_array, int *value_array)
1418{
1419 if (!desc_array)
1420 return;
1421 gpiod_set_array_priv(true, false, array_size, desc_array, value_array);
1422}
1423EXPORT_SYMBOL_GPL(gpiod_set_raw_array);
1424
1425/**
1426 * gpiod_set_array() - assign values to an array of GPIOs
1427 * @array_size: number of elements in the descriptor / value arrays
1428 * @desc_array: array of GPIO descriptors whose values will be assigned
1429 * @value_array: array of values to assign
1430 *
1431 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1432 * into account.
1433 *
1434 * This function should be called from contexts where we cannot sleep, and will
1435 * complain if the GPIO chip functions potentially sleep.
1436 */
1437void gpiod_set_array(unsigned int array_size,
1438 struct gpio_desc **desc_array, int *value_array)
1439{
1440 if (!desc_array)
1441 return;
1442 gpiod_set_array_priv(false, false, array_size, desc_array, value_array);
1443}
1444EXPORT_SYMBOL_GPL(gpiod_set_array);
1445
1446/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001447 * gpiod_cansleep() - report whether gpio value access may sleep
1448 * @desc: gpio to check
1449 *
1450 */
1451int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001452{
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001453 if (!desc)
1454 return 0;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001455 return desc->chip->can_sleep;
1456}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001457EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001458
David Brownell0f6d5042008-10-15 22:03:14 -07001459/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001460 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
1461 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07001462 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001463 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
1464 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07001465 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001466int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07001467{
1468 struct gpio_chip *chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001469 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07001470
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001471 if (!desc)
1472 return -EINVAL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09001473 chip = desc->chip;
1474 offset = gpio_chip_hwgpio(desc);
1475 return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO;
1476}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001477EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001478
Linus Walleijd468bf92013-09-24 11:54:38 +02001479/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001480 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001481 * @chip: the chip the GPIO to lock belongs to
1482 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001483 *
1484 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08001485 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08001486 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001487int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08001488{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001489 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001490 return -EINVAL;
1491
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001492 if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) {
1493 chip_err(chip,
Linus Walleijd468bf92013-09-24 11:54:38 +02001494 "%s: tried to flag a GPIO set as output for IRQ\n",
1495 __func__);
1496 return -EIO;
1497 }
1498
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001499 set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001500 return 0;
1501}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001502EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001503
Linus Walleijd468bf92013-09-24 11:54:38 +02001504/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001505 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001506 * @chip: the chip the GPIO to lock belongs to
1507 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02001508 *
1509 * This is used directly by GPIO drivers that want to indicate
1510 * that a certain GPIO is no longer used exclusively for IRQ.
1511 */
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001512void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02001513{
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001514 if (offset >= chip->ngpio)
Linus Walleijd468bf92013-09-24 11:54:38 +02001515 return;
1516
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09001517 clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02001518}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09001519EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02001520
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001521/**
1522 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
1523 * @desc: gpio whose value will be returned
1524 *
1525 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
1526 * its ACTIVE_LOW status.
1527 *
1528 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08001529 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001530int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001531{
David Brownelld2876d02008-02-04 22:28:20 -08001532 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001533 if (!desc)
1534 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001535 return _gpiod_get_raw_value(desc);
David Brownelld2876d02008-02-04 22:28:20 -08001536}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001537EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001538
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001539/**
1540 * gpiod_get_value_cansleep() - return a gpio's value
1541 * @desc: gpio whose value will be returned
1542 *
1543 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
1544 * account.
1545 *
1546 * This function is to be called from contexts that can sleep.
1547 */
1548int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001549{
David Brownelld2876d02008-02-04 22:28:20 -08001550 int value;
David Brownelld2876d02008-02-04 22:28:20 -08001551
1552 might_sleep_if(extra_checks);
1553 if (!desc)
1554 return 0;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001555
1556 value = _gpiod_get_raw_value(desc);
1557 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1558 value = !value;
1559
David Brownelld2876d02008-02-04 22:28:20 -08001560 return value;
1561}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001562EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001563
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001564/**
1565 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
1566 * @desc: gpio whose value will be assigned
1567 * @value: value to assign
1568 *
1569 * Set the raw value of the GPIO, i.e. the value of its physical line without
1570 * regard for its ACTIVE_LOW status.
1571 *
1572 * This function is to be called from contexts that can sleep.
1573 */
1574void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001575{
David Brownelld2876d02008-02-04 22:28:20 -08001576 might_sleep_if(extra_checks);
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09001577 if (!desc)
1578 return;
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001579 _gpiod_set_raw_value(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001580}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001581EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001582
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001583/**
1584 * gpiod_set_value_cansleep() - assign a gpio's value
1585 * @desc: gpio whose value will be assigned
1586 * @value: value to assign
1587 *
1588 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
1589 * account
1590 *
1591 * This function is to be called from contexts that can sleep.
1592 */
1593void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09001594{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001595 might_sleep_if(extra_checks);
1596 if (!desc)
1597 return;
1598
1599 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
1600 value = !value;
1601 _gpiod_set_raw_value(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08001602}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07001603EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08001604
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001605/**
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01001606 * gpiod_set_raw_array_cansleep() - assign values to an array of GPIOs
1607 * @array_size: number of elements in the descriptor / value arrays
1608 * @desc_array: array of GPIO descriptors whose values will be assigned
1609 * @value_array: array of values to assign
1610 *
1611 * Set the raw values of the GPIOs, i.e. the values of the physical lines
1612 * without regard for their ACTIVE_LOW status.
1613 *
1614 * This function is to be called from contexts that can sleep.
1615 */
1616void gpiod_set_raw_array_cansleep(unsigned int array_size,
1617 struct gpio_desc **desc_array,
1618 int *value_array)
1619{
1620 might_sleep_if(extra_checks);
1621 if (!desc_array)
1622 return;
1623 gpiod_set_array_priv(true, true, array_size, desc_array, value_array);
1624}
1625EXPORT_SYMBOL_GPL(gpiod_set_raw_array_cansleep);
1626
1627/**
1628 * gpiod_set_array_cansleep() - assign values to an array of GPIOs
1629 * @array_size: number of elements in the descriptor / value arrays
1630 * @desc_array: array of GPIO descriptors whose values will be assigned
1631 * @value_array: array of values to assign
1632 *
1633 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
1634 * into account.
1635 *
1636 * This function is to be called from contexts that can sleep.
1637 */
1638void gpiod_set_array_cansleep(unsigned int array_size,
1639 struct gpio_desc **desc_array,
1640 int *value_array)
1641{
1642 might_sleep_if(extra_checks);
1643 if (!desc_array)
1644 return;
1645 gpiod_set_array_priv(false, true, array_size, desc_array, value_array);
1646}
1647EXPORT_SYMBOL_GPL(gpiod_set_array_cansleep);
1648
1649/**
Alexandre Courbotad824782013-12-03 12:20:11 +09001650 * gpiod_add_lookup_table() - register GPIO device consumers
1651 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001652 */
Alexandre Courbotad824782013-12-03 12:20:11 +09001653void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001654{
1655 mutex_lock(&gpio_lookup_lock);
1656
Alexandre Courbotad824782013-12-03 12:20:11 +09001657 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001658
1659 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08001660}
1661
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001662static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001663 unsigned int idx,
1664 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001665{
Thierry Redingdd34c372014-04-23 17:28:09 +02001666 static const char *suffixes[] = { "gpios", "gpio" };
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001667 char prop_name[32]; /* 32 is max size of property name */
1668 enum of_gpio_flags of_flags;
1669 struct gpio_desc *desc;
Thierry Redingdd34c372014-04-23 17:28:09 +02001670 unsigned int i;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001671
Thierry Redingdd34c372014-04-23 17:28:09 +02001672 for (i = 0; i < ARRAY_SIZE(suffixes); i++) {
1673 if (con_id)
1674 snprintf(prop_name, 32, "%s-%s", con_id, suffixes[i]);
1675 else
1676 snprintf(prop_name, 32, "%s", suffixes[i]);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001677
Thierry Redingdd34c372014-04-23 17:28:09 +02001678 desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx,
1679 &of_flags);
Tony Lindgren06fc3b72014-06-02 16:13:46 -07001680 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
Thierry Redingdd34c372014-04-23 17:28:09 +02001681 break;
1682 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001683
1684 if (IS_ERR(desc))
1685 return desc;
1686
1687 if (of_flags & OF_GPIO_ACTIVE_LOW)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001688 *flags |= GPIO_ACTIVE_LOW;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001689
1690 return desc;
1691}
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001692
Mika Westerberg81f59e92013-10-10 11:01:09 +03001693static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001694 unsigned int idx,
1695 enum gpio_lookup_flags *flags)
Mika Westerberg81f59e92013-10-10 11:01:09 +03001696{
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001697 static const char * const suffixes[] = { "gpios", "gpio" };
1698 struct acpi_device *adev = ACPI_COMPANION(dev);
Mika Westerberge01f4402013-10-10 11:01:10 +03001699 struct acpi_gpio_info info;
1700 struct gpio_desc *desc;
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001701 char propname[32];
1702 int i;
Mika Westerberge01f4402013-10-10 11:01:10 +03001703
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001704 /* Try first from _DSD */
1705 for (i = 0; i < ARRAY_SIZE(suffixes); i++) {
1706 if (con_id && strcmp(con_id, "gpios")) {
1707 snprintf(propname, sizeof(propname), "%s-%s",
1708 con_id, suffixes[i]);
1709 } else {
1710 snprintf(propname, sizeof(propname), "%s",
1711 suffixes[i]);
1712 }
Mika Westerberge01f4402013-10-10 11:01:10 +03001713
Mika Westerberg0d9a6932014-10-29 15:41:01 +01001714 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
1715 if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
1716 break;
1717 }
1718
1719 /* Then from plain _CRS GPIOs */
1720 if (IS_ERR(desc)) {
1721 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
1722 if (IS_ERR(desc))
1723 return desc;
1724 }
1725
1726 if (info.active_low)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001727 *flags |= GPIO_ACTIVE_LOW;
Mika Westerberge01f4402013-10-10 11:01:10 +03001728
1729 return desc;
Mika Westerberg81f59e92013-10-10 11:01:09 +03001730}
1731
Alexandre Courbotad824782013-12-03 12:20:11 +09001732static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
1733{
1734 const char *dev_id = dev ? dev_name(dev) : NULL;
1735 struct gpiod_lookup_table *table;
1736
1737 mutex_lock(&gpio_lookup_lock);
1738
1739 list_for_each_entry(table, &gpio_lookup_list, list) {
1740 if (table->dev_id && dev_id) {
1741 /*
1742 * Valid strings on both ends, must be identical to have
1743 * a match
1744 */
1745 if (!strcmp(table->dev_id, dev_id))
1746 goto found;
1747 } else {
1748 /*
1749 * One of the pointers is NULL, so both must be to have
1750 * a match
1751 */
1752 if (dev_id == table->dev_id)
1753 goto found;
1754 }
1755 }
1756 table = NULL;
1757
1758found:
1759 mutex_unlock(&gpio_lookup_lock);
1760 return table;
1761}
1762
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001763static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001764 unsigned int idx,
1765 enum gpio_lookup_flags *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001766{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001767 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09001768 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001769 struct gpiod_lookup *p;
1770
Alexandre Courbotad824782013-12-03 12:20:11 +09001771 table = gpiod_find_lookup_table(dev);
1772 if (!table)
1773 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001774
Alexandre Courbotad824782013-12-03 12:20:11 +09001775 for (p = &table->table[0]; p->chip_label; p++) {
1776 struct gpio_chip *chip;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001777
Alexandre Courbotad824782013-12-03 12:20:11 +09001778 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001779 if (p->idx != idx)
1780 continue;
1781
Alexandre Courbotad824782013-12-03 12:20:11 +09001782 /* If the lookup entry has a con_id, require exact match */
1783 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
1784 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001785
Alexandre Courbotad824782013-12-03 12:20:11 +09001786 chip = find_chip_by_name(p->chip_label);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001787
Alexandre Courbotad824782013-12-03 12:20:11 +09001788 if (!chip) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001789 dev_err(dev, "cannot find GPIO chip %s\n",
1790 p->chip_label);
1791 return ERR_PTR(-ENODEV);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001792 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001793
Alexandre Courbotad824782013-12-03 12:20:11 +09001794 if (chip->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001795 dev_err(dev,
1796 "requested GPIO %d is out of range [0..%d] for chip %s\n",
1797 idx, chip->ngpio, chip->label);
1798 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09001799 }
1800
Alexandre Courbotbb1e88c2014-02-09 17:43:54 +09001801 desc = gpiochip_get_desc(chip, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09001802 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001803
1804 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09001805 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001806
1807 return desc;
1808}
1809
1810/**
Thierry Reding08791622014-04-25 16:54:22 +02001811 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09001812 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001813 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001814 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001815 *
1816 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001817 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
1818 * another IS_ERR() code if an error occured while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001819 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001820struct gpio_desc *__must_check __gpiod_get(struct device *dev, const char *con_id,
1821 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001822{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001823 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001824}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001825EXPORT_SYMBOL_GPL(__gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001826
1827/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001828 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
1829 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1830 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001831 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001832 *
1833 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
1834 * the requested function it will return NULL. This is convenient for drivers
1835 * that need to handle optional GPIOs.
1836 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001837struct gpio_desc *__must_check __gpiod_get_optional(struct device *dev,
1838 const char *con_id,
1839 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001840{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001841 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001842}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001843EXPORT_SYMBOL_GPL(__gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02001844
1845/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001846 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02001847 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001848 * @con_id: function within the GPIO consumer
1849 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001850 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001851 *
1852 * This variant of gpiod_get() allows to access GPIOs other than the first
1853 * defined one for functions that define several GPIOs.
1854 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001855 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
1856 * requested function and/or index, or another IS_ERR() code if an error
1857 * occured while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001858 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001859struct gpio_desc *__must_check __gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001860 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001861 unsigned int idx,
1862 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001863{
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001864 struct gpio_desc *desc = NULL;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001865 int status;
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001866 enum gpio_lookup_flags lookupflags = 0;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001867
1868 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
1869
1870 /* Using device tree? */
1871 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) {
1872 dev_dbg(dev, "using device tree for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001873 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
Mika Westerberg81f59e92013-10-10 11:01:09 +03001874 } else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) {
1875 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001876 desc = acpi_find_gpio(dev, con_id, idx, &lookupflags);
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09001877 }
1878
1879 /*
1880 * Either we are not using DT or ACPI, or their lookup did not return
1881 * a result. In that case, use platform lookup as a fallback.
1882 */
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09001883 if (!desc || desc == ERR_PTR(-ENOENT)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04001884 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001885 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001886 }
1887
1888 if (IS_ERR(desc)) {
Heikki Krogerus351cfe02013-11-29 15:47:34 +02001889 dev_dbg(dev, "lookup for GPIO %s failed\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001890 return desc;
1891 }
1892
1893 status = gpiod_request(desc, con_id);
1894
1895 if (status < 0)
1896 return ERR_PTR(status);
1897
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001898 if (lookupflags & GPIO_ACTIVE_LOW)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001899 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001900 if (lookupflags & GPIO_OPEN_DRAIN)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001901 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001902 if (lookupflags & GPIO_OPEN_SOURCE)
Alexandre Courbot53e7cac2013-11-16 21:44:52 +09001903 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001904
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001905 /* No particular flag request, return here... */
Adrian Hunter72f908c2014-09-22 11:01:16 +03001906 if (!(flags & GPIOD_FLAGS_BIT_DIR_SET))
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001907 return desc;
1908
1909 /* Process flags */
1910 if (flags & GPIOD_FLAGS_BIT_DIR_OUT)
1911 status = gpiod_direction_output(desc,
1912 flags & GPIOD_FLAGS_BIT_DIR_VAL);
1913 else
1914 status = gpiod_direction_input(desc);
1915
1916 if (status < 0) {
1917 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
1918 gpiod_put(desc);
1919 return ERR_PTR(status);
1920 }
1921
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001922 return desc;
1923}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001924EXPORT_SYMBOL_GPL(__gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07001925
1926/**
Mika Westerberg40b73182014-10-21 13:33:59 +02001927 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
1928 * @fwnode: handle of the firmware node
1929 * @propname: name of the firmware property representing the GPIO
1930 *
1931 * This function can be used for drivers that get their configuration
1932 * from firmware.
1933 *
1934 * Function properly finds the corresponding GPIO using whatever is the
1935 * underlying firmware interface and then makes sure that the GPIO
1936 * descriptor is requested before it is returned to the caller.
1937 *
1938 * In case of error an ERR_PTR() is returned.
1939 */
1940struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
1941 const char *propname)
1942{
1943 struct gpio_desc *desc = ERR_PTR(-ENODEV);
1944 bool active_low = false;
1945 int ret;
1946
1947 if (!fwnode)
1948 return ERR_PTR(-EINVAL);
1949
1950 if (is_of_node(fwnode)) {
1951 enum of_gpio_flags flags;
1952
1953 desc = of_get_named_gpiod_flags(of_node(fwnode), propname, 0,
1954 &flags);
1955 if (!IS_ERR(desc))
1956 active_low = flags & OF_GPIO_ACTIVE_LOW;
1957 } else if (is_acpi_node(fwnode)) {
1958 struct acpi_gpio_info info;
1959
1960 desc = acpi_get_gpiod_by_index(acpi_node(fwnode), propname, 0,
1961 &info);
1962 if (!IS_ERR(desc))
1963 active_low = info.active_low;
1964 }
1965
1966 if (IS_ERR(desc))
1967 return desc;
1968
1969 ret = gpiod_request(desc, NULL);
1970 if (ret)
1971 return ERR_PTR(ret);
1972
1973 /* Only value flag can be set from both DT and ACPI is active_low */
1974 if (active_low)
1975 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
1976
1977 return desc;
1978}
1979EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
1980
1981/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02001982 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
1983 * function
1984 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1985 * @con_id: function within the GPIO consumer
1986 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001987 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02001988 *
1989 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
1990 * specified index was assigned to the requested function it will return NULL.
1991 * This is convenient for drivers that need to handle optional GPIOs.
1992 */
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001993struct gpio_desc *__must_check __gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02001994 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09001995 unsigned int index,
1996 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02001997{
1998 struct gpio_desc *desc;
1999
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002000 desc = gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002001 if (IS_ERR(desc)) {
2002 if (PTR_ERR(desc) == -ENOENT)
2003 return NULL;
2004 }
2005
2006 return desc;
2007}
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09002008EXPORT_SYMBOL_GPL(__gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02002009
2010/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07002011 * gpiod_put - dispose of a GPIO descriptor
2012 * @desc: GPIO descriptor to dispose of
2013 *
2014 * No descriptor can be used after gpiod_put() has been called on it.
2015 */
2016void gpiod_put(struct gpio_desc *desc)
2017{
2018 gpiod_free(desc);
2019}
2020EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08002021
David Brownelld2876d02008-02-04 22:28:20 -08002022#ifdef CONFIG_DEBUG_FS
2023
2024static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
2025{
2026 unsigned i;
2027 unsigned gpio = chip->base;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002028 struct gpio_desc *gdesc = &chip->desc[0];
David Brownelld2876d02008-02-04 22:28:20 -08002029 int is_out;
Linus Walleijd468bf92013-09-24 11:54:38 +02002030 int is_irq;
David Brownelld2876d02008-02-04 22:28:20 -08002031
2032 for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) {
2033 if (!test_bit(FLAG_REQUESTED, &gdesc->flags))
2034 continue;
2035
Alexandre Courbot372e7222013-02-03 01:29:29 +09002036 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08002037 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02002038 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
2039 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s",
David Brownelld2876d02008-02-04 22:28:20 -08002040 gpio, gdesc->label,
2041 is_out ? "out" : "in ",
2042 chip->get
2043 ? (chip->get(chip, i) ? "hi" : "lo")
Linus Walleijd468bf92013-09-24 11:54:38 +02002044 : "? ",
2045 is_irq ? "IRQ" : " ");
David Brownelld2876d02008-02-04 22:28:20 -08002046 seq_printf(s, "\n");
2047 }
2048}
2049
Thierry Redingf9c4a312012-04-12 13:26:01 +02002050static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08002051{
Grant Likely362432a2013-02-09 09:41:49 +00002052 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002053 struct gpio_chip *chip = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002054 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002055
2056 s->private = "";
2057
Grant Likely362432a2013-02-09 09:41:49 +00002058 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002059 list_for_each_entry(chip, &gpio_chips, list)
Grant Likely362432a2013-02-09 09:41:49 +00002060 if (index-- == 0) {
2061 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002062 return chip;
Grant Likely362432a2013-02-09 09:41:49 +00002063 }
2064 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002065
2066 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002067}
2068
2069static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
2070{
Grant Likely362432a2013-02-09 09:41:49 +00002071 unsigned long flags;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002072 struct gpio_chip *chip = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02002073 void *ret = NULL;
2074
Grant Likely362432a2013-02-09 09:41:49 +00002075 spin_lock_irqsave(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09002076 if (list_is_last(&chip->list, &gpio_chips))
2077 ret = NULL;
2078 else
2079 ret = list_entry(chip->list.next, struct gpio_chip, list);
Grant Likely362432a2013-02-09 09:41:49 +00002080 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02002081
2082 s->private = "\n";
2083 ++*pos;
2084
2085 return ret;
2086}
2087
2088static void gpiolib_seq_stop(struct seq_file *s, void *v)
2089{
2090}
2091
2092static int gpiolib_seq_show(struct seq_file *s, void *v)
2093{
2094 struct gpio_chip *chip = v;
2095 struct device *dev;
2096
2097 seq_printf(s, "%sGPIOs %d-%d", (char *)s->private,
2098 chip->base, chip->base + chip->ngpio - 1);
2099 dev = chip->dev;
2100 if (dev)
2101 seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus",
2102 dev_name(dev));
2103 if (chip->label)
2104 seq_printf(s, ", %s", chip->label);
2105 if (chip->can_sleep)
2106 seq_printf(s, ", can sleep");
2107 seq_printf(s, ":\n");
2108
2109 if (chip->dbg_show)
2110 chip->dbg_show(s, chip);
2111 else
2112 gpiolib_dbg_show(s, chip);
2113
David Brownelld2876d02008-02-04 22:28:20 -08002114 return 0;
2115}
2116
Thierry Redingf9c4a312012-04-12 13:26:01 +02002117static const struct seq_operations gpiolib_seq_ops = {
2118 .start = gpiolib_seq_start,
2119 .next = gpiolib_seq_next,
2120 .stop = gpiolib_seq_stop,
2121 .show = gpiolib_seq_show,
2122};
2123
David Brownelld2876d02008-02-04 22:28:20 -08002124static int gpiolib_open(struct inode *inode, struct file *file)
2125{
Thierry Redingf9c4a312012-04-12 13:26:01 +02002126 return seq_open(file, &gpiolib_seq_ops);
David Brownelld2876d02008-02-04 22:28:20 -08002127}
2128
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002129static const struct file_operations gpiolib_operations = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02002130 .owner = THIS_MODULE,
David Brownelld2876d02008-02-04 22:28:20 -08002131 .open = gpiolib_open,
2132 .read = seq_read,
2133 .llseek = seq_lseek,
Thierry Redingf9c4a312012-04-12 13:26:01 +02002134 .release = seq_release,
David Brownelld2876d02008-02-04 22:28:20 -08002135};
2136
2137static int __init gpiolib_debugfs_init(void)
2138{
2139 /* /sys/kernel/debug/gpio */
2140 (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO,
2141 NULL, NULL, &gpiolib_operations);
2142 return 0;
2143}
2144subsys_initcall(gpiolib_debugfs_init);
2145
2146#endif /* DEBUG_FS */