Linus Walleij | dae5f0a | 2018-09-25 09:08:48 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Andy Shevchenko | 923a654 | 2017-05-25 16:08:38 +0300 | [diff] [blame] | 2 | #include <linux/bitmap.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3 | #include <linux/kernel.h> |
| 4 | #include <linux/module.h> |
Daniel Glöckner | ff77c35 | 2009-09-22 16:46:38 -0700 | [diff] [blame] | 5 | #include <linux/interrupt.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 6 | #include <linux/irq.h> |
| 7 | #include <linux/spinlock.h> |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 8 | #include <linux/list.h> |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 9 | #include <linux/device.h> |
| 10 | #include <linux/err.h> |
| 11 | #include <linux/debugfs.h> |
| 12 | #include <linux/seq_file.h> |
| 13 | #include <linux/gpio.h> |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 14 | #include <linux/of_gpio.h> |
Daniel Glöckner | ff77c35 | 2009-09-22 16:46:38 -0700 | [diff] [blame] | 15 | #include <linux/idr.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 17 | #include <linux/acpi.h> |
Alexandre Courbot | 53e7cac | 2013-11-16 21:44:52 +0900 | [diff] [blame] | 18 | #include <linux/gpio/driver.h> |
Linus Walleij | 0a6d315 | 2014-07-24 20:08:55 +0200 | [diff] [blame] | 19 | #include <linux/gpio/machine.h> |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 20 | #include <linux/pinctrl/consumer.h> |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 21 | #include <linux/cdev.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/uaccess.h> |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 24 | #include <linux/compat.h> |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 25 | #include <linux/anon_inodes.h> |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 26 | #include <linux/file.h> |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 27 | #include <linux/kfifo.h> |
| 28 | #include <linux/poll.h> |
| 29 | #include <linux/timekeeping.h> |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 30 | #include <uapi/linux/gpio.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 31 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 32 | #include "gpiolib.h" |
| 33 | |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 34 | #define CREATE_TRACE_POINTS |
| 35 | #include <trace/events/gpio.h> |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 36 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 37 | /* Implementation infrastructure for GPIO interfaces. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 38 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 39 | * The GPIO programming interface allows for inlining speed-critical |
| 40 | * get/set operations for common cases, so that access to SOC-integrated |
| 41 | * GPIOs can sometimes cost only an instruction or two per bit. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 42 | */ |
| 43 | |
| 44 | |
| 45 | /* When debugging, extend minimal trust to callers and platform code. |
| 46 | * Also emit diagnostic messages that may help initial bringup, when |
| 47 | * board setup or driver bugs are most common. |
| 48 | * |
| 49 | * Otherwise, minimize overhead in what may be bitbanging codepaths. |
| 50 | */ |
| 51 | #ifdef DEBUG |
| 52 | #define extra_checks 1 |
| 53 | #else |
| 54 | #define extra_checks 0 |
| 55 | #endif |
| 56 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 57 | /* Device and char device-related information */ |
| 58 | static DEFINE_IDA(gpio_ida); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 59 | static dev_t gpio_devt; |
| 60 | #define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */ |
| 61 | static struct bus_type gpio_bus_type = { |
| 62 | .name = "gpio", |
| 63 | }; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 64 | |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 65 | /* |
| 66 | * Number of GPIOs to use for the fast path in set array |
| 67 | */ |
| 68 | #define FASTPATH_NGPIO CONFIG_GPIOLIB_FASTPATH_LIMIT |
| 69 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 70 | /* gpio_lock prevents conflicts during gpio_desc[] table updates. |
| 71 | * While any GPIO is requested, its gpio_chip is not removable; |
| 72 | * each GPIO's "requested" flag serves as a lock and refcount. |
| 73 | */ |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 74 | DEFINE_SPINLOCK(gpio_lock); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 75 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 76 | static DEFINE_MUTEX(gpio_lookup_lock); |
| 77 | static LIST_HEAD(gpio_lookup_list); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 78 | LIST_HEAD(gpio_devices); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 79 | |
Bartosz Golaszewski | a411e81 | 2018-04-10 22:30:28 +0200 | [diff] [blame] | 80 | static DEFINE_MUTEX(gpio_machine_hogs_mutex); |
| 81 | static LIST_HEAD(gpio_machine_hogs); |
| 82 | |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 83 | static void gpiochip_free_hogs(struct gpio_chip *chip); |
Thierry Reding | 959bc7b | 2017-11-07 19:15:59 +0100 | [diff] [blame] | 84 | static int gpiochip_add_irqchip(struct gpio_chip *gpiochip, |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 85 | struct lock_class_key *lock_key, |
| 86 | struct lock_class_key *request_key); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 87 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 88 | static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip); |
| 89 | static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 90 | |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 91 | static bool gpiolib_initialized; |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 92 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 93 | static inline void desc_set_label(struct gpio_desc *d, const char *label) |
| 94 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 95 | d->label = label; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 96 | } |
| 97 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 98 | /** |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 99 | * gpio_to_desc - Convert a GPIO number to its descriptor |
| 100 | * @gpio: global GPIO number |
| 101 | * |
| 102 | * Returns: |
| 103 | * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO |
| 104 | * with the given number exists in the system. |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 105 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 106 | struct gpio_desc *gpio_to_desc(unsigned gpio) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 107 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 108 | struct gpio_device *gdev; |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 109 | unsigned long flags; |
| 110 | |
| 111 | spin_lock_irqsave(&gpio_lock, flags); |
| 112 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 113 | list_for_each_entry(gdev, &gpio_devices, list) { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 114 | if (gdev->base <= gpio && |
| 115 | gdev->base + gdev->ngpio > gpio) { |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 116 | spin_unlock_irqrestore(&gpio_lock, flags); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 117 | return &gdev->descs[gpio - gdev->base]; |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | |
| 121 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 122 | |
Alexandre Courbot | 0e9a5ed | 2014-12-02 23:15:05 +0900 | [diff] [blame] | 123 | if (!gpio_is_valid(gpio)) |
| 124 | WARN(1, "invalid GPIO %d\n", gpio); |
| 125 | |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 126 | return NULL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 127 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 128 | EXPORT_SYMBOL_GPL(gpio_to_desc); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 129 | |
| 130 | /** |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 131 | * gpiochip_get_desc - get the GPIO descriptor corresponding to the given |
| 132 | * hardware number for this chip |
| 133 | * @chip: GPIO chip |
| 134 | * @hwnum: hardware number of the GPIO for this chip |
| 135 | * |
| 136 | * Returns: |
| 137 | * A pointer to the GPIO descriptor or %ERR_PTR(-EINVAL) if no GPIO exists |
| 138 | * in the given chip for the specified hardware number. |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 139 | */ |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 140 | struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, |
| 141 | u16 hwnum) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 142 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 143 | struct gpio_device *gdev = chip->gpiodev; |
| 144 | |
| 145 | if (hwnum >= gdev->ngpio) |
Alexandre Courbot | b7d0a28 | 2013-12-03 12:31:11 +0900 | [diff] [blame] | 146 | return ERR_PTR(-EINVAL); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 147 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 148 | return &gdev->descs[hwnum]; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 149 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 150 | |
| 151 | /** |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 152 | * desc_to_gpio - convert a GPIO descriptor to the integer namespace |
| 153 | * @desc: GPIO descriptor |
| 154 | * |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 155 | * This should disappear in the future but is needed since we still |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 156 | * use GPIO numbers for error messages and sysfs nodes. |
| 157 | * |
| 158 | * Returns: |
| 159 | * The global GPIO number for the GPIO specified by its descriptor. |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 160 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 161 | int desc_to_gpio(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 162 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 163 | return desc->gdev->base + (desc - &desc->gdev->descs[0]); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 164 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 165 | EXPORT_SYMBOL_GPL(desc_to_gpio); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 166 | |
| 167 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 168 | /** |
| 169 | * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs |
| 170 | * @desc: descriptor to return the chip of |
| 171 | */ |
| 172 | struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 173 | { |
Vladimir Zapolskiy | dd3b9a4 | 2017-12-21 18:37:30 +0200 | [diff] [blame] | 174 | if (!desc || !desc->gdev) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 175 | return NULL; |
| 176 | return desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 177 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 178 | EXPORT_SYMBOL_GPL(gpiod_to_chip); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 179 | |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 180 | /* dynamic allocation of GPIOs, e.g. on a hotplugged device */ |
| 181 | static int gpiochip_find_base(int ngpio) |
| 182 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 183 | struct gpio_device *gdev; |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 184 | int base = ARCH_NR_GPIOS - ngpio; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 185 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 186 | list_for_each_entry_reverse(gdev, &gpio_devices, list) { |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 187 | /* found a free space? */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 188 | if (gdev->base + gdev->ngpio <= base) |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 189 | break; |
| 190 | else |
| 191 | /* nope, check the space right before the chip */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 192 | base = gdev->base - ngpio; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 195 | if (gpio_is_valid(base)) { |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 196 | pr_debug("%s: found new base at %d\n", __func__, base); |
Alexandre Courbot | 83cabe3 | 2013-02-03 01:29:28 +0900 | [diff] [blame] | 197 | return base; |
| 198 | } else { |
| 199 | pr_err("%s: cannot find free range\n", __func__); |
| 200 | return -ENOSPC; |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 201 | } |
Anton Vorontsov | 169b6a7 | 2008-04-28 02:14:47 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 204 | /** |
| 205 | * gpiod_get_direction - return the current direction of a GPIO |
| 206 | * @desc: GPIO to get the direction of |
| 207 | * |
Wolfram Sang | 94fc730 | 2018-01-09 12:35:53 +0100 | [diff] [blame] | 208 | * Returns 0 for output, 1 for input, or an error code in case of error. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 209 | * |
| 210 | * This function may sleep if gpiod_cansleep() is true. |
| 211 | */ |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 212 | int gpiod_get_direction(struct gpio_desc *desc) |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 213 | { |
Wolfram Sang | d0121b8 | 2018-07-11 18:33:19 +0200 | [diff] [blame] | 214 | struct gpio_chip *chip; |
| 215 | unsigned offset; |
| 216 | int status; |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 217 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 218 | chip = gpiod_to_chip(desc); |
| 219 | offset = gpio_chip_hwgpio(desc); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 220 | |
| 221 | if (!chip->get_direction) |
Wolfram Sang | d0121b8 | 2018-07-11 18:33:19 +0200 | [diff] [blame] | 222 | return -ENOTSUPP; |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 223 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 224 | status = chip->get_direction(chip, offset); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 225 | if (status > 0) { |
| 226 | /* GPIOF_DIR_IN, or other positive */ |
| 227 | status = 1; |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 228 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 229 | } |
| 230 | if (status == 0) { |
| 231 | /* GPIOF_DIR_OUT */ |
Alexandre Courbot | 8e53b0f | 2014-11-25 17:16:31 +0900 | [diff] [blame] | 232 | set_bit(FLAG_IS_OUT, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 233 | } |
| 234 | return status; |
| 235 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 236 | EXPORT_SYMBOL_GPL(gpiod_get_direction); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 237 | |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 238 | /* |
| 239 | * 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] | 240 | * by range(means [base, base + ngpio - 1]) order. |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 241 | * |
| 242 | * Return -EBUSY if the new chip overlaps with some other chip's integer |
| 243 | * space. |
| 244 | */ |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 245 | static int gpiodev_add_to_list(struct gpio_device *gdev) |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 246 | { |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 247 | struct gpio_device *prev, *next; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 248 | |
| 249 | if (list_empty(&gpio_devices)) { |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 250 | /* initial entry in list */ |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 251 | list_add_tail(&gdev->list, &gpio_devices); |
Sudip Mukherjee | e28ecca | 2015-12-27 19:06:50 +0530 | [diff] [blame] | 252 | return 0; |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 253 | } |
| 254 | |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 255 | next = list_entry(gpio_devices.next, struct gpio_device, list); |
| 256 | if (gdev->base + gdev->ngpio <= next->base) { |
| 257 | /* add before first entry */ |
| 258 | list_add(&gdev->list, &gpio_devices); |
Julien Grossholtz | 96098df | 2016-01-07 16:46:45 -0500 | [diff] [blame] | 259 | return 0; |
| 260 | } |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 261 | |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 262 | prev = list_entry(gpio_devices.prev, struct gpio_device, list); |
| 263 | if (prev->base + prev->ngpio <= gdev->base) { |
| 264 | /* add behind last entry */ |
| 265 | list_add_tail(&gdev->list, &gpio_devices); |
| 266 | return 0; |
| 267 | } |
Bamvor Jian Zhang | ef7c755 | 2015-11-16 13:02:46 +0800 | [diff] [blame] | 268 | |
Bamvor Jian Zhang | a961f9b | 2016-02-26 22:37:14 +0800 | [diff] [blame] | 269 | list_for_each_entry_safe(prev, next, &gpio_devices, list) { |
| 270 | /* at the end of the list */ |
| 271 | if (&next->list == &gpio_devices) |
| 272 | break; |
| 273 | |
| 274 | /* add between prev and next */ |
| 275 | if (prev->base + prev->ngpio <= gdev->base |
| 276 | && gdev->base + gdev->ngpio <= next->base) { |
| 277 | list_add(&gdev->list, &prev->list); |
| 278 | return 0; |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n"); |
| 283 | return -EBUSY; |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 284 | } |
| 285 | |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 286 | /* |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 287 | * Convert a GPIO name to its descriptor |
| 288 | */ |
| 289 | static struct gpio_desc *gpio_name_to_desc(const char * const name) |
| 290 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 291 | struct gpio_device *gdev; |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 292 | unsigned long flags; |
| 293 | |
| 294 | spin_lock_irqsave(&gpio_lock, flags); |
| 295 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 296 | list_for_each_entry(gdev, &gpio_devices, list) { |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 297 | int i; |
| 298 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 299 | for (i = 0; i != gdev->ngpio; ++i) { |
| 300 | struct gpio_desc *desc = &gdev->descs[i]; |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 301 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 302 | if (!desc->name || !name) |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 303 | continue; |
| 304 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 305 | if (!strcmp(desc->name, name)) { |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 306 | spin_unlock_irqrestore(&gpio_lock, flags); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 307 | return desc; |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 313 | |
| 314 | return NULL; |
| 315 | } |
| 316 | |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 317 | /* |
| 318 | * Takes the names from gc->names and checks if they are all unique. If they |
| 319 | * are, they are assigned to their gpio descriptors. |
| 320 | * |
Bamvor Jian Zhang | ed37915 | 2015-11-14 16:43:20 +0800 | [diff] [blame] | 321 | * 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] | 322 | */ |
| 323 | static int gpiochip_set_desc_names(struct gpio_chip *gc) |
| 324 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 325 | struct gpio_device *gdev = gc->gpiodev; |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 326 | int i; |
| 327 | |
| 328 | if (!gc->names) |
| 329 | return 0; |
| 330 | |
| 331 | /* First check all names if they are unique */ |
| 332 | for (i = 0; i != gc->ngpio; ++i) { |
| 333 | struct gpio_desc *gpio; |
| 334 | |
| 335 | gpio = gpio_name_to_desc(gc->names[i]); |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 336 | if (gpio) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 337 | dev_warn(&gdev->dev, |
Linus Walleij | 34ffd85 | 2015-10-20 11:31:54 +0200 | [diff] [blame] | 338 | "Detected name collision for GPIO name '%s'\n", |
Linus Walleij | f881bab0 | 2015-09-23 16:20:43 -0700 | [diff] [blame] | 339 | gc->names[i]); |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /* Then add all names to the GPIO descriptors */ |
| 343 | for (i = 0; i != gc->ngpio; ++i) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 344 | gdev->descs[i].name = gc->names[i]; |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
Stephen Boyd | e4371f6e | 2018-03-23 09:34:50 -0700 | [diff] [blame] | 349 | static unsigned long *gpiochip_allocate_mask(struct gpio_chip *chip) |
| 350 | { |
| 351 | unsigned long *p; |
| 352 | |
Stephen Boyd | ace56935 | 2018-03-23 09:34:51 -0700 | [diff] [blame] | 353 | p = kmalloc_array(BITS_TO_LONGS(chip->ngpio), sizeof(*p), GFP_KERNEL); |
Stephen Boyd | e4371f6e | 2018-03-23 09:34:50 -0700 | [diff] [blame] | 354 | if (!p) |
| 355 | return NULL; |
| 356 | |
| 357 | /* Assume by default all GPIOs are valid */ |
| 358 | bitmap_fill(p, chip->ngpio); |
| 359 | |
| 360 | return p; |
| 361 | } |
| 362 | |
Ricardo Ribalda Delgado | f8ec92a | 2018-10-05 08:52:58 +0200 | [diff] [blame] | 363 | static int gpiochip_alloc_valid_mask(struct gpio_chip *gpiochip) |
Stephen Boyd | 726cb3b | 2018-03-23 09:34:52 -0700 | [diff] [blame] | 364 | { |
| 365 | #ifdef CONFIG_OF_GPIO |
| 366 | int size; |
| 367 | struct device_node *np = gpiochip->of_node; |
| 368 | |
| 369 | size = of_property_count_u32_elems(np, "gpio-reserved-ranges"); |
| 370 | if (size > 0 && size % 2 == 0) |
| 371 | gpiochip->need_valid_mask = true; |
| 372 | #endif |
| 373 | |
| 374 | if (!gpiochip->need_valid_mask) |
| 375 | return 0; |
| 376 | |
| 377 | gpiochip->valid_mask = gpiochip_allocate_mask(gpiochip); |
| 378 | if (!gpiochip->valid_mask) |
| 379 | return -ENOMEM; |
| 380 | |
| 381 | return 0; |
| 382 | } |
| 383 | |
Ricardo Ribalda Delgado | f8ec92a | 2018-10-05 08:52:58 +0200 | [diff] [blame] | 384 | static int gpiochip_init_valid_mask(struct gpio_chip *gpiochip) |
| 385 | { |
| 386 | if (gpiochip->init_valid_mask) |
| 387 | return gpiochip->init_valid_mask(gpiochip); |
| 388 | |
| 389 | return 0; |
| 390 | } |
| 391 | |
Stephen Boyd | 726cb3b | 2018-03-23 09:34:52 -0700 | [diff] [blame] | 392 | static void gpiochip_free_valid_mask(struct gpio_chip *gpiochip) |
| 393 | { |
| 394 | kfree(gpiochip->valid_mask); |
| 395 | gpiochip->valid_mask = NULL; |
| 396 | } |
| 397 | |
| 398 | bool gpiochip_line_is_valid(const struct gpio_chip *gpiochip, |
| 399 | unsigned int offset) |
| 400 | { |
| 401 | /* No mask means all valid */ |
| 402 | if (likely(!gpiochip->valid_mask)) |
| 403 | return true; |
| 404 | return test_bit(offset, gpiochip->valid_mask); |
| 405 | } |
| 406 | EXPORT_SYMBOL_GPL(gpiochip_line_is_valid); |
| 407 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 408 | /* |
| 409 | * GPIO line handle management |
| 410 | */ |
| 411 | |
| 412 | /** |
| 413 | * struct linehandle_state - contains the state of a userspace handle |
| 414 | * @gdev: the GPIO device the handle pertains to |
| 415 | * @label: consumer label used to tag descriptors |
| 416 | * @descs: the GPIO descriptors held by this handle |
| 417 | * @numdescs: the number of descriptors held in the descs array |
| 418 | */ |
| 419 | struct linehandle_state { |
| 420 | struct gpio_device *gdev; |
| 421 | const char *label; |
| 422 | struct gpio_desc *descs[GPIOHANDLES_MAX]; |
| 423 | u32 numdescs; |
| 424 | }; |
| 425 | |
Lars-Peter Clausen | e3e847c | 2016-10-18 16:54:05 +0200 | [diff] [blame] | 426 | #define GPIOHANDLE_REQUEST_VALID_FLAGS \ |
| 427 | (GPIOHANDLE_REQUEST_INPUT | \ |
| 428 | GPIOHANDLE_REQUEST_OUTPUT | \ |
| 429 | GPIOHANDLE_REQUEST_ACTIVE_LOW | \ |
| 430 | GPIOHANDLE_REQUEST_OPEN_DRAIN | \ |
| 431 | GPIOHANDLE_REQUEST_OPEN_SOURCE) |
| 432 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 433 | static long linehandle_ioctl(struct file *filep, unsigned int cmd, |
| 434 | unsigned long arg) |
| 435 | { |
| 436 | struct linehandle_state *lh = filep->private_data; |
| 437 | void __user *ip = (void __user *)arg; |
| 438 | struct gpiohandle_data ghd; |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 439 | DECLARE_BITMAP(vals, GPIOHANDLES_MAX); |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 440 | int i; |
| 441 | |
| 442 | if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) { |
Bartosz Golaszewski | 2b955b3 | 2018-07-16 10:34:24 +0200 | [diff] [blame] | 443 | /* NOTE: It's ok to read values of output lines. */ |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 444 | int ret = gpiod_get_array_value_complex(false, |
| 445 | true, |
| 446 | lh->numdescs, |
| 447 | lh->descs, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 448 | NULL, |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 449 | vals); |
| 450 | if (ret) |
| 451 | return ret; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 452 | |
Lars-Peter Clausen | 3eded5d | 2016-10-18 16:54:02 +0200 | [diff] [blame] | 453 | memset(&ghd, 0, sizeof(ghd)); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 454 | for (i = 0; i < lh->numdescs; i++) |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 455 | ghd.values[i] = test_bit(i, vals); |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 456 | |
| 457 | if (copy_to_user(ip, &ghd, sizeof(ghd))) |
| 458 | return -EFAULT; |
| 459 | |
| 460 | return 0; |
| 461 | } else if (cmd == GPIOHANDLE_SET_LINE_VALUES_IOCTL) { |
Bartosz Golaszewski | e5332d5 | 2018-07-16 10:34:23 +0200 | [diff] [blame] | 462 | /* |
| 463 | * All line descriptors were created at once with the same |
| 464 | * flags so just check if the first one is really output. |
| 465 | */ |
| 466 | if (!test_bit(FLAG_IS_OUT, &lh->descs[0]->flags)) |
| 467 | return -EPERM; |
| 468 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 469 | if (copy_from_user(&ghd, ip, sizeof(ghd))) |
| 470 | return -EFAULT; |
| 471 | |
| 472 | /* Clamp all values to [0,1] */ |
| 473 | for (i = 0; i < lh->numdescs; i++) |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 474 | __assign_bit(i, vals, ghd.values[i]); |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 475 | |
| 476 | /* Reuse the array setting function */ |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 477 | return gpiod_set_array_value_complex(false, |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 478 | true, |
| 479 | lh->numdescs, |
| 480 | lh->descs, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 481 | NULL, |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 482 | vals); |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 483 | } |
| 484 | return -EINVAL; |
| 485 | } |
| 486 | |
| 487 | #ifdef CONFIG_COMPAT |
| 488 | static long linehandle_ioctl_compat(struct file *filep, unsigned int cmd, |
| 489 | unsigned long arg) |
| 490 | { |
| 491 | return linehandle_ioctl(filep, cmd, (unsigned long)compat_ptr(arg)); |
| 492 | } |
| 493 | #endif |
| 494 | |
| 495 | static int linehandle_release(struct inode *inode, struct file *filep) |
| 496 | { |
| 497 | struct linehandle_state *lh = filep->private_data; |
| 498 | struct gpio_device *gdev = lh->gdev; |
| 499 | int i; |
| 500 | |
| 501 | for (i = 0; i < lh->numdescs; i++) |
| 502 | gpiod_free(lh->descs[i]); |
| 503 | kfree(lh->label); |
| 504 | kfree(lh); |
| 505 | put_device(&gdev->dev); |
| 506 | return 0; |
| 507 | } |
| 508 | |
| 509 | static const struct file_operations linehandle_fileops = { |
| 510 | .release = linehandle_release, |
| 511 | .owner = THIS_MODULE, |
| 512 | .llseek = noop_llseek, |
| 513 | .unlocked_ioctl = linehandle_ioctl, |
| 514 | #ifdef CONFIG_COMPAT |
| 515 | .compat_ioctl = linehandle_ioctl_compat, |
| 516 | #endif |
| 517 | }; |
| 518 | |
| 519 | static int linehandle_create(struct gpio_device *gdev, void __user *ip) |
| 520 | { |
| 521 | struct gpiohandle_request handlereq; |
| 522 | struct linehandle_state *lh; |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 523 | struct file *file; |
Timur Tabi | ab3dbcf | 2018-03-29 13:29:12 -0500 | [diff] [blame] | 524 | int fd, i, count = 0, ret; |
Bartosz Golaszewski | 418ee8e | 2017-10-16 11:32:29 +0200 | [diff] [blame] | 525 | u32 lflags; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 526 | |
| 527 | if (copy_from_user(&handlereq, ip, sizeof(handlereq))) |
| 528 | return -EFAULT; |
| 529 | if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX)) |
| 530 | return -EINVAL; |
| 531 | |
Bartosz Golaszewski | 418ee8e | 2017-10-16 11:32:29 +0200 | [diff] [blame] | 532 | lflags = handlereq.flags; |
| 533 | |
| 534 | /* Return an error if an unknown flag is set */ |
| 535 | if (lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) |
| 536 | return -EINVAL; |
| 537 | |
Bartosz Golaszewski | 588fc3b | 2017-11-15 16:47:43 +0100 | [diff] [blame] | 538 | /* |
| 539 | * Do not allow OPEN_SOURCE & OPEN_DRAIN flags in a single request. If |
| 540 | * the hardware actually supports enabling both at the same time the |
| 541 | * electrical result would be disastrous. |
| 542 | */ |
| 543 | if ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) && |
| 544 | (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE)) |
| 545 | return -EINVAL; |
| 546 | |
Bartosz Golaszewski | 609aaf6 | 2017-10-16 11:32:30 +0200 | [diff] [blame] | 547 | /* OPEN_DRAIN and OPEN_SOURCE flags only make sense for output mode. */ |
| 548 | if (!(lflags & GPIOHANDLE_REQUEST_OUTPUT) && |
| 549 | ((lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) || |
| 550 | (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE))) |
| 551 | return -EINVAL; |
| 552 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 553 | lh = kzalloc(sizeof(*lh), GFP_KERNEL); |
| 554 | if (!lh) |
| 555 | return -ENOMEM; |
| 556 | lh->gdev = gdev; |
| 557 | get_device(&gdev->dev); |
| 558 | |
| 559 | /* Make sure this is terminated */ |
| 560 | handlereq.consumer_label[sizeof(handlereq.consumer_label)-1] = '\0'; |
| 561 | if (strlen(handlereq.consumer_label)) { |
| 562 | lh->label = kstrdup(handlereq.consumer_label, |
| 563 | GFP_KERNEL); |
| 564 | if (!lh->label) { |
| 565 | ret = -ENOMEM; |
| 566 | goto out_free_lh; |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | /* Request each GPIO */ |
| 571 | for (i = 0; i < handlereq.lines; i++) { |
| 572 | u32 offset = handlereq.lineoffsets[i]; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 573 | struct gpio_desc *desc; |
| 574 | |
Lars-Peter Clausen | e405f9f | 2016-10-18 16:54:01 +0200 | [diff] [blame] | 575 | if (offset >= gdev->ngpio) { |
| 576 | ret = -EINVAL; |
| 577 | goto out_free_descs; |
| 578 | } |
| 579 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 580 | desc = &gdev->descs[offset]; |
| 581 | ret = gpiod_request(desc, lh->label); |
| 582 | if (ret) |
| 583 | goto out_free_descs; |
| 584 | lh->descs[i] = desc; |
Ricardo Ribalda Delgado | 19a4fbf | 2018-09-13 15:37:04 +0200 | [diff] [blame] | 585 | count = i + 1; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 586 | |
| 587 | if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW) |
| 588 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
| 589 | if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) |
| 590 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 591 | if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE) |
| 592 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
| 593 | |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 594 | ret = gpiod_set_transitory(desc, false); |
| 595 | if (ret < 0) |
| 596 | goto out_free_descs; |
| 597 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 598 | /* |
| 599 | * Lines have to be requested explicitly for input |
| 600 | * or output, else the line will be treated "as is". |
| 601 | */ |
| 602 | if (lflags & GPIOHANDLE_REQUEST_OUTPUT) { |
| 603 | int val = !!handlereq.default_values[i]; |
| 604 | |
| 605 | ret = gpiod_direction_output(desc, val); |
| 606 | if (ret) |
| 607 | goto out_free_descs; |
| 608 | } else if (lflags & GPIOHANDLE_REQUEST_INPUT) { |
| 609 | ret = gpiod_direction_input(desc); |
| 610 | if (ret) |
| 611 | goto out_free_descs; |
| 612 | } |
| 613 | dev_dbg(&gdev->dev, "registered chardev handle for line %d\n", |
| 614 | offset); |
| 615 | } |
Linus Walleij | e2f608b | 2016-06-18 10:56:43 +0200 | [diff] [blame] | 616 | /* Let i point at the last handle */ |
| 617 | i--; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 618 | lh->numdescs = handlereq.lines; |
| 619 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 620 | fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC); |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 621 | if (fd < 0) { |
| 622 | ret = fd; |
| 623 | goto out_free_descs; |
| 624 | } |
| 625 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 626 | file = anon_inode_getfile("gpio-linehandle", |
| 627 | &linehandle_fileops, |
| 628 | lh, |
| 629 | O_RDONLY | O_CLOEXEC); |
| 630 | if (IS_ERR(file)) { |
| 631 | ret = PTR_ERR(file); |
| 632 | goto out_put_unused_fd; |
| 633 | } |
| 634 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 635 | handlereq.fd = fd; |
Linus Walleij | d932cd4 | 2016-07-04 13:13:04 +0200 | [diff] [blame] | 636 | if (copy_to_user(ip, &handlereq, sizeof(handlereq))) { |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 637 | /* |
| 638 | * fput() will trigger the release() callback, so do not go onto |
| 639 | * the regular error cleanup path here. |
| 640 | */ |
| 641 | fput(file); |
| 642 | put_unused_fd(fd); |
| 643 | return -EFAULT; |
Linus Walleij | d932cd4 | 2016-07-04 13:13:04 +0200 | [diff] [blame] | 644 | } |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 645 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 646 | fd_install(fd, file); |
| 647 | |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 648 | dev_dbg(&gdev->dev, "registered chardev handle for %d lines\n", |
| 649 | lh->numdescs); |
| 650 | |
| 651 | return 0; |
| 652 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 653 | out_put_unused_fd: |
| 654 | put_unused_fd(fd); |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 655 | out_free_descs: |
Timur Tabi | ab3dbcf | 2018-03-29 13:29:12 -0500 | [diff] [blame] | 656 | for (i = 0; i < count; i++) |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 657 | gpiod_free(lh->descs[i]); |
| 658 | kfree(lh->label); |
| 659 | out_free_lh: |
| 660 | kfree(lh); |
| 661 | put_device(&gdev->dev); |
| 662 | return ret; |
| 663 | } |
| 664 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 665 | /* |
| 666 | * GPIO line event management |
| 667 | */ |
| 668 | |
| 669 | /** |
| 670 | * struct lineevent_state - contains the state of a userspace event |
| 671 | * @gdev: the GPIO device the event pertains to |
| 672 | * @label: consumer label used to tag descriptors |
| 673 | * @desc: the GPIO descriptor held by this event |
| 674 | * @eflags: the event flags this line was requested with |
| 675 | * @irq: the interrupt that trigger in response to events on this GPIO |
| 676 | * @wait: wait queue that handles blocking reads of events |
| 677 | * @events: KFIFO for the GPIO events |
| 678 | * @read_lock: mutex lock to protect reads from colliding with adding |
| 679 | * new events to the FIFO |
Linus Walleij | d58f2bf | 2017-11-30 10:23:27 +0100 | [diff] [blame] | 680 | * @timestamp: cache for the timestamp storing it between hardirq |
| 681 | * and IRQ thread, used to bring the timestamp close to the actual |
| 682 | * event |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 683 | */ |
| 684 | struct lineevent_state { |
| 685 | struct gpio_device *gdev; |
| 686 | const char *label; |
| 687 | struct gpio_desc *desc; |
| 688 | u32 eflags; |
| 689 | int irq; |
| 690 | wait_queue_head_t wait; |
| 691 | DECLARE_KFIFO(events, struct gpioevent_data, 16); |
| 692 | struct mutex read_lock; |
Linus Walleij | d58f2bf | 2017-11-30 10:23:27 +0100 | [diff] [blame] | 693 | u64 timestamp; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 694 | }; |
| 695 | |
Lars-Peter Clausen | ac7dbb9 | 2016-10-18 16:54:06 +0200 | [diff] [blame] | 696 | #define GPIOEVENT_REQUEST_VALID_FLAGS \ |
| 697 | (GPIOEVENT_REQUEST_RISING_EDGE | \ |
| 698 | GPIOEVENT_REQUEST_FALLING_EDGE) |
| 699 | |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 700 | static __poll_t lineevent_poll(struct file *filep, |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 701 | struct poll_table_struct *wait) |
| 702 | { |
| 703 | struct lineevent_state *le = filep->private_data; |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 704 | __poll_t events = 0; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 705 | |
| 706 | poll_wait(filep, &le->wait, wait); |
| 707 | |
| 708 | if (!kfifo_is_empty(&le->events)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 709 | events = EPOLLIN | EPOLLRDNORM; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 710 | |
| 711 | return events; |
| 712 | } |
| 713 | |
| 714 | |
| 715 | static ssize_t lineevent_read(struct file *filep, |
| 716 | char __user *buf, |
| 717 | size_t count, |
| 718 | loff_t *f_ps) |
| 719 | { |
| 720 | struct lineevent_state *le = filep->private_data; |
| 721 | unsigned int copied; |
| 722 | int ret; |
| 723 | |
| 724 | if (count < sizeof(struct gpioevent_data)) |
| 725 | return -EINVAL; |
| 726 | |
| 727 | do { |
| 728 | if (kfifo_is_empty(&le->events)) { |
| 729 | if (filep->f_flags & O_NONBLOCK) |
| 730 | return -EAGAIN; |
| 731 | |
| 732 | ret = wait_event_interruptible(le->wait, |
| 733 | !kfifo_is_empty(&le->events)); |
| 734 | if (ret) |
| 735 | return ret; |
| 736 | } |
| 737 | |
| 738 | if (mutex_lock_interruptible(&le->read_lock)) |
| 739 | return -ERESTARTSYS; |
| 740 | ret = kfifo_to_user(&le->events, buf, count, &copied); |
| 741 | mutex_unlock(&le->read_lock); |
| 742 | |
| 743 | if (ret) |
| 744 | return ret; |
| 745 | |
| 746 | /* |
| 747 | * If we couldn't read anything from the fifo (a different |
| 748 | * thread might have been faster) we either return -EAGAIN if |
| 749 | * the file descriptor is non-blocking, otherwise we go back to |
| 750 | * sleep and wait for more data to arrive. |
| 751 | */ |
| 752 | if (copied == 0 && (filep->f_flags & O_NONBLOCK)) |
| 753 | return -EAGAIN; |
| 754 | |
| 755 | } while (copied == 0); |
| 756 | |
| 757 | return copied; |
| 758 | } |
| 759 | |
| 760 | static int lineevent_release(struct inode *inode, struct file *filep) |
| 761 | { |
| 762 | struct lineevent_state *le = filep->private_data; |
| 763 | struct gpio_device *gdev = le->gdev; |
| 764 | |
| 765 | free_irq(le->irq, le); |
| 766 | gpiod_free(le->desc); |
| 767 | kfree(le->label); |
| 768 | kfree(le); |
| 769 | put_device(&gdev->dev); |
| 770 | return 0; |
| 771 | } |
| 772 | |
| 773 | static long lineevent_ioctl(struct file *filep, unsigned int cmd, |
| 774 | unsigned long arg) |
| 775 | { |
| 776 | struct lineevent_state *le = filep->private_data; |
| 777 | void __user *ip = (void __user *)arg; |
| 778 | struct gpiohandle_data ghd; |
| 779 | |
| 780 | /* |
| 781 | * We can get the value for an event line but not set it, |
| 782 | * because it is input by definition. |
| 783 | */ |
| 784 | if (cmd == GPIOHANDLE_GET_LINE_VALUES_IOCTL) { |
| 785 | int val; |
| 786 | |
Lars-Peter Clausen | d82aa4a | 2016-10-18 16:54:04 +0200 | [diff] [blame] | 787 | memset(&ghd, 0, sizeof(ghd)); |
| 788 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 789 | val = gpiod_get_value_cansleep(le->desc); |
| 790 | if (val < 0) |
| 791 | return val; |
| 792 | ghd.values[0] = val; |
| 793 | |
| 794 | if (copy_to_user(ip, &ghd, sizeof(ghd))) |
| 795 | return -EFAULT; |
| 796 | |
| 797 | return 0; |
| 798 | } |
| 799 | return -EINVAL; |
| 800 | } |
| 801 | |
| 802 | #ifdef CONFIG_COMPAT |
| 803 | static long lineevent_ioctl_compat(struct file *filep, unsigned int cmd, |
| 804 | unsigned long arg) |
| 805 | { |
| 806 | return lineevent_ioctl(filep, cmd, (unsigned long)compat_ptr(arg)); |
| 807 | } |
| 808 | #endif |
| 809 | |
| 810 | static const struct file_operations lineevent_fileops = { |
| 811 | .release = lineevent_release, |
| 812 | .read = lineevent_read, |
| 813 | .poll = lineevent_poll, |
| 814 | .owner = THIS_MODULE, |
| 815 | .llseek = noop_llseek, |
| 816 | .unlocked_ioctl = lineevent_ioctl, |
| 817 | #ifdef CONFIG_COMPAT |
| 818 | .compat_ioctl = lineevent_ioctl_compat, |
| 819 | #endif |
| 820 | }; |
| 821 | |
Ben Dooks | 33265b1 | 2016-06-17 16:03:13 +0100 | [diff] [blame] | 822 | static irqreturn_t lineevent_irq_thread(int irq, void *p) |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 823 | { |
| 824 | struct lineevent_state *le = p; |
| 825 | struct gpioevent_data ge; |
Uwe Kleine-König | fa38869 | 2018-08-20 08:32:53 +0200 | [diff] [blame] | 826 | int ret; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 827 | |
Linus Walleij | 24bd3ef | 2018-01-22 13:19:28 +0100 | [diff] [blame] | 828 | /* Do not leak kernel stack to userspace */ |
| 829 | memset(&ge, 0, sizeof(ge)); |
| 830 | |
Bartosz Golaszewski | 1033be5 | 2019-01-04 11:24:20 +0100 | [diff] [blame] | 831 | /* |
| 832 | * We may be running from a nested threaded interrupt in which case |
| 833 | * we didn't get the timestamp from lineevent_irq_handler(). |
| 834 | */ |
| 835 | if (!le->timestamp) |
| 836 | ge.timestamp = ktime_get_real_ns(); |
| 837 | else |
| 838 | ge.timestamp = le->timestamp; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 839 | |
Bartosz Golaszewski | ad537b8 | 2017-06-23 13:45:16 +0200 | [diff] [blame] | 840 | if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE |
| 841 | && le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) { |
Uwe Kleine-König | fa38869 | 2018-08-20 08:32:53 +0200 | [diff] [blame] | 842 | int level = gpiod_get_value_cansleep(le->desc); |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 843 | if (level) |
| 844 | /* Emit low-to-high event */ |
| 845 | ge.id = GPIOEVENT_EVENT_RISING_EDGE; |
| 846 | else |
| 847 | /* Emit high-to-low event */ |
| 848 | ge.id = GPIOEVENT_EVENT_FALLING_EDGE; |
Uwe Kleine-König | fa38869 | 2018-08-20 08:32:53 +0200 | [diff] [blame] | 849 | } else if (le->eflags & GPIOEVENT_REQUEST_RISING_EDGE) { |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 850 | /* Emit low-to-high event */ |
| 851 | ge.id = GPIOEVENT_EVENT_RISING_EDGE; |
Uwe Kleine-König | fa38869 | 2018-08-20 08:32:53 +0200 | [diff] [blame] | 852 | } else if (le->eflags & GPIOEVENT_REQUEST_FALLING_EDGE) { |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 853 | /* Emit high-to-low event */ |
| 854 | ge.id = GPIOEVENT_EVENT_FALLING_EDGE; |
Arnd Bergmann | bc0207a | 2016-06-16 11:02:41 +0200 | [diff] [blame] | 855 | } else { |
| 856 | return IRQ_NONE; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 857 | } |
| 858 | |
| 859 | ret = kfifo_put(&le->events, ge); |
| 860 | if (ret != 0) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 861 | wake_up_poll(&le->wait, EPOLLIN); |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 862 | |
| 863 | return IRQ_HANDLED; |
| 864 | } |
| 865 | |
Linus Walleij | d58f2bf | 2017-11-30 10:23:27 +0100 | [diff] [blame] | 866 | static irqreturn_t lineevent_irq_handler(int irq, void *p) |
| 867 | { |
| 868 | struct lineevent_state *le = p; |
| 869 | |
| 870 | /* |
| 871 | * Just store the timestamp in hardirq context so we get it as |
| 872 | * close in time as possible to the actual event. |
| 873 | */ |
| 874 | le->timestamp = ktime_get_real_ns(); |
| 875 | |
| 876 | return IRQ_WAKE_THREAD; |
| 877 | } |
| 878 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 879 | static int lineevent_create(struct gpio_device *gdev, void __user *ip) |
| 880 | { |
| 881 | struct gpioevent_request eventreq; |
| 882 | struct lineevent_state *le; |
| 883 | struct gpio_desc *desc; |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 884 | struct file *file; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 885 | u32 offset; |
| 886 | u32 lflags; |
| 887 | u32 eflags; |
| 888 | int fd; |
| 889 | int ret; |
| 890 | int irqflags = 0; |
| 891 | |
| 892 | if (copy_from_user(&eventreq, ip, sizeof(eventreq))) |
| 893 | return -EFAULT; |
| 894 | |
| 895 | le = kzalloc(sizeof(*le), GFP_KERNEL); |
| 896 | if (!le) |
| 897 | return -ENOMEM; |
| 898 | le->gdev = gdev; |
| 899 | get_device(&gdev->dev); |
| 900 | |
| 901 | /* Make sure this is terminated */ |
| 902 | eventreq.consumer_label[sizeof(eventreq.consumer_label)-1] = '\0'; |
| 903 | if (strlen(eventreq.consumer_label)) { |
| 904 | le->label = kstrdup(eventreq.consumer_label, |
| 905 | GFP_KERNEL); |
| 906 | if (!le->label) { |
| 907 | ret = -ENOMEM; |
| 908 | goto out_free_le; |
| 909 | } |
| 910 | } |
| 911 | |
| 912 | offset = eventreq.lineoffset; |
| 913 | lflags = eventreq.handleflags; |
| 914 | eflags = eventreq.eventflags; |
| 915 | |
Lars-Peter Clausen | b8b0e3d | 2016-10-18 16:54:03 +0200 | [diff] [blame] | 916 | if (offset >= gdev->ngpio) { |
| 917 | ret = -EINVAL; |
| 918 | goto out_free_label; |
| 919 | } |
| 920 | |
Lars-Peter Clausen | ac7dbb9 | 2016-10-18 16:54:06 +0200 | [diff] [blame] | 921 | /* Return an error if a unknown flag is set */ |
| 922 | if ((lflags & ~GPIOHANDLE_REQUEST_VALID_FLAGS) || |
| 923 | (eflags & ~GPIOEVENT_REQUEST_VALID_FLAGS)) { |
| 924 | ret = -EINVAL; |
| 925 | goto out_free_label; |
| 926 | } |
| 927 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 928 | /* This is just wrong: we don't look for events on output lines */ |
| 929 | if (lflags & GPIOHANDLE_REQUEST_OUTPUT) { |
| 930 | ret = -EINVAL; |
| 931 | goto out_free_label; |
| 932 | } |
| 933 | |
| 934 | desc = &gdev->descs[offset]; |
| 935 | ret = gpiod_request(desc, le->label); |
| 936 | if (ret) |
Uwe Kleine-König | f001cc3 | 2018-04-16 13:17:53 +0200 | [diff] [blame] | 937 | goto out_free_label; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 938 | le->desc = desc; |
| 939 | le->eflags = eflags; |
| 940 | |
| 941 | if (lflags & GPIOHANDLE_REQUEST_ACTIVE_LOW) |
| 942 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
| 943 | if (lflags & GPIOHANDLE_REQUEST_OPEN_DRAIN) |
| 944 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 945 | if (lflags & GPIOHANDLE_REQUEST_OPEN_SOURCE) |
| 946 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
| 947 | |
| 948 | ret = gpiod_direction_input(desc); |
| 949 | if (ret) |
| 950 | goto out_free_desc; |
| 951 | |
| 952 | le->irq = gpiod_to_irq(desc); |
| 953 | if (le->irq <= 0) { |
| 954 | ret = -ENODEV; |
| 955 | goto out_free_desc; |
| 956 | } |
| 957 | |
| 958 | if (eflags & GPIOEVENT_REQUEST_RISING_EDGE) |
| 959 | irqflags |= IRQF_TRIGGER_RISING; |
| 960 | if (eflags & GPIOEVENT_REQUEST_FALLING_EDGE) |
| 961 | irqflags |= IRQF_TRIGGER_FALLING; |
| 962 | irqflags |= IRQF_ONESHOT; |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 963 | |
| 964 | INIT_KFIFO(le->events); |
| 965 | init_waitqueue_head(&le->wait); |
| 966 | mutex_init(&le->read_lock); |
| 967 | |
| 968 | /* Request a thread to read the events */ |
| 969 | ret = request_threaded_irq(le->irq, |
Linus Walleij | d58f2bf | 2017-11-30 10:23:27 +0100 | [diff] [blame] | 970 | lineevent_irq_handler, |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 971 | lineevent_irq_thread, |
| 972 | irqflags, |
| 973 | le->label, |
| 974 | le); |
| 975 | if (ret) |
| 976 | goto out_free_desc; |
| 977 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 978 | fd = get_unused_fd_flags(O_RDONLY | O_CLOEXEC); |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 979 | if (fd < 0) { |
| 980 | ret = fd; |
| 981 | goto out_free_irq; |
| 982 | } |
| 983 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 984 | file = anon_inode_getfile("gpio-event", |
| 985 | &lineevent_fileops, |
| 986 | le, |
| 987 | O_RDONLY | O_CLOEXEC); |
| 988 | if (IS_ERR(file)) { |
| 989 | ret = PTR_ERR(file); |
| 990 | goto out_put_unused_fd; |
| 991 | } |
| 992 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 993 | eventreq.fd = fd; |
Linus Walleij | d932cd4 | 2016-07-04 13:13:04 +0200 | [diff] [blame] | 994 | if (copy_to_user(ip, &eventreq, sizeof(eventreq))) { |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 995 | /* |
| 996 | * fput() will trigger the release() callback, so do not go onto |
| 997 | * the regular error cleanup path here. |
| 998 | */ |
| 999 | fput(file); |
| 1000 | put_unused_fd(fd); |
| 1001 | return -EFAULT; |
Linus Walleij | d932cd4 | 2016-07-04 13:13:04 +0200 | [diff] [blame] | 1002 | } |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 1003 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 1004 | fd_install(fd, file); |
| 1005 | |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 1006 | return 0; |
| 1007 | |
Lars-Peter Clausen | 953b956 | 2016-10-24 13:59:15 +0200 | [diff] [blame] | 1008 | out_put_unused_fd: |
| 1009 | put_unused_fd(fd); |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 1010 | out_free_irq: |
| 1011 | free_irq(le->irq, le); |
| 1012 | out_free_desc: |
| 1013 | gpiod_free(le->desc); |
| 1014 | out_free_label: |
| 1015 | kfree(le->label); |
| 1016 | out_free_le: |
| 1017 | kfree(le); |
| 1018 | put_device(&gdev->dev); |
| 1019 | return ret; |
| 1020 | } |
| 1021 | |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 1022 | /* |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1023 | * gpio_ioctl() - ioctl handler for the GPIO chardev |
| 1024 | */ |
| 1025 | static long gpio_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 1026 | { |
| 1027 | struct gpio_device *gdev = filp->private_data; |
| 1028 | struct gpio_chip *chip = gdev->chip; |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 1029 | void __user *ip = (void __user *)arg; |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1030 | |
| 1031 | /* We fail any subsequent ioctl():s when the chip is gone */ |
| 1032 | if (!chip) |
| 1033 | return -ENODEV; |
| 1034 | |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1035 | /* Fill in the struct and pass to userspace */ |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1036 | if (cmd == GPIO_GET_CHIPINFO_IOCTL) { |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1037 | struct gpiochip_info chipinfo; |
| 1038 | |
Lars-Peter Clausen | 0f4bbb2 | 2016-10-18 16:54:00 +0200 | [diff] [blame] | 1039 | memset(&chipinfo, 0, sizeof(chipinfo)); |
| 1040 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1041 | strncpy(chipinfo.name, dev_name(&gdev->dev), |
| 1042 | sizeof(chipinfo.name)); |
| 1043 | chipinfo.name[sizeof(chipinfo.name)-1] = '\0'; |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1044 | strncpy(chipinfo.label, gdev->label, |
| 1045 | sizeof(chipinfo.label)); |
| 1046 | chipinfo.label[sizeof(chipinfo.label)-1] = '\0'; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1047 | chipinfo.lines = gdev->ngpio; |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1048 | if (copy_to_user(ip, &chipinfo, sizeof(chipinfo))) |
| 1049 | return -EFAULT; |
| 1050 | return 0; |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1051 | } else if (cmd == GPIO_GET_LINEINFO_IOCTL) { |
| 1052 | struct gpioline_info lineinfo; |
| 1053 | struct gpio_desc *desc; |
| 1054 | |
| 1055 | if (copy_from_user(&lineinfo, ip, sizeof(lineinfo))) |
| 1056 | return -EFAULT; |
Lars-Peter Clausen | 1f1cc45 | 2016-10-18 16:53:59 +0200 | [diff] [blame] | 1057 | if (lineinfo.line_offset >= gdev->ngpio) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1058 | return -EINVAL; |
| 1059 | |
| 1060 | desc = &gdev->descs[lineinfo.line_offset]; |
| 1061 | if (desc->name) { |
| 1062 | strncpy(lineinfo.name, desc->name, |
| 1063 | sizeof(lineinfo.name)); |
| 1064 | lineinfo.name[sizeof(lineinfo.name)-1] = '\0'; |
| 1065 | } else { |
| 1066 | lineinfo.name[0] = '\0'; |
| 1067 | } |
| 1068 | if (desc->label) { |
Linus Walleij | 214338e | 2016-02-25 21:01:48 +0100 | [diff] [blame] | 1069 | strncpy(lineinfo.consumer, desc->label, |
| 1070 | sizeof(lineinfo.consumer)); |
| 1071 | lineinfo.consumer[sizeof(lineinfo.consumer)-1] = '\0'; |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1072 | } else { |
Linus Walleij | 214338e | 2016-02-25 21:01:48 +0100 | [diff] [blame] | 1073 | lineinfo.consumer[0] = '\0'; |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | /* |
| 1077 | * Userspace only need to know that the kernel is using |
| 1078 | * this GPIO so it can't use it. |
| 1079 | */ |
| 1080 | lineinfo.flags = 0; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 1081 | if (test_bit(FLAG_REQUESTED, &desc->flags) || |
| 1082 | test_bit(FLAG_IS_HOGGED, &desc->flags) || |
| 1083 | test_bit(FLAG_USED_AS_IRQ, &desc->flags) || |
| 1084 | test_bit(FLAG_EXPORT, &desc->flags) || |
| 1085 | test_bit(FLAG_SYSFS, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1086 | lineinfo.flags |= GPIOLINE_FLAG_KERNEL; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 1087 | if (test_bit(FLAG_IS_OUT, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1088 | lineinfo.flags |= GPIOLINE_FLAG_IS_OUT; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 1089 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1090 | lineinfo.flags |= GPIOLINE_FLAG_ACTIVE_LOW; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 1091 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1092 | lineinfo.flags |= GPIOLINE_FLAG_OPEN_DRAIN; |
Linus Walleij | 9d8cc89 | 2016-02-22 13:44:53 +0100 | [diff] [blame] | 1093 | if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) |
Linus Walleij | 521a2ad | 2016-02-12 22:25:22 +0100 | [diff] [blame] | 1094 | lineinfo.flags |= GPIOLINE_FLAG_OPEN_SOURCE; |
| 1095 | |
| 1096 | if (copy_to_user(ip, &lineinfo, sizeof(lineinfo))) |
| 1097 | return -EFAULT; |
| 1098 | return 0; |
Linus Walleij | d7c51b4 | 2016-04-26 10:35:29 +0200 | [diff] [blame] | 1099 | } else if (cmd == GPIO_GET_LINEHANDLE_IOCTL) { |
| 1100 | return linehandle_create(gdev, ip); |
Linus Walleij | 61f922d | 2016-06-02 11:30:15 +0200 | [diff] [blame] | 1101 | } else if (cmd == GPIO_GET_LINEEVENT_IOCTL) { |
| 1102 | return lineevent_create(gdev, ip); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1103 | } |
| 1104 | return -EINVAL; |
| 1105 | } |
| 1106 | |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 1107 | #ifdef CONFIG_COMPAT |
| 1108 | static long gpio_ioctl_compat(struct file *filp, unsigned int cmd, |
| 1109 | unsigned long arg) |
| 1110 | { |
| 1111 | return gpio_ioctl(filp, cmd, (unsigned long)compat_ptr(arg)); |
| 1112 | } |
| 1113 | #endif |
| 1114 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1115 | /** |
| 1116 | * gpio_chrdev_open() - open the chardev for ioctl operations |
| 1117 | * @inode: inode for this chardev |
| 1118 | * @filp: file struct for storing private data |
| 1119 | * Returns 0 on success |
| 1120 | */ |
| 1121 | static int gpio_chrdev_open(struct inode *inode, struct file *filp) |
| 1122 | { |
| 1123 | struct gpio_device *gdev = container_of(inode->i_cdev, |
| 1124 | struct gpio_device, chrdev); |
| 1125 | |
| 1126 | /* Fail on open if the backing gpiochip is gone */ |
Stephen Boyd | fb50574 | 2017-01-09 11:47:44 -0800 | [diff] [blame] | 1127 | if (!gdev->chip) |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1128 | return -ENODEV; |
| 1129 | get_device(&gdev->dev); |
| 1130 | filp->private_data = gdev; |
Lars-Peter Clausen | f4e81c5 | 2016-11-30 13:05:21 +0100 | [diff] [blame] | 1131 | |
| 1132 | return nonseekable_open(inode, filp); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1133 | } |
| 1134 | |
| 1135 | /** |
| 1136 | * gpio_chrdev_release() - close chardev after ioctl operations |
| 1137 | * @inode: inode for this chardev |
| 1138 | * @filp: file struct for storing private data |
| 1139 | * Returns 0 on success |
| 1140 | */ |
| 1141 | static int gpio_chrdev_release(struct inode *inode, struct file *filp) |
| 1142 | { |
| 1143 | struct gpio_device *gdev = container_of(inode->i_cdev, |
| 1144 | struct gpio_device, chrdev); |
| 1145 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1146 | put_device(&gdev->dev); |
| 1147 | return 0; |
| 1148 | } |
| 1149 | |
| 1150 | |
| 1151 | static const struct file_operations gpio_fileops = { |
| 1152 | .release = gpio_chrdev_release, |
| 1153 | .open = gpio_chrdev_open, |
| 1154 | .owner = THIS_MODULE, |
Lars-Peter Clausen | f4e81c5 | 2016-11-30 13:05:21 +0100 | [diff] [blame] | 1155 | .llseek = no_llseek, |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1156 | .unlocked_ioctl = gpio_ioctl, |
Linus Walleij | 8b92e17 | 2016-05-27 14:24:04 +0200 | [diff] [blame] | 1157 | #ifdef CONFIG_COMPAT |
| 1158 | .compat_ioctl = gpio_ioctl_compat, |
| 1159 | #endif |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1160 | }; |
| 1161 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1162 | static void gpiodevice_release(struct device *dev) |
| 1163 | { |
| 1164 | struct gpio_device *gdev = dev_get_drvdata(dev); |
| 1165 | |
| 1166 | list_del(&gdev->list); |
| 1167 | ida_simple_remove(&gpio_ida, gdev->id); |
Bartosz Golaszewski | fcf273e5 | 2017-12-14 15:29:20 +0100 | [diff] [blame] | 1168 | kfree_const(gdev->label); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1169 | kfree(gdev->descs); |
Linus Walleij | 9efd9e6 | 2016-02-09 14:27:42 +0100 | [diff] [blame] | 1170 | kfree(gdev); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1171 | } |
| 1172 | |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1173 | static int gpiochip_setup_dev(struct gpio_device *gdev) |
| 1174 | { |
| 1175 | int status; |
| 1176 | |
| 1177 | cdev_init(&gdev->chrdev, &gpio_fileops); |
| 1178 | gdev->chrdev.owner = THIS_MODULE; |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1179 | gdev->dev.devt = MKDEV(MAJOR(gpio_devt), gdev->id); |
Logan Gunthorpe | 111379d | 2017-03-17 12:48:12 -0600 | [diff] [blame] | 1180 | |
| 1181 | status = cdev_device_add(&gdev->chrdev, &gdev->dev); |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1182 | if (status) |
Logan Gunthorpe | 111379d | 2017-03-17 12:48:12 -0600 | [diff] [blame] | 1183 | return status; |
| 1184 | |
| 1185 | chip_dbg(gdev->chip, "added GPIO chardev (%d:%d)\n", |
| 1186 | MAJOR(gpio_devt), gdev->id); |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1187 | |
| 1188 | status = gpiochip_sysfs_register(gdev); |
| 1189 | if (status) |
| 1190 | goto err_remove_device; |
| 1191 | |
| 1192 | /* From this point, the .release() function cleans up gpio_device */ |
| 1193 | gdev->dev.release = gpiodevice_release; |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1194 | pr_debug("%s: registered GPIOs %d to %d on device: %s (%s)\n", |
| 1195 | __func__, gdev->base, gdev->base + gdev->ngpio - 1, |
| 1196 | dev_name(&gdev->dev), gdev->chip->label ? : "generic"); |
| 1197 | |
| 1198 | return 0; |
| 1199 | |
| 1200 | err_remove_device: |
Logan Gunthorpe | 111379d | 2017-03-17 12:48:12 -0600 | [diff] [blame] | 1201 | cdev_device_del(&gdev->chrdev, &gdev->dev); |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1202 | return status; |
| 1203 | } |
| 1204 | |
Bartosz Golaszewski | a411e81 | 2018-04-10 22:30:28 +0200 | [diff] [blame] | 1205 | static void gpiochip_machine_hog(struct gpio_chip *chip, struct gpiod_hog *hog) |
| 1206 | { |
| 1207 | struct gpio_desc *desc; |
| 1208 | int rv; |
| 1209 | |
| 1210 | desc = gpiochip_get_desc(chip, hog->chip_hwnum); |
| 1211 | if (IS_ERR(desc)) { |
| 1212 | pr_err("%s: unable to get GPIO desc: %ld\n", |
| 1213 | __func__, PTR_ERR(desc)); |
| 1214 | return; |
| 1215 | } |
| 1216 | |
Dan Carpenter | ba3efdf | 2018-05-01 10:36:39 +0300 | [diff] [blame] | 1217 | if (test_bit(FLAG_IS_HOGGED, &desc->flags)) |
Bartosz Golaszewski | a411e81 | 2018-04-10 22:30:28 +0200 | [diff] [blame] | 1218 | return; |
| 1219 | |
| 1220 | rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags); |
| 1221 | if (rv) |
| 1222 | pr_err("%s: unable to hog GPIO line (%s:%u): %d\n", |
| 1223 | __func__, chip->label, hog->chip_hwnum, rv); |
| 1224 | } |
| 1225 | |
| 1226 | static void machine_gpiochip_add(struct gpio_chip *chip) |
| 1227 | { |
| 1228 | struct gpiod_hog *hog; |
| 1229 | |
| 1230 | mutex_lock(&gpio_machine_hogs_mutex); |
| 1231 | |
| 1232 | list_for_each_entry(hog, &gpio_machine_hogs, list) { |
| 1233 | if (!strcmp(chip->label, hog->chip_label)) |
| 1234 | gpiochip_machine_hog(chip, hog); |
| 1235 | } |
| 1236 | |
| 1237 | mutex_unlock(&gpio_machine_hogs_mutex); |
| 1238 | } |
| 1239 | |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1240 | static void gpiochip_setup_devs(void) |
| 1241 | { |
| 1242 | struct gpio_device *gdev; |
| 1243 | int err; |
| 1244 | |
| 1245 | list_for_each_entry(gdev, &gpio_devices, list) { |
| 1246 | err = gpiochip_setup_dev(gdev); |
| 1247 | if (err) |
| 1248 | pr_err("%s: Failed to initialize gpio device (%d)\n", |
| 1249 | dev_name(&gdev->dev), err); |
| 1250 | } |
| 1251 | } |
| 1252 | |
Thierry Reding | 959bc7b | 2017-11-07 19:15:59 +0100 | [diff] [blame] | 1253 | int gpiochip_add_data_with_key(struct gpio_chip *chip, void *data, |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1254 | struct lock_class_key *lock_key, |
| 1255 | struct lock_class_key *request_key) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1256 | { |
| 1257 | unsigned long flags; |
| 1258 | int status = 0; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1259 | unsigned i; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1260 | int base = chip->base; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1261 | struct gpio_device *gdev; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1262 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1263 | /* |
| 1264 | * First: allocate and populate the internal stat container, and |
| 1265 | * set up the struct device. |
| 1266 | */ |
Josh Cartwright | 969f07b | 2016-02-17 16:44:15 -0600 | [diff] [blame] | 1267 | gdev = kzalloc(sizeof(*gdev), GFP_KERNEL); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1268 | if (!gdev) |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1269 | return -ENOMEM; |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1270 | gdev->dev.bus = &gpio_bus_type; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1271 | gdev->chip = chip; |
| 1272 | chip->gpiodev = gdev; |
| 1273 | if (chip->parent) { |
| 1274 | gdev->dev.parent = chip->parent; |
| 1275 | gdev->dev.of_node = chip->parent->of_node; |
Thierry Reding | acc6e33 | 2016-07-05 14:11:14 +0200 | [diff] [blame] | 1276 | } |
| 1277 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1278 | #ifdef CONFIG_OF_GPIO |
| 1279 | /* If the gpiochip has an assigned OF node this takes precedence */ |
Thierry Reding | acc6e33 | 2016-07-05 14:11:14 +0200 | [diff] [blame] | 1280 | if (chip->of_node) |
| 1281 | gdev->dev.of_node = chip->of_node; |
Biju Das | 6ff0497 | 2018-08-06 10:48:01 +0100 | [diff] [blame] | 1282 | else |
| 1283 | chip->of_node = gdev->dev.of_node; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1284 | #endif |
Thierry Reding | acc6e33 | 2016-07-05 14:11:14 +0200 | [diff] [blame] | 1285 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1286 | gdev->id = ida_simple_get(&gpio_ida, 0, 0, GFP_KERNEL); |
| 1287 | if (gdev->id < 0) { |
| 1288 | status = gdev->id; |
| 1289 | goto err_free_gdev; |
| 1290 | } |
| 1291 | dev_set_name(&gdev->dev, "gpiochip%d", gdev->id); |
| 1292 | device_initialize(&gdev->dev); |
| 1293 | dev_set_drvdata(&gdev->dev, gdev); |
| 1294 | if (chip->parent && chip->parent->driver) |
| 1295 | gdev->owner = chip->parent->driver->owner; |
| 1296 | else if (chip->owner) |
| 1297 | /* TODO: remove chip->owner */ |
| 1298 | gdev->owner = chip->owner; |
| 1299 | else |
| 1300 | gdev->owner = THIS_MODULE; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1301 | |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1302 | gdev->descs = kcalloc(chip->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL); |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1303 | if (!gdev->descs) { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1304 | status = -ENOMEM; |
Vladimir Zapolskiy | a05a140 | 2018-11-02 15:39:43 +0200 | [diff] [blame] | 1305 | goto err_free_ida; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1306 | } |
| 1307 | |
Bamvor Jian Zhang | 5ed41cc | 2015-11-16 13:02:47 +0800 | [diff] [blame] | 1308 | if (chip->ngpio == 0) { |
| 1309 | 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] | 1310 | status = -EINVAL; |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1311 | goto err_free_descs; |
Bamvor Jian Zhang | 5ed41cc | 2015-11-16 13:02:47 +0800 | [diff] [blame] | 1312 | } |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1313 | |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 1314 | if (chip->ngpio > FASTPATH_NGPIO) |
| 1315 | chip_warn(chip, "line cnt %u is greater than fast path cnt %u\n", |
| 1316 | chip->ngpio, FASTPATH_NGPIO); |
| 1317 | |
Bartosz Golaszewski | fcf273e5 | 2017-12-14 15:29:20 +0100 | [diff] [blame] | 1318 | gdev->label = kstrdup_const(chip->label ?: "unknown", GFP_KERNEL); |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1319 | if (!gdev->label) { |
| 1320 | status = -ENOMEM; |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1321 | goto err_free_descs; |
Linus Walleij | df4878e | 2016-02-12 14:48:23 +0100 | [diff] [blame] | 1322 | } |
| 1323 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1324 | gdev->ngpio = chip->ngpio; |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1325 | gdev->data = data; |
Bamvor Jian Zhang | 5ed41cc | 2015-11-16 13:02:47 +0800 | [diff] [blame] | 1326 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1327 | spin_lock_irqsave(&gpio_lock, flags); |
| 1328 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1329 | /* |
| 1330 | * TODO: this allocates a Linux GPIO number base in the global |
| 1331 | * GPIO numberspace for this chip. In the long run we want to |
| 1332 | * get *rid* of this numberspace and use only descriptors, but |
| 1333 | * it may be a pipe dream. It will not happen before we get rid |
| 1334 | * of the sysfs interface anyways. |
| 1335 | */ |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1336 | if (base < 0) { |
| 1337 | base = gpiochip_find_base(chip->ngpio); |
| 1338 | if (base < 0) { |
| 1339 | status = base; |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1340 | spin_unlock_irqrestore(&gpio_lock, flags); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1341 | goto err_free_label; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1342 | } |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1343 | /* |
| 1344 | * TODO: it should not be necessary to reflect the assigned |
| 1345 | * base outside of the GPIO subsystem. Go over drivers and |
| 1346 | * see if anyone makes use of this, else drop this and assign |
| 1347 | * a poison instead. |
| 1348 | */ |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1349 | chip->base = base; |
| 1350 | } |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1351 | gdev->base = base; |
Anton Vorontsov | 8d0aab2 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 1352 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1353 | status = gpiodev_add_to_list(gdev); |
Johan Hovold | 05aa520 | 2015-01-12 17:12:26 +0100 | [diff] [blame] | 1354 | if (status) { |
| 1355 | spin_unlock_irqrestore(&gpio_lock, flags); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1356 | goto err_free_label; |
Johan Hovold | 05aa520 | 2015-01-12 17:12:26 +0100 | [diff] [blame] | 1357 | } |
Alexandre Courbot | 1a989d0 | 2013-02-03 01:29:24 +0900 | [diff] [blame] | 1358 | |
Linus Walleij | 545ebd9 | 2016-05-30 17:11:59 +0200 | [diff] [blame] | 1359 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 1360 | |
Ricardo Ribalda Delgado | 767cd17 | 2018-10-12 08:11:36 +0200 | [diff] [blame] | 1361 | for (i = 0; i < chip->ngpio; i++) |
| 1362 | gdev->descs[i].gdev = gdev; |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1363 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1364 | #ifdef CONFIG_PINCTRL |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 1365 | INIT_LIST_HEAD(&gdev->pin_ranges); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 1366 | #endif |
| 1367 | |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 1368 | status = gpiochip_set_desc_names(chip); |
| 1369 | if (status) |
| 1370 | goto err_remove_from_list; |
| 1371 | |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1372 | status = gpiochip_irqchip_init_valid_mask(chip); |
| 1373 | if (status) |
| 1374 | goto err_remove_from_list; |
| 1375 | |
Ricardo Ribalda Delgado | f8ec92a | 2018-10-05 08:52:58 +0200 | [diff] [blame] | 1376 | status = gpiochip_alloc_valid_mask(chip); |
Stephen Boyd | 726cb3b | 2018-03-23 09:34:52 -0700 | [diff] [blame] | 1377 | if (status) |
| 1378 | goto err_remove_irqchip_mask; |
| 1379 | |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1380 | status = gpiochip_add_irqchip(chip, lock_key, request_key); |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1381 | if (status) |
| 1382 | goto err_remove_chip; |
| 1383 | |
Tomeu Vizoso | 28355f8 | 2015-07-14 10:29:54 +0200 | [diff] [blame] | 1384 | status = of_gpiochip_add(chip); |
| 1385 | if (status) |
| 1386 | goto err_remove_chip; |
| 1387 | |
Ricardo Ribalda Delgado | f8ec92a | 2018-10-05 08:52:58 +0200 | [diff] [blame] | 1388 | status = gpiochip_init_valid_mask(chip); |
| 1389 | if (status) |
| 1390 | goto err_remove_chip; |
| 1391 | |
Ricardo Ribalda Delgado | 3edfb7b | 2018-10-05 08:53:00 +0200 | [diff] [blame] | 1392 | for (i = 0; i < chip->ngpio; i++) { |
| 1393 | struct gpio_desc *desc = &gdev->descs[i]; |
| 1394 | |
Ricardo Ribalda Delgado | 3edfb7b | 2018-10-05 08:53:00 +0200 | [diff] [blame] | 1395 | if (chip->get_direction && gpiochip_line_is_valid(chip, i)) |
| 1396 | desc->flags = !chip->get_direction(chip, i) ? |
| 1397 | (1 << FLAG_IS_OUT) : 0; |
| 1398 | else |
| 1399 | desc->flags = !chip->direction_input ? |
| 1400 | (1 << FLAG_IS_OUT) : 0; |
| 1401 | } |
| 1402 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 1403 | acpi_gpiochip_add(chip); |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 1404 | |
Bartosz Golaszewski | a411e81 | 2018-04-10 22:30:28 +0200 | [diff] [blame] | 1405 | machine_gpiochip_add(chip); |
| 1406 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1407 | /* |
| 1408 | * By first adding the chardev, and then adding the device, |
| 1409 | * we get a device node entry in sysfs under |
| 1410 | * /sys/bus/gpio/devices/gpiochipN/dev that can be used for |
| 1411 | * coldplug of device nodes and other udev business. |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1412 | * We can do this only if gpiolib has been initialized. |
| 1413 | * Otherwise, defer until later. |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 1414 | */ |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 1415 | if (gpiolib_initialized) { |
| 1416 | status = gpiochip_setup_dev(gdev); |
| 1417 | if (status) |
| 1418 | goto err_remove_chip; |
| 1419 | } |
Anton Vorontsov | cedb188 | 2010-06-08 07:48:15 -0600 | [diff] [blame] | 1420 | return 0; |
Zhangfei Gao | 3bae481 | 2013-06-09 11:08:32 +0800 | [diff] [blame] | 1421 | |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1422 | err_remove_chip: |
| 1423 | acpi_gpiochip_remove(chip); |
Johan Hovold | 6d86750 | 2015-05-04 17:23:25 +0200 | [diff] [blame] | 1424 | gpiochip_free_hogs(chip); |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1425 | of_gpiochip_remove(chip); |
Stephen Boyd | 726cb3b | 2018-03-23 09:34:52 -0700 | [diff] [blame] | 1426 | gpiochip_free_valid_mask(chip); |
| 1427 | err_remove_irqchip_mask: |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1428 | gpiochip_irqchip_free_valid_mask(chip); |
Markus Pargmann | 5f3ca73 | 2015-08-14 16:11:00 +0200 | [diff] [blame] | 1429 | err_remove_from_list: |
Johan Hovold | 225fce8 | 2015-01-12 17:12:25 +0100 | [diff] [blame] | 1430 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1431 | list_del(&gdev->list); |
Zhangfei Gao | 3bae481 | 2013-06-09 11:08:32 +0800 | [diff] [blame] | 1432 | spin_unlock_irqrestore(&gpio_lock, flags); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1433 | err_free_label: |
Bartosz Golaszewski | fcf273e5 | 2017-12-14 15:29:20 +0100 | [diff] [blame] | 1434 | kfree_const(gdev->label); |
Guenter Roeck | 476e2fc | 2016-03-31 08:11:29 -0700 | [diff] [blame] | 1435 | err_free_descs: |
| 1436 | kfree(gdev->descs); |
Vladimir Zapolskiy | a05a140 | 2018-11-02 15:39:43 +0200 | [diff] [blame] | 1437 | err_free_ida: |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1438 | ida_simple_remove(&gpio_ida, gdev->id); |
Vladimir Zapolskiy | a05a140 | 2018-11-02 15:39:43 +0200 | [diff] [blame] | 1439 | err_free_gdev: |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1440 | /* failures here can mean systems won't boot... */ |
Marcel Ziswiler | 1777fc9 | 2018-07-20 09:54:49 +0200 | [diff] [blame] | 1441 | pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__, |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1442 | gdev->base, gdev->base + gdev->ngpio - 1, |
Marcel Ziswiler | 1777fc9 | 2018-07-20 09:54:49 +0200 | [diff] [blame] | 1443 | chip->label ? : "generic", status); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1444 | kfree(gdev); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1445 | return status; |
| 1446 | } |
Thierry Reding | 959bc7b | 2017-11-07 19:15:59 +0100 | [diff] [blame] | 1447 | EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1448 | |
| 1449 | /** |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1450 | * gpiochip_get_data() - get per-subdriver data for the chip |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 1451 | * @chip: GPIO chip |
| 1452 | * |
| 1453 | * Returns: |
| 1454 | * The per-subdriver data for the chip. |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1455 | */ |
| 1456 | void *gpiochip_get_data(struct gpio_chip *chip) |
| 1457 | { |
| 1458 | return chip->gpiodev->data; |
| 1459 | } |
| 1460 | EXPORT_SYMBOL_GPL(gpiochip_get_data); |
| 1461 | |
| 1462 | /** |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1463 | * gpiochip_remove() - unregister a gpio_chip |
| 1464 | * @chip: the chip to unregister |
| 1465 | * |
| 1466 | * A gpio_chip with any GPIOs still requested may not be removed. |
| 1467 | */ |
abdoulaye berthe | e1db170 | 2014-07-05 18:28:50 +0200 | [diff] [blame] | 1468 | void gpiochip_remove(struct gpio_chip *chip) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1469 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1470 | struct gpio_device *gdev = chip->gpiodev; |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1471 | struct gpio_desc *desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1472 | unsigned long flags; |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1473 | unsigned i; |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1474 | bool requested = false; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1475 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1476 | /* FIXME: should the legacy sysfs handling be moved to gpio_device? */ |
Linus Walleij | afbc4f3 | 2016-02-09 13:21:06 +0100 | [diff] [blame] | 1477 | gpiochip_sysfs_unregister(gdev); |
Geert Uytterhoeven | 5018ada | 2016-12-19 18:29:23 +0100 | [diff] [blame] | 1478 | gpiochip_free_hogs(chip); |
Bamvor Jian Zhang | bd203bd | 2016-02-20 13:13:19 +0800 | [diff] [blame] | 1479 | /* Numb the device, cancelling all outstanding operations */ |
| 1480 | gdev->chip = NULL; |
Johan Hovold | 00acc3d | 2015-01-12 17:12:27 +0100 | [diff] [blame] | 1481 | gpiochip_irqchip_remove(chip); |
Mika Westerberg | 6072b9d | 2014-03-10 14:54:53 +0200 | [diff] [blame] | 1482 | acpi_gpiochip_remove(chip); |
Linus Walleij | 9ef0d6f | 2012-11-06 15:15:44 +0100 | [diff] [blame] | 1483 | gpiochip_remove_pin_ranges(chip); |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 1484 | of_gpiochip_remove(chip); |
Stephen Boyd | 726cb3b | 2018-03-23 09:34:52 -0700 | [diff] [blame] | 1485 | gpiochip_free_valid_mask(chip); |
Linus Walleij | 43c54ec | 2016-02-11 11:37:48 +0100 | [diff] [blame] | 1486 | /* |
| 1487 | * We accept no more calls into the driver from this point, so |
| 1488 | * NULL the driver data pointer |
| 1489 | */ |
| 1490 | gdev->data = NULL; |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 1491 | |
Johan Hovold | 6798aca | 2015-01-12 17:12:28 +0100 | [diff] [blame] | 1492 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1493 | for (i = 0; i < gdev->ngpio; i++) { |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 1494 | desc = &gdev->descs[i]; |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1495 | if (test_bit(FLAG_REQUESTED, &desc->flags)) |
| 1496 | requested = true; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1497 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1498 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 14e85c0 | 2014-11-19 16:51:27 +0900 | [diff] [blame] | 1499 | |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1500 | if (requested) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 1501 | dev_crit(&gdev->dev, |
Linus Walleij | 58383c78 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 1502 | "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n"); |
Johan Hovold | fab28b8 | 2015-05-04 17:10:27 +0200 | [diff] [blame] | 1503 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1504 | /* |
| 1505 | * The gpiochip side puts its use of the device to rest here: |
| 1506 | * if there are no userspace clients, the chardev and device will |
| 1507 | * be removed, else it will be dangling until the last user is |
| 1508 | * gone. |
| 1509 | */ |
Logan Gunthorpe | 111379d | 2017-03-17 12:48:12 -0600 | [diff] [blame] | 1510 | cdev_device_del(&gdev->chrdev, &gdev->dev); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1511 | put_device(&gdev->dev); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1512 | } |
| 1513 | EXPORT_SYMBOL_GPL(gpiochip_remove); |
| 1514 | |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1515 | static void devm_gpio_chip_release(struct device *dev, void *res) |
| 1516 | { |
| 1517 | struct gpio_chip *chip = *(struct gpio_chip **)res; |
| 1518 | |
| 1519 | gpiochip_remove(chip); |
| 1520 | } |
| 1521 | |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1522 | /** |
Jonathan Neuschäfer | 689fd02 | 2017-12-21 17:56:34 +0100 | [diff] [blame] | 1523 | * devm_gpiochip_add_data() - Resource manager gpiochip_add_data() |
Uwe Kleine-König | 3925b90f | 2018-10-08 11:34:03 +0200 | [diff] [blame] | 1524 | * @dev: pointer to the device that gpio_chip belongs to. |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1525 | * @chip: the chip to register, with chip->base initialized |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 1526 | * @data: driver-private data associated with this chip |
| 1527 | * |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1528 | * Context: potentially before irqs will work |
| 1529 | * |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1530 | * The gpio chip automatically be released when the device is unbound. |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 1531 | * |
| 1532 | * Returns: |
| 1533 | * A negative errno if the chip can't be registered, such as because the |
| 1534 | * chip->base is invalid or already associated with a different chip. |
| 1535 | * Otherwise it returns zero as a success code. |
Laxman Dewangan | 0cf3292 | 2016-02-15 16:32:09 +0530 | [diff] [blame] | 1536 | */ |
| 1537 | int devm_gpiochip_add_data(struct device *dev, struct gpio_chip *chip, |
| 1538 | void *data) |
| 1539 | { |
| 1540 | struct gpio_chip **ptr; |
| 1541 | int ret; |
| 1542 | |
| 1543 | ptr = devres_alloc(devm_gpio_chip_release, sizeof(*ptr), |
| 1544 | GFP_KERNEL); |
| 1545 | if (!ptr) |
| 1546 | return -ENOMEM; |
| 1547 | |
| 1548 | ret = gpiochip_add_data(chip, data); |
| 1549 | if (ret < 0) { |
| 1550 | devres_free(ptr); |
| 1551 | return ret; |
| 1552 | } |
| 1553 | |
| 1554 | *ptr = chip; |
| 1555 | devres_add(dev, ptr); |
| 1556 | |
| 1557 | return 0; |
| 1558 | } |
| 1559 | EXPORT_SYMBOL_GPL(devm_gpiochip_add_data); |
| 1560 | |
| 1561 | /** |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1562 | * gpiochip_find() - iterator for locating a specific gpio_chip |
| 1563 | * @data: data to pass to match function |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 1564 | * @match: Callback function to check gpio_chip |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1565 | * |
| 1566 | * Similar to bus_find_device. It returns a reference to a gpio_chip as |
| 1567 | * determined by a user supplied @match callback. The callback should return |
| 1568 | * 0 if the device doesn't match and non-zero if it does. If the callback is |
| 1569 | * non-zero, this function will return to the caller and not iterate over any |
| 1570 | * more gpio_chips. |
| 1571 | */ |
Grant Likely | 07ce8ec | 2012-05-18 23:01:05 -0600 | [diff] [blame] | 1572 | struct gpio_chip *gpiochip_find(void *data, |
Grant Likely | 6e2cf65 | 2012-03-02 15:56:03 -0700 | [diff] [blame] | 1573 | int (*match)(struct gpio_chip *chip, |
Grant Likely | 3d0f7cf | 2012-05-17 13:54:40 -0600 | [diff] [blame] | 1574 | void *data)) |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1575 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1576 | struct gpio_device *gdev; |
Masahiro Yamada | acf06ff | 2016-08-12 01:21:58 +0900 | [diff] [blame] | 1577 | struct gpio_chip *chip = NULL; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1578 | unsigned long flags; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1579 | |
| 1580 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1581 | list_for_each_entry(gdev, &gpio_devices, list) |
Masahiro Yamada | acf06ff | 2016-08-12 01:21:58 +0900 | [diff] [blame] | 1582 | if (gdev->chip && match(gdev->chip, data)) { |
| 1583 | chip = gdev->chip; |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1584 | break; |
Masahiro Yamada | acf06ff | 2016-08-12 01:21:58 +0900 | [diff] [blame] | 1585 | } |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 1586 | |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 1587 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 1588 | |
| 1589 | return chip; |
| 1590 | } |
Jean Delvare | 8fa0c9b | 2011-05-20 00:40:18 -0600 | [diff] [blame] | 1591 | EXPORT_SYMBOL_GPL(gpiochip_find); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 1592 | |
Alexandre Courbot | 79697ef | 2013-11-16 21:39:32 +0900 | [diff] [blame] | 1593 | static int gpiochip_match_name(struct gpio_chip *chip, void *data) |
| 1594 | { |
| 1595 | const char *name = data; |
| 1596 | |
| 1597 | return !strcmp(chip->label, name); |
| 1598 | } |
| 1599 | |
| 1600 | static struct gpio_chip *find_chip_by_name(const char *name) |
| 1601 | { |
| 1602 | return gpiochip_find((void *)name, gpiochip_match_name); |
| 1603 | } |
| 1604 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1605 | #ifdef CONFIG_GPIOLIB_IRQCHIP |
| 1606 | |
| 1607 | /* |
| 1608 | * The following is irqchip helper code for gpiochips. |
| 1609 | */ |
| 1610 | |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1611 | static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip) |
| 1612 | { |
Thierry Reding | dc7b038 | 2017-11-07 19:15:52 +0100 | [diff] [blame] | 1613 | if (!gpiochip->irq.need_valid_mask) |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1614 | return 0; |
| 1615 | |
Stephen Boyd | e4371f6e | 2018-03-23 09:34:50 -0700 | [diff] [blame] | 1616 | gpiochip->irq.valid_mask = gpiochip_allocate_mask(gpiochip); |
Thierry Reding | dc7b038 | 2017-11-07 19:15:52 +0100 | [diff] [blame] | 1617 | if (!gpiochip->irq.valid_mask) |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1618 | return -ENOMEM; |
| 1619 | |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1620 | return 0; |
| 1621 | } |
| 1622 | |
| 1623 | static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip) |
| 1624 | { |
Thierry Reding | dc7b038 | 2017-11-07 19:15:52 +0100 | [diff] [blame] | 1625 | kfree(gpiochip->irq.valid_mask); |
| 1626 | gpiochip->irq.valid_mask = NULL; |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1627 | } |
| 1628 | |
Stephen Boyd | 64ff2c8 | 2018-01-09 17:58:46 -0800 | [diff] [blame] | 1629 | bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gpiochip, |
| 1630 | unsigned int offset) |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1631 | { |
Stephen Boyd | 726cb3b | 2018-03-23 09:34:52 -0700 | [diff] [blame] | 1632 | if (!gpiochip_line_is_valid(gpiochip, offset)) |
| 1633 | return false; |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1634 | /* No mask means all valid */ |
Thierry Reding | dc7b038 | 2017-11-07 19:15:52 +0100 | [diff] [blame] | 1635 | if (likely(!gpiochip->irq.valid_mask)) |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1636 | return true; |
Thierry Reding | dc7b038 | 2017-11-07 19:15:52 +0100 | [diff] [blame] | 1637 | return test_bit(offset, gpiochip->irq.valid_mask); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1638 | } |
Stephen Boyd | 64ff2c8 | 2018-01-09 17:58:46 -0800 | [diff] [blame] | 1639 | EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1640 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1641 | /** |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1642 | * gpiochip_set_cascaded_irqchip() - connects a cascaded irqchip to a gpiochip |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1643 | * @gpiochip: the gpiochip to set the irqchip chain to |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1644 | * @parent_irq: the irq number corresponding to the parent IRQ for this |
| 1645 | * chained irqchip |
| 1646 | * @parent_handler: the parent interrupt handler for the accumulated IRQ |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1647 | * coming out of the gpiochip. If the interrupt is nested rather than |
| 1648 | * cascaded, pass NULL in this handler argument |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1649 | */ |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1650 | static void gpiochip_set_cascaded_irqchip(struct gpio_chip *gpiochip, |
Thierry Reding | 6f79309 | 2017-04-03 18:05:21 +0200 | [diff] [blame] | 1651 | unsigned int parent_irq, |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1652 | irq_flow_handler_t parent_handler) |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1653 | { |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 1654 | if (!gpiochip->irq.domain) { |
Linus Walleij | 83141a7 | 2014-09-26 13:50:12 +0200 | [diff] [blame] | 1655 | chip_err(gpiochip, "called %s before setting up irqchip\n", |
| 1656 | __func__); |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1657 | return; |
| 1658 | } |
| 1659 | |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1660 | if (parent_handler) { |
| 1661 | if (gpiochip->can_sleep) { |
| 1662 | chip_err(gpiochip, |
Andy Shevchenko | b191171 | 2018-07-03 03:39:03 +0300 | [diff] [blame] | 1663 | "you cannot have chained interrupts on a chip that may sleep\n"); |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1664 | return; |
| 1665 | } |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1666 | /* |
| 1667 | * The parent irqchip is already using the chip_data for this |
| 1668 | * irqchip, so our callbacks simply use the handler_data. |
| 1669 | */ |
Thomas Gleixner | f7f8775 | 2015-06-21 21:10:48 +0200 | [diff] [blame] | 1670 | irq_set_chained_handler_and_data(parent_irq, parent_handler, |
| 1671 | gpiochip); |
Dmitry Eremin-Solenikov | 25e4fe9 | 2015-05-12 20:12:23 +0300 | [diff] [blame] | 1672 | |
Stephen Boyd | 3e779a2 | 2018-10-08 09:32:13 -0700 | [diff] [blame] | 1673 | gpiochip->irq.parent_irq = parent_irq; |
| 1674 | gpiochip->irq.parents = &gpiochip->irq.parent_irq; |
Thierry Reding | 39e5f09 | 2017-11-07 19:15:50 +0100 | [diff] [blame] | 1675 | gpiochip->irq.num_parents = 1; |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 1676 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1677 | } |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1678 | |
| 1679 | /** |
| 1680 | * gpiochip_set_chained_irqchip() - connects a chained irqchip to a gpiochip |
| 1681 | * @gpiochip: the gpiochip to set the irqchip chain to |
| 1682 | * @irqchip: the irqchip to chain to the gpiochip |
| 1683 | * @parent_irq: the irq number corresponding to the parent IRQ for this |
| 1684 | * chained irqchip |
| 1685 | * @parent_handler: the parent interrupt handler for the accumulated IRQ |
Stephen Boyd | 40f5ff4 | 2018-10-08 09:32:16 -0700 | [diff] [blame] | 1686 | * coming out of the gpiochip. |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1687 | */ |
| 1688 | void gpiochip_set_chained_irqchip(struct gpio_chip *gpiochip, |
| 1689 | struct irq_chip *irqchip, |
Thierry Reding | 6f79309 | 2017-04-03 18:05:21 +0200 | [diff] [blame] | 1690 | unsigned int parent_irq, |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1691 | irq_flow_handler_t parent_handler) |
| 1692 | { |
Thierry Reding | 60ed54c | 2017-11-07 19:15:57 +0100 | [diff] [blame] | 1693 | if (gpiochip->irq.threaded) { |
| 1694 | chip_err(gpiochip, "tried to chain a threaded gpiochip\n"); |
| 1695 | return; |
| 1696 | } |
| 1697 | |
Stephen Boyd | 3c1f6b2 | 2018-10-08 09:32:15 -0700 | [diff] [blame] | 1698 | gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, parent_handler); |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1699 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1700 | EXPORT_SYMBOL_GPL(gpiochip_set_chained_irqchip); |
| 1701 | |
| 1702 | /** |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1703 | * gpiochip_set_nested_irqchip() - connects a nested irqchip to a gpiochip |
| 1704 | * @gpiochip: the gpiochip to set the irqchip nested handler to |
| 1705 | * @irqchip: the irqchip to nest to the gpiochip |
| 1706 | * @parent_irq: the irq number corresponding to the parent IRQ for this |
| 1707 | * nested irqchip |
| 1708 | */ |
| 1709 | void gpiochip_set_nested_irqchip(struct gpio_chip *gpiochip, |
| 1710 | struct irq_chip *irqchip, |
Thierry Reding | 6f79309 | 2017-04-03 18:05:21 +0200 | [diff] [blame] | 1711 | unsigned int parent_irq) |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1712 | { |
Stephen Boyd | 3c1f6b2 | 2018-10-08 09:32:15 -0700 | [diff] [blame] | 1713 | gpiochip_set_cascaded_irqchip(gpiochip, parent_irq, NULL); |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1714 | } |
| 1715 | EXPORT_SYMBOL_GPL(gpiochip_set_nested_irqchip); |
| 1716 | |
| 1717 | /** |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1718 | * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip |
| 1719 | * @d: the irqdomain used by this irqchip |
| 1720 | * @irq: the global irq number used by this GPIO irqchip irq |
| 1721 | * @hwirq: the local IRQ/GPIO line offset on this gpiochip |
| 1722 | * |
| 1723 | * This function will set up the mapping for a certain IRQ line on a |
| 1724 | * gpiochip by assigning the gpiochip as chip data, and using the irqchip |
| 1725 | * stored inside the gpiochip. |
| 1726 | */ |
Thierry Reding | 1b95b4e | 2017-11-07 19:15:55 +0100 | [diff] [blame] | 1727 | int gpiochip_irq_map(struct irq_domain *d, unsigned int irq, |
| 1728 | irq_hw_number_t hwirq) |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1729 | { |
| 1730 | struct gpio_chip *chip = d->host_data; |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1731 | int err = 0; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1732 | |
Grygorii Strashko | dc749a0 | 2017-07-21 11:49:00 -0500 | [diff] [blame] | 1733 | if (!gpiochip_irqchip_irq_valid(chip, hwirq)) |
| 1734 | return -ENXIO; |
| 1735 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1736 | irq_set_chip_data(irq, chip); |
Grygorii Strashko | a0a8bcf | 2015-08-17 15:35:23 +0300 | [diff] [blame] | 1737 | /* |
| 1738 | * This lock class tells lockdep that GPIO irqs are in a different |
| 1739 | * category than their parents, so it won't report false recursion. |
| 1740 | */ |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1741 | irq_set_lockdep_class(irq, chip->irq.lock_key, chip->irq.request_key); |
Thierry Reding | c7a0aa5 | 2017-11-07 19:15:48 +0100 | [diff] [blame] | 1742 | irq_set_chip_and_handler(irq, chip->irq.chip, chip->irq.handler); |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 1743 | /* Chips that use nested thread handlers have them marked */ |
Thierry Reding | 60ed54c | 2017-11-07 19:15:57 +0100 | [diff] [blame] | 1744 | if (chip->irq.threaded) |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1745 | irq_set_nested_thread(irq, 1); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1746 | irq_set_noprobe(irq); |
Rob Herring | 23393d4 | 2015-07-27 15:55:16 -0500 | [diff] [blame] | 1747 | |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1748 | if (chip->irq.num_parents == 1) |
| 1749 | err = irq_set_parent(irq, chip->irq.parents[0]); |
| 1750 | else if (chip->irq.map) |
| 1751 | err = irq_set_parent(irq, chip->irq.map[hwirq]); |
| 1752 | |
| 1753 | if (err < 0) |
| 1754 | return err; |
| 1755 | |
Linus Walleij | 1333b90 | 2014-04-23 16:45:12 +0200 | [diff] [blame] | 1756 | /* |
| 1757 | * No set-up of the hardware will happen if IRQ_TYPE_NONE |
| 1758 | * is passed as default type. |
| 1759 | */ |
Thierry Reding | 3634eeb | 2017-11-07 19:15:49 +0100 | [diff] [blame] | 1760 | if (chip->irq.default_type != IRQ_TYPE_NONE) |
| 1761 | irq_set_irq_type(irq, chip->irq.default_type); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1762 | |
| 1763 | return 0; |
| 1764 | } |
Thierry Reding | 1b95b4e | 2017-11-07 19:15:55 +0100 | [diff] [blame] | 1765 | EXPORT_SYMBOL_GPL(gpiochip_irq_map); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1766 | |
Thierry Reding | 1b95b4e | 2017-11-07 19:15:55 +0100 | [diff] [blame] | 1767 | void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq) |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1768 | { |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1769 | struct gpio_chip *chip = d->host_data; |
| 1770 | |
Thierry Reding | 60ed54c | 2017-11-07 19:15:57 +0100 | [diff] [blame] | 1771 | if (chip->irq.threaded) |
Linus Walleij | 1c8732b | 2014-04-09 13:34:39 +0200 | [diff] [blame] | 1772 | irq_set_nested_thread(irq, 0); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1773 | irq_set_chip_and_handler(irq, NULL, NULL); |
| 1774 | irq_set_chip_data(irq, NULL); |
| 1775 | } |
Thierry Reding | 1b95b4e | 2017-11-07 19:15:55 +0100 | [diff] [blame] | 1776 | EXPORT_SYMBOL_GPL(gpiochip_irq_unmap); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1777 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1778 | static const struct irq_domain_ops gpiochip_domain_ops = { |
| 1779 | .map = gpiochip_irq_map, |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1780 | .unmap = gpiochip_irq_unmap, |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1781 | /* Virtually all GPIO irqchips are twocell:ed */ |
| 1782 | .xlate = irq_domain_xlate_twocell, |
| 1783 | }; |
| 1784 | |
Brian Masney | ef74f70 | 2019-01-19 15:42:42 -0500 | [diff] [blame] | 1785 | /** |
| 1786 | * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ |
| 1787 | * @domain: The IRQ domain used by this IRQ chip |
| 1788 | * @data: Outermost irq_data associated with the IRQ |
| 1789 | * @reserve: If set, only reserve an interrupt vector instead of assigning one |
| 1790 | * |
| 1791 | * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be |
| 1792 | * used as the activate function for the &struct irq_domain_ops. The host_data |
| 1793 | * for the IRQ domain must be the &struct gpio_chip. |
| 1794 | */ |
| 1795 | int gpiochip_irq_domain_activate(struct irq_domain *domain, |
| 1796 | struct irq_data *data, bool reserve) |
| 1797 | { |
| 1798 | struct gpio_chip *chip = domain->host_data; |
| 1799 | |
| 1800 | return gpiochip_lock_as_irq(chip, data->hwirq); |
| 1801 | } |
| 1802 | EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate); |
| 1803 | |
| 1804 | /** |
| 1805 | * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ |
| 1806 | * @domain: The IRQ domain used by this IRQ chip |
| 1807 | * @data: Outermost irq_data associated with the IRQ |
| 1808 | * |
| 1809 | * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to |
| 1810 | * be used as the deactivate function for the &struct irq_domain_ops. The |
| 1811 | * host_data for the IRQ domain must be the &struct gpio_chip. |
| 1812 | */ |
| 1813 | void gpiochip_irq_domain_deactivate(struct irq_domain *domain, |
| 1814 | struct irq_data *data) |
| 1815 | { |
| 1816 | struct gpio_chip *chip = domain->host_data; |
| 1817 | |
| 1818 | return gpiochip_unlock_as_irq(chip, data->hwirq); |
| 1819 | } |
| 1820 | EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate); |
| 1821 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1822 | static int gpiochip_to_irq(struct gpio_chip *chip, unsigned offset) |
| 1823 | { |
Grygorii Strashko | dc749a0 | 2017-07-21 11:49:00 -0500 | [diff] [blame] | 1824 | if (!gpiochip_irqchip_irq_valid(chip, offset)) |
| 1825 | return -ENXIO; |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1826 | |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 1827 | return irq_create_mapping(chip->irq.domain, offset); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1828 | } |
| 1829 | |
Hans Verkuil | 4e6b823 | 2018-09-08 11:23:14 +0200 | [diff] [blame] | 1830 | static int gpiochip_irq_reqres(struct irq_data *d) |
| 1831 | { |
| 1832 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 1833 | |
| 1834 | return gpiochip_reqres_irq(chip, d->hwirq); |
| 1835 | } |
| 1836 | |
| 1837 | static void gpiochip_irq_relres(struct irq_data *d) |
| 1838 | { |
| 1839 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 1840 | |
| 1841 | gpiochip_relres_irq(chip, d->hwirq); |
| 1842 | } |
| 1843 | |
Hans Verkuil | 461c1a7 | 2018-09-08 11:23:17 +0200 | [diff] [blame] | 1844 | static void gpiochip_irq_enable(struct irq_data *d) |
| 1845 | { |
| 1846 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 1847 | |
| 1848 | gpiochip_enable_irq(chip, d->hwirq); |
| 1849 | if (chip->irq.irq_enable) |
| 1850 | chip->irq.irq_enable(d); |
| 1851 | else |
| 1852 | chip->irq.chip->irq_unmask(d); |
| 1853 | } |
| 1854 | |
| 1855 | static void gpiochip_irq_disable(struct irq_data *d) |
| 1856 | { |
| 1857 | struct gpio_chip *chip = irq_data_get_irq_chip_data(d); |
| 1858 | |
| 1859 | if (chip->irq.irq_disable) |
| 1860 | chip->irq.irq_disable(d); |
| 1861 | else |
| 1862 | chip->irq.chip->irq_mask(d); |
| 1863 | gpiochip_disable_irq(chip, d->hwirq); |
| 1864 | } |
| 1865 | |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 1866 | static void gpiochip_set_irq_hooks(struct gpio_chip *gpiochip) |
| 1867 | { |
| 1868 | struct irq_chip *irqchip = gpiochip->irq.chip; |
| 1869 | |
| 1870 | if (!irqchip->irq_request_resources && |
| 1871 | !irqchip->irq_release_resources) { |
| 1872 | irqchip->irq_request_resources = gpiochip_irq_reqres; |
| 1873 | irqchip->irq_release_resources = gpiochip_irq_relres; |
| 1874 | } |
Hans Verkuil | 461c1a7 | 2018-09-08 11:23:17 +0200 | [diff] [blame] | 1875 | if (WARN_ON(gpiochip->irq.irq_enable)) |
| 1876 | return; |
Hans Verkuil | 171948e | 2018-09-14 10:36:39 +0200 | [diff] [blame] | 1877 | /* Check if the irqchip already has this hook... */ |
| 1878 | if (irqchip->irq_enable == gpiochip_irq_enable) { |
| 1879 | /* |
| 1880 | * ...and if so, give a gentle warning that this is bad |
| 1881 | * practice. |
| 1882 | */ |
| 1883 | chip_info(gpiochip, |
| 1884 | "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n"); |
| 1885 | return; |
| 1886 | } |
Hans Verkuil | 461c1a7 | 2018-09-08 11:23:17 +0200 | [diff] [blame] | 1887 | gpiochip->irq.irq_enable = irqchip->irq_enable; |
| 1888 | gpiochip->irq.irq_disable = irqchip->irq_disable; |
| 1889 | irqchip->irq_enable = gpiochip_irq_enable; |
| 1890 | irqchip->irq_disable = gpiochip_irq_disable; |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 1891 | } |
| 1892 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1893 | /** |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1894 | * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip |
| 1895 | * @gpiochip: the GPIO chip to add the IRQ chip to |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1896 | * @lock_key: lockdep class for IRQ lock |
| 1897 | * @request_key: lockdep class for IRQ request |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1898 | */ |
Thierry Reding | 959bc7b | 2017-11-07 19:15:59 +0100 | [diff] [blame] | 1899 | static int gpiochip_add_irqchip(struct gpio_chip *gpiochip, |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1900 | struct lock_class_key *lock_key, |
| 1901 | struct lock_class_key *request_key) |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1902 | { |
| 1903 | struct irq_chip *irqchip = gpiochip->irq.chip; |
| 1904 | const struct irq_domain_ops *ops; |
| 1905 | struct device_node *np; |
| 1906 | unsigned int type; |
| 1907 | unsigned int i; |
| 1908 | |
| 1909 | if (!irqchip) |
| 1910 | return 0; |
| 1911 | |
| 1912 | if (gpiochip->irq.parent_handler && gpiochip->can_sleep) { |
Andy Shevchenko | b191171 | 2018-07-03 03:39:03 +0300 | [diff] [blame] | 1913 | chip_err(gpiochip, "you cannot have chained interrupts on a chip that may sleep\n"); |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1914 | return -EINVAL; |
| 1915 | } |
| 1916 | |
| 1917 | np = gpiochip->gpiodev->dev.of_node; |
| 1918 | type = gpiochip->irq.default_type; |
| 1919 | |
| 1920 | /* |
| 1921 | * Specifying a default trigger is a terrible idea if DT or ACPI is |
| 1922 | * used to configure the interrupts, as you may end up with |
| 1923 | * conflicting triggers. Tell the user, and reset to NONE. |
| 1924 | */ |
| 1925 | if (WARN(np && type != IRQ_TYPE_NONE, |
| 1926 | "%s: Ignoring %u default trigger\n", np->full_name, type)) |
| 1927 | type = IRQ_TYPE_NONE; |
| 1928 | |
| 1929 | if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) { |
| 1930 | acpi_handle_warn(ACPI_HANDLE(gpiochip->parent), |
| 1931 | "Ignoring %u default trigger\n", type); |
| 1932 | type = IRQ_TYPE_NONE; |
| 1933 | } |
| 1934 | |
| 1935 | gpiochip->to_irq = gpiochip_to_irq; |
| 1936 | gpiochip->irq.default_type = type; |
Thierry Reding | 959bc7b | 2017-11-07 19:15:59 +0100 | [diff] [blame] | 1937 | gpiochip->irq.lock_key = lock_key; |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1938 | gpiochip->irq.request_key = request_key; |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1939 | |
| 1940 | if (gpiochip->irq.domain_ops) |
| 1941 | ops = gpiochip->irq.domain_ops; |
| 1942 | else |
| 1943 | ops = &gpiochip_domain_ops; |
| 1944 | |
| 1945 | gpiochip->irq.domain = irq_domain_add_simple(np, gpiochip->ngpio, |
Thierry Reding | 8302cf5 | 2017-11-07 19:15:58 +0100 | [diff] [blame] | 1946 | gpiochip->irq.first, |
| 1947 | ops, gpiochip); |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1948 | if (!gpiochip->irq.domain) |
| 1949 | return -EINVAL; |
| 1950 | |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1951 | if (gpiochip->irq.parent_handler) { |
| 1952 | void *data = gpiochip->irq.parent_handler_data ?: gpiochip; |
| 1953 | |
| 1954 | for (i = 0; i < gpiochip->irq.num_parents; i++) { |
| 1955 | /* |
| 1956 | * The parent IRQ chip is already using the chip_data |
| 1957 | * for this IRQ chip, so our callbacks simply use the |
| 1958 | * handler_data. |
| 1959 | */ |
| 1960 | irq_set_chained_handler_and_data(gpiochip->irq.parents[i], |
| 1961 | gpiochip->irq.parent_handler, |
| 1962 | data); |
| 1963 | } |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1964 | } |
| 1965 | |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 1966 | gpiochip_set_irq_hooks(gpiochip); |
| 1967 | |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 1968 | acpi_gpiochip_request_interrupts(gpiochip); |
| 1969 | |
| 1970 | return 0; |
| 1971 | } |
| 1972 | |
| 1973 | /** |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 1974 | * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip |
| 1975 | * @gpiochip: the gpiochip to remove the irqchip from |
| 1976 | * |
| 1977 | * This is called only from gpiochip_remove() |
| 1978 | */ |
| 1979 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) |
| 1980 | { |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 1981 | struct irq_chip *irqchip = gpiochip->irq.chip; |
Thierry Reding | 39e5f09 | 2017-11-07 19:15:50 +0100 | [diff] [blame] | 1982 | unsigned int offset; |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1983 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 1984 | acpi_gpiochip_free_interrupts(gpiochip); |
| 1985 | |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 1986 | if (irqchip && gpiochip->irq.parent_handler) { |
Thierry Reding | 39e5f09 | 2017-11-07 19:15:50 +0100 | [diff] [blame] | 1987 | struct gpio_irq_chip *irq = &gpiochip->irq; |
| 1988 | unsigned int i; |
| 1989 | |
| 1990 | for (i = 0; i < irq->num_parents; i++) |
| 1991 | irq_set_chained_handler_and_data(irq->parents[i], |
| 1992 | NULL, NULL); |
Dmitry Eremin-Solenikov | 25e4fe9 | 2015-05-12 20:12:23 +0300 | [diff] [blame] | 1993 | } |
| 1994 | |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 1995 | /* Remove all IRQ mappings and delete the domain */ |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 1996 | if (gpiochip->irq.domain) { |
Thierry Reding | 39e5f09 | 2017-11-07 19:15:50 +0100 | [diff] [blame] | 1997 | unsigned int irq; |
| 1998 | |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 1999 | for (offset = 0; offset < gpiochip->ngpio; offset++) { |
| 2000 | if (!gpiochip_irqchip_irq_valid(gpiochip, offset)) |
| 2001 | continue; |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 2002 | |
| 2003 | irq = irq_find_mapping(gpiochip->irq.domain, offset); |
| 2004 | irq_dispose_mapping(irq); |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 2005 | } |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 2006 | |
| 2007 | irq_domain_remove(gpiochip->irq.domain); |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 2008 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2009 | |
Hans Verkuil | 461c1a7 | 2018-09-08 11:23:17 +0200 | [diff] [blame] | 2010 | if (irqchip) { |
| 2011 | if (irqchip->irq_request_resources == gpiochip_irq_reqres) { |
| 2012 | irqchip->irq_request_resources = NULL; |
| 2013 | irqchip->irq_release_resources = NULL; |
| 2014 | } |
| 2015 | if (irqchip->irq_enable == gpiochip_irq_enable) { |
| 2016 | irqchip->irq_enable = gpiochip->irq.irq_enable; |
| 2017 | irqchip->irq_disable = gpiochip->irq.irq_disable; |
| 2018 | } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2019 | } |
Hans Verkuil | 461c1a7 | 2018-09-08 11:23:17 +0200 | [diff] [blame] | 2020 | gpiochip->irq.irq_enable = NULL; |
| 2021 | gpiochip->irq.irq_disable = NULL; |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 2022 | gpiochip->irq.chip = NULL; |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 2023 | |
| 2024 | gpiochip_irqchip_free_valid_mask(gpiochip); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2025 | } |
| 2026 | |
| 2027 | /** |
Linus Walleij | 739e6f5 | 2017-01-11 13:37:07 +0100 | [diff] [blame] | 2028 | * gpiochip_irqchip_add_key() - adds an irqchip to a gpiochip |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2029 | * @gpiochip: the gpiochip to add the irqchip to |
| 2030 | * @irqchip: the irqchip to add to the gpiochip |
| 2031 | * @first_irq: if not dynamically assigned, the base (first) IRQ to |
| 2032 | * allocate gpiochip irqs from |
| 2033 | * @handler: the irq handler to use (often a predefined irq core function) |
Linus Walleij | 1333b90 | 2014-04-23 16:45:12 +0200 | [diff] [blame] | 2034 | * @type: the default type for IRQs on this irqchip, pass IRQ_TYPE_NONE |
| 2035 | * to have the core avoid setting up any default type in the hardware. |
Thierry Reding | 60ed54c | 2017-11-07 19:15:57 +0100 | [diff] [blame] | 2036 | * @threaded: whether this irqchip uses a nested thread handler |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 2037 | * @lock_key: lockdep class for IRQ lock |
| 2038 | * @request_key: lockdep class for IRQ request |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2039 | * |
| 2040 | * This function closely associates a certain irqchip with a certain |
| 2041 | * gpiochip, providing an irq domain to translate the local IRQs to |
| 2042 | * global irqs in the gpiolib core, and making sure that the gpiochip |
| 2043 | * is passed as chip data to all related functions. Driver callbacks |
Linus Walleij | 09dd5f9 | 2015-12-07 15:31:58 +0100 | [diff] [blame] | 2044 | * 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] | 2045 | * from the gpiochip passed as chip data. An irqdomain will be stored |
| 2046 | * in the gpiochip that shall be used by the driver to handle IRQ number |
| 2047 | * translation. The gpiochip will need to be initialized and registered |
| 2048 | * before calling this function. |
| 2049 | * |
Linus Walleij | c3626fd | 2014-03-28 20:42:01 +0100 | [diff] [blame] | 2050 | * This function will handle two cell:ed simple IRQs and assumes all |
| 2051 | * the pins on the gpiochip can generate a unique IRQ. Everything else |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2052 | * need to be open coded. |
| 2053 | */ |
Linus Walleij | 739e6f5 | 2017-01-11 13:37:07 +0100 | [diff] [blame] | 2054 | int gpiochip_irqchip_add_key(struct gpio_chip *gpiochip, |
| 2055 | struct irq_chip *irqchip, |
| 2056 | unsigned int first_irq, |
| 2057 | irq_flow_handler_t handler, |
| 2058 | unsigned int type, |
Thierry Reding | 60ed54c | 2017-11-07 19:15:57 +0100 | [diff] [blame] | 2059 | bool threaded, |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 2060 | struct lock_class_key *lock_key, |
| 2061 | struct lock_class_key *request_key) |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2062 | { |
| 2063 | struct device_node *of_node; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2064 | |
| 2065 | if (!gpiochip || !irqchip) |
| 2066 | return -EINVAL; |
| 2067 | |
Linus Walleij | 58383c78 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 2068 | if (!gpiochip->parent) { |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2069 | pr_err("missing gpiochip .dev parent pointer\n"); |
| 2070 | return -EINVAL; |
| 2071 | } |
Thierry Reding | 60ed54c | 2017-11-07 19:15:57 +0100 | [diff] [blame] | 2072 | gpiochip->irq.threaded = threaded; |
Linus Walleij | 58383c78 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 2073 | of_node = gpiochip->parent->of_node; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2074 | #ifdef CONFIG_OF_GPIO |
| 2075 | /* |
Colin Cronin | 20a8a96 | 2015-05-18 11:41:43 -0700 | [diff] [blame] | 2076 | * If the gpiochip has an assigned OF node this takes precedence |
Bamvor Jian Zhang | c88402c | 2015-11-18 17:07:07 +0800 | [diff] [blame] | 2077 | * FIXME: get rid of this and use gpiochip->parent->of_node |
| 2078 | * everywhere |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2079 | */ |
| 2080 | if (gpiochip->of_node) |
| 2081 | of_node = gpiochip->of_node; |
| 2082 | #endif |
Marc Zyngier | 332e99d | 2016-09-07 09:12:11 +0100 | [diff] [blame] | 2083 | /* |
Mika Westerberg | 0a1e005 | 2016-09-12 14:29:51 +0300 | [diff] [blame] | 2084 | * 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] | 2085 | * used to configure the interrupts, as you may end-up with |
| 2086 | * conflicting triggers. Tell the user, and reset to NONE. |
| 2087 | */ |
| 2088 | if (WARN(of_node && type != IRQ_TYPE_NONE, |
Rob Herring | 7eb6ce2 | 2017-07-18 16:43:03 -0500 | [diff] [blame] | 2089 | "%pOF: Ignoring %d default trigger\n", of_node, type)) |
Marc Zyngier | 332e99d | 2016-09-07 09:12:11 +0100 | [diff] [blame] | 2090 | type = IRQ_TYPE_NONE; |
Mika Westerberg | 0a1e005 | 2016-09-12 14:29:51 +0300 | [diff] [blame] | 2091 | if (has_acpi_companion(gpiochip->parent) && type != IRQ_TYPE_NONE) { |
| 2092 | acpi_handle_warn(ACPI_HANDLE(gpiochip->parent), |
| 2093 | "Ignoring %d default trigger\n", type); |
| 2094 | type = IRQ_TYPE_NONE; |
| 2095 | } |
Marc Zyngier | 332e99d | 2016-09-07 09:12:11 +0100 | [diff] [blame] | 2096 | |
Thierry Reding | da80ff8 | 2017-11-07 19:15:46 +0100 | [diff] [blame] | 2097 | gpiochip->irq.chip = irqchip; |
Thierry Reding | c7a0aa5 | 2017-11-07 19:15:48 +0100 | [diff] [blame] | 2098 | gpiochip->irq.handler = handler; |
Thierry Reding | 3634eeb | 2017-11-07 19:15:49 +0100 | [diff] [blame] | 2099 | gpiochip->irq.default_type = type; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2100 | gpiochip->to_irq = gpiochip_to_irq; |
Thierry Reding | ca9df05 | 2017-11-07 19:15:53 +0100 | [diff] [blame] | 2101 | gpiochip->irq.lock_key = lock_key; |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 2102 | gpiochip->irq.request_key = request_key; |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 2103 | gpiochip->irq.domain = irq_domain_add_simple(of_node, |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2104 | gpiochip->ngpio, first_irq, |
| 2105 | &gpiochip_domain_ops, gpiochip); |
Thierry Reding | f0fbe7b | 2017-11-07 19:15:47 +0100 | [diff] [blame] | 2106 | if (!gpiochip->irq.domain) { |
Thierry Reding | da80ff8 | 2017-11-07 19:15:46 +0100 | [diff] [blame] | 2107 | gpiochip->irq.chip = NULL; |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2108 | return -EINVAL; |
| 2109 | } |
Rabin Vincent | 8b67a1f | 2015-07-31 14:48:56 +0200 | [diff] [blame] | 2110 | |
Hans Verkuil | ca620f2 | 2018-09-08 11:23:15 +0200 | [diff] [blame] | 2111 | gpiochip_set_irq_hooks(gpiochip); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2112 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 2113 | acpi_gpiochip_request_interrupts(gpiochip); |
| 2114 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2115 | return 0; |
| 2116 | } |
Linus Walleij | 739e6f5 | 2017-01-11 13:37:07 +0100 | [diff] [blame] | 2117 | EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_key); |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2118 | |
| 2119 | #else /* CONFIG_GPIOLIB_IRQCHIP */ |
| 2120 | |
Thierry Reding | 959bc7b | 2017-11-07 19:15:59 +0100 | [diff] [blame] | 2121 | static inline int gpiochip_add_irqchip(struct gpio_chip *gpiochip, |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 2122 | struct lock_class_key *lock_key, |
| 2123 | struct lock_class_key *request_key) |
Thierry Reding | e0d8972 | 2017-11-07 19:15:54 +0100 | [diff] [blame] | 2124 | { |
| 2125 | return 0; |
| 2126 | } |
| 2127 | |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2128 | static void gpiochip_irqchip_remove(struct gpio_chip *gpiochip) {} |
Mika Westerberg | 79b804c | 2016-09-20 15:15:21 +0300 | [diff] [blame] | 2129 | static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gpiochip) |
| 2130 | { |
| 2131 | return 0; |
| 2132 | } |
| 2133 | static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip) |
| 2134 | { } |
Linus Walleij | 1425052 | 2014-03-25 10:40:18 +0100 | [diff] [blame] | 2135 | |
| 2136 | #endif /* CONFIG_GPIOLIB_IRQCHIP */ |
| 2137 | |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 2138 | /** |
| 2139 | * gpiochip_generic_request() - request the gpio function for a pin |
| 2140 | * @chip: the gpiochip owning the GPIO |
| 2141 | * @offset: the offset of the GPIO to request for GPIO function |
| 2142 | */ |
| 2143 | int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset) |
| 2144 | { |
Linus Walleij | a9a1d2a | 2017-09-22 11:02:10 +0200 | [diff] [blame] | 2145 | return pinctrl_gpio_request(chip->gpiodev->base + offset); |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 2146 | } |
| 2147 | EXPORT_SYMBOL_GPL(gpiochip_generic_request); |
| 2148 | |
| 2149 | /** |
| 2150 | * gpiochip_generic_free() - free the gpio function from a pin |
| 2151 | * @chip: the gpiochip to request the gpio function for |
| 2152 | * @offset: the offset of the GPIO to free from GPIO function |
| 2153 | */ |
| 2154 | void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset) |
| 2155 | { |
Linus Walleij | a9a1d2a | 2017-09-22 11:02:10 +0200 | [diff] [blame] | 2156 | pinctrl_gpio_free(chip->gpiodev->base + offset); |
Jonas Gorski | c771c2f | 2015-10-11 17:34:15 +0200 | [diff] [blame] | 2157 | } |
| 2158 | EXPORT_SYMBOL_GPL(gpiochip_generic_free); |
| 2159 | |
Mika Westerberg | 2956b5d | 2017-01-23 15:34:34 +0300 | [diff] [blame] | 2160 | /** |
| 2161 | * gpiochip_generic_config() - apply configuration for a pin |
| 2162 | * @chip: the gpiochip owning the GPIO |
| 2163 | * @offset: the offset of the GPIO to apply the configuration |
| 2164 | * @config: the configuration to be applied |
| 2165 | */ |
| 2166 | int gpiochip_generic_config(struct gpio_chip *chip, unsigned offset, |
| 2167 | unsigned long config) |
| 2168 | { |
| 2169 | return pinctrl_gpio_set_config(chip->gpiodev->base + offset, config); |
| 2170 | } |
| 2171 | EXPORT_SYMBOL_GPL(gpiochip_generic_config); |
| 2172 | |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2173 | #ifdef CONFIG_PINCTRL |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 2174 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2175 | /** |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2176 | * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping |
| 2177 | * @chip: the gpiochip to add the range for |
Tomeu Vizoso | d32651f | 2015-06-17 15:42:11 +0200 | [diff] [blame] | 2178 | * @pctldev: the pin controller to map to |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2179 | * @gpio_offset: the start offset in the current gpio_chip number space |
| 2180 | * @pin_group: name of the pin group inside the pin controller |
Christian Lamparter | 973c171 | 2018-05-21 22:57:39 +0200 | [diff] [blame] | 2181 | * |
| 2182 | * Calling this function directly from a DeviceTree-supported |
| 2183 | * pinctrl driver is DEPRECATED. Please see Section 2.1 of |
| 2184 | * Documentation/devicetree/bindings/gpio/gpio.txt on how to |
| 2185 | * bind pinctrl and gpio drivers via the "gpio-ranges" property. |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2186 | */ |
| 2187 | int gpiochip_add_pingroup_range(struct gpio_chip *chip, |
| 2188 | struct pinctrl_dev *pctldev, |
| 2189 | unsigned int gpio_offset, const char *pin_group) |
| 2190 | { |
| 2191 | struct gpio_pin_range *pin_range; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2192 | struct gpio_device *gdev = chip->gpiodev; |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2193 | int ret; |
| 2194 | |
| 2195 | pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); |
| 2196 | if (!pin_range) { |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 2197 | chip_err(chip, "failed to allocate pin ranges\n"); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2198 | return -ENOMEM; |
| 2199 | } |
| 2200 | |
| 2201 | /* Use local offset as range ID */ |
| 2202 | pin_range->range.id = gpio_offset; |
| 2203 | pin_range->range.gc = chip; |
| 2204 | pin_range->range.name = chip->label; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2205 | pin_range->range.base = gdev->base + gpio_offset; |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2206 | pin_range->pctldev = pctldev; |
| 2207 | |
| 2208 | ret = pinctrl_get_group_pins(pctldev, pin_group, |
| 2209 | &pin_range->range.pins, |
| 2210 | &pin_range->range.npins); |
Michal Nazarewicz | 61c6375 | 2013-11-13 21:20:39 +0100 | [diff] [blame] | 2211 | if (ret < 0) { |
| 2212 | kfree(pin_range); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2213 | return ret; |
Michal Nazarewicz | 61c6375 | 2013-11-13 21:20:39 +0100 | [diff] [blame] | 2214 | } |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2215 | |
| 2216 | pinctrl_add_gpio_range(pctldev, &pin_range->range); |
| 2217 | |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 2218 | chip_dbg(chip, "created GPIO range %d->%d ==> %s PINGRP %s\n", |
| 2219 | gpio_offset, gpio_offset + pin_range->range.npins - 1, |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2220 | pinctrl_dev_get_devname(pctldev), pin_group); |
| 2221 | |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 2222 | list_add_tail(&pin_range->node, &gdev->pin_ranges); |
Christian Ruppert | 586a87e | 2013-10-15 15:37:54 +0200 | [diff] [blame] | 2223 | |
| 2224 | return 0; |
| 2225 | } |
| 2226 | EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range); |
| 2227 | |
| 2228 | /** |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2229 | * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping |
| 2230 | * @chip: the gpiochip to add the range for |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 2231 | * @pinctl_name: the dev_name() of the pin controller to map to |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 2232 | * @gpio_offset: the start offset in the current gpio_chip number space |
| 2233 | * @pin_offset: the start offset in the pin controller number space |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2234 | * @npins: the number of pins from the offset of each pin space (GPIO and |
| 2235 | * pin controller) to accumulate in this range |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 2236 | * |
| 2237 | * Returns: |
| 2238 | * 0 on success, or a negative error-code on failure. |
Christian Lamparter | 973c171 | 2018-05-21 22:57:39 +0200 | [diff] [blame] | 2239 | * |
| 2240 | * Calling this function directly from a DeviceTree-supported |
| 2241 | * pinctrl driver is DEPRECATED. Please see Section 2.1 of |
| 2242 | * Documentation/devicetree/bindings/gpio/gpio.txt on how to |
| 2243 | * bind pinctrl and gpio drivers via the "gpio-ranges" property. |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2244 | */ |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 2245 | 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] | 2246 | unsigned int gpio_offset, unsigned int pin_offset, |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2247 | unsigned int npins) |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2248 | { |
| 2249 | struct gpio_pin_range *pin_range; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2250 | struct gpio_device *gdev = chip->gpiodev; |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 2251 | int ret; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2252 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2253 | pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2254 | if (!pin_range) { |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 2255 | chip_err(chip, "failed to allocate pin ranges\n"); |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 2256 | return -ENOMEM; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2257 | } |
| 2258 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2259 | /* Use local offset as range ID */ |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 2260 | pin_range->range.id = gpio_offset; |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2261 | pin_range->range.gc = chip; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2262 | pin_range->range.name = chip->label; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2263 | pin_range->range.base = gdev->base + gpio_offset; |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 2264 | pin_range->range.pin_base = pin_offset; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2265 | pin_range->range.npins = npins; |
Linus Walleij | 192c369 | 2012-11-20 14:03:37 +0100 | [diff] [blame] | 2266 | pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name, |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2267 | &pin_range->range); |
Linus Walleij | 8f23ca1 | 2012-11-20 14:56:25 +0100 | [diff] [blame] | 2268 | if (IS_ERR(pin_range->pctldev)) { |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 2269 | ret = PTR_ERR(pin_range->pctldev); |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 2270 | chip_err(chip, "could not create pin range\n"); |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2271 | kfree(pin_range); |
Axel Lin | b4d4b1f | 2012-11-21 14:33:56 +0800 | [diff] [blame] | 2272 | return ret; |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2273 | } |
Andy Shevchenko | 1a2a99c | 2013-12-05 11:26:24 +0200 | [diff] [blame] | 2274 | chip_dbg(chip, "created GPIO range %d->%d ==> %s PIN %d->%d\n", |
| 2275 | gpio_offset, gpio_offset + npins - 1, |
Linus Walleij | 316511c | 2012-11-21 08:48:09 +0100 | [diff] [blame] | 2276 | pinctl_name, |
| 2277 | pin_offset, pin_offset + npins - 1); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2278 | |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 2279 | list_add_tail(&pin_range->node, &gdev->pin_ranges); |
Linus Walleij | 1e63d7b | 2012-11-06 16:03:35 +0100 | [diff] [blame] | 2280 | |
| 2281 | return 0; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2282 | } |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 2283 | EXPORT_SYMBOL_GPL(gpiochip_add_pin_range); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2284 | |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2285 | /** |
| 2286 | * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings |
| 2287 | * @chip: the chip to remove all the mappings for |
| 2288 | */ |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2289 | void gpiochip_remove_pin_ranges(struct gpio_chip *chip) |
| 2290 | { |
| 2291 | struct gpio_pin_range *pin_range, *tmp; |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 2292 | struct gpio_device *gdev = chip->gpiodev; |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2293 | |
Linus Walleij | 20ec3e3 | 2016-02-11 11:03:06 +0100 | [diff] [blame] | 2294 | list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) { |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2295 | list_del(&pin_range->node); |
| 2296 | pinctrl_remove_gpio_range(pin_range->pctldev, |
| 2297 | &pin_range->range); |
Linus Walleij | 3f0f867 | 2012-11-20 12:40:15 +0100 | [diff] [blame] | 2298 | kfree(pin_range); |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2299 | } |
| 2300 | } |
Linus Walleij | 165adc9 | 2012-11-06 14:49:39 +0100 | [diff] [blame] | 2301 | EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges); |
| 2302 | |
| 2303 | #endif /* CONFIG_PINCTRL */ |
Shiraz Hashim | f23f151 | 2012-10-27 15:21:36 +0530 | [diff] [blame] | 2304 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2305 | /* These "optional" allocation calls help prevent drivers from stomping |
| 2306 | * on each other, and help provide better diagnostics in debugfs. |
| 2307 | * They're called even less than the "set direction" calls. |
| 2308 | */ |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2309 | static int gpiod_request_commit(struct gpio_desc *desc, const char *label) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2310 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2311 | struct gpio_chip *chip = desc->gdev->chip; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2312 | int status; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2313 | unsigned long flags; |
Biju Das | 3789f5a | 2018-08-07 08:15:18 +0100 | [diff] [blame] | 2314 | unsigned offset; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2315 | |
Muchun Song | 18534df | 2018-11-01 21:12:50 +0800 | [diff] [blame] | 2316 | if (label) { |
| 2317 | label = kstrdup_const(label, GFP_KERNEL); |
| 2318 | if (!label) |
| 2319 | return -ENOMEM; |
| 2320 | } |
| 2321 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2322 | spin_lock_irqsave(&gpio_lock, flags); |
| 2323 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2324 | /* NOTE: gpio_request() can be called in early boot, |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2325 | * before IRQs are enabled, for non-sleeping (SOC) GPIOs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2326 | */ |
| 2327 | |
| 2328 | if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) { |
| 2329 | desc_set_label(desc, label ? : "?"); |
| 2330 | status = 0; |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 2331 | } else { |
Muchun Song | 18534df | 2018-11-01 21:12:50 +0800 | [diff] [blame] | 2332 | kfree_const(label); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2333 | status = -EBUSY; |
Magnus Damm | 7460db5 | 2009-01-29 14:25:12 -0800 | [diff] [blame] | 2334 | goto done; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2335 | } |
| 2336 | |
| 2337 | if (chip->request) { |
| 2338 | /* chip->request may sleep */ |
| 2339 | spin_unlock_irqrestore(&gpio_lock, flags); |
Biju Das | 3789f5a | 2018-08-07 08:15:18 +0100 | [diff] [blame] | 2340 | offset = gpio_chip_hwgpio(desc); |
| 2341 | if (gpiochip_line_is_valid(chip, offset)) |
| 2342 | status = chip->request(chip, offset); |
| 2343 | else |
| 2344 | status = -EINVAL; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2345 | spin_lock_irqsave(&gpio_lock, flags); |
| 2346 | |
| 2347 | if (status < 0) { |
| 2348 | desc_set_label(desc, NULL); |
Muchun Song | 18534df | 2018-11-01 21:12:50 +0800 | [diff] [blame] | 2349 | kfree_const(label); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2350 | clear_bit(FLAG_REQUESTED, &desc->flags); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 2351 | goto done; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2352 | } |
Guennadi Liakhovetski | 438d890 | 2008-04-28 02:14:44 -0700 | [diff] [blame] | 2353 | } |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 2354 | if (chip->get_direction) { |
| 2355 | /* chip->get_direction may sleep */ |
| 2356 | spin_unlock_irqrestore(&gpio_lock, flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2357 | gpiod_get_direction(desc); |
Mathias Nyman | 80b0a60 | 2012-10-24 17:25:27 +0300 | [diff] [blame] | 2358 | spin_lock_irqsave(&gpio_lock, flags); |
| 2359 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2360 | done: |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2361 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 2362 | return status; |
| 2363 | } |
| 2364 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2365 | /* |
| 2366 | * This descriptor validation needs to be inserted verbatim into each |
| 2367 | * function taking a descriptor, so we need to use a preprocessor |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 2368 | * macro to avoid endless duplication. If the desc is NULL it is an |
| 2369 | * optional GPIO and calls should just bail out. |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2370 | */ |
Rasmus Villemoes | a746a23 | 2017-12-21 01:27:04 +0100 | [diff] [blame] | 2371 | static int validate_desc(const struct gpio_desc *desc, const char *func) |
| 2372 | { |
| 2373 | if (!desc) |
| 2374 | return 0; |
| 2375 | if (IS_ERR(desc)) { |
| 2376 | pr_warn("%s: invalid GPIO (errorpointer)\n", func); |
| 2377 | return PTR_ERR(desc); |
| 2378 | } |
| 2379 | if (!desc->gdev) { |
| 2380 | pr_warn("%s: invalid GPIO (no device)\n", func); |
| 2381 | return -EINVAL; |
| 2382 | } |
| 2383 | if (!desc->gdev->chip) { |
| 2384 | dev_warn(&desc->gdev->dev, |
| 2385 | "%s: backing chip is gone\n", func); |
| 2386 | return 0; |
| 2387 | } |
| 2388 | return 1; |
| 2389 | } |
| 2390 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2391 | #define VALIDATE_DESC(desc) do { \ |
Rasmus Villemoes | a746a23 | 2017-12-21 01:27:04 +0100 | [diff] [blame] | 2392 | int __valid = validate_desc(desc, __func__); \ |
| 2393 | if (__valid <= 0) \ |
| 2394 | return __valid; \ |
| 2395 | } while (0) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2396 | |
| 2397 | #define VALIDATE_DESC_VOID(desc) do { \ |
Rasmus Villemoes | a746a23 | 2017-12-21 01:27:04 +0100 | [diff] [blame] | 2398 | int __valid = validate_desc(desc, __func__); \ |
| 2399 | if (__valid <= 0) \ |
Linus Walleij | 54d7719 | 2016-05-30 16:48:39 +0200 | [diff] [blame] | 2400 | return; \ |
Rasmus Villemoes | a746a23 | 2017-12-21 01:27:04 +0100 | [diff] [blame] | 2401 | } while (0) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2402 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 2403 | int gpiod_request(struct gpio_desc *desc, const char *label) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2404 | { |
| 2405 | int status = -EPROBE_DEFER; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2406 | struct gpio_device *gdev; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2407 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2408 | VALIDATE_DESC(desc); |
| 2409 | gdev = desc->gdev; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2410 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2411 | if (try_module_get(gdev->owner)) { |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2412 | status = gpiod_request_commit(desc, label); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2413 | if (status < 0) |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2414 | module_put(gdev->owner); |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 2415 | else |
| 2416 | get_device(&gdev->dev); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2417 | } |
| 2418 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2419 | if (status) |
Andy Shevchenko | 7589e59 | 2013-12-05 11:26:23 +0200 | [diff] [blame] | 2420 | gpiod_dbg(desc, "%s: status %d\n", __func__, status); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2421 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2422 | return status; |
| 2423 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2424 | |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2425 | static bool gpiod_free_commit(struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2426 | { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2427 | bool ret = false; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2428 | unsigned long flags; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2429 | struct gpio_chip *chip; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2430 | |
Uwe Kleine-König | 3d599d1 | 2008-10-15 22:03:12 -0700 | [diff] [blame] | 2431 | might_sleep(); |
| 2432 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2433 | gpiod_unexport(desc); |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 2434 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2435 | spin_lock_irqsave(&gpio_lock, flags); |
| 2436 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2437 | chip = desc->gdev->chip; |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2438 | if (chip && test_bit(FLAG_REQUESTED, &desc->flags)) { |
| 2439 | if (chip->free) { |
| 2440 | spin_unlock_irqrestore(&gpio_lock, flags); |
David Brownell | 9c4ba94 | 2010-08-10 18:02:24 -0700 | [diff] [blame] | 2441 | might_sleep_if(chip->can_sleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2442 | chip->free(chip, gpio_chip_hwgpio(desc)); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2443 | spin_lock_irqsave(&gpio_lock, flags); |
| 2444 | } |
Muchun Song | 18534df | 2018-11-01 21:12:50 +0800 | [diff] [blame] | 2445 | kfree_const(desc->label); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2446 | desc_set_label(desc, NULL); |
Jani Nikula | 0769746 | 2009-12-15 16:46:20 -0800 | [diff] [blame] | 2447 | clear_bit(FLAG_ACTIVE_LOW, &desc->flags); |
David Brownell | 35e8bb5 | 2008-10-15 22:03:16 -0700 | [diff] [blame] | 2448 | clear_bit(FLAG_REQUESTED, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 2449 | clear_bit(FLAG_OPEN_DRAIN, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 2450 | clear_bit(FLAG_OPEN_SOURCE, &desc->flags); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 2451 | clear_bit(FLAG_IS_HOGGED, &desc->flags); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2452 | ret = true; |
| 2453 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2454 | |
| 2455 | spin_unlock_irqrestore(&gpio_lock, flags); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2456 | return ret; |
| 2457 | } |
| 2458 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 2459 | void gpiod_free(struct gpio_desc *desc) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2460 | { |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2461 | if (desc && desc->gdev && gpiod_free_commit(desc)) { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2462 | module_put(desc->gdev->owner); |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 2463 | put_device(&desc->gdev->dev); |
| 2464 | } else { |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2465 | WARN_ON(extra_checks); |
Linus Walleij | 33a68e8 | 2016-02-11 10:28:44 +0100 | [diff] [blame] | 2466 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2467 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2468 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2469 | /** |
| 2470 | * gpiochip_is_requested - return string iff signal was requested |
| 2471 | * @chip: controller managing the signal |
| 2472 | * @offset: of signal within controller's 0..(ngpio - 1) range |
| 2473 | * |
| 2474 | * Returns NULL if the GPIO is not currently requested, else a string. |
Alexandre Courbot | 9c8318f | 2014-07-01 14:45:14 +0900 | [diff] [blame] | 2475 | * The string returned is the label passed to gpio_request(); if none has been |
| 2476 | * passed it is a meaningless, non-NULL constant. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2477 | * |
| 2478 | * This function is for use by GPIO controller drivers. The label can |
| 2479 | * help with diagnostics, and knowing that the signal is used as a GPIO |
| 2480 | * can help avoid accidentally multiplexing it to another controller. |
| 2481 | */ |
| 2482 | const char *gpiochip_is_requested(struct gpio_chip *chip, unsigned offset) |
| 2483 | { |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 2484 | struct gpio_desc *desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2485 | |
Dirk Behme | 48b5953 | 2015-08-18 18:02:32 +0200 | [diff] [blame] | 2486 | if (offset >= chip->ngpio) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2487 | return NULL; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 2488 | |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 2489 | desc = &chip->gpiodev->descs[offset]; |
Alexandre Courbot | 6c0b4e6 | 2013-02-03 01:29:30 +0900 | [diff] [blame] | 2490 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2491 | if (test_bit(FLAG_REQUESTED, &desc->flags) == 0) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2492 | return NULL; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2493 | return desc->label; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2494 | } |
| 2495 | EXPORT_SYMBOL_GPL(gpiochip_is_requested); |
| 2496 | |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2497 | /** |
| 2498 | * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 2499 | * @chip: GPIO chip |
| 2500 | * @hwnum: hardware number of the GPIO for which to request the descriptor |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2501 | * @label: label for the GPIO |
Linus Walleij | 21abf10 | 2018-09-04 13:31:45 +0200 | [diff] [blame] | 2502 | * @flags: flags for this GPIO or 0 if default |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2503 | * |
| 2504 | * Function allows GPIO chip drivers to request and use their own GPIO |
| 2505 | * descriptors via gpiolib API. Difference to gpiod_request() is that this |
| 2506 | * function will not increase reference count of the GPIO chip module. This |
| 2507 | * allows the GPIO chip module to be unloaded as needed (we assume that the |
| 2508 | * GPIO chip driver handles freeing the GPIOs it has requested). |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 2509 | * |
| 2510 | * Returns: |
| 2511 | * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error |
| 2512 | * code on failure. |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2513 | */ |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2514 | struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *chip, u16 hwnum, |
Linus Walleij | 21abf10 | 2018-09-04 13:31:45 +0200 | [diff] [blame] | 2515 | const char *label, |
| 2516 | enum gpiod_flags flags) |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2517 | { |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2518 | struct gpio_desc *desc = gpiochip_get_desc(chip, hwnum); |
| 2519 | int err; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2520 | |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2521 | if (IS_ERR(desc)) { |
| 2522 | chip_err(chip, "failed to get GPIO descriptor\n"); |
| 2523 | return desc; |
| 2524 | } |
| 2525 | |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2526 | err = gpiod_request_commit(desc, label); |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2527 | if (err < 0) |
| 2528 | return ERR_PTR(err); |
| 2529 | |
Linus Walleij | 21abf10 | 2018-09-04 13:31:45 +0200 | [diff] [blame] | 2530 | err = gpiod_configure_flags(desc, label, 0, flags); |
| 2531 | if (err) { |
| 2532 | chip_err(chip, "setup of own GPIO %s failed\n", label); |
| 2533 | gpiod_free_commit(desc); |
| 2534 | return ERR_PTR(err); |
| 2535 | } |
| 2536 | |
Alexandre Courbot | abdc08a | 2014-08-19 10:06:09 -0700 | [diff] [blame] | 2537 | return desc; |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2538 | } |
Guenter Roeck | f7d4ad9 | 2014-07-22 08:01:01 -0700 | [diff] [blame] | 2539 | EXPORT_SYMBOL_GPL(gpiochip_request_own_desc); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2540 | |
| 2541 | /** |
| 2542 | * gpiochip_free_own_desc - Free GPIO requested by the chip driver |
| 2543 | * @desc: GPIO descriptor to free |
| 2544 | * |
| 2545 | * Function frees the given GPIO requested previously with |
| 2546 | * gpiochip_request_own_desc(). |
| 2547 | */ |
| 2548 | void gpiochip_free_own_desc(struct gpio_desc *desc) |
| 2549 | { |
| 2550 | if (desc) |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2551 | gpiod_free_commit(desc); |
Mika Westerberg | 77c2d79 | 2014-03-10 14:54:50 +0200 | [diff] [blame] | 2552 | } |
Guenter Roeck | f7d4ad9 | 2014-07-22 08:01:01 -0700 | [diff] [blame] | 2553 | EXPORT_SYMBOL_GPL(gpiochip_free_own_desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2554 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2555 | /* |
| 2556 | * Drivers MUST set GPIO direction before making get/set calls. In |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2557 | * some cases this is done in early boot, before IRQs are enabled. |
| 2558 | * |
| 2559 | * As a rule these aren't called more than once (except for drivers |
| 2560 | * using the open-drain emulation idiom) so these are natural places |
| 2561 | * to accumulate extra debugging checks. Note that we can't (yet) |
| 2562 | * rely on gpio_request() having been called beforehand. |
| 2563 | */ |
| 2564 | |
Thomas Petazzoni | 7147978 | 2019-02-07 17:28:56 +0100 | [diff] [blame] | 2565 | static int gpio_set_config(struct gpio_chip *gc, unsigned offset, |
| 2566 | enum pin_config_param mode) |
| 2567 | { |
| 2568 | unsigned long config = { PIN_CONF_PACKED(mode, 0) }; |
| 2569 | |
| 2570 | return gc->set_config ? gc->set_config(gc, offset, config) : -ENOTSUPP; |
| 2571 | } |
| 2572 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2573 | /** |
| 2574 | * gpiod_direction_input - set the GPIO direction to input |
| 2575 | * @desc: GPIO to set to input |
| 2576 | * |
| 2577 | * Set the direction of the passed GPIO to input, such as gpiod_get_value() can |
| 2578 | * be called safely on it. |
| 2579 | * |
| 2580 | * Return 0 in case of success, else an error code. |
| 2581 | */ |
| 2582 | int gpiod_direction_input(struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2583 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2584 | struct gpio_chip *chip; |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2585 | int status = 0; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2586 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2587 | VALIDATE_DESC(desc); |
| 2588 | chip = desc->gdev->chip; |
Alexandre Courbot | bcabdef | 2013-02-15 14:46:14 +0900 | [diff] [blame] | 2589 | |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2590 | /* |
| 2591 | * It is legal to have no .get() and .direction_input() specified if |
| 2592 | * the chip is output-only, but you can't specify .direction_input() |
| 2593 | * and not support the .get() operation, that doesn't make sense. |
| 2594 | */ |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2595 | if (!chip->get && chip->direction_input) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2596 | gpiod_warn(desc, |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2597 | "%s: missing get() but have direction_input()\n", |
| 2598 | __func__); |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2599 | return -EIO; |
| 2600 | } |
| 2601 | |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2602 | /* |
| 2603 | * If we have a .direction_input() callback, things are simple, |
| 2604 | * just call it. Else we are some input-only chip so try to check the |
| 2605 | * direction (if .get_direction() is supported) else we silently |
| 2606 | * assume we are in input mode after this. |
| 2607 | */ |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2608 | if (chip->direction_input) { |
| 2609 | status = chip->direction_input(chip, gpio_chip_hwgpio(desc)); |
| 2610 | } else if (chip->get_direction && |
| 2611 | (chip->get_direction(chip, gpio_chip_hwgpio(desc)) != 1)) { |
| 2612 | gpiod_warn(desc, |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2613 | "%s: missing direction_input() operation and line is output\n", |
| 2614 | __func__); |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2615 | return -EIO; |
| 2616 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2617 | if (status == 0) |
| 2618 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 2619 | |
Thomas Petazzoni | d449991 | 2019-02-07 17:28:58 +0100 | [diff] [blame] | 2620 | if (test_bit(FLAG_PULL_UP, &desc->flags)) |
| 2621 | gpio_set_config(chip, gpio_chip_hwgpio(desc), |
| 2622 | PIN_CONFIG_BIAS_PULL_UP); |
| 2623 | else if (test_bit(FLAG_PULL_DOWN, &desc->flags)) |
| 2624 | gpio_set_config(chip, gpio_chip_hwgpio(desc), |
| 2625 | PIN_CONFIG_BIAS_PULL_DOWN); |
| 2626 | |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2627 | trace_gpio_direction(desc_to_gpio(desc), 1, status); |
Alexandre Courbot | d82da79 | 2014-07-22 16:17:43 +0900 | [diff] [blame] | 2628 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2629 | return status; |
| 2630 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2631 | EXPORT_SYMBOL_GPL(gpiod_direction_input); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2632 | |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2633 | static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2634 | { |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2635 | struct gpio_chip *gc = desc->gdev->chip; |
Linus Walleij | ad17731 | 2016-11-13 23:02:44 +0100 | [diff] [blame] | 2636 | int val = !!value; |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2637 | int ret = 0; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2638 | |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2639 | /* |
| 2640 | * It's OK not to specify .direction_output() if the gpiochip is |
| 2641 | * output-only, but if there is then not even a .set() operation it |
| 2642 | * is pretty tricky to drive the output line. |
| 2643 | */ |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2644 | if (!gc->set && !gc->direction_output) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2645 | gpiod_warn(desc, |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2646 | "%s: missing set() and direction_output() operations\n", |
| 2647 | __func__); |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2648 | return -EIO; |
| 2649 | } |
| 2650 | |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2651 | if (gc->direction_output) { |
| 2652 | ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val); |
| 2653 | } else { |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2654 | /* Check that we are in output mode if we can */ |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2655 | if (gc->get_direction && |
| 2656 | gc->get_direction(gc, gpio_chip_hwgpio(desc))) { |
| 2657 | gpiod_warn(desc, |
| 2658 | "%s: missing direction_output() operation\n", |
| 2659 | __func__); |
| 2660 | return -EIO; |
| 2661 | } |
Linus Walleij | e48d194 | 2018-09-25 09:54:14 +0200 | [diff] [blame] | 2662 | /* |
| 2663 | * If we can't actively set the direction, we are some |
| 2664 | * output-only chip, so just drive the output as desired. |
| 2665 | */ |
Ricardo Ribalda Delgado | ae9847f | 2018-09-21 12:36:03 +0200 | [diff] [blame] | 2666 | gc->set(gc, gpio_chip_hwgpio(desc), val); |
| 2667 | } |
| 2668 | |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2669 | if (!ret) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2670 | set_bit(FLAG_IS_OUT, &desc->flags); |
Linus Walleij | ad17731 | 2016-11-13 23:02:44 +0100 | [diff] [blame] | 2671 | trace_gpio_value(desc_to_gpio(desc), 0, val); |
Linus Walleij | c663e5f | 2016-03-22 10:51:16 +0100 | [diff] [blame] | 2672 | trace_gpio_direction(desc_to_gpio(desc), 0, ret); |
| 2673 | return ret; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2674 | } |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2675 | |
| 2676 | /** |
| 2677 | * gpiod_direction_output_raw - set the GPIO direction to output |
| 2678 | * @desc: GPIO to set to output |
| 2679 | * @value: initial output value of the GPIO |
| 2680 | * |
| 2681 | * Set the direction of the passed GPIO to output, such as gpiod_set_value() can |
| 2682 | * be called safely on it. The initial value of the output must be specified |
| 2683 | * as raw value on the physical line without regard for the ACTIVE_LOW status. |
| 2684 | * |
| 2685 | * Return 0 in case of success, else an error code. |
| 2686 | */ |
| 2687 | int gpiod_direction_output_raw(struct gpio_desc *desc, int value) |
| 2688 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2689 | VALIDATE_DESC(desc); |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2690 | return gpiod_direction_output_raw_commit(desc, value); |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2691 | } |
| 2692 | EXPORT_SYMBOL_GPL(gpiod_direction_output_raw); |
| 2693 | |
| 2694 | /** |
Rahul Bedarkar | 90df4fe | 2014-02-08 11:55:25 +0530 | [diff] [blame] | 2695 | * gpiod_direction_output - set the GPIO direction to output |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2696 | * @desc: GPIO to set to output |
| 2697 | * @value: initial output value of the GPIO |
| 2698 | * |
| 2699 | * Set the direction of the passed GPIO to output, such as gpiod_set_value() can |
| 2700 | * be called safely on it. The initial value of the output must be specified |
| 2701 | * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 2702 | * account. |
| 2703 | * |
| 2704 | * Return 0 in case of success, else an error code. |
| 2705 | */ |
| 2706 | int gpiod_direction_output(struct gpio_desc *desc, int value) |
| 2707 | { |
Vladimir Zapolskiy | 30322bc | 2017-12-21 18:37:24 +0200 | [diff] [blame] | 2708 | struct gpio_chip *gc; |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2709 | int ret; |
| 2710 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2711 | VALIDATE_DESC(desc); |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2712 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2713 | value = !value; |
Linus Walleij | ad17731 | 2016-11-13 23:02:44 +0100 | [diff] [blame] | 2714 | else |
| 2715 | value = !!value; |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2716 | |
Hans Verkuil | 4e9439d | 2018-09-08 11:23:16 +0200 | [diff] [blame] | 2717 | /* GPIOs used for enabled IRQs shall not be set as output */ |
| 2718 | if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) && |
| 2719 | test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) { |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2720 | gpiod_err(desc, |
| 2721 | "%s: tried to set a GPIO tied to an IRQ as output\n", |
| 2722 | __func__); |
| 2723 | return -EIO; |
| 2724 | } |
| 2725 | |
Vladimir Zapolskiy | 30322bc | 2017-12-21 18:37:24 +0200 | [diff] [blame] | 2726 | gc = desc->gdev->chip; |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2727 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) { |
| 2728 | /* First see if we can enable open drain in hardware */ |
Thomas Petazzoni | 7147978 | 2019-02-07 17:28:56 +0100 | [diff] [blame] | 2729 | ret = gpio_set_config(gc, gpio_chip_hwgpio(desc), |
| 2730 | PIN_CONFIG_DRIVE_OPEN_DRAIN); |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2731 | if (!ret) |
| 2732 | goto set_output_value; |
| 2733 | /* Emulate open drain by not actively driving the line high */ |
| 2734 | if (value) |
| 2735 | return gpiod_direction_input(desc); |
| 2736 | } |
| 2737 | else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) { |
Thomas Petazzoni | 7147978 | 2019-02-07 17:28:56 +0100 | [diff] [blame] | 2738 | ret = gpio_set_config(gc, gpio_chip_hwgpio(desc), |
| 2739 | PIN_CONFIG_DRIVE_OPEN_SOURCE); |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2740 | if (!ret) |
| 2741 | goto set_output_value; |
| 2742 | /* Emulate open source by not actively driving the line low */ |
| 2743 | if (!value) |
| 2744 | return gpiod_direction_input(desc); |
| 2745 | } else { |
Thomas Petazzoni | 7147978 | 2019-02-07 17:28:56 +0100 | [diff] [blame] | 2746 | gpio_set_config(gc, gpio_chip_hwgpio(desc), |
| 2747 | PIN_CONFIG_DRIVE_PUSH_PULL); |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 2748 | } |
| 2749 | |
| 2750 | set_output_value: |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2751 | return gpiod_direction_output_raw_commit(desc, value); |
Philipp Zabel | ef70bbe | 2014-01-07 12:34:11 +0100 | [diff] [blame] | 2752 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2753 | EXPORT_SYMBOL_GPL(gpiod_direction_output); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2754 | |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2755 | /** |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 2756 | * gpiod_set_debounce - sets @debounce time for a GPIO |
| 2757 | * @desc: descriptor of the GPIO for which to set debounce time |
| 2758 | * @debounce: debounce time in microseconds |
Linus Walleij | 65d8765 | 2013-09-04 14:17:08 +0200 | [diff] [blame] | 2759 | * |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 2760 | * Returns: |
| 2761 | * 0 on success, %-ENOTSUPP if the controller doesn't support setting the |
| 2762 | * debounce time. |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2763 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2764 | int gpiod_set_debounce(struct gpio_desc *desc, unsigned debounce) |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2765 | { |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2766 | struct gpio_chip *chip; |
Mika Westerberg | 2956b5d | 2017-01-23 15:34:34 +0300 | [diff] [blame] | 2767 | unsigned long config; |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2768 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2769 | VALIDATE_DESC(desc); |
| 2770 | chip = desc->gdev->chip; |
Mika Westerberg | 2956b5d | 2017-01-23 15:34:34 +0300 | [diff] [blame] | 2771 | if (!chip->set || !chip->set_config) { |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2772 | gpiod_dbg(desc, |
Mika Westerberg | 2956b5d | 2017-01-23 15:34:34 +0300 | [diff] [blame] | 2773 | "%s: missing set() or set_config() operations\n", |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 2774 | __func__); |
Linus Walleij | 65d8765 | 2013-09-04 14:17:08 +0200 | [diff] [blame] | 2775 | return -ENOTSUPP; |
Linus Walleij | be1a4b1 | 2013-08-30 09:41:45 +0200 | [diff] [blame] | 2776 | } |
| 2777 | |
Mika Westerberg | 2956b5d | 2017-01-23 15:34:34 +0300 | [diff] [blame] | 2778 | config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce); |
Andrew Jeffery | fa59dd23 | 2019-03-26 15:19:54 +1030 | [diff] [blame] | 2779 | return chip->set_config(chip, gpio_chip_hwgpio(desc), config); |
Felipe Balbi | c4b5be9 | 2010-05-26 14:42:23 -0700 | [diff] [blame] | 2780 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2781 | EXPORT_SYMBOL_GPL(gpiod_set_debounce); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2782 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2783 | /** |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 2784 | * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset |
| 2785 | * @desc: descriptor of the GPIO for which to configure persistence |
| 2786 | * @transitory: True to lose state on suspend or reset, false for persistence |
| 2787 | * |
| 2788 | * Returns: |
| 2789 | * 0 on success, otherwise a negative error code. |
| 2790 | */ |
| 2791 | int gpiod_set_transitory(struct gpio_desc *desc, bool transitory) |
| 2792 | { |
| 2793 | struct gpio_chip *chip; |
| 2794 | unsigned long packed; |
| 2795 | int gpio; |
| 2796 | int rc; |
| 2797 | |
Vladimir Zapolskiy | 156dd39 | 2017-12-21 18:37:35 +0200 | [diff] [blame] | 2798 | VALIDATE_DESC(desc); |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 2799 | /* |
| 2800 | * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for |
| 2801 | * persistence state. |
| 2802 | */ |
| 2803 | if (transitory) |
| 2804 | set_bit(FLAG_TRANSITORY, &desc->flags); |
| 2805 | else |
| 2806 | clear_bit(FLAG_TRANSITORY, &desc->flags); |
| 2807 | |
| 2808 | /* If the driver supports it, set the persistence state now */ |
| 2809 | chip = desc->gdev->chip; |
| 2810 | if (!chip->set_config) |
| 2811 | return 0; |
| 2812 | |
| 2813 | packed = pinconf_to_config_packed(PIN_CONFIG_PERSIST_STATE, |
| 2814 | !transitory); |
| 2815 | gpio = gpio_chip_hwgpio(desc); |
Andrew Jeffery | fa59dd23 | 2019-03-26 15:19:54 +1030 | [diff] [blame] | 2816 | rc = chip->set_config(chip, gpio, packed); |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 2817 | if (rc == -ENOTSUPP) { |
| 2818 | dev_dbg(&desc->gdev->dev, "Persistence not supported for GPIO %d\n", |
| 2819 | gpio); |
| 2820 | return 0; |
| 2821 | } |
| 2822 | |
| 2823 | return rc; |
| 2824 | } |
| 2825 | EXPORT_SYMBOL_GPL(gpiod_set_transitory); |
| 2826 | |
| 2827 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2828 | * gpiod_is_active_low - test whether a GPIO is active-low or not |
| 2829 | * @desc: the gpio descriptor to test |
| 2830 | * |
| 2831 | * Returns 1 if the GPIO is active-low, 0 otherwise. |
| 2832 | */ |
| 2833 | int gpiod_is_active_low(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2834 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2835 | VALIDATE_DESC(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2836 | return test_bit(FLAG_ACTIVE_LOW, &desc->flags); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2837 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2838 | EXPORT_SYMBOL_GPL(gpiod_is_active_low); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2839 | |
| 2840 | /* I/O calls are only valid after configuration completed; the relevant |
| 2841 | * "is this a valid GPIO" error checks should already have been done. |
| 2842 | * |
| 2843 | * "Get" operations are often inlinable as reading a pin value register, |
| 2844 | * and masking the relevant bit in that register. |
| 2845 | * |
| 2846 | * When "set" operations are inlinable, they involve writing that mask to |
| 2847 | * one register to set a low value, or a different register to set it high. |
| 2848 | * Otherwise locking is needed, so there may be little value to inlining. |
| 2849 | * |
| 2850 | *------------------------------------------------------------------------ |
| 2851 | * |
| 2852 | * IMPORTANT!!! The hot paths -- get/set value -- assume that callers |
| 2853 | * have requested the GPIO. That can include implicit requesting by |
| 2854 | * a direction setting call. Marking a gpio as requested locks its chip |
| 2855 | * in memory, guaranteeing that these table lookups need no more locking |
| 2856 | * and that gpiochip_remove() will fail. |
| 2857 | * |
| 2858 | * REVISIT when debugging, consider adding some instrumentation to ensure |
| 2859 | * that the GPIO was actually requested. |
| 2860 | */ |
| 2861 | |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 2862 | static int gpiod_get_raw_value_commit(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2863 | { |
| 2864 | struct gpio_chip *chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2865 | int offset; |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2866 | int value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2867 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 2868 | chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2869 | offset = gpio_chip_hwgpio(desc); |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 2870 | value = chip->get ? chip->get(chip, offset) : -EIO; |
Linus Walleij | 723a630 | 2015-12-21 23:10:12 +0100 | [diff] [blame] | 2871 | value = value < 0 ? value : !!value; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2872 | trace_gpio_value(desc_to_gpio(desc), 1, value); |
Uwe Kleine-König | 3f397c21 | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 2873 | return value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2874 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 2875 | |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2876 | static int gpio_chip_get_multiple(struct gpio_chip *chip, |
| 2877 | unsigned long *mask, unsigned long *bits) |
| 2878 | { |
| 2879 | if (chip->get_multiple) { |
| 2880 | return chip->get_multiple(chip, mask, bits); |
| 2881 | } else if (chip->get) { |
| 2882 | int i, value; |
| 2883 | |
| 2884 | for_each_set_bit(i, mask, chip->ngpio) { |
| 2885 | value = chip->get(chip, i); |
| 2886 | if (value < 0) |
| 2887 | return value; |
| 2888 | __assign_bit(i, bits, value); |
| 2889 | } |
| 2890 | return 0; |
| 2891 | } |
| 2892 | return -EIO; |
| 2893 | } |
| 2894 | |
| 2895 | int gpiod_get_array_value_complex(bool raw, bool can_sleep, |
| 2896 | unsigned int array_size, |
| 2897 | struct gpio_desc **desc_array, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 2898 | struct gpio_array *array_info, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 2899 | unsigned long *value_bitmap) |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2900 | { |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 2901 | int err, i = 0; |
| 2902 | |
| 2903 | /* |
| 2904 | * Validate array_info against desc_array and its size. |
| 2905 | * It should immediately follow desc_array if both |
| 2906 | * have been obtained from the same gpiod_get_array() call. |
| 2907 | */ |
| 2908 | if (array_info && array_info->desc == desc_array && |
| 2909 | array_size <= array_info->size && |
| 2910 | (void *)array_info == desc_array + array_info->size) { |
| 2911 | if (!can_sleep) |
| 2912 | WARN_ON(array_info->chip->can_sleep); |
| 2913 | |
| 2914 | err = gpio_chip_get_multiple(array_info->chip, |
| 2915 | array_info->get_mask, |
| 2916 | value_bitmap); |
| 2917 | if (err) |
| 2918 | return err; |
| 2919 | |
| 2920 | if (!raw && !bitmap_empty(array_info->invert_mask, array_size)) |
| 2921 | bitmap_xor(value_bitmap, value_bitmap, |
| 2922 | array_info->invert_mask, array_size); |
| 2923 | |
| 2924 | if (bitmap_full(array_info->get_mask, array_size)) |
| 2925 | return 0; |
| 2926 | |
| 2927 | i = find_first_zero_bit(array_info->get_mask, array_size); |
| 2928 | } else { |
| 2929 | array_info = NULL; |
| 2930 | } |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2931 | |
| 2932 | while (i < array_size) { |
| 2933 | struct gpio_chip *chip = desc_array[i]->gdev->chip; |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 2934 | unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)]; |
| 2935 | unsigned long *mask, *bits; |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2936 | int first, j, ret; |
| 2937 | |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 2938 | if (likely(chip->ngpio <= FASTPATH_NGPIO)) { |
| 2939 | mask = fastpath; |
| 2940 | } else { |
| 2941 | mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio), |
| 2942 | sizeof(*mask), |
| 2943 | can_sleep ? GFP_KERNEL : GFP_ATOMIC); |
| 2944 | if (!mask) |
| 2945 | return -ENOMEM; |
| 2946 | } |
| 2947 | |
| 2948 | bits = mask + BITS_TO_LONGS(chip->ngpio); |
| 2949 | bitmap_zero(mask, chip->ngpio); |
| 2950 | |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2951 | if (!can_sleep) |
| 2952 | WARN_ON(chip->can_sleep); |
| 2953 | |
| 2954 | /* collect all inputs belonging to the same chip */ |
| 2955 | first = i; |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2956 | do { |
| 2957 | const struct gpio_desc *desc = desc_array[i]; |
| 2958 | int hwgpio = gpio_chip_hwgpio(desc); |
| 2959 | |
| 2960 | __set_bit(hwgpio, mask); |
| 2961 | i++; |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 2962 | |
| 2963 | if (array_info) |
Janusz Krzysztofik | 35ae7f9 | 2018-09-24 01:53:35 +0200 | [diff] [blame] | 2964 | i = find_next_zero_bit(array_info->get_mask, |
| 2965 | array_size, i); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2966 | } while ((i < array_size) && |
| 2967 | (desc_array[i]->gdev->chip == chip)); |
| 2968 | |
| 2969 | ret = gpio_chip_get_multiple(chip, mask, bits); |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 2970 | if (ret) { |
| 2971 | if (mask != fastpath) |
| 2972 | kfree(mask); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2973 | return ret; |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 2974 | } |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2975 | |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 2976 | for (j = first; j < i; ) { |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2977 | const struct gpio_desc *desc = desc_array[j]; |
| 2978 | int hwgpio = gpio_chip_hwgpio(desc); |
| 2979 | int value = test_bit(hwgpio, bits); |
| 2980 | |
| 2981 | if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 2982 | value = !value; |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 2983 | __assign_bit(j, value_bitmap, value); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2984 | trace_gpio_value(desc_to_gpio(desc), 1, value); |
Janusz Krzysztofik | 799d5eb | 2018-09-29 14:20:22 +0200 | [diff] [blame] | 2985 | j++; |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 2986 | |
| 2987 | if (array_info) |
Janusz Krzysztofik | 35ae7f9 | 2018-09-24 01:53:35 +0200 | [diff] [blame] | 2988 | j = find_next_zero_bit(array_info->get_mask, i, |
| 2989 | j); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2990 | } |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 2991 | |
| 2992 | if (mask != fastpath) |
| 2993 | kfree(mask); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 2994 | } |
| 2995 | return 0; |
| 2996 | } |
| 2997 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 2998 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 2999 | * gpiod_get_raw_value() - return a gpio's raw value |
| 3000 | * @desc: gpio whose value will be returned |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3001 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3002 | * 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] | 3003 | * its ACTIVE_LOW status, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3004 | * |
| 3005 | * This function should be called from contexts where we cannot sleep, and will |
| 3006 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3007 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3008 | int gpiod_get_raw_value(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3009 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3010 | VALIDATE_DESC(desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3011 | /* Should be using gpio_get_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3012 | WARN_ON(desc->gdev->chip->can_sleep); |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3013 | return gpiod_get_raw_value_commit(desc); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3014 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3015 | EXPORT_SYMBOL_GPL(gpiod_get_raw_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3016 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3017 | /** |
| 3018 | * gpiod_get_value() - return a gpio's value |
| 3019 | * @desc: gpio whose value will be returned |
| 3020 | * |
| 3021 | * 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] | 3022 | * account, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3023 | * |
| 3024 | * This function should be called from contexts where we cannot sleep, and will |
| 3025 | * complain if the GPIO chip functions potentially sleep. |
| 3026 | */ |
| 3027 | int gpiod_get_value(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3028 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3029 | int value; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3030 | |
| 3031 | VALIDATE_DESC(desc); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3032 | /* Should be using gpio_get_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3033 | WARN_ON(desc->gdev->chip->can_sleep); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3034 | |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3035 | value = gpiod_get_raw_value_commit(desc); |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 3036 | if (value < 0) |
| 3037 | return value; |
| 3038 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3039 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 3040 | value = !value; |
| 3041 | |
| 3042 | return value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3043 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3044 | EXPORT_SYMBOL_GPL(gpiod_get_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3045 | |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3046 | /** |
| 3047 | * gpiod_get_raw_array_value() - read raw values from an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3048 | * @array_size: number of elements in the descriptor array / value bitmap |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3049 | * @desc_array: array of GPIO descriptors whose values will be read |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3050 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3051 | * @value_bitmap: bitmap to store the read values |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3052 | * |
| 3053 | * Read the raw values of the GPIOs, i.e. the values of the physical lines |
| 3054 | * without regard for their ACTIVE_LOW status. Return 0 in case of success, |
| 3055 | * else an error code. |
| 3056 | * |
| 3057 | * This function should be called from contexts where we cannot sleep, |
| 3058 | * and it will complain if the GPIO chip functions potentially sleep. |
| 3059 | */ |
| 3060 | int gpiod_get_raw_array_value(unsigned int array_size, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3061 | struct gpio_desc **desc_array, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3062 | struct gpio_array *array_info, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3063 | unsigned long *value_bitmap) |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3064 | { |
| 3065 | if (!desc_array) |
| 3066 | return -EINVAL; |
| 3067 | return gpiod_get_array_value_complex(true, false, array_size, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3068 | desc_array, array_info, |
| 3069 | value_bitmap); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3070 | } |
| 3071 | EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value); |
| 3072 | |
| 3073 | /** |
| 3074 | * gpiod_get_array_value() - read values from an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3075 | * @array_size: number of elements in the descriptor array / value bitmap |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3076 | * @desc_array: array of GPIO descriptors whose values will be read |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3077 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3078 | * @value_bitmap: bitmap to store the read values |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3079 | * |
| 3080 | * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status |
| 3081 | * into account. Return 0 in case of success, else an error code. |
| 3082 | * |
| 3083 | * This function should be called from contexts where we cannot sleep, |
| 3084 | * and it will complain if the GPIO chip functions potentially sleep. |
| 3085 | */ |
| 3086 | int gpiod_get_array_value(unsigned int array_size, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3087 | struct gpio_desc **desc_array, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3088 | struct gpio_array *array_info, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3089 | unsigned long *value_bitmap) |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3090 | { |
| 3091 | if (!desc_array) |
| 3092 | return -EINVAL; |
| 3093 | return gpiod_get_array_value_complex(false, false, array_size, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3094 | desc_array, array_info, |
| 3095 | value_bitmap); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3096 | } |
| 3097 | EXPORT_SYMBOL_GPL(gpiod_get_array_value); |
| 3098 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3099 | /* |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3100 | * gpio_set_open_drain_value_commit() - Set the open drain gpio's value. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3101 | * @desc: gpio descriptor whose state need to be set. |
Colin Cronin | 20a8a96 | 2015-05-18 11:41:43 -0700 | [diff] [blame] | 3102 | * @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] | 3103 | */ |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3104 | static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value) |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3105 | { |
| 3106 | int err = 0; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3107 | struct gpio_chip *chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3108 | int offset = gpio_chip_hwgpio(desc); |
| 3109 | |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3110 | if (value) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3111 | err = chip->direction_input(chip, offset); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3112 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3113 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3114 | } else { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3115 | err = chip->direction_output(chip, offset, 0); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3116 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3117 | set_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3118 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3119 | trace_gpio_direction(desc_to_gpio(desc), value, err); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3120 | if (err < 0) |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 3121 | gpiod_err(desc, |
| 3122 | "%s: Error in set_value for open drain err %d\n", |
| 3123 | __func__, err); |
Laxman Dewangan | aca5ce1 | 2012-02-17 20:26:21 +0530 | [diff] [blame] | 3124 | } |
| 3125 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3126 | /* |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3127 | * _gpio_set_open_source_value() - Set the open source gpio's value. |
| 3128 | * @desc: gpio descriptor whose state need to be set. |
Colin Cronin | 20a8a96 | 2015-05-18 11:41:43 -0700 | [diff] [blame] | 3129 | * @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] | 3130 | */ |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3131 | static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value) |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3132 | { |
| 3133 | int err = 0; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3134 | struct gpio_chip *chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3135 | int offset = gpio_chip_hwgpio(desc); |
| 3136 | |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3137 | if (value) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3138 | err = chip->direction_output(chip, offset, 1); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3139 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3140 | set_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3141 | } else { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3142 | err = chip->direction_input(chip, offset); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3143 | if (!err) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3144 | clear_bit(FLAG_IS_OUT, &desc->flags); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3145 | } |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3146 | trace_gpio_direction(desc_to_gpio(desc), !value, err); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3147 | if (err < 0) |
Mark Brown | 6424de5 | 2013-09-09 10:33:49 +0100 | [diff] [blame] | 3148 | gpiod_err(desc, |
| 3149 | "%s: Error in set_value for open source err %d\n", |
| 3150 | __func__, err); |
Laxman Dewangan | 25553ff | 2012-02-17 20:26:22 +0530 | [diff] [blame] | 3151 | } |
| 3152 | |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3153 | static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3154 | { |
| 3155 | struct gpio_chip *chip; |
| 3156 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3157 | chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3158 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 3159 | chip->set(chip, gpio_chip_hwgpio(desc), value); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3160 | } |
| 3161 | |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3162 | /* |
| 3163 | * set multiple outputs on the same chip; |
| 3164 | * use the chip's set_multiple function if available; |
| 3165 | * otherwise set the outputs sequentially; |
| 3166 | * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word |
| 3167 | * defines which outputs are to be changed |
| 3168 | * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word |
| 3169 | * defines the values the outputs specified by mask are to be set to |
| 3170 | */ |
| 3171 | static void gpio_chip_set_multiple(struct gpio_chip *chip, |
| 3172 | unsigned long *mask, unsigned long *bits) |
| 3173 | { |
| 3174 | if (chip->set_multiple) { |
| 3175 | chip->set_multiple(chip, mask, bits); |
| 3176 | } else { |
Andy Shevchenko | 5e4e6fb | 2017-01-03 19:01:17 +0200 | [diff] [blame] | 3177 | unsigned int i; |
| 3178 | |
| 3179 | /* set outputs if the corresponding mask bit is set */ |
| 3180 | for_each_set_bit(i, mask, chip->ngpio) |
| 3181 | chip->set(chip, i, test_bit(i, bits)); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3182 | } |
| 3183 | } |
| 3184 | |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3185 | int gpiod_set_array_value_complex(bool raw, bool can_sleep, |
Geert Uytterhoeven | 3c94066 | 2018-09-27 13:38:10 +0200 | [diff] [blame] | 3186 | unsigned int array_size, |
| 3187 | struct gpio_desc **desc_array, |
| 3188 | struct gpio_array *array_info, |
| 3189 | unsigned long *value_bitmap) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3190 | { |
| 3191 | int i = 0; |
| 3192 | |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 3193 | /* |
| 3194 | * Validate array_info against desc_array and its size. |
| 3195 | * It should immediately follow desc_array if both |
| 3196 | * have been obtained from the same gpiod_get_array() call. |
| 3197 | */ |
| 3198 | if (array_info && array_info->desc == desc_array && |
| 3199 | array_size <= array_info->size && |
| 3200 | (void *)array_info == desc_array + array_info->size) { |
| 3201 | if (!can_sleep) |
| 3202 | WARN_ON(array_info->chip->can_sleep); |
| 3203 | |
| 3204 | if (!raw && !bitmap_empty(array_info->invert_mask, array_size)) |
| 3205 | bitmap_xor(value_bitmap, value_bitmap, |
| 3206 | array_info->invert_mask, array_size); |
| 3207 | |
| 3208 | gpio_chip_set_multiple(array_info->chip, array_info->set_mask, |
| 3209 | value_bitmap); |
| 3210 | |
| 3211 | if (bitmap_full(array_info->set_mask, array_size)) |
| 3212 | return 0; |
| 3213 | |
| 3214 | i = find_first_zero_bit(array_info->set_mask, array_size); |
| 3215 | } else { |
| 3216 | array_info = NULL; |
| 3217 | } |
| 3218 | |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3219 | while (i < array_size) { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3220 | struct gpio_chip *chip = desc_array[i]->gdev->chip; |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3221 | unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)]; |
| 3222 | unsigned long *mask, *bits; |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3223 | int count = 0; |
| 3224 | |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3225 | if (likely(chip->ngpio <= FASTPATH_NGPIO)) { |
| 3226 | mask = fastpath; |
| 3227 | } else { |
| 3228 | mask = kmalloc_array(2 * BITS_TO_LONGS(chip->ngpio), |
| 3229 | sizeof(*mask), |
| 3230 | can_sleep ? GFP_KERNEL : GFP_ATOMIC); |
| 3231 | if (!mask) |
| 3232 | return -ENOMEM; |
| 3233 | } |
| 3234 | |
| 3235 | bits = mask + BITS_TO_LONGS(chip->ngpio); |
| 3236 | bitmap_zero(mask, chip->ngpio); |
| 3237 | |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 3238 | if (!can_sleep) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3239 | WARN_ON(chip->can_sleep); |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 3240 | |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3241 | do { |
| 3242 | struct gpio_desc *desc = desc_array[i]; |
| 3243 | int hwgpio = gpio_chip_hwgpio(desc); |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3244 | int value = test_bit(i, value_bitmap); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3245 | |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 3246 | /* |
| 3247 | * Pins applicable for fast input but not for |
| 3248 | * fast output processing may have been already |
| 3249 | * inverted inside the fast path, skip them. |
| 3250 | */ |
| 3251 | if (!raw && !(array_info && |
| 3252 | test_bit(i, array_info->invert_mask)) && |
| 3253 | test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3254 | value = !value; |
| 3255 | trace_gpio_value(desc_to_gpio(desc), 0, value); |
| 3256 | /* |
| 3257 | * collect all normal outputs belonging to the same chip |
| 3258 | * open drain and open source outputs are set individually |
| 3259 | */ |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 3260 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) { |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3261 | gpio_set_open_drain_value_commit(desc, value); |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 3262 | } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) { |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3263 | gpio_set_open_source_value_commit(desc, value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3264 | } else { |
| 3265 | __set_bit(hwgpio, mask); |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 3266 | if (value) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3267 | __set_bit(hwgpio, bits); |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 3268 | else |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3269 | __clear_bit(hwgpio, bits); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3270 | count++; |
| 3271 | } |
| 3272 | i++; |
Janusz Krzysztofik | b17566a | 2018-09-05 23:50:08 +0200 | [diff] [blame] | 3273 | |
| 3274 | if (array_info) |
Janusz Krzysztofik | 35ae7f9 | 2018-09-24 01:53:35 +0200 | [diff] [blame] | 3275 | i = find_next_zero_bit(array_info->set_mask, |
| 3276 | array_size, i); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3277 | } while ((i < array_size) && |
| 3278 | (desc_array[i]->gdev->chip == chip)); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3279 | /* push collected bits to outputs */ |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 3280 | if (count != 0) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3281 | gpio_chip_set_multiple(chip, mask, bits); |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3282 | |
| 3283 | if (mask != fastpath) |
| 3284 | kfree(mask); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3285 | } |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3286 | return 0; |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3287 | } |
| 3288 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3289 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3290 | * gpiod_set_raw_value() - assign a gpio's raw value |
| 3291 | * @desc: gpio whose value will be assigned |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3292 | * @value: value to assign |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3293 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3294 | * Set the raw value of the GPIO, i.e. the value of its physical line without |
| 3295 | * regard for its ACTIVE_LOW status. |
| 3296 | * |
| 3297 | * This function should be called from contexts where we cannot sleep, and will |
| 3298 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3299 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3300 | void gpiod_set_raw_value(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3301 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3302 | VALIDATE_DESC_VOID(desc); |
Geert Uytterhoeven | 1cfab8f | 2016-03-14 16:24:12 +0100 | [diff] [blame] | 3303 | /* Should be using gpiod_set_value_cansleep() */ |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3304 | WARN_ON(desc->gdev->chip->can_sleep); |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3305 | gpiod_set_raw_value_commit(desc, value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3306 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3307 | EXPORT_SYMBOL_GPL(gpiod_set_raw_value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3308 | |
| 3309 | /** |
Geert Uytterhoeven | 1e77fc8 | 2018-01-09 19:08:21 +0100 | [diff] [blame] | 3310 | * gpiod_set_value_nocheck() - set a GPIO line value without checking |
| 3311 | * @desc: the descriptor to set the value on |
| 3312 | * @value: value to set |
| 3313 | * |
| 3314 | * This sets the value of a GPIO line backing a descriptor, applying |
| 3315 | * different semantic quirks like active low and open drain/source |
| 3316 | * handling. |
| 3317 | */ |
| 3318 | static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value) |
| 3319 | { |
| 3320 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 3321 | value = !value; |
| 3322 | if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) |
| 3323 | gpio_set_open_drain_value_commit(desc, value); |
| 3324 | else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) |
| 3325 | gpio_set_open_source_value_commit(desc, value); |
| 3326 | else |
| 3327 | gpiod_set_raw_value_commit(desc, value); |
| 3328 | } |
| 3329 | |
| 3330 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3331 | * gpiod_set_value() - assign a gpio's value |
| 3332 | * @desc: gpio whose value will be assigned |
| 3333 | * @value: value to assign |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3334 | * |
Linus Walleij | 02e4798 | 2017-09-26 21:20:23 +0200 | [diff] [blame] | 3335 | * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW, |
| 3336 | * OPEN_DRAIN and OPEN_SOURCE flags into account. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3337 | * |
| 3338 | * This function should be called from contexts where we cannot sleep, and will |
| 3339 | * complain if the GPIO chip functions potentially sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3340 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3341 | void gpiod_set_value(struct gpio_desc *desc, int value) |
| 3342 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3343 | VALIDATE_DESC_VOID(desc); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3344 | WARN_ON(desc->gdev->chip->can_sleep); |
Geert Uytterhoeven | 1e77fc8 | 2018-01-09 19:08:21 +0100 | [diff] [blame] | 3345 | gpiod_set_value_nocheck(desc, value); |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3346 | } |
| 3347 | EXPORT_SYMBOL_GPL(gpiod_set_value); |
| 3348 | |
| 3349 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3350 | * gpiod_set_raw_array_value() - assign values to an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3351 | * @array_size: number of elements in the descriptor array / value bitmap |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3352 | * @desc_array: array of GPIO descriptors whose values will be assigned |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3353 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3354 | * @value_bitmap: bitmap of values to assign |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3355 | * |
| 3356 | * Set the raw values of the GPIOs, i.e. the values of the physical lines |
| 3357 | * without regard for their ACTIVE_LOW status. |
| 3358 | * |
| 3359 | * This function should be called from contexts where we cannot sleep, and will |
| 3360 | * complain if the GPIO chip functions potentially sleep. |
| 3361 | */ |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3362 | int gpiod_set_raw_array_value(unsigned int array_size, |
Geert Uytterhoeven | 3c94066 | 2018-09-27 13:38:10 +0200 | [diff] [blame] | 3363 | struct gpio_desc **desc_array, |
| 3364 | struct gpio_array *array_info, |
| 3365 | unsigned long *value_bitmap) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3366 | { |
| 3367 | if (!desc_array) |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3368 | return -EINVAL; |
| 3369 | return gpiod_set_array_value_complex(true, false, array_size, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3370 | desc_array, array_info, value_bitmap); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3371 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3372 | EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3373 | |
| 3374 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3375 | * gpiod_set_array_value() - assign values to an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3376 | * @array_size: number of elements in the descriptor array / value bitmap |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3377 | * @desc_array: array of GPIO descriptors whose values will be assigned |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3378 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3379 | * @value_bitmap: bitmap of values to assign |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3380 | * |
| 3381 | * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status |
| 3382 | * into account. |
| 3383 | * |
| 3384 | * This function should be called from contexts where we cannot sleep, and will |
| 3385 | * complain if the GPIO chip functions potentially sleep. |
| 3386 | */ |
Geert Uytterhoeven | cf9af0d | 2018-09-27 13:38:09 +0200 | [diff] [blame] | 3387 | int gpiod_set_array_value(unsigned int array_size, |
| 3388 | struct gpio_desc **desc_array, |
| 3389 | struct gpio_array *array_info, |
| 3390 | unsigned long *value_bitmap) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3391 | { |
| 3392 | if (!desc_array) |
Geert Uytterhoeven | cf9af0d | 2018-09-27 13:38:09 +0200 | [diff] [blame] | 3393 | return -EINVAL; |
| 3394 | return gpiod_set_array_value_complex(false, false, array_size, |
| 3395 | desc_array, array_info, |
| 3396 | value_bitmap); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3397 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3398 | EXPORT_SYMBOL_GPL(gpiod_set_array_value); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3399 | |
| 3400 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3401 | * gpiod_cansleep() - report whether gpio value access may sleep |
| 3402 | * @desc: gpio to check |
| 3403 | * |
| 3404 | */ |
| 3405 | int gpiod_cansleep(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3406 | { |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3407 | VALIDATE_DESC(desc); |
| 3408 | return desc->gdev->chip->can_sleep; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3409 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3410 | EXPORT_SYMBOL_GPL(gpiod_cansleep); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3411 | |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 3412 | /** |
Linus Walleij | 90b39402e | 2018-06-01 13:21:27 +0200 | [diff] [blame] | 3413 | * gpiod_set_consumer_name() - set the consumer name for the descriptor |
| 3414 | * @desc: gpio to set the consumer name on |
| 3415 | * @name: the new consumer name |
| 3416 | */ |
Muchun Song | 18534df | 2018-11-01 21:12:50 +0800 | [diff] [blame] | 3417 | int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name) |
Linus Walleij | 90b39402e | 2018-06-01 13:21:27 +0200 | [diff] [blame] | 3418 | { |
Muchun Song | 18534df | 2018-11-01 21:12:50 +0800 | [diff] [blame] | 3419 | VALIDATE_DESC(desc); |
| 3420 | if (name) { |
| 3421 | name = kstrdup_const(name, GFP_KERNEL); |
| 3422 | if (!name) |
| 3423 | return -ENOMEM; |
| 3424 | } |
| 3425 | |
| 3426 | kfree_const(desc->label); |
| 3427 | desc_set_label(desc, name); |
| 3428 | |
| 3429 | return 0; |
Linus Walleij | 90b39402e | 2018-06-01 13:21:27 +0200 | [diff] [blame] | 3430 | } |
| 3431 | EXPORT_SYMBOL_GPL(gpiod_set_consumer_name); |
| 3432 | |
| 3433 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3434 | * gpiod_to_irq() - return the IRQ corresponding to a GPIO |
| 3435 | * @desc: gpio whose IRQ will be returned (already requested) |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 3436 | * |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3437 | * Return the IRQ corresponding to the passed GPIO, or an error code in case of |
| 3438 | * error. |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 3439 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3440 | int gpiod_to_irq(const struct gpio_desc *desc) |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 3441 | { |
Linus Walleij | 4c37ce8 | 2016-05-02 13:13:10 +0200 | [diff] [blame] | 3442 | struct gpio_chip *chip; |
| 3443 | int offset; |
David Brownell | 0f6d504 | 2008-10-15 22:03:14 -0700 | [diff] [blame] | 3444 | |
Linus Walleij | 79bb71b | 2016-06-15 22:57:38 +0200 | [diff] [blame] | 3445 | /* |
| 3446 | * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics |
| 3447 | * requires this function to not return zero on an invalid descriptor |
| 3448 | * but rather a negative error number. |
| 3449 | */ |
Linus Walleij | bfbbe44 | 2016-06-16 11:55:55 +0200 | [diff] [blame] | 3450 | if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip) |
Linus Walleij | 79bb71b | 2016-06-15 22:57:38 +0200 | [diff] [blame] | 3451 | return -EINVAL; |
| 3452 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3453 | chip = desc->gdev->chip; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3454 | offset = gpio_chip_hwgpio(desc); |
Linus Walleij | 4c37ce8 | 2016-05-02 13:13:10 +0200 | [diff] [blame] | 3455 | if (chip->to_irq) { |
| 3456 | int retirq = chip->to_irq(chip, offset); |
| 3457 | |
| 3458 | /* Zero means NO_IRQ */ |
| 3459 | if (!retirq) |
| 3460 | return -ENXIO; |
| 3461 | |
| 3462 | return retirq; |
| 3463 | } |
| 3464 | return -ENXIO; |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3465 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3466 | EXPORT_SYMBOL_GPL(gpiod_to_irq); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3467 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3468 | /** |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 3469 | * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 3470 | * @chip: the chip the GPIO to lock belongs to |
| 3471 | * @offset: the offset of the GPIO to lock as IRQ |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3472 | * |
| 3473 | * This is used directly by GPIO drivers that want to lock down |
Linus Walleij | f438acd | 2014-03-07 10:12:49 +0800 | [diff] [blame] | 3474 | * a certain GPIO line to be used for IRQs. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3475 | */ |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 3476 | int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3477 | { |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 3478 | struct gpio_desc *desc; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3479 | |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 3480 | desc = gpiochip_get_desc(chip, offset); |
| 3481 | if (IS_ERR(desc)) |
| 3482 | return PTR_ERR(desc); |
| 3483 | |
Linus Walleij | 60f8339 | 2016-11-12 15:01:09 +0100 | [diff] [blame] | 3484 | /* |
| 3485 | * If it's fast: flush the direction setting if something changed |
| 3486 | * behind our back |
| 3487 | */ |
| 3488 | if (!chip->can_sleep && chip->get_direction) { |
Andy Shevchenko | 8095679 | 2018-07-09 21:47:21 +0300 | [diff] [blame] | 3489 | int dir = gpiod_get_direction(desc); |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 3490 | |
Andy Shevchenko | 36b3127 | 2018-07-03 03:38:31 +0300 | [diff] [blame] | 3491 | if (dir < 0) { |
| 3492 | chip_err(chip, "%s: cannot get GPIO direction\n", |
| 3493 | __func__); |
| 3494 | return dir; |
| 3495 | } |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 3496 | } |
| 3497 | |
| 3498 | if (test_bit(FLAG_IS_OUT, &desc->flags)) { |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 3499 | chip_err(chip, |
Andy Shevchenko | b191171 | 2018-07-03 03:39:03 +0300 | [diff] [blame] | 3500 | "%s: tried to flag a GPIO set as output for IRQ\n", |
| 3501 | __func__); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3502 | return -EIO; |
| 3503 | } |
| 3504 | |
Linus Walleij | 9c10280 | 2016-05-25 10:56:03 +0200 | [diff] [blame] | 3505 | set_bit(FLAG_USED_AS_IRQ, &desc->flags); |
Hans Verkuil | 4e9439d | 2018-09-08 11:23:16 +0200 | [diff] [blame] | 3506 | set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags); |
Linus Walleij | 3940c34 | 2016-11-14 00:09:07 +0100 | [diff] [blame] | 3507 | |
| 3508 | /* |
| 3509 | * If the consumer has not set up a label (such as when the |
| 3510 | * IRQ is referenced from .to_irq()) we set up a label here |
| 3511 | * so it is clear this is used as an interrupt. |
| 3512 | */ |
| 3513 | if (!desc->label) |
| 3514 | desc_set_label(desc, "interrupt"); |
| 3515 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3516 | return 0; |
| 3517 | } |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 3518 | EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3519 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3520 | /** |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 3521 | * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ |
Alexandre Courbot | d74be6d | 2014-07-22 16:17:42 +0900 | [diff] [blame] | 3522 | * @chip: the chip the GPIO to lock belongs to |
| 3523 | * @offset: the offset of the GPIO to lock as IRQ |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3524 | * |
| 3525 | * This is used directly by GPIO drivers that want to indicate |
| 3526 | * that a certain GPIO is no longer used exclusively for IRQ. |
| 3527 | */ |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 3528 | void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3529 | { |
Linus Walleij | 3940c34 | 2016-11-14 00:09:07 +0100 | [diff] [blame] | 3530 | struct gpio_desc *desc; |
| 3531 | |
| 3532 | desc = gpiochip_get_desc(chip, offset); |
| 3533 | if (IS_ERR(desc)) |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3534 | return; |
| 3535 | |
Linus Walleij | 3940c34 | 2016-11-14 00:09:07 +0100 | [diff] [blame] | 3536 | clear_bit(FLAG_USED_AS_IRQ, &desc->flags); |
Hans Verkuil | 4e9439d | 2018-09-08 11:23:16 +0200 | [diff] [blame] | 3537 | clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags); |
Linus Walleij | 3940c34 | 2016-11-14 00:09:07 +0100 | [diff] [blame] | 3538 | |
| 3539 | /* If we only had this marking, erase it */ |
| 3540 | if (desc->label && !strcmp(desc->label, "interrupt")) |
| 3541 | desc_set_label(desc, NULL); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3542 | } |
Alexandre Courbot | e3a2e87 | 2014-10-23 17:27:07 +0900 | [diff] [blame] | 3543 | EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 3544 | |
Hans Verkuil | 4e9439d | 2018-09-08 11:23:16 +0200 | [diff] [blame] | 3545 | void gpiochip_disable_irq(struct gpio_chip *chip, unsigned int offset) |
| 3546 | { |
| 3547 | struct gpio_desc *desc = gpiochip_get_desc(chip, offset); |
| 3548 | |
| 3549 | if (!IS_ERR(desc) && |
| 3550 | !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) |
| 3551 | clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags); |
| 3552 | } |
| 3553 | EXPORT_SYMBOL_GPL(gpiochip_disable_irq); |
| 3554 | |
| 3555 | void gpiochip_enable_irq(struct gpio_chip *chip, unsigned int offset) |
| 3556 | { |
| 3557 | struct gpio_desc *desc = gpiochip_get_desc(chip, offset); |
| 3558 | |
| 3559 | if (!IS_ERR(desc) && |
| 3560 | !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) { |
| 3561 | WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags)); |
| 3562 | set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags); |
| 3563 | } |
| 3564 | } |
| 3565 | EXPORT_SYMBOL_GPL(gpiochip_enable_irq); |
| 3566 | |
Linus Walleij | 6cee382 | 2016-02-11 20:16:45 +0100 | [diff] [blame] | 3567 | bool gpiochip_line_is_irq(struct gpio_chip *chip, unsigned int offset) |
| 3568 | { |
| 3569 | if (offset >= chip->ngpio) |
| 3570 | return false; |
| 3571 | |
| 3572 | return test_bit(FLAG_USED_AS_IRQ, &chip->gpiodev->descs[offset].flags); |
| 3573 | } |
| 3574 | EXPORT_SYMBOL_GPL(gpiochip_line_is_irq); |
| 3575 | |
Hans Verkuil | 4e6b823 | 2018-09-08 11:23:14 +0200 | [diff] [blame] | 3576 | int gpiochip_reqres_irq(struct gpio_chip *chip, unsigned int offset) |
| 3577 | { |
| 3578 | int ret; |
| 3579 | |
| 3580 | if (!try_module_get(chip->gpiodev->owner)) |
| 3581 | return -ENODEV; |
| 3582 | |
| 3583 | ret = gpiochip_lock_as_irq(chip, offset); |
| 3584 | if (ret) { |
| 3585 | chip_err(chip, "unable to lock HW IRQ %u for IRQ\n", offset); |
| 3586 | module_put(chip->gpiodev->owner); |
| 3587 | return ret; |
| 3588 | } |
| 3589 | return 0; |
| 3590 | } |
| 3591 | EXPORT_SYMBOL_GPL(gpiochip_reqres_irq); |
| 3592 | |
| 3593 | void gpiochip_relres_irq(struct gpio_chip *chip, unsigned int offset) |
| 3594 | { |
| 3595 | gpiochip_unlock_as_irq(chip, offset); |
| 3596 | module_put(chip->gpiodev->owner); |
| 3597 | } |
| 3598 | EXPORT_SYMBOL_GPL(gpiochip_relres_irq); |
| 3599 | |
Linus Walleij | 143b65d | 2016-02-16 15:41:42 +0100 | [diff] [blame] | 3600 | bool gpiochip_line_is_open_drain(struct gpio_chip *chip, unsigned int offset) |
| 3601 | { |
| 3602 | if (offset >= chip->ngpio) |
| 3603 | return false; |
| 3604 | |
| 3605 | return test_bit(FLAG_OPEN_DRAIN, &chip->gpiodev->descs[offset].flags); |
| 3606 | } |
| 3607 | EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain); |
| 3608 | |
| 3609 | bool gpiochip_line_is_open_source(struct gpio_chip *chip, unsigned int offset) |
| 3610 | { |
| 3611 | if (offset >= chip->ngpio) |
| 3612 | return false; |
| 3613 | |
| 3614 | return test_bit(FLAG_OPEN_SOURCE, &chip->gpiodev->descs[offset].flags); |
| 3615 | } |
| 3616 | EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source); |
| 3617 | |
Charles Keepax | 05f479b | 2017-05-23 15:47:29 +0100 | [diff] [blame] | 3618 | bool gpiochip_line_is_persistent(struct gpio_chip *chip, unsigned int offset) |
| 3619 | { |
| 3620 | if (offset >= chip->ngpio) |
| 3621 | return false; |
| 3622 | |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 3623 | return !test_bit(FLAG_TRANSITORY, &chip->gpiodev->descs[offset].flags); |
Charles Keepax | 05f479b | 2017-05-23 15:47:29 +0100 | [diff] [blame] | 3624 | } |
| 3625 | EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent); |
| 3626 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3627 | /** |
| 3628 | * gpiod_get_raw_value_cansleep() - return a gpio's raw value |
| 3629 | * @desc: gpio whose value will be returned |
| 3630 | * |
| 3631 | * 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] | 3632 | * its ACTIVE_LOW status, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3633 | * |
| 3634 | * This function is to be called from contexts that can sleep. |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3635 | */ |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3636 | int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3637 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3638 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3639 | VALIDATE_DESC(desc); |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3640 | return gpiod_get_raw_value_commit(desc); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3641 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3642 | EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3643 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3644 | /** |
| 3645 | * gpiod_get_value_cansleep() - return a gpio's value |
| 3646 | * @desc: gpio whose value will be returned |
| 3647 | * |
| 3648 | * 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] | 3649 | * account, or negative errno on failure. |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3650 | * |
| 3651 | * This function is to be called from contexts that can sleep. |
| 3652 | */ |
| 3653 | int gpiod_get_value_cansleep(const struct gpio_desc *desc) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3654 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3655 | int value; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3656 | |
| 3657 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3658 | VALIDATE_DESC(desc); |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3659 | value = gpiod_get_raw_value_commit(desc); |
Bjorn Andersson | e20538b | 2015-08-28 09:44:18 -0700 | [diff] [blame] | 3660 | if (value < 0) |
| 3661 | return value; |
| 3662 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3663 | if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) |
| 3664 | value = !value; |
| 3665 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3666 | return value; |
| 3667 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3668 | EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3669 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3670 | /** |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3671 | * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3672 | * @array_size: number of elements in the descriptor array / value bitmap |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3673 | * @desc_array: array of GPIO descriptors whose values will be read |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3674 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3675 | * @value_bitmap: bitmap to store the read values |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3676 | * |
| 3677 | * Read the raw values of the GPIOs, i.e. the values of the physical lines |
| 3678 | * without regard for their ACTIVE_LOW status. Return 0 in case of success, |
| 3679 | * else an error code. |
| 3680 | * |
| 3681 | * This function is to be called from contexts that can sleep. |
| 3682 | */ |
| 3683 | int gpiod_get_raw_array_value_cansleep(unsigned int array_size, |
| 3684 | struct gpio_desc **desc_array, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3685 | struct gpio_array *array_info, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3686 | unsigned long *value_bitmap) |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3687 | { |
| 3688 | might_sleep_if(extra_checks); |
| 3689 | if (!desc_array) |
| 3690 | return -EINVAL; |
| 3691 | return gpiod_get_array_value_complex(true, true, array_size, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3692 | desc_array, array_info, |
| 3693 | value_bitmap); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3694 | } |
| 3695 | EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep); |
| 3696 | |
| 3697 | /** |
| 3698 | * gpiod_get_array_value_cansleep() - read values from an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3699 | * @array_size: number of elements in the descriptor array / value bitmap |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3700 | * @desc_array: array of GPIO descriptors whose values will be read |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3701 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3702 | * @value_bitmap: bitmap to store the read values |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3703 | * |
| 3704 | * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status |
| 3705 | * into account. Return 0 in case of success, else an error code. |
| 3706 | * |
| 3707 | * This function is to be called from contexts that can sleep. |
| 3708 | */ |
| 3709 | int gpiod_get_array_value_cansleep(unsigned int array_size, |
| 3710 | struct gpio_desc **desc_array, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3711 | struct gpio_array *array_info, |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3712 | unsigned long *value_bitmap) |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3713 | { |
| 3714 | might_sleep_if(extra_checks); |
| 3715 | if (!desc_array) |
| 3716 | return -EINVAL; |
| 3717 | return gpiod_get_array_value_complex(false, true, array_size, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3718 | desc_array, array_info, |
| 3719 | value_bitmap); |
Lukas Wunner | eec1d56 | 2017-10-12 12:40:10 +0200 | [diff] [blame] | 3720 | } |
| 3721 | EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep); |
| 3722 | |
| 3723 | /** |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3724 | * gpiod_set_raw_value_cansleep() - assign a gpio's raw value |
| 3725 | * @desc: gpio whose value will be assigned |
| 3726 | * @value: value to assign |
| 3727 | * |
| 3728 | * Set the raw value of the GPIO, i.e. the value of its physical line without |
| 3729 | * regard for its ACTIVE_LOW status. |
| 3730 | * |
| 3731 | * This function is to be called from contexts that can sleep. |
| 3732 | */ |
| 3733 | void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3734 | { |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3735 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3736 | VALIDATE_DESC_VOID(desc); |
Linus Walleij | fac9d88 | 2017-09-26 20:58:28 +0200 | [diff] [blame] | 3737 | gpiod_set_raw_value_commit(desc, value); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3738 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3739 | EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep); |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3740 | |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3741 | /** |
| 3742 | * gpiod_set_value_cansleep() - assign a gpio's value |
| 3743 | * @desc: gpio whose value will be assigned |
| 3744 | * @value: value to assign |
| 3745 | * |
| 3746 | * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into |
| 3747 | * account |
| 3748 | * |
| 3749 | * This function is to be called from contexts that can sleep. |
| 3750 | */ |
| 3751 | void gpiod_set_value_cansleep(struct gpio_desc *desc, int value) |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 3752 | { |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3753 | might_sleep_if(extra_checks); |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 3754 | VALIDATE_DESC_VOID(desc); |
Geert Uytterhoeven | 1e77fc8 | 2018-01-09 19:08:21 +0100 | [diff] [blame] | 3755 | gpiod_set_value_nocheck(desc, value); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3756 | } |
Alexandre Courbot | 79a9bec | 2013-10-17 10:21:36 -0700 | [diff] [blame] | 3757 | EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3758 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3759 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3760 | * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3761 | * @array_size: number of elements in the descriptor array / value bitmap |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3762 | * @desc_array: array of GPIO descriptors whose values will be assigned |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3763 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3764 | * @value_bitmap: bitmap of values to assign |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3765 | * |
| 3766 | * Set the raw values of the GPIOs, i.e. the values of the physical lines |
| 3767 | * without regard for their ACTIVE_LOW status. |
| 3768 | * |
| 3769 | * This function is to be called from contexts that can sleep. |
| 3770 | */ |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3771 | int gpiod_set_raw_array_value_cansleep(unsigned int array_size, |
Geert Uytterhoeven | 3c94066 | 2018-09-27 13:38:10 +0200 | [diff] [blame] | 3772 | struct gpio_desc **desc_array, |
| 3773 | struct gpio_array *array_info, |
| 3774 | unsigned long *value_bitmap) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3775 | { |
| 3776 | might_sleep_if(extra_checks); |
| 3777 | if (!desc_array) |
Laura Abbott | 3027743 | 2018-05-21 10:57:07 -0700 | [diff] [blame] | 3778 | return -EINVAL; |
| 3779 | return gpiod_set_array_value_complex(true, true, array_size, desc_array, |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3780 | array_info, value_bitmap); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3781 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3782 | EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3783 | |
| 3784 | /** |
Dmitry Torokhov | 3946d18 | 2017-08-14 21:59:55 -0700 | [diff] [blame] | 3785 | * gpiod_add_lookup_tables() - register GPIO device consumers |
| 3786 | * @tables: list of tables of consumers to register |
| 3787 | * @n: number of tables in the list |
| 3788 | */ |
| 3789 | void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n) |
| 3790 | { |
| 3791 | unsigned int i; |
| 3792 | |
| 3793 | mutex_lock(&gpio_lookup_lock); |
| 3794 | |
| 3795 | for (i = 0; i < n; i++) |
| 3796 | list_add_tail(&tables[i]->list, &gpio_lookup_list); |
| 3797 | |
| 3798 | mutex_unlock(&gpio_lookup_lock); |
| 3799 | } |
| 3800 | |
| 3801 | /** |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3802 | * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3803 | * @array_size: number of elements in the descriptor array / value bitmap |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3804 | * @desc_array: array of GPIO descriptors whose values will be assigned |
Janusz Krzysztofik | 77588c1 | 2018-09-05 23:50:07 +0200 | [diff] [blame] | 3805 | * @array_info: information on applicability of fast bitmap processing path |
Janusz Krzysztofik | b9762be | 2018-09-05 23:50:05 +0200 | [diff] [blame] | 3806 | * @value_bitmap: bitmap of values to assign |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3807 | * |
| 3808 | * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status |
| 3809 | * into account. |
| 3810 | * |
| 3811 | * This function is to be called from contexts that can sleep. |
| 3812 | */ |
Geert Uytterhoeven | cf9af0d | 2018-09-27 13:38:09 +0200 | [diff] [blame] | 3813 | int gpiod_set_array_value_cansleep(unsigned int array_size, |
| 3814 | struct gpio_desc **desc_array, |
| 3815 | struct gpio_array *array_info, |
| 3816 | unsigned long *value_bitmap) |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3817 | { |
| 3818 | might_sleep_if(extra_checks); |
| 3819 | if (!desc_array) |
Geert Uytterhoeven | cf9af0d | 2018-09-27 13:38:09 +0200 | [diff] [blame] | 3820 | return -EINVAL; |
| 3821 | return gpiod_set_array_value_complex(false, true, array_size, |
| 3822 | desc_array, array_info, |
| 3823 | value_bitmap); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3824 | } |
Rojhalat Ibrahim | 3fff99b | 2015-05-13 11:04:56 +0200 | [diff] [blame] | 3825 | EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep); |
Rojhalat Ibrahim | 5f42424 | 2014-11-04 17:12:06 +0100 | [diff] [blame] | 3826 | |
| 3827 | /** |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3828 | * gpiod_add_lookup_table() - register GPIO device consumers |
| 3829 | * @table: table of consumers to register |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3830 | */ |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3831 | void gpiod_add_lookup_table(struct gpiod_lookup_table *table) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3832 | { |
| 3833 | mutex_lock(&gpio_lookup_lock); |
| 3834 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3835 | list_add_tail(&table->list, &gpio_lookup_list); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3836 | |
| 3837 | mutex_unlock(&gpio_lookup_lock); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3838 | } |
Anatolij Gustschin | 226b224 | 2017-04-20 23:23:20 +0200 | [diff] [blame] | 3839 | EXPORT_SYMBOL_GPL(gpiod_add_lookup_table); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 3840 | |
Shobhit Kumar | be9015a | 2015-06-26 14:32:04 +0530 | [diff] [blame] | 3841 | /** |
| 3842 | * gpiod_remove_lookup_table() - unregister GPIO device consumers |
| 3843 | * @table: table of consumers to unregister |
| 3844 | */ |
| 3845 | void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) |
| 3846 | { |
| 3847 | mutex_lock(&gpio_lookup_lock); |
| 3848 | |
| 3849 | list_del(&table->list); |
| 3850 | |
| 3851 | mutex_unlock(&gpio_lookup_lock); |
| 3852 | } |
Anatolij Gustschin | 226b224 | 2017-04-20 23:23:20 +0200 | [diff] [blame] | 3853 | EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table); |
Shobhit Kumar | be9015a | 2015-06-26 14:32:04 +0530 | [diff] [blame] | 3854 | |
Bartosz Golaszewski | a411e81 | 2018-04-10 22:30:28 +0200 | [diff] [blame] | 3855 | /** |
| 3856 | * gpiod_add_hogs() - register a set of GPIO hogs from machine code |
| 3857 | * @hogs: table of gpio hog entries with a zeroed sentinel at the end |
| 3858 | */ |
| 3859 | void gpiod_add_hogs(struct gpiod_hog *hogs) |
| 3860 | { |
| 3861 | struct gpio_chip *chip; |
| 3862 | struct gpiod_hog *hog; |
| 3863 | |
| 3864 | mutex_lock(&gpio_machine_hogs_mutex); |
| 3865 | |
| 3866 | for (hog = &hogs[0]; hog->chip_label; hog++) { |
| 3867 | list_add_tail(&hog->list, &gpio_machine_hogs); |
| 3868 | |
| 3869 | /* |
| 3870 | * The chip may have been registered earlier, so check if it |
| 3871 | * exists and, if so, try to hog the line now. |
| 3872 | */ |
| 3873 | chip = find_chip_by_name(hog->chip_label); |
| 3874 | if (chip) |
| 3875 | gpiochip_machine_hog(chip, hog); |
| 3876 | } |
| 3877 | |
| 3878 | mutex_unlock(&gpio_machine_hogs_mutex); |
| 3879 | } |
| 3880 | EXPORT_SYMBOL_GPL(gpiod_add_hogs); |
| 3881 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3882 | static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev) |
| 3883 | { |
| 3884 | const char *dev_id = dev ? dev_name(dev) : NULL; |
| 3885 | struct gpiod_lookup_table *table; |
| 3886 | |
| 3887 | mutex_lock(&gpio_lookup_lock); |
| 3888 | |
| 3889 | list_for_each_entry(table, &gpio_lookup_list, list) { |
| 3890 | if (table->dev_id && dev_id) { |
| 3891 | /* |
| 3892 | * Valid strings on both ends, must be identical to have |
| 3893 | * a match |
| 3894 | */ |
| 3895 | if (!strcmp(table->dev_id, dev_id)) |
| 3896 | goto found; |
| 3897 | } else { |
| 3898 | /* |
| 3899 | * One of the pointers is NULL, so both must be to have |
| 3900 | * a match |
| 3901 | */ |
| 3902 | if (dev_id == table->dev_id) |
| 3903 | goto found; |
| 3904 | } |
| 3905 | } |
| 3906 | table = NULL; |
| 3907 | |
| 3908 | found: |
| 3909 | mutex_unlock(&gpio_lookup_lock); |
| 3910 | return table; |
| 3911 | } |
| 3912 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3913 | 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] | 3914 | unsigned int idx, |
| 3915 | enum gpio_lookup_flags *flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3916 | { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 3917 | struct gpio_desc *desc = ERR_PTR(-ENOENT); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3918 | struct gpiod_lookup_table *table; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3919 | struct gpiod_lookup *p; |
| 3920 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3921 | table = gpiod_find_lookup_table(dev); |
| 3922 | if (!table) |
| 3923 | return desc; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3924 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3925 | for (p = &table->table[0]; p->chip_label; p++) { |
| 3926 | struct gpio_chip *chip; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3927 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3928 | /* idx must always match exactly */ |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3929 | if (p->idx != idx) |
| 3930 | continue; |
| 3931 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3932 | /* If the lookup entry has a con_id, require exact match */ |
| 3933 | if (p->con_id && (!con_id || strcmp(p->con_id, con_id))) |
| 3934 | continue; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3935 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3936 | chip = find_chip_by_name(p->chip_label); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3937 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3938 | if (!chip) { |
Janusz Krzysztofik | 8853daf | 2018-07-04 00:18:19 +0200 | [diff] [blame] | 3939 | /* |
| 3940 | * As the lookup table indicates a chip with |
| 3941 | * p->chip_label should exist, assume it may |
| 3942 | * still appear later and let the interested |
| 3943 | * consumer be probed again or let the Deferred |
| 3944 | * Probe infrastructure handle the error. |
| 3945 | */ |
| 3946 | dev_warn(dev, "cannot find GPIO chip %s, deferring\n", |
| 3947 | p->chip_label); |
| 3948 | return ERR_PTR(-EPROBE_DEFER); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3949 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3950 | |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3951 | if (chip->ngpio <= p->chip_hwnum) { |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 3952 | dev_err(dev, |
| 3953 | "requested GPIO %d is out of range [0..%d] for chip %s\n", |
| 3954 | idx, chip->ngpio, chip->label); |
| 3955 | return ERR_PTR(-EINVAL); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3956 | } |
| 3957 | |
Alexandre Courbot | bb1e88c | 2014-02-09 17:43:54 +0900 | [diff] [blame] | 3958 | desc = gpiochip_get_desc(chip, p->chip_hwnum); |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3959 | *flags = p->flags; |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 3960 | |
| 3961 | return desc; |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 3962 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 3963 | |
| 3964 | return desc; |
| 3965 | } |
| 3966 | |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 3967 | static int dt_gpio_count(struct device *dev, const char *con_id) |
| 3968 | { |
| 3969 | int ret; |
| 3970 | char propname[32]; |
| 3971 | unsigned int i; |
| 3972 | |
| 3973 | for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) { |
| 3974 | if (con_id) |
| 3975 | snprintf(propname, sizeof(propname), "%s-%s", |
| 3976 | con_id, gpio_suffixes[i]); |
| 3977 | else |
| 3978 | snprintf(propname, sizeof(propname), "%s", |
| 3979 | gpio_suffixes[i]); |
| 3980 | |
| 3981 | ret = of_gpio_named_count(dev->of_node, propname); |
Andy Shevchenko | 4033d4a | 2017-02-20 18:15:47 +0200 | [diff] [blame] | 3982 | if (ret > 0) |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 3983 | break; |
| 3984 | } |
Andy Shevchenko | 4033d4a | 2017-02-20 18:15:47 +0200 | [diff] [blame] | 3985 | return ret ? ret : -ENOENT; |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 3986 | } |
| 3987 | |
| 3988 | static int platform_gpio_count(struct device *dev, const char *con_id) |
| 3989 | { |
| 3990 | struct gpiod_lookup_table *table; |
| 3991 | struct gpiod_lookup *p; |
| 3992 | unsigned int count = 0; |
| 3993 | |
| 3994 | table = gpiod_find_lookup_table(dev); |
| 3995 | if (!table) |
| 3996 | return -ENOENT; |
| 3997 | |
| 3998 | for (p = &table->table[0]; p->chip_label; p++) { |
| 3999 | if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) || |
| 4000 | (!con_id && !p->con_id)) |
| 4001 | count++; |
| 4002 | } |
| 4003 | if (!count) |
| 4004 | return -ENOENT; |
| 4005 | |
| 4006 | return count; |
| 4007 | } |
| 4008 | |
| 4009 | /** |
| 4010 | * gpiod_count - return the number of GPIOs associated with a device / function |
| 4011 | * or -ENOENT if no GPIO has been assigned to the requested function |
| 4012 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 4013 | * @con_id: function within the GPIO consumer |
| 4014 | */ |
| 4015 | int gpiod_count(struct device *dev, const char *con_id) |
| 4016 | { |
| 4017 | int count = -ENOENT; |
| 4018 | |
| 4019 | if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node) |
| 4020 | count = dt_gpio_count(dev, con_id); |
| 4021 | else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev)) |
| 4022 | count = acpi_gpio_count(dev, con_id); |
| 4023 | |
| 4024 | if (count < 0) |
| 4025 | count = platform_gpio_count(dev, con_id); |
| 4026 | |
| 4027 | return count; |
| 4028 | } |
| 4029 | EXPORT_SYMBOL_GPL(gpiod_count); |
| 4030 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4031 | /** |
Thierry Reding | 0879162 | 2014-04-25 16:54:22 +0200 | [diff] [blame] | 4032 | * gpiod_get - obtain a GPIO for a given GPIO function |
Alexandre Courbot | ad82478 | 2013-12-03 12:20:11 +0900 | [diff] [blame] | 4033 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4034 | * @con_id: function within the GPIO consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4035 | * @flags: optional GPIO initialization flags |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4036 | * |
| 4037 | * Return the GPIO descriptor corresponding to the function con_id of device |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 4038 | * 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] | 4039 | * 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] | 4040 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4041 | 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] | 4042 | enum gpiod_flags flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4043 | { |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4044 | return gpiod_get_index(dev, con_id, 0, flags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4045 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4046 | EXPORT_SYMBOL_GPL(gpiod_get); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4047 | |
| 4048 | /** |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4049 | * gpiod_get_optional - obtain an optional GPIO for a given GPIO function |
| 4050 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 4051 | * @con_id: function within the GPIO consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4052 | * @flags: optional GPIO initialization flags |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4053 | * |
| 4054 | * This is equivalent to gpiod_get(), except that when no GPIO was assigned to |
| 4055 | * the requested function it will return NULL. This is convenient for drivers |
| 4056 | * that need to handle optional GPIOs. |
| 4057 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4058 | struct gpio_desc *__must_check gpiod_get_optional(struct device *dev, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4059 | const char *con_id, |
| 4060 | enum gpiod_flags flags) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4061 | { |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4062 | return gpiod_get_index_optional(dev, con_id, 0, flags); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4063 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4064 | EXPORT_SYMBOL_GPL(gpiod_get_optional); |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4065 | |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4066 | |
| 4067 | /** |
| 4068 | * gpiod_configure_flags - helper function to configure a given GPIO |
| 4069 | * @desc: gpio whose value will be assigned |
| 4070 | * @con_id: function within the GPIO consumer |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4071 | * @lflags: gpio_lookup_flags - returned from of_find_gpio() or |
| 4072 | * of_get_gpio_hog() |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4073 | * @dflags: gpiod_flags - optional GPIO initialization flags |
| 4074 | * |
| 4075 | * Return 0 on success, -ENOENT if no GPIO has been assigned to the |
| 4076 | * requested function and/or index, or another IS_ERR() code if an error |
| 4077 | * occurred while trying to acquire the GPIO. |
| 4078 | */ |
Andy Shevchenko | c29fd9e | 2017-05-23 20:03:16 +0300 | [diff] [blame] | 4079 | int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id, |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4080 | unsigned long lflags, enum gpiod_flags dflags) |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4081 | { |
| 4082 | int status; |
| 4083 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4084 | if (lflags & GPIO_ACTIVE_LOW) |
| 4085 | set_bit(FLAG_ACTIVE_LOW, &desc->flags); |
Linus Walleij | f926dfc | 2017-09-10 19:26:22 +0200 | [diff] [blame] | 4086 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4087 | if (lflags & GPIO_OPEN_DRAIN) |
| 4088 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
Linus Walleij | f926dfc | 2017-09-10 19:26:22 +0200 | [diff] [blame] | 4089 | else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) { |
| 4090 | /* |
| 4091 | * This enforces open drain mode from the consumer side. |
| 4092 | * This is necessary for some busses like I2C, but the lookup |
| 4093 | * should *REALLY* have specified them as open drain in the |
| 4094 | * first place, so print a little warning here. |
| 4095 | */ |
| 4096 | set_bit(FLAG_OPEN_DRAIN, &desc->flags); |
| 4097 | gpiod_warn(desc, |
| 4098 | "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n"); |
| 4099 | } |
| 4100 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4101 | if (lflags & GPIO_OPEN_SOURCE) |
| 4102 | set_bit(FLAG_OPEN_SOURCE, &desc->flags); |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 4103 | |
Thomas Petazzoni | d449991 | 2019-02-07 17:28:58 +0100 | [diff] [blame] | 4104 | if ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) { |
| 4105 | gpiod_err(desc, |
| 4106 | "both pull-up and pull-down enabled, invalid configuration\n"); |
| 4107 | return -EINVAL; |
| 4108 | } |
| 4109 | |
| 4110 | if (lflags & GPIO_PULL_UP) |
| 4111 | set_bit(FLAG_PULL_UP, &desc->flags); |
| 4112 | else if (lflags & GPIO_PULL_DOWN) |
| 4113 | set_bit(FLAG_PULL_DOWN, &desc->flags); |
| 4114 | |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 4115 | status = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY)); |
| 4116 | if (status < 0) |
| 4117 | return status; |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4118 | |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4119 | /* No particular flag request, return here... */ |
| 4120 | if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) { |
| 4121 | pr_debug("no flags found for %s\n", con_id); |
| 4122 | return 0; |
| 4123 | } |
| 4124 | |
| 4125 | /* Process flags */ |
| 4126 | if (dflags & GPIOD_FLAGS_BIT_DIR_OUT) |
| 4127 | status = gpiod_direction_output(desc, |
Linus Walleij | ad17731 | 2016-11-13 23:02:44 +0100 | [diff] [blame] | 4128 | !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL)); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4129 | else |
| 4130 | status = gpiod_direction_input(desc); |
| 4131 | |
| 4132 | return status; |
| 4133 | } |
| 4134 | |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4135 | /** |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4136 | * gpiod_get_index - obtain a GPIO from a multi-index GPIO function |
Andy Shevchenko | fdd6a5f | 2013-12-05 11:26:26 +0200 | [diff] [blame] | 4137 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4138 | * @con_id: function within the GPIO consumer |
| 4139 | * @idx: index of the GPIO to obtain in the consumer |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4140 | * @flags: optional GPIO initialization flags |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4141 | * |
| 4142 | * This variant of gpiod_get() allows to access GPIOs other than the first |
| 4143 | * defined one for functions that define several GPIOs. |
| 4144 | * |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 4145 | * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the |
| 4146 | * 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] | 4147 | * occurred while trying to acquire the GPIO. |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4148 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4149 | struct gpio_desc *__must_check gpiod_get_index(struct device *dev, |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4150 | const char *con_id, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4151 | unsigned int idx, |
| 4152 | enum gpiod_flags flags) |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4153 | { |
Alexandre Courbot | 35c5d7f | 2013-11-23 19:34:50 +0900 | [diff] [blame] | 4154 | struct gpio_desc *desc = NULL; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4155 | int status; |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4156 | enum gpio_lookup_flags lookupflags = 0; |
Linus Walleij | 7d18f0a | 2018-01-16 08:29:50 +0100 | [diff] [blame] | 4157 | /* Maybe we have a device name, maybe not */ |
| 4158 | const char *devname = dev ? dev_name(dev) : "?"; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4159 | |
| 4160 | dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id); |
| 4161 | |
Rafael J. Wysocki | 4d8440b | 2015-03-10 23:08:57 +0100 | [diff] [blame] | 4162 | if (dev) { |
| 4163 | /* Using device tree? */ |
| 4164 | if (IS_ENABLED(CONFIG_OF) && dev->of_node) { |
| 4165 | dev_dbg(dev, "using device tree for GPIO lookup\n"); |
| 4166 | desc = of_find_gpio(dev, con_id, idx, &lookupflags); |
| 4167 | } else if (ACPI_COMPANION(dev)) { |
| 4168 | dev_dbg(dev, "using ACPI for GPIO lookup\n"); |
Andy Shevchenko | a31f5c3 | 2017-05-23 20:03:23 +0300 | [diff] [blame] | 4169 | desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags); |
Rafael J. Wysocki | 4d8440b | 2015-03-10 23:08:57 +0100 | [diff] [blame] | 4170 | } |
Alexandre Courbot | 35c5d7f | 2013-11-23 19:34:50 +0900 | [diff] [blame] | 4171 | } |
| 4172 | |
| 4173 | /* |
| 4174 | * Either we are not using DT or ACPI, or their lookup did not return |
| 4175 | * a result. In that case, use platform lookup as a fallback. |
| 4176 | */ |
Alexandre Courbot | 2a3cf6a | 2013-12-11 11:32:28 +0900 | [diff] [blame] | 4177 | if (!desc || desc == ERR_PTR(-ENOENT)) { |
Alexander Shiyan | 43a8785 | 2014-09-19 11:39:25 +0400 | [diff] [blame] | 4178 | dev_dbg(dev, "using lookup tables for GPIO lookup\n"); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4179 | desc = gpiod_find(dev, con_id, idx, &lookupflags); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4180 | } |
| 4181 | |
| 4182 | if (IS_ERR(desc)) { |
Wang Dongsheng | 9d5a1f2 | 2018-02-27 00:12:13 -0800 | [diff] [blame] | 4183 | dev_dbg(dev, "No GPIO consumer %s found\n", con_id); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4184 | return desc; |
| 4185 | } |
| 4186 | |
Linus Walleij | 7d18f0a | 2018-01-16 08:29:50 +0100 | [diff] [blame] | 4187 | /* |
| 4188 | * If a connection label was passed use that, else attempt to use |
| 4189 | * the device name as label |
| 4190 | */ |
| 4191 | status = gpiod_request(desc, con_id ? con_id : devname); |
Linus Walleij | b0ce7b29 | 2018-10-12 14:54:12 +0200 | [diff] [blame] | 4192 | if (status < 0) { |
| 4193 | if (status == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) { |
| 4194 | /* |
| 4195 | * This happens when there are several consumers for |
| 4196 | * the same GPIO line: we just return here without |
| 4197 | * further initialization. It is a bit if a hack. |
| 4198 | * This is necessary to support fixed regulators. |
| 4199 | * |
| 4200 | * FIXME: Make this more sane and safe. |
| 4201 | */ |
| 4202 | dev_info(dev, "nonexclusive access to GPIO for %s\n", |
| 4203 | con_id ? con_id : devname); |
| 4204 | return desc; |
| 4205 | } else { |
| 4206 | return ERR_PTR(status); |
| 4207 | } |
| 4208 | } |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4209 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4210 | status = gpiod_configure_flags(desc, con_id, lookupflags, flags); |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4211 | if (status < 0) { |
| 4212 | dev_dbg(dev, "setup of GPIO %s failed\n", con_id); |
| 4213 | gpiod_put(desc); |
| 4214 | return ERR_PTR(status); |
| 4215 | } |
| 4216 | |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4217 | return desc; |
| 4218 | } |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4219 | EXPORT_SYMBOL_GPL(gpiod_get_index); |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4220 | |
| 4221 | /** |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4222 | * gpiod_get_from_of_node() - obtain a GPIO from an OF node |
| 4223 | * @node: handle of the OF node |
| 4224 | * @propname: name of the DT property representing the GPIO |
| 4225 | * @index: index of the GPIO to obtain for the consumer |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4226 | * @dflags: GPIO initialization flags |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 4227 | * @label: label to attach to the requested GPIO |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4228 | * |
Thierry Reding | 950d55f5 | 2017-07-24 16:57:22 +0200 | [diff] [blame] | 4229 | * Returns: |
Andy Shevchenko | ff21378 | 2017-02-28 17:03:12 +0200 | [diff] [blame] | 4230 | * On successful request the GPIO pin is configured in accordance with |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4231 | * provided @dflags. If the node does not have the requested GPIO |
| 4232 | * property, NULL is returned. |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4233 | * |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4234 | * In case of error an ERR_PTR() is returned. |
| 4235 | */ |
Linus Walleij | 92542ed | 2017-12-29 22:52:02 +0100 | [diff] [blame] | 4236 | struct gpio_desc *gpiod_get_from_of_node(struct device_node *node, |
| 4237 | const char *propname, int index, |
| 4238 | enum gpiod_flags dflags, |
| 4239 | const char *label) |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4240 | { |
Colin Ian King | 40a3c9d | 2018-01-16 11:56:11 +0000 | [diff] [blame] | 4241 | struct gpio_desc *desc; |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4242 | unsigned long lflags = 0; |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4243 | enum of_gpio_flags flags; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4244 | bool active_low = false; |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 4245 | bool single_ended = false; |
Laxman Dewangan | 4c0facd | 2017-04-06 19:05:52 +0530 | [diff] [blame] | 4246 | bool open_drain = false; |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 4247 | bool transitory = false; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4248 | int ret; |
| 4249 | |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4250 | desc = of_get_named_gpiod_flags(node, propname, |
| 4251 | index, &flags); |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4252 | |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4253 | if (!desc || IS_ERR(desc)) { |
| 4254 | /* If it is not there, just return NULL */ |
| 4255 | if (PTR_ERR(desc) == -ENOENT) |
| 4256 | return NULL; |
| 4257 | return desc; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4258 | } |
| 4259 | |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4260 | active_low = flags & OF_GPIO_ACTIVE_LOW; |
| 4261 | single_ended = flags & OF_GPIO_SINGLE_ENDED; |
| 4262 | open_drain = flags & OF_GPIO_OPEN_DRAIN; |
| 4263 | transitory = flags & OF_GPIO_TRANSITORY; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4264 | |
Alexander Stein | b2987d7 | 2017-01-12 17:39:24 +0100 | [diff] [blame] | 4265 | ret = gpiod_request(desc, label); |
Linus Walleij | ec75700 | 2018-12-06 13:43:44 +0100 | [diff] [blame] | 4266 | if (ret == -EBUSY && (flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE)) |
| 4267 | return desc; |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4268 | if (ret) |
| 4269 | return ERR_PTR(ret); |
| 4270 | |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4271 | if (active_low) |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4272 | lflags |= GPIO_ACTIVE_LOW; |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4273 | |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 4274 | if (single_ended) { |
Laxman Dewangan | 4c0facd | 2017-04-06 19:05:52 +0530 | [diff] [blame] | 4275 | if (open_drain) |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4276 | lflags |= GPIO_OPEN_DRAIN; |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 4277 | else |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4278 | lflags |= GPIO_OPEN_SOURCE; |
| 4279 | } |
| 4280 | |
Andrew Jeffery | e10f72b | 2017-11-30 14:25:24 +1030 | [diff] [blame] | 4281 | if (transitory) |
| 4282 | lflags |= GPIO_TRANSITORY; |
| 4283 | |
Andy Shevchenko | a264d10 | 2017-01-09 16:02:28 +0200 | [diff] [blame] | 4284 | ret = gpiod_configure_flags(desc, propname, lflags, dflags); |
| 4285 | if (ret < 0) { |
| 4286 | gpiod_put(desc); |
| 4287 | return ERR_PTR(ret); |
Laurent Pinchart | 90b665f | 2015-10-13 00:20:21 +0300 | [diff] [blame] | 4288 | } |
| 4289 | |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4290 | return desc; |
| 4291 | } |
Linus Walleij | 92542ed | 2017-12-29 22:52:02 +0100 | [diff] [blame] | 4292 | EXPORT_SYMBOL(gpiod_get_from_of_node); |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4293 | |
| 4294 | /** |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4295 | * fwnode_get_named_gpiod - obtain a GPIO from firmware node |
| 4296 | * @fwnode: handle of the firmware node |
| 4297 | * @propname: name of the firmware property representing the GPIO |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4298 | * @index: index of the GPIO to obtain for the consumer |
Mika Westerberg | 40b7318 | 2014-10-21 13:33:59 +0200 | [diff] [blame] | 4299 | * @dflags: GPIO initialization flags |
| 4300 | * @label: label to attach to the requested GPIO |
| 4301 | * |
| 4302 | * This function can be used for drivers that get their configuration |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4303 | * from opaque firmware. |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4304 | * |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4305 | * The function properly finds the corresponding GPIO using whatever is the |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4306 | * underlying firmware interface and then makes sure that the GPIO |
| 4307 | * descriptor is requested before it is returned to the caller. |
| 4308 | * |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4309 | * Returns: |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4310 | * On successful request the GPIO pin is configured in accordance with |
| 4311 | * provided @dflags. |
| 4312 | * |
| 4313 | * In case of error an ERR_PTR() is returned. |
| 4314 | */ |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4315 | struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode, |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4316 | const char *propname, int index, |
Alexandre Courbot | 39b2bbe | 2014-07-25 23:38:36 +0900 | [diff] [blame] | 4317 | enum gpiod_flags dflags, |
| 4318 | const char *label) |
Thierry Reding | 29a1f233 | 2014-04-25 17:10:06 +0200 | [diff] [blame] | 4319 | { |
| 4320 | struct gpio_desc *desc = ERR_PTR(-ENODEV); |
| 4321 | unsigned long lflags = 0; |
Alexandre Courbot | bae48da | 2013-10-17 10:21:38 -0700 | [diff] [blame] | 4322 | int ret; |
| 4323 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4324 | if (!fwnode) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4325 | return ERR_PTR(-EINVAL); |
| 4326 | |
| 4327 | if (is_of_node(fwnode)) { |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4328 | desc = gpiod_get_from_of_node(to_of_node(fwnode), |
| 4329 | propname, index, |
| 4330 | dflags, |
| 4331 | label); |
| 4332 | return desc; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4333 | } else if (is_acpi_node(fwnode)) { |
Alexandre Courbot | 372e722 | 2013-02-03 01:29:29 +0900 | [diff] [blame] | 4334 | struct acpi_gpio_info info; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4335 | |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 4336 | desc = acpi_node_get_gpiod(fwnode, propname, index, &info); |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4337 | if (IS_ERR(desc)) |
| 4338 | return desc; |
| 4339 | |
| 4340 | acpi_gpio_update_gpiod_flags(&dflags, &info); |
| 4341 | |
| 4342 | if (info.polarity == GPIO_ACTIVE_LOW) |
| 4343 | lflags |= GPIO_ACTIVE_LOW; |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 4344 | } |
| 4345 | |
Linus Walleij | 6392cca | 2017-12-29 02:07:54 +0100 | [diff] [blame] | 4346 | /* Currently only ACPI takes this path */ |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 4347 | ret = gpiod_request(desc, label); |
| 4348 | if (ret) |
| 4349 | return ERR_PTR(ret); |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 4350 | |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 4351 | ret = gpiod_configure_flags(desc, propname, lflags, dflags); |
| 4352 | if (ret < 0) { |
| 4353 | gpiod_put(desc); |
| 4354 | return ERR_PTR(ret); |
| 4355 | } |
| 4356 | |
| 4357 | return desc; |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 4358 | } |
| 4359 | EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4360 | |
| 4361 | /** |
Guennadi Liakhovetski | e6de180 | 2008-04-28 02:14:46 -0700 | [diff] [blame] | 4362 | * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 4363 | * function |
Linus Walleij | d468bf9 | 2013-09-24 11:54:38 +0200 | [diff] [blame] | 4364 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 4365 | * @con_id: function within the GPIO consumer |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4366 | * @index: index of the GPIO to obtain in the consumer |
| 4367 | * @flags: optional GPIO initialization flags |
| 4368 | * |
| 4369 | * This is equivalent to gpiod_get_index(), except that when no GPIO with the |
| 4370 | * specified index was assigned to the requested function it will return NULL. |
| 4371 | * This is convenient for drivers that need to handle optional GPIOs. |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 4372 | */ |
David Brownell | d8f388d8 | 2008-07-25 01:46:07 -0700 | [diff] [blame] | 4373 | struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev, |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 4374 | const char *con_id, |
Thierry Reding | f9c4a31 | 2012-04-12 13:26:01 +0200 | [diff] [blame] | 4375 | unsigned int index, |
| 4376 | enum gpiod_flags flags) |
| 4377 | { |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 4378 | struct gpio_desc *desc; |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 4379 | |
Grant Likely | 362432a | 2013-02-09 09:41:49 +0000 | [diff] [blame] | 4380 | desc = gpiod_get_index(dev, con_id, index, flags); |
| 4381 | if (IS_ERR(desc)) { |
Alexandre Courbot | cb1650d | 2013-02-03 01:29:27 +0900 | [diff] [blame] | 4382 | if (PTR_ERR(desc) == -ENOENT) |
Uwe Kleine-König | b17d1bf | 2015-02-11 11:52:37 +0100 | [diff] [blame] | 4383 | return NULL; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4384 | } |
| 4385 | |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4386 | return desc; |
| 4387 | } |
| 4388 | EXPORT_SYMBOL_GPL(gpiod_get_index_optional); |
| 4389 | |
| 4390 | /** |
| 4391 | * gpiod_hog - Hog the specified GPIO desc given the provided flags |
| 4392 | * @desc: gpio whose value will be assigned |
| 4393 | * @name: gpio line name |
| 4394 | * @lflags: gpio_lookup_flags - returned from of_find_gpio() or |
| 4395 | * of_get_gpio_hog() |
| 4396 | * @dflags: gpiod_flags - optional GPIO initialization flags |
| 4397 | */ |
| 4398 | int gpiod_hog(struct gpio_desc *desc, const char *name, |
| 4399 | unsigned long lflags, enum gpiod_flags dflags) |
| 4400 | { |
| 4401 | struct gpio_chip *chip; |
| 4402 | struct gpio_desc *local_desc; |
| 4403 | int hwnum; |
| 4404 | int status; |
| 4405 | |
Laxman Dewangan | c31a571 | 2016-03-11 19:13:21 +0530 | [diff] [blame] | 4406 | chip = gpiod_to_chip(desc); |
| 4407 | hwnum = gpio_chip_hwgpio(desc); |
| 4408 | |
Linus Walleij | 21abf10 | 2018-09-04 13:31:45 +0200 | [diff] [blame] | 4409 | /* |
| 4410 | * FIXME: not very elegant that we call gpiod_configure_flags() |
| 4411 | * twice here (once inside gpiochip_request_own_desc() and |
| 4412 | * again here), but the gpiochip_request_own_desc() is external |
| 4413 | * and cannot really pass the lflags so this is the lesser evil |
| 4414 | * at the moment. Pass zero as dflags on this first call so we |
| 4415 | * don't screw anything up. |
| 4416 | */ |
| 4417 | local_desc = gpiochip_request_own_desc(chip, hwnum, name, 0); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4418 | if (IS_ERR(local_desc)) { |
Laxman Dewangan | c31a571 | 2016-03-11 19:13:21 +0530 | [diff] [blame] | 4419 | status = PTR_ERR(local_desc); |
| 4420 | pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n", |
| 4421 | name, chip->label, hwnum, status); |
| 4422 | return status; |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4423 | } |
| 4424 | |
Johan Hovold | 85b03b3 | 2016-07-03 18:32:05 +0200 | [diff] [blame] | 4425 | status = gpiod_configure_flags(desc, name, lflags, dflags); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4426 | if (status < 0) { |
Laxman Dewangan | c31a571 | 2016-03-11 19:13:21 +0530 | [diff] [blame] | 4427 | pr_err("setup of hog GPIO %s (chip %s, offset %d) failed, %d\n", |
| 4428 | name, chip->label, hwnum, status); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4429 | gpiochip_free_own_desc(desc); |
| 4430 | return status; |
| 4431 | } |
| 4432 | |
| 4433 | /* Mark GPIO as hogged so it can be identified and removed later */ |
| 4434 | set_bit(FLAG_IS_HOGGED, &desc->flags); |
| 4435 | |
| 4436 | pr_info("GPIO line %d (%s) hogged as %s%s\n", |
| 4437 | desc_to_gpio(desc), name, |
| 4438 | (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input", |
| 4439 | (dflags&GPIOD_FLAGS_BIT_DIR_OUT) ? |
| 4440 | (dflags&GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low":""); |
| 4441 | |
| 4442 | return 0; |
| 4443 | } |
| 4444 | |
| 4445 | /** |
| 4446 | * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog |
| 4447 | * @chip: gpio chip to act on |
| 4448 | * |
| 4449 | * This is only used by of_gpiochip_remove to free hogged gpios |
| 4450 | */ |
| 4451 | static void gpiochip_free_hogs(struct gpio_chip *chip) |
| 4452 | { |
| 4453 | int id; |
| 4454 | |
| 4455 | for (id = 0; id < chip->ngpio; id++) { |
Linus Walleij | 1c3cdb1 | 2016-02-09 13:51:59 +0100 | [diff] [blame] | 4456 | if (test_bit(FLAG_IS_HOGGED, &chip->gpiodev->descs[id].flags)) |
| 4457 | gpiochip_free_own_desc(&chip->gpiodev->descs[id]); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 4458 | } |
| 4459 | } |
| 4460 | |
| 4461 | /** |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4462 | * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function |
| 4463 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 4464 | * @con_id: function within the GPIO consumer |
| 4465 | * @flags: optional GPIO initialization flags |
| 4466 | * |
| 4467 | * This function acquires all the GPIOs defined under a given function. |
| 4468 | * |
| 4469 | * Return a struct gpio_descs containing an array of descriptors, -ENOENT if |
| 4470 | * no GPIO has been assigned to the requested function, or another IS_ERR() |
| 4471 | * code if an error occurred while trying to acquire the GPIOs. |
| 4472 | */ |
| 4473 | struct gpio_descs *__must_check gpiod_get_array(struct device *dev, |
| 4474 | const char *con_id, |
| 4475 | enum gpiod_flags flags) |
| 4476 | { |
| 4477 | struct gpio_desc *desc; |
| 4478 | struct gpio_descs *descs; |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4479 | struct gpio_array *array_info = NULL; |
| 4480 | struct gpio_chip *chip; |
| 4481 | int count, bitmap_size; |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4482 | |
| 4483 | count = gpiod_count(dev, con_id); |
| 4484 | if (count < 0) |
| 4485 | return ERR_PTR(count); |
| 4486 | |
Kees Cook | acafe7e | 2018-05-08 13:45:50 -0700 | [diff] [blame] | 4487 | descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL); |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4488 | if (!descs) |
| 4489 | return ERR_PTR(-ENOMEM); |
| 4490 | |
| 4491 | for (descs->ndescs = 0; descs->ndescs < count; ) { |
| 4492 | desc = gpiod_get_index(dev, con_id, descs->ndescs, flags); |
| 4493 | if (IS_ERR(desc)) { |
| 4494 | gpiod_put_array(descs); |
| 4495 | return ERR_CAST(desc); |
| 4496 | } |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4497 | |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4498 | descs->desc[descs->ndescs] = desc; |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4499 | |
| 4500 | chip = gpiod_to_chip(desc); |
| 4501 | /* |
Janusz Krzysztofik | c4c958a | 2018-09-24 01:53:36 +0200 | [diff] [blame] | 4502 | * If pin hardware number of array member 0 is also 0, select |
| 4503 | * its chip as a candidate for fast bitmap processing path. |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4504 | */ |
Janusz Krzysztofik | c4c958a | 2018-09-24 01:53:36 +0200 | [diff] [blame] | 4505 | if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) { |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4506 | struct gpio_descs *array; |
| 4507 | |
| 4508 | bitmap_size = BITS_TO_LONGS(chip->ngpio > count ? |
| 4509 | chip->ngpio : count); |
| 4510 | |
| 4511 | array = kzalloc(struct_size(descs, desc, count) + |
| 4512 | struct_size(array_info, invert_mask, |
| 4513 | 3 * bitmap_size), GFP_KERNEL); |
| 4514 | if (!array) { |
| 4515 | gpiod_put_array(descs); |
| 4516 | return ERR_PTR(-ENOMEM); |
| 4517 | } |
| 4518 | |
| 4519 | memcpy(array, descs, |
| 4520 | struct_size(descs, desc, descs->ndescs + 1)); |
| 4521 | kfree(descs); |
| 4522 | |
| 4523 | descs = array; |
| 4524 | array_info = (void *)(descs->desc + count); |
| 4525 | array_info->get_mask = array_info->invert_mask + |
| 4526 | bitmap_size; |
| 4527 | array_info->set_mask = array_info->get_mask + |
| 4528 | bitmap_size; |
| 4529 | |
| 4530 | array_info->desc = descs->desc; |
| 4531 | array_info->size = count; |
| 4532 | array_info->chip = chip; |
| 4533 | bitmap_set(array_info->get_mask, descs->ndescs, |
| 4534 | count - descs->ndescs); |
| 4535 | bitmap_set(array_info->set_mask, descs->ndescs, |
| 4536 | count - descs->ndescs); |
| 4537 | descs->info = array_info; |
| 4538 | } |
Janusz Krzysztofik | c4c958a | 2018-09-24 01:53:36 +0200 | [diff] [blame] | 4539 | /* Unmark array members which don't belong to the 'fast' chip */ |
| 4540 | if (array_info && array_info->chip != chip) { |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4541 | __clear_bit(descs->ndescs, array_info->get_mask); |
| 4542 | __clear_bit(descs->ndescs, array_info->set_mask); |
Janusz Krzysztofik | c4c958a | 2018-09-24 01:53:36 +0200 | [diff] [blame] | 4543 | } |
| 4544 | /* |
| 4545 | * Detect array members which belong to the 'fast' chip |
| 4546 | * but their pins are not in hardware order. |
| 4547 | */ |
| 4548 | else if (array_info && |
| 4549 | gpio_chip_hwgpio(desc) != descs->ndescs) { |
| 4550 | /* |
| 4551 | * Don't use fast path if all array members processed so |
| 4552 | * far belong to the same chip as this one but its pin |
| 4553 | * hardware number is different from its array index. |
| 4554 | */ |
| 4555 | if (bitmap_full(array_info->get_mask, descs->ndescs)) { |
| 4556 | array_info = NULL; |
| 4557 | } else { |
| 4558 | __clear_bit(descs->ndescs, |
| 4559 | array_info->get_mask); |
| 4560 | __clear_bit(descs->ndescs, |
| 4561 | array_info->set_mask); |
| 4562 | } |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4563 | } else if (array_info) { |
| 4564 | /* Exclude open drain or open source from fast output */ |
| 4565 | if (gpiochip_line_is_open_drain(chip, descs->ndescs) || |
| 4566 | gpiochip_line_is_open_source(chip, descs->ndescs)) |
| 4567 | __clear_bit(descs->ndescs, |
| 4568 | array_info->set_mask); |
| 4569 | /* Identify 'fast' pins which require invertion */ |
| 4570 | if (gpiod_is_active_low(desc)) |
| 4571 | __set_bit(descs->ndescs, |
| 4572 | array_info->invert_mask); |
| 4573 | } |
| 4574 | |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4575 | descs->ndescs++; |
| 4576 | } |
Janusz Krzysztofik | bf9346f | 2018-09-05 23:50:06 +0200 | [diff] [blame] | 4577 | if (array_info) |
| 4578 | dev_dbg(dev, |
| 4579 | "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n", |
| 4580 | array_info->chip->label, array_info->size, |
| 4581 | *array_info->get_mask, *array_info->set_mask, |
| 4582 | *array_info->invert_mask); |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4583 | return descs; |
| 4584 | } |
| 4585 | EXPORT_SYMBOL_GPL(gpiod_get_array); |
| 4586 | |
| 4587 | /** |
| 4588 | * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO |
| 4589 | * function |
| 4590 | * @dev: GPIO consumer, can be NULL for system-global GPIOs |
| 4591 | * @con_id: function within the GPIO consumer |
| 4592 | * @flags: optional GPIO initialization flags |
| 4593 | * |
| 4594 | * This is equivalent to gpiod_get_array(), except that when no GPIO was |
| 4595 | * assigned to the requested function it will return NULL. |
| 4596 | */ |
| 4597 | struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev, |
| 4598 | const char *con_id, |
| 4599 | enum gpiod_flags flags) |
| 4600 | { |
| 4601 | struct gpio_descs *descs; |
| 4602 | |
| 4603 | descs = gpiod_get_array(dev, con_id, flags); |
| 4604 | if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT)) |
| 4605 | return NULL; |
| 4606 | |
| 4607 | return descs; |
| 4608 | } |
| 4609 | EXPORT_SYMBOL_GPL(gpiod_get_array_optional); |
| 4610 | |
| 4611 | /** |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4612 | * gpiod_put - dispose of a GPIO descriptor |
| 4613 | * @desc: GPIO descriptor to dispose of |
| 4614 | * |
| 4615 | * No descriptor can be used after gpiod_put() has been called on it. |
| 4616 | */ |
| 4617 | void gpiod_put(struct gpio_desc *desc) |
| 4618 | { |
| 4619 | gpiod_free(desc); |
| 4620 | } |
| 4621 | EXPORT_SYMBOL_GPL(gpiod_put); |
| 4622 | |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 4623 | /** |
| 4624 | * gpiod_put_array - dispose of multiple GPIO descriptors |
| 4625 | * @descs: struct gpio_descs containing an array of descriptors |
| 4626 | */ |
| 4627 | void gpiod_put_array(struct gpio_descs *descs) |
| 4628 | { |
| 4629 | unsigned int i; |
| 4630 | |
| 4631 | for (i = 0; i < descs->ndescs; i++) |
| 4632 | gpiod_put(descs->desc[i]); |
| 4633 | |
| 4634 | kfree(descs); |
| 4635 | } |
| 4636 | EXPORT_SYMBOL_GPL(gpiod_put_array); |
| 4637 | |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 4638 | static int __init gpiolib_dev_init(void) |
| 4639 | { |
| 4640 | int ret; |
| 4641 | |
| 4642 | /* Register GPIO sysfs bus */ |
Andy Shevchenko | b191171 | 2018-07-03 03:39:03 +0300 | [diff] [blame] | 4643 | ret = bus_register(&gpio_bus_type); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 4644 | if (ret < 0) { |
| 4645 | pr_err("gpiolib: could not register GPIO bus type\n"); |
| 4646 | return ret; |
| 4647 | } |
| 4648 | |
| 4649 | ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, "gpiochip"); |
| 4650 | if (ret < 0) { |
| 4651 | pr_err("gpiolib: failed to allocate char dev region\n"); |
| 4652 | bus_unregister(&gpio_bus_type); |
Guenter Roeck | 159f3cd | 2016-03-31 08:11:30 -0700 | [diff] [blame] | 4653 | } else { |
| 4654 | gpiolib_initialized = true; |
| 4655 | gpiochip_setup_devs(); |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 4656 | } |
| 4657 | return ret; |
| 4658 | } |
| 4659 | core_initcall(gpiolib_dev_init); |
| 4660 | |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4661 | #ifdef CONFIG_DEBUG_FS |
| 4662 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 4663 | 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] | 4664 | { |
| 4665 | unsigned i; |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 4666 | struct gpio_chip *chip = gdev->chip; |
| 4667 | unsigned gpio = gdev->base; |
| 4668 | struct gpio_desc *gdesc = &gdev->descs[0]; |
Linus Walleij | 90fd227 | 2018-10-01 23:06:17 +0200 | [diff] [blame] | 4669 | bool is_out; |
| 4670 | bool is_irq; |
| 4671 | bool active_low; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4672 | |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 4673 | for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) { |
Markus Pargmann | ced433e | 2015-08-14 16:11:02 +0200 | [diff] [blame] | 4674 | if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) { |
| 4675 | if (gdesc->name) { |
| 4676 | seq_printf(s, " gpio-%-3d (%-20.20s)\n", |
| 4677 | gpio, gdesc->name); |
| 4678 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4679 | continue; |
Markus Pargmann | ced433e | 2015-08-14 16:11:02 +0200 | [diff] [blame] | 4680 | } |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4681 | |
| 4682 | gpiod_get_direction(gdesc); |
| 4683 | is_out = test_bit(FLAG_IS_OUT, &gdesc->flags); |
| 4684 | is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags); |
Linus Walleij | 90fd227 | 2018-10-01 23:06:17 +0200 | [diff] [blame] | 4685 | active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags); |
| 4686 | seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s", |
Markus Pargmann | ced433e | 2015-08-14 16:11:02 +0200 | [diff] [blame] | 4687 | gpio, gdesc->name ? gdesc->name : "", gdesc->label, |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4688 | is_out ? "out" : "in ", |
Andy Shevchenko | 1c22a25 | 2018-07-12 20:36:42 +0300 | [diff] [blame] | 4689 | chip->get ? (chip->get(chip, i) ? "hi" : "lo") : "? ", |
Linus Walleij | 90fd227 | 2018-10-01 23:06:17 +0200 | [diff] [blame] | 4690 | is_irq ? "IRQ " : "", |
| 4691 | active_low ? "ACTIVE LOW" : ""); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4692 | seq_printf(s, "\n"); |
| 4693 | } |
| 4694 | } |
| 4695 | |
| 4696 | static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos) |
| 4697 | { |
| 4698 | unsigned long flags; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4699 | struct gpio_device *gdev = NULL; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4700 | loff_t index = *pos; |
| 4701 | |
| 4702 | s->private = ""; |
| 4703 | |
| 4704 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4705 | list_for_each_entry(gdev, &gpio_devices, list) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4706 | if (index-- == 0) { |
| 4707 | spin_unlock_irqrestore(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4708 | return gdev; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4709 | } |
| 4710 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 4711 | |
| 4712 | return NULL; |
| 4713 | } |
| 4714 | |
| 4715 | static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos) |
| 4716 | { |
| 4717 | unsigned long flags; |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4718 | struct gpio_device *gdev = v; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4719 | void *ret = NULL; |
| 4720 | |
| 4721 | spin_lock_irqsave(&gpio_lock, flags); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4722 | if (list_is_last(&gdev->list, &gpio_devices)) |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4723 | ret = NULL; |
| 4724 | else |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4725 | ret = list_entry(gdev->list.next, struct gpio_device, list); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4726 | spin_unlock_irqrestore(&gpio_lock, flags); |
| 4727 | |
| 4728 | s->private = "\n"; |
| 4729 | ++*pos; |
| 4730 | |
| 4731 | return ret; |
| 4732 | } |
| 4733 | |
| 4734 | static void gpiolib_seq_stop(struct seq_file *s, void *v) |
| 4735 | { |
| 4736 | } |
| 4737 | |
| 4738 | static int gpiolib_seq_show(struct seq_file *s, void *v) |
| 4739 | { |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4740 | struct gpio_device *gdev = v; |
| 4741 | struct gpio_chip *chip = gdev->chip; |
| 4742 | struct device *parent; |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4743 | |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4744 | if (!chip) { |
| 4745 | seq_printf(s, "%s%s: (dangling chip)", (char *)s->private, |
| 4746 | dev_name(&gdev->dev)); |
| 4747 | return 0; |
| 4748 | } |
| 4749 | |
| 4750 | seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private, |
| 4751 | dev_name(&gdev->dev), |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 4752 | gdev->base, gdev->base + gdev->ngpio - 1); |
Linus Walleij | ff2b135 | 2015-10-20 11:10:38 +0200 | [diff] [blame] | 4753 | parent = chip->parent; |
| 4754 | if (parent) |
| 4755 | seq_printf(s, ", parent: %s/%s", |
| 4756 | parent->bus ? parent->bus->name : "no-bus", |
| 4757 | dev_name(parent)); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4758 | if (chip->label) |
| 4759 | seq_printf(s, ", %s", chip->label); |
| 4760 | if (chip->can_sleep) |
| 4761 | seq_printf(s, ", can sleep"); |
| 4762 | seq_printf(s, ":\n"); |
| 4763 | |
| 4764 | if (chip->dbg_show) |
| 4765 | chip->dbg_show(s, chip); |
| 4766 | else |
Linus Walleij | fdeb8e1 | 2016-02-10 10:57:36 +0100 | [diff] [blame] | 4767 | gpiolib_dbg_show(s, gdev); |
David Brownell | d2876d0 | 2008-02-04 22:28:20 -0800 | [diff] [blame] | 4768 | |
| 4769 | return 0; |
| 4770 | } |
| 4771 | |
| 4772 | static const struct seq_operations gpiolib_seq_ops = { |
| 4773 | .start = gpiolib_seq_start, |
| 4774 | .next = gpiolib_seq_next, |
| 4775 | .stop = gpiolib_seq_stop, |
| 4776 | .show = gpiolib_seq_show, |
| 4777 | }; |
| 4778 | |
| 4779 | static int gpiolib_open(struct inode *inode, struct file *file) |
| 4780 | { |
| 4781 | return seq_open(file, &gpiolib_seq_ops); |
| 4782 | } |
| 4783 | |
| 4784 | static const struct file_operations gpiolib_operations = { |
| 4785 | .owner = THIS_MODULE, |
| 4786 | .open = gpiolib_open, |
| 4787 | .read = seq_read, |
| 4788 | .llseek = seq_lseek, |
| 4789 | .release = seq_release, |
| 4790 | }; |
| 4791 | |
| 4792 | static int __init gpiolib_debugfs_init(void) |
| 4793 | { |
| 4794 | /* /sys/kernel/debug/gpio */ |
| 4795 | (void) debugfs_create_file("gpio", S_IFREG | S_IRUGO, |
| 4796 | NULL, NULL, &gpiolib_operations); |
| 4797 | return 0; |
| 4798 | } |
| 4799 | subsys_initcall(gpiolib_debugfs_init); |
| 4800 | |
| 4801 | #endif /* DEBUG_FS */ |