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