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 | d8f388d | 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> |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 18 | #include <linux/pinctrl/consumer.h> |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 19 | #include <linux/cdev.h> |
| 20 | #include <linux/fs.h> |
| 21 | #include <linux/uaccess.h> |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 22 | #include <linux/compat.h> |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 23 | #include <linux/anon_inodes.h> |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 24 | #include <linux/kfifo.h> |
| 25 | #include <linux/poll.h> |
| 26 | #include <linux/timekeeping.h> |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 27 | #include <uapi/linux/gpio.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 28 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 29 | #include "gpiolib.h" |
| 30 | |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 31 | #define CREATE_TRACE_POINTS |
| 32 | #include <trace/events/gpio.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 33 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 34 | /* Implementation infrastructure for GPIO interfaces. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 35 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 36 | * The GPIO programming interface allows for inlining speed-critical |
| 37 | * get/set operations for common cases, so that access to SOC-integrated |
| 38 | * GPIOs can sometimes cost only an instruction or two per bit. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 39 | */ |
| 40 | |
| 41 | |
| 42 | /* When debugging, extend minimal trust to callers and platform code. |
| 43 | * Also emit diagnostic messages that may help initial bringup, when |
| 44 | * board setup or driver bugs are most common. |
| 45 | * |
| 46 | * Otherwise, minimize overhead in what may be bitbanging codepaths. |
| 47 | */ |
| 48 | #ifdef DEBUG |
| 49 | #define extra_checks 1 |
| 50 | #else |
| 51 | #define extra_checks 0 |
| 52 | #endif |
| 53 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 54 | /* Device and char device-related information */ |
| 55 | static DEFINE_IDA(gpio_ida); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 56 | static dev_t gpio_devt; |
| 57 | #define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */ |
| 58 | static struct bus_type gpio_bus_type = { |
| 59 | .name = "gpio", |
| 60 | }; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 61 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 62 | /* gpio_lock prevents conflicts during gpio_desc[] table updates. |
| 63 | * While any GPIO is requested, its gpio_chip is not removable; |
| 64 | * each GPIO's "requested" flag serves as a lock and refcount. |
| 65 | */ |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 66 | DEFINE_SPINLOCK(gpio_lock); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 67 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 68 | static DEFINE_MUTEX(gpio_lookup_lock); |
| 69 | static LIST_HEAD(gpio_lookup_list); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 70 | LIST_HEAD(gpio_devices); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 71 | |
| 72 | static void gpiochip_free_hogs(struct gpio_chip *chip); |
| 73 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 74 | static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip); |
| 75 | static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 76 | |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 77 | static bool gpiolib_initialized; |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 78 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 79 | static inline void desc_set_label(struct gpio_desc *d, const char *label) |
| 80 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 81 | d->label = label; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 82 | } |
| 83 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 84 | /** |
| 85 | * Convert a GPIO number to its descriptor |
| 86 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 87 | struct gpio_desc *gpio_to_desc(unsigned gpio) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 88 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 89 | struct gpio_device *gdev; |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 90 | unsigned long flags; |
| 91 | |
| 92 | spin_lock_irqsave(&gpio_lock, flags); |
| 93 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 94 | list_for_each_entry(gdev, &gpio_devices, list) { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 95 | if (gdev->base <= gpio && |
| 96 | gdev->base + gdev->ngpio > gpio) { |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 97 | spin_unlock_irqrestore(&gpio_lock, flags); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 98 | return &gdev->descs[gpio - gdev->base]; |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 99 | } |
| 100 | } |
| 101 | |
| 102 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 103 | |
Alexandre Courbot | 0e9a5ed | 2014-12-02 23:15:05 +0900 | [diff] [blame] | 104 | if (!gpio_is_valid(gpio)) |
| 105 | WARN(1, "invalid GPIO %d\n", gpio); |
| 106 | |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 107 | return NULL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 108 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 109 | EXPORT_SYMBOL_GPL(gpio_to_desc); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 110 | |
| 111 | /** |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 112 | * 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] | 113 | */ |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 114 | struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, |
| 115 | u16 hwnum) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 116 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 117 | struct gpio_device *gdev = chip->gpiodev; |
| 118 | |
| 119 | if (hwnum >= gdev->ngpio) |
Alexandre Courbot | b7d0a28 | 2013-12-03 12:31:11 +0900 | [diff] [blame] | 120 | return ERR_PTR(-EINVAL); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 121 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 122 | return &gdev->descs[hwnum]; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 123 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 124 | |
| 125 | /** |
| 126 | * Convert a GPIO descriptor to the integer namespace. |
| 127 | * This should disappear in the future but is needed since we still |
| 128 | * use GPIO numbers for error messages and sysfs nodes |
| 129 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 130 | int desc_to_gpio(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 131 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 132 | return desc->gdev->base + (desc - &desc->gdev->descs[0]); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 133 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 134 | EXPORT_SYMBOL_GPL(desc_to_gpio); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 135 | |
| 136 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 137 | /** |
| 138 | * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs |
| 139 | * @desc: descriptor to return the chip of |
| 140 | */ |
| 141 | struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 142 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 143 | if (!desc || !desc->gdev || !desc->gdev->chip) |
| 144 | return NULL; |
| 145 | return desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 146 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 147 | EXPORT_SYMBOL_GPL(gpiod_to_chip); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 148 | |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 149 | /* dynamic allocation of GPIOs, e.g. on a hotplugged device */ |
| 150 | static int gpiochip_find_base(int ngpio) |
| 151 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 152 | struct gpio_device *gdev; |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 153 | int base = ARCH_NR_GPIOS - ngpio; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 154 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 155 | list_for_each_entry_reverse(gdev, &gpio_devices, list) { |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 156 | /* found a free space? */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 157 | if (gdev->base + gdev->ngpio <= base) |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 158 | break; |
| 159 | else |
| 160 | /* nope, check the space right before the chip */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 161 | base = gdev->base - ngpio; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 164 | if (gpio_is_valid(base)) { |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 165 | pr_debug("%s: found new base at %d\n", __func__, base); |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 166 | return base; |
| 167 | } else { |
| 168 | pr_err("%s: cannot find free range\n", __func__); |
| 169 | return -ENOSPC; |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 170 | } |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 173 | /** |
| 174 | * gpiod_get_direction - return the current direction of a GPIO |
| 175 | * @desc: GPIO to get the direction of |
| 176 | * |
| 177 | * Return GPIOF_DIR_IN or GPIOF_DIR_OUT, or an error code in case of error. |
| 178 | * |
| 179 | * This function may sleep if gpiod_cansleep() is true. |
| 180 | */ |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 181 | int gpiod_get_direction(struct gpio_desc *desc) |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 182 | { |
| 183 | struct gpio_chip *chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 184 | unsigned offset; |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 185 | int status = -EINVAL; |
| 186 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 187 | chip = gpiod_to_chip(desc); |
| 188 | offset = gpio_chip_hwgpio(desc); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 189 | |
| 190 | if (!chip->get_direction) |
| 191 | return status; |
| 192 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 193 | status = chip->get_direction(chip, offset); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 194 | if (status > 0) { |
| 195 | /* GPIOF_DIR_IN, or other positive */ |
| 196 | status = 1; |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 197 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 198 | } |
| 199 | if (status == 0) { |
| 200 | /* GPIOF_DIR_OUT */ |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 201 | set_bit(FLAG_IS_OUT, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 202 | } |
| 203 | return status; |
| 204 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 205 | EXPORT_SYMBOL_GPL(gpiod_get_direction); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 206 | |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 207 | /* |
| 208 | * Add a new chip to the global chips list, keeping the list of chips sorted |
Bamvor Jian Zhang | ef7c755 | 2015-11-16 13:02:46 +0800 | [diff] [blame] | 209 | * by range(means [base, base + ngpio - 1]) order. |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 210 | * |
| 211 | * Return -EBUSY if the new chip overlaps with some other chip's integer |
| 212 | * space. |
| 213 | */ |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 214 | static int gpiodev_add_to_list(struct gpio_device *gdev) |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 215 | { |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 216 | struct gpio_device *prev, *next; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 217 | |
| 218 | if (list_empty(&gpio_devices)) { |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 219 | /* initial entry in list */ |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 220 | list_add_tail(&gdev->list, &gpio_devices); |
Sudip Mukherjee | e28ecca | 2015-12-27 19:06:50 +0530 | [diff] [blame] | 221 | return 0; |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 222 | } |
| 223 | |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 224 | next = list_entry(gpio_devices.next, struct gpio_device, list); |
| 225 | if (gdev->base + gdev->ngpio <= next->base) { |
| 226 | /* add before first entry */ |
| 227 | list_add(&gdev->list, &gpio_devices); |
Julien Grossholtz | 96098df | 2016-01-07 16:46:45 -0500 | [diff] [blame] | 228 | return 0; |
| 229 | } |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 230 | |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 231 | prev = list_entry(gpio_devices.prev, struct gpio_device, list); |
| 232 | if (prev->base + prev->ngpio <= gdev->base) { |
| 233 | /* add behind last entry */ |
| 234 | list_add_tail(&gdev->list, &gpio_devices); |
| 235 | return 0; |
| 236 | } |
Bamvor Jian Zhang | ef7c755 | 2015-11-16 13:02:46 +0800 | [diff] [blame] | 237 | |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 238 | list_for_each_entry_safe(prev, next, &gpio_devices, list) { |
| 239 | /* at the end of the list */ |
| 240 | if (&next->list == &gpio_devices) |
| 241 | break; |
| 242 | |
| 243 | /* add between prev and next */ |
| 244 | if (prev->base + prev->ngpio <= gdev->base |
| 245 | && gdev->base + gdev->ngpio <= next->base) { |
| 246 | list_add(&gdev->list, &prev->list); |
| 247 | return 0; |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n"); |
| 252 | return -EBUSY; |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 253 | } |
| 254 | |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 255 | /** |
| 256 | * Convert a GPIO name to its descriptor |
| 257 | */ |
| 258 | static struct gpio_desc *gpio_name_to_desc(const char * const name) |
| 259 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 260 | struct gpio_device *gdev; |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 261 | unsigned long flags; |
| 262 | |
| 263 | spin_lock_irqsave(&gpio_lock, flags); |
| 264 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 265 | list_for_each_entry(gdev, &gpio_devices, list) { |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 266 | int i; |
| 267 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 268 | for (i = 0; i != gdev->ngpio; ++i) { |
| 269 | struct gpio_desc *desc = &gdev->descs[i]; |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 270 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 271 | if (!desc->name || !name) |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 272 | continue; |
| 273 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 274 | if (!strcmp(desc->name, name)) { |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 275 | spin_unlock_irqrestore(&gpio_lock, flags); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 276 | return desc; |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 282 | |
| 283 | return NULL; |
| 284 | } |
| 285 | |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 286 | /* |
| 287 | * Takes the names from gc->names and checks if they are all unique. If they |
| 288 | * are, they are assigned to their gpio descriptors. |
| 289 | * |
Bamvor Jian Zhang | ed37915 | 2015-11-14 16:43:20 +0800 | [diff] [blame] | 290 | * Warning if one of the names is already used for a different GPIO. |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 291 | */ |
| 292 | static int gpiochip_set_desc_names(struct gpio_chip *gc) |
| 293 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 294 | struct gpio_device *gdev = gc->gpiodev; |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 295 | int i; |
| 296 | |
| 297 | if (!gc->names) |
| 298 | return 0; |
| 299 | |
| 300 | /* First check all names if they are unique */ |
| 301 | for (i = 0; i != gc->ngpio; ++i) { |
| 302 | struct gpio_desc *gpio; |
| 303 | |
| 304 | gpio = gpio_name_to_desc(gc->names[i]); |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 305 | if (gpio) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 306 | dev_warn(&gdev->dev, |
Linus Walleij | 34ffd85 | 2015-10-20 11:31:54 +0200 | [diff] [blame] | 307 | "Detected name collision for GPIO name '%s'\n", |
Linus Walleij | f881bab | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 308 | gc->names[i]); |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | /* Then add all names to the GPIO descriptors */ |
| 312 | for (i = 0; i != gc->ngpio; ++i) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 313 | gdev->descs[i].name = gc->names[i]; |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 314 | |
| 315 | return 0; |
| 316 | } |
| 317 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 318 | /* |
| 319 | * GPIO line handle management |
| 320 | */ |
| 321 | |
| 322 | /** |
| 323 | * struct linehandle_state - contains the state of a userspace handle |
| 324 | * @gdev: the GPIO device the handle pertains to |
| 325 | * @label: consumer label used to tag descriptors |
| 326 | * @descs: the GPIO descriptors held by this handle |
| 327 | * @numdescs: the number of descriptors held in the descs array |
| 328 | */ |
| 329 | struct linehandle_state { |
| 330 | struct gpio_device *gdev; |
| 331 | const char *label; |
| 332 | struct gpio_desc *descs[GPIOHANDLES_MAX]; |
| 333 | u32 numdescs; |
| 334 | }; |
| 335 | |
| 336 | static long linehandle_ioctl(struct file *filep, unsigned int cmd, |
| 337 | unsigned long arg) |
| 338 | { |
| 339 | struct linehandle_state *lh = filep->private_data; |
| 340 | void __user *ip = (void __user *)arg; |
| 341 | struct gpiohandle_data ghd; |
| 342 | int i; |
| 343 | |
| 344 | if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) { |
| 345 | int val; |
| 346 | |
| 347 | /* TODO: check if descriptors are really input */ |
| 348 | for (i = 0; i < lh->numdescs; i++) { |
| 349 | val = gpiod_get_value_cansleep(lh->descs[i]); |
| 350 | if (val < 0) |
| 351 | return val; |
| 352 | ghd.values[i] = val; |
| 353 | } |
| 354 | |
| 355 | if (copy_to_user(ip, &ghd, sizeof(ghd))) |
| 356 | return -EFAULT; |
| 357 | |
| 358 | return 0; |
| 359 | } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) { |
| 360 | int vals[GPIOHANDLES_MAX]; |
| 361 | |
| 362 | /* TODO: check if descriptors are really output */ |
| 363 | if (copy_from_user(&ghd, ip, sizeof(ghd))) |
| 364 | return -EFAULT; |
| 365 | |
| 366 | /* Clamp all values to [0,1] */ |
| 367 | for (i = 0; i < lh->numdescs; i++) |
| 368 | vals[i] = !!ghd.values[i]; |
| 369 | |
| 370 | /* Reuse the array setting function */ |
| 371 | gpiod_set_array_value_complex(false, |
| 372 | true, |
| 373 | lh->numdescs, |
| 374 | lh->descs, |
| 375 | vals); |
| 376 | return 0; |
| 377 | } |
| 378 | return -EINVAL; |
| 379 | } |
| 380 | |
| 381 | #ifdef CONFIG_COMPAT |
| 382 | static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd, |
| 383 | unsigned long arg) |
| 384 | { |
| 385 | return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg)); |
| 386 | } |
| 387 | #endif |
| 388 | |
| 389 | static int linehandle_release(struct inode *inode, struct file *filep) |
| 390 | { |
| 391 | struct linehandle_state *lh = filep->private_data; |
| 392 | struct gpio_device *gdev = lh->gdev; |
| 393 | int i; |
| 394 | |
| 395 | for (i = 0; i < lh->numdescs; i++) |
| 396 | gpiod_free(lh->descs[i]); |
| 397 | kfree(lh->label); |
| 398 | kfree(lh); |
| 399 | put_device(&gdev->dev); |
| 400 | return 0; |
| 401 | } |
| 402 | |
| 403 | static const struct file_operations linehandle_fileops = { |
| 404 | .release = linehandle_release, |
| 405 | .owner = THIS_MODULE, |
| 406 | .llseek = noop_llseek, |
| 407 | .unlocked_ioctl = linehandle_ioctl, |
| 408 | #ifdef CONFIG_COMPAT |
| 409 | .compat_ioctl = linehandle_ioctl_compat, |
| 410 | #endif |
| 411 | }; |
| 412 | |
| 413 | static int linehandle_create(struct gpio_device *gdev, void __user *ip) |
| 414 | { |
| 415 | struct gpiohandle_request handlereq; |
| 416 | struct linehandle_state *lh; |
| 417 | int fd, i, ret; |
| 418 | |
| 419 | if (copy_from_user(&handlereq, ip, sizeof(handlereq))) |
| 420 | return -EFAULT; |
| 421 | if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX)) |
| 422 | return -EINVAL; |
| 423 | |
| 424 | lh = kzalloc(sizeof(*lh), GFP_KERNEL); |
| 425 | if (!lh) |
| 426 | return -ENOMEM; |
| 427 | lh->gdev = gdev; |
| 428 | get_device(&gdev->dev); |
| 429 | |
| 430 | /* Make sure this is terminated */ |
| 431 | handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0'; |
| 432 | if (strlen(handlereq.consumer_label)) { |
| 433 | lh->label = kstrdup(handlereq.consumer_label, |
| 434 | GFP_KERNEL); |
| 435 | if (!lh->label) { |
| 436 | ret = -ENOMEM; |
| 437 | goto out_free_lh; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | /* Request each GPIO */ |
| 442 | for (i = 0; i < handlereq.lines; i++) { |
| 443 | u32 offset = handlereq.lineoffsets[i]; |
| 444 | u32 lflags = handlereq.flags; |
| 445 | struct gpio_desc *desc; |
| 446 | |
| 447 | desc = &gdev->descs[offset]; |
| 448 | ret = gpiod_request(desc, lh->label); |
| 449 | if (ret) |
| 450 | goto out_free_descs; |
| 451 | lh->descs[i] = desc; |
| 452 | |
| 453 | if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW) |
| 454 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
| 455 | if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) |
| 456 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 457 | if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE) |
| 458 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
| 459 | |
| 460 | /* |
| 461 | * Lines have to be requested explicitly for input |
| 462 | * or output, else the line will be treated "as is". |
| 463 | */ |
| 464 | if (lflags & GPIOHANDLE_REQUEST_OUTPUT) { |
| 465 | int val = !!handlereq.default_values[i]; |
| 466 | |
| 467 | ret = gpiod_direction_output(desc, val); |
| 468 | if (ret) |
| 469 | goto out_free_descs; |
| 470 | } else if (lflags & GPIOHANDLE_REQUEST_INPUT) { |
| 471 | ret = gpiod_direction_input(desc); |
| 472 | if (ret) |
| 473 | goto out_free_descs; |
| 474 | } |
| 475 | dev_dbg(&gdev->dev, "registered chardev handle for line %d\n", |
| 476 | offset); |
| 477 | } |
Linus Walleij | e2f608b | 2016-06-18 10:56:43 +0200 | [diff] [blame] | 478 | /* Let i point at the last handle */ |
| 479 | i--; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 480 | lh->numdescs = handlereq.lines; |
| 481 | |
| 482 | fd = anon_inode_getfd("gpio-linehandle", |
| 483 | &linehandle_fileops, |
| 484 | lh, |
| 485 | O_RDONLY | O_CLOEXEC); |
| 486 | if (fd < 0) { |
| 487 | ret = fd; |
| 488 | goto out_free_descs; |
| 489 | } |
| 490 | |
| 491 | handlereq.fd = fd; |
Linus Walleij | d932cd4 | 2016-07-04 13:13:04 +0200 | [diff] [blame] | 492 | if (copy_to_user(ip, &handlereq, sizeof(handlereq))) { |
| 493 | ret = -EFAULT; |
| 494 | goto out_free_descs; |
| 495 | } |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 496 | |
| 497 | dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n", |
| 498 | lh->numdescs); |
| 499 | |
| 500 | return 0; |
| 501 | |
| 502 | out_free_descs: |
| 503 | for (; i >= 0; i--) |
| 504 | gpiod_free(lh->descs[i]); |
| 505 | kfree(lh->label); |
| 506 | out_free_lh: |
| 507 | kfree(lh); |
| 508 | put_device(&gdev->dev); |
| 509 | return ret; |
| 510 | } |
| 511 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 512 | /* |
| 513 | * GPIO line event management |
| 514 | */ |
| 515 | |
| 516 | /** |
| 517 | * struct lineevent_state - contains the state of a userspace event |
| 518 | * @gdev: the GPIO device the event pertains to |
| 519 | * @label: consumer label used to tag descriptors |
| 520 | * @desc: the GPIO descriptor held by this event |
| 521 | * @eflags: the event flags this line was requested with |
| 522 | * @irq: the interrupt that trigger in response to events on this GPIO |
| 523 | * @wait: wait queue that handles blocking reads of events |
| 524 | * @events: KFIFO for the GPIO events |
| 525 | * @read_lock: mutex lock to protect reads from colliding with adding |
| 526 | * new events to the FIFO |
| 527 | */ |
| 528 | struct lineevent_state { |
| 529 | struct gpio_device *gdev; |
| 530 | const char *label; |
| 531 | struct gpio_desc *desc; |
| 532 | u32 eflags; |
| 533 | int irq; |
| 534 | wait_queue_head_t wait; |
| 535 | DECLARE_KFIFO(events, struct gpioevent_data, 16); |
| 536 | struct mutex read_lock; |
| 537 | }; |
| 538 | |
| 539 | static unsigned int lineevent_poll(struct file *filep, |
| 540 | struct poll_table_struct *wait) |
| 541 | { |
| 542 | struct lineevent_state *le = filep->private_data; |
| 543 | unsigned int events = 0; |
| 544 | |
| 545 | poll_wait(filep, &le->wait, wait); |
| 546 | |
| 547 | if (!kfifo_is_empty(&le->events)) |
| 548 | events = POLLIN | POLLRDNORM; |
| 549 | |
| 550 | return events; |
| 551 | } |
| 552 | |
| 553 | |
| 554 | static ssize_t lineevent_read(struct file *filep, |
| 555 | char __user *buf, |
| 556 | size_t count, |
| 557 | loff_t *f_ps) |
| 558 | { |
| 559 | struct lineevent_state *le = filep->private_data; |
| 560 | unsigned int copied; |
| 561 | int ret; |
| 562 | |
| 563 | if (count < sizeof(struct gpioevent_data)) |
| 564 | return -EINVAL; |
| 565 | |
| 566 | do { |
| 567 | if (kfifo_is_empty(&le->events)) { |
| 568 | if (filep->f_flags & O_NONBLOCK) |
| 569 | return -EAGAIN; |
| 570 | |
| 571 | ret = wait_event_interruptible(le->wait, |
| 572 | !kfifo_is_empty(&le->events)); |
| 573 | if (ret) |
| 574 | return ret; |
| 575 | } |
| 576 | |
| 577 | if (mutex_lock_interruptible(&le->read_lock)) |
| 578 | return -ERESTARTSYS; |
| 579 | ret = kfifo_to_user(&le->events, buf, count, &copied); |
| 580 | mutex_unlock(&le->read_lock); |
| 581 | |
| 582 | if (ret) |
| 583 | return ret; |
| 584 | |
| 585 | /* |
| 586 | * If we couldn't read anything from the fifo (a different |
| 587 | * thread might have been faster) we either return -EAGAIN if |
| 588 | * the file descriptor is non-blocking, otherwise we go back to |
| 589 | * sleep and wait for more data to arrive. |
| 590 | */ |
| 591 | if (copied == 0 && (filep->f_flags & O_NONBLOCK)) |
| 592 | return -EAGAIN; |
| 593 | |
| 594 | } while (copied == 0); |
| 595 | |
| 596 | return copied; |
| 597 | } |
| 598 | |
| 599 | static int lineevent_release(struct inode *inode, struct file *filep) |
| 600 | { |
| 601 | struct lineevent_state *le = filep->private_data; |
| 602 | struct gpio_device *gdev = le->gdev; |
| 603 | |
| 604 | free_irq(le->irq, le); |
| 605 | gpiod_free(le->desc); |
| 606 | kfree(le->label); |
| 607 | kfree(le); |
| 608 | put_device(&gdev->dev); |
| 609 | return 0; |
| 610 | } |
| 611 | |
| 612 | static long lineevent_ioctl(struct file *filep, unsigned int cmd, |
| 613 | unsigned long arg) |
| 614 | { |
| 615 | struct lineevent_state *le = filep->private_data; |
| 616 | void __user *ip = (void __user *)arg; |
| 617 | struct gpiohandle_data ghd; |
| 618 | |
| 619 | /* |
| 620 | * We can get the value for an event line but not set it, |
| 621 | * because it is input by definition. |
| 622 | */ |
| 623 | if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) { |
| 624 | int val; |
| 625 | |
| 626 | val = gpiod_get_value_cansleep(le->desc); |
| 627 | if (val < 0) |
| 628 | return val; |
| 629 | ghd.values[0] = val; |
| 630 | |
| 631 | if (copy_to_user(ip, &ghd, sizeof(ghd))) |
| 632 | return -EFAULT; |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | return -EINVAL; |
| 637 | } |
| 638 | |
| 639 | #ifdef CONFIG_COMPAT |
| 640 | static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd, |
| 641 | unsigned long arg) |
| 642 | { |
| 643 | return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg)); |
| 644 | } |
| 645 | #endif |
| 646 | |
| 647 | static const struct file_operations lineevent_fileops = { |
| 648 | .release = lineevent_release, |
| 649 | .read = lineevent_read, |
| 650 | .poll = lineevent_poll, |
| 651 | .owner = THIS_MODULE, |
| 652 | .llseek = noop_llseek, |
| 653 | .unlocked_ioctl = lineevent_ioctl, |
| 654 | #ifdef CONFIG_COMPAT |
| 655 | .compat_ioctl = lineevent_ioctl_compat, |
| 656 | #endif |
| 657 | }; |
| 658 | |
Ben Dooks | 33265b1 | 2016-06-17 16:03:13 +0100 | [diff] [blame] | 659 | static irqreturn_t lineevent_irq_thread(int irq, void *p) |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 660 | { |
| 661 | struct lineevent_state *le = p; |
| 662 | struct gpioevent_data ge; |
| 663 | int ret; |
| 664 | |
| 665 | ge.timestamp = ktime_get_real_ns(); |
| 666 | |
| 667 | if (le->eflags & GPIOEVENT_REQUEST_BOTH_EDGES) { |
| 668 | int level = gpiod_get_value_cansleep(le->desc); |
| 669 | |
| 670 | if (level) |
| 671 | /* Emit low-to-high event */ |
| 672 | ge.id = GPIOEVENT_EVENT_RISING_EDGE; |
| 673 | else |
| 674 | /* Emit high-to-low event */ |
| 675 | ge.id = GPIOEVENT_EVENT_FALLING_EDGE; |
| 676 | } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) { |
| 677 | /* Emit low-to-high event */ |
| 678 | ge.id = GPIOEVENT_EVENT_RISING_EDGE; |
| 679 | } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) { |
| 680 | /* Emit high-to-low event */ |
| 681 | ge.id = GPIOEVENT_EVENT_FALLING_EDGE; |
Arnd Bergmann | bc0207a | 2016-06-16 11:02:41 +0200 | [diff] [blame] | 682 | } else { |
| 683 | return IRQ_NONE; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | ret = kfifo_put(&le->events, ge); |
| 687 | if (ret != 0) |
| 688 | wake_up_poll(&le->wait, POLLIN); |
| 689 | |
| 690 | return IRQ_HANDLED; |
| 691 | } |
| 692 | |
| 693 | static int lineevent_create(struct gpio_device *gdev, void __user *ip) |
| 694 | { |
| 695 | struct gpioevent_request eventreq; |
| 696 | struct lineevent_state *le; |
| 697 | struct gpio_desc *desc; |
| 698 | u32 offset; |
| 699 | u32 lflags; |
| 700 | u32 eflags; |
| 701 | int fd; |
| 702 | int ret; |
| 703 | int irqflags = 0; |
| 704 | |
| 705 | if (copy_from_user(&eventreq, ip, sizeof(eventreq))) |
| 706 | return -EFAULT; |
| 707 | |
| 708 | le = kzalloc(sizeof(*le), GFP_KERNEL); |
| 709 | if (!le) |
| 710 | return -ENOMEM; |
| 711 | le->gdev = gdev; |
| 712 | get_device(&gdev->dev); |
| 713 | |
| 714 | /* Make sure this is terminated */ |
| 715 | eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0'; |
| 716 | if (strlen(eventreq.consumer_label)) { |
| 717 | le->label = kstrdup(eventreq.consumer_label, |
| 718 | GFP_KERNEL); |
| 719 | if (!le->label) { |
| 720 | ret = -ENOMEM; |
| 721 | goto out_free_le; |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | offset = eventreq.lineoffset; |
| 726 | lflags = eventreq.handleflags; |
| 727 | eflags = eventreq.eventflags; |
| 728 | |
| 729 | /* This is just wrong: we don't look for events on output lines */ |
| 730 | if (lflags & GPIOHANDLE_REQUEST_OUTPUT) { |
| 731 | ret = -EINVAL; |
| 732 | goto out_free_label; |
| 733 | } |
| 734 | |
| 735 | desc = &gdev->descs[offset]; |
| 736 | ret = gpiod_request(desc, le->label); |
| 737 | if (ret) |
| 738 | goto out_free_desc; |
| 739 | le->desc = desc; |
| 740 | le->eflags = eflags; |
| 741 | |
| 742 | if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW) |
| 743 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
| 744 | if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) |
| 745 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 746 | if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE) |
| 747 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
| 748 | |
| 749 | ret = gpiod_direction_input(desc); |
| 750 | if (ret) |
| 751 | goto out_free_desc; |
| 752 | |
| 753 | le->irq = gpiod_to_irq(desc); |
| 754 | if (le->irq <= 0) { |
| 755 | ret = -ENODEV; |
| 756 | goto out_free_desc; |
| 757 | } |
| 758 | |
| 759 | if (eflags & GPIOEVENT_REQUEST_RISING_EDGE) |
| 760 | irqflags |= IRQF_TRIGGER_RISING; |
| 761 | if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE) |
| 762 | irqflags |= IRQF_TRIGGER_FALLING; |
| 763 | irqflags |= IRQF_ONESHOT; |
| 764 | irqflags |= IRQF_SHARED; |
| 765 | |
| 766 | INIT_KFIFO(le->events); |
| 767 | init_waitqueue_head(&le->wait); |
| 768 | mutex_init(&le->read_lock); |
| 769 | |
| 770 | /* Request a thread to read the events */ |
| 771 | ret = request_threaded_irq(le->irq, |
| 772 | NULL, |
| 773 | lineevent_irq_thread, |
| 774 | irqflags, |
| 775 | le->label, |
| 776 | le); |
| 777 | if (ret) |
| 778 | goto out_free_desc; |
| 779 | |
| 780 | fd = anon_inode_getfd("gpio-event", |
| 781 | &lineevent_fileops, |
| 782 | le, |
| 783 | O_RDONLY | O_CLOEXEC); |
| 784 | if (fd < 0) { |
| 785 | ret = fd; |
| 786 | goto out_free_irq; |
| 787 | } |
| 788 | |
| 789 | eventreq.fd = fd; |
Linus Walleij | d932cd4 | 2016-07-04 13:13:04 +0200 | [diff] [blame] | 790 | if (copy_to_user(ip, &eventreq, sizeof(eventreq))) { |
| 791 | ret = -EFAULT; |
| 792 | goto out_free_irq; |
| 793 | } |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 794 | |
| 795 | return 0; |
| 796 | |
| 797 | out_free_irq: |
| 798 | free_irq(le->irq, le); |
| 799 | out_free_desc: |
| 800 | gpiod_free(le->desc); |
| 801 | out_free_label: |
| 802 | kfree(le->label); |
| 803 | out_free_le: |
| 804 | kfree(le); |
| 805 | put_device(&gdev->dev); |
| 806 | return ret; |
| 807 | } |
| 808 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 809 | /** |
| 810 | * gpio_ioctl() - ioctl handler for the GPIO chardev |
| 811 | */ |
| 812 | static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 813 | { |
| 814 | struct gpio_device *gdev = filp->private_data; |
| 815 | struct gpio_chip *chip = gdev->chip; |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 816 | void __user *ip = (void __user *)arg; |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 817 | |
| 818 | /* We fail any subsequent ioctl():s when the chip is gone */ |
| 819 | if (!chip) |
| 820 | return -ENODEV; |
| 821 | |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 822 | /* Fill in the struct and pass to userspace */ |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 823 | if (cmd == GPIO_GET_CHIPINFO_IOCTL) { |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 824 | struct gpiochip_info chipinfo; |
| 825 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 826 | strncpy(chipinfo.name, dev_name(&gdev->dev), |
| 827 | sizeof(chipinfo.name)); |
| 828 | chipinfo.name[sizeof(chipinfo.name)-1] = '\0'; |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 829 | strncpy(chipinfo.label, gdev->label, |
| 830 | sizeof(chipinfo.label)); |
| 831 | chipinfo.label[sizeof(chipinfo.label)-1] = '\0'; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 832 | chipinfo.lines = gdev->ngpio; |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 833 | if (copy_to_user(ip, &chipinfo, sizeof(chipinfo))) |
| 834 | return -EFAULT; |
| 835 | return 0; |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 836 | } else if (cmd == GPIO_GET_LINEINFO_IOCTL) { |
| 837 | struct gpioline_info lineinfo; |
| 838 | struct gpio_desc *desc; |
| 839 | |
| 840 | if (copy_from_user(&lineinfo, ip, sizeof(lineinfo))) |
| 841 | return -EFAULT; |
| 842 | if (lineinfo.line_offset > gdev->ngpio) |
| 843 | return -EINVAL; |
| 844 | |
| 845 | desc = &gdev->descs[lineinfo.line_offset]; |
| 846 | if (desc->name) { |
| 847 | strncpy(lineinfo.name, desc->name, |
| 848 | sizeof(lineinfo.name)); |
| 849 | lineinfo.name[sizeof(lineinfo.name)-1] = '\0'; |
| 850 | } else { |
| 851 | lineinfo.name[0] = '\0'; |
| 852 | } |
| 853 | if (desc->label) { |
Linus Walleij | 214338e | 2016-02-25 21:01:48 +0100 | [diff] [blame] | 854 | strncpy(lineinfo.consumer, desc->label, |
| 855 | sizeof(lineinfo.consumer)); |
| 856 | lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0'; |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 857 | } else { |
Linus Walleij | 214338e | 2016-02-25 21:01:48 +0100 | [diff] [blame] | 858 | lineinfo.consumer[0] = '\0'; |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | /* |
| 862 | * Userspace only need to know that the kernel is using |
| 863 | * this GPIO so it can't use it. |
| 864 | */ |
| 865 | lineinfo.flags = 0; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 866 | if (test_bit(FLAG_REQUESTED, &desc->flags) || |
| 867 | test_bit(FLAG_IS_HOGGED, &desc->flags) || |
| 868 | test_bit(FLAG_USED_AS_IRQ, &desc->flags) || |
| 869 | test_bit(FLAG_EXPORT, &desc->flags) || |
| 870 | test_bit(FLAG_SYSFS, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 871 | lineinfo.flags |= GPIOLINE_FLAG_KERNEL; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 872 | if (test_bit(FLAG_IS_OUT, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 873 | lineinfo.flags |= GPIOLINE_FLAG_IS_OUT; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 874 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 875 | lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 876 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 877 | lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 878 | if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 879 | lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE; |
| 880 | |
| 881 | if (copy_to_user(ip, &lineinfo, sizeof(lineinfo))) |
| 882 | return -EFAULT; |
| 883 | return 0; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 884 | } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) { |
| 885 | return linehandle_create(gdev, ip); |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 886 | } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) { |
| 887 | return lineevent_create(gdev, ip); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 888 | } |
| 889 | return -EINVAL; |
| 890 | } |
| 891 | |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 892 | #ifdef CONFIG_COMPAT |
| 893 | static long gpio_ioctl_compat(struct file *filp, unsigned int cmd, |
| 894 | unsigned long arg) |
| 895 | { |
| 896 | return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg)); |
| 897 | } |
| 898 | #endif |
| 899 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 900 | /** |
| 901 | * gpio_chrdev_open() - open the chardev for ioctl operations |
| 902 | * @inode: inode for this chardev |
| 903 | * @filp: file struct for storing private data |
| 904 | * Returns 0 on success |
| 905 | */ |
| 906 | static int gpio_chrdev_open(struct inode *inode, struct file *filp) |
| 907 | { |
| 908 | struct gpio_device *gdev = container_of(inode->i_cdev, |
| 909 | struct gpio_device, chrdev); |
| 910 | |
| 911 | /* Fail on open if the backing gpiochip is gone */ |
| 912 | if (!gdev || !gdev->chip) |
| 913 | return -ENODEV; |
| 914 | get_device(&gdev->dev); |
| 915 | filp->private_data = gdev; |
| 916 | return 0; |
| 917 | } |
| 918 | |
| 919 | /** |
| 920 | * gpio_chrdev_release() - close chardev after ioctl operations |
| 921 | * @inode: inode for this chardev |
| 922 | * @filp: file struct for storing private data |
| 923 | * Returns 0 on success |
| 924 | */ |
| 925 | static int gpio_chrdev_release(struct inode *inode, struct file *filp) |
| 926 | { |
| 927 | struct gpio_device *gdev = container_of(inode->i_cdev, |
| 928 | struct gpio_device, chrdev); |
| 929 | |
| 930 | if (!gdev) |
| 931 | return -ENODEV; |
| 932 | put_device(&gdev->dev); |
| 933 | return 0; |
| 934 | } |
| 935 | |
| 936 | |
| 937 | static const struct file_operations gpio_fileops = { |
| 938 | .release = gpio_chrdev_release, |
| 939 | .open = gpio_chrdev_open, |
| 940 | .owner = THIS_MODULE, |
| 941 | .llseek = noop_llseek, |
| 942 | .unlocked_ioctl = gpio_ioctl, |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 943 | #ifdef CONFIG_COMPAT |
| 944 | .compat_ioctl = gpio_ioctl_compat, |
| 945 | #endif |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 946 | }; |
| 947 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 948 | static void gpiodevice_release(struct device *dev) |
| 949 | { |
| 950 | struct gpio_device *gdev = dev_get_drvdata(dev); |
| 951 | |
| 952 | list_del(&gdev->list); |
| 953 | ida_simple_remove(&gpio_ida, gdev->id); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 954 | kfree(gdev->label); |
| 955 | kfree(gdev->descs); |
Linus Walleij | 9efd9e6 | 2016-02-09 14:27:42 +0100 | [diff] [blame] | 956 | kfree(gdev); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 957 | } |
| 958 | |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 959 | static int gpiochip_setup_dev(struct gpio_device *gdev) |
| 960 | { |
| 961 | int status; |
| 962 | |
| 963 | cdev_init(&gdev->chrdev, &gpio_fileops); |
| 964 | gdev->chrdev.owner = THIS_MODULE; |
| 965 | gdev->chrdev.kobj.parent = &gdev->dev.kobj; |
| 966 | gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id); |
| 967 | status = cdev_add(&gdev->chrdev, gdev->dev.devt, 1); |
| 968 | if (status < 0) |
| 969 | chip_warn(gdev->chip, "failed to add char device %d:%d\n", |
| 970 | MAJOR(gpio_devt), gdev->id); |
| 971 | else |
| 972 | chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n", |
| 973 | MAJOR(gpio_devt), gdev->id); |
| 974 | status = device_add(&gdev->dev); |
| 975 | if (status) |
| 976 | goto err_remove_chardev; |
| 977 | |
| 978 | status = gpiochip_sysfs_register(gdev); |
| 979 | if (status) |
| 980 | goto err_remove_device; |
| 981 | |
| 982 | /* From this point, the .release() function cleans up gpio_device */ |
| 983 | gdev->dev.release = gpiodevice_release; |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 984 | pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n", |
| 985 | __func__, gdev->base, gdev->base + gdev->ngpio - 1, |
| 986 | dev_name(&gdev->dev), gdev->chip->label ? : "generic"); |
| 987 | |
| 988 | return 0; |
| 989 | |
| 990 | err_remove_device: |
| 991 | device_del(&gdev->dev); |
| 992 | err_remove_chardev: |
| 993 | cdev_del(&gdev->chrdev); |
| 994 | return status; |
| 995 | } |
| 996 | |
| 997 | static void gpiochip_setup_devs(void) |
| 998 | { |
| 999 | struct gpio_device *gdev; |
| 1000 | int err; |
| 1001 | |
| 1002 | list_for_each_entry(gdev, &gpio_devices, list) { |
| 1003 | err = gpiochip_setup_dev(gdev); |
| 1004 | if (err) |
| 1005 | pr_err("%s: Failed to initialize gpio device (%d)\n", |
| 1006 | dev_name(&gdev->dev), err); |
| 1007 | } |
| 1008 | } |
| 1009 | |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 1010 | /** |
Linus Walleij | b08ea35 | 2015-12-03 15:14:13 +0100 | [diff] [blame] | 1011 | * gpiochip_add_data() - register a gpio_chip |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1012 | * @chip: the chip to register, with chip->base initialized |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1013 | * Context: potentially before irqs will work |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1014 | * |
| 1015 | * Returns a negative errno if the chip can't be registered, such as |
| 1016 | * because the chip->base is invalid or already associated with a |
| 1017 | * different chip. Otherwise it returns zero as a success code. |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1018 | * |
Linus Walleij | b08ea35 | 2015-12-03 15:14:13 +0100 | [diff] [blame] | 1019 | * When gpiochip_add_data() is called very early during boot, so that GPIOs |
Bamvor Jian Zhang | c88402c | 2015-11-18 17:07:07 +0800 | [diff] [blame] | 1020 | * can be freely used, the chip->parent device must be registered before |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 1021 | * the gpio framework's arch_initcall(). Otherwise sysfs initialization |
| 1022 | * for GPIOs will fail rudely. |
| 1023 | * |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1024 | * gpiochip_add_data() must only be called after gpiolib initialization, |
| 1025 | * ie after core_initcall(). |
| 1026 | * |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1027 | * If chip->base is negative, this requests dynamic assignment of |
| 1028 | * a range of valid GPIOs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1029 | */ |
Linus Walleij | b08ea35 | 2015-12-03 15:14:13 +0100 | [diff] [blame] | 1030 | int gpiochip_add_data(struct gpio_chip *chip, void *data) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1031 | { |
| 1032 | unsigned long flags; |
| 1033 | int status = 0; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1034 | unsigned i; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1035 | int base = chip->base; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1036 | struct gpio_device *gdev; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1037 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1038 | /* |
| 1039 | * First: allocate and populate the internal stat container, and |
| 1040 | * set up the struct device. |
| 1041 | */ |
Josh Cartwright | 969f07b | 2016-02-17 16:44:15 -0600 | [diff] [blame] | 1042 | gdev = kzalloc(sizeof(*gdev), GFP_KERNEL); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1043 | if (!gdev) |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1044 | return -ENOMEM; |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1045 | gdev->dev.bus = &gpio_bus_type; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1046 | gdev->chip = chip; |
| 1047 | chip->gpiodev = gdev; |
| 1048 | if (chip->parent) { |
| 1049 | gdev->dev.parent = chip->parent; |
| 1050 | gdev->dev.of_node = chip->parent->of_node; |
Thierry Reding | acc6e33 | 2016-07-05 14:11:14 +0200 | [diff] [blame] | 1051 | } |
| 1052 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1053 | #ifdef CONFIG_OF_GPIO |
| 1054 | /* If the gpiochip has an assigned OF node this takes precedence */ |
Thierry Reding | acc6e33 | 2016-07-05 14:11:14 +0200 | [diff] [blame] | 1055 | if (chip->of_node) |
| 1056 | gdev->dev.of_node = chip->of_node; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1057 | #endif |
Thierry Reding | acc6e33 | 2016-07-05 14:11:14 +0200 | [diff] [blame] | 1058 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1059 | gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL); |
| 1060 | if (gdev->id < 0) { |
| 1061 | status = gdev->id; |
| 1062 | goto err_free_gdev; |
| 1063 | } |
| 1064 | dev_set_name(&gdev->dev, "gpiochip%d", gdev->id); |
| 1065 | device_initialize(&gdev->dev); |
| 1066 | dev_set_drvdata(&gdev->dev, gdev); |
| 1067 | if (chip->parent && chip->parent->driver) |
| 1068 | gdev->owner = chip->parent->driver->owner; |
| 1069 | else if (chip->owner) |
| 1070 | /* TODO: remove chip->owner */ |
| 1071 | gdev->owner = chip->owner; |
| 1072 | else |
| 1073 | gdev->owner = THIS_MODULE; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1074 | |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1075 | gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL); |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1076 | if (!gdev->descs) { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1077 | status = -ENOMEM; |
| 1078 | goto err_free_gdev; |
| 1079 | } |
| 1080 | |
Bamvor Jian Zhang | 5ed41cc | 2015-11-16 13:02:47 +0800 | [diff] [blame] | 1081 | if (chip->ngpio == 0) { |
| 1082 | chip_err(chip, "tried to insert a GPIO chip with zero lines\n"); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1083 | status = -EINVAL; |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1084 | goto err_free_descs; |
Bamvor Jian Zhang | 5ed41cc | 2015-11-16 13:02:47 +0800 | [diff] [blame] | 1085 | } |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1086 | |
| 1087 | if (chip->label) |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1088 | gdev->label = kstrdup(chip->label, GFP_KERNEL); |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1089 | else |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1090 | gdev->label = kstrdup("unknown", GFP_KERNEL); |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1091 | if (!gdev->label) { |
| 1092 | status = -ENOMEM; |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1093 | goto err_free_descs; |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1094 | } |
| 1095 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1096 | gdev->ngpio = chip->ngpio; |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1097 | gdev->data = data; |
Bamvor Jian Zhang | 5ed41cc | 2015-11-16 13:02:47 +0800 | [diff] [blame] | 1098 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1099 | spin_lock_irqsave(&gpio_lock, flags); |
| 1100 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1101 | /* |
| 1102 | * TODO: this allocates a Linux GPIO number base in the global |
| 1103 | * GPIO numberspace for this chip. In the long run we want to |
| 1104 | * get *rid* of this numberspace and use only descriptors, but |
| 1105 | * it may be a pipe dream. It will not happen before we get rid |
| 1106 | * of the sysfs interface anyways. |
| 1107 | */ |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1108 | if (base < 0) { |
| 1109 | base = gpiochip_find_base(chip->ngpio); |
| 1110 | if (base < 0) { |
| 1111 | status = base; |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1112 | spin_unlock_irqrestore(&gpio_lock, flags); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1113 | goto err_free_label; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1114 | } |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1115 | /* |
| 1116 | * TODO: it should not be necessary to reflect the assigned |
| 1117 | * base outside of the GPIO subsystem. Go over drivers and |
| 1118 | * see if anyone makes use of this, else drop this and assign |
| 1119 | * a poison instead. |
| 1120 | */ |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1121 | chip->base = base; |
| 1122 | } |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1123 | gdev->base = base; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1124 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1125 | status = gpiodev_add_to_list(gdev); |
Johan Hovold | 05aa520 | 2015-01-12 17:12:26 +0100 | [diff] [blame] | 1126 | if (status) { |
| 1127 | spin_unlock_irqrestore(&gpio_lock, flags); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1128 | goto err_free_label; |
Johan Hovold | 05aa520 | 2015-01-12 17:12:26 +0100 | [diff] [blame] | 1129 | } |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 1130 | |
Linus Walleij | 545ebd9 | 2016-05-30 17:11:59 +0200 | [diff] [blame] | 1131 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 1132 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1133 | for (i = 0; i < chip->ngpio; i++) { |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1134 | struct gpio_desc *desc = &gdev->descs[i]; |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 1135 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1136 | desc->gdev = gdev; |
Linus Walleij | 72d3200 | 2016-04-28 13:33:59 +0200 | [diff] [blame] | 1137 | /* |
| 1138 | * REVISIT: most hardware initializes GPIOs as inputs |
| 1139 | * (often with pullups enabled) so power usage is |
| 1140 | * minimized. Linux code should set the gpio direction |
| 1141 | * first thing; but until it does, and in case |
| 1142 | * chip->get_direction is not set, we may expose the |
| 1143 | * wrong direction in sysfs. |
Johan Hovold | 05aa520 | 2015-01-12 17:12:26 +0100 | [diff] [blame] | 1144 | */ |
Linus Walleij | 72d3200 | 2016-04-28 13:33:59 +0200 | [diff] [blame] | 1145 | |
| 1146 | if (chip->get_direction) { |
| 1147 | /* |
| 1148 | * If we have .get_direction, set up the initial |
| 1149 | * direction flag from the hardware. |
| 1150 | */ |
| 1151 | int dir = chip->get_direction(chip, i); |
| 1152 | |
| 1153 | if (!dir) |
| 1154 | set_bit(FLAG_IS_OUT, &desc->flags); |
| 1155 | } else if (!chip->direction_input) { |
| 1156 | /* |
| 1157 | * If the chip lacks the .direction_input callback |
| 1158 | * we logically assume all lines are outputs. |
| 1159 | */ |
| 1160 | set_bit(FLAG_IS_OUT, &desc->flags); |
| 1161 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1162 | } |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1163 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1164 | #ifdef CONFIG_PINCTRL |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 1165 | INIT_LIST_HEAD(&gdev->pin_ranges); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1166 | #endif |
| 1167 | |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 1168 | status = gpiochip_set_desc_names(chip); |
| 1169 | if (status) |
| 1170 | goto err_remove_from_list; |
| 1171 | |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1172 | status = gpiochip_irqchip_init_valid_mask(chip); |
| 1173 | if (status) |
| 1174 | goto err_remove_from_list; |
| 1175 | |
Tomeu Vizoso | 28355f8 | 2015-07-14 10:29:54 +0200 | [diff] [blame] | 1176 | status = of_gpiochip_add(chip); |
| 1177 | if (status) |
| 1178 | goto err_remove_chip; |
| 1179 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 1180 | acpi_gpiochip_add(chip); |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 1181 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1182 | /* |
| 1183 | * By first adding the chardev, and then adding the device, |
| 1184 | * we get a device node entry in sysfs under |
| 1185 | * /sys/bus/gpio/devices/gpiochipN/dev that can be used for |
| 1186 | * coldplug of device nodes and other udev business. |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1187 | * We can do this only if gpiolib has been initialized. |
| 1188 | * Otherwise, defer until later. |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1189 | */ |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1190 | if (gpiolib_initialized) { |
| 1191 | status = gpiochip_setup_dev(gdev); |
| 1192 | if (status) |
| 1193 | goto err_remove_chip; |
| 1194 | } |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 1195 | return 0; |
Zhangfei Gao | 3bae481 | 2013-06-09 11:08:32 +0800 | [diff] [blame] | 1196 | |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1197 | err_remove_chip: |
| 1198 | acpi_gpiochip_remove(chip); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 1199 | gpiochip_free_hogs(chip); |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1200 | of_gpiochip_remove(chip); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1201 | gpiochip_irqchip_free_valid_mask(chip); |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 1202 | err_remove_from_list: |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1203 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1204 | list_del(&gdev->list); |
Zhangfei Gao | 3bae481 | 2013-06-09 11:08:32 +0800 | [diff] [blame] | 1205 | spin_unlock_irqrestore(&gpio_lock, flags); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1206 | err_free_label: |
| 1207 | kfree(gdev->label); |
| 1208 | err_free_descs: |
| 1209 | kfree(gdev->descs); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1210 | err_free_gdev: |
| 1211 | ida_simple_remove(&gpio_ida, gdev->id); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1212 | /* failures here can mean systems won't boot... */ |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 1213 | pr_err("%s: GPIOs %d..%d (%s) failed to register\n", __func__, |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1214 | gdev->base, gdev->base + gdev->ngpio - 1, |
| 1215 | chip->label ? : "generic"); |
| 1216 | kfree(gdev); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1217 | return status; |
| 1218 | } |
Linus Walleij | b08ea35 | 2015-12-03 15:14:13 +0100 | [diff] [blame] | 1219 | EXPORT_SYMBOL_GPL(gpiochip_add_data); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1220 | |
| 1221 | /** |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1222 | * gpiochip_get_data() - get per-subdriver data for the chip |
| 1223 | */ |
| 1224 | void *gpiochip_get_data(struct gpio_chip *chip) |
| 1225 | { |
| 1226 | return chip->gpiodev->data; |
| 1227 | } |
| 1228 | EXPORT_SYMBOL_GPL(gpiochip_get_data); |
| 1229 | |
| 1230 | /** |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1231 | * gpiochip_remove() - unregister a gpio_chip |
| 1232 | * @chip: the chip to unregister |
| 1233 | * |
| 1234 | * A gpio_chip with any GPIOs still requested may not be removed. |
| 1235 | */ |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 1236 | void gpiochip_remove(struct gpio_chip *chip) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1237 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1238 | struct gpio_device *gdev = chip->gpiodev; |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1239 | struct gpio_desc *desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1240 | unsigned long flags; |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1241 | unsigned i; |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1242 | bool requested = false; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1243 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1244 | /* FIXME: should the legacy sysfs handling be moved to gpio_device? */ |
Linus Walleij | afbc4f3 | 2016-02-09 13:21:06 +0100 | [diff] [blame] | 1245 | gpiochip_sysfs_unregister(gdev); |
Bamvor Jian Zhang | bd203bd | 2016-02-20 13:13:19 +0800 | [diff] [blame] | 1246 | /* Numb the device, cancelling all outstanding operations */ |
| 1247 | gdev->chip = NULL; |
Johan Hovold | 00acc3d | 2015-01-12 17:12:27 +0100 | [diff] [blame] | 1248 | gpiochip_irqchip_remove(chip); |
Mika Westerberg | 6072b9d | 2014-03-10 14:54:53 +0200 | [diff] [blame] | 1249 | acpi_gpiochip_remove(chip); |
Linus Walleij | 9ef0d6f | 2012-11-06 15:15:44 +0100 | [diff] [blame] | 1250 | gpiochip_remove_pin_ranges(chip); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 1251 | gpiochip_free_hogs(chip); |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 1252 | of_gpiochip_remove(chip); |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1253 | /* |
| 1254 | * We accept no more calls into the driver from this point, so |
| 1255 | * NULL the driver data pointer |
| 1256 | */ |
| 1257 | gdev->data = NULL; |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 1258 | |
Johan Hovold | 6798aca | 2015-01-12 17:12:28 +0100 | [diff] [blame] | 1259 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1260 | for (i = 0; i < gdev->ngpio; i++) { |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1261 | desc = &gdev->descs[i]; |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1262 | if (test_bit(FLAG_REQUESTED, &desc->flags)) |
| 1263 | requested = true; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1264 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1265 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1266 | |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1267 | if (requested) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1268 | dev_crit(&gdev->dev, |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 1269 | "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n"); |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1270 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1271 | /* |
| 1272 | * The gpiochip side puts its use of the device to rest here: |
| 1273 | * if there are no userspace clients, the chardev and device will |
| 1274 | * be removed, else it will be dangling until the last user is |
| 1275 | * gone. |
| 1276 | */ |
Ricardo Ribalda Delgado | f4833b8 | 2016-06-03 19:10:02 +0200 | [diff] [blame] | 1277 | cdev_del(&gdev->chrdev); |
| 1278 | device_del(&gdev->dev); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1279 | put_device(&gdev->dev); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1280 | } |
| 1281 | EXPORT_SYMBOL_GPL(gpiochip_remove); |
| 1282 | |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1283 | static void devm_gpio_chip_release(struct device *dev, void *res) |
| 1284 | { |
| 1285 | struct gpio_chip *chip = *(struct gpio_chip **)res; |
| 1286 | |
| 1287 | gpiochip_remove(chip); |
| 1288 | } |
| 1289 | |
| 1290 | static int devm_gpio_chip_match(struct device *dev, void *res, void *data) |
| 1291 | |
| 1292 | { |
| 1293 | struct gpio_chip **r = res; |
| 1294 | |
| 1295 | if (!r || !*r) { |
| 1296 | WARN_ON(!r || !*r); |
| 1297 | return 0; |
| 1298 | } |
| 1299 | |
| 1300 | return *r == data; |
| 1301 | } |
| 1302 | |
| 1303 | /** |
| 1304 | * devm_gpiochip_add_data() - Resource manager piochip_add_data() |
| 1305 | * @dev: the device pointer on which irq_chip belongs to. |
| 1306 | * @chip: the chip to register, with chip->base initialized |
| 1307 | * Context: potentially before irqs will work |
| 1308 | * |
| 1309 | * Returns a negative errno if the chip can't be registered, such as |
| 1310 | * because the chip->base is invalid or already associated with a |
| 1311 | * different chip. Otherwise it returns zero as a success code. |
| 1312 | * |
| 1313 | * The gpio chip automatically be released when the device is unbound. |
| 1314 | */ |
| 1315 | int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip, |
| 1316 | void *data) |
| 1317 | { |
| 1318 | struct gpio_chip **ptr; |
| 1319 | int ret; |
| 1320 | |
| 1321 | ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr), |
| 1322 | GFP_KERNEL); |
| 1323 | if (!ptr) |
| 1324 | return -ENOMEM; |
| 1325 | |
| 1326 | ret = gpiochip_add_data(chip, data); |
| 1327 | if (ret < 0) { |
| 1328 | devres_free(ptr); |
| 1329 | return ret; |
| 1330 | } |
| 1331 | |
| 1332 | *ptr = chip; |
| 1333 | devres_add(dev, ptr); |
| 1334 | |
| 1335 | return 0; |
| 1336 | } |
| 1337 | EXPORT_SYMBOL_GPL(devm_gpiochip_add_data); |
| 1338 | |
| 1339 | /** |
| 1340 | * devm_gpiochip_remove() - Resource manager of gpiochip_remove() |
| 1341 | * @dev: device for which which resource was allocated |
| 1342 | * @chip: the chip to remove |
| 1343 | * |
| 1344 | * A gpio_chip with any GPIOs still requested may not be removed. |
| 1345 | */ |
| 1346 | void devm_gpiochip_remove(struct device *dev, struct gpio_chip *chip) |
| 1347 | { |
| 1348 | int ret; |
| 1349 | |
| 1350 | ret = devres_release(dev, devm_gpio_chip_release, |
| 1351 | devm_gpio_chip_match, chip); |
| 1352 | if (!ret) |
| 1353 | WARN_ON(ret); |
| 1354 | } |
| 1355 | EXPORT_SYMBOL_GPL(devm_gpiochip_remove); |
| 1356 | |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1357 | /** |
| 1358 | * gpiochip_find() - iterator for locating a specific gpio_chip |
| 1359 | * @data: data to pass to match function |
| 1360 | * @callback: Callback function to check gpio_chip |
| 1361 | * |
| 1362 | * Similar to bus_find_device. It returns a reference to a gpio_chip as |
| 1363 | * determined by a user supplied @match callback. The callback should return |
| 1364 | * 0 if the device doesn't match and non-zero if it does. If the callback is |
| 1365 | * non-zero, this function will return to the caller and not iterate over any |
| 1366 | * more gpio_chips. |
| 1367 | */ |
Grant Likely | 07ce8ec | 2012-05-18 23:01:05 -0600 | [diff] [blame] | 1368 | struct gpio_chip *gpiochip_find(void *data, |
Grant Likely | 6e2cf65 | 2012-03-02 15:56:03 -0700 | [diff] [blame] | 1369 | int (*match)(struct gpio_chip *chip, |
Grant Likely | 3d0f7cf | 2012-05-17 13:54:40 -0600 | [diff] [blame] | 1370 | void *data)) |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1371 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1372 | struct gpio_device *gdev; |
Masahiro Yamada | acf06ff | 2016-08-12 01:21:58 +0900 | [diff] [blame] | 1373 | struct gpio_chip *chip = NULL; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1374 | unsigned long flags; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1375 | |
| 1376 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1377 | list_for_each_entry(gdev, &gpio_devices, list) |
Masahiro Yamada | acf06ff | 2016-08-12 01:21:58 +0900 | [diff] [blame] | 1378 | if (gdev->chip && match(gdev->chip, data)) { |
| 1379 | chip = gdev->chip; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1380 | break; |
Masahiro Yamada | acf06ff | 2016-08-12 01:21:58 +0900 | [diff] [blame] | 1381 | } |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1382 | |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1383 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 1384 | |
| 1385 | return chip; |
| 1386 | } |
Jean Delvare | 8fa0c9b | 2011-05-20 00:40:18 -0600 | [diff] [blame] | 1387 | EXPORT_SYMBOL_GPL(gpiochip_find); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1388 | |
Alexandre Courbot | 79697ef | 2013-11-16 21:39:32 +0900 | [diff] [blame] | 1389 | static int gpiochip_match_name(struct gpio_chip *chip, void *data) |
| 1390 | { |
| 1391 | const char *name = data; |
| 1392 | |
| 1393 | return !strcmp(chip->label, name); |
| 1394 | } |
| 1395 | |
| 1396 | static struct gpio_chip *find_chip_by_name(const char *name) |
| 1397 | { |
| 1398 | return gpiochip_find((void *)name, gpiochip_match_name); |
| 1399 | } |
| 1400 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1401 | #ifdef CONFIG_GPIOLIB_IRQCHIP |
| 1402 | |
| 1403 | /* |
| 1404 | * The following is irqchip helper code for gpiochips. |
| 1405 | */ |
| 1406 | |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1407 | static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip) |
| 1408 | { |
| 1409 | int i; |
| 1410 | |
| 1411 | if (!gpiochip->irq_need_valid_mask) |
| 1412 | return 0; |
| 1413 | |
| 1414 | gpiochip->irq_valid_mask = kcalloc(BITS_TO_LONGS(gpiochip->ngpio), |
| 1415 | sizeof(long), GFP_KERNEL); |
| 1416 | if (!gpiochip->irq_valid_mask) |
| 1417 | return -ENOMEM; |
| 1418 | |
| 1419 | /* Assume by default all GPIOs are valid */ |
| 1420 | for (i = 0; i < gpiochip->ngpio; i++) |
| 1421 | set_bit(i, gpiochip->irq_valid_mask); |
| 1422 | |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
| 1426 | static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip) |
| 1427 | { |
| 1428 | kfree(gpiochip->irq_valid_mask); |
| 1429 | gpiochip->irq_valid_mask = NULL; |
| 1430 | } |
| 1431 | |
| 1432 | static bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip, |
| 1433 | unsigned int offset) |
| 1434 | { |
| 1435 | /* No mask means all valid */ |
| 1436 | if (likely(!gpiochip->irq_valid_mask)) |
| 1437 | return true; |
| 1438 | return test_bit(offset, gpiochip->irq_valid_mask); |
| 1439 | } |
| 1440 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1441 | /** |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1442 | * gpiochip_set_chained_irqchip() - sets a chained irqchip to a gpiochip |
| 1443 | * @gpiochip: the gpiochip to set the irqchip chain to |
| 1444 | * @irqchip: the irqchip to chain to the gpiochip |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1445 | * @parent_irq: the irq number corresponding to the parent IRQ for this |
| 1446 | * chained irqchip |
| 1447 | * @parent_handler: the parent interrupt handler for the accumulated IRQ |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1448 | * coming out of the gpiochip. If the interrupt is nested rather than |
| 1449 | * cascaded, pass NULL in this handler argument |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1450 | */ |
| 1451 | void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, |
| 1452 | struct irq_chip *irqchip, |
| 1453 | int parent_irq, |
| 1454 | irq_flow_handler_t parent_handler) |
| 1455 | { |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 1456 | unsigned int offset; |
| 1457 | |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 1458 | if (!gpiochip->irqdomain) { |
| 1459 | chip_err(gpiochip, "called %s before setting up irqchip\n", |
| 1460 | __func__); |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1461 | return; |
| 1462 | } |
| 1463 | |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1464 | if (parent_handler) { |
| 1465 | if (gpiochip->can_sleep) { |
| 1466 | chip_err(gpiochip, |
| 1467 | "you cannot have chained interrupts on a " |
| 1468 | "chip that may sleep\n"); |
| 1469 | return; |
| 1470 | } |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1471 | /* |
| 1472 | * The parent irqchip is already using the chip_data for this |
| 1473 | * irqchip, so our callbacks simply use the handler_data. |
| 1474 | */ |
Thomas Gleixner | f7f8775 | 2015-06-21 21:10:48 +0200 | [diff] [blame] | 1475 | irq_set_chained_handler_and_data(parent_irq, parent_handler, |
| 1476 | gpiochip); |
Dmitry Eremin-Solenikov | 25e4fe9 | 2015-05-12 20:12:23 +0300 | [diff] [blame] | 1477 | |
| 1478 | gpiochip->irq_parent = parent_irq; |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1479 | } |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 1480 | |
| 1481 | /* Set the parent IRQ for all affected IRQs */ |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1482 | for (offset = 0; offset < gpiochip->ngpio; offset++) { |
| 1483 | if (!gpiochip_irqchip_irq_valid(gpiochip, offset)) |
| 1484 | continue; |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 1485 | irq_set_parent(irq_find_mapping(gpiochip->irqdomain, offset), |
| 1486 | parent_irq); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1487 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1488 | } |
| 1489 | EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip); |
| 1490 | |
| 1491 | /** |
| 1492 | * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip |
| 1493 | * @d: the irqdomain used by this irqchip |
| 1494 | * @irq: the global irq number used by this GPIO irqchip irq |
| 1495 | * @hwirq: the local IRQ/GPIO line offset on this gpiochip |
| 1496 | * |
| 1497 | * This function will set up the mapping for a certain IRQ line on a |
| 1498 | * gpiochip by assigning the gpiochip as chip data, and using the irqchip |
| 1499 | * stored inside the gpiochip. |
| 1500 | */ |
| 1501 | static int gpiochip_irq_map(struct irq_domain *d, unsigned int irq, |
| 1502 | irq_hw_number_t hwirq) |
| 1503 | { |
| 1504 | struct gpio_chip *chip = d->host_data; |
| 1505 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1506 | irq_set_chip_data(irq, chip); |
Grygorii Strashko | a0a8bcf | 2015-08-17 15:35:23 +0300 | [diff] [blame] | 1507 | /* |
| 1508 | * This lock class tells lockdep that GPIO irqs are in a different |
| 1509 | * category than their parents, so it won't report false recursion. |
| 1510 | */ |
| 1511 | irq_set_lockdep_class(irq, chip->lock_key); |
Linus Walleij | 7633fb9 | 2014-04-09 13:20:38 +0200 | [diff] [blame] | 1512 | irq_set_chip_and_handler(irq, chip->irqchip, chip->irq_handler); |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1513 | /* Chips that can sleep need nested thread handlers */ |
Octavian Purdila | 295494a | 2014-09-19 23:22:44 +0300 | [diff] [blame] | 1514 | if (chip->can_sleep && !chip->irq_not_threaded) |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1515 | irq_set_nested_thread(irq, 1); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1516 | irq_set_noprobe(irq); |
Rob Herring | 23393d4 | 2015-07-27 15:55:16 -0500 | [diff] [blame] | 1517 | |
Linus Walleij | 1333b90 | 2014-04-23 16:45:12 +0200 | [diff] [blame] | 1518 | /* |
| 1519 | * No set-up of the hardware will happen if IRQ_TYPE_NONE |
| 1520 | * is passed as default type. |
| 1521 | */ |
| 1522 | if (chip->irq_default_type != IRQ_TYPE_NONE) |
| 1523 | irq_set_irq_type(irq, chip->irq_default_type); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1524 | |
| 1525 | return 0; |
| 1526 | } |
| 1527 | |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1528 | static void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq) |
| 1529 | { |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1530 | struct gpio_chip *chip = d->host_data; |
| 1531 | |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1532 | if (chip->can_sleep) |
| 1533 | irq_set_nested_thread(irq, 0); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1534 | irq_set_chip_and_handler(irq, NULL, NULL); |
| 1535 | irq_set_chip_data(irq, NULL); |
| 1536 | } |
| 1537 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1538 | static const struct irq_domain_ops gpiochip_domain_ops = { |
| 1539 | .map = gpiochip_irq_map, |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1540 | .unmap = gpiochip_irq_unmap, |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1541 | /* Virtually all GPIO irqchips are twocell:ed */ |
| 1542 | .xlate = irq_domain_xlate_twocell, |
| 1543 | }; |
| 1544 | |
| 1545 | static int gpiochip_irq_reqres(struct irq_data *d) |
| 1546 | { |
| 1547 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 1548 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1549 | if (!try_module_get(chip->gpiodev->owner)) |
Grygorii Strashko | 5b76e79 | 2015-06-25 20:30:50 +0300 | [diff] [blame] | 1550 | return -ENODEV; |
| 1551 | |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 1552 | if (gpiochip_lock_as_irq(chip, d->hwirq)) { |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1553 | chip_err(chip, |
| 1554 | "unable to lock HW IRQ %lu for IRQ\n", |
| 1555 | d->hwirq); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1556 | module_put(chip->gpiodev->owner); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1557 | return -EINVAL; |
| 1558 | } |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
| 1562 | static void gpiochip_irq_relres(struct irq_data *d) |
| 1563 | { |
| 1564 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 1565 | |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 1566 | gpiochip_unlock_as_irq(chip, d->hwirq); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1567 | module_put(chip->gpiodev->owner); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1568 | } |
| 1569 | |
| 1570 | static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset) |
| 1571 | { |
| 1572 | return irq_find_mapping(chip->irqdomain, offset); |
| 1573 | } |
| 1574 | |
| 1575 | /** |
| 1576 | * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip |
| 1577 | * @gpiochip: the gpiochip to remove the irqchip from |
| 1578 | * |
| 1579 | * This is called only from gpiochip_remove() |
| 1580 | */ |
| 1581 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) |
| 1582 | { |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1583 | unsigned int offset; |
| 1584 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 1585 | acpi_gpiochip_free_interrupts(gpiochip); |
| 1586 | |
Dmitry Eremin-Solenikov | 25e4fe9 | 2015-05-12 20:12:23 +0300 | [diff] [blame] | 1587 | if (gpiochip->irq_parent) { |
| 1588 | irq_set_chained_handler(gpiochip->irq_parent, NULL); |
| 1589 | irq_set_handler_data(gpiochip->irq_parent, NULL); |
| 1590 | } |
| 1591 | |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1592 | /* Remove all IRQ mappings and delete the domain */ |
| 1593 | if (gpiochip->irqdomain) { |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1594 | for (offset = 0; offset < gpiochip->ngpio; offset++) { |
| 1595 | if (!gpiochip_irqchip_irq_valid(gpiochip, offset)) |
| 1596 | continue; |
Grygorii Strashko | e389338 | 2014-09-25 19:09:23 +0300 | [diff] [blame] | 1597 | irq_dispose_mapping( |
| 1598 | irq_find_mapping(gpiochip->irqdomain, offset)); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1599 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1600 | irq_domain_remove(gpiochip->irqdomain); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1601 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1602 | |
| 1603 | if (gpiochip->irqchip) { |
| 1604 | gpiochip->irqchip->irq_request_resources = NULL; |
| 1605 | gpiochip->irqchip->irq_release_resources = NULL; |
| 1606 | gpiochip->irqchip = NULL; |
| 1607 | } |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1608 | |
| 1609 | gpiochip_irqchip_free_valid_mask(gpiochip); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1610 | } |
| 1611 | |
| 1612 | /** |
| 1613 | * gpiochip_irqchip_add() - adds an irqchip to a gpiochip |
| 1614 | * @gpiochip: the gpiochip to add the irqchip to |
| 1615 | * @irqchip: the irqchip to add to the gpiochip |
| 1616 | * @first_irq: if not dynamically assigned, the base (first) IRQ to |
| 1617 | * allocate gpiochip irqs from |
| 1618 | * @handler: the irq handler to use (often a predefined irq core function) |
Linus Walleij | 1333b90 | 2014-04-23 16:45:12 +0200 | [diff] [blame] | 1619 | * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE |
| 1620 | * to have the core avoid setting up any default type in the hardware. |
Grygorii Strashko | a0a8bcf | 2015-08-17 15:35:23 +0300 | [diff] [blame] | 1621 | * @lock_key: lockdep class |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1622 | * |
| 1623 | * This function closely associates a certain irqchip with a certain |
| 1624 | * gpiochip, providing an irq domain to translate the local IRQs to |
| 1625 | * global irqs in the gpiolib core, and making sure that the gpiochip |
| 1626 | * is passed as chip data to all related functions. Driver callbacks |
Linus Walleij | 09dd5f9 | 2015-12-07 15:31:58 +0100 | [diff] [blame] | 1627 | * need to use gpiochip_get_data() to get their local state containers back |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1628 | * from the gpiochip passed as chip data. An irqdomain will be stored |
| 1629 | * in the gpiochip that shall be used by the driver to handle IRQ number |
| 1630 | * translation. The gpiochip will need to be initialized and registered |
| 1631 | * before calling this function. |
| 1632 | * |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1633 | * This function will handle two cell:ed simple IRQs and assumes all |
| 1634 | * the pins on the gpiochip can generate a unique IRQ. Everything else |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1635 | * need to be open coded. |
| 1636 | */ |
Grygorii Strashko | a0a8bcf | 2015-08-17 15:35:23 +0300 | [diff] [blame] | 1637 | int _gpiochip_irqchip_add(struct gpio_chip *gpiochip, |
| 1638 | struct irq_chip *irqchip, |
| 1639 | unsigned int first_irq, |
| 1640 | irq_flow_handler_t handler, |
| 1641 | unsigned int type, |
| 1642 | struct lock_class_key *lock_key) |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1643 | { |
| 1644 | struct device_node *of_node; |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1645 | bool irq_base_set = false; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1646 | unsigned int offset; |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1647 | unsigned irq_base = 0; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1648 | |
| 1649 | if (!gpiochip || !irqchip) |
| 1650 | return -EINVAL; |
| 1651 | |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 1652 | if (!gpiochip->parent) { |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1653 | pr_err("missing gpiochip .dev parent pointer\n"); |
| 1654 | return -EINVAL; |
| 1655 | } |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 1656 | of_node = gpiochip->parent->of_node; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1657 | #ifdef CONFIG_OF_GPIO |
| 1658 | /* |
Colin Cronin | 20a8a96 | 2015-05-18 11:41:43 -0700 | [diff] [blame] | 1659 | * If the gpiochip has an assigned OF node this takes precedence |
Bamvor Jian Zhang | c88402c | 2015-11-18 17:07:07 +0800 | [diff] [blame] | 1660 | * FIXME: get rid of this and use gpiochip->parent->of_node |
| 1661 | * everywhere |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1662 | */ |
| 1663 | if (gpiochip->of_node) |
| 1664 | of_node = gpiochip->of_node; |
| 1665 | #endif |
Marc Zyngier | 332e99d | 2016-09-07 09:12:11 +0100 | [diff] [blame] | 1666 | /* |
Mika Westerberg | 0a1e005 | 2016-09-12 14:29:51 +0300 | [diff] [blame] | 1667 | * Specifying a default trigger is a terrible idea if DT or ACPI is |
Marc Zyngier | 332e99d | 2016-09-07 09:12:11 +0100 | [diff] [blame] | 1668 | * used to configure the interrupts, as you may end-up with |
| 1669 | * conflicting triggers. Tell the user, and reset to NONE. |
| 1670 | */ |
| 1671 | if (WARN(of_node && type != IRQ_TYPE_NONE, |
| 1672 | "%s: Ignoring %d default trigger\n", of_node->full_name, type)) |
| 1673 | type = IRQ_TYPE_NONE; |
Mika Westerberg | 0a1e005 | 2016-09-12 14:29:51 +0300 | [diff] [blame] | 1674 | if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) { |
| 1675 | acpi_handle_warn(ACPI_HANDLE(gpiochip->parent), |
| 1676 | "Ignoring %d default trigger\n", type); |
| 1677 | type = IRQ_TYPE_NONE; |
| 1678 | } |
Marc Zyngier | 332e99d | 2016-09-07 09:12:11 +0100 | [diff] [blame] | 1679 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1680 | gpiochip->irqchip = irqchip; |
| 1681 | gpiochip->irq_handler = handler; |
| 1682 | gpiochip->irq_default_type = type; |
| 1683 | gpiochip->to_irq = gpiochip_to_irq; |
Grygorii Strashko | a0a8bcf | 2015-08-17 15:35:23 +0300 | [diff] [blame] | 1684 | gpiochip->lock_key = lock_key; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1685 | gpiochip->irqdomain = irq_domain_add_simple(of_node, |
| 1686 | gpiochip->ngpio, first_irq, |
| 1687 | &gpiochip_domain_ops, gpiochip); |
| 1688 | if (!gpiochip->irqdomain) { |
| 1689 | gpiochip->irqchip = NULL; |
| 1690 | return -EINVAL; |
| 1691 | } |
Rabin Vincent | 8b67a1f | 2015-07-31 14:48:56 +0200 | [diff] [blame] | 1692 | |
| 1693 | /* |
| 1694 | * It is possible for a driver to override this, but only if the |
| 1695 | * alternative functions are both implemented. |
| 1696 | */ |
| 1697 | if (!irqchip->irq_request_resources && |
| 1698 | !irqchip->irq_release_resources) { |
| 1699 | irqchip->irq_request_resources = gpiochip_irq_reqres; |
| 1700 | irqchip->irq_release_resources = gpiochip_irq_relres; |
| 1701 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1702 | |
| 1703 | /* |
| 1704 | * Prepare the mapping since the irqchip shall be orthogonal to |
| 1705 | * any gpiochip calls. If the first_irq was zero, this is |
| 1706 | * necessary to allocate descriptors for all IRQs. |
| 1707 | */ |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1708 | for (offset = 0; offset < gpiochip->ngpio; offset++) { |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1709 | if (!gpiochip_irqchip_irq_valid(gpiochip, offset)) |
| 1710 | continue; |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1711 | irq_base = irq_create_mapping(gpiochip->irqdomain, offset); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1712 | if (!irq_base_set) { |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1713 | /* |
| 1714 | * Store the base into the gpiochip to be used when |
| 1715 | * unmapping the irqs. |
| 1716 | */ |
| 1717 | gpiochip->irq_base = irq_base; |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1718 | irq_base_set = true; |
| 1719 | } |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1720 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1721 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 1722 | acpi_gpiochip_request_interrupts(gpiochip); |
| 1723 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1724 | return 0; |
| 1725 | } |
Grygorii Strashko | a0a8bcf | 2015-08-17 15:35:23 +0300 | [diff] [blame] | 1726 | EXPORT_SYMBOL_GPL(_gpiochip_irqchip_add); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1727 | |
| 1728 | #else /* CONFIG_GPIOLIB_IRQCHIP */ |
| 1729 | |
| 1730 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {} |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1731 | static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip) |
| 1732 | { |
| 1733 | return 0; |
| 1734 | } |
| 1735 | static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip) |
| 1736 | { } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1737 | |
| 1738 | #endif /* CONFIG_GPIOLIB_IRQCHIP */ |
| 1739 | |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 1740 | /** |
| 1741 | * gpiochip_generic_request() - request the gpio function for a pin |
| 1742 | * @chip: the gpiochip owning the GPIO |
| 1743 | * @offset: the offset of the GPIO to request for GPIO function |
| 1744 | */ |
| 1745 | int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset) |
| 1746 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1747 | return pinctrl_request_gpio(chip->gpiodev->base + offset); |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 1748 | } |
| 1749 | EXPORT_SYMBOL_GPL(gpiochip_generic_request); |
| 1750 | |
| 1751 | /** |
| 1752 | * gpiochip_generic_free() - free the gpio function from a pin |
| 1753 | * @chip: the gpiochip to request the gpio function for |
| 1754 | * @offset: the offset of the GPIO to free from GPIO function |
| 1755 | */ |
| 1756 | void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset) |
| 1757 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1758 | pinctrl_free_gpio(chip->gpiodev->base + offset); |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 1759 | } |
| 1760 | EXPORT_SYMBOL_GPL(gpiochip_generic_free); |
| 1761 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1762 | #ifdef CONFIG_PINCTRL |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 1763 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1764 | /** |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1765 | * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping |
| 1766 | * @chip: the gpiochip to add the range for |
Tomeu Vizoso | d32651f | 2015-06-17 15:42:11 +0200 | [diff] [blame] | 1767 | * @pctldev: the pin controller to map to |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1768 | * @gpio_offset: the start offset in the current gpio_chip number space |
| 1769 | * @pin_group: name of the pin group inside the pin controller |
| 1770 | */ |
| 1771 | int gpiochip_add_pingroup_range(struct gpio_chip *chip, |
| 1772 | struct pinctrl_dev *pctldev, |
| 1773 | unsigned int gpio_offset, const char *pin_group) |
| 1774 | { |
| 1775 | struct gpio_pin_range *pin_range; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1776 | struct gpio_device *gdev = chip->gpiodev; |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1777 | int ret; |
| 1778 | |
| 1779 | pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); |
| 1780 | if (!pin_range) { |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 1781 | chip_err(chip, "failed to allocate pin ranges\n"); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1782 | return -ENOMEM; |
| 1783 | } |
| 1784 | |
| 1785 | /* Use local offset as range ID */ |
| 1786 | pin_range->range.id = gpio_offset; |
| 1787 | pin_range->range.gc = chip; |
| 1788 | pin_range->range.name = chip->label; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1789 | pin_range->range.base = gdev->base + gpio_offset; |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1790 | pin_range->pctldev = pctldev; |
| 1791 | |
| 1792 | ret = pinctrl_get_group_pins(pctldev, pin_group, |
| 1793 | &pin_range->range.pins, |
| 1794 | &pin_range->range.npins); |
Michal Nazarewicz | 61c6375 | 2013-11-13 21:20:39 +0100 | [diff] [blame] | 1795 | if (ret < 0) { |
| 1796 | kfree(pin_range); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1797 | return ret; |
Michal Nazarewicz | 61c6375 | 2013-11-13 21:20:39 +0100 | [diff] [blame] | 1798 | } |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1799 | |
| 1800 | pinctrl_add_gpio_range(pctldev, &pin_range->range); |
| 1801 | |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 1802 | chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n", |
| 1803 | gpio_offset, gpio_offset + pin_range->range.npins - 1, |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1804 | pinctrl_dev_get_devname(pctldev), pin_group); |
| 1805 | |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 1806 | list_add_tail(&pin_range->node, &gdev->pin_ranges); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 1807 | |
| 1808 | return 0; |
| 1809 | } |
| 1810 | EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range); |
| 1811 | |
| 1812 | /** |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1813 | * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping |
| 1814 | * @chip: the gpiochip to add the range for |
| 1815 | * @pinctrl_name: the dev_name() of the pin controller to map to |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 1816 | * @gpio_offset: the start offset in the current gpio_chip number space |
| 1817 | * @pin_offset: the start offset in the pin controller number space |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1818 | * @npins: the number of pins from the offset of each pin space (GPIO and |
| 1819 | * pin controller) to accumulate in this range |
| 1820 | */ |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 1821 | 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] | 1822 | unsigned int gpio_offset, unsigned int pin_offset, |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1823 | unsigned int npins) |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1824 | { |
| 1825 | struct gpio_pin_range *pin_range; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1826 | struct gpio_device *gdev = chip->gpiodev; |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 1827 | int ret; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1828 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1829 | pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1830 | if (!pin_range) { |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 1831 | chip_err(chip, "failed to allocate pin ranges\n"); |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 1832 | return -ENOMEM; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1833 | } |
| 1834 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1835 | /* Use local offset as range ID */ |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 1836 | pin_range->range.id = gpio_offset; |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1837 | pin_range->range.gc = chip; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1838 | pin_range->range.name = chip->label; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1839 | pin_range->range.base = gdev->base + gpio_offset; |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 1840 | pin_range->range.pin_base = pin_offset; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1841 | pin_range->range.npins = npins; |
Linus Walleij | 192c369 | 2012-11-20 14:03:37 +0100 | [diff] [blame] | 1842 | pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name, |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1843 | &pin_range->range); |
Linus Walleij | 8f23ca1 | 2012-11-20 14:56:25 +0100 | [diff] [blame] | 1844 | if (IS_ERR(pin_range->pctldev)) { |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 1845 | ret = PTR_ERR(pin_range->pctldev); |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 1846 | chip_err(chip, "could not create pin range\n"); |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1847 | kfree(pin_range); |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 1848 | return ret; |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1849 | } |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 1850 | chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n", |
| 1851 | gpio_offset, gpio_offset + npins - 1, |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 1852 | pinctl_name, |
| 1853 | pin_offset, pin_offset + npins - 1); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1854 | |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 1855 | list_add_tail(&pin_range->node, &gdev->pin_ranges); |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 1856 | |
| 1857 | return 0; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1858 | } |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 1859 | EXPORT_SYMBOL_GPL(gpiochip_add_pin_range); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1860 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1861 | /** |
| 1862 | * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings |
| 1863 | * @chip: the chip to remove all the mappings for |
| 1864 | */ |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1865 | void gpiochip_remove_pin_ranges(struct gpio_chip *chip) |
| 1866 | { |
| 1867 | struct gpio_pin_range *pin_range, *tmp; |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 1868 | struct gpio_device *gdev = chip->gpiodev; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1869 | |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 1870 | list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) { |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1871 | list_del(&pin_range->node); |
| 1872 | pinctrl_remove_gpio_range(pin_range->pctldev, |
| 1873 | &pin_range->range); |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 1874 | kfree(pin_range); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1875 | } |
| 1876 | } |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 1877 | EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges); |
| 1878 | |
| 1879 | #endif /* CONFIG_PINCTRL */ |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1880 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1881 | /* These "optional" allocation calls help prevent drivers from stomping |
| 1882 | * on each other, and help provide better diagnostics in debugfs. |
| 1883 | * They're called even less than the "set direction" calls. |
| 1884 | */ |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1885 | static int __gpiod_request(struct gpio_desc *desc, const char *label) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1886 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1887 | struct gpio_chip *chip = desc->gdev->chip; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1888 | int status; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1889 | unsigned long flags; |
| 1890 | |
| 1891 | spin_lock_irqsave(&gpio_lock, flags); |
| 1892 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1893 | /* NOTE: gpio_request() can be called in early boot, |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 1894 | * before IRQs are enabled, for non-sleeping (SOC) GPIOs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1895 | */ |
| 1896 | |
| 1897 | if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) { |
| 1898 | desc_set_label(desc, label ? : "?"); |
| 1899 | status = 0; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 1900 | } else { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1901 | status = -EBUSY; |
Magnus Damm | 7460db5 | 2009-01-29 14:25:12 -0800 | [diff] [blame] | 1902 | goto done; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 1903 | } |
| 1904 | |
| 1905 | if (chip->request) { |
| 1906 | /* chip->request may sleep */ |
| 1907 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1908 | status = chip->request(chip, gpio_chip_hwgpio(desc)); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 1909 | spin_lock_irqsave(&gpio_lock, flags); |
| 1910 | |
| 1911 | if (status < 0) { |
| 1912 | desc_set_label(desc, NULL); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 1913 | clear_bit(FLAG_REQUESTED, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 1914 | goto done; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 1915 | } |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 1916 | } |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 1917 | if (chip->get_direction) { |
| 1918 | /* chip->get_direction may sleep */ |
| 1919 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1920 | gpiod_get_direction(desc); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 1921 | spin_lock_irqsave(&gpio_lock, flags); |
| 1922 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1923 | done: |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1924 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 1925 | return status; |
| 1926 | } |
| 1927 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1928 | /* |
| 1929 | * This descriptor validation needs to be inserted verbatim into each |
| 1930 | * function taking a descriptor, so we need to use a preprocessor |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 1931 | * macro to avoid endless duplication. If the desc is NULL it is an |
| 1932 | * optional GPIO and calls should just bail out. |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1933 | */ |
| 1934 | #define VALIDATE_DESC(desc) do { \ |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 1935 | if (!desc) \ |
| 1936 | return 0; \ |
Linus Walleij | bfbbe44 | 2016-06-16 11:55:55 +0200 | [diff] [blame] | 1937 | if (IS_ERR(desc)) { \ |
| 1938 | pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \ |
| 1939 | return PTR_ERR(desc); \ |
| 1940 | } \ |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 1941 | if (!desc->gdev) { \ |
Linus Walleij | bfbbe44 | 2016-06-16 11:55:55 +0200 | [diff] [blame] | 1942 | pr_warn("%s: invalid GPIO (no device)\n", __func__); \ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1943 | return -EINVAL; \ |
| 1944 | } \ |
| 1945 | if ( !desc->gdev->chip ) { \ |
| 1946 | dev_warn(&desc->gdev->dev, \ |
| 1947 | "%s: backing chip is gone\n", __func__); \ |
| 1948 | return 0; \ |
| 1949 | } } while (0) |
| 1950 | |
| 1951 | #define VALIDATE_DESC_VOID(desc) do { \ |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 1952 | if (!desc) \ |
| 1953 | return; \ |
Linus Walleij | bfbbe44 | 2016-06-16 11:55:55 +0200 | [diff] [blame] | 1954 | if (IS_ERR(desc)) { \ |
| 1955 | pr_warn("%s: invalid GPIO (errorpointer)\n", __func__); \ |
| 1956 | return; \ |
| 1957 | } \ |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 1958 | if (!desc->gdev) { \ |
Linus Walleij | bfbbe44 | 2016-06-16 11:55:55 +0200 | [diff] [blame] | 1959 | pr_warn("%s: invalid GPIO (no device)\n", __func__); \ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1960 | return; \ |
| 1961 | } \ |
| 1962 | if (!desc->gdev->chip) { \ |
| 1963 | dev_warn(&desc->gdev->dev, \ |
| 1964 | "%s: backing chip is gone\n", __func__); \ |
| 1965 | return; \ |
| 1966 | } } while (0) |
| 1967 | |
| 1968 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 1969 | int gpiod_request(struct gpio_desc *desc, const char *label) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1970 | { |
| 1971 | int status = -EPROBE_DEFER; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1972 | struct gpio_device *gdev; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1973 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1974 | VALIDATE_DESC(desc); |
| 1975 | gdev = desc->gdev; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1976 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1977 | if (try_module_get(gdev->owner)) { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1978 | status = __gpiod_request(desc, label); |
| 1979 | if (status < 0) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1980 | module_put(gdev->owner); |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 1981 | else |
| 1982 | get_device(&gdev->dev); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1983 | } |
| 1984 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1985 | if (status) |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 1986 | gpiod_dbg(desc, "%s: status %d\n", __func__, status); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1987 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1988 | return status; |
| 1989 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1990 | |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1991 | static bool __gpiod_free(struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1992 | { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 1993 | bool ret = false; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1994 | unsigned long flags; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 1995 | struct gpio_chip *chip; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1996 | |
Uwe Kleine-König | 3d599d1 | 2008-10-15 22:03:12 -0700 | [diff] [blame] | 1997 | might_sleep(); |
| 1998 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 1999 | gpiod_unexport(desc); |
David Brownell | d8f388d | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 2000 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2001 | spin_lock_irqsave(&gpio_lock, flags); |
| 2002 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2003 | chip = desc->gdev->chip; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2004 | if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) { |
| 2005 | if (chip->free) { |
| 2006 | spin_unlock_irqrestore(&gpio_lock, flags); |
David Brownell | 9c4ba94 | 2010-08-10 18:02:24 -0700 | [diff] [blame] | 2007 | might_sleep_if(chip->can_sleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2008 | chip->free(chip, gpio_chip_hwgpio(desc)); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2009 | spin_lock_irqsave(&gpio_lock, flags); |
| 2010 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2011 | desc_set_label(desc, NULL); |
Jani Nikula | 0769746 | 2009-12-15 16:46:20 -0800 | [diff] [blame] | 2012 | clear_bit(FLAG_ACTIVE_LOW, &desc->flags); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2013 | clear_bit(FLAG_REQUESTED, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2014 | clear_bit(FLAG_OPEN_DRAIN, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2015 | clear_bit(FLAG_OPEN_SOURCE, &desc->flags); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 2016 | clear_bit(FLAG_IS_HOGGED, &desc->flags); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2017 | ret = true; |
| 2018 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2019 | |
| 2020 | spin_unlock_irqrestore(&gpio_lock, flags); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2021 | return ret; |
| 2022 | } |
| 2023 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 2024 | void gpiod_free(struct gpio_desc *desc) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2025 | { |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 2026 | if (desc && desc->gdev && __gpiod_free(desc)) { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2027 | module_put(desc->gdev->owner); |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 2028 | put_device(&desc->gdev->dev); |
| 2029 | } else { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2030 | WARN_ON(extra_checks); |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 2031 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2032 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2033 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2034 | /** |
| 2035 | * gpiochip_is_requested - return string iff signal was requested |
| 2036 | * @chip: controller managing the signal |
| 2037 | * @offset: of signal within controller's 0..(ngpio - 1) range |
| 2038 | * |
| 2039 | * Returns NULL if the GPIO is not currently requested, else a string. |
Alexandre Courbot | 9c8318f | 2014-07-01 14:45:14 +0900 | [diff] [blame] | 2040 | * The string returned is the label passed to gpio_request(); if none has been |
| 2041 | * passed it is a meaningless, non-NULL constant. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2042 | * |
| 2043 | * This function is for use by GPIO controller drivers. The label can |
| 2044 | * help with diagnostics, and knowing that the signal is used as a GPIO |
| 2045 | * can help avoid accidentally multiplexing it to another controller. |
| 2046 | */ |
| 2047 | const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset) |
| 2048 | { |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 2049 | struct gpio_desc *desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2050 | |
Dirk Behme | 48b5953 | 2015-08-18 18:02:32 +0200 | [diff] [blame] | 2051 | if (offset >= chip->ngpio) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2052 | return NULL; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 2053 | |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 2054 | desc = &chip->gpiodev->descs[offset]; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 2055 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2056 | if (test_bit(FLAG_REQUESTED, &desc->flags) == 0) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2057 | return NULL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2058 | return desc->label; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2059 | } |
| 2060 | EXPORT_SYMBOL_GPL(gpiochip_is_requested); |
| 2061 | |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2062 | /** |
| 2063 | * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor |
| 2064 | * @desc: GPIO descriptor to request |
| 2065 | * @label: label for the GPIO |
| 2066 | * |
| 2067 | * Function allows GPIO chip drivers to request and use their own GPIO |
| 2068 | * descriptors via gpiolib API. Difference to gpiod_request() is that this |
| 2069 | * function will not increase reference count of the GPIO chip module. This |
| 2070 | * allows the GPIO chip module to be unloaded as needed (we assume that the |
| 2071 | * GPIO chip driver handles freeing the GPIOs it has requested). |
| 2072 | */ |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2073 | struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, |
| 2074 | const char *label) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2075 | { |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2076 | struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum); |
| 2077 | int err; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2078 | |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2079 | if (IS_ERR(desc)) { |
| 2080 | chip_err(chip, "failed to get GPIO descriptor\n"); |
| 2081 | return desc; |
| 2082 | } |
| 2083 | |
| 2084 | err = __gpiod_request(desc, label); |
| 2085 | if (err < 0) |
| 2086 | return ERR_PTR(err); |
| 2087 | |
| 2088 | return desc; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2089 | } |
Guenter Roeck | f7d4ad9 | 2014-07-22 08:01:01 -0700 | [diff] [blame] | 2090 | EXPORT_SYMBOL_GPL(gpiochip_request_own_desc); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2091 | |
| 2092 | /** |
| 2093 | * gpiochip_free_own_desc - Free GPIO requested by the chip driver |
| 2094 | * @desc: GPIO descriptor to free |
| 2095 | * |
| 2096 | * Function frees the given GPIO requested previously with |
| 2097 | * gpiochip_request_own_desc(). |
| 2098 | */ |
| 2099 | void gpiochip_free_own_desc(struct gpio_desc *desc) |
| 2100 | { |
| 2101 | if (desc) |
| 2102 | __gpiod_free(desc); |
| 2103 | } |
Guenter Roeck | f7d4ad9 | 2014-07-22 08:01:01 -0700 | [diff] [blame] | 2104 | EXPORT_SYMBOL_GPL(gpiochip_free_own_desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2105 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2106 | /* |
| 2107 | * Drivers MUST set GPIO direction before making get/set calls. In |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2108 | * some cases this is done in early boot, before IRQs are enabled. |
| 2109 | * |
| 2110 | * As a rule these aren't called more than once (except for drivers |
| 2111 | * using the open-drain emulation idiom) so these are natural places |
| 2112 | * to accumulate extra debugging checks. Note that we can't (yet) |
| 2113 | * rely on gpio_request() having been called beforehand. |
| 2114 | */ |
| 2115 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2116 | /** |
| 2117 | * gpiod_direction_input - set the GPIO direction to input |
| 2118 | * @desc: GPIO to set to input |
| 2119 | * |
| 2120 | * Set the direction of the passed GPIO to input, such as gpiod_get_value() can |
| 2121 | * be called safely on it. |
| 2122 | * |
| 2123 | * Return 0 in case of success, else an error code. |
| 2124 | */ |
| 2125 | int gpiod_direction_input(struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2126 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2127 | struct gpio_chip *chip; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2128 | int status = -EINVAL; |
| 2129 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2130 | VALIDATE_DESC(desc); |
| 2131 | chip = desc->gdev->chip; |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 2132 | |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2133 | if (!chip->get || !chip->direction_input) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2134 | gpiod_warn(desc, |
| 2135 | "%s: missing get() or direction_input() operations\n", |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 2136 | __func__); |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2137 | return -EIO; |
| 2138 | } |
| 2139 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 2140 | status = chip->direction_input(chip, gpio_chip_hwgpio(desc)); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2141 | if (status == 0) |
| 2142 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 2143 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2144 | trace_gpio_direction(desc_to_gpio(desc), 1, status); |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 2145 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2146 | return status; |
| 2147 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2148 | EXPORT_SYMBOL_GPL(gpiod_direction_input); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2149 | |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2150 | static int _gpiod_direction_output_raw(struct gpio_desc *desc, int value) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2151 | { |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2152 | struct gpio_chip *gc = desc->gdev->chip; |
| 2153 | int ret; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2154 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2155 | /* GPIOs used for IRQs shall not be set as output */ |
| 2156 | if (test_bit(FLAG_USED_AS_IRQ, &desc->flags)) { |
| 2157 | gpiod_err(desc, |
| 2158 | "%s: tried to set a GPIO tied to an IRQ as output\n", |
| 2159 | __func__); |
| 2160 | return -EIO; |
| 2161 | } |
| 2162 | |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2163 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) { |
| 2164 | /* First see if we can enable open drain in hardware */ |
| 2165 | if (gc->set_single_ended) { |
| 2166 | ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc), |
| 2167 | LINE_MODE_OPEN_DRAIN); |
| 2168 | if (!ret) |
| 2169 | goto set_output_value; |
| 2170 | } |
| 2171 | /* Emulate open drain by not actively driving the line high */ |
| 2172 | if (value) |
| 2173 | return gpiod_direction_input(desc); |
| 2174 | } |
| 2175 | else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) { |
| 2176 | if (gc->set_single_ended) { |
| 2177 | ret = gc->set_single_ended(gc, gpio_chip_hwgpio(desc), |
| 2178 | LINE_MODE_OPEN_SOURCE); |
| 2179 | if (!ret) |
| 2180 | goto set_output_value; |
| 2181 | } |
| 2182 | /* Emulate open source by not actively driving the line low */ |
| 2183 | if (!value) |
| 2184 | return gpiod_direction_input(desc); |
| 2185 | } else { |
| 2186 | /* Make sure to disable open drain/source hardware, if any */ |
| 2187 | if (gc->set_single_ended) |
| 2188 | gc->set_single_ended(gc, |
| 2189 | gpio_chip_hwgpio(desc), |
| 2190 | LINE_MODE_PUSH_PULL); |
| 2191 | } |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2192 | |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2193 | set_output_value: |
| 2194 | if (!gc->set || !gc->direction_output) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2195 | gpiod_warn(desc, |
| 2196 | "%s: missing set() or direction_output() operations\n", |
| 2197 | __func__); |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2198 | return -EIO; |
| 2199 | } |
| 2200 | |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2201 | ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), value); |
| 2202 | if (!ret) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2203 | set_bit(FLAG_IS_OUT, &desc->flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2204 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2205 | trace_gpio_direction(desc_to_gpio(desc), 0, ret); |
| 2206 | return ret; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2207 | } |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2208 | |
| 2209 | /** |
| 2210 | * gpiod_direction_output_raw - set the GPIO direction to output |
| 2211 | * @desc: GPIO to set to output |
| 2212 | * @value: initial output value of the GPIO |
| 2213 | * |
| 2214 | * Set the direction of the passed GPIO to output, such as gpiod_set_value() can |
| 2215 | * be called safely on it. The initial value of the output must be specified |
| 2216 | * as raw value on the physical line without regard for the ACTIVE_LOW status. |
| 2217 | * |
| 2218 | * Return 0 in case of success, else an error code. |
| 2219 | */ |
| 2220 | int gpiod_direction_output_raw(struct gpio_desc *desc, int value) |
| 2221 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2222 | VALIDATE_DESC(desc); |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2223 | return _gpiod_direction_output_raw(desc, value); |
| 2224 | } |
| 2225 | EXPORT_SYMBOL_GPL(gpiod_direction_output_raw); |
| 2226 | |
| 2227 | /** |
Rahul Bedarkar | 90df4fe | 2014-02-08 11:55:25 +0530 | [diff] [blame] | 2228 | * gpiod_direction_output - set the GPIO direction to output |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2229 | * @desc: GPIO to set to output |
| 2230 | * @value: initial output value of the GPIO |
| 2231 | * |
| 2232 | * Set the direction of the passed GPIO to output, such as gpiod_set_value() can |
| 2233 | * be called safely on it. The initial value of the output must be specified |
| 2234 | * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 2235 | * account. |
| 2236 | * |
| 2237 | * Return 0 in case of success, else an error code. |
| 2238 | */ |
| 2239 | int gpiod_direction_output(struct gpio_desc *desc, int value) |
| 2240 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2241 | VALIDATE_DESC(desc); |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2242 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2243 | value = !value; |
| 2244 | return _gpiod_direction_output_raw(desc, value); |
| 2245 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2246 | EXPORT_SYMBOL_GPL(gpiod_direction_output); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2247 | |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2248 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2249 | * gpiod_set_debounce - sets @debounce time for a @gpio |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2250 | * @gpio: the gpio to set debounce time |
| 2251 | * @debounce: debounce time is microseconds |
Linus Walleij | 65d8765 | 2013-09-04 14:17:08 +0200 | [diff] [blame] | 2252 | * |
| 2253 | * returns -ENOTSUPP if the controller does not support setting |
| 2254 | * debounce. |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2255 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2256 | int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce) |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2257 | { |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2258 | struct gpio_chip *chip; |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2259 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2260 | VALIDATE_DESC(desc); |
| 2261 | chip = desc->gdev->chip; |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2262 | if (!chip->set || !chip->set_debounce) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2263 | gpiod_dbg(desc, |
| 2264 | "%s: missing set() or set_debounce() operations\n", |
| 2265 | __func__); |
Linus Walleij | 65d8765 | 2013-09-04 14:17:08 +0200 | [diff] [blame] | 2266 | return -ENOTSUPP; |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2267 | } |
| 2268 | |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 2269 | return chip->set_debounce(chip, gpio_chip_hwgpio(desc), debounce); |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2270 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2271 | EXPORT_SYMBOL_GPL(gpiod_set_debounce); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2272 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2273 | /** |
| 2274 | * gpiod_is_active_low - test whether a GPIO is active-low or not |
| 2275 | * @desc: the gpio descriptor to test |
| 2276 | * |
| 2277 | * Returns 1 if the GPIO is active-low, 0 otherwise. |
| 2278 | */ |
| 2279 | int gpiod_is_active_low(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2280 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2281 | VALIDATE_DESC(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2282 | return test_bit(FLAG_ACTIVE_LOW, &desc->flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2283 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2284 | EXPORT_SYMBOL_GPL(gpiod_is_active_low); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2285 | |
| 2286 | /* I/O calls are only valid after configuration completed; the relevant |
| 2287 | * "is this a valid GPIO" error checks should already have been done. |
| 2288 | * |
| 2289 | * "Get" operations are often inlinable as reading a pin value register, |
| 2290 | * and masking the relevant bit in that register. |
| 2291 | * |
| 2292 | * When "set" operations are inlinable, they involve writing that mask to |
| 2293 | * one register to set a low value, or a different register to set it high. |
| 2294 | * Otherwise locking is needed, so there may be little value to inlining. |
| 2295 | * |
| 2296 | *------------------------------------------------------------------------ |
| 2297 | * |
| 2298 | * IMPORTANT!!! The hot paths -- get/set value -- assume that callers |
| 2299 | * have requested the GPIO. That can include implicit requesting by |
| 2300 | * a direction setting call. Marking a gpio as requested locks its chip |
| 2301 | * in memory, guaranteeing that these table lookups need no more locking |
| 2302 | * and that gpiochip_remove() will fail. |
| 2303 | * |
| 2304 | * REVISIT when debugging, consider adding some instrumentation to ensure |
| 2305 | * that the GPIO was actually requested. |
| 2306 | */ |
| 2307 | |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2308 | static int _gpiod_get_raw_value(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2309 | { |
| 2310 | struct gpio_chip *chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2311 | int offset; |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2312 | int value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2313 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2314 | chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2315 | offset = gpio_chip_hwgpio(desc); |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2316 | value = chip->get ? chip->get(chip, offset) : -EIO; |
Linus Walleij | 723a630 | 2015-12-21 23:10:12 +0100 | [diff] [blame] | 2317 | value = value < 0 ? value : !!value; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2318 | trace_gpio_value(desc_to_gpio(desc), 1, value); |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 2319 | return value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2320 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2321 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2322 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2323 | * gpiod_get_raw_value() - return a gpio's raw value |
| 2324 | * @desc: gpio whose value will be returned |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2325 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2326 | * Return the GPIO's raw value, i.e. the value of the physical line disregarding |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2327 | * its ACTIVE_LOW status, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2328 | * |
| 2329 | * This function should be called from contexts where we cannot sleep, and will |
| 2330 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2331 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2332 | int gpiod_get_raw_value(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2333 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2334 | VALIDATE_DESC(desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2335 | /* Should be using gpio_get_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2336 | WARN_ON(desc->gdev->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2337 | return _gpiod_get_raw_value(desc); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2338 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2339 | EXPORT_SYMBOL_GPL(gpiod_get_raw_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2340 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2341 | /** |
| 2342 | * gpiod_get_value() - return a gpio's value |
| 2343 | * @desc: gpio whose value will be returned |
| 2344 | * |
| 2345 | * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2346 | * account, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2347 | * |
| 2348 | * This function should be called from contexts where we cannot sleep, and will |
| 2349 | * complain if the GPIO chip functions potentially sleep. |
| 2350 | */ |
| 2351 | int gpiod_get_value(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2352 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2353 | int value; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2354 | |
| 2355 | VALIDATE_DESC(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2356 | /* Should be using gpio_get_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2357 | WARN_ON(desc->gdev->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2358 | |
| 2359 | value = _gpiod_get_raw_value(desc); |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2360 | if (value < 0) |
| 2361 | return value; |
| 2362 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2363 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2364 | value = !value; |
| 2365 | |
| 2366 | return value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2367 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2368 | EXPORT_SYMBOL_GPL(gpiod_get_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2369 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2370 | /* |
| 2371 | * _gpio_set_open_drain_value() - Set the open drain gpio's value. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2372 | * @desc: gpio descriptor whose state need to be set. |
Colin Cronin | 20a8a96 | 2015-05-18 11:41:43 -0700 | [diff] [blame] | 2373 | * @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] | 2374 | */ |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 2375 | 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] | 2376 | { |
| 2377 | int err = 0; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2378 | struct gpio_chip *chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2379 | int offset = gpio_chip_hwgpio(desc); |
| 2380 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2381 | if (value) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2382 | err = chip->direction_input(chip, offset); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2383 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2384 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2385 | } else { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2386 | err = chip->direction_output(chip, offset, 0); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2387 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2388 | set_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2389 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2390 | trace_gpio_direction(desc_to_gpio(desc), value, err); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2391 | if (err < 0) |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2392 | gpiod_err(desc, |
| 2393 | "%s: Error in set_value for open drain err %d\n", |
| 2394 | __func__, err); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2395 | } |
| 2396 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2397 | /* |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2398 | * _gpio_set_open_source_value() - Set the open source gpio's value. |
| 2399 | * @desc: gpio descriptor whose state need to be set. |
Colin Cronin | 20a8a96 | 2015-05-18 11:41:43 -0700 | [diff] [blame] | 2400 | * @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] | 2401 | */ |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 2402 | 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] | 2403 | { |
| 2404 | int err = 0; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2405 | struct gpio_chip *chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2406 | int offset = gpio_chip_hwgpio(desc); |
| 2407 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2408 | if (value) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2409 | err = chip->direction_output(chip, offset, 1); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2410 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2411 | set_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2412 | } else { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2413 | err = chip->direction_input(chip, offset); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2414 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2415 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2416 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2417 | trace_gpio_direction(desc_to_gpio(desc), !value, err); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2418 | if (err < 0) |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2419 | gpiod_err(desc, |
| 2420 | "%s: Error in set_value for open source err %d\n", |
| 2421 | __func__, err); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2422 | } |
| 2423 | |
Alexandre Courbot | 2360096 | 2014-03-11 15:52:09 +0900 | [diff] [blame] | 2424 | static void _gpiod_set_raw_value(struct gpio_desc *desc, bool value) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2425 | { |
| 2426 | struct gpio_chip *chip; |
| 2427 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2428 | chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2429 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
| 2430 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) |
| 2431 | _gpio_set_open_drain_value(desc, value); |
| 2432 | else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) |
| 2433 | _gpio_set_open_source_value(desc, value); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2434 | else |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2435 | chip->set(chip, gpio_chip_hwgpio(desc), value); |
| 2436 | } |
| 2437 | |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2438 | /* |
| 2439 | * set multiple outputs on the same chip; |
| 2440 | * use the chip's set_multiple function if available; |
| 2441 | * otherwise set the outputs sequentially; |
| 2442 | * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word |
| 2443 | * defines which outputs are to be changed |
| 2444 | * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word |
| 2445 | * defines the values the outputs specified by mask are to be set to |
| 2446 | */ |
| 2447 | static void gpio_chip_set_multiple(struct gpio_chip *chip, |
| 2448 | unsigned long *mask, unsigned long *bits) |
| 2449 | { |
| 2450 | if (chip->set_multiple) { |
| 2451 | chip->set_multiple(chip, mask, bits); |
| 2452 | } else { |
| 2453 | int i; |
| 2454 | for (i = 0; i < chip->ngpio; i++) { |
| 2455 | if (mask[BIT_WORD(i)] == 0) { |
| 2456 | /* no more set bits in this mask word; |
| 2457 | * skip ahead to the next word */ |
| 2458 | i = (BIT_WORD(i) + 1) * BITS_PER_LONG - 1; |
| 2459 | continue; |
| 2460 | } |
| 2461 | /* set outputs if the corresponding mask bit is set */ |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2462 | if (__test_and_clear_bit(i, mask)) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2463 | chip->set(chip, i, test_bit(i, bits)); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2464 | } |
| 2465 | } |
| 2466 | } |
| 2467 | |
Linus Walleij | 44c7288f | 2016-04-24 11:36:59 +0200 | [diff] [blame] | 2468 | void gpiod_set_array_value_complex(bool raw, bool can_sleep, |
| 2469 | unsigned int array_size, |
| 2470 | struct gpio_desc **desc_array, |
| 2471 | int *value_array) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2472 | { |
| 2473 | int i = 0; |
| 2474 | |
| 2475 | while (i < array_size) { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2476 | struct gpio_chip *chip = desc_array[i]->gdev->chip; |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2477 | unsigned long mask[BITS_TO_LONGS(chip->ngpio)]; |
| 2478 | unsigned long bits[BITS_TO_LONGS(chip->ngpio)]; |
| 2479 | int count = 0; |
| 2480 | |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2481 | if (!can_sleep) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2482 | WARN_ON(chip->can_sleep); |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2483 | |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2484 | memset(mask, 0, sizeof(mask)); |
| 2485 | do { |
| 2486 | struct gpio_desc *desc = desc_array[i]; |
| 2487 | int hwgpio = gpio_chip_hwgpio(desc); |
| 2488 | int value = value_array[i]; |
| 2489 | |
| 2490 | if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2491 | value = !value; |
| 2492 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
| 2493 | /* |
| 2494 | * collect all normal outputs belonging to the same chip |
| 2495 | * open drain and open source outputs are set individually |
| 2496 | */ |
| 2497 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) { |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2498 | _gpio_set_open_drain_value(desc, value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2499 | } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) { |
| 2500 | _gpio_set_open_source_value(desc, value); |
| 2501 | } else { |
| 2502 | __set_bit(hwgpio, mask); |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2503 | if (value) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2504 | __set_bit(hwgpio, bits); |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2505 | else |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2506 | __clear_bit(hwgpio, bits); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2507 | count++; |
| 2508 | } |
| 2509 | i++; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2510 | } while ((i < array_size) && |
| 2511 | (desc_array[i]->gdev->chip == chip)); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2512 | /* push collected bits to outputs */ |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 2513 | if (count != 0) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2514 | gpio_chip_set_multiple(chip, mask, bits); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2515 | } |
| 2516 | } |
| 2517 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2518 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2519 | * gpiod_set_raw_value() - assign a gpio's raw value |
| 2520 | * @desc: gpio whose value will be assigned |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2521 | * @value: value to assign |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2522 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2523 | * Set the raw value of the GPIO, i.e. the value of its physical line without |
| 2524 | * regard for its ACTIVE_LOW status. |
| 2525 | * |
| 2526 | * This function should be called from contexts where we cannot sleep, and will |
| 2527 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2528 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2529 | void gpiod_set_raw_value(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2530 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2531 | VALIDATE_DESC_VOID(desc); |
Geert Uytterhoeven | 1cfab8f | 2016-03-14 16:24:12 +0100 | [diff] [blame] | 2532 | /* Should be using gpiod_set_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2533 | WARN_ON(desc->gdev->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2534 | _gpiod_set_raw_value(desc, value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2535 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2536 | EXPORT_SYMBOL_GPL(gpiod_set_raw_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2537 | |
| 2538 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2539 | * gpiod_set_value() - assign a gpio's value |
| 2540 | * @desc: gpio whose value will be assigned |
| 2541 | * @value: value to assign |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2542 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2543 | * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 2544 | * account |
| 2545 | * |
| 2546 | * This function should be called from contexts where we cannot sleep, and will |
| 2547 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2548 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2549 | void gpiod_set_value(struct gpio_desc *desc, int value) |
| 2550 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2551 | VALIDATE_DESC_VOID(desc); |
Geert Uytterhoeven | 1cfab8f | 2016-03-14 16:24:12 +0100 | [diff] [blame] | 2552 | /* Should be using gpiod_set_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2553 | WARN_ON(desc->gdev->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2554 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2555 | value = !value; |
| 2556 | _gpiod_set_raw_value(desc, value); |
| 2557 | } |
| 2558 | EXPORT_SYMBOL_GPL(gpiod_set_value); |
| 2559 | |
| 2560 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2561 | * gpiod_set_raw_array_value() - assign values to an array of GPIOs |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2562 | * @array_size: number of elements in the descriptor / value arrays |
| 2563 | * @desc_array: array of GPIO descriptors whose values will be assigned |
| 2564 | * @value_array: array of values to assign |
| 2565 | * |
| 2566 | * Set the raw values of the GPIOs, i.e. the values of the physical lines |
| 2567 | * without regard for their ACTIVE_LOW status. |
| 2568 | * |
| 2569 | * This function should be called from contexts where we cannot sleep, and will |
| 2570 | * complain if the GPIO chip functions potentially sleep. |
| 2571 | */ |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2572 | void gpiod_set_raw_array_value(unsigned int array_size, |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2573 | struct gpio_desc **desc_array, int *value_array) |
| 2574 | { |
| 2575 | if (!desc_array) |
| 2576 | return; |
Linus Walleij | 44c7288f | 2016-04-24 11:36:59 +0200 | [diff] [blame] | 2577 | gpiod_set_array_value_complex(true, false, array_size, desc_array, |
| 2578 | value_array); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2579 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2580 | EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2581 | |
| 2582 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2583 | * gpiod_set_array_value() - assign values to an array of GPIOs |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2584 | * @array_size: number of elements in the descriptor / value arrays |
| 2585 | * @desc_array: array of GPIO descriptors whose values will be assigned |
| 2586 | * @value_array: array of values to assign |
| 2587 | * |
| 2588 | * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status |
| 2589 | * into account. |
| 2590 | * |
| 2591 | * This function should be called from contexts where we cannot sleep, and will |
| 2592 | * complain if the GPIO chip functions potentially sleep. |
| 2593 | */ |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2594 | void gpiod_set_array_value(unsigned int array_size, |
| 2595 | struct gpio_desc **desc_array, int *value_array) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2596 | { |
| 2597 | if (!desc_array) |
| 2598 | return; |
Linus Walleij | 44c7288f | 2016-04-24 11:36:59 +0200 | [diff] [blame] | 2599 | gpiod_set_array_value_complex(false, false, array_size, desc_array, |
| 2600 | value_array); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2601 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2602 | EXPORT_SYMBOL_GPL(gpiod_set_array_value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2603 | |
| 2604 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2605 | * gpiod_cansleep() - report whether gpio value access may sleep |
| 2606 | * @desc: gpio to check |
| 2607 | * |
| 2608 | */ |
| 2609 | int gpiod_cansleep(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2610 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2611 | VALIDATE_DESC(desc); |
| 2612 | return desc->gdev->chip->can_sleep; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2613 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2614 | EXPORT_SYMBOL_GPL(gpiod_cansleep); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2615 | |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 2616 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2617 | * gpiod_to_irq() - return the IRQ corresponding to a GPIO |
| 2618 | * @desc: gpio whose IRQ will be returned (already requested) |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 2619 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2620 | * Return the IRQ corresponding to the passed GPIO, or an error code in case of |
| 2621 | * error. |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 2622 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2623 | int gpiod_to_irq(const struct gpio_desc *desc) |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 2624 | { |
Linus Walleij | 4c37ce8 | 2016-05-02 13:13:10 +0200 | [diff] [blame] | 2625 | struct gpio_chip *chip; |
| 2626 | int offset; |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 2627 | |
Linus Walleij | 79bb71b | 2016-06-15 22:57:38 +0200 | [diff] [blame] | 2628 | /* |
| 2629 | * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics |
| 2630 | * requires this function to not return zero on an invalid descriptor |
| 2631 | * but rather a negative error number. |
| 2632 | */ |
Linus Walleij | bfbbe44 | 2016-06-16 11:55:55 +0200 | [diff] [blame] | 2633 | if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip) |
Linus Walleij | 79bb71b | 2016-06-15 22:57:38 +0200 | [diff] [blame] | 2634 | return -EINVAL; |
| 2635 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2636 | chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2637 | offset = gpio_chip_hwgpio(desc); |
Linus Walleij | 4c37ce8 | 2016-05-02 13:13:10 +0200 | [diff] [blame] | 2638 | if (chip->to_irq) { |
| 2639 | int retirq = chip->to_irq(chip, offset); |
| 2640 | |
| 2641 | /* Zero means NO_IRQ */ |
| 2642 | if (!retirq) |
| 2643 | return -ENXIO; |
| 2644 | |
| 2645 | return retirq; |
| 2646 | } |
| 2647 | return -ENXIO; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2648 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2649 | EXPORT_SYMBOL_GPL(gpiod_to_irq); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2650 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2651 | /** |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 2652 | * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 2653 | * @chip: the chip the GPIO to lock belongs to |
| 2654 | * @offset: the offset of the GPIO to lock as IRQ |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2655 | * |
| 2656 | * This is used directly by GPIO drivers that want to lock down |
Linus Walleij | f438acd | 2014-03-07 10:12:49 +0800 | [diff] [blame] | 2657 | * a certain GPIO line to be used for IRQs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2658 | */ |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 2659 | int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2660 | { |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 2661 | struct gpio_desc *desc; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2662 | |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 2663 | desc = gpiochip_get_desc(chip, offset); |
| 2664 | if (IS_ERR(desc)) |
| 2665 | return PTR_ERR(desc); |
| 2666 | |
| 2667 | /* Flush direction if something changed behind our back */ |
| 2668 | if (chip->get_direction) { |
| 2669 | int dir = chip->get_direction(chip, offset); |
| 2670 | |
| 2671 | if (dir) |
| 2672 | clear_bit(FLAG_IS_OUT, &desc->flags); |
| 2673 | else |
| 2674 | set_bit(FLAG_IS_OUT, &desc->flags); |
| 2675 | } |
| 2676 | |
| 2677 | if (test_bit(FLAG_IS_OUT, &desc->flags)) { |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 2678 | chip_err(chip, |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2679 | "%s: tried to flag a GPIO set as output for IRQ\n", |
| 2680 | __func__); |
| 2681 | return -EIO; |
| 2682 | } |
| 2683 | |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 2684 | set_bit(FLAG_USED_AS_IRQ, &desc->flags); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2685 | return 0; |
| 2686 | } |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 2687 | EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2688 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2689 | /** |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 2690 | * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 2691 | * @chip: the chip the GPIO to lock belongs to |
| 2692 | * @offset: the offset of the GPIO to lock as IRQ |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2693 | * |
| 2694 | * This is used directly by GPIO drivers that want to indicate |
| 2695 | * that a certain GPIO is no longer used exclusively for IRQ. |
| 2696 | */ |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 2697 | void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2698 | { |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 2699 | if (offset >= chip->ngpio) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2700 | return; |
| 2701 | |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 2702 | clear_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2703 | } |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 2704 | EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 2705 | |
Linus Walleij | 6cee382 | 2016-02-11 20:16:45 +0100 | [diff] [blame] | 2706 | bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset) |
| 2707 | { |
| 2708 | if (offset >= chip->ngpio) |
| 2709 | return false; |
| 2710 | |
| 2711 | return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags); |
| 2712 | } |
| 2713 | EXPORT_SYMBOL_GPL(gpiochip_line_is_irq); |
| 2714 | |
Linus Walleij | 143b65d | 2016-02-16 15:41:42 +0100 | [diff] [blame] | 2715 | bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset) |
| 2716 | { |
| 2717 | if (offset >= chip->ngpio) |
| 2718 | return false; |
| 2719 | |
| 2720 | return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags); |
| 2721 | } |
| 2722 | EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain); |
| 2723 | |
| 2724 | bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset) |
| 2725 | { |
| 2726 | if (offset >= chip->ngpio) |
| 2727 | return false; |
| 2728 | |
| 2729 | return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags); |
| 2730 | } |
| 2731 | EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source); |
| 2732 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2733 | /** |
| 2734 | * gpiod_get_raw_value_cansleep() - return a gpio's raw value |
| 2735 | * @desc: gpio whose value will be returned |
| 2736 | * |
| 2737 | * Return the GPIO's raw value, i.e. the value of the physical line disregarding |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2738 | * its ACTIVE_LOW status, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2739 | * |
| 2740 | * This function is to be called from contexts that can sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2741 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2742 | int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2743 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2744 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2745 | VALIDATE_DESC(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2746 | return _gpiod_get_raw_value(desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2747 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2748 | EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2749 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2750 | /** |
| 2751 | * gpiod_get_value_cansleep() - return a gpio's value |
| 2752 | * @desc: gpio whose value will be returned |
| 2753 | * |
| 2754 | * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2755 | * account, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2756 | * |
| 2757 | * This function is to be called from contexts that can sleep. |
| 2758 | */ |
| 2759 | int gpiod_get_value_cansleep(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2760 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2761 | int value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2762 | |
| 2763 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2764 | VALIDATE_DESC(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2765 | value = _gpiod_get_raw_value(desc); |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2766 | if (value < 0) |
| 2767 | return value; |
| 2768 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2769 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2770 | value = !value; |
| 2771 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2772 | return value; |
| 2773 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2774 | EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2775 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2776 | /** |
| 2777 | * gpiod_set_raw_value_cansleep() - assign a gpio's raw value |
| 2778 | * @desc: gpio whose value will be assigned |
| 2779 | * @value: value to assign |
| 2780 | * |
| 2781 | * Set the raw value of the GPIO, i.e. the value of its physical line without |
| 2782 | * regard for its ACTIVE_LOW status. |
| 2783 | * |
| 2784 | * This function is to be called from contexts that can sleep. |
| 2785 | */ |
| 2786 | void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2787 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2788 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2789 | VALIDATE_DESC_VOID(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2790 | _gpiod_set_raw_value(desc, value); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2791 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2792 | EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2793 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2794 | /** |
| 2795 | * gpiod_set_value_cansleep() - assign a gpio's value |
| 2796 | * @desc: gpio whose value will be assigned |
| 2797 | * @value: value to assign |
| 2798 | * |
| 2799 | * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 2800 | * account |
| 2801 | * |
| 2802 | * This function is to be called from contexts that can sleep. |
| 2803 | */ |
| 2804 | void gpiod_set_value_cansleep(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2805 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2806 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2807 | VALIDATE_DESC_VOID(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2808 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2809 | value = !value; |
| 2810 | _gpiod_set_raw_value(desc, value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2811 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2812 | EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2813 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2814 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2815 | * 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] | 2816 | * @array_size: number of elements in the descriptor / value arrays |
| 2817 | * @desc_array: array of GPIO descriptors whose values will be assigned |
| 2818 | * @value_array: array of values to assign |
| 2819 | * |
| 2820 | * Set the raw values of the GPIOs, i.e. the values of the physical lines |
| 2821 | * without regard for their ACTIVE_LOW status. |
| 2822 | * |
| 2823 | * This function is to be called from contexts that can sleep. |
| 2824 | */ |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2825 | void gpiod_set_raw_array_value_cansleep(unsigned int array_size, |
| 2826 | struct gpio_desc **desc_array, |
| 2827 | int *value_array) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2828 | { |
| 2829 | might_sleep_if(extra_checks); |
| 2830 | if (!desc_array) |
| 2831 | return; |
Linus Walleij | 44c7288f | 2016-04-24 11:36:59 +0200 | [diff] [blame] | 2832 | gpiod_set_array_value_complex(true, true, array_size, desc_array, |
| 2833 | value_array); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2834 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2835 | EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2836 | |
| 2837 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2838 | * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2839 | * @array_size: number of elements in the descriptor / value arrays |
| 2840 | * @desc_array: array of GPIO descriptors whose values will be assigned |
| 2841 | * @value_array: array of values to assign |
| 2842 | * |
| 2843 | * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status |
| 2844 | * into account. |
| 2845 | * |
| 2846 | * This function is to be called from contexts that can sleep. |
| 2847 | */ |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2848 | void gpiod_set_array_value_cansleep(unsigned int array_size, |
| 2849 | struct gpio_desc **desc_array, |
| 2850 | int *value_array) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2851 | { |
| 2852 | might_sleep_if(extra_checks); |
| 2853 | if (!desc_array) |
| 2854 | return; |
Linus Walleij | 44c7288f | 2016-04-24 11:36:59 +0200 | [diff] [blame] | 2855 | gpiod_set_array_value_complex(false, true, array_size, desc_array, |
| 2856 | value_array); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2857 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 2858 | EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 2859 | |
| 2860 | /** |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2861 | * gpiod_add_lookup_table() - register GPIO device consumers |
| 2862 | * @table: table of consumers to register |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2863 | */ |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2864 | void gpiod_add_lookup_table(struct gpiod_lookup_table *table) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2865 | { |
| 2866 | mutex_lock(&gpio_lookup_lock); |
| 2867 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2868 | list_add_tail(&table->list, &gpio_lookup_list); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2869 | |
| 2870 | mutex_unlock(&gpio_lookup_lock); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2871 | } |
| 2872 | |
Shobhit Kumar | be9015a | 2015-06-26 14:32:04 +0530 | [diff] [blame] | 2873 | /** |
| 2874 | * gpiod_remove_lookup_table() - unregister GPIO device consumers |
| 2875 | * @table: table of consumers to unregister |
| 2876 | */ |
| 2877 | void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) |
| 2878 | { |
| 2879 | mutex_lock(&gpio_lookup_lock); |
| 2880 | |
| 2881 | list_del(&table->list); |
| 2882 | |
| 2883 | mutex_unlock(&gpio_lookup_lock); |
| 2884 | } |
| 2885 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2886 | static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev) |
| 2887 | { |
| 2888 | const char *dev_id = dev ? dev_name(dev) : NULL; |
| 2889 | struct gpiod_lookup_table *table; |
| 2890 | |
| 2891 | mutex_lock(&gpio_lookup_lock); |
| 2892 | |
| 2893 | list_for_each_entry(table, &gpio_lookup_list, list) { |
| 2894 | if (table->dev_id && dev_id) { |
| 2895 | /* |
| 2896 | * Valid strings on both ends, must be identical to have |
| 2897 | * a match |
| 2898 | */ |
| 2899 | if (!strcmp(table->dev_id, dev_id)) |
| 2900 | goto found; |
| 2901 | } else { |
| 2902 | /* |
| 2903 | * One of the pointers is NULL, so both must be to have |
| 2904 | * a match |
| 2905 | */ |
| 2906 | if (dev_id == table->dev_id) |
| 2907 | goto found; |
| 2908 | } |
| 2909 | } |
| 2910 | table = NULL; |
| 2911 | |
| 2912 | found: |
| 2913 | mutex_unlock(&gpio_lookup_lock); |
| 2914 | return table; |
| 2915 | } |
| 2916 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2917 | 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] | 2918 | unsigned int idx, |
| 2919 | enum gpio_lookup_flags *flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2920 | { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 2921 | struct gpio_desc *desc = ERR_PTR(-ENOENT); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2922 | struct gpiod_lookup_table *table; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2923 | struct gpiod_lookup *p; |
| 2924 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2925 | table = gpiod_find_lookup_table(dev); |
| 2926 | if (!table) |
| 2927 | return desc; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2928 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2929 | for (p = &table->table[0]; p->chip_label; p++) { |
| 2930 | struct gpio_chip *chip; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2931 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2932 | /* idx must always match exactly */ |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2933 | if (p->idx != idx) |
| 2934 | continue; |
| 2935 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2936 | /* If the lookup entry has a con_id, require exact match */ |
| 2937 | if (p->con_id && (!con_id || strcmp(p->con_id, con_id))) |
| 2938 | continue; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2939 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2940 | chip = find_chip_by_name(p->chip_label); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2941 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2942 | if (!chip) { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 2943 | dev_err(dev, "cannot find GPIO chip %s\n", |
| 2944 | p->chip_label); |
| 2945 | return ERR_PTR(-ENODEV); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2946 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2947 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2948 | if (chip->ngpio <= p->chip_hwnum) { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 2949 | dev_err(dev, |
| 2950 | "requested GPIO %d is out of range [0..%d] for chip %s\n", |
| 2951 | idx, chip->ngpio, chip->label); |
| 2952 | return ERR_PTR(-EINVAL); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2953 | } |
| 2954 | |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 2955 | desc = gpiochip_get_desc(chip, p->chip_hwnum); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2956 | *flags = p->flags; |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 2957 | |
| 2958 | return desc; |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 2959 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 2960 | |
| 2961 | return desc; |
| 2962 | } |
| 2963 | |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 2964 | static int dt_gpio_count(struct device *dev, const char *con_id) |
| 2965 | { |
| 2966 | int ret; |
| 2967 | char propname[32]; |
| 2968 | unsigned int i; |
| 2969 | |
| 2970 | for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) { |
| 2971 | if (con_id) |
| 2972 | snprintf(propname, sizeof(propname), "%s-%s", |
| 2973 | con_id, gpio_suffixes[i]); |
| 2974 | else |
| 2975 | snprintf(propname, sizeof(propname), "%s", |
| 2976 | gpio_suffixes[i]); |
| 2977 | |
| 2978 | ret = of_gpio_named_count(dev->of_node, propname); |
| 2979 | if (ret >= 0) |
| 2980 | break; |
| 2981 | } |
| 2982 | return ret; |
| 2983 | } |
| 2984 | |
| 2985 | static int platform_gpio_count(struct device *dev, const char *con_id) |
| 2986 | { |
| 2987 | struct gpiod_lookup_table *table; |
| 2988 | struct gpiod_lookup *p; |
| 2989 | unsigned int count = 0; |
| 2990 | |
| 2991 | table = gpiod_find_lookup_table(dev); |
| 2992 | if (!table) |
| 2993 | return -ENOENT; |
| 2994 | |
| 2995 | for (p = &table->table[0]; p->chip_label; p++) { |
| 2996 | if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) || |
| 2997 | (!con_id && !p->con_id)) |
| 2998 | count++; |
| 2999 | } |
| 3000 | if (!count) |
| 3001 | return -ENOENT; |
| 3002 | |
| 3003 | return count; |
| 3004 | } |
| 3005 | |
| 3006 | /** |
| 3007 | * gpiod_count - return the number of GPIOs associated with a device / function |
| 3008 | * or -ENOENT if no GPIO has been assigned to the requested function |
| 3009 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 3010 | * @con_id: function within the GPIO consumer |
| 3011 | */ |
| 3012 | int gpiod_count(struct device *dev, const char *con_id) |
| 3013 | { |
| 3014 | int count = -ENOENT; |
| 3015 | |
| 3016 | if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) |
| 3017 | count = dt_gpio_count(dev, con_id); |
| 3018 | else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) |
| 3019 | count = acpi_gpio_count(dev, con_id); |
| 3020 | |
| 3021 | if (count < 0) |
| 3022 | count = platform_gpio_count(dev, con_id); |
| 3023 | |
| 3024 | return count; |
| 3025 | } |
| 3026 | EXPORT_SYMBOL_GPL(gpiod_count); |
| 3027 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3028 | /** |
Thierry Reding | 0879162 | 2014-04-25 16:54:22 +0200 | [diff] [blame] | 3029 | * gpiod_get - obtain a GPIO for a given GPIO function |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3030 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3031 | * @con_id: function within the GPIO consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3032 | * @flags: optional GPIO initialization flags |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3033 | * |
| 3034 | * Return the GPIO descriptor corresponding to the function con_id of device |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 3035 | * 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] | 3036 | * 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] | 3037 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3038 | struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3039 | enum gpiod_flags flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3040 | { |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3041 | return gpiod_get_index(dev, con_id, 0, flags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3042 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3043 | EXPORT_SYMBOL_GPL(gpiod_get); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3044 | |
| 3045 | /** |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3046 | * gpiod_get_optional - obtain an optional GPIO for a given GPIO function |
| 3047 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 3048 | * @con_id: function within the GPIO consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3049 | * @flags: optional GPIO initialization flags |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3050 | * |
| 3051 | * This is equivalent to gpiod_get(), except that when no GPIO was assigned to |
| 3052 | * the requested function it will return NULL. This is convenient for drivers |
| 3053 | * that need to handle optional GPIOs. |
| 3054 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3055 | struct gpio_desc *__must_check gpiod_get_optional(struct device *dev, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3056 | const char *con_id, |
| 3057 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3058 | { |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3059 | return gpiod_get_index_optional(dev, con_id, 0, flags); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3060 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3061 | EXPORT_SYMBOL_GPL(gpiod_get_optional); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3062 | |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3063 | |
| 3064 | /** |
| 3065 | * gpiod_configure_flags - helper function to configure a given GPIO |
| 3066 | * @desc: gpio whose value will be assigned |
| 3067 | * @con_id: function within the GPIO consumer |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 3068 | * @lflags: gpio_lookup_flags - returned from of_find_gpio() or |
| 3069 | * of_get_gpio_hog() |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3070 | * @dflags: gpiod_flags - optional GPIO initialization flags |
| 3071 | * |
| 3072 | * Return 0 on success, -ENOENT if no GPIO has been assigned to the |
| 3073 | * requested function and/or index, or another IS_ERR() code if an error |
| 3074 | * occurred while trying to acquire the GPIO. |
| 3075 | */ |
| 3076 | static int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id, |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 3077 | unsigned long lflags, enum gpiod_flags dflags) |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3078 | { |
| 3079 | int status; |
| 3080 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 3081 | if (lflags & GPIO_ACTIVE_LOW) |
| 3082 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
| 3083 | if (lflags & GPIO_OPEN_DRAIN) |
| 3084 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 3085 | if (lflags & GPIO_OPEN_SOURCE) |
| 3086 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
| 3087 | |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3088 | /* No particular flag request, return here... */ |
| 3089 | if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) { |
| 3090 | pr_debug("no flags found for %s\n", con_id); |
| 3091 | return 0; |
| 3092 | } |
| 3093 | |
| 3094 | /* Process flags */ |
| 3095 | if (dflags & GPIOD_FLAGS_BIT_DIR_OUT) |
| 3096 | status = gpiod_direction_output(desc, |
| 3097 | dflags & GPIOD_FLAGS_BIT_DIR_VAL); |
| 3098 | else |
| 3099 | status = gpiod_direction_input(desc); |
| 3100 | |
| 3101 | return status; |
| 3102 | } |
| 3103 | |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3104 | /** |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3105 | * gpiod_get_index - obtain a GPIO from a multi-index GPIO function |
Andy Shevchenko | fdd6a5f | 2013-12-05 11:26:26 +0200 | [diff] [blame] | 3106 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3107 | * @con_id: function within the GPIO consumer |
| 3108 | * @idx: index of the GPIO to obtain in the consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3109 | * @flags: optional GPIO initialization flags |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3110 | * |
| 3111 | * This variant of gpiod_get() allows to access GPIOs other than the first |
| 3112 | * defined one for functions that define several GPIOs. |
| 3113 | * |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 3114 | * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the |
| 3115 | * 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] | 3116 | * occurred while trying to acquire the GPIO. |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3117 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3118 | struct gpio_desc *__must_check gpiod_get_index(struct device *dev, |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3119 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3120 | unsigned int idx, |
| 3121 | enum gpiod_flags flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3122 | { |
Alexandre Courbot | 35c5d7f | 2013-11-23 19:34:50 +0900 | [diff] [blame] | 3123 | struct gpio_desc *desc = NULL; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3124 | int status; |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3125 | enum gpio_lookup_flags lookupflags = 0; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3126 | |
| 3127 | dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id); |
| 3128 | |
Rafael J. Wysocki | 4d8440b | 2015-03-10 23:08:57 +0100 | [diff] [blame] | 3129 | if (dev) { |
| 3130 | /* Using device tree? */ |
| 3131 | if (IS_ENABLED(CONFIG_OF) && dev->of_node) { |
| 3132 | dev_dbg(dev, "using device tree for GPIO lookup\n"); |
| 3133 | desc = of_find_gpio(dev, con_id, idx, &lookupflags); |
| 3134 | } else if (ACPI_COMPANION(dev)) { |
| 3135 | dev_dbg(dev, "using ACPI for GPIO lookup\n"); |
Dmitry Torokhov | 2548753 | 2016-03-24 10:50:25 -0700 | [diff] [blame] | 3136 | desc = acpi_find_gpio(dev, con_id, idx, flags, &lookupflags); |
Rafael J. Wysocki | 4d8440b | 2015-03-10 23:08:57 +0100 | [diff] [blame] | 3137 | } |
Alexandre Courbot | 35c5d7f | 2013-11-23 19:34:50 +0900 | [diff] [blame] | 3138 | } |
| 3139 | |
| 3140 | /* |
| 3141 | * Either we are not using DT or ACPI, or their lookup did not return |
| 3142 | * a result. In that case, use platform lookup as a fallback. |
| 3143 | */ |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 3144 | if (!desc || desc == ERR_PTR(-ENOENT)) { |
Alexander Shiyan | 43a8785 | 2014-09-19 11:39:25 +0400 | [diff] [blame] | 3145 | dev_dbg(dev, "using lookup tables for GPIO lookup\n"); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3146 | desc = gpiod_find(dev, con_id, idx, &lookupflags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3147 | } |
| 3148 | |
| 3149 | if (IS_ERR(desc)) { |
Heikki Krogerus | 351cfe0 | 2013-11-29 15:47:34 +0200 | [diff] [blame] | 3150 | dev_dbg(dev, "lookup for GPIO %s failed\n", con_id); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3151 | return desc; |
| 3152 | } |
| 3153 | |
| 3154 | status = gpiod_request(desc, con_id); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3155 | if (status < 0) |
| 3156 | return ERR_PTR(status); |
| 3157 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 3158 | status = gpiod_configure_flags(desc, con_id, lookupflags, flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3159 | if (status < 0) { |
| 3160 | dev_dbg(dev, "setup of GPIO %s failed\n", con_id); |
| 3161 | gpiod_put(desc); |
| 3162 | return ERR_PTR(status); |
| 3163 | } |
| 3164 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3165 | return desc; |
| 3166 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3167 | EXPORT_SYMBOL_GPL(gpiod_get_index); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3168 | |
| 3169 | /** |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3170 | * fwnode_get_named_gpiod - obtain a GPIO from firmware node |
| 3171 | * @fwnode: handle of the firmware node |
| 3172 | * @propname: name of the firmware property representing the GPIO |
| 3173 | * |
| 3174 | * This function can be used for drivers that get their configuration |
| 3175 | * from firmware. |
| 3176 | * |
| 3177 | * Function properly finds the corresponding GPIO using whatever is the |
| 3178 | * underlying firmware interface and then makes sure that the GPIO |
| 3179 | * descriptor is requested before it is returned to the caller. |
| 3180 | * |
| 3181 | * In case of error an ERR_PTR() is returned. |
| 3182 | */ |
| 3183 | struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode, |
| 3184 | const char *propname) |
| 3185 | { |
| 3186 | struct gpio_desc *desc = ERR_PTR(-ENODEV); |
| 3187 | bool active_low = false; |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 3188 | bool single_ended = false; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3189 | int ret; |
| 3190 | |
| 3191 | if (!fwnode) |
| 3192 | return ERR_PTR(-EINVAL); |
| 3193 | |
| 3194 | if (is_of_node(fwnode)) { |
| 3195 | enum of_gpio_flags flags; |
| 3196 | |
Alexander Sverdlin | c181fb3 | 2015-06-22 22:38:53 +0200 | [diff] [blame] | 3197 | desc = of_get_named_gpiod_flags(to_of_node(fwnode), propname, 0, |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3198 | &flags); |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 3199 | if (!IS_ERR(desc)) { |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3200 | active_low = flags & OF_GPIO_ACTIVE_LOW; |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 3201 | single_ended = flags & OF_GPIO_SINGLE_ENDED; |
| 3202 | } |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3203 | } else if (is_acpi_node(fwnode)) { |
| 3204 | struct acpi_gpio_info info; |
| 3205 | |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 3206 | desc = acpi_node_get_gpiod(fwnode, propname, 0, &info); |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3207 | if (!IS_ERR(desc)) |
Christophe RICARD | 5204472 | 2015-12-23 23:25:34 +0100 | [diff] [blame] | 3208 | active_low = info.polarity == GPIO_ACTIVE_LOW; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3209 | } |
| 3210 | |
| 3211 | if (IS_ERR(desc)) |
| 3212 | return desc; |
| 3213 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 3214 | ret = gpiod_request(desc, NULL); |
| 3215 | if (ret) |
| 3216 | return ERR_PTR(ret); |
| 3217 | |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3218 | if (active_low) |
| 3219 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
| 3220 | |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 3221 | if (single_ended) { |
| 3222 | if (active_low) |
| 3223 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 3224 | else |
| 3225 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
| 3226 | } |
| 3227 | |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 3228 | return desc; |
| 3229 | } |
| 3230 | EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod); |
| 3231 | |
| 3232 | /** |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3233 | * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO |
| 3234 | * function |
| 3235 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 3236 | * @con_id: function within the GPIO consumer |
| 3237 | * @index: index of the GPIO to obtain in the consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3238 | * @flags: optional GPIO initialization flags |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3239 | * |
| 3240 | * This is equivalent to gpiod_get_index(), except that when no GPIO with the |
| 3241 | * specified index was assigned to the requested function it will return NULL. |
| 3242 | * This is convenient for drivers that need to handle optional GPIOs. |
| 3243 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3244 | struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev, |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3245 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3246 | unsigned int index, |
| 3247 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3248 | { |
| 3249 | struct gpio_desc *desc; |
| 3250 | |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 3251 | desc = gpiod_get_index(dev, con_id, index, flags); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3252 | if (IS_ERR(desc)) { |
| 3253 | if (PTR_ERR(desc) == -ENOENT) |
| 3254 | return NULL; |
| 3255 | } |
| 3256 | |
| 3257 | return desc; |
| 3258 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 3259 | EXPORT_SYMBOL_GPL(gpiod_get_index_optional); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 3260 | |
| 3261 | /** |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3262 | * gpiod_hog - Hog the specified GPIO desc given the provided flags |
| 3263 | * @desc: gpio whose value will be assigned |
| 3264 | * @name: gpio line name |
| 3265 | * @lflags: gpio_lookup_flags - returned from of_find_gpio() or |
| 3266 | * of_get_gpio_hog() |
| 3267 | * @dflags: gpiod_flags - optional GPIO initialization flags |
| 3268 | */ |
| 3269 | int gpiod_hog(struct gpio_desc *desc, const char *name, |
| 3270 | unsigned long lflags, enum gpiod_flags dflags) |
| 3271 | { |
| 3272 | struct gpio_chip *chip; |
| 3273 | struct gpio_desc *local_desc; |
| 3274 | int hwnum; |
| 3275 | int status; |
| 3276 | |
| 3277 | chip = gpiod_to_chip(desc); |
| 3278 | hwnum = gpio_chip_hwgpio(desc); |
| 3279 | |
| 3280 | local_desc = gpiochip_request_own_desc(chip, hwnum, name); |
| 3281 | if (IS_ERR(local_desc)) { |
Laxman Dewangan | c31a571 | 2016-03-11 19:13:21 +0530 | [diff] [blame] | 3282 | status = PTR_ERR(local_desc); |
| 3283 | pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n", |
| 3284 | name, chip->label, hwnum, status); |
| 3285 | return status; |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3286 | } |
| 3287 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 3288 | status = gpiod_configure_flags(desc, name, lflags, dflags); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3289 | if (status < 0) { |
Laxman Dewangan | c31a571 | 2016-03-11 19:13:21 +0530 | [diff] [blame] | 3290 | pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n", |
| 3291 | name, chip->label, hwnum, status); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3292 | gpiochip_free_own_desc(desc); |
| 3293 | return status; |
| 3294 | } |
| 3295 | |
| 3296 | /* Mark GPIO as hogged so it can be identified and removed later */ |
| 3297 | set_bit(FLAG_IS_HOGGED, &desc->flags); |
| 3298 | |
| 3299 | pr_info("GPIO line %d (%s) hogged as %s%s\n", |
| 3300 | desc_to_gpio(desc), name, |
| 3301 | (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input", |
| 3302 | (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? |
| 3303 | (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":""); |
| 3304 | |
| 3305 | return 0; |
| 3306 | } |
| 3307 | |
| 3308 | /** |
| 3309 | * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog |
| 3310 | * @chip: gpio chip to act on |
| 3311 | * |
| 3312 | * This is only used by of_gpiochip_remove to free hogged gpios |
| 3313 | */ |
| 3314 | static void gpiochip_free_hogs(struct gpio_chip *chip) |
| 3315 | { |
| 3316 | int id; |
| 3317 | |
| 3318 | for (id = 0; id < chip->ngpio; id++) { |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 3319 | if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags)) |
| 3320 | gpiochip_free_own_desc(&chip->gpiodev->descs[id]); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 3321 | } |
| 3322 | } |
| 3323 | |
| 3324 | /** |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 3325 | * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function |
| 3326 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 3327 | * @con_id: function within the GPIO consumer |
| 3328 | * @flags: optional GPIO initialization flags |
| 3329 | * |
| 3330 | * This function acquires all the GPIOs defined under a given function. |
| 3331 | * |
| 3332 | * Return a struct gpio_descs containing an array of descriptors, -ENOENT if |
| 3333 | * no GPIO has been assigned to the requested function, or another IS_ERR() |
| 3334 | * code if an error occurred while trying to acquire the GPIOs. |
| 3335 | */ |
| 3336 | struct gpio_descs *__must_check gpiod_get_array(struct device *dev, |
| 3337 | const char *con_id, |
| 3338 | enum gpiod_flags flags) |
| 3339 | { |
| 3340 | struct gpio_desc *desc; |
| 3341 | struct gpio_descs *descs; |
| 3342 | int count; |
| 3343 | |
| 3344 | count = gpiod_count(dev, con_id); |
| 3345 | if (count < 0) |
| 3346 | return ERR_PTR(count); |
| 3347 | |
| 3348 | descs = kzalloc(sizeof(*descs) + sizeof(descs->desc[0]) * count, |
| 3349 | GFP_KERNEL); |
| 3350 | if (!descs) |
| 3351 | return ERR_PTR(-ENOMEM); |
| 3352 | |
| 3353 | for (descs->ndescs = 0; descs->ndescs < count; ) { |
| 3354 | desc = gpiod_get_index(dev, con_id, descs->ndescs, flags); |
| 3355 | if (IS_ERR(desc)) { |
| 3356 | gpiod_put_array(descs); |
| 3357 | return ERR_CAST(desc); |
| 3358 | } |
| 3359 | descs->desc[descs->ndescs] = desc; |
| 3360 | descs->ndescs++; |
| 3361 | } |
| 3362 | return descs; |
| 3363 | } |
| 3364 | EXPORT_SYMBOL_GPL(gpiod_get_array); |
| 3365 | |
| 3366 | /** |
| 3367 | * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO |
| 3368 | * function |
| 3369 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 3370 | * @con_id: function within the GPIO consumer |
| 3371 | * @flags: optional GPIO initialization flags |
| 3372 | * |
| 3373 | * This is equivalent to gpiod_get_array(), except that when no GPIO was |
| 3374 | * assigned to the requested function it will return NULL. |
| 3375 | */ |
| 3376 | struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev, |
| 3377 | const char *con_id, |
| 3378 | enum gpiod_flags flags) |
| 3379 | { |
| 3380 | struct gpio_descs *descs; |
| 3381 | |
| 3382 | descs = gpiod_get_array(dev, con_id, flags); |
| 3383 | if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT)) |
| 3384 | return NULL; |
| 3385 | |
| 3386 | return descs; |
| 3387 | } |
| 3388 | EXPORT_SYMBOL_GPL(gpiod_get_array_optional); |
| 3389 | |
| 3390 | /** |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3391 | * gpiod_put - dispose of a GPIO descriptor |
| 3392 | * @desc: GPIO descriptor to dispose of |
| 3393 | * |
| 3394 | * No descriptor can be used after gpiod_put() has been called on it. |
| 3395 | */ |
| 3396 | void gpiod_put(struct gpio_desc *desc) |
| 3397 | { |
| 3398 | gpiod_free(desc); |
| 3399 | } |
| 3400 | EXPORT_SYMBOL_GPL(gpiod_put); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3401 | |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 3402 | /** |
| 3403 | * gpiod_put_array - dispose of multiple GPIO descriptors |
| 3404 | * @descs: struct gpio_descs containing an array of descriptors |
| 3405 | */ |
| 3406 | void gpiod_put_array(struct gpio_descs *descs) |
| 3407 | { |
| 3408 | unsigned int i; |
| 3409 | |
| 3410 | for (i = 0; i < descs->ndescs; i++) |
| 3411 | gpiod_put(descs->desc[i]); |
| 3412 | |
| 3413 | kfree(descs); |
| 3414 | } |
| 3415 | EXPORT_SYMBOL_GPL(gpiod_put_array); |
| 3416 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 3417 | static int __init gpiolib_dev_init(void) |
| 3418 | { |
| 3419 | int ret; |
| 3420 | |
| 3421 | /* Register GPIO sysfs bus */ |
| 3422 | ret = bus_register(&gpio_bus_type); |
| 3423 | if (ret < 0) { |
| 3424 | pr_err("gpiolib: could not register GPIO bus type\n"); |
| 3425 | return ret; |
| 3426 | } |
| 3427 | |
| 3428 | ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip"); |
| 3429 | if (ret < 0) { |
| 3430 | pr_err("gpiolib: failed to allocate char dev region\n"); |
| 3431 | bus_unregister(&gpio_bus_type); |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 3432 | } else { |
| 3433 | gpiolib_initialized = true; |
| 3434 | gpiochip_setup_devs(); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 3435 | } |
| 3436 | return ret; |
| 3437 | } |
| 3438 | core_initcall(gpiolib_dev_init); |
| 3439 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3440 | #ifdef CONFIG_DEBUG_FS |
| 3441 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3442 | static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3443 | { |
| 3444 | unsigned i; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3445 | struct gpio_chip *chip = gdev->chip; |
| 3446 | unsigned gpio = gdev->base; |
| 3447 | struct gpio_desc *gdesc = &gdev->descs[0]; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3448 | int is_out; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3449 | int is_irq; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3450 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3451 | for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) { |
Markus Pargmann | ced433e | 2015-08-14 16:11:02 +0200 | [diff] [blame] | 3452 | if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) { |
| 3453 | if (gdesc->name) { |
| 3454 | seq_printf(s, " gpio-%-3d (%-20.20s)\n", |
| 3455 | gpio, gdesc->name); |
| 3456 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3457 | continue; |
Markus Pargmann | ced433e | 2015-08-14 16:11:02 +0200 | [diff] [blame] | 3458 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3459 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3460 | gpiod_get_direction(gdesc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3461 | is_out = test_bit(FLAG_IS_OUT, &gdesc->flags); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3462 | is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags); |
Markus Pargmann | ced433e | 2015-08-14 16:11:02 +0200 | [diff] [blame] | 3463 | seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s", |
| 3464 | gpio, gdesc->name ? gdesc->name : "", gdesc->label, |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3465 | is_out ? "out" : "in ", |
| 3466 | chip->get |
| 3467 | ? (chip->get(chip, i) ? "hi" : "lo") |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3468 | : "? ", |
| 3469 | is_irq ? "IRQ" : " "); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3470 | seq_printf(s, "\n"); |
| 3471 | } |
| 3472 | } |
| 3473 | |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3474 | static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3475 | { |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3476 | unsigned long flags; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3477 | struct gpio_device *gdev = NULL; |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 3478 | loff_t index = *pos; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3479 | |
| 3480 | s->private = ""; |
| 3481 | |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3482 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3483 | list_for_each_entry(gdev, &gpio_devices, list) |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3484 | if (index-- == 0) { |
| 3485 | spin_unlock_irqrestore(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3486 | return gdev; |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3487 | } |
| 3488 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 3489 | |
| 3490 | return NULL; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3491 | } |
| 3492 | |
| 3493 | static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos) |
| 3494 | { |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3495 | unsigned long flags; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3496 | struct gpio_device *gdev = v; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3497 | void *ret = NULL; |
| 3498 | |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3499 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3500 | if (list_is_last(&gdev->list, &gpio_devices)) |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 3501 | ret = NULL; |
| 3502 | else |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3503 | ret = list_entry(gdev->list.next, struct gpio_device, list); |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 3504 | spin_unlock_irqrestore(&gpio_lock, flags); |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3505 | |
| 3506 | s->private = "\n"; |
| 3507 | ++*pos; |
| 3508 | |
| 3509 | return ret; |
| 3510 | } |
| 3511 | |
| 3512 | static void gpiolib_seq_stop(struct seq_file *s, void *v) |
| 3513 | { |
| 3514 | } |
| 3515 | |
| 3516 | static int gpiolib_seq_show(struct seq_file *s, void *v) |
| 3517 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3518 | struct gpio_device *gdev = v; |
| 3519 | struct gpio_chip *chip = gdev->chip; |
| 3520 | struct device *parent; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3521 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3522 | if (!chip) { |
| 3523 | seq_printf(s, "%s%s: (dangling chip)", (char *)s->private, |
| 3524 | dev_name(&gdev->dev)); |
| 3525 | return 0; |
| 3526 | } |
| 3527 | |
| 3528 | seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private, |
| 3529 | dev_name(&gdev->dev), |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3530 | gdev->base, gdev->base + gdev->ngpio - 1); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 3531 | parent = chip->parent; |
| 3532 | if (parent) |
| 3533 | seq_printf(s, ", parent: %s/%s", |
| 3534 | parent->bus ? parent->bus->name : "no-bus", |
| 3535 | dev_name(parent)); |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3536 | if (chip->label) |
| 3537 | seq_printf(s, ", %s", chip->label); |
| 3538 | if (chip->can_sleep) |
| 3539 | seq_printf(s, ", can sleep"); |
| 3540 | seq_printf(s, ":\n"); |
| 3541 | |
| 3542 | if (chip->dbg_show) |
| 3543 | chip->dbg_show(s, chip); |
| 3544 | else |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3545 | gpiolib_dbg_show(s, gdev); |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3546 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3547 | return 0; |
| 3548 | } |
| 3549 | |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3550 | static const struct seq_operations gpiolib_seq_ops = { |
| 3551 | .start = gpiolib_seq_start, |
| 3552 | .next = gpiolib_seq_next, |
| 3553 | .stop = gpiolib_seq_stop, |
| 3554 | .show = gpiolib_seq_show, |
| 3555 | }; |
| 3556 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3557 | static int gpiolib_open(struct inode *inode, struct file *file) |
| 3558 | { |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3559 | return seq_open(file, &gpiolib_seq_ops); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3560 | } |
| 3561 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 3562 | static const struct file_operations gpiolib_operations = { |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3563 | .owner = THIS_MODULE, |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3564 | .open = gpiolib_open, |
| 3565 | .read = seq_read, |
| 3566 | .llseek = seq_lseek, |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 3567 | .release = seq_release, |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3568 | }; |
| 3569 | |
| 3570 | static int __init gpiolib_debugfs_init(void) |
| 3571 | { |
| 3572 | /* /sys/kernel/debug/gpio */ |
| 3573 | (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO, |
| 3574 | NULL, NULL, &gpiolib_operations); |
| 3575 | return 0; |
| 3576 | } |
| 3577 | subsys_initcall(gpiolib_debugfs_init); |
| 3578 | |
| 3579 | #endif /* DEBUG_FS */ |