blob: adf55db080d86f1d3c07832972e2a468e53380e3 [file] [log] [blame]
Linus Walleijdae5f0a2018-09-25 09:08:48 +02001// SPDX-License-Identifier: GPL-2.0
Enrico Weigeltc47d9e12020-12-02 14:37:54 +01002
Andy Shevchenko923a6542017-05-25 16:08:38 +03003#include <linux/bitmap.h>
David Brownelld2876d02008-02-04 22:28:20 -08004#include <linux/kernel.h>
5#include <linux/module.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -07006#include <linux/interrupt.h>
David Brownelld2876d02008-02-04 22:28:20 -08007#include <linux/irq.h>
8#include <linux/spinlock.h>
Alexandre Courbot1a989d02013-02-03 01:29:24 +09009#include <linux/list.h>
David Brownelld8f388d82008-07-25 01:46:07 -070010#include <linux/device.h>
11#include <linux/err.h>
12#include <linux/debugfs.h>
13#include <linux/seq_file.h>
14#include <linux/gpio.h>
Daniel Glöcknerff77c352009-09-22 16:46:38 -070015#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Rafael J. Wysocki7b199812013-11-11 22:41:56 +010017#include <linux/acpi.h>
Alexandre Courbot53e7cac2013-11-16 21:44:52 +090018#include <linux/gpio/driver.h>
Linus Walleij0a6d3152014-07-24 20:08:55 +020019#include <linux/gpio/machine.h>
Jonas Gorskic771c2f2015-10-11 17:34:15 +020020#include <linux/pinctrl/consumer.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020021#include <linux/fs.h>
Linus Walleij8b92e172016-05-27 14:24:04 +020022#include <linux/compat.h>
Lars-Peter Clausen953b9562016-10-24 13:59:15 +020023#include <linux/file.h>
Linus Walleij3c702e92015-10-21 15:29:53 +020024#include <uapi/linux/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080025
Mika Westerberg664e3e52014-01-08 12:40:54 +020026#include "gpiolib.h"
Linus Walleijf626d6d2019-07-17 09:10:01 +020027#include "gpiolib-of.h"
Andy Shevchenko77cb9072019-07-30 13:43:36 +030028#include "gpiolib-acpi.h"
Kent Gibson925ca362020-06-16 17:36:15 +080029#include "gpiolib-cdev.h"
Kent Gibsonef087d82020-07-08 12:15:44 +080030#include "gpiolib-sysfs.h"
Mika Westerberg664e3e52014-01-08 12:40:54 +020031
Uwe Kleine-König3f397c212011-05-20 00:40:19 -060032#define CREATE_TRACE_POINTS
33#include <trace/events/gpio.h>
David Brownelld2876d02008-02-04 22:28:20 -080034
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070035/* Implementation infrastructure for GPIO interfaces.
David Brownelld2876d02008-02-04 22:28:20 -080036 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070037 * The GPIO programming interface allows for inlining speed-critical
38 * get/set operations for common cases, so that access to SOC-integrated
39 * GPIOs can sometimes cost only an instruction or two per bit.
David Brownelld2876d02008-02-04 22:28:20 -080040 */
41
42
43/* When debugging, extend minimal trust to callers and platform code.
44 * Also emit diagnostic messages that may help initial bringup, when
45 * board setup or driver bugs are most common.
46 *
47 * Otherwise, minimize overhead in what may be bitbanging codepaths.
48 */
49#ifdef DEBUG
50#define extra_checks 1
51#else
52#define extra_checks 0
53#endif
54
Linus Walleijff2b1352015-10-20 11:10:38 +020055/* Device and char device-related information */
56static DEFINE_IDA(gpio_ida);
Linus Walleij3c702e92015-10-21 15:29:53 +020057static dev_t gpio_devt;
58#define GPIO_DEV_MAX 256 /* 256 GPIO chip devices supported */
Saravana Kannanced2af42021-02-04 18:07:30 -080059static int gpio_bus_match(struct device *dev, struct device_driver *drv);
Linus Walleij3c702e92015-10-21 15:29:53 +020060static struct bus_type gpio_bus_type = {
61 .name = "gpio",
Saravana Kannanced2af42021-02-04 18:07:30 -080062 .match = gpio_bus_match,
Linus Walleij3c702e92015-10-21 15:29:53 +020063};
Linus Walleijff2b1352015-10-20 11:10:38 +020064
Laura Abbott30277432018-05-21 10:57:07 -070065/*
66 * Number of GPIOs to use for the fast path in set array
67 */
68#define FASTPATH_NGPIO CONFIG_GPIOLIB_FASTPATH_LIMIT
69
David Brownelld2876d02008-02-04 22:28:20 -080070/* 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 Courbot0eb4c6c2014-07-01 14:45:15 +090074DEFINE_SPINLOCK(gpio_lock);
David Brownelld2876d02008-02-04 22:28:20 -080075
Alexandre Courbotbae48da2013-10-17 10:21:38 -070076static DEFINE_MUTEX(gpio_lookup_lock);
77static LIST_HEAD(gpio_lookup_list);
Linus Walleijff2b1352015-10-20 11:10:38 +020078LIST_HEAD(gpio_devices);
Johan Hovold6d867502015-05-04 17:23:25 +020079
Bartosz Golaszewskia411e812018-04-10 22:30:28 +020080static DEFINE_MUTEX(gpio_machine_hogs_mutex);
81static LIST_HEAD(gpio_machine_hogs);
82
Linus Walleija0b66a72020-03-29 16:04:05 +020083static void gpiochip_free_hogs(struct gpio_chip *gc);
84static int gpiochip_add_irqchip(struct gpio_chip *gc,
Andrew Lunn39c3fd52017-12-02 18:11:04 +010085 struct lock_class_key *lock_key,
86 struct lock_class_key *request_key);
Linus Walleija0b66a72020-03-29 16:04:05 +020087static void gpiochip_irqchip_remove(struct gpio_chip *gc);
88static int gpiochip_irqchip_init_hw(struct gpio_chip *gc);
89static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc);
90static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc);
Johan Hovold6d867502015-05-04 17:23:25 +020091
Guenter Roeck159f3cd2016-03-31 08:11:30 -070092static bool gpiolib_initialized;
Johan Hovold6d867502015-05-04 17:23:25 +020093
David Brownelld2876d02008-02-04 22:28:20 -080094static inline void desc_set_label(struct gpio_desc *d, const char *label)
95{
David Brownelld2876d02008-02-04 22:28:20 -080096 d->label = label;
David Brownelld2876d02008-02-04 22:28:20 -080097}
98
Alexandre Courbot372e7222013-02-03 01:29:29 +090099/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200100 * gpio_to_desc - Convert a GPIO number to its descriptor
101 * @gpio: global GPIO number
102 *
103 * Returns:
104 * The GPIO descriptor associated with the given GPIO, or %NULL if no GPIO
105 * with the given number exists in the system.
Alexandre Courbot372e7222013-02-03 01:29:29 +0900106 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700107struct gpio_desc *gpio_to_desc(unsigned gpio)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900108{
Linus Walleijff2b1352015-10-20 11:10:38 +0200109 struct gpio_device *gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900110 unsigned long flags;
111
112 spin_lock_irqsave(&gpio_lock, flags);
113
Linus Walleijff2b1352015-10-20 11:10:38 +0200114 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100115 if (gdev->base <= gpio &&
116 gdev->base + gdev->ngpio > gpio) {
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900117 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100118 return &gdev->descs[gpio - gdev->base];
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900119 }
120 }
121
122 spin_unlock_irqrestore(&gpio_lock, flags);
123
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +0900124 if (!gpio_is_valid(gpio))
Enrico Weigeltc47d9e12020-12-02 14:37:54 +0100125 pr_warn("invalid GPIO %d\n", gpio);
Alexandre Courbot0e9a5ed2014-12-02 23:15:05 +0900126
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900127 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900128}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700129EXPORT_SYMBOL_GPL(gpio_to_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900130
131/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200132 * gpiochip_get_desc - get the GPIO descriptor corresponding to the given
133 * hardware number for this chip
Linus Walleija0b66a72020-03-29 16:04:05 +0200134 * @gc: GPIO chip
Thierry Reding950d55f52017-07-24 16:57:22 +0200135 * @hwnum: hardware number of the GPIO for this chip
136 *
137 * Returns:
Mauro Carvalho Chehab35c6cfb2020-03-17 15:54:21 +0100138 * A pointer to the GPIO descriptor or ``ERR_PTR(-EINVAL)`` if no GPIO exists
Thierry Reding950d55f52017-07-24 16:57:22 +0200139 * in the given chip for the specified hardware number.
Linus Walleijd468bf92013-09-24 11:54:38 +0200140 */
Linus Walleija0b66a72020-03-29 16:04:05 +0200141struct gpio_desc *gpiochip_get_desc(struct gpio_chip *gc,
Bartosz Golaszewski06863622019-12-24 13:06:59 +0100142 unsigned int hwnum)
Linus Walleijd468bf92013-09-24 11:54:38 +0200143{
Linus Walleija0b66a72020-03-29 16:04:05 +0200144 struct gpio_device *gdev = gc->gpiodev;
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100145
146 if (hwnum >= gdev->ngpio)
Alexandre Courbotb7d0a282013-12-03 12:31:11 +0900147 return ERR_PTR(-EINVAL);
Linus Walleijd468bf92013-09-24 11:54:38 +0200148
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100149 return &gdev->descs[hwnum];
Linus Walleijd468bf92013-09-24 11:54:38 +0200150}
Marco Felsch97795422020-02-25 10:31:02 +0100151EXPORT_SYMBOL_GPL(gpiochip_get_desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900152
153/**
Thierry Reding950d55f52017-07-24 16:57:22 +0200154 * desc_to_gpio - convert a GPIO descriptor to the integer namespace
155 * @desc: GPIO descriptor
156 *
Alexandre Courbot372e7222013-02-03 01:29:29 +0900157 * This should disappear in the future but is needed since we still
Thierry Reding950d55f52017-07-24 16:57:22 +0200158 * use GPIO numbers for error messages and sysfs nodes.
159 *
160 * Returns:
161 * The global GPIO number for the GPIO specified by its descriptor.
Alexandre Courbot372e7222013-02-03 01:29:29 +0900162 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700163int desc_to_gpio(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900164{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100165 return desc->gdev->base + (desc - &desc->gdev->descs[0]);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900166}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700167EXPORT_SYMBOL_GPL(desc_to_gpio);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900168
169
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700170/**
171 * gpiod_to_chip - Return the GPIO chip to which a GPIO descriptor belongs
172 * @desc: descriptor to return the chip of
173 */
174struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +0900175{
Vladimir Zapolskiydd3b9a42017-12-21 18:37:30 +0200176 if (!desc || !desc->gdev)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100177 return NULL;
178 return desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +0900179}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700180EXPORT_SYMBOL_GPL(gpiod_to_chip);
David Brownelld2876d02008-02-04 22:28:20 -0800181
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700182/* dynamic allocation of GPIOs, e.g. on a hotplugged device */
183static int gpiochip_find_base(int ngpio)
184{
Linus Walleijff2b1352015-10-20 11:10:38 +0200185 struct gpio_device *gdev;
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900186 int base = ARCH_NR_GPIOS - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700187
Linus Walleijff2b1352015-10-20 11:10:38 +0200188 list_for_each_entry_reverse(gdev, &gpio_devices, list) {
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900189 /* found a free space? */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100190 if (gdev->base + gdev->ngpio <= base)
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900191 break;
192 else
193 /* nope, check the space right before the chip */
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100194 base = gdev->base - ngpio;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700195 }
196
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900197 if (gpio_is_valid(base)) {
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700198 pr_debug("%s: found new base at %d\n", __func__, base);
Alexandre Courbot83cabe32013-02-03 01:29:28 +0900199 return base;
200 } else {
201 pr_err("%s: cannot find free range\n", __func__);
202 return -ENOSPC;
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700203 }
Anton Vorontsov169b6a72008-04-28 02:14:47 -0700204}
205
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700206/**
207 * gpiod_get_direction - return the current direction of a GPIO
208 * @desc: GPIO to get the direction of
209 *
Wolfram Sang94fc7302018-01-09 12:35:53 +0100210 * Returns 0 for output, 1 for input, or an error code in case of error.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700211 *
212 * This function may sleep if gpiod_cansleep() is true.
213 */
Alexandre Courbot8e53b0f2014-11-25 17:16:31 +0900214int gpiod_get_direction(struct gpio_desc *desc)
Mathias Nyman80b0a602012-10-24 17:25:27 +0300215{
Linus Walleija0b66a72020-03-29 16:04:05 +0200216 struct gpio_chip *gc;
Andy Shevchenko13daf482020-11-09 22:53:16 +0200217 unsigned int offset;
Linus Walleijd377f562019-07-16 11:11:45 +0200218 int ret;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300219
Linus Walleija0b66a72020-03-29 16:04:05 +0200220 gc = gpiod_to_chip(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +0900221 offset = gpio_chip_hwgpio(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300222
Russell King256efae2019-12-07 16:20:18 +0000223 /*
224 * Open drain emulation using input mode may incorrectly report
225 * input here, fix that up.
226 */
227 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) &&
228 test_bit(FLAG_IS_OUT, &desc->flags))
229 return 0;
230
Linus Walleija0b66a72020-03-29 16:04:05 +0200231 if (!gc->get_direction)
Wolfram Sangd0121b82018-07-11 18:33:19 +0200232 return -ENOTSUPP;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300233
Linus Walleija0b66a72020-03-29 16:04:05 +0200234 ret = gc->get_direction(gc, offset);
Andy Shevchenko4fc5bfe2019-12-04 21:42:29 +0200235 if (ret < 0)
236 return ret;
237
238 /* GPIOF_DIR_IN or other positive, otherwise GPIOF_DIR_OUT */
239 if (ret > 0)
Linus Walleijd377f562019-07-16 11:11:45 +0200240 ret = 1;
Andy Shevchenko4fc5bfe2019-12-04 21:42:29 +0200241
242 assign_bit(FLAG_IS_OUT, &desc->flags, !ret);
243
Linus Walleijd377f562019-07-16 11:11:45 +0200244 return ret;
Mathias Nyman80b0a602012-10-24 17:25:27 +0300245}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700246EXPORT_SYMBOL_GPL(gpiod_get_direction);
Mathias Nyman80b0a602012-10-24 17:25:27 +0300247
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900248/*
249 * Add a new chip to the global chips list, keeping the list of chips sorted
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800250 * by range(means [base, base + ngpio - 1]) order.
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900251 *
252 * Return -EBUSY if the new chip overlaps with some other chip's integer
253 * space.
254 */
Linus Walleijff2b1352015-10-20 11:10:38 +0200255static int gpiodev_add_to_list(struct gpio_device *gdev)
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900256{
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800257 struct gpio_device *prev, *next;
Linus Walleijff2b1352015-10-20 11:10:38 +0200258
259 if (list_empty(&gpio_devices)) {
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800260 /* initial entry in list */
Linus Walleijff2b1352015-10-20 11:10:38 +0200261 list_add_tail(&gdev->list, &gpio_devices);
Sudip Mukherjeee28ecca2015-12-27 19:06:50 +0530262 return 0;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900263 }
264
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800265 next = list_entry(gpio_devices.next, struct gpio_device, list);
266 if (gdev->base + gdev->ngpio <= next->base) {
267 /* add before first entry */
268 list_add(&gdev->list, &gpio_devices);
Julien Grossholtz96098df2016-01-07 16:46:45 -0500269 return 0;
270 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900271
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800272 prev = list_entry(gpio_devices.prev, struct gpio_device, list);
273 if (prev->base + prev->ngpio <= gdev->base) {
274 /* add behind last entry */
275 list_add_tail(&gdev->list, &gpio_devices);
276 return 0;
277 }
Bamvor Jian Zhangef7c7552015-11-16 13:02:46 +0800278
Bamvor Jian Zhanga961f9b2016-02-26 22:37:14 +0800279 list_for_each_entry_safe(prev, next, &gpio_devices, list) {
280 /* at the end of the list */
281 if (&next->list == &gpio_devices)
282 break;
283
284 /* add between prev and next */
285 if (prev->base + prev->ngpio <= gdev->base
286 && gdev->base + gdev->ngpio <= next->base) {
287 list_add(&gdev->list, &prev->list);
288 return 0;
289 }
290 }
291
292 dev_err(&gdev->dev, "GPIO integer space overlap, cannot add chip\n");
293 return -EBUSY;
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900294}
295
Thierry Reding950d55f52017-07-24 16:57:22 +0200296/*
Linus Walleijf881bab02015-09-23 16:20:43 -0700297 * Convert a GPIO name to its descriptor
Geert Uytterhoeven582838e2020-05-11 12:18:28 +0200298 * Note that there is no guarantee that GPIO names are globally unique!
299 * Hence this function will return, if it exists, a reference to the first GPIO
300 * line found that matches the given name.
Linus Walleijf881bab02015-09-23 16:20:43 -0700301 */
302static struct gpio_desc *gpio_name_to_desc(const char * const name)
303{
Linus Walleijff2b1352015-10-20 11:10:38 +0200304 struct gpio_device *gdev;
Linus Walleijf881bab02015-09-23 16:20:43 -0700305 unsigned long flags;
306
Michał Mirosławee203bb2020-03-15 17:34:34 +0100307 if (!name)
308 return NULL;
309
Linus Walleijf881bab02015-09-23 16:20:43 -0700310 spin_lock_irqsave(&gpio_lock, flags);
311
Linus Walleijff2b1352015-10-20 11:10:38 +0200312 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700313 int i;
314
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100315 for (i = 0; i != gdev->ngpio; ++i) {
316 struct gpio_desc *desc = &gdev->descs[i];
Linus Walleijf881bab02015-09-23 16:20:43 -0700317
Michał Mirosławee203bb2020-03-15 17:34:34 +0100318 if (!desc->name)
Linus Walleijf881bab02015-09-23 16:20:43 -0700319 continue;
320
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100321 if (!strcmp(desc->name, name)) {
Linus Walleijf881bab02015-09-23 16:20:43 -0700322 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100323 return desc;
Linus Walleijf881bab02015-09-23 16:20:43 -0700324 }
325 }
326 }
327
328 spin_unlock_irqrestore(&gpio_lock, flags);
329
330 return NULL;
331}
332
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200333/*
Geert Uytterhoeven582838e2020-05-11 12:18:28 +0200334 * Take the names from gc->names and assign them to their GPIO descriptors.
335 * Warn if a name is already used for a GPIO line on a different GPIO chip.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200336 *
Geert Uytterhoeven582838e2020-05-11 12:18:28 +0200337 * Note that:
338 * 1. Non-unique names are still accepted,
339 * 2. Name collisions within the same GPIO chip are not reported.
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200340 */
341static int gpiochip_set_desc_names(struct gpio_chip *gc)
342{
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100343 struct gpio_device *gdev = gc->gpiodev;
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200344 int i;
345
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200346 /* First check all names if they are unique */
347 for (i = 0; i != gc->ngpio; ++i) {
348 struct gpio_desc *gpio;
349
350 gpio = gpio_name_to_desc(gc->names[i]);
Linus Walleijf881bab02015-09-23 16:20:43 -0700351 if (gpio)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100352 dev_warn(&gdev->dev,
Linus Walleij34ffd852015-10-20 11:31:54 +0200353 "Detected name collision for GPIO name '%s'\n",
Linus Walleijf881bab02015-09-23 16:20:43 -0700354 gc->names[i]);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200355 }
356
357 /* Then add all names to the GPIO descriptors */
358 for (i = 0; i != gc->ngpio; ++i)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100359 gdev->descs[i].name = gc->names[i];
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200360
361 return 0;
362}
363
Bartosz Golaszewski32fc5aa2020-09-09 10:54:26 +0200364/*
365 * devprop_gpiochip_set_names - Set GPIO line names using device properties
366 * @chip: GPIO chip whose lines should be named, if possible
367 *
368 * Looks for device property "gpio-line-names" and if it exists assigns
369 * GPIO line names for the chip. The memory allocated for the assigned
370 * names belong to the underlying software node and should not be released
371 * by the caller.
372 */
373static int devprop_gpiochip_set_names(struct gpio_chip *chip)
374{
375 struct gpio_device *gdev = chip->gpiodev;
376 struct device *dev = chip->parent;
377 const char **names;
378 int ret, i;
379 int count;
380
Bartosz Golaszewski587823d2020-09-17 09:48:57 +0200381 /* GPIO chip may not have a parent device whose properties we inspect. */
382 if (!dev)
383 return 0;
384
Bartosz Golaszewski32fc5aa2020-09-09 10:54:26 +0200385 count = device_property_string_array_count(dev, "gpio-line-names");
386 if (count < 0)
387 return 0;
388
389 if (count > gdev->ngpio) {
390 dev_warn(&gdev->dev, "gpio-line-names is length %d but should be at most length %d",
391 count, gdev->ngpio);
392 count = gdev->ngpio;
393 }
394
395 names = kcalloc(count, sizeof(*names), GFP_KERNEL);
396 if (!names)
397 return -ENOMEM;
398
399 ret = device_property_read_string_array(dev, "gpio-line-names",
400 names, count);
401 if (ret < 0) {
402 dev_warn(&gdev->dev, "failed to read GPIO line names\n");
403 kfree(names);
404 return ret;
405 }
406
407 for (i = 0; i < count; i++)
408 gdev->descs[i].name = names[i];
409
410 kfree(names);
411
412 return 0;
413}
414
Linus Walleija0b66a72020-03-29 16:04:05 +0200415static unsigned long *gpiochip_allocate_mask(struct gpio_chip *gc)
Stephen Boyde4371f6e2018-03-23 09:34:50 -0700416{
417 unsigned long *p;
418
Linus Walleija0b66a72020-03-29 16:04:05 +0200419 p = bitmap_alloc(gc->ngpio, GFP_KERNEL);
Stephen Boyde4371f6e2018-03-23 09:34:50 -0700420 if (!p)
421 return NULL;
422
423 /* Assume by default all GPIOs are valid */
Linus Walleija0b66a72020-03-29 16:04:05 +0200424 bitmap_fill(p, gc->ngpio);
Stephen Boyde4371f6e2018-03-23 09:34:50 -0700425
426 return p;
427}
428
Linus Walleijf626d6d2019-07-17 09:10:01 +0200429static int gpiochip_alloc_valid_mask(struct gpio_chip *gc)
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700430{
Linus Walleijeb1e8bd2019-08-19 11:30:58 +0200431 if (!(of_gpio_need_valid_mask(gc) || gc->init_valid_mask))
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700432 return 0;
433
Linus Walleijf626d6d2019-07-17 09:10:01 +0200434 gc->valid_mask = gpiochip_allocate_mask(gc);
435 if (!gc->valid_mask)
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700436 return -ENOMEM;
437
438 return 0;
439}
440
Linus Walleijc9fc5af2019-08-19 10:49:04 +0200441static int gpiochip_init_valid_mask(struct gpio_chip *gc)
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +0200442{
Linus Walleijc9fc5af2019-08-19 10:49:04 +0200443 if (gc->init_valid_mask)
444 return gc->init_valid_mask(gc,
445 gc->valid_mask,
446 gc->ngpio);
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +0200447
448 return 0;
449}
450
Linus Walleija0b66a72020-03-29 16:04:05 +0200451static void gpiochip_free_valid_mask(struct gpio_chip *gc)
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700452{
Linus Walleija0b66a72020-03-29 16:04:05 +0200453 bitmap_free(gc->valid_mask);
454 gc->valid_mask = NULL;
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700455}
456
Andy Shevchenkob056ca12019-11-04 18:09:39 +0200457static int gpiochip_add_pin_ranges(struct gpio_chip *gc)
458{
459 if (gc->add_pin_ranges)
460 return gc->add_pin_ranges(gc);
461
462 return 0;
463}
464
Linus Walleija0b66a72020-03-29 16:04:05 +0200465bool gpiochip_line_is_valid(const struct gpio_chip *gc,
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700466 unsigned int offset)
467{
468 /* No mask means all valid */
Linus Walleija0b66a72020-03-29 16:04:05 +0200469 if (likely(!gc->valid_mask))
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700470 return true;
Linus Walleija0b66a72020-03-29 16:04:05 +0200471 return test_bit(offset, gc->valid_mask);
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700472}
473EXPORT_SYMBOL_GPL(gpiochip_line_is_valid);
474
Linus Walleijff2b1352015-10-20 11:10:38 +0200475static void gpiodevice_release(struct device *dev)
476{
477 struct gpio_device *gdev = dev_get_drvdata(dev);
478
479 list_del(&gdev->list);
Bartosz Golaszewski8d4a85b2020-09-08 15:12:25 +0200480 ida_free(&gpio_ida, gdev->id);
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +0100481 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700482 kfree(gdev->descs);
Linus Walleij9efd9e62016-02-09 14:27:42 +0100483 kfree(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +0200484}
485
Kent Gibson1f5eb8b2020-11-05 18:40:49 +0800486#ifdef CONFIG_GPIO_CDEV
487#define gcdev_register(gdev, devt) gpiolib_cdev_register((gdev), (devt))
488#define gcdev_unregister(gdev) gpiolib_cdev_unregister((gdev))
489#else
490/*
491 * gpiolib_cdev_register() indirectly calls device_add(), which is still
492 * required even when cdev is not selected.
493 */
494#define gcdev_register(gdev, devt) device_add(&(gdev)->dev)
495#define gcdev_unregister(gdev) device_del(&(gdev)->dev)
496#endif
497
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700498static int gpiochip_setup_dev(struct gpio_device *gdev)
499{
Linus Walleijd377f562019-07-16 11:11:45 +0200500 int ret;
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700501
Kent Gibson1f5eb8b2020-11-05 18:40:49 +0800502 ret = gcdev_register(gdev, gpio_devt);
Linus Walleijd377f562019-07-16 11:11:45 +0200503 if (ret)
504 return ret;
Logan Gunthorpe111379d2017-03-17 12:48:12 -0600505
Linus Walleijd377f562019-07-16 11:11:45 +0200506 ret = gpiochip_sysfs_register(gdev);
507 if (ret)
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700508 goto err_remove_device;
509
510 /* From this point, the .release() function cleans up gpio_device */
511 gdev->dev.release = gpiodevice_release;
Geert Uytterhoeven262b9012020-04-24 16:14:32 +0200512 dev_dbg(&gdev->dev, "registered GPIOs %d to %d on %s\n", gdev->base,
513 gdev->base + gdev->ngpio - 1, gdev->chip->label ? : "generic");
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700514
515 return 0;
516
517err_remove_device:
Kent Gibson1f5eb8b2020-11-05 18:40:49 +0800518 gcdev_unregister(gdev);
Linus Walleijd377f562019-07-16 11:11:45 +0200519 return ret;
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700520}
521
Linus Walleija0b66a72020-03-29 16:04:05 +0200522static void gpiochip_machine_hog(struct gpio_chip *gc, struct gpiod_hog *hog)
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200523{
524 struct gpio_desc *desc;
525 int rv;
526
Linus Walleija0b66a72020-03-29 16:04:05 +0200527 desc = gpiochip_get_desc(gc, hog->chip_hwnum);
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200528 if (IS_ERR(desc)) {
Geert Uytterhoeven262b9012020-04-24 16:14:32 +0200529 chip_err(gc, "%s: unable to get GPIO desc: %ld\n", __func__,
530 PTR_ERR(desc));
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200531 return;
532 }
533
Dan Carpenterba3efdf2018-05-01 10:36:39 +0300534 if (test_bit(FLAG_IS_HOGGED, &desc->flags))
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200535 return;
536
537 rv = gpiod_hog(desc, hog->line_name, hog->lflags, hog->dflags);
538 if (rv)
Geert Uytterhoeven262b9012020-04-24 16:14:32 +0200539 gpiod_err(desc, "%s: unable to hog GPIO line (%s:%u): %d\n",
540 __func__, gc->label, hog->chip_hwnum, rv);
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200541}
542
Linus Walleija0b66a72020-03-29 16:04:05 +0200543static void machine_gpiochip_add(struct gpio_chip *gc)
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200544{
545 struct gpiod_hog *hog;
546
547 mutex_lock(&gpio_machine_hogs_mutex);
548
549 list_for_each_entry(hog, &gpio_machine_hogs, list) {
Linus Walleija0b66a72020-03-29 16:04:05 +0200550 if (!strcmp(gc->label, hog->chip_label))
551 gpiochip_machine_hog(gc, hog);
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200552 }
553
554 mutex_unlock(&gpio_machine_hogs_mutex);
555}
556
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700557static void gpiochip_setup_devs(void)
558{
559 struct gpio_device *gdev;
Linus Walleijd377f562019-07-16 11:11:45 +0200560 int ret;
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700561
562 list_for_each_entry(gdev, &gpio_devices, list) {
Linus Walleijd377f562019-07-16 11:11:45 +0200563 ret = gpiochip_setup_dev(gdev);
564 if (ret)
Geert Uytterhoeven262b9012020-04-24 16:14:32 +0200565 dev_err(&gdev->dev,
566 "Failed to initialize gpio device (%d)\n", ret);
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700567 }
568}
569
Linus Walleija0b66a72020-03-29 16:04:05 +0200570int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
Andrew Lunn39c3fd52017-12-02 18:11:04 +0100571 struct lock_class_key *lock_key,
572 struct lock_class_key *request_key)
David Brownelld2876d02008-02-04 22:28:20 -0800573{
574 unsigned long flags;
Linus Walleijd377f562019-07-16 11:11:45 +0200575 int ret = 0;
Linus Walleijff2b1352015-10-20 11:10:38 +0200576 unsigned i;
Linus Walleija0b66a72020-03-29 16:04:05 +0200577 int base = gc->base;
Linus Walleijff2b1352015-10-20 11:10:38 +0200578 struct gpio_device *gdev;
David Brownelld2876d02008-02-04 22:28:20 -0800579
Linus Walleijff2b1352015-10-20 11:10:38 +0200580 /*
581 * First: allocate and populate the internal stat container, and
582 * set up the struct device.
583 */
Josh Cartwright969f07b2016-02-17 16:44:15 -0600584 gdev = kzalloc(sizeof(*gdev), GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +0200585 if (!gdev)
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900586 return -ENOMEM;
Linus Walleij3c702e92015-10-21 15:29:53 +0200587 gdev->dev.bus = &gpio_bus_type;
Linus Walleija0b66a72020-03-29 16:04:05 +0200588 gdev->chip = gc;
589 gc->gpiodev = gdev;
590 if (gc->parent) {
591 gdev->dev.parent = gc->parent;
592 gdev->dev.of_node = gc->parent->of_node;
Thierry Redingacc6e332016-07-05 14:11:14 +0200593 }
594
Saravana Kannan47312102021-01-22 11:35:59 -0800595 of_gpio_dev_init(gc, gdev);
Thierry Redingacc6e332016-07-05 14:11:14 +0200596
Bartosz Golaszewski8d4a85b2020-09-08 15:12:25 +0200597 gdev->id = ida_alloc(&gpio_ida, GFP_KERNEL);
Linus Walleijff2b1352015-10-20 11:10:38 +0200598 if (gdev->id < 0) {
Linus Walleijd377f562019-07-16 11:11:45 +0200599 ret = gdev->id;
Linus Walleijff2b1352015-10-20 11:10:38 +0200600 goto err_free_gdev;
601 }
Quanyang Wangc351bb62021-01-29 16:19:17 +0800602
603 ret = dev_set_name(&gdev->dev, GPIOCHIP_NAME "%d", gdev->id);
604 if (ret)
605 goto err_free_ida;
606
Linus Walleijff2b1352015-10-20 11:10:38 +0200607 device_initialize(&gdev->dev);
608 dev_set_drvdata(&gdev->dev, gdev);
Linus Walleija0b66a72020-03-29 16:04:05 +0200609 if (gc->parent && gc->parent->driver)
610 gdev->owner = gc->parent->driver->owner;
611 else if (gc->owner)
Linus Walleijff2b1352015-10-20 11:10:38 +0200612 /* TODO: remove chip->owner */
Linus Walleija0b66a72020-03-29 16:04:05 +0200613 gdev->owner = gc->owner;
Linus Walleijff2b1352015-10-20 11:10:38 +0200614 else
615 gdev->owner = THIS_MODULE;
David Brownelld2876d02008-02-04 22:28:20 -0800616
Linus Walleija0b66a72020-03-29 16:04:05 +0200617 gdev->descs = kcalloc(gc->ngpio, sizeof(gdev->descs[0]), GFP_KERNEL);
Linus Walleij1c3cdb12016-02-09 13:51:59 +0100618 if (!gdev->descs) {
Linus Walleijd377f562019-07-16 11:11:45 +0200619 ret = -ENOMEM;
Quanyang Wangc351bb62021-01-29 16:19:17 +0800620 goto err_free_dev_name;
Linus Walleijff2b1352015-10-20 11:10:38 +0200621 }
622
Linus Walleija0b66a72020-03-29 16:04:05 +0200623 if (gc->ngpio == 0) {
624 chip_err(gc, "tried to insert a GPIO chip with zero lines\n");
Linus Walleijd377f562019-07-16 11:11:45 +0200625 ret = -EINVAL;
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700626 goto err_free_descs;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +0800627 }
Linus Walleijdf4878e2016-02-12 14:48:23 +0100628
Linus Walleija0b66a72020-03-29 16:04:05 +0200629 if (gc->ngpio > FASTPATH_NGPIO)
630 chip_warn(gc, "line cnt %u is greater than fast path cnt %u\n",
631 gc->ngpio, FASTPATH_NGPIO);
Laura Abbott30277432018-05-21 10:57:07 -0700632
Linus Walleija0b66a72020-03-29 16:04:05 +0200633 gdev->label = kstrdup_const(gc->label ?: "unknown", GFP_KERNEL);
Linus Walleijdf4878e2016-02-12 14:48:23 +0100634 if (!gdev->label) {
Linus Walleijd377f562019-07-16 11:11:45 +0200635 ret = -ENOMEM;
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700636 goto err_free_descs;
Linus Walleijdf4878e2016-02-12 14:48:23 +0100637 }
638
Linus Walleija0b66a72020-03-29 16:04:05 +0200639 gdev->ngpio = gc->ngpio;
Linus Walleij43c54ec2016-02-11 11:37:48 +0100640 gdev->data = data;
Bamvor Jian Zhang5ed41cc2015-11-16 13:02:47 +0800641
David Brownelld2876d02008-02-04 22:28:20 -0800642 spin_lock_irqsave(&gpio_lock, flags);
643
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100644 /*
645 * TODO: this allocates a Linux GPIO number base in the global
646 * GPIO numberspace for this chip. In the long run we want to
647 * get *rid* of this numberspace and use only descriptors, but
648 * it may be a pipe dream. It will not happen before we get rid
649 * of the sysfs interface anyways.
650 */
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700651 if (base < 0) {
Linus Walleija0b66a72020-03-29 16:04:05 +0200652 base = gpiochip_find_base(gc->ngpio);
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700653 if (base < 0) {
Linus Walleijd377f562019-07-16 11:11:45 +0200654 ret = base;
Johan Hovold225fce82015-01-12 17:12:25 +0100655 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700656 goto err_free_label;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700657 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100658 /*
659 * TODO: it should not be necessary to reflect the assigned
660 * base outside of the GPIO subsystem. Go over drivers and
661 * see if anyone makes use of this, else drop this and assign
662 * a poison instead.
663 */
Linus Walleija0b66a72020-03-29 16:04:05 +0200664 gc->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700665 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100666 gdev->base = base;
Anton Vorontsov8d0aab22008-04-28 02:14:46 -0700667
Linus Walleijd377f562019-07-16 11:11:45 +0200668 ret = gpiodev_add_to_list(gdev);
669 if (ret) {
Johan Hovold05aa5202015-01-12 17:12:26 +0100670 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700671 goto err_free_label;
Johan Hovold05aa5202015-01-12 17:12:26 +0100672 }
Alexandre Courbot1a989d02013-02-03 01:29:24 +0900673
Linus Walleija0b66a72020-03-29 16:04:05 +0200674 for (i = 0; i < gc->ngpio; i++)
Ricardo Ribalda Delgado767cd172018-10-12 08:11:36 +0200675 gdev->descs[i].gdev = gdev;
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900676
Dan Callaghan207270d2020-01-21 10:12:17 +1000677 spin_unlock_irqrestore(&gpio_lock, flags);
678
Kent Gibson6accc372020-07-08 12:15:51 +0800679 BLOCKING_INIT_NOTIFIER_HEAD(&gdev->notifier);
Bartosz Golaszewski51c10642019-11-22 15:19:21 +0100680
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530681#ifdef CONFIG_PINCTRL
Linus Walleij20ec3e32016-02-11 11:03:06 +0100682 INIT_LIST_HEAD(&gdev->pin_ranges);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530683#endif
684
Bartosz Golaszewski7cba1a42020-09-09 10:54:25 +0200685 if (gc->names)
686 ret = gpiochip_set_desc_names(gc);
687 else
688 ret = devprop_gpiochip_set_names(gc);
Linus Walleijd377f562019-07-16 11:11:45 +0200689 if (ret)
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200690 goto err_remove_from_list;
691
Linus Walleija0b66a72020-03-29 16:04:05 +0200692 ret = gpiochip_alloc_valid_mask(gc);
Linus Walleijd377f562019-07-16 11:11:45 +0200693 if (ret)
Mika Westerberg79b804c2016-09-20 15:15:21 +0300694 goto err_remove_from_list;
695
Linus Walleija0b66a72020-03-29 16:04:05 +0200696 ret = of_gpiochip_add(gc);
Linus Walleijd377f562019-07-16 11:11:45 +0200697 if (ret)
Linus Walleij48057ed2019-08-20 10:05:27 +0200698 goto err_free_gpiochip_mask;
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200699
Linus Walleija0b66a72020-03-29 16:04:05 +0200700 ret = gpiochip_init_valid_mask(gc);
Linus Walleijd377f562019-07-16 11:11:45 +0200701 if (ret)
Geert Uytterhoeven35779892019-04-24 15:59:33 +0200702 goto err_remove_of_chip;
Ricardo Ribalda Delgadof8ec92a2018-10-05 08:52:58 +0200703
Linus Walleija0b66a72020-03-29 16:04:05 +0200704 for (i = 0; i < gc->ngpio; i++) {
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +0200705 struct gpio_desc *desc = &gdev->descs[i];
706
Linus Walleija0b66a72020-03-29 16:04:05 +0200707 if (gc->get_direction && gpiochip_line_is_valid(gc, i)) {
Andy Shevchenko4fc5bfe2019-12-04 21:42:29 +0200708 assign_bit(FLAG_IS_OUT,
Linus Walleija0b66a72020-03-29 16:04:05 +0200709 &desc->flags, !gc->get_direction(gc, i));
Chris Packhamd95da992019-07-08 08:35:58 +1200710 } else {
Andy Shevchenko4fc5bfe2019-12-04 21:42:29 +0200711 assign_bit(FLAG_IS_OUT,
Linus Walleija0b66a72020-03-29 16:04:05 +0200712 &desc->flags, !gc->direction_input);
Chris Packhamd95da992019-07-08 08:35:58 +1200713 }
Ricardo Ribalda Delgado3edfb7b2018-10-05 08:53:00 +0200714 }
715
Linus Walleija0b66a72020-03-29 16:04:05 +0200716 ret = gpiochip_add_pin_ranges(gc);
Andy Shevchenkob056ca12019-11-04 18:09:39 +0200717 if (ret)
718 goto err_remove_of_chip;
719
Linus Walleija0b66a72020-03-29 16:04:05 +0200720 acpi_gpiochip_add(gc);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600721
Linus Walleija0b66a72020-03-29 16:04:05 +0200722 machine_gpiochip_add(gc);
Bartosz Golaszewskia411e812018-04-10 22:30:28 +0200723
Linus Walleija0b66a72020-03-29 16:04:05 +0200724 ret = gpiochip_irqchip_init_valid_mask(gc);
Andy Shevchenko9411e3a2019-10-09 17:34:44 +0300725 if (ret)
726 goto err_remove_acpi_chip;
727
Linus Walleija0b66a72020-03-29 16:04:05 +0200728 ret = gpiochip_irqchip_init_hw(gc);
Linus Walleijfbdf8d42019-09-06 12:05:35 +0200729 if (ret)
Linus Walleij48057ed2019-08-20 10:05:27 +0200730 goto err_remove_acpi_chip;
731
Linus Walleija0b66a72020-03-29 16:04:05 +0200732 ret = gpiochip_add_irqchip(gc, lock_key, request_key);
Linus Walleijfbdf8d42019-09-06 12:05:35 +0200733 if (ret)
Linus Walleij48057ed2019-08-20 10:05:27 +0200734 goto err_remove_irqchip_mask;
735
Linus Walleij3c702e92015-10-21 15:29:53 +0200736 /*
737 * By first adding the chardev, and then adding the device,
738 * we get a device node entry in sysfs under
739 * /sys/bus/gpio/devices/gpiochipN/dev that can be used for
740 * coldplug of device nodes and other udev business.
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700741 * We can do this only if gpiolib has been initialized.
742 * Otherwise, defer until later.
Linus Walleij3c702e92015-10-21 15:29:53 +0200743 */
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700744 if (gpiolib_initialized) {
Linus Walleijd377f562019-07-16 11:11:45 +0200745 ret = gpiochip_setup_dev(gdev);
746 if (ret)
Linus Walleij48057ed2019-08-20 10:05:27 +0200747 goto err_remove_irqchip;
Guenter Roeck159f3cd2016-03-31 08:11:30 -0700748 }
Anton Vorontsovcedb1882010-06-08 07:48:15 -0600749 return 0;
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800750
Linus Walleij48057ed2019-08-20 10:05:27 +0200751err_remove_irqchip:
Linus Walleija0b66a72020-03-29 16:04:05 +0200752 gpiochip_irqchip_remove(gc);
Linus Walleij48057ed2019-08-20 10:05:27 +0200753err_remove_irqchip_mask:
Linus Walleija0b66a72020-03-29 16:04:05 +0200754 gpiochip_irqchip_free_valid_mask(gc);
Geert Uytterhoeven35779892019-04-24 15:59:33 +0200755err_remove_acpi_chip:
Linus Walleija0b66a72020-03-29 16:04:05 +0200756 acpi_gpiochip_remove(gc);
Geert Uytterhoeven35779892019-04-24 15:59:33 +0200757err_remove_of_chip:
Linus Walleija0b66a72020-03-29 16:04:05 +0200758 gpiochip_free_hogs(gc);
759 of_gpiochip_remove(gc);
Geert Uytterhoeven35779892019-04-24 15:59:33 +0200760err_free_gpiochip_mask:
Linus Walleija0b66a72020-03-29 16:04:05 +0200761 gpiochip_remove_pin_ranges(gc);
762 gpiochip_free_valid_mask(gc);
Markus Pargmann5f3ca732015-08-14 16:11:00 +0200763err_remove_from_list:
Johan Hovold225fce82015-01-12 17:12:25 +0100764 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +0200765 list_del(&gdev->list);
Zhangfei Gao3bae4812013-06-09 11:08:32 +0800766 spin_unlock_irqrestore(&gpio_lock, flags);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700767err_free_label:
Bartosz Golaszewskifcf273e52017-12-14 15:29:20 +0100768 kfree_const(gdev->label);
Guenter Roeck476e2fc2016-03-31 08:11:29 -0700769err_free_descs:
770 kfree(gdev->descs);
Quanyang Wangc351bb62021-01-29 16:19:17 +0800771err_free_dev_name:
772 kfree(dev_name(&gdev->dev));
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +0200773err_free_ida:
Bartosz Golaszewski8d4a85b2020-09-08 15:12:25 +0200774 ida_free(&gpio_ida, gdev->id);
Vladimir Zapolskiya05a1402018-11-02 15:39:43 +0200775err_free_gdev:
David Brownelld2876d02008-02-04 22:28:20 -0800776 /* failures here can mean systems won't boot... */
Grygorii Strashko3cc1fb72020-11-18 16:29:17 +0200777 if (ret != -EPROBE_DEFER) {
778 pr_err("%s: GPIOs %d..%d (%s) failed to register, %d\n", __func__,
779 gdev->base, gdev->base + gdev->ngpio - 1,
780 gc->label ? : "generic", ret);
781 }
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100782 kfree(gdev);
Linus Walleijd377f562019-07-16 11:11:45 +0200783 return ret;
David Brownelld2876d02008-02-04 22:28:20 -0800784}
Thierry Reding959bc7b2017-11-07 19:15:59 +0100785EXPORT_SYMBOL_GPL(gpiochip_add_data_with_key);
David Brownelld2876d02008-02-04 22:28:20 -0800786
787/**
Linus Walleij43c54ec2016-02-11 11:37:48 +0100788 * gpiochip_get_data() - get per-subdriver data for the chip
Linus Walleija0b66a72020-03-29 16:04:05 +0200789 * @gc: GPIO chip
Thierry Reding950d55f52017-07-24 16:57:22 +0200790 *
791 * Returns:
792 * The per-subdriver data for the chip.
Linus Walleij43c54ec2016-02-11 11:37:48 +0100793 */
Linus Walleija0b66a72020-03-29 16:04:05 +0200794void *gpiochip_get_data(struct gpio_chip *gc)
Linus Walleij43c54ec2016-02-11 11:37:48 +0100795{
Linus Walleija0b66a72020-03-29 16:04:05 +0200796 return gc->gpiodev->data;
Linus Walleij43c54ec2016-02-11 11:37:48 +0100797}
798EXPORT_SYMBOL_GPL(gpiochip_get_data);
799
800/**
David Brownelld2876d02008-02-04 22:28:20 -0800801 * gpiochip_remove() - unregister a gpio_chip
Linus Walleija0b66a72020-03-29 16:04:05 +0200802 * @gc: the chip to unregister
David Brownelld2876d02008-02-04 22:28:20 -0800803 *
804 * A gpio_chip with any GPIOs still requested may not be removed.
805 */
Linus Walleija0b66a72020-03-29 16:04:05 +0200806void gpiochip_remove(struct gpio_chip *gc)
David Brownelld2876d02008-02-04 22:28:20 -0800807{
Linus Walleija0b66a72020-03-29 16:04:05 +0200808 struct gpio_device *gdev = gc->gpiodev;
David Brownelld2876d02008-02-04 22:28:20 -0800809 unsigned long flags;
Andy Shevchenko869233f2020-02-25 13:47:25 +0200810 unsigned int i;
David Brownelld2876d02008-02-04 22:28:20 -0800811
Linus Walleijff2b1352015-10-20 11:10:38 +0200812 /* FIXME: should the legacy sysfs handling be moved to gpio_device? */
Linus Walleijafbc4f32016-02-09 13:21:06 +0100813 gpiochip_sysfs_unregister(gdev);
Linus Walleija0b66a72020-03-29 16:04:05 +0200814 gpiochip_free_hogs(gc);
Bamvor Jian Zhangbd203bd2016-02-20 13:13:19 +0800815 /* Numb the device, cancelling all outstanding operations */
816 gdev->chip = NULL;
Linus Walleija0b66a72020-03-29 16:04:05 +0200817 gpiochip_irqchip_remove(gc);
818 acpi_gpiochip_remove(gc);
819 of_gpiochip_remove(gc);
820 gpiochip_remove_pin_ranges(gc);
821 gpiochip_free_valid_mask(gc);
Linus Walleij43c54ec2016-02-11 11:37:48 +0100822 /*
823 * We accept no more calls into the driver from this point, so
824 * NULL the driver data pointer
825 */
826 gdev->data = NULL;
Anton Vorontsov391c9702010-06-08 07:48:17 -0600827
Johan Hovold6798aca2015-01-12 17:12:28 +0100828 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100829 for (i = 0; i < gdev->ngpio; i++) {
Linus Walleija0b66a72020-03-29 16:04:05 +0200830 if (gpiochip_is_requested(gc, i))
Andy Shevchenko869233f2020-02-25 13:47:25 +0200831 break;
David Brownelld2876d02008-02-04 22:28:20 -0800832 }
David Brownelld2876d02008-02-04 22:28:20 -0800833 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot14e85c02014-11-19 16:51:27 +0900834
Geert Uytterhoevenca18a852020-03-02 09:24:48 +0100835 if (i != gdev->ngpio)
Linus Walleijfdeb8e12016-02-10 10:57:36 +0100836 dev_crit(&gdev->dev,
Linus Walleij58383c782015-11-04 09:56:26 +0100837 "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
Johan Hovoldfab28b82015-05-04 17:10:27 +0200838
Linus Walleijff2b1352015-10-20 11:10:38 +0200839 /*
840 * The gpiochip side puts its use of the device to rest here:
841 * if there are no userspace clients, the chardev and device will
842 * be removed, else it will be dangling until the last user is
843 * gone.
844 */
Kent Gibson1f5eb8b2020-11-05 18:40:49 +0800845 gcdev_unregister(gdev);
Linus Walleijff2b1352015-10-20 11:10:38 +0200846 put_device(&gdev->dev);
David Brownelld2876d02008-02-04 22:28:20 -0800847}
848EXPORT_SYMBOL_GPL(gpiochip_remove);
849
Laxman Dewangan0cf32922016-02-15 16:32:09 +0530850/**
Grant Likely594fa262010-06-08 07:48:16 -0600851 * gpiochip_find() - iterator for locating a specific gpio_chip
852 * @data: data to pass to match function
Thierry Reding950d55f52017-07-24 16:57:22 +0200853 * @match: Callback function to check gpio_chip
Grant Likely594fa262010-06-08 07:48:16 -0600854 *
855 * Similar to bus_find_device. It returns a reference to a gpio_chip as
856 * determined by a user supplied @match callback. The callback should return
857 * 0 if the device doesn't match and non-zero if it does. If the callback is
858 * non-zero, this function will return to the caller and not iterate over any
859 * more gpio_chips.
860 */
Grant Likely07ce8ec2012-05-18 23:01:05 -0600861struct gpio_chip *gpiochip_find(void *data,
Linus Walleija0b66a72020-03-29 16:04:05 +0200862 int (*match)(struct gpio_chip *gc,
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600863 void *data))
Grant Likely594fa262010-06-08 07:48:16 -0600864{
Linus Walleijff2b1352015-10-20 11:10:38 +0200865 struct gpio_device *gdev;
Linus Walleija0b66a72020-03-29 16:04:05 +0200866 struct gpio_chip *gc = NULL;
Grant Likely594fa262010-06-08 07:48:16 -0600867 unsigned long flags;
Grant Likely594fa262010-06-08 07:48:16 -0600868
869 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +0200870 list_for_each_entry(gdev, &gpio_devices, list)
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +0900871 if (gdev->chip && match(gdev->chip, data)) {
Linus Walleija0b66a72020-03-29 16:04:05 +0200872 gc = gdev->chip;
Grant Likely594fa262010-06-08 07:48:16 -0600873 break;
Masahiro Yamadaacf06ff2016-08-12 01:21:58 +0900874 }
Linus Walleijff2b1352015-10-20 11:10:38 +0200875
Grant Likely594fa262010-06-08 07:48:16 -0600876 spin_unlock_irqrestore(&gpio_lock, flags);
877
Linus Walleija0b66a72020-03-29 16:04:05 +0200878 return gc;
Grant Likely594fa262010-06-08 07:48:16 -0600879}
Jean Delvare8fa0c9b2011-05-20 00:40:18 -0600880EXPORT_SYMBOL_GPL(gpiochip_find);
David Brownelld2876d02008-02-04 22:28:20 -0800881
Linus Walleija0b66a72020-03-29 16:04:05 +0200882static int gpiochip_match_name(struct gpio_chip *gc, void *data)
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900883{
884 const char *name = data;
885
Linus Walleija0b66a72020-03-29 16:04:05 +0200886 return !strcmp(gc->label, name);
Alexandre Courbot79697ef2013-11-16 21:39:32 +0900887}
888
889static struct gpio_chip *find_chip_by_name(const char *name)
890{
891 return gpiochip_find((void *)name, gpiochip_match_name);
892}
893
Linus Walleij14250522014-03-25 10:40:18 +0100894#ifdef CONFIG_GPIOLIB_IRQCHIP
895
896/*
897 * The following is irqchip helper code for gpiochips.
898 */
899
Andy Shevchenko9411e3a2019-10-09 17:34:44 +0300900static int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
901{
902 struct gpio_irq_chip *girq = &gc->irq;
903
904 if (!girq->init_hw)
905 return 0;
906
907 return girq->init_hw(gc);
908}
909
Linus Walleij5fbe5b52019-09-04 16:01:04 +0200910static int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
Mika Westerberg79b804c2016-09-20 15:15:21 +0300911{
Linus Walleij5fbe5b52019-09-04 16:01:04 +0200912 struct gpio_irq_chip *girq = &gc->irq;
913
914 if (!girq->init_valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +0300915 return 0;
916
Linus Walleij5fbe5b52019-09-04 16:01:04 +0200917 girq->valid_mask = gpiochip_allocate_mask(gc);
918 if (!girq->valid_mask)
Mika Westerberg79b804c2016-09-20 15:15:21 +0300919 return -ENOMEM;
920
Linus Walleij5fbe5b52019-09-04 16:01:04 +0200921 girq->init_valid_mask(gc, girq->valid_mask, gc->ngpio);
922
Mika Westerberg79b804c2016-09-20 15:15:21 +0300923 return 0;
924}
925
Linus Walleija0b66a72020-03-29 16:04:05 +0200926static void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
Mika Westerberg79b804c2016-09-20 15:15:21 +0300927{
Linus Walleija0b66a72020-03-29 16:04:05 +0200928 bitmap_free(gc->irq.valid_mask);
929 gc->irq.valid_mask = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +0300930}
931
Linus Walleija0b66a72020-03-29 16:04:05 +0200932bool gpiochip_irqchip_irq_valid(const struct gpio_chip *gc,
Stephen Boyd64ff2c82018-01-09 17:58:46 -0800933 unsigned int offset)
Mika Westerberg79b804c2016-09-20 15:15:21 +0300934{
Linus Walleija0b66a72020-03-29 16:04:05 +0200935 if (!gpiochip_line_is_valid(gc, offset))
Stephen Boyd726cb3b2018-03-23 09:34:52 -0700936 return false;
Mika Westerberg79b804c2016-09-20 15:15:21 +0300937 /* No mask means all valid */
Linus Walleija0b66a72020-03-29 16:04:05 +0200938 if (likely(!gc->irq.valid_mask))
Mika Westerberg79b804c2016-09-20 15:15:21 +0300939 return true;
Linus Walleija0b66a72020-03-29 16:04:05 +0200940 return test_bit(offset, gc->irq.valid_mask);
Mika Westerberg79b804c2016-09-20 15:15:21 +0300941}
Stephen Boyd64ff2c82018-01-09 17:58:46 -0800942EXPORT_SYMBOL_GPL(gpiochip_irqchip_irq_valid);
Mika Westerberg79b804c2016-09-20 15:15:21 +0300943
Linus Walleijfdd61a02019-08-08 14:32:37 +0200944#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
945
946/**
947 * gpiochip_set_hierarchical_irqchip() - connects a hierarchical irqchip
948 * to a gpiochip
949 * @gc: the gpiochip to set the irqchip hierarchical handler to
950 * @irqchip: the irqchip to handle this level of the hierarchy, the interrupt
951 * will then percolate up to the parent
952 */
953static void gpiochip_set_hierarchical_irqchip(struct gpio_chip *gc,
954 struct irq_chip *irqchip)
955{
956 /* DT will deal with mapping each IRQ as we go along */
957 if (is_of_node(gc->irq.fwnode))
958 return;
959
960 /*
961 * This is for legacy and boardfile "irqchip" fwnodes: allocate
962 * irqs upfront instead of dynamically since we don't have the
963 * dynamic type of allocation that hardware description languages
964 * provide. Once all GPIO drivers using board files are gone from
965 * the kernel we can delete this code, but for a transitional period
966 * it is necessary to keep this around.
967 */
968 if (is_fwnode_irqchip(gc->irq.fwnode)) {
969 int i;
970 int ret;
971
972 for (i = 0; i < gc->ngpio; i++) {
973 struct irq_fwspec fwspec;
974 unsigned int parent_hwirq;
975 unsigned int parent_type;
976 struct gpio_irq_chip *girq = &gc->irq;
977
978 /*
979 * We call the child to parent translation function
980 * only to check if the child IRQ is valid or not.
981 * Just pick the rising edge type here as that is what
982 * we likely need to support.
983 */
984 ret = girq->child_to_parent_hwirq(gc, i,
985 IRQ_TYPE_EDGE_RISING,
986 &parent_hwirq,
987 &parent_type);
988 if (ret) {
989 chip_err(gc, "skip set-up on hwirq %d\n",
990 i);
991 continue;
992 }
993
994 fwspec.fwnode = gc->irq.fwnode;
995 /* This is the hwirq for the GPIO line side of things */
996 fwspec.param[0] = girq->child_offset_to_irq(gc, i);
997 /* Just pick something */
998 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
999 fwspec.param_count = 2;
1000 ret = __irq_domain_alloc_irqs(gc->irq.domain,
1001 /* just pick something */
1002 -1,
1003 1,
1004 NUMA_NO_NODE,
1005 &fwspec,
1006 false,
1007 NULL);
1008 if (ret < 0) {
1009 chip_err(gc,
1010 "can not allocate irq for GPIO line %d parent hwirq %d in hierarchy domain: %d\n",
1011 i, parent_hwirq,
1012 ret);
1013 }
1014 }
1015 }
1016
1017 chip_err(gc, "%s unknown fwnode type proceed anyway\n", __func__);
1018
1019 return;
1020}
1021
1022static int gpiochip_hierarchy_irq_domain_translate(struct irq_domain *d,
1023 struct irq_fwspec *fwspec,
1024 unsigned long *hwirq,
1025 unsigned int *type)
1026{
1027 /* We support standard DT translation */
1028 if (is_of_node(fwspec->fwnode) && fwspec->param_count == 2) {
1029 return irq_domain_translate_twocell(d, fwspec, hwirq, type);
1030 }
1031
1032 /* This is for board files and others not using DT */
1033 if (is_fwnode_irqchip(fwspec->fwnode)) {
1034 int ret;
1035
1036 ret = irq_domain_translate_twocell(d, fwspec, hwirq, type);
1037 if (ret)
1038 return ret;
1039 WARN_ON(*type == IRQ_TYPE_NONE);
1040 return 0;
1041 }
1042 return -EINVAL;
1043}
1044
1045static int gpiochip_hierarchy_irq_domain_alloc(struct irq_domain *d,
1046 unsigned int irq,
1047 unsigned int nr_irqs,
1048 void *data)
1049{
1050 struct gpio_chip *gc = d->host_data;
1051 irq_hw_number_t hwirq;
1052 unsigned int type = IRQ_TYPE_NONE;
1053 struct irq_fwspec *fwspec = data;
Kevin Hao24258762020-01-14 16:28:19 +08001054 void *parent_arg;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001055 unsigned int parent_hwirq;
1056 unsigned int parent_type;
1057 struct gpio_irq_chip *girq = &gc->irq;
1058 int ret;
1059
1060 /*
1061 * The nr_irqs parameter is always one except for PCI multi-MSI
1062 * so this should not happen.
1063 */
1064 WARN_ON(nr_irqs != 1);
1065
1066 ret = gc->irq.child_irq_domain_ops.translate(d, fwspec, &hwirq, &type);
1067 if (ret)
1068 return ret;
1069
Kevin Hao366950e2020-01-20 17:56:25 +08001070 chip_dbg(gc, "allocate IRQ %d, hwirq %lu\n", irq, hwirq);
Linus Walleijfdd61a02019-08-08 14:32:37 +02001071
1072 ret = girq->child_to_parent_hwirq(gc, hwirq, type,
1073 &parent_hwirq, &parent_type);
1074 if (ret) {
1075 chip_err(gc, "can't look up hwirq %lu\n", hwirq);
1076 return ret;
1077 }
Kevin Hao366950e2020-01-20 17:56:25 +08001078 chip_dbg(gc, "found parent hwirq %u\n", parent_hwirq);
Linus Walleijfdd61a02019-08-08 14:32:37 +02001079
1080 /*
1081 * We set handle_bad_irq because the .set_type() should
1082 * always be invoked and set the right type of handler.
1083 */
1084 irq_domain_set_info(d,
1085 irq,
1086 hwirq,
1087 gc->irq.chip,
1088 gc,
1089 girq->handler,
1090 NULL, NULL);
1091 irq_set_probe(irq);
1092
Linus Walleijfdd61a02019-08-08 14:32:37 +02001093 /* This parent only handles asserted level IRQs */
Kevin Hao24258762020-01-14 16:28:19 +08001094 parent_arg = girq->populate_parent_alloc_arg(gc, parent_hwirq, parent_type);
1095 if (!parent_arg)
1096 return -ENOMEM;
1097
Kevin Hao366950e2020-01-20 17:56:25 +08001098 chip_dbg(gc, "alloc_irqs_parent for %d parent hwirq %d\n",
Linus Walleijfdd61a02019-08-08 14:32:37 +02001099 irq, parent_hwirq);
Stephen Boydc34f6dc2020-01-14 15:11:03 -08001100 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
Kevin Hao24258762020-01-14 16:28:19 +08001101 ret = irq_domain_alloc_irqs_parent(d, irq, 1, parent_arg);
Kevin Hao880b7cf2020-01-14 16:28:20 +08001102 /*
1103 * If the parent irqdomain is msi, the interrupts have already
1104 * been allocated, so the EEXIST is good.
1105 */
1106 if (irq_domain_is_msi(d->parent) && (ret == -EEXIST))
1107 ret = 0;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001108 if (ret)
1109 chip_err(gc,
1110 "failed to allocate parent hwirq %d for hwirq %lu\n",
1111 parent_hwirq, hwirq);
1112
Kevin Hao24258762020-01-14 16:28:19 +08001113 kfree(parent_arg);
Linus Walleijfdd61a02019-08-08 14:32:37 +02001114 return ret;
1115}
1116
Linus Walleija0b66a72020-03-29 16:04:05 +02001117static unsigned int gpiochip_child_offset_to_irq_noop(struct gpio_chip *gc,
Linus Walleijfdd61a02019-08-08 14:32:37 +02001118 unsigned int offset)
1119{
1120 return offset;
1121}
1122
1123static void gpiochip_hierarchy_setup_domain_ops(struct irq_domain_ops *ops)
1124{
1125 ops->activate = gpiochip_irq_domain_activate;
1126 ops->deactivate = gpiochip_irq_domain_deactivate;
1127 ops->alloc = gpiochip_hierarchy_irq_domain_alloc;
1128 ops->free = irq_domain_free_irqs_common;
1129
1130 /*
1131 * We only allow overriding the translate() function for
1132 * hierarchical chips, and this should only be done if the user
1133 * really need something other than 1:1 translation.
1134 */
1135 if (!ops->translate)
1136 ops->translate = gpiochip_hierarchy_irq_domain_translate;
1137}
1138
1139static int gpiochip_hierarchy_add_domain(struct gpio_chip *gc)
1140{
1141 if (!gc->irq.child_to_parent_hwirq ||
1142 !gc->irq.fwnode) {
1143 chip_err(gc, "missing irqdomain vital data\n");
1144 return -EINVAL;
1145 }
1146
1147 if (!gc->irq.child_offset_to_irq)
1148 gc->irq.child_offset_to_irq = gpiochip_child_offset_to_irq_noop;
1149
Kevin Hao24258762020-01-14 16:28:19 +08001150 if (!gc->irq.populate_parent_alloc_arg)
1151 gc->irq.populate_parent_alloc_arg =
Linus Walleijfdd61a02019-08-08 14:32:37 +02001152 gpiochip_populate_parent_fwspec_twocell;
1153
1154 gpiochip_hierarchy_setup_domain_ops(&gc->irq.child_irq_domain_ops);
1155
1156 gc->irq.domain = irq_domain_create_hierarchy(
1157 gc->irq.parent_domain,
1158 0,
1159 gc->ngpio,
1160 gc->irq.fwnode,
1161 &gc->irq.child_irq_domain_ops,
1162 gc);
1163
1164 if (!gc->irq.domain)
1165 return -ENOMEM;
1166
1167 gpiochip_set_hierarchical_irqchip(gc, gc->irq.chip);
1168
1169 return 0;
1170}
1171
1172static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1173{
1174 return !!gc->irq.parent_domain;
1175}
1176
Linus Walleija0b66a72020-03-29 16:04:05 +02001177void *gpiochip_populate_parent_fwspec_twocell(struct gpio_chip *gc,
Linus Walleijfdd61a02019-08-08 14:32:37 +02001178 unsigned int parent_hwirq,
1179 unsigned int parent_type)
1180{
Kevin Hao24258762020-01-14 16:28:19 +08001181 struct irq_fwspec *fwspec;
1182
1183 fwspec = kmalloc(sizeof(*fwspec), GFP_KERNEL);
1184 if (!fwspec)
1185 return NULL;
1186
Linus Walleija0b66a72020-03-29 16:04:05 +02001187 fwspec->fwnode = gc->irq.parent_domain->fwnode;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001188 fwspec->param_count = 2;
1189 fwspec->param[0] = parent_hwirq;
1190 fwspec->param[1] = parent_type;
Kevin Hao24258762020-01-14 16:28:19 +08001191
1192 return fwspec;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001193}
1194EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_twocell);
1195
Linus Walleija0b66a72020-03-29 16:04:05 +02001196void *gpiochip_populate_parent_fwspec_fourcell(struct gpio_chip *gc,
Linus Walleijfdd61a02019-08-08 14:32:37 +02001197 unsigned int parent_hwirq,
1198 unsigned int parent_type)
1199{
Kevin Hao24258762020-01-14 16:28:19 +08001200 struct irq_fwspec *fwspec;
1201
1202 fwspec = kmalloc(sizeof(*fwspec), GFP_KERNEL);
1203 if (!fwspec)
1204 return NULL;
1205
Linus Walleija0b66a72020-03-29 16:04:05 +02001206 fwspec->fwnode = gc->irq.parent_domain->fwnode;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001207 fwspec->param_count = 4;
1208 fwspec->param[0] = 0;
1209 fwspec->param[1] = parent_hwirq;
1210 fwspec->param[2] = 0;
1211 fwspec->param[3] = parent_type;
Kevin Hao24258762020-01-14 16:28:19 +08001212
1213 return fwspec;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001214}
1215EXPORT_SYMBOL_GPL(gpiochip_populate_parent_fwspec_fourcell);
1216
1217#else
1218
1219static int gpiochip_hierarchy_add_domain(struct gpio_chip *gc)
1220{
1221 return -EINVAL;
1222}
1223
1224static bool gpiochip_hierarchy_is_hierarchical(struct gpio_chip *gc)
1225{
1226 return false;
1227}
1228
1229#endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
1230
Linus Walleijd245b3f2016-11-24 10:57:25 +01001231/**
Linus Walleij14250522014-03-25 10:40:18 +01001232 * gpiochip_irq_map() - maps an IRQ into a GPIO irqchip
1233 * @d: the irqdomain used by this irqchip
1234 * @irq: the global irq number used by this GPIO irqchip irq
1235 * @hwirq: the local IRQ/GPIO line offset on this gpiochip
1236 *
1237 * This function will set up the mapping for a certain IRQ line on a
1238 * gpiochip by assigning the gpiochip as chip data, and using the irqchip
1239 * stored inside the gpiochip.
1240 */
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001241int gpiochip_irq_map(struct irq_domain *d, unsigned int irq,
1242 irq_hw_number_t hwirq)
Linus Walleij14250522014-03-25 10:40:18 +01001243{
Linus Walleija0b66a72020-03-29 16:04:05 +02001244 struct gpio_chip *gc = d->host_data;
Linus Walleijd377f562019-07-16 11:11:45 +02001245 int ret = 0;
Linus Walleij14250522014-03-25 10:40:18 +01001246
Linus Walleija0b66a72020-03-29 16:04:05 +02001247 if (!gpiochip_irqchip_irq_valid(gc, hwirq))
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001248 return -ENXIO;
1249
Linus Walleija0b66a72020-03-29 16:04:05 +02001250 irq_set_chip_data(irq, gc);
Grygorii Strashkoa0a8bcf2015-08-17 15:35:23 +03001251 /*
1252 * This lock class tells lockdep that GPIO irqs are in a different
1253 * category than their parents, so it won't report false recursion.
1254 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001255 irq_set_lockdep_class(irq, gc->irq.lock_key, gc->irq.request_key);
1256 irq_set_chip_and_handler(irq, gc->irq.chip, gc->irq.handler);
Linus Walleijd245b3f2016-11-24 10:57:25 +01001257 /* Chips that use nested thread handlers have them marked */
Linus Walleija0b66a72020-03-29 16:04:05 +02001258 if (gc->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001259 irq_set_nested_thread(irq, 1);
Linus Walleij14250522014-03-25 10:40:18 +01001260 irq_set_noprobe(irq);
Rob Herring23393d42015-07-27 15:55:16 -05001261
Linus Walleija0b66a72020-03-29 16:04:05 +02001262 if (gc->irq.num_parents == 1)
1263 ret = irq_set_parent(irq, gc->irq.parents[0]);
1264 else if (gc->irq.map)
1265 ret = irq_set_parent(irq, gc->irq.map[hwirq]);
Thierry Redinge0d89722017-11-07 19:15:54 +01001266
Linus Walleijd377f562019-07-16 11:11:45 +02001267 if (ret < 0)
1268 return ret;
Thierry Redinge0d89722017-11-07 19:15:54 +01001269
Linus Walleij1333b902014-04-23 16:45:12 +02001270 /*
1271 * No set-up of the hardware will happen if IRQ_TYPE_NONE
1272 * is passed as default type.
1273 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001274 if (gc->irq.default_type != IRQ_TYPE_NONE)
1275 irq_set_irq_type(irq, gc->irq.default_type);
Linus Walleij14250522014-03-25 10:40:18 +01001276
1277 return 0;
1278}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001279EXPORT_SYMBOL_GPL(gpiochip_irq_map);
Linus Walleij14250522014-03-25 10:40:18 +01001280
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001281void gpiochip_irq_unmap(struct irq_domain *d, unsigned int irq)
Linus Walleijc3626fd2014-03-28 20:42:01 +01001282{
Linus Walleija0b66a72020-03-29 16:04:05 +02001283 struct gpio_chip *gc = d->host_data;
Linus Walleij1c8732b2014-04-09 13:34:39 +02001284
Linus Walleija0b66a72020-03-29 16:04:05 +02001285 if (gc->irq.threaded)
Linus Walleij1c8732b2014-04-09 13:34:39 +02001286 irq_set_nested_thread(irq, 0);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001287 irq_set_chip_and_handler(irq, NULL, NULL);
1288 irq_set_chip_data(irq, NULL);
1289}
Thierry Reding1b95b4e2017-11-07 19:15:55 +01001290EXPORT_SYMBOL_GPL(gpiochip_irq_unmap);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001291
Linus Walleij14250522014-03-25 10:40:18 +01001292static const struct irq_domain_ops gpiochip_domain_ops = {
1293 .map = gpiochip_irq_map,
Linus Walleijc3626fd2014-03-28 20:42:01 +01001294 .unmap = gpiochip_irq_unmap,
Linus Walleij14250522014-03-25 10:40:18 +01001295 /* Virtually all GPIO irqchips are twocell:ed */
1296 .xlate = irq_domain_xlate_twocell,
1297};
1298
Linus Walleijfdd61a02019-08-08 14:32:37 +02001299/*
1300 * TODO: move these activate/deactivate in under the hierarchicial
1301 * irqchip implementation as static once SPMI and SSBI (all external
1302 * users) are phased over.
1303 */
Brian Masneyef74f702019-01-19 15:42:42 -05001304/**
1305 * gpiochip_irq_domain_activate() - Lock a GPIO to be used as an IRQ
1306 * @domain: The IRQ domain used by this IRQ chip
1307 * @data: Outermost irq_data associated with the IRQ
1308 * @reserve: If set, only reserve an interrupt vector instead of assigning one
1309 *
1310 * This function is a wrapper that calls gpiochip_lock_as_irq() and is to be
1311 * used as the activate function for the &struct irq_domain_ops. The host_data
1312 * for the IRQ domain must be the &struct gpio_chip.
1313 */
1314int gpiochip_irq_domain_activate(struct irq_domain *domain,
1315 struct irq_data *data, bool reserve)
1316{
Linus Walleija0b66a72020-03-29 16:04:05 +02001317 struct gpio_chip *gc = domain->host_data;
Brian Masneyef74f702019-01-19 15:42:42 -05001318
Linus Walleija0b66a72020-03-29 16:04:05 +02001319 return gpiochip_lock_as_irq(gc, data->hwirq);
Brian Masneyef74f702019-01-19 15:42:42 -05001320}
1321EXPORT_SYMBOL_GPL(gpiochip_irq_domain_activate);
1322
1323/**
1324 * gpiochip_irq_domain_deactivate() - Unlock a GPIO used as an IRQ
1325 * @domain: The IRQ domain used by this IRQ chip
1326 * @data: Outermost irq_data associated with the IRQ
1327 *
1328 * This function is a wrapper that will call gpiochip_unlock_as_irq() and is to
1329 * be used as the deactivate function for the &struct irq_domain_ops. The
1330 * host_data for the IRQ domain must be the &struct gpio_chip.
1331 */
1332void gpiochip_irq_domain_deactivate(struct irq_domain *domain,
1333 struct irq_data *data)
1334{
Linus Walleija0b66a72020-03-29 16:04:05 +02001335 struct gpio_chip *gc = domain->host_data;
Brian Masneyef74f702019-01-19 15:42:42 -05001336
Linus Walleija0b66a72020-03-29 16:04:05 +02001337 return gpiochip_unlock_as_irq(gc, data->hwirq);
Brian Masneyef74f702019-01-19 15:42:42 -05001338}
1339EXPORT_SYMBOL_GPL(gpiochip_irq_domain_deactivate);
1340
Andy Shevchenko13daf482020-11-09 22:53:16 +02001341static int gpiochip_to_irq(struct gpio_chip *gc, unsigned int offset)
Linus Walleij14250522014-03-25 10:40:18 +01001342{
Linus Walleija0b66a72020-03-29 16:04:05 +02001343 struct irq_domain *domain = gc->irq.domain;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001344
Linus Walleija0b66a72020-03-29 16:04:05 +02001345 if (!gpiochip_irqchip_irq_valid(gc, offset))
Grygorii Strashkodc749a02017-07-21 11:49:00 -05001346 return -ENXIO;
Thierry Redinge0d89722017-11-07 19:15:54 +01001347
Linus Walleijfdd61a02019-08-08 14:32:37 +02001348#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1349 if (irq_domain_is_hierarchy(domain)) {
1350 struct irq_fwspec spec;
1351
1352 spec.fwnode = domain->fwnode;
1353 spec.param_count = 2;
Linus Walleija0b66a72020-03-29 16:04:05 +02001354 spec.param[0] = gc->irq.child_offset_to_irq(gc, offset);
Linus Walleijfdd61a02019-08-08 14:32:37 +02001355 spec.param[1] = IRQ_TYPE_NONE;
1356
1357 return irq_create_fwspec_mapping(&spec);
1358 }
1359#endif
1360
1361 return irq_create_mapping(domain, offset);
Linus Walleij14250522014-03-25 10:40:18 +01001362}
1363
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001364static int gpiochip_irq_reqres(struct irq_data *d)
1365{
Linus Walleija0b66a72020-03-29 16:04:05 +02001366 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001367
Linus Walleija0b66a72020-03-29 16:04:05 +02001368 return gpiochip_reqres_irq(gc, d->hwirq);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001369}
1370
1371static void gpiochip_irq_relres(struct irq_data *d)
1372{
Linus Walleija0b66a72020-03-29 16:04:05 +02001373 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001374
Linus Walleija0b66a72020-03-29 16:04:05 +02001375 gpiochip_relres_irq(gc, d->hwirq);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02001376}
1377
Maulik Shaha8173822020-05-23 22:41:10 +05301378static void gpiochip_irq_mask(struct irq_data *d)
1379{
1380 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1381
1382 if (gc->irq.irq_mask)
1383 gc->irq.irq_mask(d);
1384 gpiochip_disable_irq(gc, d->hwirq);
1385}
1386
1387static void gpiochip_irq_unmask(struct irq_data *d)
1388{
1389 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1390
1391 gpiochip_enable_irq(gc, d->hwirq);
1392 if (gc->irq.irq_unmask)
1393 gc->irq.irq_unmask(d);
1394}
1395
Hans Verkuil461c1a72018-09-08 11:23:17 +02001396static void gpiochip_irq_enable(struct irq_data *d)
1397{
Linus Walleija0b66a72020-03-29 16:04:05 +02001398 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Hans Verkuil461c1a72018-09-08 11:23:17 +02001399
Linus Walleija0b66a72020-03-29 16:04:05 +02001400 gpiochip_enable_irq(gc, d->hwirq);
Maulik Shaha8173822020-05-23 22:41:10 +05301401 gc->irq.irq_enable(d);
Hans Verkuil461c1a72018-09-08 11:23:17 +02001402}
1403
1404static void gpiochip_irq_disable(struct irq_data *d)
1405{
Linus Walleija0b66a72020-03-29 16:04:05 +02001406 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Hans Verkuil461c1a72018-09-08 11:23:17 +02001407
Maulik Shaha8173822020-05-23 22:41:10 +05301408 gc->irq.irq_disable(d);
Linus Walleija0b66a72020-03-29 16:04:05 +02001409 gpiochip_disable_irq(gc, d->hwirq);
Hans Verkuil461c1a72018-09-08 11:23:17 +02001410}
1411
Linus Walleija0b66a72020-03-29 16:04:05 +02001412static void gpiochip_set_irq_hooks(struct gpio_chip *gc)
Hans Verkuilca620f22018-09-08 11:23:15 +02001413{
Linus Walleija0b66a72020-03-29 16:04:05 +02001414 struct irq_chip *irqchip = gc->irq.chip;
Hans Verkuilca620f22018-09-08 11:23:15 +02001415
1416 if (!irqchip->irq_request_resources &&
1417 !irqchip->irq_release_resources) {
1418 irqchip->irq_request_resources = gpiochip_irq_reqres;
1419 irqchip->irq_release_resources = gpiochip_irq_relres;
1420 }
Linus Walleija0b66a72020-03-29 16:04:05 +02001421 if (WARN_ON(gc->irq.irq_enable))
Hans Verkuil461c1a72018-09-08 11:23:17 +02001422 return;
Hans Verkuil171948e2018-09-14 10:36:39 +02001423 /* Check if the irqchip already has this hook... */
Nikita Shubin9d552212020-12-10 10:05:14 +03001424 if (irqchip->irq_enable == gpiochip_irq_enable ||
1425 irqchip->irq_mask == gpiochip_irq_mask) {
Hans Verkuil171948e2018-09-14 10:36:39 +02001426 /*
1427 * ...and if so, give a gentle warning that this is bad
1428 * practice.
1429 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001430 chip_info(gc,
Hans Verkuil171948e2018-09-14 10:36:39 +02001431 "detected irqchip that is shared with multiple gpiochips: please fix the driver.\n");
1432 return;
1433 }
Maulik Shaha8173822020-05-23 22:41:10 +05301434
1435 if (irqchip->irq_disable) {
1436 gc->irq.irq_disable = irqchip->irq_disable;
1437 irqchip->irq_disable = gpiochip_irq_disable;
1438 } else {
1439 gc->irq.irq_mask = irqchip->irq_mask;
1440 irqchip->irq_mask = gpiochip_irq_mask;
1441 }
1442
1443 if (irqchip->irq_enable) {
1444 gc->irq.irq_enable = irqchip->irq_enable;
1445 irqchip->irq_enable = gpiochip_irq_enable;
1446 } else {
1447 gc->irq.irq_unmask = irqchip->irq_unmask;
1448 irqchip->irq_unmask = gpiochip_irq_unmask;
1449 }
Hans Verkuilca620f22018-09-08 11:23:15 +02001450}
1451
Linus Walleij14250522014-03-25 10:40:18 +01001452/**
Thierry Redinge0d89722017-11-07 19:15:54 +01001453 * gpiochip_add_irqchip() - adds an IRQ chip to a GPIO chip
Linus Walleija0b66a72020-03-29 16:04:05 +02001454 * @gc: the GPIO chip to add the IRQ chip to
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001455 * @lock_key: lockdep class for IRQ lock
1456 * @request_key: lockdep class for IRQ request
Thierry Redinge0d89722017-11-07 19:15:54 +01001457 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001458static int gpiochip_add_irqchip(struct gpio_chip *gc,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001459 struct lock_class_key *lock_key,
1460 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01001461{
Linus Walleija0b66a72020-03-29 16:04:05 +02001462 struct irq_chip *irqchip = gc->irq.chip;
Linus Walleijfdd61a02019-08-08 14:32:37 +02001463 const struct irq_domain_ops *ops = NULL;
Thierry Redinge0d89722017-11-07 19:15:54 +01001464 struct device_node *np;
1465 unsigned int type;
1466 unsigned int i;
1467
1468 if (!irqchip)
1469 return 0;
1470
Linus Walleija0b66a72020-03-29 16:04:05 +02001471 if (gc->irq.parent_handler && gc->can_sleep) {
1472 chip_err(gc, "you cannot have chained interrupts on a chip that may sleep\n");
Thierry Redinge0d89722017-11-07 19:15:54 +01001473 return -EINVAL;
1474 }
1475
Linus Walleija0b66a72020-03-29 16:04:05 +02001476 np = gc->gpiodev->dev.of_node;
1477 type = gc->irq.default_type;
Thierry Redinge0d89722017-11-07 19:15:54 +01001478
1479 /*
1480 * Specifying a default trigger is a terrible idea if DT or ACPI is
1481 * used to configure the interrupts, as you may end up with
1482 * conflicting triggers. Tell the user, and reset to NONE.
1483 */
1484 if (WARN(np && type != IRQ_TYPE_NONE,
1485 "%s: Ignoring %u default trigger\n", np->full_name, type))
1486 type = IRQ_TYPE_NONE;
1487
Linus Walleija0b66a72020-03-29 16:04:05 +02001488 if (has_acpi_companion(gc->parent) && type != IRQ_TYPE_NONE) {
1489 acpi_handle_warn(ACPI_HANDLE(gc->parent),
Thierry Redinge0d89722017-11-07 19:15:54 +01001490 "Ignoring %u default trigger\n", type);
1491 type = IRQ_TYPE_NONE;
1492 }
1493
Nikita Shubinef382372021-01-18 12:05:08 +03001494 if (gc->to_irq)
1495 chip_warn(gc, "to_irq is redefined in %s and you shouldn't rely on it\n", __func__);
1496
Linus Walleija0b66a72020-03-29 16:04:05 +02001497 gc->to_irq = gpiochip_to_irq;
1498 gc->irq.default_type = type;
1499 gc->irq.lock_key = lock_key;
1500 gc->irq.request_key = request_key;
Thierry Redinge0d89722017-11-07 19:15:54 +01001501
Linus Walleijfdd61a02019-08-08 14:32:37 +02001502 /* If a parent irqdomain is provided, let's build a hierarchy */
Linus Walleija0b66a72020-03-29 16:04:05 +02001503 if (gpiochip_hierarchy_is_hierarchical(gc)) {
1504 int ret = gpiochip_hierarchy_add_domain(gc);
Linus Walleijfdd61a02019-08-08 14:32:37 +02001505 if (ret)
1506 return ret;
1507 } else {
1508 /* Some drivers provide custom irqdomain ops */
Linus Walleija0b66a72020-03-29 16:04:05 +02001509 if (gc->irq.domain_ops)
1510 ops = gc->irq.domain_ops;
Thierry Redinge0d89722017-11-07 19:15:54 +01001511
Linus Walleijfdd61a02019-08-08 14:32:37 +02001512 if (!ops)
1513 ops = &gpiochip_domain_ops;
Linus Walleija0b66a72020-03-29 16:04:05 +02001514 gc->irq.domain = irq_domain_add_simple(np,
1515 gc->ngpio,
1516 gc->irq.first,
1517 ops, gc);
1518 if (!gc->irq.domain)
Linus Walleijfdd61a02019-08-08 14:32:37 +02001519 return -EINVAL;
1520 }
Thierry Redinge0d89722017-11-07 19:15:54 +01001521
Linus Walleija0b66a72020-03-29 16:04:05 +02001522 if (gc->irq.parent_handler) {
1523 void *data = gc->irq.parent_handler_data ?: gc;
Thierry Redinge0d89722017-11-07 19:15:54 +01001524
Linus Walleija0b66a72020-03-29 16:04:05 +02001525 for (i = 0; i < gc->irq.num_parents; i++) {
Thierry Redinge0d89722017-11-07 19:15:54 +01001526 /*
1527 * The parent IRQ chip is already using the chip_data
1528 * for this IRQ chip, so our callbacks simply use the
1529 * handler_data.
1530 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001531 irq_set_chained_handler_and_data(gc->irq.parents[i],
1532 gc->irq.parent_handler,
Thierry Redinge0d89722017-11-07 19:15:54 +01001533 data);
1534 }
Thierry Redinge0d89722017-11-07 19:15:54 +01001535 }
1536
Linus Walleija0b66a72020-03-29 16:04:05 +02001537 gpiochip_set_irq_hooks(gc);
Hans Verkuilca620f22018-09-08 11:23:15 +02001538
Linus Walleija0b66a72020-03-29 16:04:05 +02001539 acpi_gpiochip_request_interrupts(gc);
Thierry Redinge0d89722017-11-07 19:15:54 +01001540
1541 return 0;
1542}
1543
1544/**
Linus Walleij14250522014-03-25 10:40:18 +01001545 * gpiochip_irqchip_remove() - removes an irqchip added to a gpiochip
Linus Walleija0b66a72020-03-29 16:04:05 +02001546 * @gc: the gpiochip to remove the irqchip from
Linus Walleij14250522014-03-25 10:40:18 +01001547 *
1548 * This is called only from gpiochip_remove()
1549 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001550static void gpiochip_irqchip_remove(struct gpio_chip *gc)
Linus Walleij14250522014-03-25 10:40:18 +01001551{
Linus Walleija0b66a72020-03-29 16:04:05 +02001552 struct irq_chip *irqchip = gc->irq.chip;
Thierry Reding39e5f092017-11-07 19:15:50 +01001553 unsigned int offset;
Linus Walleijc3626fd2014-03-28 20:42:01 +01001554
Linus Walleija0b66a72020-03-29 16:04:05 +02001555 acpi_gpiochip_free_interrupts(gc);
Mika Westerbergafa82fa2014-07-25 09:54:48 +03001556
Linus Walleija0b66a72020-03-29 16:04:05 +02001557 if (irqchip && gc->irq.parent_handler) {
1558 struct gpio_irq_chip *irq = &gc->irq;
Thierry Reding39e5f092017-11-07 19:15:50 +01001559 unsigned int i;
1560
1561 for (i = 0; i < irq->num_parents; i++)
1562 irq_set_chained_handler_and_data(irq->parents[i],
1563 NULL, NULL);
Dmitry Eremin-Solenikov25e4fe92015-05-12 20:12:23 +03001564 }
1565
Linus Walleijc3626fd2014-03-28 20:42:01 +01001566 /* Remove all IRQ mappings and delete the domain */
Linus Walleija0b66a72020-03-29 16:04:05 +02001567 if (gc->irq.domain) {
Thierry Reding39e5f092017-11-07 19:15:50 +01001568 unsigned int irq;
1569
Linus Walleija0b66a72020-03-29 16:04:05 +02001570 for (offset = 0; offset < gc->ngpio; offset++) {
1571 if (!gpiochip_irqchip_irq_valid(gc, offset))
Mika Westerberg79b804c2016-09-20 15:15:21 +03001572 continue;
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001573
Linus Walleija0b66a72020-03-29 16:04:05 +02001574 irq = irq_find_mapping(gc->irq.domain, offset);
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001575 irq_dispose_mapping(irq);
Mika Westerberg79b804c2016-09-20 15:15:21 +03001576 }
Thierry Redingf0fbe7b2017-11-07 19:15:47 +01001577
Linus Walleija0b66a72020-03-29 16:04:05 +02001578 irq_domain_remove(gc->irq.domain);
Linus Walleijc3626fd2014-03-28 20:42:01 +01001579 }
Linus Walleij14250522014-03-25 10:40:18 +01001580
Hans Verkuil461c1a72018-09-08 11:23:17 +02001581 if (irqchip) {
1582 if (irqchip->irq_request_resources == gpiochip_irq_reqres) {
1583 irqchip->irq_request_resources = NULL;
1584 irqchip->irq_release_resources = NULL;
1585 }
1586 if (irqchip->irq_enable == gpiochip_irq_enable) {
Linus Walleija0b66a72020-03-29 16:04:05 +02001587 irqchip->irq_enable = gc->irq.irq_enable;
1588 irqchip->irq_disable = gc->irq.irq_disable;
Hans Verkuil461c1a72018-09-08 11:23:17 +02001589 }
Linus Walleij14250522014-03-25 10:40:18 +01001590 }
Linus Walleija0b66a72020-03-29 16:04:05 +02001591 gc->irq.irq_enable = NULL;
1592 gc->irq.irq_disable = NULL;
1593 gc->irq.chip = NULL;
Mika Westerberg79b804c2016-09-20 15:15:21 +03001594
Linus Walleija0b66a72020-03-29 16:04:05 +02001595 gpiochip_irqchip_free_valid_mask(gc);
Linus Walleij14250522014-03-25 10:40:18 +01001596}
1597
1598/**
Michael Walle6a45b0e2020-05-28 16:58:43 +02001599 * gpiochip_irqchip_add_domain() - adds an irqdomain to a gpiochip
1600 * @gc: the gpiochip to add the irqchip to
1601 * @domain: the irqdomain to add to the gpiochip
1602 *
1603 * This function adds an IRQ domain to the gpiochip.
1604 */
1605int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
1606 struct irq_domain *domain)
1607{
1608 if (!domain)
1609 return -EINVAL;
1610
1611 gc->to_irq = gpiochip_to_irq;
1612 gc->irq.domain = domain;
1613
1614 return 0;
1615}
1616EXPORT_SYMBOL_GPL(gpiochip_irqchip_add_domain);
1617
Linus Walleij14250522014-03-25 10:40:18 +01001618#else /* CONFIG_GPIOLIB_IRQCHIP */
1619
Linus Walleija0b66a72020-03-29 16:04:05 +02001620static inline int gpiochip_add_irqchip(struct gpio_chip *gc,
Andrew Lunn39c3fd52017-12-02 18:11:04 +01001621 struct lock_class_key *lock_key,
1622 struct lock_class_key *request_key)
Thierry Redinge0d89722017-11-07 19:15:54 +01001623{
1624 return 0;
1625}
Linus Walleija0b66a72020-03-29 16:04:05 +02001626static void gpiochip_irqchip_remove(struct gpio_chip *gc) {}
Andy Shevchenko9411e3a2019-10-09 17:34:44 +03001627
Linus Walleija0b66a72020-03-29 16:04:05 +02001628static inline int gpiochip_irqchip_init_hw(struct gpio_chip *gc)
Andy Shevchenko9411e3a2019-10-09 17:34:44 +03001629{
1630 return 0;
1631}
1632
Linus Walleija0b66a72020-03-29 16:04:05 +02001633static inline int gpiochip_irqchip_init_valid_mask(struct gpio_chip *gc)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001634{
1635 return 0;
1636}
Linus Walleija0b66a72020-03-29 16:04:05 +02001637static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gc)
Mika Westerberg79b804c2016-09-20 15:15:21 +03001638{ }
Linus Walleij14250522014-03-25 10:40:18 +01001639
1640#endif /* CONFIG_GPIOLIB_IRQCHIP */
1641
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001642/**
1643 * gpiochip_generic_request() - request the gpio function for a pin
Linus Walleija0b66a72020-03-29 16:04:05 +02001644 * @gc: the gpiochip owning the GPIO
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001645 * @offset: the offset of the GPIO to request for GPIO function
1646 */
Andy Shevchenko13daf482020-11-09 22:53:16 +02001647int gpiochip_generic_request(struct gpio_chip *gc, unsigned int offset)
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001648{
Thierry Reding89ad5562020-03-30 11:02:57 +02001649#ifdef CONFIG_PINCTRL
Linus Walleija0b66a72020-03-29 16:04:05 +02001650 if (list_empty(&gc->gpiodev->pin_ranges))
Thierry Reding89ad5562020-03-30 11:02:57 +02001651 return 0;
1652#endif
Thierry Reding2ab73c62020-03-19 13:27:29 +01001653
Linus Walleija0b66a72020-03-29 16:04:05 +02001654 return pinctrl_gpio_request(gc->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001655}
1656EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1657
1658/**
1659 * gpiochip_generic_free() - free the gpio function from a pin
Linus Walleija0b66a72020-03-29 16:04:05 +02001660 * @gc: the gpiochip to request the gpio function for
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001661 * @offset: the offset of the GPIO to free from GPIO function
1662 */
Andy Shevchenko13daf482020-11-09 22:53:16 +02001663void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset)
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001664{
Edmond Chung6dbbf842020-11-30 22:47:53 +00001665#ifdef CONFIG_PINCTRL
1666 if (list_empty(&gc->gpiodev->pin_ranges))
1667 return;
1668#endif
1669
Linus Walleija0b66a72020-03-29 16:04:05 +02001670 pinctrl_gpio_free(gc->gpiodev->base + offset);
Jonas Gorskic771c2f2015-10-11 17:34:15 +02001671}
1672EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1673
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001674/**
1675 * gpiochip_generic_config() - apply configuration for a pin
Linus Walleija0b66a72020-03-29 16:04:05 +02001676 * @gc: the gpiochip owning the GPIO
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001677 * @offset: the offset of the GPIO to apply the configuration
1678 * @config: the configuration to be applied
1679 */
Andy Shevchenko13daf482020-11-09 22:53:16 +02001680int gpiochip_generic_config(struct gpio_chip *gc, unsigned int offset,
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001681 unsigned long config)
1682{
Linus Walleija0b66a72020-03-29 16:04:05 +02001683 return pinctrl_gpio_set_config(gc->gpiodev->base + offset, config);
Mika Westerberg2956b5d2017-01-23 15:34:34 +03001684}
1685EXPORT_SYMBOL_GPL(gpiochip_generic_config);
1686
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301687#ifdef CONFIG_PINCTRL
Linus Walleij165adc92012-11-06 14:49:39 +01001688
Linus Walleij3f0f8672012-11-20 12:40:15 +01001689/**
Christian Ruppert586a87e2013-10-15 15:37:54 +02001690 * gpiochip_add_pingroup_range() - add a range for GPIO <-> pin mapping
Linus Walleija0b66a72020-03-29 16:04:05 +02001691 * @gc: the gpiochip to add the range for
Tomeu Vizosod32651f2015-06-17 15:42:11 +02001692 * @pctldev: the pin controller to map to
Christian Ruppert586a87e2013-10-15 15:37:54 +02001693 * @gpio_offset: the start offset in the current gpio_chip number space
1694 * @pin_group: name of the pin group inside the pin controller
Christian Lamparter973c1712018-05-21 22:57:39 +02001695 *
1696 * Calling this function directly from a DeviceTree-supported
1697 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
1698 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
1699 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Christian Ruppert586a87e2013-10-15 15:37:54 +02001700 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001701int gpiochip_add_pingroup_range(struct gpio_chip *gc,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001702 struct pinctrl_dev *pctldev,
1703 unsigned int gpio_offset, const char *pin_group)
1704{
1705 struct gpio_pin_range *pin_range;
Linus Walleija0b66a72020-03-29 16:04:05 +02001706 struct gpio_device *gdev = gc->gpiodev;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001707 int ret;
1708
1709 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
1710 if (!pin_range) {
Linus Walleija0b66a72020-03-29 16:04:05 +02001711 chip_err(gc, "failed to allocate pin ranges\n");
Christian Ruppert586a87e2013-10-15 15:37:54 +02001712 return -ENOMEM;
1713 }
1714
1715 /* Use local offset as range ID */
1716 pin_range->range.id = gpio_offset;
Linus Walleija0b66a72020-03-29 16:04:05 +02001717 pin_range->range.gc = gc;
1718 pin_range->range.name = gc->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001719 pin_range->range.base = gdev->base + gpio_offset;
Christian Ruppert586a87e2013-10-15 15:37:54 +02001720 pin_range->pctldev = pctldev;
1721
1722 ret = pinctrl_get_group_pins(pctldev, pin_group,
1723 &pin_range->range.pins,
1724 &pin_range->range.npins);
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001725 if (ret < 0) {
1726 kfree(pin_range);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001727 return ret;
Michal Nazarewicz61c63752013-11-13 21:20:39 +01001728 }
Christian Ruppert586a87e2013-10-15 15:37:54 +02001729
1730 pinctrl_add_gpio_range(pctldev, &pin_range->range);
1731
Linus Walleija0b66a72020-03-29 16:04:05 +02001732 chip_dbg(gc, "created GPIO range %d->%d ==> %s PINGRP %s\n",
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001733 gpio_offset, gpio_offset + pin_range->range.npins - 1,
Christian Ruppert586a87e2013-10-15 15:37:54 +02001734 pinctrl_dev_get_devname(pctldev), pin_group);
1735
Linus Walleij20ec3e32016-02-11 11:03:06 +01001736 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Christian Ruppert586a87e2013-10-15 15:37:54 +02001737
1738 return 0;
1739}
1740EXPORT_SYMBOL_GPL(gpiochip_add_pingroup_range);
1741
1742/**
Linus Walleij3f0f8672012-11-20 12:40:15 +01001743 * gpiochip_add_pin_range() - add a range for GPIO <-> pin mapping
Linus Walleija0b66a72020-03-29 16:04:05 +02001744 * @gc: the gpiochip to add the range for
Thierry Reding950d55f52017-07-24 16:57:22 +02001745 * @pinctl_name: the dev_name() of the pin controller to map to
Linus Walleij316511c2012-11-21 08:48:09 +01001746 * @gpio_offset: the start offset in the current gpio_chip number space
1747 * @pin_offset: the start offset in the pin controller number space
Linus Walleij3f0f8672012-11-20 12:40:15 +01001748 * @npins: the number of pins from the offset of each pin space (GPIO and
1749 * pin controller) to accumulate in this range
Thierry Reding950d55f52017-07-24 16:57:22 +02001750 *
1751 * Returns:
1752 * 0 on success, or a negative error-code on failure.
Christian Lamparter973c1712018-05-21 22:57:39 +02001753 *
1754 * Calling this function directly from a DeviceTree-supported
1755 * pinctrl driver is DEPRECATED. Please see Section 2.1 of
1756 * Documentation/devicetree/bindings/gpio/gpio.txt on how to
1757 * bind pinctrl and gpio drivers via the "gpio-ranges" property.
Linus Walleij3f0f8672012-11-20 12:40:15 +01001758 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001759int gpiochip_add_pin_range(struct gpio_chip *gc, const char *pinctl_name,
Linus Walleij316511c2012-11-21 08:48:09 +01001760 unsigned int gpio_offset, unsigned int pin_offset,
Linus Walleij3f0f8672012-11-20 12:40:15 +01001761 unsigned int npins)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301762{
1763 struct gpio_pin_range *pin_range;
Linus Walleija0b66a72020-03-29 16:04:05 +02001764 struct gpio_device *gdev = gc->gpiodev;
Axel Linb4d4b1f2012-11-21 14:33:56 +08001765 int ret;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301766
Linus Walleij3f0f8672012-11-20 12:40:15 +01001767 pin_range = kzalloc(sizeof(*pin_range), GFP_KERNEL);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301768 if (!pin_range) {
Linus Walleija0b66a72020-03-29 16:04:05 +02001769 chip_err(gc, "failed to allocate pin ranges\n");
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001770 return -ENOMEM;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301771 }
1772
Linus Walleij3f0f8672012-11-20 12:40:15 +01001773 /* Use local offset as range ID */
Linus Walleij316511c2012-11-21 08:48:09 +01001774 pin_range->range.id = gpio_offset;
Linus Walleija0b66a72020-03-29 16:04:05 +02001775 pin_range->range.gc = gc;
1776 pin_range->range.name = gc->label;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001777 pin_range->range.base = gdev->base + gpio_offset;
Linus Walleij316511c2012-11-21 08:48:09 +01001778 pin_range->range.pin_base = pin_offset;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301779 pin_range->range.npins = npins;
Linus Walleij192c3692012-11-20 14:03:37 +01001780 pin_range->pctldev = pinctrl_find_and_add_gpio_range(pinctl_name,
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301781 &pin_range->range);
Linus Walleij8f23ca12012-11-20 14:56:25 +01001782 if (IS_ERR(pin_range->pctldev)) {
Axel Linb4d4b1f2012-11-21 14:33:56 +08001783 ret = PTR_ERR(pin_range->pctldev);
Linus Walleija0b66a72020-03-29 16:04:05 +02001784 chip_err(gc, "could not create pin range\n");
Linus Walleij3f0f8672012-11-20 12:40:15 +01001785 kfree(pin_range);
Axel Linb4d4b1f2012-11-21 14:33:56 +08001786 return ret;
Linus Walleij3f0f8672012-11-20 12:40:15 +01001787 }
Linus Walleija0b66a72020-03-29 16:04:05 +02001788 chip_dbg(gc, "created GPIO range %d->%d ==> %s PIN %d->%d\n",
Andy Shevchenko1a2a99c2013-12-05 11:26:24 +02001789 gpio_offset, gpio_offset + npins - 1,
Linus Walleij316511c2012-11-21 08:48:09 +01001790 pinctl_name,
1791 pin_offset, pin_offset + npins - 1);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301792
Linus Walleij20ec3e32016-02-11 11:03:06 +01001793 list_add_tail(&pin_range->node, &gdev->pin_ranges);
Linus Walleij1e63d7b2012-11-06 16:03:35 +01001794
1795 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301796}
Linus Walleij165adc92012-11-06 14:49:39 +01001797EXPORT_SYMBOL_GPL(gpiochip_add_pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301798
Linus Walleij3f0f8672012-11-20 12:40:15 +01001799/**
1800 * gpiochip_remove_pin_ranges() - remove all the GPIO <-> pin mappings
Linus Walleija0b66a72020-03-29 16:04:05 +02001801 * @gc: the chip to remove all the mappings for
Linus Walleij3f0f8672012-11-20 12:40:15 +01001802 */
Linus Walleija0b66a72020-03-29 16:04:05 +02001803void gpiochip_remove_pin_ranges(struct gpio_chip *gc)
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301804{
1805 struct gpio_pin_range *pin_range, *tmp;
Linus Walleija0b66a72020-03-29 16:04:05 +02001806 struct gpio_device *gdev = gc->gpiodev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301807
Linus Walleij20ec3e32016-02-11 11:03:06 +01001808 list_for_each_entry_safe(pin_range, tmp, &gdev->pin_ranges, node) {
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301809 list_del(&pin_range->node);
1810 pinctrl_remove_gpio_range(pin_range->pctldev,
1811 &pin_range->range);
Linus Walleij3f0f8672012-11-20 12:40:15 +01001812 kfree(pin_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301813 }
1814}
Linus Walleij165adc92012-11-06 14:49:39 +01001815EXPORT_SYMBOL_GPL(gpiochip_remove_pin_ranges);
1816
1817#endif /* CONFIG_PINCTRL */
Shiraz Hashimf23f1512012-10-27 15:21:36 +05301818
David Brownelld2876d02008-02-04 22:28:20 -08001819/* These "optional" allocation calls help prevent drivers from stomping
1820 * on each other, and help provide better diagnostics in debugfs.
1821 * They're called even less than the "set direction" calls.
1822 */
Linus Walleijfac9d882017-09-26 20:58:28 +02001823static int gpiod_request_commit(struct gpio_desc *desc, const char *label)
David Brownelld2876d02008-02-04 22:28:20 -08001824{
Linus Walleija0b66a72020-03-29 16:04:05 +02001825 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijd377f562019-07-16 11:11:45 +02001826 int ret;
David Brownelld2876d02008-02-04 22:28:20 -08001827 unsigned long flags;
Biju Das3789f5a2018-08-07 08:15:18 +01001828 unsigned offset;
David Brownelld2876d02008-02-04 22:28:20 -08001829
Muchun Song18534df2018-11-01 21:12:50 +08001830 if (label) {
1831 label = kstrdup_const(label, GFP_KERNEL);
1832 if (!label)
1833 return -ENOMEM;
1834 }
1835
David Brownelld2876d02008-02-04 22:28:20 -08001836 spin_lock_irqsave(&gpio_lock, flags);
1837
David Brownelld2876d02008-02-04 22:28:20 -08001838 /* NOTE: gpio_request() can be called in early boot,
David Brownell35e8bb52008-10-15 22:03:16 -07001839 * before IRQs are enabled, for non-sleeping (SOC) GPIOs.
David Brownelld2876d02008-02-04 22:28:20 -08001840 */
1841
1842 if (test_and_set_bit(FLAG_REQUESTED, &desc->flags) == 0) {
1843 desc_set_label(desc, label ? : "?");
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07001844 } else {
Linus Walleijd377f562019-07-16 11:11:45 +02001845 ret = -EBUSY;
Andy Shevchenko95d9f842020-10-21 14:25:37 +03001846 goto out_free_unlock;
David Brownell35e8bb52008-10-15 22:03:16 -07001847 }
1848
Linus Walleija0b66a72020-03-29 16:04:05 +02001849 if (gc->request) {
1850 /* gc->request may sleep */
David Brownell35e8bb52008-10-15 22:03:16 -07001851 spin_unlock_irqrestore(&gpio_lock, flags);
Biju Das3789f5a2018-08-07 08:15:18 +01001852 offset = gpio_chip_hwgpio(desc);
Linus Walleija0b66a72020-03-29 16:04:05 +02001853 if (gpiochip_line_is_valid(gc, offset))
1854 ret = gc->request(gc, offset);
Biju Das3789f5a2018-08-07 08:15:18 +01001855 else
Linus Walleijd377f562019-07-16 11:11:45 +02001856 ret = -EINVAL;
David Brownell35e8bb52008-10-15 22:03:16 -07001857 spin_lock_irqsave(&gpio_lock, flags);
1858
Andy Shevchenko8bbff392020-10-21 14:25:36 +03001859 if (ret) {
David Brownell35e8bb52008-10-15 22:03:16 -07001860 desc_set_label(desc, NULL);
David Brownell35e8bb52008-10-15 22:03:16 -07001861 clear_bit(FLAG_REQUESTED, &desc->flags);
Andy Shevchenko95d9f842020-10-21 14:25:37 +03001862 goto out_free_unlock;
David Brownell35e8bb52008-10-15 22:03:16 -07001863 }
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -07001864 }
Linus Walleija0b66a72020-03-29 16:04:05 +02001865 if (gc->get_direction) {
1866 /* gc->get_direction may sleep */
Mathias Nyman80b0a602012-10-24 17:25:27 +03001867 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09001868 gpiod_get_direction(desc);
Mathias Nyman80b0a602012-10-24 17:25:27 +03001869 spin_lock_irqsave(&gpio_lock, flags);
1870 }
Mika Westerberg77c2d792014-03-10 14:54:50 +02001871 spin_unlock_irqrestore(&gpio_lock, flags);
Andy Shevchenko95d9f842020-10-21 14:25:37 +03001872 return 0;
1873
1874out_free_unlock:
1875 spin_unlock_irqrestore(&gpio_lock, flags);
1876 kfree_const(label);
Linus Walleijd377f562019-07-16 11:11:45 +02001877 return ret;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001878}
1879
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001880/*
1881 * This descriptor validation needs to be inserted verbatim into each
1882 * function taking a descriptor, so we need to use a preprocessor
Linus Walleij54d77192016-05-30 16:48:39 +02001883 * macro to avoid endless duplication. If the desc is NULL it is an
1884 * optional GPIO and calls should just bail out.
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001885 */
Rasmus Villemoesa746a232017-12-21 01:27:04 +01001886static int validate_desc(const struct gpio_desc *desc, const char *func)
1887{
1888 if (!desc)
1889 return 0;
1890 if (IS_ERR(desc)) {
1891 pr_warn("%s: invalid GPIO (errorpointer)\n", func);
1892 return PTR_ERR(desc);
1893 }
1894 if (!desc->gdev) {
1895 pr_warn("%s: invalid GPIO (no device)\n", func);
1896 return -EINVAL;
1897 }
1898 if (!desc->gdev->chip) {
1899 dev_warn(&desc->gdev->dev,
1900 "%s: backing chip is gone\n", func);
1901 return 0;
1902 }
1903 return 1;
1904}
1905
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001906#define VALIDATE_DESC(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01001907 int __valid = validate_desc(desc, __func__); \
1908 if (__valid <= 0) \
1909 return __valid; \
1910 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001911
1912#define VALIDATE_DESC_VOID(desc) do { \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01001913 int __valid = validate_desc(desc, __func__); \
1914 if (__valid <= 0) \
Linus Walleij54d77192016-05-30 16:48:39 +02001915 return; \
Rasmus Villemoesa746a232017-12-21 01:27:04 +01001916 } while (0)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001917
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09001918int gpiod_request(struct gpio_desc *desc, const char *label)
Mika Westerberg77c2d792014-03-10 14:54:50 +02001919{
Linus Walleijd377f562019-07-16 11:11:45 +02001920 int ret = -EPROBE_DEFER;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001921 struct gpio_device *gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001922
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001923 VALIDATE_DESC(desc);
1924 gdev = desc->gdev;
Mika Westerberg77c2d792014-03-10 14:54:50 +02001925
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001926 if (try_module_get(gdev->owner)) {
Linus Walleijd377f562019-07-16 11:11:45 +02001927 ret = gpiod_request_commit(desc, label);
Andy Shevchenko8bbff392020-10-21 14:25:36 +03001928 if (ret)
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001929 module_put(gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01001930 else
1931 get_device(&gdev->dev);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001932 }
1933
Linus Walleijd377f562019-07-16 11:11:45 +02001934 if (ret)
1935 gpiod_dbg(desc, "%s: status %d\n", __func__, ret);
Mika Westerberg77c2d792014-03-10 14:54:50 +02001936
Linus Walleijd377f562019-07-16 11:11:45 +02001937 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08001938}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001939
Linus Walleijfac9d882017-09-26 20:58:28 +02001940static bool gpiod_free_commit(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08001941{
Mika Westerberg77c2d792014-03-10 14:54:50 +02001942 bool ret = false;
David Brownelld2876d02008-02-04 22:28:20 -08001943 unsigned long flags;
Linus Walleija0b66a72020-03-29 16:04:05 +02001944 struct gpio_chip *gc;
David Brownelld2876d02008-02-04 22:28:20 -08001945
Uwe Kleine-König3d599d12008-10-15 22:03:12 -07001946 might_sleep();
1947
Alexandre Courbot372e7222013-02-03 01:29:29 +09001948 gpiod_unexport(desc);
David Brownelld8f388d82008-07-25 01:46:07 -07001949
David Brownelld2876d02008-02-04 22:28:20 -08001950 spin_lock_irqsave(&gpio_lock, flags);
1951
Linus Walleija0b66a72020-03-29 16:04:05 +02001952 gc = desc->gdev->chip;
1953 if (gc && test_bit(FLAG_REQUESTED, &desc->flags)) {
1954 if (gc->free) {
David Brownell35e8bb52008-10-15 22:03:16 -07001955 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleija0b66a72020-03-29 16:04:05 +02001956 might_sleep_if(gc->can_sleep);
1957 gc->free(gc, gpio_chip_hwgpio(desc));
David Brownell35e8bb52008-10-15 22:03:16 -07001958 spin_lock_irqsave(&gpio_lock, flags);
1959 }
Muchun Song18534df2018-11-01 21:12:50 +08001960 kfree_const(desc->label);
David Brownelld2876d02008-02-04 22:28:20 -08001961 desc_set_label(desc, NULL);
Jani Nikula07697462009-12-15 16:46:20 -08001962 clear_bit(FLAG_ACTIVE_LOW, &desc->flags);
David Brownell35e8bb52008-10-15 22:03:16 -07001963 clear_bit(FLAG_REQUESTED, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05301964 clear_bit(FLAG_OPEN_DRAIN, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05301965 clear_bit(FLAG_OPEN_SOURCE, &desc->flags);
Drew Fustini9225d512019-11-05 10:04:23 +08001966 clear_bit(FLAG_PULL_UP, &desc->flags);
1967 clear_bit(FLAG_PULL_DOWN, &desc->flags);
Kent Gibson2148ad72019-11-05 10:04:25 +08001968 clear_bit(FLAG_BIAS_DISABLE, &desc->flags);
Kent Gibson73e03412020-09-28 08:27:56 +08001969 clear_bit(FLAG_EDGE_RISING, &desc->flags);
1970 clear_bit(FLAG_EDGE_FALLING, &desc->flags);
Benoit Parrotf625d462015-02-02 11:44:44 -06001971 clear_bit(FLAG_IS_HOGGED, &desc->flags);
Geert Uytterhoeven63636d92020-02-20 14:01:49 +01001972#ifdef CONFIG_OF_DYNAMIC
1973 desc->hog = NULL;
1974#endif
Kent Gibson65cff702020-09-28 08:27:59 +08001975#ifdef CONFIG_GPIO_CDEV
1976 WRITE_ONCE(desc->debounce_period_us, 0);
1977#endif
Mika Westerberg77c2d792014-03-10 14:54:50 +02001978 ret = true;
1979 }
David Brownelld2876d02008-02-04 22:28:20 -08001980
1981 spin_unlock_irqrestore(&gpio_lock, flags);
Kent Gibson6accc372020-07-08 12:15:51 +08001982 blocking_notifier_call_chain(&desc->gdev->notifier,
1983 GPIOLINE_CHANGED_RELEASED, desc);
Bartosz Golaszewski51c10642019-11-22 15:19:21 +01001984
Mika Westerberg77c2d792014-03-10 14:54:50 +02001985 return ret;
1986}
1987
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +09001988void gpiod_free(struct gpio_desc *desc)
Mika Westerberg77c2d792014-03-10 14:54:50 +02001989{
Linus Walleijfac9d882017-09-26 20:58:28 +02001990 if (desc && desc->gdev && gpiod_free_commit(desc)) {
Linus Walleijfdeb8e12016-02-10 10:57:36 +01001991 module_put(desc->gdev->owner);
Linus Walleij33a68e82016-02-11 10:28:44 +01001992 put_device(&desc->gdev->dev);
1993 } else {
Mika Westerberg77c2d792014-03-10 14:54:50 +02001994 WARN_ON(extra_checks);
Linus Walleij33a68e82016-02-11 10:28:44 +01001995 }
David Brownelld2876d02008-02-04 22:28:20 -08001996}
Alexandre Courbot372e7222013-02-03 01:29:29 +09001997
David Brownelld2876d02008-02-04 22:28:20 -08001998/**
1999 * gpiochip_is_requested - return string iff signal was requested
Linus Walleija0b66a72020-03-29 16:04:05 +02002000 * @gc: controller managing the signal
David Brownelld2876d02008-02-04 22:28:20 -08002001 * @offset: of signal within controller's 0..(ngpio - 1) range
2002 *
2003 * Returns NULL if the GPIO is not currently requested, else a string.
Alexandre Courbot9c8318f2014-07-01 14:45:14 +09002004 * The string returned is the label passed to gpio_request(); if none has been
2005 * passed it is a meaningless, non-NULL constant.
David Brownelld2876d02008-02-04 22:28:20 -08002006 *
2007 * This function is for use by GPIO controller drivers. The label can
2008 * help with diagnostics, and knowing that the signal is used as a GPIO
2009 * can help avoid accidentally multiplexing it to another controller.
2010 */
Andy Shevchenko13daf482020-11-09 22:53:16 +02002011const char *gpiochip_is_requested(struct gpio_chip *gc, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08002012{
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002013 struct gpio_desc *desc;
David Brownelld2876d02008-02-04 22:28:20 -08002014
Linus Walleija0b66a72020-03-29 16:04:05 +02002015 if (offset >= gc->ngpio)
David Brownelld2876d02008-02-04 22:28:20 -08002016 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002017
Linus Walleija0b66a72020-03-29 16:04:05 +02002018 desc = gpiochip_get_desc(gc, offset);
Bartosz Golaszewski1739a2d2020-02-19 10:47:02 +01002019 if (IS_ERR(desc))
2020 return NULL;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +09002021
Alexandre Courbot372e7222013-02-03 01:29:29 +09002022 if (test_bit(FLAG_REQUESTED, &desc->flags) == 0)
David Brownelld2876d02008-02-04 22:28:20 -08002023 return NULL;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002024 return desc->label;
David Brownelld2876d02008-02-04 22:28:20 -08002025}
2026EXPORT_SYMBOL_GPL(gpiochip_is_requested);
2027
Mika Westerberg77c2d792014-03-10 14:54:50 +02002028/**
2029 * gpiochip_request_own_desc - Allow GPIO chip to request its own descriptor
Linus Walleija0b66a72020-03-29 16:04:05 +02002030 * @gc: GPIO chip
Thierry Reding950d55f52017-07-24 16:57:22 +02002031 * @hwnum: hardware number of the GPIO for which to request the descriptor
Mika Westerberg77c2d792014-03-10 14:54:50 +02002032 * @label: label for the GPIO
Linus Walleij5923ea62019-04-26 14:40:18 +02002033 * @lflags: lookup flags for this GPIO or 0 if default, this can be used to
2034 * specify things like line inversion semantics with the machine flags
2035 * such as GPIO_OUT_LOW
2036 * @dflags: descriptor request flags for this GPIO or 0 if default, this
2037 * can be used to specify consumer semantics such as open drain
Mika Westerberg77c2d792014-03-10 14:54:50 +02002038 *
2039 * Function allows GPIO chip drivers to request and use their own GPIO
2040 * descriptors via gpiolib API. Difference to gpiod_request() is that this
2041 * function will not increase reference count of the GPIO chip module. This
2042 * allows the GPIO chip module to be unloaded as needed (we assume that the
2043 * GPIO chip driver handles freeing the GPIOs it has requested).
Thierry Reding950d55f52017-07-24 16:57:22 +02002044 *
2045 * Returns:
2046 * A pointer to the GPIO descriptor, or an ERR_PTR()-encoded negative error
2047 * code on failure.
Mika Westerberg77c2d792014-03-10 14:54:50 +02002048 */
Linus Walleija0b66a72020-03-29 16:04:05 +02002049struct gpio_desc *gpiochip_request_own_desc(struct gpio_chip *gc,
Bartosz Golaszewski06863622019-12-24 13:06:59 +01002050 unsigned int hwnum,
Linus Walleij21abf102018-09-04 13:31:45 +02002051 const char *label,
Linus Walleij5923ea62019-04-26 14:40:18 +02002052 enum gpio_lookup_flags lflags,
2053 enum gpiod_flags dflags)
Mika Westerberg77c2d792014-03-10 14:54:50 +02002054{
Linus Walleija0b66a72020-03-29 16:04:05 +02002055 struct gpio_desc *desc = gpiochip_get_desc(gc, hwnum);
Linus Walleijd377f562019-07-16 11:11:45 +02002056 int ret;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002057
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002058 if (IS_ERR(desc)) {
Linus Walleija0b66a72020-03-29 16:04:05 +02002059 chip_err(gc, "failed to get GPIO descriptor\n");
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002060 return desc;
2061 }
2062
Linus Walleijd377f562019-07-16 11:11:45 +02002063 ret = gpiod_request_commit(desc, label);
2064 if (ret < 0)
2065 return ERR_PTR(ret);
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002066
Linus Walleijd377f562019-07-16 11:11:45 +02002067 ret = gpiod_configure_flags(desc, label, lflags, dflags);
2068 if (ret) {
Linus Walleija0b66a72020-03-29 16:04:05 +02002069 chip_err(gc, "setup of own GPIO %s failed\n", label);
Linus Walleij21abf102018-09-04 13:31:45 +02002070 gpiod_free_commit(desc);
Linus Walleijd377f562019-07-16 11:11:45 +02002071 return ERR_PTR(ret);
Linus Walleij21abf102018-09-04 13:31:45 +02002072 }
2073
Alexandre Courbotabdc08a2014-08-19 10:06:09 -07002074 return desc;
Mika Westerberg77c2d792014-03-10 14:54:50 +02002075}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002076EXPORT_SYMBOL_GPL(gpiochip_request_own_desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002077
2078/**
2079 * gpiochip_free_own_desc - Free GPIO requested by the chip driver
2080 * @desc: GPIO descriptor to free
2081 *
2082 * Function frees the given GPIO requested previously with
2083 * gpiochip_request_own_desc().
2084 */
2085void gpiochip_free_own_desc(struct gpio_desc *desc)
2086{
2087 if (desc)
Linus Walleijfac9d882017-09-26 20:58:28 +02002088 gpiod_free_commit(desc);
Mika Westerberg77c2d792014-03-10 14:54:50 +02002089}
Guenter Roeckf7d4ad92014-07-22 08:01:01 -07002090EXPORT_SYMBOL_GPL(gpiochip_free_own_desc);
David Brownelld2876d02008-02-04 22:28:20 -08002091
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002092/*
2093 * Drivers MUST set GPIO direction before making get/set calls. In
David Brownelld2876d02008-02-04 22:28:20 -08002094 * some cases this is done in early boot, before IRQs are enabled.
2095 *
2096 * As a rule these aren't called more than once (except for drivers
2097 * using the open-drain emulation idiom) so these are natural places
2098 * to accumulate extra debugging checks. Note that we can't (yet)
2099 * rely on gpio_request() having been called beforehand.
2100 */
2101
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002102static int gpio_do_set_config(struct gpio_chip *gc, unsigned int offset,
Bartosz Golaszewski62adc6f2020-02-03 14:16:16 +01002103 unsigned long config)
Thomas Petazzoni71479782019-02-07 17:28:56 +01002104{
Bartosz Golaszewskid90f3682019-12-24 13:06:58 +01002105 if (!gc->set_config)
2106 return -ENOTSUPP;
Thomas Petazzoni71479782019-02-07 17:28:56 +01002107
Bartosz Golaszewski62adc6f2020-02-03 14:16:16 +01002108 return gc->set_config(gc, offset, config);
Thomas Petazzoni71479782019-02-07 17:28:56 +01002109}
2110
Andy Shevchenko0c4d8662020-11-09 22:53:20 +02002111static int gpio_set_config_with_argument(struct gpio_desc *desc,
2112 enum pin_config_param mode,
2113 u32 argument)
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002114{
Linus Walleija0b66a72020-03-29 16:04:05 +02002115 struct gpio_chip *gc = desc->gdev->chip;
Bartosz Golaszewski91b4ea52020-02-03 14:03:47 +01002116 unsigned long config;
Andy Shevchenko0c4d8662020-11-09 22:53:20 +02002117
2118 config = pinconf_to_config_packed(mode, argument);
2119 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
2120}
2121
Andy Shevchenkobaca3b12020-11-11 20:49:30 +02002122static int gpio_set_config_with_argument_optional(struct gpio_desc *desc,
2123 enum pin_config_param mode,
2124 u32 argument)
2125{
2126 struct device *dev = &desc->gdev->dev;
2127 int gpio = gpio_chip_hwgpio(desc);
2128 int ret;
2129
2130 ret = gpio_set_config_with_argument(desc, mode, argument);
2131 if (ret != -ENOTSUPP)
2132 return ret;
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002133
2134 switch (mode) {
Andy Shevchenkobaca3b12020-11-11 20:49:30 +02002135 case PIN_CONFIG_PERSIST_STATE:
2136 dev_dbg(dev, "Persistence not supported for GPIO %d\n", gpio);
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002137 break;
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002138 default:
Andy Shevchenkobaca3b12020-11-11 20:49:30 +02002139 break;
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002140 }
2141
Andy Shevchenkobaca3b12020-11-11 20:49:30 +02002142 return 0;
2143}
2144
Andy Shevchenko0c4d8662020-11-09 22:53:20 +02002145static int gpio_set_config(struct gpio_desc *desc, enum pin_config_param mode)
2146{
Andy Shevchenko6aa32ad2020-11-09 22:53:21 +02002147 return gpio_set_config_with_argument(desc, mode, 0);
Bartosz Golaszewskid99f8872020-02-03 14:03:37 +01002148}
2149
Geert Uytterhoeven5f4bf172020-03-25 11:04:39 +01002150static int gpio_set_bias(struct gpio_desc *desc)
Kent Gibson2148ad72019-11-05 10:04:25 +08002151{
Andy Shevchenko9ef62932020-10-09 21:43:59 +03002152 enum pin_config_param bias;
Andy Shevchenko6aa32ad2020-11-09 22:53:21 +02002153 unsigned int arg;
Kent Gibson2148ad72019-11-05 10:04:25 +08002154
2155 if (test_bit(FLAG_BIAS_DISABLE, &desc->flags))
2156 bias = PIN_CONFIG_BIAS_DISABLE;
2157 else if (test_bit(FLAG_PULL_UP, &desc->flags))
2158 bias = PIN_CONFIG_BIAS_PULL_UP;
2159 else if (test_bit(FLAG_PULL_DOWN, &desc->flags))
2160 bias = PIN_CONFIG_BIAS_PULL_DOWN;
Andy Shevchenko9ef62932020-10-09 21:43:59 +03002161 else
2162 return 0;
Kent Gibson2148ad72019-11-05 10:04:25 +08002163
Andy Shevchenko6aa32ad2020-11-09 22:53:21 +02002164 switch (bias) {
2165 case PIN_CONFIG_BIAS_PULL_DOWN:
2166 case PIN_CONFIG_BIAS_PULL_UP:
2167 arg = 1;
2168 break;
2169
2170 default:
2171 arg = 0;
2172 break;
Kent Gibson2148ad72019-11-05 10:04:25 +08002173 }
Andy Shevchenko6aa32ad2020-11-09 22:53:21 +02002174
Andy Shevchenkobaca3b12020-11-11 20:49:30 +02002175 return gpio_set_config_with_argument_optional(desc, bias, arg);
Kent Gibson2148ad72019-11-05 10:04:25 +08002176}
2177
Andy Shevchenkof725edd2020-11-09 22:53:23 +02002178int gpio_set_debounce_timeout(struct gpio_desc *desc, unsigned int debounce)
2179{
2180 return gpio_set_config_with_argument_optional(desc,
2181 PIN_CONFIG_INPUT_DEBOUNCE,
2182 debounce);
David Brownelld2876d02008-02-04 22:28:20 -08002183}
2184
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002185/**
2186 * gpiod_direction_input - set the GPIO direction to input
2187 * @desc: GPIO to set to input
2188 *
2189 * Set the direction of the passed GPIO to input, such as gpiod_get_value() can
2190 * be called safely on it.
2191 *
2192 * Return 0 in case of success, else an error code.
2193 */
2194int gpiod_direction_input(struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002195{
Linus Walleija0b66a72020-03-29 16:04:05 +02002196 struct gpio_chip *gc;
Linus Walleijd377f562019-07-16 11:11:45 +02002197 int ret = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002198
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002199 VALIDATE_DESC(desc);
Linus Walleija0b66a72020-03-29 16:04:05 +02002200 gc = desc->gdev->chip;
Alexandre Courbotbcabdef2013-02-15 14:46:14 +09002201
Linus Walleije48d1942018-09-25 09:54:14 +02002202 /*
2203 * It is legal to have no .get() and .direction_input() specified if
2204 * the chip is output-only, but you can't specify .direction_input()
2205 * and not support the .get() operation, that doesn't make sense.
2206 */
Linus Walleija0b66a72020-03-29 16:04:05 +02002207 if (!gc->get && gc->direction_input) {
Mark Brown6424de52013-09-09 10:33:49 +01002208 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002209 "%s: missing get() but have direction_input()\n",
2210 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002211 return -EIO;
2212 }
2213
Linus Walleije48d1942018-09-25 09:54:14 +02002214 /*
2215 * If we have a .direction_input() callback, things are simple,
2216 * just call it. Else we are some input-only chip so try to check the
2217 * direction (if .get_direction() is supported) else we silently
2218 * assume we are in input mode after this.
2219 */
Linus Walleija0b66a72020-03-29 16:04:05 +02002220 if (gc->direction_input) {
2221 ret = gc->direction_input(gc, gpio_chip_hwgpio(desc));
2222 } else if (gc->get_direction &&
2223 (gc->get_direction(gc, gpio_chip_hwgpio(desc)) != 1)) {
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002224 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002225 "%s: missing direction_input() operation and line is output\n",
2226 __func__);
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002227 return -EIO;
2228 }
Kent Gibson2148ad72019-11-05 10:04:25 +08002229 if (ret == 0) {
David Brownelld2876d02008-02-04 22:28:20 -08002230 clear_bit(FLAG_IS_OUT, &desc->flags);
Geert Uytterhoeven5f4bf172020-03-25 11:04:39 +01002231 ret = gpio_set_bias(desc);
Kent Gibson2148ad72019-11-05 10:04:25 +08002232 }
Thomas Petazzonid4499912019-02-07 17:28:58 +01002233
Linus Walleijd377f562019-07-16 11:11:45 +02002234 trace_gpio_direction(desc_to_gpio(desc), 1, ret);
Alexandre Courbotd82da792014-07-22 16:17:43 +09002235
Linus Walleijd377f562019-07-16 11:11:45 +02002236 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002237}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002238EXPORT_SYMBOL_GPL(gpiod_direction_input);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002239
Linus Walleijfac9d882017-09-26 20:58:28 +02002240static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
David Brownelld2876d02008-02-04 22:28:20 -08002241{
Linus Walleijc663e5f2016-03-22 10:51:16 +01002242 struct gpio_chip *gc = desc->gdev->chip;
Linus Walleijad177312016-11-13 23:02:44 +01002243 int val = !!value;
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002244 int ret = 0;
David Brownelld2876d02008-02-04 22:28:20 -08002245
Linus Walleije48d1942018-09-25 09:54:14 +02002246 /*
2247 * It's OK not to specify .direction_output() if the gpiochip is
2248 * output-only, but if there is then not even a .set() operation it
2249 * is pretty tricky to drive the output line.
2250 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002251 if (!gc->set && !gc->direction_output) {
Mark Brown6424de52013-09-09 10:33:49 +01002252 gpiod_warn(desc,
Linus Walleije48d1942018-09-25 09:54:14 +02002253 "%s: missing set() and direction_output() operations\n",
2254 __func__);
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002255 return -EIO;
2256 }
2257
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002258 if (gc->direction_output) {
2259 ret = gc->direction_output(gc, gpio_chip_hwgpio(desc), val);
2260 } else {
Linus Walleije48d1942018-09-25 09:54:14 +02002261 /* Check that we are in output mode if we can */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002262 if (gc->get_direction &&
2263 gc->get_direction(gc, gpio_chip_hwgpio(desc))) {
2264 gpiod_warn(desc,
2265 "%s: missing direction_output() operation\n",
2266 __func__);
2267 return -EIO;
2268 }
Linus Walleije48d1942018-09-25 09:54:14 +02002269 /*
2270 * If we can't actively set the direction, we are some
2271 * output-only chip, so just drive the output as desired.
2272 */
Ricardo Ribalda Delgadoae9847f2018-09-21 12:36:03 +02002273 gc->set(gc, gpio_chip_hwgpio(desc), val);
2274 }
2275
Linus Walleijc663e5f2016-03-22 10:51:16 +01002276 if (!ret)
David Brownelld2876d02008-02-04 22:28:20 -08002277 set_bit(FLAG_IS_OUT, &desc->flags);
Linus Walleijad177312016-11-13 23:02:44 +01002278 trace_gpio_value(desc_to_gpio(desc), 0, val);
Linus Walleijc663e5f2016-03-22 10:51:16 +01002279 trace_gpio_direction(desc_to_gpio(desc), 0, ret);
2280 return ret;
David Brownelld2876d02008-02-04 22:28:20 -08002281}
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002282
2283/**
2284 * gpiod_direction_output_raw - set the GPIO direction to output
2285 * @desc: GPIO to set to output
2286 * @value: initial output value of the GPIO
2287 *
2288 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2289 * be called safely on it. The initial value of the output must be specified
2290 * as raw value on the physical line without regard for the ACTIVE_LOW status.
2291 *
2292 * Return 0 in case of success, else an error code.
2293 */
2294int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
2295{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002296 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02002297 return gpiod_direction_output_raw_commit(desc, value);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002298}
2299EXPORT_SYMBOL_GPL(gpiod_direction_output_raw);
2300
2301/**
Rahul Bedarkar90df4fe2014-02-08 11:55:25 +05302302 * gpiod_direction_output - set the GPIO direction to output
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002303 * @desc: GPIO to set to output
2304 * @value: initial output value of the GPIO
2305 *
2306 * Set the direction of the passed GPIO to output, such as gpiod_set_value() can
2307 * be called safely on it. The initial value of the output must be specified
2308 * as the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
2309 * account.
2310 *
2311 * Return 0 in case of success, else an error code.
2312 */
2313int gpiod_direction_output(struct gpio_desc *desc, int value)
2314{
Linus Walleij02e47982017-09-26 21:20:23 +02002315 int ret;
2316
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002317 VALIDATE_DESC(desc);
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002318 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2319 value = !value;
Linus Walleijad177312016-11-13 23:02:44 +01002320 else
2321 value = !!value;
Linus Walleij02e47982017-09-26 21:20:23 +02002322
Hans Verkuil4e9439d2018-09-08 11:23:16 +02002323 /* GPIOs used for enabled IRQs shall not be set as output */
2324 if (test_bit(FLAG_USED_AS_IRQ, &desc->flags) &&
2325 test_bit(FLAG_IRQ_IS_ENABLED, &desc->flags)) {
Linus Walleij02e47982017-09-26 21:20:23 +02002326 gpiod_err(desc,
2327 "%s: tried to set a GPIO tied to an IRQ as output\n",
2328 __func__);
2329 return -EIO;
2330 }
2331
2332 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
2333 /* First see if we can enable open drain in hardware */
Geert Uytterhoeven83522352020-03-25 11:04:38 +01002334 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_DRAIN);
Linus Walleij02e47982017-09-26 21:20:23 +02002335 if (!ret)
2336 goto set_output_value;
2337 /* Emulate open drain by not actively driving the line high */
Bartosz Golaszewskie7352442019-10-01 11:44:53 +02002338 if (value) {
2339 ret = gpiod_direction_input(desc);
2340 goto set_output_flag;
2341 }
Linus Walleij02e47982017-09-26 21:20:23 +02002342 }
2343 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags)) {
Geert Uytterhoeven83522352020-03-25 11:04:38 +01002344 ret = gpio_set_config(desc, PIN_CONFIG_DRIVE_OPEN_SOURCE);
Linus Walleij02e47982017-09-26 21:20:23 +02002345 if (!ret)
2346 goto set_output_value;
2347 /* Emulate open source by not actively driving the line low */
Bartosz Golaszewskie7352442019-10-01 11:44:53 +02002348 if (!value) {
2349 ret = gpiod_direction_input(desc);
2350 goto set_output_flag;
2351 }
Linus Walleij02e47982017-09-26 21:20:23 +02002352 } else {
Geert Uytterhoeven83522352020-03-25 11:04:38 +01002353 gpio_set_config(desc, PIN_CONFIG_DRIVE_PUSH_PULL);
Linus Walleij02e47982017-09-26 21:20:23 +02002354 }
2355
2356set_output_value:
Geert Uytterhoeven5f4bf172020-03-25 11:04:39 +01002357 ret = gpio_set_bias(desc);
Kent Gibson2821ae52019-11-05 10:04:26 +08002358 if (ret)
2359 return ret;
Linus Walleijfac9d882017-09-26 20:58:28 +02002360 return gpiod_direction_output_raw_commit(desc, value);
Bartosz Golaszewskie7352442019-10-01 11:44:53 +02002361
2362set_output_flag:
2363 /*
2364 * When emulating open-source or open-drain functionalities by not
2365 * actively driving the line (setting mode to input) we still need to
2366 * set the IS_OUT flag or otherwise we won't be able to set the line
2367 * value anymore.
2368 */
2369 if (ret == 0)
2370 set_bit(FLAG_IS_OUT, &desc->flags);
2371 return ret;
Philipp Zabelef70bbe2014-01-07 12:34:11 +01002372}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002373EXPORT_SYMBOL_GPL(gpiod_direction_output);
David Brownelld2876d02008-02-04 22:28:20 -08002374
Felipe Balbic4b5be92010-05-26 14:42:23 -07002375/**
Geert Uytterhoeven8ced32f2020-03-24 14:56:50 +01002376 * gpiod_set_config - sets @config for a GPIO
2377 * @desc: descriptor of the GPIO for which to set the configuration
2378 * @config: Same packed config format as generic pinconf
2379 *
2380 * Returns:
2381 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2382 * configuration.
2383 */
2384int gpiod_set_config(struct gpio_desc *desc, unsigned long config)
2385{
Linus Walleija0b66a72020-03-29 16:04:05 +02002386 struct gpio_chip *gc;
Geert Uytterhoeven8ced32f2020-03-24 14:56:50 +01002387
2388 VALIDATE_DESC(desc);
Linus Walleija0b66a72020-03-29 16:04:05 +02002389 gc = desc->gdev->chip;
Geert Uytterhoeven8ced32f2020-03-24 14:56:50 +01002390
Linus Walleija0b66a72020-03-29 16:04:05 +02002391 return gpio_do_set_config(gc, gpio_chip_hwgpio(desc), config);
Geert Uytterhoeven8ced32f2020-03-24 14:56:50 +01002392}
2393EXPORT_SYMBOL_GPL(gpiod_set_config);
2394
2395/**
Thierry Reding950d55f52017-07-24 16:57:22 +02002396 * gpiod_set_debounce - sets @debounce time for a GPIO
2397 * @desc: descriptor of the GPIO for which to set debounce time
2398 * @debounce: debounce time in microseconds
Linus Walleij65d87652013-09-04 14:17:08 +02002399 *
Thierry Reding950d55f52017-07-24 16:57:22 +02002400 * Returns:
2401 * 0 on success, %-ENOTSUPP if the controller doesn't support setting the
2402 * debounce time.
Felipe Balbic4b5be92010-05-26 14:42:23 -07002403 */
Andy Shevchenko13daf482020-11-09 22:53:16 +02002404int gpiod_set_debounce(struct gpio_desc *desc, unsigned int debounce)
Felipe Balbic4b5be92010-05-26 14:42:23 -07002405{
Geert Uytterhoeven8ced32f2020-03-24 14:56:50 +01002406 unsigned long config;
Linus Walleijbe1a4b12013-08-30 09:41:45 +02002407
Mika Westerberg2956b5d2017-01-23 15:34:34 +03002408 config = pinconf_to_config_packed(PIN_CONFIG_INPUT_DEBOUNCE, debounce);
Geert Uytterhoeven8ced32f2020-03-24 14:56:50 +01002409 return gpiod_set_config(desc, config);
Felipe Balbic4b5be92010-05-26 14:42:23 -07002410}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002411EXPORT_SYMBOL_GPL(gpiod_set_debounce);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002412
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002413/**
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302414 * gpiod_set_transitory - Lose or retain GPIO state on suspend or reset
2415 * @desc: descriptor of the GPIO for which to configure persistence
2416 * @transitory: True to lose state on suspend or reset, false for persistence
2417 *
2418 * Returns:
2419 * 0 on success, otherwise a negative error code.
2420 */
2421int gpiod_set_transitory(struct gpio_desc *desc, bool transitory)
2422{
Vladimir Zapolskiy156dd392017-12-21 18:37:35 +02002423 VALIDATE_DESC(desc);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302424 /*
2425 * Handle FLAG_TRANSITORY first, enabling queries to gpiolib for
2426 * persistence state.
2427 */
Andy Shevchenko4fc5bfe2019-12-04 21:42:29 +02002428 assign_bit(FLAG_TRANSITORY, &desc->flags, transitory);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302429
2430 /* If the driver supports it, set the persistence state now */
Andy Shevchenkobaca3b12020-11-11 20:49:30 +02002431 return gpio_set_config_with_argument_optional(desc,
2432 PIN_CONFIG_PERSIST_STATE,
2433 !transitory);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10302434}
2435EXPORT_SYMBOL_GPL(gpiod_set_transitory);
2436
2437/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002438 * gpiod_is_active_low - test whether a GPIO is active-low or not
2439 * @desc: the gpio descriptor to test
2440 *
2441 * Returns 1 if the GPIO is active-low, 0 otherwise.
2442 */
2443int gpiod_is_active_low(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002444{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002445 VALIDATE_DESC(desc);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002446 return test_bit(FLAG_ACTIVE_LOW, &desc->flags);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002447}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002448EXPORT_SYMBOL_GPL(gpiod_is_active_low);
David Brownelld2876d02008-02-04 22:28:20 -08002449
Michał Mirosławd3a5bcb2019-12-11 03:40:55 +01002450/**
2451 * gpiod_toggle_active_low - toggle whether a GPIO is active-low or not
2452 * @desc: the gpio descriptor to change
2453 */
2454void gpiod_toggle_active_low(struct gpio_desc *desc)
2455{
2456 VALIDATE_DESC_VOID(desc);
2457 change_bit(FLAG_ACTIVE_LOW, &desc->flags);
2458}
2459EXPORT_SYMBOL_GPL(gpiod_toggle_active_low);
2460
David Brownelld2876d02008-02-04 22:28:20 -08002461/* I/O calls are only valid after configuration completed; the relevant
2462 * "is this a valid GPIO" error checks should already have been done.
2463 *
2464 * "Get" operations are often inlinable as reading a pin value register,
2465 * and masking the relevant bit in that register.
2466 *
2467 * When "set" operations are inlinable, they involve writing that mask to
2468 * one register to set a low value, or a different register to set it high.
2469 * Otherwise locking is needed, so there may be little value to inlining.
2470 *
2471 *------------------------------------------------------------------------
2472 *
2473 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2474 * have requested the GPIO. That can include implicit requesting by
2475 * a direction setting call. Marking a gpio as requested locks its chip
2476 * in memory, guaranteeing that these table lookups need no more locking
2477 * and that gpiochip_remove() will fail.
2478 *
2479 * REVISIT when debugging, consider adding some instrumentation to ensure
2480 * that the GPIO was actually requested.
2481 */
2482
Linus Walleijfac9d882017-09-26 20:58:28 +02002483static int gpiod_get_raw_value_commit(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002484{
Linus Walleija0b66a72020-03-29 16:04:05 +02002485 struct gpio_chip *gc;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002486 int offset;
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002487 int value;
David Brownelld2876d02008-02-04 22:28:20 -08002488
Linus Walleija0b66a72020-03-29 16:04:05 +02002489 gc = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002490 offset = gpio_chip_hwgpio(desc);
Linus Walleija0b66a72020-03-29 16:04:05 +02002491 value = gc->get ? gc->get(gc, offset) : -EIO;
Linus Walleij723a6302015-12-21 23:10:12 +01002492 value = value < 0 ? value : !!value;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002493 trace_gpio_value(desc_to_gpio(desc), 1, value);
Uwe Kleine-König3f397c212011-05-20 00:40:19 -06002494 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002495}
Alexandre Courbot372e7222013-02-03 01:29:29 +09002496
Linus Walleija0b66a72020-03-29 16:04:05 +02002497static int gpio_chip_get_multiple(struct gpio_chip *gc,
Lukas Wunnereec1d562017-10-12 12:40:10 +02002498 unsigned long *mask, unsigned long *bits)
2499{
Linus Walleija0b66a72020-03-29 16:04:05 +02002500 if (gc->get_multiple) {
2501 return gc->get_multiple(gc, mask, bits);
2502 } else if (gc->get) {
Lukas Wunnereec1d562017-10-12 12:40:10 +02002503 int i, value;
2504
Linus Walleija0b66a72020-03-29 16:04:05 +02002505 for_each_set_bit(i, mask, gc->ngpio) {
2506 value = gc->get(gc, i);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002507 if (value < 0)
2508 return value;
2509 __assign_bit(i, bits, value);
2510 }
2511 return 0;
2512 }
2513 return -EIO;
2514}
2515
2516int gpiod_get_array_value_complex(bool raw, bool can_sleep,
2517 unsigned int array_size,
2518 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002519 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002520 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02002521{
Linus Walleijd377f562019-07-16 11:11:45 +02002522 int ret, i = 0;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002523
2524 /*
2525 * Validate array_info against desc_array and its size.
2526 * It should immediately follow desc_array if both
2527 * have been obtained from the same gpiod_get_array() call.
2528 */
2529 if (array_info && array_info->desc == desc_array &&
2530 array_size <= array_info->size &&
2531 (void *)array_info == desc_array + array_info->size) {
2532 if (!can_sleep)
2533 WARN_ON(array_info->chip->can_sleep);
2534
Linus Walleijd377f562019-07-16 11:11:45 +02002535 ret = gpio_chip_get_multiple(array_info->chip,
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002536 array_info->get_mask,
2537 value_bitmap);
Linus Walleijd377f562019-07-16 11:11:45 +02002538 if (ret)
2539 return ret;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002540
2541 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2542 bitmap_xor(value_bitmap, value_bitmap,
2543 array_info->invert_mask, array_size);
2544
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002545 i = find_first_zero_bit(array_info->get_mask, array_size);
Andy Shevchenkoae66eca2020-06-30 12:21:46 +03002546 if (i == array_size)
2547 return 0;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002548 } else {
2549 array_info = NULL;
2550 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02002551
2552 while (i < array_size) {
Linus Walleija0b66a72020-03-29 16:04:05 +02002553 struct gpio_chip *gc = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07002554 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
2555 unsigned long *mask, *bits;
Wolfram Sangc07ea8d2021-01-05 11:59:14 +01002556 int first, j;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002557
Linus Walleija0b66a72020-03-29 16:04:05 +02002558 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
Laura Abbott30277432018-05-21 10:57:07 -07002559 mask = fastpath;
2560 } else {
Linus Walleija0b66a72020-03-29 16:04:05 +02002561 mask = kmalloc_array(2 * BITS_TO_LONGS(gc->ngpio),
Laura Abbott30277432018-05-21 10:57:07 -07002562 sizeof(*mask),
2563 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
2564 if (!mask)
2565 return -ENOMEM;
2566 }
2567
Linus Walleija0b66a72020-03-29 16:04:05 +02002568 bits = mask + BITS_TO_LONGS(gc->ngpio);
2569 bitmap_zero(mask, gc->ngpio);
Laura Abbott30277432018-05-21 10:57:07 -07002570
Lukas Wunnereec1d562017-10-12 12:40:10 +02002571 if (!can_sleep)
Linus Walleija0b66a72020-03-29 16:04:05 +02002572 WARN_ON(gc->can_sleep);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002573
2574 /* collect all inputs belonging to the same chip */
2575 first = i;
Lukas Wunnereec1d562017-10-12 12:40:10 +02002576 do {
2577 const struct gpio_desc *desc = desc_array[i];
2578 int hwgpio = gpio_chip_hwgpio(desc);
2579
2580 __set_bit(hwgpio, mask);
2581 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002582
2583 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02002584 i = find_next_zero_bit(array_info->get_mask,
2585 array_size, i);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002586 } while ((i < array_size) &&
Linus Walleija0b66a72020-03-29 16:04:05 +02002587 (desc_array[i]->gdev->chip == gc));
Lukas Wunnereec1d562017-10-12 12:40:10 +02002588
Linus Walleija0b66a72020-03-29 16:04:05 +02002589 ret = gpio_chip_get_multiple(gc, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07002590 if (ret) {
2591 if (mask != fastpath)
2592 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002593 return ret;
Laura Abbott30277432018-05-21 10:57:07 -07002594 }
Lukas Wunnereec1d562017-10-12 12:40:10 +02002595
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002596 for (j = first; j < i; ) {
Lukas Wunnereec1d562017-10-12 12:40:10 +02002597 const struct gpio_desc *desc = desc_array[j];
2598 int hwgpio = gpio_chip_hwgpio(desc);
2599 int value = test_bit(hwgpio, bits);
2600
2601 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2602 value = !value;
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002603 __assign_bit(j, value_bitmap, value);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002604 trace_gpio_value(desc_to_gpio(desc), 1, value);
Janusz Krzysztofik799d5eb2018-09-29 14:20:22 +02002605 j++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002606
2607 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02002608 j = find_next_zero_bit(array_info->get_mask, i,
2609 j);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002610 }
Laura Abbott30277432018-05-21 10:57:07 -07002611
2612 if (mask != fastpath)
2613 kfree(mask);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002614 }
2615 return 0;
2616}
2617
David Brownelld2876d02008-02-04 22:28:20 -08002618/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002619 * gpiod_get_raw_value() - return a gpio's raw value
2620 * @desc: gpio whose value will be returned
David Brownelld2876d02008-02-04 22:28:20 -08002621 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002622 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002623 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002624 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002625 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002626 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002627 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002628int gpiod_get_raw_value(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002629{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002630 VALIDATE_DESC(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02002631 /* Should be using gpiod_get_raw_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002632 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02002633 return gpiod_get_raw_value_commit(desc);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002634}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002635EXPORT_SYMBOL_GPL(gpiod_get_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002636
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002637/**
2638 * gpiod_get_value() - return a gpio's value
2639 * @desc: gpio whose value will be returned
2640 *
2641 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002642 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002643 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002644 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002645 * complain if the GPIO chip functions potentially sleep.
2646 */
2647int gpiod_get_value(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08002648{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002649 int value;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002650
2651 VALIDATE_DESC(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02002652 /* Should be using gpiod_get_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002653 WARN_ON(desc->gdev->chip->can_sleep);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002654
Linus Walleijfac9d882017-09-26 20:58:28 +02002655 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07002656 if (value < 0)
2657 return value;
2658
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002659 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2660 value = !value;
2661
2662 return value;
David Brownelld2876d02008-02-04 22:28:20 -08002663}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002664EXPORT_SYMBOL_GPL(gpiod_get_value);
David Brownelld2876d02008-02-04 22:28:20 -08002665
Lukas Wunnereec1d562017-10-12 12:40:10 +02002666/**
2667 * gpiod_get_raw_array_value() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002668 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02002669 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002670 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002671 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02002672 *
2673 * Read the raw values of the GPIOs, i.e. the values of the physical lines
2674 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
2675 * else an error code.
2676 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002677 * This function can be called from contexts where we cannot sleep,
Lukas Wunnereec1d562017-10-12 12:40:10 +02002678 * and it will complain if the GPIO chip functions potentially sleep.
2679 */
2680int gpiod_get_raw_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002681 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002682 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002683 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02002684{
2685 if (!desc_array)
2686 return -EINVAL;
2687 return gpiod_get_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002688 desc_array, array_info,
2689 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002690}
2691EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value);
2692
2693/**
2694 * gpiod_get_array_value() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002695 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02002696 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002697 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002698 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02002699 *
2700 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2701 * into account. Return 0 in case of success, else an error code.
2702 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002703 * This function can be called from contexts where we cannot sleep,
Lukas Wunnereec1d562017-10-12 12:40:10 +02002704 * and it will complain if the GPIO chip functions potentially sleep.
2705 */
2706int gpiod_get_array_value(unsigned int array_size,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002707 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002708 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002709 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02002710{
2711 if (!desc_array)
2712 return -EINVAL;
2713 return gpiod_get_array_value_complex(false, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002714 desc_array, array_info,
2715 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02002716}
2717EXPORT_SYMBOL_GPL(gpiod_get_array_value);
2718
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302719/*
Linus Walleijfac9d882017-09-26 20:58:28 +02002720 * gpio_set_open_drain_value_commit() - Set the open drain gpio's value.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002721 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002722 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302723 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002724static void gpio_set_open_drain_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302725{
Linus Walleijd377f562019-07-16 11:11:45 +02002726 int ret = 0;
Linus Walleija0b66a72020-03-29 16:04:05 +02002727 struct gpio_chip *gc = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002728 int offset = gpio_chip_hwgpio(desc);
2729
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302730 if (value) {
Linus Walleija0b66a72020-03-29 16:04:05 +02002731 ret = gc->direction_input(gc, offset);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302732 } else {
Linus Walleija0b66a72020-03-29 16:04:05 +02002733 ret = gc->direction_output(gc, offset, 0);
Linus Walleijd377f562019-07-16 11:11:45 +02002734 if (!ret)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002735 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302736 }
Linus Walleijd377f562019-07-16 11:11:45 +02002737 trace_gpio_direction(desc_to_gpio(desc), value, ret);
2738 if (ret < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002739 gpiod_err(desc,
2740 "%s: Error in set_value for open drain err %d\n",
Linus Walleijd377f562019-07-16 11:11:45 +02002741 __func__, ret);
Laxman Dewanganaca5ce12012-02-17 20:26:21 +05302742}
2743
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302744/*
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002745 * _gpio_set_open_source_value() - Set the open source gpio's value.
2746 * @desc: gpio descriptor whose state need to be set.
Colin Cronin20a8a962015-05-18 11:41:43 -07002747 * @value: Non-zero for setting it HIGH otherwise it will set to LOW.
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302748 */
Linus Walleijfac9d882017-09-26 20:58:28 +02002749static void gpio_set_open_source_value_commit(struct gpio_desc *desc, bool value)
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302750{
Linus Walleijd377f562019-07-16 11:11:45 +02002751 int ret = 0;
Linus Walleija0b66a72020-03-29 16:04:05 +02002752 struct gpio_chip *gc = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002753 int offset = gpio_chip_hwgpio(desc);
2754
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302755 if (value) {
Linus Walleija0b66a72020-03-29 16:04:05 +02002756 ret = gc->direction_output(gc, offset, 1);
Linus Walleijd377f562019-07-16 11:11:45 +02002757 if (!ret)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002758 set_bit(FLAG_IS_OUT, &desc->flags);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302759 } else {
Linus Walleija0b66a72020-03-29 16:04:05 +02002760 ret = gc->direction_input(gc, offset);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302761 }
Linus Walleijd377f562019-07-16 11:11:45 +02002762 trace_gpio_direction(desc_to_gpio(desc), !value, ret);
2763 if (ret < 0)
Mark Brown6424de52013-09-09 10:33:49 +01002764 gpiod_err(desc,
2765 "%s: Error in set_value for open source err %d\n",
Linus Walleijd377f562019-07-16 11:11:45 +02002766 __func__, ret);
Laxman Dewangan25553ff2012-02-17 20:26:22 +05302767}
2768
Linus Walleijfac9d882017-09-26 20:58:28 +02002769static void gpiod_set_raw_value_commit(struct gpio_desc *desc, bool value)
David Brownelld2876d02008-02-04 22:28:20 -08002770{
Linus Walleija0b66a72020-03-29 16:04:05 +02002771 struct gpio_chip *gc;
David Brownelld2876d02008-02-04 22:28:20 -08002772
Linus Walleija0b66a72020-03-29 16:04:05 +02002773 gc = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09002774 trace_gpio_value(desc_to_gpio(desc), 0, value);
Linus Walleija0b66a72020-03-29 16:04:05 +02002775 gc->set(gc, gpio_chip_hwgpio(desc), value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09002776}
2777
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002778/*
2779 * set multiple outputs on the same chip;
2780 * use the chip's set_multiple function if available;
2781 * otherwise set the outputs sequentially;
Linus Walleija0b66a72020-03-29 16:04:05 +02002782 * @chip: the GPIO chip we operate on
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002783 * @mask: bit mask array; one bit per output; BITS_PER_LONG bits per word
2784 * defines which outputs are to be changed
2785 * @bits: bit value array; one bit per output; BITS_PER_LONG bits per word
2786 * defines the values the outputs specified by mask are to be set to
2787 */
Linus Walleija0b66a72020-03-29 16:04:05 +02002788static void gpio_chip_set_multiple(struct gpio_chip *gc,
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002789 unsigned long *mask, unsigned long *bits)
2790{
Linus Walleija0b66a72020-03-29 16:04:05 +02002791 if (gc->set_multiple) {
2792 gc->set_multiple(gc, mask, bits);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002793 } else {
Andy Shevchenko5e4e6fb2017-01-03 19:01:17 +02002794 unsigned int i;
2795
2796 /* set outputs if the corresponding mask bit is set */
Linus Walleija0b66a72020-03-29 16:04:05 +02002797 for_each_set_bit(i, mask, gc->ngpio)
2798 gc->set(gc, i, test_bit(i, bits));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002799 }
2800}
2801
Laura Abbott30277432018-05-21 10:57:07 -07002802int gpiod_set_array_value_complex(bool raw, bool can_sleep,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02002803 unsigned int array_size,
2804 struct gpio_desc **desc_array,
2805 struct gpio_array *array_info,
2806 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002807{
2808 int i = 0;
2809
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002810 /*
2811 * Validate array_info against desc_array and its size.
2812 * It should immediately follow desc_array if both
2813 * have been obtained from the same gpiod_get_array() call.
2814 */
2815 if (array_info && array_info->desc == desc_array &&
2816 array_size <= array_info->size &&
2817 (void *)array_info == desc_array + array_info->size) {
2818 if (!can_sleep)
2819 WARN_ON(array_info->chip->can_sleep);
2820
2821 if (!raw && !bitmap_empty(array_info->invert_mask, array_size))
2822 bitmap_xor(value_bitmap, value_bitmap,
2823 array_info->invert_mask, array_size);
2824
2825 gpio_chip_set_multiple(array_info->chip, array_info->set_mask,
2826 value_bitmap);
2827
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002828 i = find_first_zero_bit(array_info->set_mask, array_size);
Andy Shevchenkoae66eca2020-06-30 12:21:46 +03002829 if (i == array_size)
2830 return 0;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002831 } else {
2832 array_info = NULL;
2833 }
2834
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002835 while (i < array_size) {
Linus Walleija0b66a72020-03-29 16:04:05 +02002836 struct gpio_chip *gc = desc_array[i]->gdev->chip;
Laura Abbott30277432018-05-21 10:57:07 -07002837 unsigned long fastpath[2 * BITS_TO_LONGS(FASTPATH_NGPIO)];
2838 unsigned long *mask, *bits;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002839 int count = 0;
2840
Linus Walleija0b66a72020-03-29 16:04:05 +02002841 if (likely(gc->ngpio <= FASTPATH_NGPIO)) {
Laura Abbott30277432018-05-21 10:57:07 -07002842 mask = fastpath;
2843 } else {
Linus Walleija0b66a72020-03-29 16:04:05 +02002844 mask = kmalloc_array(2 * BITS_TO_LONGS(gc->ngpio),
Laura Abbott30277432018-05-21 10:57:07 -07002845 sizeof(*mask),
2846 can_sleep ? GFP_KERNEL : GFP_ATOMIC);
2847 if (!mask)
2848 return -ENOMEM;
2849 }
2850
Linus Walleija0b66a72020-03-29 16:04:05 +02002851 bits = mask + BITS_TO_LONGS(gc->ngpio);
2852 bitmap_zero(mask, gc->ngpio);
Laura Abbott30277432018-05-21 10:57:07 -07002853
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002854 if (!can_sleep)
Linus Walleija0b66a72020-03-29 16:04:05 +02002855 WARN_ON(gc->can_sleep);
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002856
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002857 do {
2858 struct gpio_desc *desc = desc_array[i];
2859 int hwgpio = gpio_chip_hwgpio(desc);
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002860 int value = test_bit(i, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002861
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002862 /*
2863 * Pins applicable for fast input but not for
2864 * fast output processing may have been already
2865 * inverted inside the fast path, skip them.
2866 */
2867 if (!raw && !(array_info &&
2868 test_bit(i, array_info->invert_mask)) &&
2869 test_bit(FLAG_ACTIVE_LOW, &desc->flags))
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002870 value = !value;
2871 trace_gpio_value(desc_to_gpio(desc), 0, value);
2872 /*
2873 * collect all normal outputs belonging to the same chip
2874 * open drain and open source outputs are set individually
2875 */
Linus Walleij02e47982017-09-26 21:20:23 +02002876 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002877 gpio_set_open_drain_value_commit(desc, value);
Linus Walleij02e47982017-09-26 21:20:23 +02002878 } else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags) && !raw) {
Linus Walleijfac9d882017-09-26 20:58:28 +02002879 gpio_set_open_source_value_commit(desc, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002880 } else {
2881 __set_bit(hwgpio, mask);
Andy Shevchenko4fc5bfe2019-12-04 21:42:29 +02002882 __assign_bit(hwgpio, bits, value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002883 count++;
2884 }
2885 i++;
Janusz Krzysztofikb17566a2018-09-05 23:50:08 +02002886
2887 if (array_info)
Janusz Krzysztofik35ae7f92018-09-24 01:53:35 +02002888 i = find_next_zero_bit(array_info->set_mask,
2889 array_size, i);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002890 } while ((i < array_size) &&
Linus Walleija0b66a72020-03-29 16:04:05 +02002891 (desc_array[i]->gdev->chip == gc));
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002892 /* push collected bits to outputs */
Daniel Lockyer38e003f2015-06-10 14:26:27 +01002893 if (count != 0)
Linus Walleija0b66a72020-03-29 16:04:05 +02002894 gpio_chip_set_multiple(gc, mask, bits);
Laura Abbott30277432018-05-21 10:57:07 -07002895
2896 if (mask != fastpath)
2897 kfree(mask);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002898 }
Laura Abbott30277432018-05-21 10:57:07 -07002899 return 0;
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002900}
2901
David Brownelld2876d02008-02-04 22:28:20 -08002902/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002903 * gpiod_set_raw_value() - assign a gpio's raw value
2904 * @desc: gpio whose value will be assigned
David Brownelld2876d02008-02-04 22:28:20 -08002905 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002906 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002907 * Set the raw value of the GPIO, i.e. the value of its physical line without
2908 * regard for its ACTIVE_LOW status.
2909 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002910 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002911 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002912 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002913void gpiod_set_raw_value(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09002914{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002915 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02002916 /* Should be using gpiod_set_raw_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002917 WARN_ON(desc->gdev->chip->can_sleep);
Linus Walleijfac9d882017-09-26 20:58:28 +02002918 gpiod_set_raw_value_commit(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08002919}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002920EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
David Brownelld2876d02008-02-04 22:28:20 -08002921
2922/**
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01002923 * gpiod_set_value_nocheck() - set a GPIO line value without checking
2924 * @desc: the descriptor to set the value on
2925 * @value: value to set
2926 *
2927 * This sets the value of a GPIO line backing a descriptor, applying
2928 * different semantic quirks like active low and open drain/source
2929 * handling.
2930 */
2931static void gpiod_set_value_nocheck(struct gpio_desc *desc, int value)
2932{
2933 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
2934 value = !value;
2935 if (test_bit(FLAG_OPEN_DRAIN, &desc->flags))
2936 gpio_set_open_drain_value_commit(desc, value);
2937 else if (test_bit(FLAG_OPEN_SOURCE, &desc->flags))
2938 gpio_set_open_source_value_commit(desc, value);
2939 else
2940 gpiod_set_raw_value_commit(desc, value);
2941}
2942
2943/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002944 * gpiod_set_value() - assign a gpio's value
2945 * @desc: gpio whose value will be assigned
2946 * @value: value to assign
David Brownelld2876d02008-02-04 22:28:20 -08002947 *
Linus Walleij02e47982017-09-26 21:20:23 +02002948 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW,
2949 * OPEN_DRAIN and OPEN_SOURCE flags into account.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002950 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002951 * This function can be called from contexts where we cannot sleep, and will
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002952 * complain if the GPIO chip functions potentially sleep.
David Brownelld2876d02008-02-04 22:28:20 -08002953 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002954void gpiod_set_value(struct gpio_desc *desc, int value)
2955{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002956 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven3285170f2019-07-01 16:27:38 +02002957 /* Should be using gpiod_set_value_cansleep() */
Linus Walleijfdeb8e12016-02-10 10:57:36 +01002958 WARN_ON(desc->gdev->chip->can_sleep);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01002959 gpiod_set_value_nocheck(desc, value);
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07002960}
2961EXPORT_SYMBOL_GPL(gpiod_set_value);
2962
2963/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002964 * gpiod_set_raw_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002965 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002966 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002967 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002968 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002969 *
2970 * Set the raw values of the GPIOs, i.e. the values of the physical lines
2971 * without regard for their ACTIVE_LOW status.
2972 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002973 * This function can be called from contexts where we cannot sleep, and will
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002974 * complain if the GPIO chip functions potentially sleep.
2975 */
Laura Abbott30277432018-05-21 10:57:07 -07002976int gpiod_set_raw_array_value(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02002977 struct gpio_desc **desc_array,
2978 struct gpio_array *array_info,
2979 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002980{
2981 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07002982 return -EINVAL;
2983 return gpiod_set_array_value_complex(true, false, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002984 desc_array, array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002985}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002986EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002987
2988/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02002989 * gpiod_set_array_value() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002990 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002991 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02002992 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02002993 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002994 *
2995 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
2996 * into account.
2997 *
Geert Uytterhoeven827a9b82019-07-01 16:28:09 +02002998 * This function can be called from contexts where we cannot sleep, and will
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01002999 * complain if the GPIO chip functions potentially sleep.
3000 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003001int gpiod_set_array_value(unsigned int array_size,
3002 struct gpio_desc **desc_array,
3003 struct gpio_array *array_info,
3004 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003005{
3006 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003007 return -EINVAL;
3008 return gpiod_set_array_value_complex(false, false, array_size,
3009 desc_array, array_info,
3010 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003011}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003012EXPORT_SYMBOL_GPL(gpiod_set_array_value);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003013
3014/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003015 * gpiod_cansleep() - report whether gpio value access may sleep
3016 * @desc: gpio to check
3017 *
3018 */
3019int gpiod_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003020{
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003021 VALIDATE_DESC(desc);
3022 return desc->gdev->chip->can_sleep;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003023}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003024EXPORT_SYMBOL_GPL(gpiod_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003025
David Brownell0f6d5042008-10-15 22:03:14 -07003026/**
Linus Walleij90b39402e2018-06-01 13:21:27 +02003027 * gpiod_set_consumer_name() - set the consumer name for the descriptor
3028 * @desc: gpio to set the consumer name on
3029 * @name: the new consumer name
3030 */
Muchun Song18534df2018-11-01 21:12:50 +08003031int gpiod_set_consumer_name(struct gpio_desc *desc, const char *name)
Linus Walleij90b39402e2018-06-01 13:21:27 +02003032{
Muchun Song18534df2018-11-01 21:12:50 +08003033 VALIDATE_DESC(desc);
3034 if (name) {
3035 name = kstrdup_const(name, GFP_KERNEL);
3036 if (!name)
3037 return -ENOMEM;
3038 }
3039
3040 kfree_const(desc->label);
3041 desc_set_label(desc, name);
3042
3043 return 0;
Linus Walleij90b39402e2018-06-01 13:21:27 +02003044}
3045EXPORT_SYMBOL_GPL(gpiod_set_consumer_name);
3046
3047/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003048 * gpiod_to_irq() - return the IRQ corresponding to a GPIO
3049 * @desc: gpio whose IRQ will be returned (already requested)
David Brownell0f6d5042008-10-15 22:03:14 -07003050 *
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003051 * Return the IRQ corresponding to the passed GPIO, or an error code in case of
3052 * error.
David Brownell0f6d5042008-10-15 22:03:14 -07003053 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003054int gpiod_to_irq(const struct gpio_desc *desc)
David Brownell0f6d5042008-10-15 22:03:14 -07003055{
Linus Walleija0b66a72020-03-29 16:04:05 +02003056 struct gpio_chip *gc;
Linus Walleij4c37ce82016-05-02 13:13:10 +02003057 int offset;
David Brownell0f6d5042008-10-15 22:03:14 -07003058
Linus Walleij79bb71b2016-06-15 22:57:38 +02003059 /*
3060 * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics
3061 * requires this function to not return zero on an invalid descriptor
3062 * but rather a negative error number.
3063 */
Linus Walleijbfbbe442016-06-16 11:55:55 +02003064 if (!desc || IS_ERR(desc) || !desc->gdev || !desc->gdev->chip)
Linus Walleij79bb71b2016-06-15 22:57:38 +02003065 return -EINVAL;
3066
Linus Walleija0b66a72020-03-29 16:04:05 +02003067 gc = desc->gdev->chip;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003068 offset = gpio_chip_hwgpio(desc);
Linus Walleija0b66a72020-03-29 16:04:05 +02003069 if (gc->to_irq) {
3070 int retirq = gc->to_irq(gc, offset);
Linus Walleij4c37ce82016-05-02 13:13:10 +02003071
3072 /* Zero means NO_IRQ */
3073 if (!retirq)
3074 return -ENXIO;
3075
3076 return retirq;
3077 }
3078 return -ENXIO;
Alexandre Courbot372e7222013-02-03 01:29:29 +09003079}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003080EXPORT_SYMBOL_GPL(gpiod_to_irq);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003081
Linus Walleijd468bf92013-09-24 11:54:38 +02003082/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003083 * gpiochip_lock_as_irq() - lock a GPIO to be used as IRQ
Linus Walleija0b66a72020-03-29 16:04:05 +02003084 * @gc: the chip the GPIO to lock belongs to
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003085 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003086 *
3087 * This is used directly by GPIO drivers that want to lock down
Linus Walleijf438acd2014-03-07 10:12:49 +08003088 * a certain GPIO line to be used for IRQs.
David Brownelld2876d02008-02-04 22:28:20 -08003089 */
Linus Walleija0b66a72020-03-29 16:04:05 +02003090int gpiochip_lock_as_irq(struct gpio_chip *gc, unsigned int offset)
David Brownelld2876d02008-02-04 22:28:20 -08003091{
Linus Walleij9c102802016-05-25 10:56:03 +02003092 struct gpio_desc *desc;
Linus Walleijd468bf92013-09-24 11:54:38 +02003093
Linus Walleija0b66a72020-03-29 16:04:05 +02003094 desc = gpiochip_get_desc(gc, offset);
Linus Walleij9c102802016-05-25 10:56:03 +02003095 if (IS_ERR(desc))
3096 return PTR_ERR(desc);
3097
Linus Walleij60f83392016-11-12 15:01:09 +01003098 /*
3099 * If it's fast: flush the direction setting if something changed
3100 * behind our back
3101 */
Linus Walleija0b66a72020-03-29 16:04:05 +02003102 if (!gc->can_sleep && gc->get_direction) {
Andy Shevchenko80956792018-07-09 21:47:21 +03003103 int dir = gpiod_get_direction(desc);
Linus Walleij9c102802016-05-25 10:56:03 +02003104
Andy Shevchenko36b31272018-07-03 03:38:31 +03003105 if (dir < 0) {
Linus Walleija0b66a72020-03-29 16:04:05 +02003106 chip_err(gc, "%s: cannot get GPIO direction\n",
Andy Shevchenko36b31272018-07-03 03:38:31 +03003107 __func__);
3108 return dir;
3109 }
Linus Walleij9c102802016-05-25 10:56:03 +02003110 }
3111
Linus Walleije9bdf7e2020-05-27 16:07:58 +02003112 /* To be valid for IRQ the line needs to be input or open drain */
3113 if (test_bit(FLAG_IS_OUT, &desc->flags) &&
3114 !test_bit(FLAG_OPEN_DRAIN, &desc->flags)) {
Linus Walleija0b66a72020-03-29 16:04:05 +02003115 chip_err(gc,
Andy Shevchenkob1911712018-07-03 03:39:03 +03003116 "%s: tried to flag a GPIO set as output for IRQ\n",
3117 __func__);
Linus Walleijd468bf92013-09-24 11:54:38 +02003118 return -EIO;
3119 }
3120
Linus Walleij9c102802016-05-25 10:56:03 +02003121 set_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003122 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003123
3124 /*
3125 * If the consumer has not set up a label (such as when the
3126 * IRQ is referenced from .to_irq()) we set up a label here
3127 * so it is clear this is used as an interrupt.
3128 */
3129 if (!desc->label)
3130 desc_set_label(desc, "interrupt");
3131
Linus Walleijd468bf92013-09-24 11:54:38 +02003132 return 0;
3133}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003134EXPORT_SYMBOL_GPL(gpiochip_lock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003135
Linus Walleijd468bf92013-09-24 11:54:38 +02003136/**
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003137 * gpiochip_unlock_as_irq() - unlock a GPIO used as IRQ
Linus Walleija0b66a72020-03-29 16:04:05 +02003138 * @gc: the chip the GPIO to lock belongs to
Alexandre Courbotd74be6d2014-07-22 16:17:42 +09003139 * @offset: the offset of the GPIO to lock as IRQ
Linus Walleijd468bf92013-09-24 11:54:38 +02003140 *
3141 * This is used directly by GPIO drivers that want to indicate
3142 * that a certain GPIO is no longer used exclusively for IRQ.
3143 */
Linus Walleija0b66a72020-03-29 16:04:05 +02003144void gpiochip_unlock_as_irq(struct gpio_chip *gc, unsigned int offset)
Linus Walleijd468bf92013-09-24 11:54:38 +02003145{
Linus Walleij3940c342016-11-14 00:09:07 +01003146 struct gpio_desc *desc;
3147
Linus Walleija0b66a72020-03-29 16:04:05 +02003148 desc = gpiochip_get_desc(gc, offset);
Linus Walleij3940c342016-11-14 00:09:07 +01003149 if (IS_ERR(desc))
Linus Walleijd468bf92013-09-24 11:54:38 +02003150 return;
3151
Linus Walleij3940c342016-11-14 00:09:07 +01003152 clear_bit(FLAG_USED_AS_IRQ, &desc->flags);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003153 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
Linus Walleij3940c342016-11-14 00:09:07 +01003154
3155 /* If we only had this marking, erase it */
3156 if (desc->label && !strcmp(desc->label, "interrupt"))
3157 desc_set_label(desc, NULL);
Linus Walleijd468bf92013-09-24 11:54:38 +02003158}
Alexandre Courbote3a2e872014-10-23 17:27:07 +09003159EXPORT_SYMBOL_GPL(gpiochip_unlock_as_irq);
Linus Walleijd468bf92013-09-24 11:54:38 +02003160
Linus Walleija0b66a72020-03-29 16:04:05 +02003161void gpiochip_disable_irq(struct gpio_chip *gc, unsigned int offset)
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003162{
Linus Walleija0b66a72020-03-29 16:04:05 +02003163 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003164
3165 if (!IS_ERR(desc) &&
3166 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags)))
3167 clear_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3168}
3169EXPORT_SYMBOL_GPL(gpiochip_disable_irq);
3170
Linus Walleija0b66a72020-03-29 16:04:05 +02003171void gpiochip_enable_irq(struct gpio_chip *gc, unsigned int offset)
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003172{
Linus Walleija0b66a72020-03-29 16:04:05 +02003173 struct gpio_desc *desc = gpiochip_get_desc(gc, offset);
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003174
3175 if (!IS_ERR(desc) &&
3176 !WARN_ON(!test_bit(FLAG_USED_AS_IRQ, &desc->flags))) {
Linus Walleije9bdf7e2020-05-27 16:07:58 +02003177 /*
3178 * We must not be output when using IRQ UNLESS we are
3179 * open drain.
3180 */
3181 WARN_ON(test_bit(FLAG_IS_OUT, &desc->flags) &&
3182 !test_bit(FLAG_OPEN_DRAIN, &desc->flags));
Hans Verkuil4e9439d2018-09-08 11:23:16 +02003183 set_bit(FLAG_IRQ_IS_ENABLED, &desc->flags);
3184 }
3185}
3186EXPORT_SYMBOL_GPL(gpiochip_enable_irq);
3187
Linus Walleija0b66a72020-03-29 16:04:05 +02003188bool gpiochip_line_is_irq(struct gpio_chip *gc, unsigned int offset)
Linus Walleij6cee3822016-02-11 20:16:45 +01003189{
Linus Walleija0b66a72020-03-29 16:04:05 +02003190 if (offset >= gc->ngpio)
Linus Walleij6cee3822016-02-11 20:16:45 +01003191 return false;
3192
Linus Walleija0b66a72020-03-29 16:04:05 +02003193 return test_bit(FLAG_USED_AS_IRQ, &gc->gpiodev->descs[offset].flags);
Linus Walleij6cee3822016-02-11 20:16:45 +01003194}
3195EXPORT_SYMBOL_GPL(gpiochip_line_is_irq);
3196
Linus Walleija0b66a72020-03-29 16:04:05 +02003197int gpiochip_reqres_irq(struct gpio_chip *gc, unsigned int offset)
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003198{
3199 int ret;
3200
Linus Walleija0b66a72020-03-29 16:04:05 +02003201 if (!try_module_get(gc->gpiodev->owner))
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003202 return -ENODEV;
3203
Linus Walleija0b66a72020-03-29 16:04:05 +02003204 ret = gpiochip_lock_as_irq(gc, offset);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003205 if (ret) {
Linus Walleija0b66a72020-03-29 16:04:05 +02003206 chip_err(gc, "unable to lock HW IRQ %u for IRQ\n", offset);
3207 module_put(gc->gpiodev->owner);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003208 return ret;
3209 }
3210 return 0;
3211}
3212EXPORT_SYMBOL_GPL(gpiochip_reqres_irq);
3213
Linus Walleija0b66a72020-03-29 16:04:05 +02003214void gpiochip_relres_irq(struct gpio_chip *gc, unsigned int offset)
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003215{
Linus Walleija0b66a72020-03-29 16:04:05 +02003216 gpiochip_unlock_as_irq(gc, offset);
3217 module_put(gc->gpiodev->owner);
Hans Verkuil4e6b8232018-09-08 11:23:14 +02003218}
3219EXPORT_SYMBOL_GPL(gpiochip_relres_irq);
3220
Linus Walleija0b66a72020-03-29 16:04:05 +02003221bool gpiochip_line_is_open_drain(struct gpio_chip *gc, unsigned int offset)
Linus Walleij143b65d2016-02-16 15:41:42 +01003222{
Linus Walleija0b66a72020-03-29 16:04:05 +02003223 if (offset >= gc->ngpio)
Linus Walleij143b65d2016-02-16 15:41:42 +01003224 return false;
3225
Linus Walleija0b66a72020-03-29 16:04:05 +02003226 return test_bit(FLAG_OPEN_DRAIN, &gc->gpiodev->descs[offset].flags);
Linus Walleij143b65d2016-02-16 15:41:42 +01003227}
3228EXPORT_SYMBOL_GPL(gpiochip_line_is_open_drain);
3229
Linus Walleija0b66a72020-03-29 16:04:05 +02003230bool gpiochip_line_is_open_source(struct gpio_chip *gc, unsigned int offset)
Linus Walleij143b65d2016-02-16 15:41:42 +01003231{
Linus Walleija0b66a72020-03-29 16:04:05 +02003232 if (offset >= gc->ngpio)
Linus Walleij143b65d2016-02-16 15:41:42 +01003233 return false;
3234
Linus Walleija0b66a72020-03-29 16:04:05 +02003235 return test_bit(FLAG_OPEN_SOURCE, &gc->gpiodev->descs[offset].flags);
Linus Walleij143b65d2016-02-16 15:41:42 +01003236}
3237EXPORT_SYMBOL_GPL(gpiochip_line_is_open_source);
3238
Linus Walleija0b66a72020-03-29 16:04:05 +02003239bool gpiochip_line_is_persistent(struct gpio_chip *gc, unsigned int offset)
Charles Keepax05f479b2017-05-23 15:47:29 +01003240{
Linus Walleija0b66a72020-03-29 16:04:05 +02003241 if (offset >= gc->ngpio)
Charles Keepax05f479b2017-05-23 15:47:29 +01003242 return false;
3243
Linus Walleija0b66a72020-03-29 16:04:05 +02003244 return !test_bit(FLAG_TRANSITORY, &gc->gpiodev->descs[offset].flags);
Charles Keepax05f479b2017-05-23 15:47:29 +01003245}
3246EXPORT_SYMBOL_GPL(gpiochip_line_is_persistent);
3247
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003248/**
3249 * gpiod_get_raw_value_cansleep() - return a gpio's raw value
3250 * @desc: gpio whose value will be returned
3251 *
3252 * Return the GPIO's raw value, i.e. the value of the physical line disregarding
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003253 * its ACTIVE_LOW status, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003254 *
3255 * This function is to be called from contexts that can sleep.
David Brownelld2876d02008-02-04 22:28:20 -08003256 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003257int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
David Brownelld2876d02008-02-04 22:28:20 -08003258{
David Brownelld2876d02008-02-04 22:28:20 -08003259 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003260 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003261 return gpiod_get_raw_value_commit(desc);
David Brownelld2876d02008-02-04 22:28:20 -08003262}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003263EXPORT_SYMBOL_GPL(gpiod_get_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003264
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003265/**
3266 * gpiod_get_value_cansleep() - return a gpio's value
3267 * @desc: gpio whose value will be returned
3268 *
3269 * Return the GPIO's logical value, i.e. taking the ACTIVE_LOW status into
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003270 * account, or negative errno on failure.
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003271 *
3272 * This function is to be called from contexts that can sleep.
3273 */
3274int gpiod_get_value_cansleep(const struct gpio_desc *desc)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003275{
David Brownelld2876d02008-02-04 22:28:20 -08003276 int value;
David Brownelld2876d02008-02-04 22:28:20 -08003277
3278 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003279 VALIDATE_DESC(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003280 value = gpiod_get_raw_value_commit(desc);
Bjorn Anderssone20538b2015-08-28 09:44:18 -07003281 if (value < 0)
3282 return value;
3283
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003284 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
3285 value = !value;
3286
David Brownelld2876d02008-02-04 22:28:20 -08003287 return value;
3288}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003289EXPORT_SYMBOL_GPL(gpiod_get_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003290
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003291/**
Lukas Wunnereec1d562017-10-12 12:40:10 +02003292 * gpiod_get_raw_array_value_cansleep() - read raw values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003293 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003294 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003295 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003296 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003297 *
3298 * Read the raw values of the GPIOs, i.e. the values of the physical lines
3299 * without regard for their ACTIVE_LOW status. Return 0 in case of success,
3300 * else an error code.
3301 *
3302 * This function is to be called from contexts that can sleep.
3303 */
3304int gpiod_get_raw_array_value_cansleep(unsigned int array_size,
3305 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003306 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003307 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003308{
3309 might_sleep_if(extra_checks);
3310 if (!desc_array)
3311 return -EINVAL;
3312 return gpiod_get_array_value_complex(true, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003313 desc_array, array_info,
3314 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003315}
3316EXPORT_SYMBOL_GPL(gpiod_get_raw_array_value_cansleep);
3317
3318/**
3319 * gpiod_get_array_value_cansleep() - read values from an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003320 * @array_size: number of elements in the descriptor array / value bitmap
Lukas Wunnereec1d562017-10-12 12:40:10 +02003321 * @desc_array: array of GPIO descriptors whose values will be read
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003322 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003323 * @value_bitmap: bitmap to store the read values
Lukas Wunnereec1d562017-10-12 12:40:10 +02003324 *
3325 * Read the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3326 * into account. Return 0 in case of success, else an error code.
3327 *
3328 * This function is to be called from contexts that can sleep.
3329 */
3330int gpiod_get_array_value_cansleep(unsigned int array_size,
3331 struct gpio_desc **desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003332 struct gpio_array *array_info,
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003333 unsigned long *value_bitmap)
Lukas Wunnereec1d562017-10-12 12:40:10 +02003334{
3335 might_sleep_if(extra_checks);
3336 if (!desc_array)
3337 return -EINVAL;
3338 return gpiod_get_array_value_complex(false, true, array_size,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003339 desc_array, array_info,
3340 value_bitmap);
Lukas Wunnereec1d562017-10-12 12:40:10 +02003341}
3342EXPORT_SYMBOL_GPL(gpiod_get_array_value_cansleep);
3343
3344/**
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003345 * gpiod_set_raw_value_cansleep() - assign a gpio's raw value
3346 * @desc: gpio whose value will be assigned
3347 * @value: value to assign
3348 *
3349 * Set the raw value of the GPIO, i.e. the value of its physical line without
3350 * regard for its ACTIVE_LOW status.
3351 *
3352 * This function is to be called from contexts that can sleep.
3353 */
3354void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003355{
David Brownelld2876d02008-02-04 22:28:20 -08003356 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003357 VALIDATE_DESC_VOID(desc);
Linus Walleijfac9d882017-09-26 20:58:28 +02003358 gpiod_set_raw_value_commit(desc, value);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003359}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003360EXPORT_SYMBOL_GPL(gpiod_set_raw_value_cansleep);
Alexandre Courbot372e7222013-02-03 01:29:29 +09003361
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003362/**
3363 * gpiod_set_value_cansleep() - assign a gpio's value
3364 * @desc: gpio whose value will be assigned
3365 * @value: value to assign
3366 *
3367 * Set the logical value of the GPIO, i.e. taking its ACTIVE_LOW status into
3368 * account
3369 *
3370 * This function is to be called from contexts that can sleep.
3371 */
3372void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
Alexandre Courbot372e7222013-02-03 01:29:29 +09003373{
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003374 might_sleep_if(extra_checks);
Linus Walleijfdeb8e12016-02-10 10:57:36 +01003375 VALIDATE_DESC_VOID(desc);
Geert Uytterhoeven1e77fc82018-01-09 19:08:21 +01003376 gpiod_set_value_nocheck(desc, value);
David Brownelld2876d02008-02-04 22:28:20 -08003377}
Alexandre Courbot79a9bec2013-10-17 10:21:36 -07003378EXPORT_SYMBOL_GPL(gpiod_set_value_cansleep);
David Brownelld2876d02008-02-04 22:28:20 -08003379
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003380/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003381 * gpiod_set_raw_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003382 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003383 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003384 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003385 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003386 *
3387 * Set the raw values of the GPIOs, i.e. the values of the physical lines
3388 * without regard for their ACTIVE_LOW status.
3389 *
3390 * This function is to be called from contexts that can sleep.
3391 */
Laura Abbott30277432018-05-21 10:57:07 -07003392int gpiod_set_raw_array_value_cansleep(unsigned int array_size,
Geert Uytterhoeven3c940662018-09-27 13:38:10 +02003393 struct gpio_desc **desc_array,
3394 struct gpio_array *array_info,
3395 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003396{
3397 might_sleep_if(extra_checks);
3398 if (!desc_array)
Laura Abbott30277432018-05-21 10:57:07 -07003399 return -EINVAL;
3400 return gpiod_set_array_value_complex(true, true, array_size, desc_array,
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003401 array_info, value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003402}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003403EXPORT_SYMBOL_GPL(gpiod_set_raw_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003404
3405/**
Dmitry Torokhov3946d182017-08-14 21:59:55 -07003406 * gpiod_add_lookup_tables() - register GPIO device consumers
3407 * @tables: list of tables of consumers to register
3408 * @n: number of tables in the list
3409 */
3410void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n)
3411{
3412 unsigned int i;
3413
3414 mutex_lock(&gpio_lookup_lock);
3415
3416 for (i = 0; i < n; i++)
3417 list_add_tail(&tables[i]->list, &gpio_lookup_list);
3418
3419 mutex_unlock(&gpio_lookup_lock);
3420}
3421
3422/**
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003423 * gpiod_set_array_value_cansleep() - assign values to an array of GPIOs
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003424 * @array_size: number of elements in the descriptor array / value bitmap
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003425 * @desc_array: array of GPIO descriptors whose values will be assigned
Janusz Krzysztofik77588c12018-09-05 23:50:07 +02003426 * @array_info: information on applicability of fast bitmap processing path
Janusz Krzysztofikb9762be2018-09-05 23:50:05 +02003427 * @value_bitmap: bitmap of values to assign
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003428 *
3429 * Set the logical values of the GPIOs, i.e. taking their ACTIVE_LOW status
3430 * into account.
3431 *
3432 * This function is to be called from contexts that can sleep.
3433 */
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003434int gpiod_set_array_value_cansleep(unsigned int array_size,
3435 struct gpio_desc **desc_array,
3436 struct gpio_array *array_info,
3437 unsigned long *value_bitmap)
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003438{
3439 might_sleep_if(extra_checks);
3440 if (!desc_array)
Geert Uytterhoevencf9af0d2018-09-27 13:38:09 +02003441 return -EINVAL;
3442 return gpiod_set_array_value_complex(false, true, array_size,
3443 desc_array, array_info,
3444 value_bitmap);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003445}
Rojhalat Ibrahim3fff99b2015-05-13 11:04:56 +02003446EXPORT_SYMBOL_GPL(gpiod_set_array_value_cansleep);
Rojhalat Ibrahim5f424242014-11-04 17:12:06 +01003447
3448/**
Alexandre Courbotad824782013-12-03 12:20:11 +09003449 * gpiod_add_lookup_table() - register GPIO device consumers
3450 * @table: table of consumers to register
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003451 */
Alexandre Courbotad824782013-12-03 12:20:11 +09003452void gpiod_add_lookup_table(struct gpiod_lookup_table *table)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003453{
3454 mutex_lock(&gpio_lookup_lock);
3455
Alexandre Courbotad824782013-12-03 12:20:11 +09003456 list_add_tail(&table->list, &gpio_lookup_list);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003457
3458 mutex_unlock(&gpio_lookup_lock);
David Brownelld2876d02008-02-04 22:28:20 -08003459}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003460EXPORT_SYMBOL_GPL(gpiod_add_lookup_table);
David Brownelld2876d02008-02-04 22:28:20 -08003461
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303462/**
3463 * gpiod_remove_lookup_table() - unregister GPIO device consumers
3464 * @table: table of consumers to unregister
3465 */
3466void gpiod_remove_lookup_table(struct gpiod_lookup_table *table)
3467{
Andy Shevchenkod321ad12020-12-28 22:06:16 +02003468 /* Nothing to remove */
3469 if (!table)
3470 return;
3471
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303472 mutex_lock(&gpio_lookup_lock);
3473
3474 list_del(&table->list);
3475
3476 mutex_unlock(&gpio_lookup_lock);
3477}
Anatolij Gustschin226b2242017-04-20 23:23:20 +02003478EXPORT_SYMBOL_GPL(gpiod_remove_lookup_table);
Shobhit Kumarbe9015a2015-06-26 14:32:04 +05303479
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02003480/**
3481 * gpiod_add_hogs() - register a set of GPIO hogs from machine code
3482 * @hogs: table of gpio hog entries with a zeroed sentinel at the end
3483 */
3484void gpiod_add_hogs(struct gpiod_hog *hogs)
3485{
Linus Walleija0b66a72020-03-29 16:04:05 +02003486 struct gpio_chip *gc;
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02003487 struct gpiod_hog *hog;
3488
3489 mutex_lock(&gpio_machine_hogs_mutex);
3490
3491 for (hog = &hogs[0]; hog->chip_label; hog++) {
3492 list_add_tail(&hog->list, &gpio_machine_hogs);
3493
3494 /*
3495 * The chip may have been registered earlier, so check if it
3496 * exists and, if so, try to hog the line now.
3497 */
Linus Walleija0b66a72020-03-29 16:04:05 +02003498 gc = find_chip_by_name(hog->chip_label);
3499 if (gc)
3500 gpiochip_machine_hog(gc, hog);
Bartosz Golaszewskia411e812018-04-10 22:30:28 +02003501 }
3502
3503 mutex_unlock(&gpio_machine_hogs_mutex);
3504}
3505EXPORT_SYMBOL_GPL(gpiod_add_hogs);
3506
Alexandre Courbotad824782013-12-03 12:20:11 +09003507static struct gpiod_lookup_table *gpiod_find_lookup_table(struct device *dev)
3508{
3509 const char *dev_id = dev ? dev_name(dev) : NULL;
3510 struct gpiod_lookup_table *table;
3511
3512 mutex_lock(&gpio_lookup_lock);
3513
3514 list_for_each_entry(table, &gpio_lookup_list, list) {
3515 if (table->dev_id && dev_id) {
3516 /*
3517 * Valid strings on both ends, must be identical to have
3518 * a match
3519 */
3520 if (!strcmp(table->dev_id, dev_id))
3521 goto found;
3522 } else {
3523 /*
3524 * One of the pointers is NULL, so both must be to have
3525 * a match
3526 */
3527 if (dev_id == table->dev_id)
3528 goto found;
3529 }
3530 }
3531 table = NULL;
3532
3533found:
3534 mutex_unlock(&gpio_lookup_lock);
3535 return table;
3536}
3537
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003538static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
Andy Shevchenkofed70262019-04-10 18:39:16 +03003539 unsigned int idx, unsigned long *flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003540{
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003541 struct gpio_desc *desc = ERR_PTR(-ENOENT);
Alexandre Courbotad824782013-12-03 12:20:11 +09003542 struct gpiod_lookup_table *table;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003543 struct gpiod_lookup *p;
3544
Alexandre Courbotad824782013-12-03 12:20:11 +09003545 table = gpiod_find_lookup_table(dev);
3546 if (!table)
3547 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003548
Geert Uytterhoeven4c033b52020-05-11 16:52:54 +02003549 for (p = &table->table[0]; p->key; p++) {
Linus Walleija0b66a72020-03-29 16:04:05 +02003550 struct gpio_chip *gc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003551
Alexandre Courbotad824782013-12-03 12:20:11 +09003552 /* idx must always match exactly */
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003553 if (p->idx != idx)
3554 continue;
3555
Alexandre Courbotad824782013-12-03 12:20:11 +09003556 /* If the lookup entry has a con_id, require exact match */
3557 if (p->con_id && (!con_id || strcmp(p->con_id, con_id)))
3558 continue;
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003559
Geert Uytterhoeven4c033b52020-05-11 16:52:54 +02003560 if (p->chip_hwnum == U16_MAX) {
3561 desc = gpio_name_to_desc(p->key);
3562 if (desc) {
3563 *flags = p->flags;
3564 return desc;
3565 }
3566
3567 dev_warn(dev, "cannot find GPIO line %s, deferring\n",
3568 p->key);
3569 return ERR_PTR(-EPROBE_DEFER);
3570 }
3571
3572 gc = find_chip_by_name(p->key);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003573
Linus Walleija0b66a72020-03-29 16:04:05 +02003574 if (!gc) {
Janusz Krzysztofik8853daf2018-07-04 00:18:19 +02003575 /*
3576 * As the lookup table indicates a chip with
Geert Uytterhoeven4c033b52020-05-11 16:52:54 +02003577 * p->key should exist, assume it may
Janusz Krzysztofik8853daf2018-07-04 00:18:19 +02003578 * still appear later and let the interested
3579 * consumer be probed again or let the Deferred
3580 * Probe infrastructure handle the error.
3581 */
3582 dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
Geert Uytterhoeven4c033b52020-05-11 16:52:54 +02003583 p->key);
Janusz Krzysztofik8853daf2018-07-04 00:18:19 +02003584 return ERR_PTR(-EPROBE_DEFER);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003585 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003586
Linus Walleija0b66a72020-03-29 16:04:05 +02003587 if (gc->ngpio <= p->chip_hwnum) {
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003588 dev_err(dev,
Geert Uytterhoevend935bd52019-11-27 10:59:19 +01003589 "requested GPIO %u (%u) is out of range [0..%u] for chip %s\n",
Linus Walleija0b66a72020-03-29 16:04:05 +02003590 idx, p->chip_hwnum, gc->ngpio - 1,
3591 gc->label);
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003592 return ERR_PTR(-EINVAL);
Alexandre Courbotad824782013-12-03 12:20:11 +09003593 }
3594
Linus Walleija0b66a72020-03-29 16:04:05 +02003595 desc = gpiochip_get_desc(gc, p->chip_hwnum);
Alexandre Courbotad824782013-12-03 12:20:11 +09003596 *flags = p->flags;
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003597
3598 return desc;
Alexandre Courbotad824782013-12-03 12:20:11 +09003599 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003600
3601 return desc;
3602}
3603
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003604static int platform_gpio_count(struct device *dev, const char *con_id)
3605{
3606 struct gpiod_lookup_table *table;
3607 struct gpiod_lookup *p;
3608 unsigned int count = 0;
3609
3610 table = gpiod_find_lookup_table(dev);
3611 if (!table)
3612 return -ENOENT;
3613
Geert Uytterhoeven4c033b52020-05-11 16:52:54 +02003614 for (p = &table->table[0]; p->key; p++) {
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003615 if ((con_id && p->con_id && !strcmp(con_id, p->con_id)) ||
3616 (!con_id && !p->con_id))
3617 count++;
3618 }
3619 if (!count)
3620 return -ENOENT;
3621
3622 return count;
3623}
3624
3625/**
Dmitry Torokhov13949fa2019-09-12 20:22:39 -07003626 * fwnode_gpiod_get_index - obtain a GPIO from firmware node
3627 * @fwnode: handle of the firmware node
3628 * @con_id: function within the GPIO consumer
3629 * @index: index of the GPIO to obtain for the consumer
3630 * @flags: GPIO initialization flags
3631 * @label: label to attach to the requested GPIO
3632 *
3633 * This function can be used for drivers that get their configuration
3634 * from opaque firmware.
3635 *
3636 * The function properly finds the corresponding GPIO using whatever is the
3637 * underlying firmware interface and then makes sure that the GPIO
3638 * descriptor is requested before it is returned to the caller.
3639 *
3640 * Returns:
3641 * On successful request the GPIO pin is configured in accordance with
3642 * provided @flags.
3643 *
3644 * In case of error an ERR_PTR() is returned.
3645 */
3646struct gpio_desc *fwnode_gpiod_get_index(struct fwnode_handle *fwnode,
3647 const char *con_id, int index,
3648 enum gpiod_flags flags,
3649 const char *label)
3650{
3651 struct gpio_desc *desc;
3652 char prop_name[32]; /* 32 is max size of property name */
3653 unsigned int i;
3654
3655 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
3656 if (con_id)
3657 snprintf(prop_name, sizeof(prop_name), "%s-%s",
3658 con_id, gpio_suffixes[i]);
3659 else
3660 snprintf(prop_name, sizeof(prop_name), "%s",
3661 gpio_suffixes[i]);
3662
3663 desc = fwnode_get_named_gpiod(fwnode, prop_name, index, flags,
3664 label);
Andy Shevchenko7b586962020-10-21 17:25:28 +03003665 if (!gpiod_not_found(desc))
Dmitry Torokhov13949fa2019-09-12 20:22:39 -07003666 break;
3667 }
3668
3669 return desc;
3670}
3671EXPORT_SYMBOL_GPL(fwnode_gpiod_get_index);
3672
3673/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003674 * gpiod_count - return the number of GPIOs associated with a device / function
3675 * or -ENOENT if no GPIO has been assigned to the requested function
3676 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3677 * @con_id: function within the GPIO consumer
3678 */
3679int gpiod_count(struct device *dev, const char *con_id)
3680{
3681 int count = -ENOENT;
3682
3683 if (IS_ENABLED(CONFIG_OF) && dev && dev->of_node)
Linus Walleijf626d6d2019-07-17 09:10:01 +02003684 count = of_gpio_get_count(dev, con_id);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01003685 else if (IS_ENABLED(CONFIG_ACPI) && dev && ACPI_HANDLE(dev))
3686 count = acpi_gpio_count(dev, con_id);
3687
3688 if (count < 0)
3689 count = platform_gpio_count(dev, con_id);
3690
3691 return count;
3692}
3693EXPORT_SYMBOL_GPL(gpiod_count);
3694
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003695/**
Thierry Reding08791622014-04-25 16:54:22 +02003696 * gpiod_get - obtain a GPIO for a given GPIO function
Alexandre Courbotad824782013-12-03 12:20:11 +09003697 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003698 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003699 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003700 *
3701 * Return the GPIO descriptor corresponding to the function con_id of device
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003702 * dev, -ENOENT if no GPIO has been assigned to the requested function, or
Colin Cronin20a8a962015-05-18 11:41:43 -07003703 * another IS_ERR() code if an error occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003704 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003705struct gpio_desc *__must_check gpiod_get(struct device *dev, const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003706 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003707{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003708 return gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003709}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003710EXPORT_SYMBOL_GPL(gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003711
3712/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003713 * gpiod_get_optional - obtain an optional GPIO for a given GPIO function
3714 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3715 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003716 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003717 *
3718 * This is equivalent to gpiod_get(), except that when no GPIO was assigned to
3719 * the requested function it will return NULL. This is convenient for drivers
3720 * that need to handle optional GPIOs.
3721 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003722struct gpio_desc *__must_check gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003723 const char *con_id,
3724 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003725{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003726 return gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003727}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003728EXPORT_SYMBOL_GPL(gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003729
Benoit Parrotf625d462015-02-02 11:44:44 -06003730
3731/**
3732 * gpiod_configure_flags - helper function to configure a given GPIO
3733 * @desc: gpio whose value will be assigned
3734 * @con_id: function within the GPIO consumer
Andy Shevchenkofed70262019-04-10 18:39:16 +03003735 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
3736 * of_find_gpio() or of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003737 * @dflags: gpiod_flags - optional GPIO initialization flags
3738 *
3739 * Return 0 on success, -ENOENT if no GPIO has been assigned to the
3740 * requested function and/or index, or another IS_ERR() code if an error
3741 * occurred while trying to acquire the GPIO.
3742 */
Andy Shevchenkoc29fd9e2017-05-23 20:03:16 +03003743int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,
Johan Hovold85b03b32016-07-03 18:32:05 +02003744 unsigned long lflags, enum gpiod_flags dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -06003745{
Linus Walleijd377f562019-07-16 11:11:45 +02003746 int ret;
Benoit Parrotf625d462015-02-02 11:44:44 -06003747
Johan Hovold85b03b32016-07-03 18:32:05 +02003748 if (lflags & GPIO_ACTIVE_LOW)
3749 set_bit(FLAG_ACTIVE_LOW, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02003750
Johan Hovold85b03b32016-07-03 18:32:05 +02003751 if (lflags & GPIO_OPEN_DRAIN)
3752 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
Linus Walleijf926dfc2017-09-10 19:26:22 +02003753 else if (dflags & GPIOD_FLAGS_BIT_OPEN_DRAIN) {
3754 /*
3755 * This enforces open drain mode from the consumer side.
3756 * This is necessary for some busses like I2C, but the lookup
3757 * should *REALLY* have specified them as open drain in the
3758 * first place, so print a little warning here.
3759 */
3760 set_bit(FLAG_OPEN_DRAIN, &desc->flags);
3761 gpiod_warn(desc,
3762 "enforced open drain please flag it properly in DT/ACPI DSDT/board file\n");
3763 }
3764
Johan Hovold85b03b32016-07-03 18:32:05 +02003765 if (lflags & GPIO_OPEN_SOURCE)
3766 set_bit(FLAG_OPEN_SOURCE, &desc->flags);
Andrew Jefferye10f72b2017-11-30 14:25:24 +10303767
Thomas Petazzonid4499912019-02-07 17:28:58 +01003768 if ((lflags & GPIO_PULL_UP) && (lflags & GPIO_PULL_DOWN)) {
3769 gpiod_err(desc,
3770 "both pull-up and pull-down enabled, invalid configuration\n");
3771 return -EINVAL;
3772 }
3773
3774 if (lflags & GPIO_PULL_UP)
3775 set_bit(FLAG_PULL_UP, &desc->flags);
3776 else if (lflags & GPIO_PULL_DOWN)
3777 set_bit(FLAG_PULL_DOWN, &desc->flags);
3778
Linus Walleijd377f562019-07-16 11:11:45 +02003779 ret = gpiod_set_transitory(desc, (lflags & GPIO_TRANSITORY));
3780 if (ret < 0)
3781 return ret;
Johan Hovold85b03b32016-07-03 18:32:05 +02003782
Benoit Parrotf625d462015-02-02 11:44:44 -06003783 /* No particular flag request, return here... */
3784 if (!(dflags & GPIOD_FLAGS_BIT_DIR_SET)) {
Geert Uytterhoeven262b9012020-04-24 16:14:32 +02003785 gpiod_dbg(desc, "no flags found for %s\n", con_id);
Benoit Parrotf625d462015-02-02 11:44:44 -06003786 return 0;
3787 }
3788
3789 /* Process flags */
3790 if (dflags & GPIOD_FLAGS_BIT_DIR_OUT)
Linus Walleijd377f562019-07-16 11:11:45 +02003791 ret = gpiod_direction_output(desc,
Linus Walleijad177312016-11-13 23:02:44 +01003792 !!(dflags & GPIOD_FLAGS_BIT_DIR_VAL));
Benoit Parrotf625d462015-02-02 11:44:44 -06003793 else
Linus Walleijd377f562019-07-16 11:11:45 +02003794 ret = gpiod_direction_input(desc);
Benoit Parrotf625d462015-02-02 11:44:44 -06003795
Linus Walleijd377f562019-07-16 11:11:45 +02003796 return ret;
Benoit Parrotf625d462015-02-02 11:44:44 -06003797}
3798
Thierry Reding29a1f2332014-04-25 17:10:06 +02003799/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003800 * gpiod_get_index - obtain a GPIO from a multi-index GPIO function
Andy Shevchenkofdd6a5f2013-12-05 11:26:26 +02003801 * @dev: GPIO consumer, can be NULL for system-global GPIOs
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003802 * @con_id: function within the GPIO consumer
3803 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003804 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003805 *
3806 * This variant of gpiod_get() allows to access GPIOs other than the first
3807 * defined one for functions that define several GPIOs.
3808 *
Alexandre Courbot2a3cf6a2013-12-11 11:32:28 +09003809 * Return a valid GPIO descriptor, -ENOENT if no GPIO has been assigned to the
3810 * requested function and/or index, or another IS_ERR() code if an error
Colin Cronin20a8a962015-05-18 11:41:43 -07003811 * occurred while trying to acquire the GPIO.
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003812 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003813struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003814 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003815 unsigned int idx,
3816 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003817{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03003818 unsigned long lookupflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003819 struct gpio_desc *desc = NULL;
Linus Walleijd377f562019-07-16 11:11:45 +02003820 int ret;
Linus Walleij7d18f0a2018-01-16 08:29:50 +01003821 /* Maybe we have a device name, maybe not */
3822 const char *devname = dev ? dev_name(dev) : "?";
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003823
3824 dev_dbg(dev, "GPIO lookup for consumer %s\n", con_id);
3825
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003826 if (dev) {
3827 /* Using device tree? */
3828 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
3829 dev_dbg(dev, "using device tree for GPIO lookup\n");
3830 desc = of_find_gpio(dev, con_id, idx, &lookupflags);
3831 } else if (ACPI_COMPANION(dev)) {
3832 dev_dbg(dev, "using ACPI for GPIO lookup\n");
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +03003833 desc = acpi_find_gpio(dev, con_id, idx, &flags, &lookupflags);
Rafael J. Wysocki4d8440b2015-03-10 23:08:57 +01003834 }
Alexandre Courbot35c5d7f2013-11-23 19:34:50 +09003835 }
3836
3837 /*
3838 * Either we are not using DT or ACPI, or their lookup did not return
3839 * a result. In that case, use platform lookup as a fallback.
3840 */
Andy Shevchenko7b586962020-10-21 17:25:28 +03003841 if (!desc || gpiod_not_found(desc)) {
Alexander Shiyan43a87852014-09-19 11:39:25 +04003842 dev_dbg(dev, "using lookup tables for GPIO lookup\n");
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003843 desc = gpiod_find(dev, con_id, idx, &lookupflags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003844 }
3845
3846 if (IS_ERR(desc)) {
Wang Dongsheng9d5a1f22018-02-27 00:12:13 -08003847 dev_dbg(dev, "No GPIO consumer %s found\n", con_id);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003848 return desc;
3849 }
3850
Linus Walleij7d18f0a2018-01-16 08:29:50 +01003851 /*
3852 * If a connection label was passed use that, else attempt to use
3853 * the device name as label
3854 */
Linus Walleijd377f562019-07-16 11:11:45 +02003855 ret = gpiod_request(desc, con_id ? con_id : devname);
Andy Shevchenko8bbff392020-10-21 14:25:36 +03003856 if (ret) {
Linus Walleijd377f562019-07-16 11:11:45 +02003857 if (ret == -EBUSY && flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) {
Linus Walleijb0ce7b292018-10-12 14:54:12 +02003858 /*
3859 * This happens when there are several consumers for
3860 * the same GPIO line: we just return here without
3861 * further initialization. It is a bit if a hack.
3862 * This is necessary to support fixed regulators.
3863 *
3864 * FIXME: Make this more sane and safe.
3865 */
3866 dev_info(dev, "nonexclusive access to GPIO for %s\n",
3867 con_id ? con_id : devname);
3868 return desc;
3869 } else {
Linus Walleijd377f562019-07-16 11:11:45 +02003870 return ERR_PTR(ret);
Linus Walleijb0ce7b292018-10-12 14:54:12 +02003871 }
3872 }
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003873
Linus Walleijd377f562019-07-16 11:11:45 +02003874 ret = gpiod_configure_flags(desc, con_id, lookupflags, flags);
3875 if (ret < 0) {
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003876 dev_dbg(dev, "setup of GPIO %s failed\n", con_id);
3877 gpiod_put(desc);
Linus Walleijd377f562019-07-16 11:11:45 +02003878 return ERR_PTR(ret);
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003879 }
3880
Kent Gibson6accc372020-07-08 12:15:51 +08003881 blocking_notifier_call_chain(&desc->gdev->notifier,
3882 GPIOLINE_CHANGED_REQUESTED, desc);
Bartosz Golaszewski9fefca72020-05-09 16:08:13 +02003883
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003884 return desc;
3885}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003886EXPORT_SYMBOL_GPL(gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07003887
3888/**
Mika Westerberg40b73182014-10-21 13:33:59 +02003889 * fwnode_get_named_gpiod - obtain a GPIO from firmware node
3890 * @fwnode: handle of the firmware node
3891 * @propname: name of the firmware property representing the GPIO
Linus Walleij6392cca2017-12-29 02:07:54 +01003892 * @index: index of the GPIO to obtain for the consumer
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003893 * @dflags: GPIO initialization flags
Thierry Reding950d55f52017-07-24 16:57:22 +02003894 * @label: label to attach to the requested GPIO
Mika Westerberg40b73182014-10-21 13:33:59 +02003895 *
3896 * This function can be used for drivers that get their configuration
Linus Walleij6392cca2017-12-29 02:07:54 +01003897 * from opaque firmware.
Mika Westerberg40b73182014-10-21 13:33:59 +02003898 *
Linus Walleij6392cca2017-12-29 02:07:54 +01003899 * The function properly finds the corresponding GPIO using whatever is the
Mika Westerberg40b73182014-10-21 13:33:59 +02003900 * underlying firmware interface and then makes sure that the GPIO
3901 * descriptor is requested before it is returned to the caller.
3902 *
Thierry Reding950d55f52017-07-24 16:57:22 +02003903 * Returns:
Andy Shevchenkoff213782017-02-28 17:03:12 +02003904 * On successful request the GPIO pin is configured in accordance with
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003905 * provided @dflags.
3906 *
Mika Westerberg40b73182014-10-21 13:33:59 +02003907 * In case of error an ERR_PTR() is returned.
3908 */
3909struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
Boris Brezillon537b94d2017-02-02 14:53:11 +01003910 const char *propname, int index,
Alexander Steinb2987d72017-01-12 17:39:24 +01003911 enum gpiod_flags dflags,
3912 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +02003913{
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03003914 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Mika Westerberg40b73182014-10-21 13:33:59 +02003915 struct gpio_desc *desc = ERR_PTR(-ENODEV);
Mika Westerberg40b73182014-10-21 13:33:59 +02003916 int ret;
3917
3918 if (!fwnode)
3919 return ERR_PTR(-EINVAL);
3920
3921 if (is_of_node(fwnode)) {
Linus Walleij6392cca2017-12-29 02:07:54 +01003922 desc = gpiod_get_from_of_node(to_of_node(fwnode),
3923 propname, index,
3924 dflags,
3925 label);
3926 return desc;
Mika Westerberg40b73182014-10-21 13:33:59 +02003927 } else if (is_acpi_node(fwnode)) {
3928 struct acpi_gpio_info info;
3929
Boris Brezillon537b94d2017-02-02 14:53:11 +01003930 desc = acpi_node_get_gpiod(fwnode, propname, index, &info);
Linus Walleij6392cca2017-12-29 02:07:54 +01003931 if (IS_ERR(desc))
3932 return desc;
3933
3934 acpi_gpio_update_gpiod_flags(&dflags, &info);
Andy Shevchenko606be342019-04-10 18:39:20 +03003935 acpi_gpio_update_gpiod_lookup_flags(&lflags, &info);
Mika Westerberg40b73182014-10-21 13:33:59 +02003936 }
3937
Linus Walleij6392cca2017-12-29 02:07:54 +01003938 /* Currently only ACPI takes this path */
Alexander Steinb2987d72017-01-12 17:39:24 +01003939 ret = gpiod_request(desc, label);
Johan Hovold85b03b32016-07-03 18:32:05 +02003940 if (ret)
3941 return ERR_PTR(ret);
3942
Andy Shevchenkoa264d102017-01-09 16:02:28 +02003943 ret = gpiod_configure_flags(desc, propname, lflags, dflags);
3944 if (ret < 0) {
3945 gpiod_put(desc);
3946 return ERR_PTR(ret);
Laurent Pinchart90b665f2015-10-13 00:20:21 +03003947 }
3948
Kent Gibson6accc372020-07-08 12:15:51 +08003949 blocking_notifier_call_chain(&desc->gdev->notifier,
3950 GPIOLINE_CHANGED_REQUESTED, desc);
Bartosz Golaszewski9fefca72020-05-09 16:08:13 +02003951
Mika Westerberg40b73182014-10-21 13:33:59 +02003952 return desc;
3953}
3954EXPORT_SYMBOL_GPL(fwnode_get_named_gpiod);
3955
3956/**
Thierry Reding29a1f2332014-04-25 17:10:06 +02003957 * gpiod_get_index_optional - obtain an optional GPIO from a multi-index GPIO
3958 * function
3959 * @dev: GPIO consumer, can be NULL for system-global GPIOs
3960 * @con_id: function within the GPIO consumer
3961 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003962 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +02003963 *
3964 * This is equivalent to gpiod_get_index(), except that when no GPIO with the
3965 * specified index was assigned to the requested function it will return NULL.
3966 * This is convenient for drivers that need to handle optional GPIOs.
3967 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003968struct gpio_desc *__must_check gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +02003969 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003970 unsigned int index,
3971 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +02003972{
3973 struct gpio_desc *desc;
3974
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +09003975 desc = gpiod_get_index(dev, con_id, index, flags);
Andy Shevchenko7b586962020-10-21 17:25:28 +03003976 if (gpiod_not_found(desc))
3977 return NULL;
Thierry Reding29a1f2332014-04-25 17:10:06 +02003978
3979 return desc;
3980}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +01003981EXPORT_SYMBOL_GPL(gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +02003982
3983/**
Benoit Parrotf625d462015-02-02 11:44:44 -06003984 * gpiod_hog - Hog the specified GPIO desc given the provided flags
3985 * @desc: gpio whose value will be assigned
3986 * @name: gpio line name
Andy Shevchenkofed70262019-04-10 18:39:16 +03003987 * @lflags: bitmask of gpio_lookup_flags GPIO_* values - returned from
3988 * of_find_gpio() or of_get_gpio_hog()
Benoit Parrotf625d462015-02-02 11:44:44 -06003989 * @dflags: gpiod_flags - optional GPIO initialization flags
3990 */
3991int gpiod_hog(struct gpio_desc *desc, const char *name,
3992 unsigned long lflags, enum gpiod_flags dflags)
3993{
Linus Walleija0b66a72020-03-29 16:04:05 +02003994 struct gpio_chip *gc;
Benoit Parrotf625d462015-02-02 11:44:44 -06003995 struct gpio_desc *local_desc;
3996 int hwnum;
Linus Walleijd377f562019-07-16 11:11:45 +02003997 int ret;
Benoit Parrotf625d462015-02-02 11:44:44 -06003998
Linus Walleija0b66a72020-03-29 16:04:05 +02003999 gc = gpiod_to_chip(desc);
Benoit Parrotf625d462015-02-02 11:44:44 -06004000 hwnum = gpio_chip_hwgpio(desc);
4001
Linus Walleija0b66a72020-03-29 16:04:05 +02004002 local_desc = gpiochip_request_own_desc(gc, hwnum, name,
Linus Walleij5923ea62019-04-26 14:40:18 +02004003 lflags, dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -06004004 if (IS_ERR(local_desc)) {
Linus Walleijd377f562019-07-16 11:11:45 +02004005 ret = PTR_ERR(local_desc);
Laxman Dewanganc31a5712016-03-11 19:13:21 +05304006 pr_err("requesting hog GPIO %s (chip %s, offset %d) failed, %d\n",
Linus Walleija0b66a72020-03-29 16:04:05 +02004007 name, gc->label, hwnum, ret);
Linus Walleijd377f562019-07-16 11:11:45 +02004008 return ret;
Benoit Parrotf625d462015-02-02 11:44:44 -06004009 }
4010
Benoit Parrotf625d462015-02-02 11:44:44 -06004011 /* Mark GPIO as hogged so it can be identified and removed later */
4012 set_bit(FLAG_IS_HOGGED, &desc->flags);
4013
Geert Uytterhoeven262b9012020-04-24 16:14:32 +02004014 gpiod_info(desc, "hogged as %s%s\n",
Bartosz Golaszewskib27f3002019-11-13 14:16:29 +01004015 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ? "output" : "input",
4016 (dflags & GPIOD_FLAGS_BIT_DIR_OUT) ?
4017 (dflags & GPIOD_FLAGS_BIT_DIR_VAL) ? "/high" : "/low" : "");
Benoit Parrotf625d462015-02-02 11:44:44 -06004018
4019 return 0;
4020}
4021
4022/**
4023 * gpiochip_free_hogs - Scan gpio-controller chip and release GPIO hog
Linus Walleija0b66a72020-03-29 16:04:05 +02004024 * @gc: gpio chip to act on
Benoit Parrotf625d462015-02-02 11:44:44 -06004025 */
Linus Walleija0b66a72020-03-29 16:04:05 +02004026static void gpiochip_free_hogs(struct gpio_chip *gc)
Benoit Parrotf625d462015-02-02 11:44:44 -06004027{
4028 int id;
4029
Linus Walleija0b66a72020-03-29 16:04:05 +02004030 for (id = 0; id < gc->ngpio; id++) {
4031 if (test_bit(FLAG_IS_HOGGED, &gc->gpiodev->descs[id].flags))
4032 gpiochip_free_own_desc(&gc->gpiodev->descs[id]);
Benoit Parrotf625d462015-02-02 11:44:44 -06004033 }
4034}
4035
4036/**
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004037 * gpiod_get_array - obtain multiple GPIOs from a multi-index GPIO function
4038 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4039 * @con_id: function within the GPIO consumer
4040 * @flags: optional GPIO initialization flags
4041 *
4042 * This function acquires all the GPIOs defined under a given function.
4043 *
4044 * Return a struct gpio_descs containing an array of descriptors, -ENOENT if
4045 * no GPIO has been assigned to the requested function, or another IS_ERR()
4046 * code if an error occurred while trying to acquire the GPIOs.
4047 */
4048struct gpio_descs *__must_check gpiod_get_array(struct device *dev,
4049 const char *con_id,
4050 enum gpiod_flags flags)
4051{
4052 struct gpio_desc *desc;
4053 struct gpio_descs *descs;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004054 struct gpio_array *array_info = NULL;
Linus Walleija0b66a72020-03-29 16:04:05 +02004055 struct gpio_chip *gc;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004056 int count, bitmap_size;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004057
4058 count = gpiod_count(dev, con_id);
4059 if (count < 0)
4060 return ERR_PTR(count);
4061
Kees Cookacafe7e2018-05-08 13:45:50 -07004062 descs = kzalloc(struct_size(descs, desc, count), GFP_KERNEL);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004063 if (!descs)
4064 return ERR_PTR(-ENOMEM);
4065
4066 for (descs->ndescs = 0; descs->ndescs < count; ) {
4067 desc = gpiod_get_index(dev, con_id, descs->ndescs, flags);
4068 if (IS_ERR(desc)) {
4069 gpiod_put_array(descs);
4070 return ERR_CAST(desc);
4071 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004072
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004073 descs->desc[descs->ndescs] = desc;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004074
Linus Walleija0b66a72020-03-29 16:04:05 +02004075 gc = gpiod_to_chip(desc);
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004076 /*
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004077 * If pin hardware number of array member 0 is also 0, select
4078 * its chip as a candidate for fast bitmap processing path.
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004079 */
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004080 if (descs->ndescs == 0 && gpio_chip_hwgpio(desc) == 0) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004081 struct gpio_descs *array;
4082
Linus Walleija0b66a72020-03-29 16:04:05 +02004083 bitmap_size = BITS_TO_LONGS(gc->ngpio > count ?
4084 gc->ngpio : count);
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004085
4086 array = kzalloc(struct_size(descs, desc, count) +
4087 struct_size(array_info, invert_mask,
4088 3 * bitmap_size), GFP_KERNEL);
4089 if (!array) {
4090 gpiod_put_array(descs);
4091 return ERR_PTR(-ENOMEM);
4092 }
4093
4094 memcpy(array, descs,
4095 struct_size(descs, desc, descs->ndescs + 1));
4096 kfree(descs);
4097
4098 descs = array;
4099 array_info = (void *)(descs->desc + count);
4100 array_info->get_mask = array_info->invert_mask +
4101 bitmap_size;
4102 array_info->set_mask = array_info->get_mask +
4103 bitmap_size;
4104
4105 array_info->desc = descs->desc;
4106 array_info->size = count;
Linus Walleija0b66a72020-03-29 16:04:05 +02004107 array_info->chip = gc;
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004108 bitmap_set(array_info->get_mask, descs->ndescs,
4109 count - descs->ndescs);
4110 bitmap_set(array_info->set_mask, descs->ndescs,
4111 count - descs->ndescs);
4112 descs->info = array_info;
4113 }
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004114 /* Unmark array members which don't belong to the 'fast' chip */
Linus Walleija0b66a72020-03-29 16:04:05 +02004115 if (array_info && array_info->chip != gc) {
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004116 __clear_bit(descs->ndescs, array_info->get_mask);
4117 __clear_bit(descs->ndescs, array_info->set_mask);
Janusz Krzysztofikc4c958a2018-09-24 01:53:36 +02004118 }
4119 /*
4120 * Detect array members which belong to the 'fast' chip
4121 * but their pins are not in hardware order.
4122 */
4123 else if (array_info &&
4124 gpio_chip_hwgpio(desc) != descs->ndescs) {
4125 /*
4126 * Don't use fast path if all array members processed so
4127 * far belong to the same chip as this one but its pin
4128 * hardware number is different from its array index.
4129 */
4130 if (bitmap_full(array_info->get_mask, descs->ndescs)) {
4131 array_info = NULL;
4132 } else {
4133 __clear_bit(descs->ndescs,
4134 array_info->get_mask);
4135 __clear_bit(descs->ndescs,
4136 array_info->set_mask);
4137 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004138 } else if (array_info) {
4139 /* Exclude open drain or open source from fast output */
Linus Walleija0b66a72020-03-29 16:04:05 +02004140 if (gpiochip_line_is_open_drain(gc, descs->ndescs) ||
4141 gpiochip_line_is_open_source(gc, descs->ndescs))
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004142 __clear_bit(descs->ndescs,
4143 array_info->set_mask);
4144 /* Identify 'fast' pins which require invertion */
4145 if (gpiod_is_active_low(desc))
4146 __set_bit(descs->ndescs,
4147 array_info->invert_mask);
4148 }
4149
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004150 descs->ndescs++;
4151 }
Janusz Krzysztofikbf9346f2018-09-05 23:50:06 +02004152 if (array_info)
4153 dev_dbg(dev,
4154 "GPIO array info: chip=%s, size=%d, get_mask=%lx, set_mask=%lx, invert_mask=%lx\n",
4155 array_info->chip->label, array_info->size,
4156 *array_info->get_mask, *array_info->set_mask,
4157 *array_info->invert_mask);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004158 return descs;
4159}
4160EXPORT_SYMBOL_GPL(gpiod_get_array);
4161
4162/**
4163 * gpiod_get_array_optional - obtain multiple GPIOs from a multi-index GPIO
4164 * function
4165 * @dev: GPIO consumer, can be NULL for system-global GPIOs
4166 * @con_id: function within the GPIO consumer
4167 * @flags: optional GPIO initialization flags
4168 *
4169 * This is equivalent to gpiod_get_array(), except that when no GPIO was
4170 * assigned to the requested function it will return NULL.
4171 */
4172struct gpio_descs *__must_check gpiod_get_array_optional(struct device *dev,
4173 const char *con_id,
4174 enum gpiod_flags flags)
4175{
4176 struct gpio_descs *descs;
4177
4178 descs = gpiod_get_array(dev, con_id, flags);
Andy Shevchenko7b586962020-10-21 17:25:28 +03004179 if (gpiod_not_found(descs))
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004180 return NULL;
4181
4182 return descs;
4183}
4184EXPORT_SYMBOL_GPL(gpiod_get_array_optional);
4185
4186/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004187 * gpiod_put - dispose of a GPIO descriptor
4188 * @desc: GPIO descriptor to dispose of
4189 *
4190 * No descriptor can be used after gpiod_put() has been called on it.
4191 */
4192void gpiod_put(struct gpio_desc *desc)
4193{
Andy Shevchenko1d7765b2019-03-26 17:21:14 +02004194 if (desc)
4195 gpiod_free(desc);
Alexandre Courbotbae48da2013-10-17 10:21:38 -07004196}
4197EXPORT_SYMBOL_GPL(gpiod_put);
David Brownelld2876d02008-02-04 22:28:20 -08004198
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01004199/**
4200 * gpiod_put_array - dispose of multiple GPIO descriptors
4201 * @descs: struct gpio_descs containing an array of descriptors
4202 */
4203void gpiod_put_array(struct gpio_descs *descs)
4204{
4205 unsigned int i;
4206
4207 for (i = 0; i < descs->ndescs; i++)
4208 gpiod_put(descs->desc[i]);
4209
4210 kfree(descs);
4211}
4212EXPORT_SYMBOL_GPL(gpiod_put_array);
4213
Saravana Kannanced2af42021-02-04 18:07:30 -08004214
4215static int gpio_bus_match(struct device *dev, struct device_driver *drv)
4216{
4217 /*
4218 * Only match if the fwnode doesn't already have a proper struct device
4219 * created for it.
4220 */
4221 if (dev->fwnode && dev->fwnode->dev != dev)
4222 return 0;
4223 return 1;
4224}
4225
Saravana Kannan47312102021-01-22 11:35:59 -08004226static int gpio_stub_drv_probe(struct device *dev)
4227{
4228 /*
4229 * The DT node of some GPIO chips have a "compatible" property, but
4230 * never have a struct device added and probed by a driver to register
4231 * the GPIO chip with gpiolib. In such cases, fw_devlink=on will cause
4232 * the consumers of the GPIO chip to get probe deferred forever because
4233 * they will be waiting for a device associated with the GPIO chip
4234 * firmware node to get added and bound to a driver.
4235 *
4236 * To allow these consumers to probe, we associate the struct
4237 * gpio_device of the GPIO chip with the firmware node and then simply
4238 * bind it to this stub driver.
4239 */
4240 return 0;
4241}
4242
4243static struct device_driver gpio_stub_drv = {
4244 .name = "gpio_stub_drv",
4245 .bus = &gpio_bus_type,
4246 .probe = gpio_stub_drv_probe,
4247};
4248
Linus Walleij3c702e92015-10-21 15:29:53 +02004249static int __init gpiolib_dev_init(void)
4250{
4251 int ret;
4252
4253 /* Register GPIO sysfs bus */
Andy Shevchenkob1911712018-07-03 03:39:03 +03004254 ret = bus_register(&gpio_bus_type);
Linus Walleij3c702e92015-10-21 15:29:53 +02004255 if (ret < 0) {
4256 pr_err("gpiolib: could not register GPIO bus type\n");
4257 return ret;
4258 }
4259
Saravana Kannan47312102021-01-22 11:35:59 -08004260 if (driver_register(&gpio_stub_drv) < 0) {
4261 pr_err("gpiolib: could not register GPIO stub driver\n");
4262 bus_unregister(&gpio_bus_type);
4263 return ret;
4264 }
4265
Geert Uytterhoevenddd88912019-11-27 09:42:47 +01004266 ret = alloc_chrdev_region(&gpio_devt, 0, GPIO_DEV_MAX, GPIOCHIP_NAME);
Linus Walleij3c702e92015-10-21 15:29:53 +02004267 if (ret < 0) {
4268 pr_err("gpiolib: failed to allocate char dev region\n");
Saravana Kannan47312102021-01-22 11:35:59 -08004269 driver_unregister(&gpio_stub_drv);
Linus Walleij3c702e92015-10-21 15:29:53 +02004270 bus_unregister(&gpio_bus_type);
Geert Uytterhoeven63636d92020-02-20 14:01:49 +01004271 return ret;
Linus Walleij3c702e92015-10-21 15:29:53 +02004272 }
Geert Uytterhoeven63636d92020-02-20 14:01:49 +01004273
4274 gpiolib_initialized = true;
4275 gpiochip_setup_devs();
4276
David Gow8650b602020-04-24 21:46:55 -07004277#if IS_ENABLED(CONFIG_OF_DYNAMIC) && IS_ENABLED(CONFIG_OF_GPIO)
4278 WARN_ON(of_reconfig_notifier_register(&gpio_of_notifier));
4279#endif /* CONFIG_OF_DYNAMIC && CONFIG_OF_GPIO */
Geert Uytterhoeven63636d92020-02-20 14:01:49 +01004280
Linus Walleij3c702e92015-10-21 15:29:53 +02004281 return ret;
4282}
4283core_initcall(gpiolib_dev_init);
4284
David Brownelld2876d02008-02-04 22:28:20 -08004285#ifdef CONFIG_DEBUG_FS
4286
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004287static void gpiolib_dbg_show(struct seq_file *s, struct gpio_device *gdev)
David Brownelld2876d02008-02-04 22:28:20 -08004288{
4289 unsigned i;
Linus Walleija0b66a72020-03-29 16:04:05 +02004290 struct gpio_chip *gc = gdev->chip;
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004291 unsigned gpio = gdev->base;
4292 struct gpio_desc *gdesc = &gdev->descs[0];
Linus Walleij90fd2272018-10-01 23:06:17 +02004293 bool is_out;
4294 bool is_irq;
4295 bool active_low;
David Brownelld2876d02008-02-04 22:28:20 -08004296
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004297 for (i = 0; i < gdev->ngpio; i++, gpio++, gdesc++) {
Markus Pargmannced433e2015-08-14 16:11:02 +02004298 if (!test_bit(FLAG_REQUESTED, &gdesc->flags)) {
4299 if (gdesc->name) {
4300 seq_printf(s, " gpio-%-3d (%-20.20s)\n",
4301 gpio, gdesc->name);
4302 }
David Brownelld2876d02008-02-04 22:28:20 -08004303 continue;
Markus Pargmannced433e2015-08-14 16:11:02 +02004304 }
David Brownelld2876d02008-02-04 22:28:20 -08004305
Alexandre Courbot372e7222013-02-03 01:29:29 +09004306 gpiod_get_direction(gdesc);
David Brownelld2876d02008-02-04 22:28:20 -08004307 is_out = test_bit(FLAG_IS_OUT, &gdesc->flags);
Linus Walleijd468bf92013-09-24 11:54:38 +02004308 is_irq = test_bit(FLAG_USED_AS_IRQ, &gdesc->flags);
Linus Walleij90fd2272018-10-01 23:06:17 +02004309 active_low = test_bit(FLAG_ACTIVE_LOW, &gdesc->flags);
4310 seq_printf(s, " gpio-%-3d (%-20.20s|%-20.20s) %s %s %s%s",
Markus Pargmannced433e2015-08-14 16:11:02 +02004311 gpio, gdesc->name ? gdesc->name : "", gdesc->label,
David Brownelld2876d02008-02-04 22:28:20 -08004312 is_out ? "out" : "in ",
Linus Walleija0b66a72020-03-29 16:04:05 +02004313 gc->get ? (gc->get(gc, i) ? "hi" : "lo") : "? ",
Linus Walleij90fd2272018-10-01 23:06:17 +02004314 is_irq ? "IRQ " : "",
4315 active_low ? "ACTIVE LOW" : "");
David Brownelld2876d02008-02-04 22:28:20 -08004316 seq_printf(s, "\n");
4317 }
4318}
4319
Thierry Redingf9c4a312012-04-12 13:26:01 +02004320static void *gpiolib_seq_start(struct seq_file *s, loff_t *pos)
David Brownelld2876d02008-02-04 22:28:20 -08004321{
Grant Likely362432a2013-02-09 09:41:49 +00004322 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004323 struct gpio_device *gdev = NULL;
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004324 loff_t index = *pos;
Thierry Redingf9c4a312012-04-12 13:26:01 +02004325
4326 s->private = "";
4327
Grant Likely362432a2013-02-09 09:41:49 +00004328 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004329 list_for_each_entry(gdev, &gpio_devices, list)
Grant Likely362432a2013-02-09 09:41:49 +00004330 if (index-- == 0) {
4331 spin_unlock_irqrestore(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004332 return gdev;
Grant Likely362432a2013-02-09 09:41:49 +00004333 }
4334 spin_unlock_irqrestore(&gpio_lock, flags);
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004335
4336 return NULL;
Thierry Redingf9c4a312012-04-12 13:26:01 +02004337}
4338
4339static void *gpiolib_seq_next(struct seq_file *s, void *v, loff_t *pos)
4340{
Grant Likely362432a2013-02-09 09:41:49 +00004341 unsigned long flags;
Linus Walleijff2b1352015-10-20 11:10:38 +02004342 struct gpio_device *gdev = v;
Thierry Redingf9c4a312012-04-12 13:26:01 +02004343 void *ret = NULL;
4344
Grant Likely362432a2013-02-09 09:41:49 +00004345 spin_lock_irqsave(&gpio_lock, flags);
Linus Walleijff2b1352015-10-20 11:10:38 +02004346 if (list_is_last(&gdev->list, &gpio_devices))
Alexandre Courbotcb1650d2013-02-03 01:29:27 +09004347 ret = NULL;
4348 else
Linus Walleijff2b1352015-10-20 11:10:38 +02004349 ret = list_entry(gdev->list.next, struct gpio_device, list);
Grant Likely362432a2013-02-09 09:41:49 +00004350 spin_unlock_irqrestore(&gpio_lock, flags);
Thierry Redingf9c4a312012-04-12 13:26:01 +02004351
4352 s->private = "\n";
4353 ++*pos;
4354
4355 return ret;
4356}
4357
4358static void gpiolib_seq_stop(struct seq_file *s, void *v)
4359{
4360}
4361
4362static int gpiolib_seq_show(struct seq_file *s, void *v)
4363{
Linus Walleijff2b1352015-10-20 11:10:38 +02004364 struct gpio_device *gdev = v;
Linus Walleija0b66a72020-03-29 16:04:05 +02004365 struct gpio_chip *gc = gdev->chip;
Linus Walleijff2b1352015-10-20 11:10:38 +02004366 struct device *parent;
Thierry Redingf9c4a312012-04-12 13:26:01 +02004367
Linus Walleija0b66a72020-03-29 16:04:05 +02004368 if (!gc) {
Linus Walleijff2b1352015-10-20 11:10:38 +02004369 seq_printf(s, "%s%s: (dangling chip)", (char *)s->private,
4370 dev_name(&gdev->dev));
4371 return 0;
4372 }
4373
4374 seq_printf(s, "%s%s: GPIOs %d-%d", (char *)s->private,
4375 dev_name(&gdev->dev),
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004376 gdev->base, gdev->base + gdev->ngpio - 1);
Linus Walleija0b66a72020-03-29 16:04:05 +02004377 parent = gc->parent;
Linus Walleijff2b1352015-10-20 11:10:38 +02004378 if (parent)
4379 seq_printf(s, ", parent: %s/%s",
4380 parent->bus ? parent->bus->name : "no-bus",
4381 dev_name(parent));
Linus Walleija0b66a72020-03-29 16:04:05 +02004382 if (gc->label)
4383 seq_printf(s, ", %s", gc->label);
4384 if (gc->can_sleep)
Thierry Redingf9c4a312012-04-12 13:26:01 +02004385 seq_printf(s, ", can sleep");
4386 seq_printf(s, ":\n");
4387
Linus Walleija0b66a72020-03-29 16:04:05 +02004388 if (gc->dbg_show)
4389 gc->dbg_show(s, gc);
Thierry Redingf9c4a312012-04-12 13:26:01 +02004390 else
Linus Walleijfdeb8e12016-02-10 10:57:36 +01004391 gpiolib_dbg_show(s, gdev);
Thierry Redingf9c4a312012-04-12 13:26:01 +02004392
David Brownelld2876d02008-02-04 22:28:20 -08004393 return 0;
4394}
4395
Andy Shevchenko425c5b32020-09-10 13:19:35 +03004396static const struct seq_operations gpiolib_sops = {
Thierry Redingf9c4a312012-04-12 13:26:01 +02004397 .start = gpiolib_seq_start,
4398 .next = gpiolib_seq_next,
4399 .stop = gpiolib_seq_stop,
4400 .show = gpiolib_seq_show,
4401};
Andy Shevchenko425c5b32020-09-10 13:19:35 +03004402DEFINE_SEQ_ATTRIBUTE(gpiolib);
David Brownelld2876d02008-02-04 22:28:20 -08004403
4404static int __init gpiolib_debugfs_init(void)
4405{
4406 /* /sys/kernel/debug/gpio */
Andy Shevchenko425c5b32020-09-10 13:19:35 +03004407 debugfs_create_file("gpio", 0444, NULL, NULL, &gpiolib_fops);
David Brownelld2876d02008-02-04 22:28:20 -08004408 return 0;
4409}
4410subsys_initcall(gpiolib_debugfs_init);
4411
4412#endif /* DEBUG_FS */