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