David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1 | #include <linux/kernel.h> |
| 2 | #include <linux/module.h> |
Daniel Glöckner | ff77c35 | 2009-09-22 16:46:38 -0700 | [diff] [blame] | 3 | #include <linux/interrupt.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4 | #include <linux/irq.h> |
| 5 | #include <linux/spinlock.h> |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 6 | #include <linux/list.h> |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 7 | #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 Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 12 | #include <linux/of_gpio.h> |
Daniel Glöckner | ff77c35 | 2009-09-22 16:46:38 -0700 | [diff] [blame] | 13 | #include <linux/idr.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 15 | #include <linux/acpi.h> |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 16 | #include <linux/gpio/driver.h> |
Linus Walleij | 0a6d315 | 2014-07-24 20:08:55 +0200 | [diff] [blame] | 17 | #include <linux/gpio/machine.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 18 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 19 | #include "gpiolib.h" |
| 20 | |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 21 | #define CREATE_TRACE_POINTS |
| 22 | #include <trace/events/gpio.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 23 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 24 | /* Implementation infrastructure for GPIO interfaces. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 25 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 26 | * 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 Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 29 | */ |
| 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 Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 48 | DEFINE_SPINLOCK(gpio_lock); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 49 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 50 | static struct gpio_desc gpio_desc[ARCH_NR_GPIOS]; |
| 51 | |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 52 | #define GPIO_OFFSET_VALID(chip, offset) (offset >= 0 && offset < chip->ngpio) |
| 53 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 54 | static DEFINE_MUTEX(gpio_lookup_lock); |
| 55 | static LIST_HEAD(gpio_lookup_list); |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 56 | LIST_HEAD(gpio_chips); |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 57 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 58 | static inline void desc_set_label(struct gpio_desc *d, const char *label) |
| 59 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 60 | d->label = label; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 63 | /** |
| 64 | * Convert a GPIO number to its descriptor |
| 65 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 66 | struct gpio_desc *gpio_to_desc(unsigned gpio) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 67 | { |
| 68 | if (WARN(!gpio_is_valid(gpio), "invalid GPIO %d\n", gpio)) |
| 69 | return NULL; |
| 70 | else |
| 71 | return &gpio_desc[gpio]; |
| 72 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 73 | EXPORT_SYMBOL_GPL(gpio_to_desc); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 74 | |
| 75 | /** |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 76 | * Get the GPIO descriptor corresponding to the given hw number for this chip. |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 77 | */ |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 78 | struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, |
| 79 | u16 hwnum) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 80 | { |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 81 | if (hwnum >= chip->ngpio) |
Alexandre Courbot | b7d0a28 | 2013-12-03 12:31:11 +0900 | [diff] [blame] | 82 | return ERR_PTR(-EINVAL); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 83 | |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 84 | return &chip->desc[hwnum]; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 85 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 86 | |
| 87 | /** |
| 88 | * Convert a GPIO descriptor to the integer namespace. |
| 89 | * This should disappear in the future but is needed since we still |
| 90 | * use GPIO numbers for error messages and sysfs nodes |
| 91 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 92 | int desc_to_gpio(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 93 | { |
Alexandre Courbot | 8c0fca8 | 2013-10-04 10:59:57 -0700 | [diff] [blame] | 94 | return desc - &gpio_desc[0]; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 95 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 96 | EXPORT_SYMBOL_GPL(desc_to_gpio); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 97 | |
| 98 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 99 | /** |
| 100 | * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs |
| 101 | * @desc: descriptor to return the chip of |
| 102 | */ |
| 103 | struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 104 | { |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 105 | return desc ? desc->chip : NULL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 106 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 107 | EXPORT_SYMBOL_GPL(gpiod_to_chip); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 108 | |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 109 | /* dynamic allocation of GPIOs, e.g. on a hotplugged device */ |
| 110 | static int gpiochip_find_base(int ngpio) |
| 111 | { |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 112 | struct gpio_chip *chip; |
| 113 | int base = ARCH_NR_GPIOS - ngpio; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 114 | |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 115 | list_for_each_entry_reverse(chip, &gpio_chips, list) { |
| 116 | /* found a free space? */ |
| 117 | if (chip->base + chip->ngpio <= base) |
| 118 | break; |
| 119 | else |
| 120 | /* nope, check the space right before the chip */ |
| 121 | base = chip->base - ngpio; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 124 | if (gpio_is_valid(base)) { |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 125 | pr_debug("%s: found new base at %d\n", __func__, base); |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 126 | return base; |
| 127 | } else { |
| 128 | pr_err("%s: cannot find free range\n", __func__); |
| 129 | return -ENOSPC; |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 130 | } |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 133 | /** |
| 134 | * gpiod_get_direction - return the current direction of a GPIO |
| 135 | * @desc: GPIO to get the direction of |
| 136 | * |
| 137 | * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error. |
| 138 | * |
| 139 | * This function may sleep if gpiod_cansleep() is true. |
| 140 | */ |
| 141 | int gpiod_get_direction(const struct gpio_desc *desc) |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 142 | { |
| 143 | struct gpio_chip *chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 144 | unsigned offset; |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 145 | int status = -EINVAL; |
| 146 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 147 | chip = gpiod_to_chip(desc); |
| 148 | offset = gpio_chip_hwgpio(desc); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 149 | |
| 150 | if (!chip->get_direction) |
| 151 | return status; |
| 152 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 153 | status = chip->get_direction(chip, offset); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 154 | if (status > 0) { |
| 155 | /* GPIOF_DIR_IN, or other positive */ |
| 156 | status = 1; |
Alexandre Courbot | def6343 | 2013-02-15 14:46:15 +0900 | [diff] [blame] | 157 | /* FLAG_IS_OUT is just a cache of the result of get_direction(), |
| 158 | * so it does not affect constness per se */ |
| 159 | clear_bit(FLAG_IS_OUT, &((struct gpio_desc *)desc)->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 160 | } |
| 161 | if (status == 0) { |
| 162 | /* GPIOF_DIR_OUT */ |
Alexandre Courbot | def6343 | 2013-02-15 14:46:15 +0900 | [diff] [blame] | 163 | set_bit(FLAG_IS_OUT, &((struct gpio_desc *)desc)->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 164 | } |
| 165 | return status; |
| 166 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 167 | EXPORT_SYMBOL_GPL(gpiod_get_direction); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 168 | |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 169 | /* |
| 170 | * Add a new chip to the global chips list, keeping the list of chips sorted |
| 171 | * by base order. |
| 172 | * |
| 173 | * Return -EBUSY if the new chip overlaps with some other chip's integer |
| 174 | * space. |
| 175 | */ |
| 176 | static int gpiochip_add_to_list(struct gpio_chip *chip) |
| 177 | { |
| 178 | struct list_head *pos = &gpio_chips; |
| 179 | struct gpio_chip *_chip; |
| 180 | int err = 0; |
| 181 | |
| 182 | /* find where to insert our chip */ |
| 183 | list_for_each(pos, &gpio_chips) { |
| 184 | _chip = list_entry(pos, struct gpio_chip, list); |
| 185 | /* shall we insert before _chip? */ |
| 186 | if (_chip->base >= chip->base + chip->ngpio) |
| 187 | break; |
| 188 | } |
| 189 | |
| 190 | /* are we stepping on the chip right before? */ |
| 191 | if (pos != &gpio_chips && pos->prev != &gpio_chips) { |
| 192 | _chip = list_entry(pos->prev, struct gpio_chip, list); |
| 193 | if (_chip->base + _chip->ngpio > chip->base) { |
| 194 | dev_err(chip->dev, |
| 195 | "GPIO integer space overlap, cannot add chip\n"); |
| 196 | err = -EBUSY; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | if (!err) |
| 201 | list_add_tail(&chip->list, pos); |
| 202 | |
| 203 | return err; |
| 204 | } |
| 205 | |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 206 | /** |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 207 | * gpiochip_add() - register a gpio_chip |
| 208 | * @chip: the chip to register, with chip->base initialized |
| 209 | * Context: potentially before irqs or kmalloc will work |
| 210 | * |
| 211 | * Returns a negative errno if the chip can't be registered, such as |
| 212 | * because the chip->base is invalid or already associated with a |
| 213 | * different chip. Otherwise it returns zero as a success code. |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 214 | * |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 215 | * When gpiochip_add() is called very early during boot, so that GPIOs |
| 216 | * can be freely used, the chip->dev device must be registered before |
| 217 | * the gpio framework's arch_initcall(). Otherwise sysfs initialization |
| 218 | * for GPIOs will fail rudely. |
| 219 | * |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 220 | * If chip->base is negative, this requests dynamic assignment of |
| 221 | * a range of valid GPIOs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 222 | */ |
| 223 | int gpiochip_add(struct gpio_chip *chip) |
| 224 | { |
| 225 | unsigned long flags; |
| 226 | int status = 0; |
| 227 | unsigned id; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 228 | int base = chip->base; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 229 | |
Trent Piepho | bff5fda | 2008-05-23 13:04:44 -0700 | [diff] [blame] | 230 | if ((!gpio_is_valid(base) || !gpio_is_valid(base + chip->ngpio - 1)) |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 231 | && base >= 0) { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 232 | status = -EINVAL; |
| 233 | goto fail; |
| 234 | } |
| 235 | |
| 236 | spin_lock_irqsave(&gpio_lock, flags); |
| 237 | |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 238 | if (base < 0) { |
| 239 | base = gpiochip_find_base(chip->ngpio); |
| 240 | if (base < 0) { |
| 241 | status = base; |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 242 | goto unlock; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 243 | } |
| 244 | chip->base = base; |
| 245 | } |
| 246 | |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 247 | status = gpiochip_add_to_list(chip); |
| 248 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 249 | if (status == 0) { |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 250 | chip->desc = &gpio_desc[chip->base]; |
| 251 | |
| 252 | for (id = 0; id < chip->ngpio; id++) { |
| 253 | struct gpio_desc *desc = &chip->desc[id]; |
| 254 | desc->chip = chip; |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 255 | |
| 256 | /* REVISIT: most hardware initializes GPIOs as |
| 257 | * inputs (often with pullups enabled) so power |
| 258 | * usage is minimized. Linux code should set the |
| 259 | * gpio direction first thing; but until it does, |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 260 | * and in case chip->get_direction is not set, |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 261 | * we may expose the wrong direction in sysfs. |
| 262 | */ |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 263 | desc->flags = !chip->direction_input |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 264 | ? (1 << FLAG_IS_OUT) |
| 265 | : 0; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 266 | } |
| 267 | } |
| 268 | |
Zhangfei Gao | 3bae481 | 2013-06-09 11:08:32 +0800 | [diff] [blame] | 269 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 270 | |
Johan Hovold | e1c76d6 | 2015-01-12 17:12:24 +0100 | [diff] [blame] | 271 | if (status) |
| 272 | goto fail; |
| 273 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 274 | #ifdef CONFIG_PINCTRL |
| 275 | INIT_LIST_HEAD(&chip->pin_ranges); |
| 276 | #endif |
| 277 | |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 278 | of_gpiochip_add(chip); |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 279 | acpi_gpiochip_add(chip); |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 280 | |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 281 | status = gpiochip_export(chip); |
Johan Hovold | e1c76d6 | 2015-01-12 17:12:24 +0100 | [diff] [blame] | 282 | if (status) { |
| 283 | acpi_gpiochip_remove(chip); |
| 284 | of_gpiochip_remove(chip); |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 285 | goto fail; |
Johan Hovold | e1c76d6 | 2015-01-12 17:12:24 +0100 | [diff] [blame] | 286 | } |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 287 | |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 288 | pr_debug("%s: registered GPIOs %d to %d on device: %s\n", __func__, |
Grant Likely | 64842aa | 2011-11-06 11:36:18 -0700 | [diff] [blame] | 289 | chip->base, chip->base + chip->ngpio - 1, |
| 290 | chip->label ? : "generic"); |
| 291 | |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 292 | return 0; |
Zhangfei Gao | 3bae481 | 2013-06-09 11:08:32 +0800 | [diff] [blame] | 293 | |
| 294 | unlock: |
| 295 | spin_unlock_irqrestore(&gpio_lock, flags); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 296 | fail: |
| 297 | /* failures here can mean systems won't boot... */ |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 298 | pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__, |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 299 | chip->base, chip->base + chip->ngpio - 1, |
| 300 | chip->label ? : "generic"); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 301 | return status; |
| 302 | } |
| 303 | EXPORT_SYMBOL_GPL(gpiochip_add); |
| 304 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 305 | /* Forward-declaration */ |
| 306 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip); |
| 307 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 308 | /** |
| 309 | * gpiochip_remove() - unregister a gpio_chip |
| 310 | * @chip: the chip to unregister |
| 311 | * |
| 312 | * A gpio_chip with any GPIOs still requested may not be removed. |
| 313 | */ |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 314 | void gpiochip_remove(struct gpio_chip *chip) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 315 | { |
| 316 | unsigned long flags; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 317 | unsigned id; |
| 318 | |
Johan Hovold | 2bc26f4 | 2015-01-12 17:12:27 +0100 | [diff] [blame] | 319 | gpiochip_irqchip_remove(chip); |
| 320 | |
Mika Westerberg | 6072b9dc | 2014-03-10 14:54:53 +0200 | [diff] [blame] | 321 | acpi_gpiochip_remove(chip); |
Linus Walleij | 9ef0d6f | 2012-11-06 15:15:44 +0100 | [diff] [blame] | 322 | gpiochip_remove_pin_ranges(chip); |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 323 | of_gpiochip_remove(chip); |
| 324 | |
Johan Hovold | 72d8d4d | 2015-01-12 17:12:28 +0100 | [diff] [blame] | 325 | spin_lock_irqsave(&gpio_lock, flags); |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 326 | for (id = 0; id < chip->ngpio; id++) { |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 327 | if (test_bit(FLAG_REQUESTED, &chip->desc[id].flags)) |
| 328 | dev_crit(chip->dev, "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n"); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 329 | } |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 330 | for (id = 0; id < chip->ngpio; id++) |
| 331 | chip->desc[id].chip = NULL; |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 332 | |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 333 | list_del(&chip->list); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 334 | spin_unlock_irqrestore(&gpio_lock, flags); |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 335 | gpiochip_unexport(chip); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 336 | } |
| 337 | EXPORT_SYMBOL_GPL(gpiochip_remove); |
| 338 | |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 339 | /** |
| 340 | * gpiochip_find() - iterator for locating a specific gpio_chip |
| 341 | * @data: data to pass to match function |
| 342 | * @callback: Callback function to check gpio_chip |
| 343 | * |
| 344 | * Similar to bus_find_device. It returns a reference to a gpio_chip as |
| 345 | * determined by a user supplied @match callback. The callback should return |
| 346 | * 0 if the device doesn't match and non-zero if it does. If the callback is |
| 347 | * non-zero, this function will return to the caller and not iterate over any |
| 348 | * more gpio_chips. |
| 349 | */ |
Grant Likely | 07ce8ec | 2012-05-18 23:01:05 -0600 | [diff] [blame] | 350 | struct gpio_chip *gpiochip_find(void *data, |
Grant Likely | 6e2cf65 | 2012-03-02 15:56:03 -0700 | [diff] [blame] | 351 | int (*match)(struct gpio_chip *chip, |
Grant Likely | 3d0f7cf | 2012-05-17 13:54:40 -0600 | [diff] [blame] | 352 | void *data)) |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 353 | { |
Alexandre Courbot | 125eef9 | 2013-02-03 01:29:26 +0900 | [diff] [blame] | 354 | struct gpio_chip *chip; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 355 | unsigned long flags; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 356 | |
| 357 | spin_lock_irqsave(&gpio_lock, flags); |
Alexandre Courbot | 125eef9 | 2013-02-03 01:29:26 +0900 | [diff] [blame] | 358 | list_for_each_entry(chip, &gpio_chips, list) |
| 359 | if (match(chip, data)) |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 360 | break; |
Alexandre Courbot | 125eef9 | 2013-02-03 01:29:26 +0900 | [diff] [blame] | 361 | |
| 362 | /* No match? */ |
| 363 | if (&chip->list == &gpio_chips) |
| 364 | chip = NULL; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 365 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 366 | |
| 367 | return chip; |
| 368 | } |
Jean Delvare | 8fa0c9b | 2011-05-20 00:40:18 -0600 | [diff] [blame] | 369 | EXPORT_SYMBOL_GPL(gpiochip_find); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 370 | |
Alexandre Courbot | 79697ef | 2013-11-16 21:39:32 +0900 | [diff] [blame] | 371 | static int gpiochip_match_name(struct gpio_chip *chip, void *data) |
| 372 | { |
| 373 | const char *name = data; |
| 374 | |
| 375 | return !strcmp(chip->label, name); |
| 376 | } |
| 377 | |
| 378 | static struct gpio_chip *find_chip_by_name(const char *name) |
| 379 | { |
| 380 | return gpiochip_find((void *)name, gpiochip_match_name); |
| 381 | } |
| 382 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 383 | #ifdef CONFIG_GPIOLIB_IRQCHIP |
| 384 | |
| 385 | /* |
| 386 | * The following is irqchip helper code for gpiochips. |
| 387 | */ |
| 388 | |
| 389 | /** |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 390 | * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip |
| 391 | * @gpiochip: the gpiochip to set the irqchip chain to |
| 392 | * @irqchip: the irqchip to chain to the gpiochip |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 393 | * @parent_irq: the irq number corresponding to the parent IRQ for this |
| 394 | * chained irqchip |
| 395 | * @parent_handler: the parent interrupt handler for the accumulated IRQ |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 396 | * coming out of the gpiochip. If the interrupt is nested rather than |
| 397 | * cascaded, pass NULL in this handler argument |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 398 | */ |
| 399 | void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, |
| 400 | struct irq_chip *irqchip, |
| 401 | int parent_irq, |
| 402 | irq_flow_handler_t parent_handler) |
| 403 | { |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 404 | unsigned int offset; |
| 405 | |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 406 | if (!gpiochip->irqdomain) { |
| 407 | chip_err(gpiochip, "called %s before setting up irqchip\n", |
| 408 | __func__); |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 409 | return; |
| 410 | } |
| 411 | |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 412 | if (parent_handler) { |
| 413 | if (gpiochip->can_sleep) { |
| 414 | chip_err(gpiochip, |
| 415 | "you cannot have chained interrupts on a " |
| 416 | "chip that may sleep\n"); |
| 417 | return; |
| 418 | } |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 419 | /* |
| 420 | * The parent irqchip is already using the chip_data for this |
| 421 | * irqchip, so our callbacks simply use the handler_data. |
| 422 | */ |
| 423 | irq_set_handler_data(parent_irq, gpiochip); |
Linus Torvalds | ea58459 | 2014-10-09 14:58:15 -0400 | [diff] [blame] | 424 | irq_set_chained_handler(parent_irq, parent_handler); |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 425 | } |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 426 | |
| 427 | /* Set the parent IRQ for all affected IRQs */ |
| 428 | for (offset = 0; offset < gpiochip->ngpio; offset++) |
| 429 | irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset), |
| 430 | parent_irq); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 431 | } |
| 432 | EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip); |
| 433 | |
Linus Walleij | e45d1c8 | 2014-04-22 14:01:46 +0200 | [diff] [blame] | 434 | /* |
| 435 | * This lock class tells lockdep that GPIO irqs are in a different |
| 436 | * category than their parents, so it won't report false recursion. |
| 437 | */ |
| 438 | static struct lock_class_key gpiochip_irq_lock_class; |
| 439 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 440 | /** |
| 441 | * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip |
| 442 | * @d: the irqdomain used by this irqchip |
| 443 | * @irq: the global irq number used by this GPIO irqchip irq |
| 444 | * @hwirq: the local IRQ/GPIO line offset on this gpiochip |
| 445 | * |
| 446 | * This function will set up the mapping for a certain IRQ line on a |
| 447 | * gpiochip by assigning the gpiochip as chip data, and using the irqchip |
| 448 | * stored inside the gpiochip. |
| 449 | */ |
| 450 | static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq, |
| 451 | irq_hw_number_t hwirq) |
| 452 | { |
| 453 | struct gpio_chip *chip = d->host_data; |
| 454 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 455 | irq_set_chip_data(irq, chip); |
Linus Walleij | e45d1c8 | 2014-04-22 14:01:46 +0200 | [diff] [blame] | 456 | irq_set_lockdep_class(irq, &gpiochip_irq_lock_class); |
Linus Walleij | 7633fb9 | 2014-04-09 13:20:38 +0200 | [diff] [blame] | 457 | irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler); |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 458 | /* Chips that can sleep need nested thread handlers */ |
Octavian Purdila | 295494a | 2014-09-19 23:22:44 +0300 | [diff] [blame] | 459 | if (chip->can_sleep && !chip->irq_not_threaded) |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 460 | irq_set_nested_thread(irq, 1); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 461 | #ifdef CONFIG_ARM |
| 462 | set_irq_flags(irq, IRQF_VALID); |
| 463 | #else |
| 464 | irq_set_noprobe(irq); |
| 465 | #endif |
Linus Walleij | 1333b90 | 2014-04-23 16:45:12 +0200 | [diff] [blame] | 466 | /* |
| 467 | * No set-up of the hardware will happen if IRQ_TYPE_NONE |
| 468 | * is passed as default type. |
| 469 | */ |
| 470 | if (chip->irq_default_type != IRQ_TYPE_NONE) |
| 471 | irq_set_irq_type(irq, chip->irq_default_type); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 476 | static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq) |
| 477 | { |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 478 | struct gpio_chip *chip = d->host_data; |
| 479 | |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 480 | #ifdef CONFIG_ARM |
| 481 | set_irq_flags(irq, 0); |
| 482 | #endif |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 483 | if (chip->can_sleep) |
| 484 | irq_set_nested_thread(irq, 0); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 485 | irq_set_chip_and_handler(irq, NULL, NULL); |
| 486 | irq_set_chip_data(irq, NULL); |
| 487 | } |
| 488 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 489 | static const struct irq_domain_ops gpiochip_domain_ops = { |
| 490 | .map = gpiochip_irq_map, |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 491 | .unmap = gpiochip_irq_unmap, |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 492 | /* Virtually all GPIO irqchips are twocell:ed */ |
| 493 | .xlate = irq_domain_xlate_twocell, |
| 494 | }; |
| 495 | |
| 496 | static int gpiochip_irq_reqres(struct irq_data *d) |
| 497 | { |
| 498 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 499 | |
| 500 | if (gpio_lock_as_irq(chip, d->hwirq)) { |
| 501 | chip_err(chip, |
| 502 | "unable to lock HW IRQ %lu for IRQ\n", |
| 503 | d->hwirq); |
| 504 | return -EINVAL; |
| 505 | } |
| 506 | return 0; |
| 507 | } |
| 508 | |
| 509 | static void gpiochip_irq_relres(struct irq_data *d) |
| 510 | { |
| 511 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 512 | |
| 513 | gpio_unlock_as_irq(chip, d->hwirq); |
| 514 | } |
| 515 | |
| 516 | static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset) |
| 517 | { |
| 518 | return irq_find_mapping(chip->irqdomain, offset); |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip |
| 523 | * @gpiochip: the gpiochip to remove the irqchip from |
| 524 | * |
| 525 | * This is called only from gpiochip_remove() |
| 526 | */ |
| 527 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) |
| 528 | { |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 529 | unsigned int offset; |
| 530 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 531 | acpi_gpiochip_free_interrupts(gpiochip); |
| 532 | |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 533 | /* Remove all IRQ mappings and delete the domain */ |
| 534 | if (gpiochip->irqdomain) { |
| 535 | for (offset = 0; offset < gpiochip->ngpio; offset++) |
Grygorii Strashko | e389338 | 2014-09-25 19:09:23 +0300 | [diff] [blame] | 536 | irq_dispose_mapping( |
| 537 | irq_find_mapping(gpiochip->irqdomain, offset)); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 538 | irq_domain_remove(gpiochip->irqdomain); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 539 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 540 | |
| 541 | if (gpiochip->irqchip) { |
| 542 | gpiochip->irqchip->irq_request_resources = NULL; |
| 543 | gpiochip->irqchip->irq_release_resources = NULL; |
| 544 | gpiochip->irqchip = NULL; |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | /** |
| 549 | * gpiochip_irqchip_add() - adds an irqchip to a gpiochip |
| 550 | * @gpiochip: the gpiochip to add the irqchip to |
| 551 | * @irqchip: the irqchip to add to the gpiochip |
| 552 | * @first_irq: if not dynamically assigned, the base (first) IRQ to |
| 553 | * allocate gpiochip irqs from |
| 554 | * @handler: the irq handler to use (often a predefined irq core function) |
Linus Walleij | 1333b90 | 2014-04-23 16:45:12 +0200 | [diff] [blame] | 555 | * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE |
| 556 | * to have the core avoid setting up any default type in the hardware. |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 557 | * |
| 558 | * This function closely associates a certain irqchip with a certain |
| 559 | * gpiochip, providing an irq domain to translate the local IRQs to |
| 560 | * global irqs in the gpiolib core, and making sure that the gpiochip |
| 561 | * is passed as chip data to all related functions. Driver callbacks |
| 562 | * need to use container_of() to get their local state containers back |
| 563 | * from the gpiochip passed as chip data. An irqdomain will be stored |
| 564 | * in the gpiochip that shall be used by the driver to handle IRQ number |
| 565 | * translation. The gpiochip will need to be initialized and registered |
| 566 | * before calling this function. |
| 567 | * |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 568 | * This function will handle two cell:ed simple IRQs and assumes all |
| 569 | * the pins on the gpiochip can generate a unique IRQ. Everything else |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 570 | * need to be open coded. |
| 571 | */ |
| 572 | int gpiochip_irqchip_add(struct gpio_chip *gpiochip, |
| 573 | struct irq_chip *irqchip, |
| 574 | unsigned int first_irq, |
| 575 | irq_flow_handler_t handler, |
| 576 | unsigned int type) |
| 577 | { |
| 578 | struct device_node *of_node; |
| 579 | unsigned int offset; |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 580 | unsigned irq_base = 0; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 581 | |
| 582 | if (!gpiochip || !irqchip) |
| 583 | return -EINVAL; |
| 584 | |
| 585 | if (!gpiochip->dev) { |
| 586 | pr_err("missing gpiochip .dev parent pointer\n"); |
| 587 | return -EINVAL; |
| 588 | } |
| 589 | of_node = gpiochip->dev->of_node; |
| 590 | #ifdef CONFIG_OF_GPIO |
| 591 | /* |
| 592 | * If the gpiochip has an assigned OF node this takes precendence |
| 593 | * FIXME: get rid of this and use gpiochip->dev->of_node everywhere |
| 594 | */ |
| 595 | if (gpiochip->of_node) |
| 596 | of_node = gpiochip->of_node; |
| 597 | #endif |
| 598 | gpiochip->irqchip = irqchip; |
| 599 | gpiochip->irq_handler = handler; |
| 600 | gpiochip->irq_default_type = type; |
| 601 | gpiochip->to_irq = gpiochip_to_irq; |
| 602 | gpiochip->irqdomain = irq_domain_add_simple(of_node, |
| 603 | gpiochip->ngpio, first_irq, |
| 604 | &gpiochip_domain_ops, gpiochip); |
| 605 | if (!gpiochip->irqdomain) { |
| 606 | gpiochip->irqchip = NULL; |
| 607 | return -EINVAL; |
| 608 | } |
| 609 | irqchip->irq_request_resources = gpiochip_irq_reqres; |
| 610 | irqchip->irq_release_resources = gpiochip_irq_relres; |
| 611 | |
| 612 | /* |
| 613 | * Prepare the mapping since the irqchip shall be orthogonal to |
| 614 | * any gpiochip calls. If the first_irq was zero, this is |
| 615 | * necessary to allocate descriptors for all IRQs. |
| 616 | */ |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 617 | for (offset = 0; offset < gpiochip->ngpio; offset++) { |
| 618 | irq_base = irq_create_mapping(gpiochip->irqdomain, offset); |
| 619 | if (offset == 0) |
| 620 | /* |
| 621 | * Store the base into the gpiochip to be used when |
| 622 | * unmapping the irqs. |
| 623 | */ |
| 624 | gpiochip->irq_base = irq_base; |
| 625 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 626 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 627 | acpi_gpiochip_request_interrupts(gpiochip); |
| 628 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 629 | return 0; |
| 630 | } |
| 631 | EXPORT_SYMBOL_GPL(gpiochip_irqchip_add); |
| 632 | |
| 633 | #else /* CONFIG_GPIOLIB_IRQCHIP */ |
| 634 | |
| 635 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {} |
| 636 | |
| 637 | #endif /* CONFIG_GPIOLIB_IRQCHIP */ |
| 638 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 639 | #ifdef CONFIG_PINCTRL |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 640 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 641 | /** |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 642 | * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping |
| 643 | * @chip: the gpiochip to add the range for |
| 644 | * @pinctrl: the dev_name() of the pin controller to map to |
| 645 | * @gpio_offset: the start offset in the current gpio_chip number space |
| 646 | * @pin_group: name of the pin group inside the pin controller |
| 647 | */ |
| 648 | int gpiochip_add_pingroup_range(struct gpio_chip *chip, |
| 649 | struct pinctrl_dev *pctldev, |
| 650 | unsigned int gpio_offset, const char *pin_group) |
| 651 | { |
| 652 | struct gpio_pin_range *pin_range; |
| 653 | int ret; |
| 654 | |
| 655 | pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); |
| 656 | if (!pin_range) { |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 657 | chip_err(chip, "failed to allocate pin ranges\n"); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 658 | return -ENOMEM; |
| 659 | } |
| 660 | |
| 661 | /* Use local offset as range ID */ |
| 662 | pin_range->range.id = gpio_offset; |
| 663 | pin_range->range.gc = chip; |
| 664 | pin_range->range.name = chip->label; |
| 665 | pin_range->range.base = chip->base + gpio_offset; |
| 666 | pin_range->pctldev = pctldev; |
| 667 | |
| 668 | ret = pinctrl_get_group_pins(pctldev, pin_group, |
| 669 | &pin_range->range.pins, |
| 670 | &pin_range->range.npins); |
Michal Nazarewicz | 61c6375 | 2013-11-13 21:20:39 +0100 | [diff] [blame] | 671 | if (ret < 0) { |
| 672 | kfree(pin_range); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 673 | return ret; |
Michal Nazarewicz | 61c6375 | 2013-11-13 21:20:39 +0100 | [diff] [blame] | 674 | } |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 675 | |
| 676 | pinctrl_add_gpio_range(pctldev, &pin_range->range); |
| 677 | |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 678 | chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n", |
| 679 | gpio_offset, gpio_offset + pin_range->range.npins - 1, |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 680 | pinctrl_dev_get_devname(pctldev), pin_group); |
| 681 | |
| 682 | list_add_tail(&pin_range->node, &chip->pin_ranges); |
| 683 | |
| 684 | return 0; |
| 685 | } |
| 686 | EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range); |
| 687 | |
| 688 | /** |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 689 | * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping |
| 690 | * @chip: the gpiochip to add the range for |
| 691 | * @pinctrl_name: the dev_name() of the pin controller to map to |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 692 | * @gpio_offset: the start offset in the current gpio_chip number space |
| 693 | * @pin_offset: the start offset in the pin controller number space |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 694 | * @npins: the number of pins from the offset of each pin space (GPIO and |
| 695 | * pin controller) to accumulate in this range |
| 696 | */ |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 697 | int gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 698 | unsigned int gpio_offset, unsigned int pin_offset, |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 699 | unsigned int npins) |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 700 | { |
| 701 | struct gpio_pin_range *pin_range; |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 702 | int ret; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 703 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 704 | pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 705 | if (!pin_range) { |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 706 | chip_err(chip, "failed to allocate pin ranges\n"); |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 707 | return -ENOMEM; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 708 | } |
| 709 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 710 | /* Use local offset as range ID */ |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 711 | pin_range->range.id = gpio_offset; |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 712 | pin_range->range.gc = chip; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 713 | pin_range->range.name = chip->label; |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 714 | pin_range->range.base = chip->base + gpio_offset; |
| 715 | pin_range->range.pin_base = pin_offset; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 716 | pin_range->range.npins = npins; |
Linus Walleij | 192c369 | 2012-11-20 14:03:37 +0100 | [diff] [blame] | 717 | pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name, |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 718 | &pin_range->range); |
Linus Walleij | 8f23ca1 | 2012-11-20 14:56:25 +0100 | [diff] [blame] | 719 | if (IS_ERR(pin_range->pctldev)) { |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 720 | ret = PTR_ERR(pin_range->pctldev); |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 721 | chip_err(chip, "could not create pin range\n"); |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 722 | kfree(pin_range); |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 723 | return ret; |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 724 | } |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 725 | chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n", |
| 726 | gpio_offset, gpio_offset + npins - 1, |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 727 | pinctl_name, |
| 728 | pin_offset, pin_offset + npins - 1); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 729 | |
| 730 | list_add_tail(&pin_range->node, &chip->pin_ranges); |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 731 | |
| 732 | return 0; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 733 | } |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 734 | EXPORT_SYMBOL_GPL(gpiochip_add_pin_range); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 735 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 736 | /** |
| 737 | * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings |
| 738 | * @chip: the chip to remove all the mappings for |
| 739 | */ |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 740 | void gpiochip_remove_pin_ranges(struct gpio_chip *chip) |
| 741 | { |
| 742 | struct gpio_pin_range *pin_range, *tmp; |
| 743 | |
| 744 | list_for_each_entry_safe(pin_range, tmp, &chip->pin_ranges, node) { |
| 745 | list_del(&pin_range->node); |
| 746 | pinctrl_remove_gpio_range(pin_range->pctldev, |
| 747 | &pin_range->range); |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 748 | kfree(pin_range); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 749 | } |
| 750 | } |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 751 | EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges); |
| 752 | |
| 753 | #endif /* CONFIG_PINCTRL */ |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 754 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 755 | /* These "optional" allocation calls help prevent drivers from stomping |
| 756 | * on each other, and help provide better diagnostics in debugfs. |
| 757 | * They're called even less than the "set direction" calls. |
| 758 | */ |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 759 | static int __gpiod_request(struct gpio_desc *desc, const char *label) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 760 | { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 761 | struct gpio_chip *chip = desc->chip; |
| 762 | int status; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 763 | unsigned long flags; |
| 764 | |
| 765 | spin_lock_irqsave(&gpio_lock, flags); |
| 766 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 767 | /* NOTE: gpio_request() can be called in early boot, |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 768 | * before IRQs are enabled, for non-sleeping (SOC) GPIOs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 769 | */ |
| 770 | |
| 771 | if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) { |
| 772 | desc_set_label(desc, label ? : "?"); |
| 773 | status = 0; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 774 | } else { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 775 | status = -EBUSY; |
Magnus Damm | 7460db5 | 2009-01-29 14:25:12 -0800 | [diff] [blame] | 776 | goto done; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | if (chip->request) { |
| 780 | /* chip->request may sleep */ |
| 781 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 782 | status = chip->request(chip, gpio_chip_hwgpio(desc)); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 783 | spin_lock_irqsave(&gpio_lock, flags); |
| 784 | |
| 785 | if (status < 0) { |
| 786 | desc_set_label(desc, NULL); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 787 | clear_bit(FLAG_REQUESTED, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 788 | goto done; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 789 | } |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 790 | } |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 791 | if (chip->get_direction) { |
| 792 | /* chip->get_direction may sleep */ |
| 793 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 794 | gpiod_get_direction(desc); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 795 | spin_lock_irqsave(&gpio_lock, flags); |
| 796 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 797 | done: |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 798 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 799 | return status; |
| 800 | } |
| 801 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 802 | int gpiod_request(struct gpio_desc *desc, const char *label) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 803 | { |
| 804 | int status = -EPROBE_DEFER; |
| 805 | struct gpio_chip *chip; |
| 806 | |
| 807 | if (!desc) { |
| 808 | pr_warn("%s: invalid GPIO\n", __func__); |
| 809 | return -EINVAL; |
| 810 | } |
| 811 | |
| 812 | chip = desc->chip; |
| 813 | if (!chip) |
| 814 | goto done; |
| 815 | |
| 816 | if (try_module_get(chip->owner)) { |
| 817 | status = __gpiod_request(desc, label); |
| 818 | if (status < 0) |
| 819 | module_put(chip->owner); |
| 820 | } |
| 821 | |
| 822 | done: |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 823 | if (status) |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 824 | gpiod_dbg(desc, "%s: status %d\n", __func__, status); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 825 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 826 | return status; |
| 827 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 828 | |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 829 | static bool __gpiod_free(struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 830 | { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 831 | bool ret = false; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 832 | unsigned long flags; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 833 | struct gpio_chip *chip; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 834 | |
Uwe Kleine-König | 3d599d1 | 2008-10-15 22:03:12 -0700 | [diff] [blame] | 835 | might_sleep(); |
| 836 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 837 | gpiod_unexport(desc); |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 838 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 839 | spin_lock_irqsave(&gpio_lock, flags); |
| 840 | |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 841 | chip = desc->chip; |
| 842 | if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) { |
| 843 | if (chip->free) { |
| 844 | spin_unlock_irqrestore(&gpio_lock, flags); |
David Brownell | 9c4ba94 | 2010-08-10 18:02:24 -0700 | [diff] [blame] | 845 | might_sleep_if(chip->can_sleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 846 | chip->free(chip, gpio_chip_hwgpio(desc)); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 847 | spin_lock_irqsave(&gpio_lock, flags); |
| 848 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 849 | desc_set_label(desc, NULL); |
Jani Nikula | 0769746 | 2009-12-15 16:46:20 -0800 | [diff] [blame] | 850 | clear_bit(FLAG_ACTIVE_LOW, &desc->flags); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 851 | clear_bit(FLAG_REQUESTED, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 852 | clear_bit(FLAG_OPEN_DRAIN, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 853 | clear_bit(FLAG_OPEN_SOURCE, &desc->flags); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 854 | ret = true; |
| 855 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 856 | |
| 857 | spin_unlock_irqrestore(&gpio_lock, flags); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 858 | return ret; |
| 859 | } |
| 860 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 861 | void gpiod_free(struct gpio_desc *desc) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 862 | { |
| 863 | if (desc && __gpiod_free(desc)) |
| 864 | module_put(desc->chip->owner); |
| 865 | else |
| 866 | WARN_ON(extra_checks); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 867 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 868 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 869 | /** |
| 870 | * gpiochip_is_requested - return string iff signal was requested |
| 871 | * @chip: controller managing the signal |
| 872 | * @offset: of signal within controller's 0..(ngpio - 1) range |
| 873 | * |
| 874 | * Returns NULL if the GPIO is not currently requested, else a string. |
Alexandre Courbot | 9c8318f | 2014-07-01 14:45:14 +0900 | [diff] [blame] | 875 | * The string returned is the label passed to gpio_request(); if none has been |
| 876 | * passed it is a meaningless, non-NULL constant. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 877 | * |
| 878 | * This function is for use by GPIO controller drivers. The label can |
| 879 | * help with diagnostics, and knowing that the signal is used as a GPIO |
| 880 | * can help avoid accidentally multiplexing it to another controller. |
| 881 | */ |
| 882 | const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset) |
| 883 | { |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 884 | struct gpio_desc *desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 885 | |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 886 | if (!GPIO_OFFSET_VALID(chip, offset)) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 887 | return NULL; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 888 | |
| 889 | desc = &chip->desc[offset]; |
| 890 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 891 | if (test_bit(FLAG_REQUESTED, &desc->flags) == 0) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 892 | return NULL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 893 | return desc->label; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 894 | } |
| 895 | EXPORT_SYMBOL_GPL(gpiochip_is_requested); |
| 896 | |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 897 | /** |
| 898 | * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor |
| 899 | * @desc: GPIO descriptor to request |
| 900 | * @label: label for the GPIO |
| 901 | * |
| 902 | * Function allows GPIO chip drivers to request and use their own GPIO |
| 903 | * descriptors via gpiolib API. Difference to gpiod_request() is that this |
| 904 | * function will not increase reference count of the GPIO chip module. This |
| 905 | * allows the GPIO chip module to be unloaded as needed (we assume that the |
| 906 | * GPIO chip driver handles freeing the GPIOs it has requested). |
| 907 | */ |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 908 | struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, |
| 909 | const char *label) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 910 | { |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 911 | struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum); |
| 912 | int err; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 913 | |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 914 | if (IS_ERR(desc)) { |
| 915 | chip_err(chip, "failed to get GPIO descriptor\n"); |
| 916 | return desc; |
| 917 | } |
| 918 | |
| 919 | err = __gpiod_request(desc, label); |
| 920 | if (err < 0) |
| 921 | return ERR_PTR(err); |
| 922 | |
| 923 | return desc; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 924 | } |
Guenter Roeck | f7d4ad9 | 2014-07-22 08:01:01 -0700 | [diff] [blame] | 925 | EXPORT_SYMBOL_GPL(gpiochip_request_own_desc); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 926 | |
| 927 | /** |
| 928 | * gpiochip_free_own_desc - Free GPIO requested by the chip driver |
| 929 | * @desc: GPIO descriptor to free |
| 930 | * |
| 931 | * Function frees the given GPIO requested previously with |
| 932 | * gpiochip_request_own_desc(). |
| 933 | */ |
| 934 | void gpiochip_free_own_desc(struct gpio_desc *desc) |
| 935 | { |
| 936 | if (desc) |
| 937 | __gpiod_free(desc); |
| 938 | } |
Guenter Roeck | f7d4ad9 | 2014-07-22 08:01:01 -0700 | [diff] [blame] | 939 | EXPORT_SYMBOL_GPL(gpiochip_free_own_desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 940 | |
| 941 | /* Drivers MUST set GPIO direction before making get/set calls. In |
| 942 | * some cases this is done in early boot, before IRQs are enabled. |
| 943 | * |
| 944 | * As a rule these aren't called more than once (except for drivers |
| 945 | * using the open-drain emulation idiom) so these are natural places |
| 946 | * to accumulate extra debugging checks. Note that we can't (yet) |
| 947 | * rely on gpio_request() having been called beforehand. |
| 948 | */ |
| 949 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 950 | /** |
| 951 | * gpiod_direction_input - set the GPIO direction to input |
| 952 | * @desc: GPIO to set to input |
| 953 | * |
| 954 | * Set the direction of the passed GPIO to input, such as gpiod_get_value() can |
| 955 | * be called safely on it. |
| 956 | * |
| 957 | * Return 0 in case of success, else an error code. |
| 958 | */ |
| 959 | int gpiod_direction_input(struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 960 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 961 | struct gpio_chip *chip; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 962 | int status = -EINVAL; |
| 963 | |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 964 | if (!desc || !desc->chip) { |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 965 | pr_warn("%s: invalid GPIO\n", __func__); |
| 966 | return -EINVAL; |
| 967 | } |
| 968 | |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 969 | chip = desc->chip; |
| 970 | if (!chip->get || !chip->direction_input) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 971 | gpiod_warn(desc, |
| 972 | "%s: missing get() or direction_input() operations\n", |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 973 | __func__); |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 974 | return -EIO; |
| 975 | } |
| 976 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 977 | status = chip->direction_input(chip, gpio_chip_hwgpio(desc)); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 978 | if (status == 0) |
| 979 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 980 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 981 | trace_gpio_direction(desc_to_gpio(desc), 1, status); |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 982 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 983 | return status; |
| 984 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 985 | EXPORT_SYMBOL_GPL(gpiod_direction_input); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 986 | |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 987 | static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 988 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 989 | struct gpio_chip *chip; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 990 | int status = -EINVAL; |
| 991 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 992 | /* GPIOs used for IRQs shall not be set as output */ |
| 993 | if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) { |
| 994 | gpiod_err(desc, |
| 995 | "%s: tried to set a GPIO tied to an IRQ as output\n", |
| 996 | __func__); |
| 997 | return -EIO; |
| 998 | } |
| 999 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1000 | /* Open drain pin should not be driven to 1 */ |
| 1001 | if (value && test_bit(FLAG_OPEN_DRAIN, &desc->flags)) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1002 | return gpiod_direction_input(desc); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1003 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1004 | /* Open source pin should not be driven to 0 */ |
| 1005 | if (!value && test_bit(FLAG_OPEN_SOURCE, &desc->flags)) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1006 | return gpiod_direction_input(desc); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1007 | |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 1008 | chip = desc->chip; |
| 1009 | if (!chip->set || !chip->direction_output) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 1010 | gpiod_warn(desc, |
| 1011 | "%s: missing set() or direction_output() operations\n", |
| 1012 | __func__); |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 1013 | return -EIO; |
| 1014 | } |
| 1015 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 1016 | status = chip->direction_output(chip, gpio_chip_hwgpio(desc), value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1017 | if (status == 0) |
| 1018 | set_bit(FLAG_IS_OUT, &desc->flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1019 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
| 1020 | trace_gpio_direction(desc_to_gpio(desc), 0, status); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1021 | return status; |
| 1022 | } |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 1023 | |
| 1024 | /** |
| 1025 | * gpiod_direction_output_raw - set the GPIO direction to output |
| 1026 | * @desc: GPIO to set to output |
| 1027 | * @value: initial output value of the GPIO |
| 1028 | * |
| 1029 | * Set the direction of the passed GPIO to output, such as gpiod_set_value() can |
| 1030 | * be called safely on it. The initial value of the output must be specified |
| 1031 | * as raw value on the physical line without regard for the ACTIVE_LOW status. |
| 1032 | * |
| 1033 | * Return 0 in case of success, else an error code. |
| 1034 | */ |
| 1035 | int gpiod_direction_output_raw(struct gpio_desc *desc, int value) |
| 1036 | { |
| 1037 | if (!desc || !desc->chip) { |
| 1038 | pr_warn("%s: invalid GPIO\n", __func__); |
| 1039 | return -EINVAL; |
| 1040 | } |
| 1041 | return _gpiod_direction_output_raw(desc, value); |
| 1042 | } |
| 1043 | EXPORT_SYMBOL_GPL(gpiod_direction_output_raw); |
| 1044 | |
| 1045 | /** |
Rahul Bedarkar | 90df4fe | 2014-02-08 11:55:25 +0530 | [diff] [blame] | 1046 | * gpiod_direction_output - set the GPIO direction to output |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 1047 | * @desc: GPIO to set to output |
| 1048 | * @value: initial output value of the GPIO |
| 1049 | * |
| 1050 | * Set the direction of the passed GPIO to output, such as gpiod_set_value() can |
| 1051 | * be called safely on it. The initial value of the output must be specified |
| 1052 | * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 1053 | * account. |
| 1054 | * |
| 1055 | * Return 0 in case of success, else an error code. |
| 1056 | */ |
| 1057 | int gpiod_direction_output(struct gpio_desc *desc, int value) |
| 1058 | { |
| 1059 | if (!desc || !desc->chip) { |
| 1060 | pr_warn("%s: invalid GPIO\n", __func__); |
| 1061 | return -EINVAL; |
| 1062 | } |
| 1063 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 1064 | value = !value; |
| 1065 | return _gpiod_direction_output_raw(desc, value); |
| 1066 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1067 | EXPORT_SYMBOL_GPL(gpiod_direction_output); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1068 | |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1069 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1070 | * gpiod_set_debounce - sets @debounce time for a @gpio |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1071 | * @gpio: the gpio to set debounce time |
| 1072 | * @debounce: debounce time is microseconds |
Linus Walleij | 65d8765 | 2013-09-04 14:17:08 +0200 | [diff] [blame] | 1073 | * |
| 1074 | * returns -ENOTSUPP if the controller does not support setting |
| 1075 | * debounce. |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1076 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1077 | int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce) |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1078 | { |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1079 | struct gpio_chip *chip; |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1080 | |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 1081 | if (!desc || !desc->chip) { |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 1082 | pr_warn("%s: invalid GPIO\n", __func__); |
| 1083 | return -EINVAL; |
| 1084 | } |
| 1085 | |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1086 | chip = desc->chip; |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 1087 | if (!chip->set || !chip->set_debounce) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 1088 | gpiod_dbg(desc, |
| 1089 | "%s: missing set() or set_debounce() operations\n", |
| 1090 | __func__); |
Linus Walleij | 65d8765 | 2013-09-04 14:17:08 +0200 | [diff] [blame] | 1091 | return -ENOTSUPP; |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 1092 | } |
| 1093 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 1094 | return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce); |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 1095 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1096 | EXPORT_SYMBOL_GPL(gpiod_set_debounce); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1097 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1098 | /** |
| 1099 | * gpiod_is_active_low - test whether a GPIO is active-low or not |
| 1100 | * @desc: the gpio descriptor to test |
| 1101 | * |
| 1102 | * Returns 1 if the GPIO is active-low, 0 otherwise. |
| 1103 | */ |
| 1104 | int gpiod_is_active_low(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1105 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1106 | return test_bit(FLAG_ACTIVE_LOW, &desc->flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1107 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1108 | EXPORT_SYMBOL_GPL(gpiod_is_active_low); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1109 | |
| 1110 | /* I/O calls are only valid after configuration completed; the relevant |
| 1111 | * "is this a valid GPIO" error checks should already have been done. |
| 1112 | * |
| 1113 | * "Get" operations are often inlinable as reading a pin value register, |
| 1114 | * and masking the relevant bit in that register. |
| 1115 | * |
| 1116 | * When "set" operations are inlinable, they involve writing that mask to |
| 1117 | * one register to set a low value, or a different register to set it high. |
| 1118 | * Otherwise locking is needed, so there may be little value to inlining. |
| 1119 | * |
| 1120 | *------------------------------------------------------------------------ |
| 1121 | * |
| 1122 | * IMPORTANT!!! The hot paths -- get/set value -- assume that callers |
| 1123 | * have requested the GPIO. That can include implicit requesting by |
| 1124 | * a direction setting call. Marking a gpio as requested locks its chip |
| 1125 | * in memory, guaranteeing that these table lookups need no more locking |
| 1126 | * and that gpiochip_remove() will fail. |
| 1127 | * |
| 1128 | * REVISIT when debugging, consider adding some instrumentation to ensure |
| 1129 | * that the GPIO was actually requested. |
| 1130 | */ |
| 1131 | |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 1132 | static bool _gpiod_get_raw_value(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1133 | { |
| 1134 | struct gpio_chip *chip; |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 1135 | bool value; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1136 | int offset; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1137 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1138 | chip = desc->chip; |
| 1139 | offset = gpio_chip_hwgpio(desc); |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 1140 | value = chip->get ? chip->get(chip, offset) : false; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1141 | trace_gpio_value(desc_to_gpio(desc), 1, value); |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 1142 | return value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1143 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1144 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1145 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1146 | * gpiod_get_raw_value() - return a gpio's raw value |
| 1147 | * @desc: gpio whose value will be returned |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1148 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1149 | * Return the GPIO's raw value, i.e. the value of the physical line disregarding |
| 1150 | * its ACTIVE_LOW status. |
| 1151 | * |
| 1152 | * This function should be called from contexts where we cannot sleep, and will |
| 1153 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1154 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1155 | int gpiod_get_raw_value(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1156 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1157 | if (!desc) |
| 1158 | return 0; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1159 | /* Should be using gpio_get_value_cansleep() */ |
Alexandre Courbot | d8e0ac0 | 2013-09-04 20:29:25 +0900 | [diff] [blame] | 1160 | WARN_ON(desc->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1161 | return _gpiod_get_raw_value(desc); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1162 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1163 | EXPORT_SYMBOL_GPL(gpiod_get_raw_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1164 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1165 | /** |
| 1166 | * gpiod_get_value() - return a gpio's value |
| 1167 | * @desc: gpio whose value will be returned |
| 1168 | * |
| 1169 | * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into |
| 1170 | * account. |
| 1171 | * |
| 1172 | * This function should be called from contexts where we cannot sleep, and will |
| 1173 | * complain if the GPIO chip functions potentially sleep. |
| 1174 | */ |
| 1175 | int gpiod_get_value(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1176 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1177 | int value; |
| 1178 | if (!desc) |
| 1179 | return 0; |
| 1180 | /* Should be using gpio_get_value_cansleep() */ |
| 1181 | WARN_ON(desc->chip->can_sleep); |
| 1182 | |
| 1183 | value = _gpiod_get_raw_value(desc); |
| 1184 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 1185 | value = !value; |
| 1186 | |
| 1187 | return value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1188 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1189 | EXPORT_SYMBOL_GPL(gpiod_get_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1190 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1191 | /* |
| 1192 | * _gpio_set_open_drain_value() - Set the open drain gpio's value. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1193 | * @desc: gpio descriptor whose state need to be set. |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1194 | * @value: Non-zero for setting it HIGH otherise it will set to LOW. |
| 1195 | */ |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 1196 | static void _gpio_set_open_drain_value(struct gpio_desc *desc, bool value) |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1197 | { |
| 1198 | int err = 0; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1199 | struct gpio_chip *chip = desc->chip; |
| 1200 | int offset = gpio_chip_hwgpio(desc); |
| 1201 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1202 | if (value) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1203 | err = chip->direction_input(chip, offset); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1204 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1205 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1206 | } else { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1207 | err = chip->direction_output(chip, offset, 0); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1208 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1209 | set_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1210 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1211 | trace_gpio_direction(desc_to_gpio(desc), value, err); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1212 | if (err < 0) |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 1213 | gpiod_err(desc, |
| 1214 | "%s: Error in set_value for open drain err %d\n", |
| 1215 | __func__, err); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1216 | } |
| 1217 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1218 | /* |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1219 | * _gpio_set_open_source_value() - Set the open source gpio's value. |
| 1220 | * @desc: gpio descriptor whose state need to be set. |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1221 | * @value: Non-zero for setting it HIGH otherise it will set to LOW. |
| 1222 | */ |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 1223 | static void _gpio_set_open_source_value(struct gpio_desc *desc, bool value) |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1224 | { |
| 1225 | int err = 0; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1226 | struct gpio_chip *chip = desc->chip; |
| 1227 | int offset = gpio_chip_hwgpio(desc); |
| 1228 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1229 | if (value) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1230 | err = chip->direction_output(chip, offset, 1); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1231 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1232 | set_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1233 | } else { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1234 | err = chip->direction_input(chip, offset); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1235 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1236 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1237 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1238 | trace_gpio_direction(desc_to_gpio(desc), !value, err); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1239 | if (err < 0) |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 1240 | gpiod_err(desc, |
| 1241 | "%s: Error in set_value for open source err %d\n", |
| 1242 | __func__, err); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 1243 | } |
| 1244 | |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 1245 | static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1246 | { |
| 1247 | struct gpio_chip *chip; |
| 1248 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1249 | chip = desc->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1250 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
| 1251 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) |
| 1252 | _gpio_set_open_drain_value(desc, value); |
| 1253 | else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) |
| 1254 | _gpio_set_open_source_value(desc, value); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 1255 | else |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1256 | chip->set(chip, gpio_chip_hwgpio(desc), value); |
| 1257 | } |
| 1258 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1259 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1260 | * gpiod_set_raw_value() - assign a gpio's raw value |
| 1261 | * @desc: gpio whose value will be assigned |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1262 | * @value: value to assign |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1263 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1264 | * Set the raw value of the GPIO, i.e. the value of its physical line without |
| 1265 | * regard for its ACTIVE_LOW status. |
| 1266 | * |
| 1267 | * This function should be called from contexts where we cannot sleep, and will |
| 1268 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1269 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1270 | void gpiod_set_raw_value(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1271 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1272 | if (!desc) |
| 1273 | return; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1274 | /* Should be using gpio_set_value_cansleep() */ |
Alexandre Courbot | d8e0ac0 | 2013-09-04 20:29:25 +0900 | [diff] [blame] | 1275 | WARN_ON(desc->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1276 | _gpiod_set_raw_value(desc, value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1277 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1278 | EXPORT_SYMBOL_GPL(gpiod_set_raw_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1279 | |
| 1280 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1281 | * gpiod_set_value() - assign a gpio's value |
| 1282 | * @desc: gpio whose value will be assigned |
| 1283 | * @value: value to assign |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1284 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1285 | * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 1286 | * account |
| 1287 | * |
| 1288 | * This function should be called from contexts where we cannot sleep, and will |
| 1289 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1290 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1291 | void gpiod_set_value(struct gpio_desc *desc, int value) |
| 1292 | { |
| 1293 | if (!desc) |
| 1294 | return; |
| 1295 | /* Should be using gpio_set_value_cansleep() */ |
| 1296 | WARN_ON(desc->chip->can_sleep); |
| 1297 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 1298 | value = !value; |
| 1299 | _gpiod_set_raw_value(desc, value); |
| 1300 | } |
| 1301 | EXPORT_SYMBOL_GPL(gpiod_set_value); |
| 1302 | |
| 1303 | /** |
| 1304 | * gpiod_cansleep() - report whether gpio value access may sleep |
| 1305 | * @desc: gpio to check |
| 1306 | * |
| 1307 | */ |
| 1308 | int gpiod_cansleep(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1309 | { |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 1310 | if (!desc) |
| 1311 | return 0; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1312 | return desc->chip->can_sleep; |
| 1313 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1314 | EXPORT_SYMBOL_GPL(gpiod_cansleep); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1315 | |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 1316 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1317 | * gpiod_to_irq() - return the IRQ corresponding to a GPIO |
| 1318 | * @desc: gpio whose IRQ will be returned (already requested) |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 1319 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1320 | * Return the IRQ corresponding to the passed GPIO, or an error code in case of |
| 1321 | * error. |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 1322 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1323 | int gpiod_to_irq(const struct gpio_desc *desc) |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 1324 | { |
| 1325 | struct gpio_chip *chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1326 | int offset; |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 1327 | |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 1328 | if (!desc) |
| 1329 | return -EINVAL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1330 | chip = desc->chip; |
| 1331 | offset = gpio_chip_hwgpio(desc); |
| 1332 | return chip->to_irq ? chip->to_irq(chip, offset) : -ENXIO; |
| 1333 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1334 | EXPORT_SYMBOL_GPL(gpiod_to_irq); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1335 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1336 | /** |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1337 | * gpio_lock_as_irq() - lock a GPIO to be used as IRQ |
| 1338 | * @chip: the chip the GPIO to lock belongs to |
| 1339 | * @offset: the offset of the GPIO to lock as IRQ |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1340 | * |
| 1341 | * This is used directly by GPIO drivers that want to lock down |
Linus Walleij | f438acd | 2014-03-07 10:12:49 +0800 | [diff] [blame] | 1342 | * a certain GPIO line to be used for IRQs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1343 | */ |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1344 | int gpio_lock_as_irq(struct gpio_chip *chip, unsigned int offset) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1345 | { |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1346 | if (offset >= chip->ngpio) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1347 | return -EINVAL; |
| 1348 | |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1349 | if (test_bit(FLAG_IS_OUT, &chip->desc[offset].flags)) { |
| 1350 | chip_err(chip, |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1351 | "%s: tried to flag a GPIO set as output for IRQ\n", |
| 1352 | __func__); |
| 1353 | return -EIO; |
| 1354 | } |
| 1355 | |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1356 | set_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1357 | return 0; |
| 1358 | } |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1359 | EXPORT_SYMBOL_GPL(gpio_lock_as_irq); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1360 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1361 | /** |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1362 | * gpio_unlock_as_irq() - unlock a GPIO used as IRQ |
| 1363 | * @chip: the chip the GPIO to lock belongs to |
| 1364 | * @offset: the offset of the GPIO to lock as IRQ |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1365 | * |
| 1366 | * This is used directly by GPIO drivers that want to indicate |
| 1367 | * that a certain GPIO is no longer used exclusively for IRQ. |
| 1368 | */ |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1369 | void gpio_unlock_as_irq(struct gpio_chip *chip, unsigned int offset) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1370 | { |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1371 | if (offset >= chip->ngpio) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1372 | return; |
| 1373 | |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1374 | clear_bit(FLAG_USED_AS_IRQ, &chip->desc[offset].flags); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1375 | } |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 1376 | EXPORT_SYMBOL_GPL(gpio_unlock_as_irq); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1377 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1378 | /** |
| 1379 | * gpiod_get_raw_value_cansleep() - return a gpio's raw value |
| 1380 | * @desc: gpio whose value will be returned |
| 1381 | * |
| 1382 | * Return the GPIO's raw value, i.e. the value of the physical line disregarding |
| 1383 | * its ACTIVE_LOW status. |
| 1384 | * |
| 1385 | * This function is to be called from contexts that can sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1386 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1387 | int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1388 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1389 | might_sleep_if(extra_checks); |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 1390 | if (!desc) |
| 1391 | return 0; |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1392 | return _gpiod_get_raw_value(desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1393 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1394 | EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1395 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1396 | /** |
| 1397 | * gpiod_get_value_cansleep() - return a gpio's value |
| 1398 | * @desc: gpio whose value will be returned |
| 1399 | * |
| 1400 | * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into |
| 1401 | * account. |
| 1402 | * |
| 1403 | * This function is to be called from contexts that can sleep. |
| 1404 | */ |
| 1405 | int gpiod_get_value_cansleep(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1406 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1407 | int value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1408 | |
| 1409 | might_sleep_if(extra_checks); |
| 1410 | if (!desc) |
| 1411 | return 0; |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1412 | |
| 1413 | value = _gpiod_get_raw_value(desc); |
| 1414 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 1415 | value = !value; |
| 1416 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1417 | return value; |
| 1418 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1419 | EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1420 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1421 | /** |
| 1422 | * gpiod_set_raw_value_cansleep() - assign a gpio's raw value |
| 1423 | * @desc: gpio whose value will be assigned |
| 1424 | * @value: value to assign |
| 1425 | * |
| 1426 | * Set the raw value of the GPIO, i.e. the value of its physical line without |
| 1427 | * regard for its ACTIVE_LOW status. |
| 1428 | * |
| 1429 | * This function is to be called from contexts that can sleep. |
| 1430 | */ |
| 1431 | void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1432 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1433 | might_sleep_if(extra_checks); |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 1434 | if (!desc) |
| 1435 | return; |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1436 | _gpiod_set_raw_value(desc, value); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1437 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1438 | EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1439 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1440 | /** |
| 1441 | * gpiod_set_value_cansleep() - assign a gpio's value |
| 1442 | * @desc: gpio whose value will be assigned |
| 1443 | * @value: value to assign |
| 1444 | * |
| 1445 | * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 1446 | * account |
| 1447 | * |
| 1448 | * This function is to be called from contexts that can sleep. |
| 1449 | */ |
| 1450 | void gpiod_set_value_cansleep(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1451 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1452 | might_sleep_if(extra_checks); |
| 1453 | if (!desc) |
| 1454 | return; |
| 1455 | |
| 1456 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 1457 | value = !value; |
| 1458 | _gpiod_set_raw_value(desc, value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1459 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 1460 | EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1461 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1462 | /** |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1463 | * gpiod_add_lookup_table() - register GPIO device consumers |
| 1464 | * @table: table of consumers to register |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1465 | */ |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1466 | void gpiod_add_lookup_table(struct gpiod_lookup_table *table) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1467 | { |
| 1468 | mutex_lock(&gpio_lookup_lock); |
| 1469 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1470 | list_add_tail(&table->list, &gpio_lookup_list); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1471 | |
| 1472 | mutex_unlock(&gpio_lookup_lock); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1473 | } |
| 1474 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1475 | static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id, |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1476 | unsigned int idx, |
| 1477 | enum gpio_lookup_flags *flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1478 | { |
Thierry Reding | dd34c37 | 2014-04-23 17:28:09 +0200 | [diff] [blame] | 1479 | static const char *suffixes[] = { "gpios", "gpio" }; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1480 | char prop_name[32]; /* 32 is max size of property name */ |
| 1481 | enum of_gpio_flags of_flags; |
| 1482 | struct gpio_desc *desc; |
Thierry Reding | dd34c37 | 2014-04-23 17:28:09 +0200 | [diff] [blame] | 1483 | unsigned int i; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1484 | |
Thierry Reding | dd34c37 | 2014-04-23 17:28:09 +0200 | [diff] [blame] | 1485 | for (i = 0; i < ARRAY_SIZE(suffixes); i++) { |
| 1486 | if (con_id) |
| 1487 | snprintf(prop_name, 32, "%s-%s", con_id, suffixes[i]); |
| 1488 | else |
| 1489 | snprintf(prop_name, 32, "%s", suffixes[i]); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1490 | |
Thierry Reding | dd34c37 | 2014-04-23 17:28:09 +0200 | [diff] [blame] | 1491 | desc = of_get_named_gpiod_flags(dev->of_node, prop_name, idx, |
| 1492 | &of_flags); |
Tony Lindgren | 06fc3b7 | 2014-06-02 16:13:46 -0700 | [diff] [blame] | 1493 | if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER)) |
Thierry Reding | dd34c37 | 2014-04-23 17:28:09 +0200 | [diff] [blame] | 1494 | break; |
| 1495 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1496 | |
| 1497 | if (IS_ERR(desc)) |
| 1498 | return desc; |
| 1499 | |
| 1500 | if (of_flags & OF_GPIO_ACTIVE_LOW) |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1501 | *flags |= GPIO_ACTIVE_LOW; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1502 | |
| 1503 | return desc; |
| 1504 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1505 | |
Mika Westerberg | 81f59e9 | 2013-10-10 11:01:09 +0300 | [diff] [blame] | 1506 | static struct gpio_desc *acpi_find_gpio(struct device *dev, const char *con_id, |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1507 | unsigned int idx, |
| 1508 | enum gpio_lookup_flags *flags) |
Mika Westerberg | 81f59e9 | 2013-10-10 11:01:09 +0300 | [diff] [blame] | 1509 | { |
Mika Westerberg | e01f440 | 2013-10-10 11:01:10 +0300 | [diff] [blame] | 1510 | struct acpi_gpio_info info; |
| 1511 | struct gpio_desc *desc; |
| 1512 | |
| 1513 | desc = acpi_get_gpiod_by_index(dev, idx, &info); |
| 1514 | if (IS_ERR(desc)) |
| 1515 | return desc; |
| 1516 | |
| 1517 | if (info.gpioint && info.active_low) |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1518 | *flags |= GPIO_ACTIVE_LOW; |
Mika Westerberg | e01f440 | 2013-10-10 11:01:10 +0300 | [diff] [blame] | 1519 | |
| 1520 | return desc; |
Mika Westerberg | 81f59e9 | 2013-10-10 11:01:09 +0300 | [diff] [blame] | 1521 | } |
| 1522 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1523 | static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev) |
| 1524 | { |
| 1525 | const char *dev_id = dev ? dev_name(dev) : NULL; |
| 1526 | struct gpiod_lookup_table *table; |
| 1527 | |
| 1528 | mutex_lock(&gpio_lookup_lock); |
| 1529 | |
| 1530 | list_for_each_entry(table, &gpio_lookup_list, list) { |
| 1531 | if (table->dev_id && dev_id) { |
| 1532 | /* |
| 1533 | * Valid strings on both ends, must be identical to have |
| 1534 | * a match |
| 1535 | */ |
| 1536 | if (!strcmp(table->dev_id, dev_id)) |
| 1537 | goto found; |
| 1538 | } else { |
| 1539 | /* |
| 1540 | * One of the pointers is NULL, so both must be to have |
| 1541 | * a match |
| 1542 | */ |
| 1543 | if (dev_id == table->dev_id) |
| 1544 | goto found; |
| 1545 | } |
| 1546 | } |
| 1547 | table = NULL; |
| 1548 | |
| 1549 | found: |
| 1550 | mutex_unlock(&gpio_lookup_lock); |
| 1551 | return table; |
| 1552 | } |
| 1553 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1554 | static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id, |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1555 | unsigned int idx, |
| 1556 | enum gpio_lookup_flags *flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1557 | { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1558 | struct gpio_desc *desc = ERR_PTR(-ENOENT); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1559 | struct gpiod_lookup_table *table; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1560 | struct gpiod_lookup *p; |
| 1561 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1562 | table = gpiod_find_lookup_table(dev); |
| 1563 | if (!table) |
| 1564 | return desc; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1565 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1566 | for (p = &table->table[0]; p->chip_label; p++) { |
| 1567 | struct gpio_chip *chip; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1568 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1569 | /* idx must always match exactly */ |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1570 | if (p->idx != idx) |
| 1571 | continue; |
| 1572 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1573 | /* If the lookup entry has a con_id, require exact match */ |
| 1574 | if (p->con_id && (!con_id || strcmp(p->con_id, con_id))) |
| 1575 | continue; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1576 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1577 | chip = find_chip_by_name(p->chip_label); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1578 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1579 | if (!chip) { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1580 | dev_err(dev, "cannot find GPIO chip %s\n", |
| 1581 | p->chip_label); |
| 1582 | return ERR_PTR(-ENODEV); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1583 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1584 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1585 | if (chip->ngpio <= p->chip_hwnum) { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1586 | dev_err(dev, |
| 1587 | "requested GPIO %d is out of range [0..%d] for chip %s\n", |
| 1588 | idx, chip->ngpio, chip->label); |
| 1589 | return ERR_PTR(-EINVAL); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1590 | } |
| 1591 | |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 1592 | desc = gpiochip_get_desc(chip, p->chip_hwnum); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1593 | *flags = p->flags; |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1594 | |
| 1595 | return desc; |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1596 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1597 | |
| 1598 | return desc; |
| 1599 | } |
| 1600 | |
| 1601 | /** |
Thierry Reding | 0879162 | 2014-04-25 16:54:22 +0200 | [diff] [blame] | 1602 | * gpiod_get - obtain a GPIO for a given GPIO function |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 1603 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1604 | * @con_id: function within the GPIO consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1605 | * @flags: optional GPIO initialization flags |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1606 | * |
| 1607 | * Return the GPIO descriptor corresponding to the function con_id of device |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1608 | * dev, -ENOENT if no GPIO has been assigned to the requested function, or |
| 1609 | * another IS_ERR() code if an error occured while trying to acquire the GPIO. |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1610 | */ |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1611 | struct gpio_desc *__must_check __gpiod_get(struct device *dev, const char *con_id, |
| 1612 | enum gpiod_flags flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1613 | { |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1614 | return gpiod_get_index(dev, con_id, 0, flags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1615 | } |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1616 | EXPORT_SYMBOL_GPL(__gpiod_get); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1617 | |
| 1618 | /** |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1619 | * gpiod_get_optional - obtain an optional GPIO for a given GPIO function |
| 1620 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 1621 | * @con_id: function within the GPIO consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1622 | * @flags: optional GPIO initialization flags |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1623 | * |
| 1624 | * This is equivalent to gpiod_get(), except that when no GPIO was assigned to |
| 1625 | * the requested function it will return NULL. This is convenient for drivers |
| 1626 | * that need to handle optional GPIOs. |
| 1627 | */ |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1628 | struct gpio_desc *__must_check __gpiod_get_optional(struct device *dev, |
| 1629 | const char *con_id, |
| 1630 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1631 | { |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1632 | return gpiod_get_index_optional(dev, con_id, 0, flags); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1633 | } |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1634 | EXPORT_SYMBOL_GPL(__gpiod_get_optional); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1635 | |
| 1636 | /** |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1637 | * gpiod_get_index - obtain a GPIO from a multi-index GPIO function |
Andy Shevchenko | fdd6a5f | 2013-12-05 11:26:26 +0200 | [diff] [blame] | 1638 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1639 | * @con_id: function within the GPIO consumer |
| 1640 | * @idx: index of the GPIO to obtain in the consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1641 | * @flags: optional GPIO initialization flags |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1642 | * |
| 1643 | * This variant of gpiod_get() allows to access GPIOs other than the first |
| 1644 | * defined one for functions that define several GPIOs. |
| 1645 | * |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1646 | * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the |
| 1647 | * requested function and/or index, or another IS_ERR() code if an error |
| 1648 | * occured while trying to acquire the GPIO. |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1649 | */ |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1650 | struct gpio_desc *__must_check __gpiod_get_index(struct device *dev, |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1651 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1652 | unsigned int idx, |
| 1653 | enum gpiod_flags flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1654 | { |
Alexandre Courbot | 35c5d7f | 2013-11-23 19:34:50 +0900 | [diff] [blame] | 1655 | struct gpio_desc *desc = NULL; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1656 | int status; |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1657 | enum gpio_lookup_flags lookupflags = 0; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1658 | |
| 1659 | dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id); |
| 1660 | |
| 1661 | /* Using device tree? */ |
| 1662 | if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) { |
| 1663 | dev_dbg(dev, "using device tree for GPIO lookup\n"); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1664 | desc = of_find_gpio(dev, con_id, idx, &lookupflags); |
Mika Westerberg | 81f59e9 | 2013-10-10 11:01:09 +0300 | [diff] [blame] | 1665 | } else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) { |
| 1666 | dev_dbg(dev, "using ACPI for GPIO lookup\n"); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1667 | desc = acpi_find_gpio(dev, con_id, idx, &lookupflags); |
Alexandre Courbot | 35c5d7f | 2013-11-23 19:34:50 +0900 | [diff] [blame] | 1668 | } |
| 1669 | |
| 1670 | /* |
| 1671 | * Either we are not using DT or ACPI, or their lookup did not return |
| 1672 | * a result. In that case, use platform lookup as a fallback. |
| 1673 | */ |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 1674 | if (!desc || desc == ERR_PTR(-ENOENT)) { |
Alexander Shiyan | 43a8785 | 2014-09-19 11:39:25 +0400 | [diff] [blame] | 1675 | dev_dbg(dev, "using lookup tables for GPIO lookup\n"); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1676 | desc = gpiod_find(dev, con_id, idx, &lookupflags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1677 | } |
| 1678 | |
| 1679 | if (IS_ERR(desc)) { |
Heikki Krogerus | 351cfe0 | 2013-11-29 15:47:34 +0200 | [diff] [blame] | 1680 | dev_dbg(dev, "lookup for GPIO %s failed\n", con_id); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1681 | return desc; |
| 1682 | } |
| 1683 | |
| 1684 | status = gpiod_request(desc, con_id); |
| 1685 | |
| 1686 | if (status < 0) |
| 1687 | return ERR_PTR(status); |
| 1688 | |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1689 | if (lookupflags & GPIO_ACTIVE_LOW) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1690 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1691 | if (lookupflags & GPIO_OPEN_DRAIN) |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1692 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1693 | if (lookupflags & GPIO_OPEN_SOURCE) |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 1694 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1695 | |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1696 | /* No particular flag request, return here... */ |
Adrian Hunter | 72f908c | 2014-09-22 11:01:16 +0300 | [diff] [blame] | 1697 | if (!(flags & GPIOD_FLAGS_BIT_DIR_SET)) |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1698 | return desc; |
| 1699 | |
| 1700 | /* Process flags */ |
| 1701 | if (flags & GPIOD_FLAGS_BIT_DIR_OUT) |
| 1702 | status = gpiod_direction_output(desc, |
| 1703 | flags & GPIOD_FLAGS_BIT_DIR_VAL); |
| 1704 | else |
| 1705 | status = gpiod_direction_input(desc); |
| 1706 | |
| 1707 | if (status < 0) { |
| 1708 | dev_dbg(dev, "setup of GPIO %s failed\n", con_id); |
| 1709 | gpiod_put(desc); |
| 1710 | return ERR_PTR(status); |
| 1711 | } |
| 1712 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1713 | return desc; |
| 1714 | } |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1715 | EXPORT_SYMBOL_GPL(__gpiod_get_index); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1716 | |
| 1717 | /** |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1718 | * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO |
| 1719 | * function |
| 1720 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 1721 | * @con_id: function within the GPIO consumer |
| 1722 | * @index: index of the GPIO to obtain in the consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1723 | * @flags: optional GPIO initialization flags |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1724 | * |
| 1725 | * This is equivalent to gpiod_get_index(), except that when no GPIO with the |
| 1726 | * specified index was assigned to the requested function it will return NULL. |
| 1727 | * This is convenient for drivers that need to handle optional GPIOs. |
| 1728 | */ |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1729 | struct gpio_desc *__must_check __gpiod_get_index_optional(struct device *dev, |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1730 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1731 | unsigned int index, |
| 1732 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1733 | { |
| 1734 | struct gpio_desc *desc; |
| 1735 | |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1736 | desc = gpiod_get_index(dev, con_id, index, flags); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1737 | if (IS_ERR(desc)) { |
| 1738 | if (PTR_ERR(desc) == -ENOENT) |
| 1739 | return NULL; |
| 1740 | } |
| 1741 | |
| 1742 | return desc; |
| 1743 | } |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 1744 | EXPORT_SYMBOL_GPL(__gpiod_get_index_optional); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 1745 | |
| 1746 | /** |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 1747 | * gpiod_put - dispose of a GPIO descriptor |
| 1748 | * @desc: GPIO descriptor to dispose of |
| 1749 | * |
| 1750 | * No descriptor can be used after gpiod_put() has been called on it. |
| 1751 | */ |
| 1752 | void gpiod_put(struct gpio_desc *desc) |
| 1753 | { |
| 1754 | gpiod_free(desc); |
| 1755 | } |
| 1756 | EXPORT_SYMBOL_GPL(gpiod_put); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1757 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1758 | #ifdef CONFIG_DEBUG_FS |
| 1759 | |
| 1760 | static void gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip) |
| 1761 | { |
| 1762 | unsigned i; |
| 1763 | unsigned gpio = chip->base; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 1764 | struct gpio_desc *gdesc = &chip->desc[0]; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1765 | int is_out; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1766 | int is_irq; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1767 | |
| 1768 | for (i = 0; i < chip->ngpio; i++, gpio++, gdesc++) { |
| 1769 | if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) |
| 1770 | continue; |
| 1771 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1772 | gpiod_get_direction(gdesc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1773 | is_out = test_bit(FLAG_IS_OUT, &gdesc->flags); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1774 | is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags); |
| 1775 | seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s", |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1776 | gpio, gdesc->label, |
| 1777 | is_out ? "out" : "in ", |
| 1778 | chip->get |
| 1779 | ? (chip->get(chip, i) ? "hi" : "lo") |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 1780 | : "? ", |
| 1781 | is_irq ? "IRQ" : " "); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1782 | seq_printf(s, "\n"); |
| 1783 | } |
| 1784 | } |
| 1785 | |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1786 | static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1787 | { |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1788 | unsigned long flags; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1789 | struct gpio_chip *chip = NULL; |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 1790 | loff_t index = *pos; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1791 | |
| 1792 | s->private = ""; |
| 1793 | |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1794 | spin_lock_irqsave(&gpio_lock, flags); |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 1795 | list_for_each_entry(chip, &gpio_chips, list) |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1796 | if (index-- == 0) { |
| 1797 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 1798 | return chip; |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1799 | } |
| 1800 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 1801 | |
| 1802 | return NULL; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1803 | } |
| 1804 | |
| 1805 | static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos) |
| 1806 | { |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1807 | unsigned long flags; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1808 | struct gpio_chip *chip = v; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1809 | void *ret = NULL; |
| 1810 | |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1811 | spin_lock_irqsave(&gpio_lock, flags); |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 1812 | if (list_is_last(&chip->list, &gpio_chips)) |
| 1813 | ret = NULL; |
| 1814 | else |
| 1815 | ret = list_entry(chip->list.next, struct gpio_chip, list); |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 1816 | spin_unlock_irqrestore(&gpio_lock, flags); |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1817 | |
| 1818 | s->private = "\n"; |
| 1819 | ++*pos; |
| 1820 | |
| 1821 | return ret; |
| 1822 | } |
| 1823 | |
| 1824 | static void gpiolib_seq_stop(struct seq_file *s, void *v) |
| 1825 | { |
| 1826 | } |
| 1827 | |
| 1828 | static int gpiolib_seq_show(struct seq_file *s, void *v) |
| 1829 | { |
| 1830 | struct gpio_chip *chip = v; |
| 1831 | struct device *dev; |
| 1832 | |
| 1833 | seq_printf(s, "%sGPIOs %d-%d", (char *)s->private, |
| 1834 | chip->base, chip->base + chip->ngpio - 1); |
| 1835 | dev = chip->dev; |
| 1836 | if (dev) |
| 1837 | seq_printf(s, ", %s/%s", dev->bus ? dev->bus->name : "no-bus", |
| 1838 | dev_name(dev)); |
| 1839 | if (chip->label) |
| 1840 | seq_printf(s, ", %s", chip->label); |
| 1841 | if (chip->can_sleep) |
| 1842 | seq_printf(s, ", can sleep"); |
| 1843 | seq_printf(s, ":\n"); |
| 1844 | |
| 1845 | if (chip->dbg_show) |
| 1846 | chip->dbg_show(s, chip); |
| 1847 | else |
| 1848 | gpiolib_dbg_show(s, chip); |
| 1849 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1850 | return 0; |
| 1851 | } |
| 1852 | |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1853 | static const struct seq_operations gpiolib_seq_ops = { |
| 1854 | .start = gpiolib_seq_start, |
| 1855 | .next = gpiolib_seq_next, |
| 1856 | .stop = gpiolib_seq_stop, |
| 1857 | .show = gpiolib_seq_show, |
| 1858 | }; |
| 1859 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1860 | static int gpiolib_open(struct inode *inode, struct file *file) |
| 1861 | { |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1862 | return seq_open(file, &gpiolib_seq_ops); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1863 | } |
| 1864 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 1865 | static const struct file_operations gpiolib_operations = { |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1866 | .owner = THIS_MODULE, |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1867 | .open = gpiolib_open, |
| 1868 | .read = seq_read, |
| 1869 | .llseek = seq_lseek, |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 1870 | .release = seq_release, |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1871 | }; |
| 1872 | |
| 1873 | static int __init gpiolib_debugfs_init(void) |
| 1874 | { |
| 1875 | /* /sys/kernel/debug/gpio */ |
| 1876 | (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO, |
| 1877 | NULL, NULL, &gpiolib_operations); |
| 1878 | return 0; |
| 1879 | } |
| 1880 | subsys_initcall(gpiolib_debugfs_init); |
| 1881 | |
| 1882 | #endif /* DEBUG_FS */ |