blob: 1c5e2e79766d0559504c9e5623f49377d8ae7c7f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass96495d92014-02-26 15:59:24 -07002/*
3 * Copyright (c) 2013 Google, Inc
Simon Glass96495d92014-02-26 15:59:24 -07004 */
5
Simon Glassbe04f1a2021-02-04 21:22:08 -07006#define LOG_CATEGORY UCLASS_GPIO
7
Simon Glass96495d92014-02-26 15:59:24 -07008#include <common.h>
9#include <dm.h>
Simon Glass48609d02021-08-07 07:24:12 -060010#include <dt-structs.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Jean-Jacques Hiblotd4b722e2020-09-11 13:43:34 +053012#include <dm/devres.h>
13#include <dm/device_compat.h>
Heiko Schocher5fc7cf82019-06-12 06:11:46 +020014#include <dm/device-internal.h>
15#include <dm/lists.h>
16#include <dm/uclass-internal.h>
Eric Nelson6c880b72016-04-24 16:32:40 -070017#include <dt-bindings/gpio/gpio.h>
Simon Glass96495d92014-02-26 15:59:24 -070018#include <errno.h>
Simon Glass0dac4d52015-01-05 20:05:28 -070019#include <fdtdec.h>
Simon Glassb892d122014-10-04 11:29:42 -060020#include <malloc.h>
Simon Glass29126862020-07-07 13:11:44 -060021#include <acpi/acpi_device.h>
Simon Glass401d1c42020-10-30 21:38:53 -060022#include <asm/global_data.h>
Simon Glass96495d92014-02-26 15:59:24 -070023#include <asm/gpio.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060024#include <dm/device_compat.h>
Masahiro Yamada84b8bf62016-01-24 23:27:48 +090025#include <linux/bug.h>
Simon Glassfe1ef502014-10-22 21:37:01 -060026#include <linux/ctype.h>
Simon Glass8a45b222021-02-04 21:22:09 -070027#include <linux/delay.h>
Simon Glass96495d92014-02-26 15:59:24 -070028
Simon Glass3669e0e2015-01-05 20:05:29 -070029DECLARE_GLOBAL_DATA_PTR;
30
Simon Glass96495d92014-02-26 15:59:24 -070031/**
Patrick Delaunay9f2b0662020-01-13 11:35:01 +010032 * gpio_desc_init() - Initialize the GPIO descriptor
33 *
34 * @desc: GPIO descriptor to initialize
35 * @dev: GPIO device
36 * @offset: Offset of device GPIO
37 */
38static void gpio_desc_init(struct gpio_desc *desc,
39 struct udevice *dev,
40 uint offset)
41{
42 desc->dev = dev;
43 desc->offset = offset;
44 desc->flags = 0;
45}
46
47/**
Simon Glass96495d92014-02-26 15:59:24 -070048 * gpio_to_device() - Convert global GPIO number to device, number
Simon Glass96495d92014-02-26 15:59:24 -070049 *
50 * Convert the GPIO number to an entry in the list of GPIOs
51 * or GPIO blocks registered with the GPIO controller. Returns
52 * entry on success, NULL on error.
Simon Glassae7123f2015-01-05 20:05:27 -070053 *
54 * @gpio: The numeric representation of the GPIO
55 * @desc: Returns description (desc->flags will always be 0)
56 * @return 0 if found, -ENOENT if not found
Simon Glass96495d92014-02-26 15:59:24 -070057 */
Simon Glassae7123f2015-01-05 20:05:27 -070058static int gpio_to_device(unsigned int gpio, struct gpio_desc *desc)
Simon Glass96495d92014-02-26 15:59:24 -070059{
60 struct gpio_dev_priv *uc_priv;
Heiko Schocher54c5d082014-05-22 12:43:05 +020061 struct udevice *dev;
Simon Glass96495d92014-02-26 15:59:24 -070062 int ret;
63
64 for (ret = uclass_first_device(UCLASS_GPIO, &dev);
65 dev;
66 ret = uclass_next_device(&dev)) {
Simon Glasse564f052015-03-05 12:25:20 -070067 uc_priv = dev_get_uclass_priv(dev);
Simon Glass96495d92014-02-26 15:59:24 -070068 if (gpio >= uc_priv->gpio_base &&
69 gpio < uc_priv->gpio_base + uc_priv->gpio_count) {
Patrick Delaunay9f2b0662020-01-13 11:35:01 +010070 gpio_desc_init(desc, dev, gpio - uc_priv->gpio_base);
Simon Glass96495d92014-02-26 15:59:24 -070071 return 0;
72 }
73 }
74
75 /* No such GPIO */
Simon Glassae7123f2015-01-05 20:05:27 -070076 return ret ? ret : -ENOENT;
Simon Glass96495d92014-02-26 15:59:24 -070077}
78
Heiko Schocher2bd261d2020-05-22 11:08:59 +020079#if CONFIG_IS_ENABLED(DM_GPIO_LOOKUP_LABEL)
80/**
81 * dm_gpio_lookup_label() - look for name in gpio device
82 *
83 * search in uc_priv, if there is a gpio with labelname same
84 * as name.
85 *
86 * @name: name which is searched
87 * @uc_priv: gpio_dev_priv pointer.
88 * @offset: gpio offset within the device
89 * @return: 0 if found, -ENOENT if not.
90 */
91static int dm_gpio_lookup_label(const char *name,
92 struct gpio_dev_priv *uc_priv, ulong *offset)
93{
94 int len;
95 int i;
96
97 *offset = -1;
98 len = strlen(name);
99 for (i = 0; i < uc_priv->gpio_count; i++) {
100 if (!uc_priv->name[i])
101 continue;
102 if (!strncmp(name, uc_priv->name[i], len)) {
103 *offset = i;
104 return 0;
105 }
106 }
107 return -ENOENT;
108}
109#else
110static int
111dm_gpio_lookup_label(const char *name, struct gpio_dev_priv *uc_priv,
112 ulong *offset)
113{
114 return -ENOENT;
115}
116#endif
117
Simon Glass32ec1592015-06-23 15:38:40 -0600118int dm_gpio_lookup_name(const char *name, struct gpio_desc *desc)
Simon Glass96495d92014-02-26 15:59:24 -0700119{
Simon Glassfe1ef502014-10-22 21:37:01 -0600120 struct gpio_dev_priv *uc_priv = NULL;
Heiko Schocher54c5d082014-05-22 12:43:05 +0200121 struct udevice *dev;
Simon Glassfe1ef502014-10-22 21:37:01 -0600122 ulong offset;
123 int numeric;
Simon Glass96495d92014-02-26 15:59:24 -0700124 int ret;
125
Simon Glass0b1284e2021-07-24 09:03:30 -0600126 numeric = isdigit(*name) ? dectoul(name, NULL) : -1;
Simon Glass96495d92014-02-26 15:59:24 -0700127 for (ret = uclass_first_device(UCLASS_GPIO, &dev);
128 dev;
129 ret = uclass_next_device(&dev)) {
Simon Glass96495d92014-02-26 15:59:24 -0700130 int len;
131
Simon Glasse564f052015-03-05 12:25:20 -0700132 uc_priv = dev_get_uclass_priv(dev);
Simon Glassfe1ef502014-10-22 21:37:01 -0600133 if (numeric != -1) {
134 offset = numeric - uc_priv->gpio_base;
135 /* Allow GPIOs to be numbered from 0 */
Tom Rini75897912017-05-10 15:20:15 -0400136 if (offset < uc_priv->gpio_count)
Simon Glassfe1ef502014-10-22 21:37:01 -0600137 break;
138 }
139
Simon Glass96495d92014-02-26 15:59:24 -0700140 len = uc_priv->bank_name ? strlen(uc_priv->bank_name) : 0;
141
Simon Glass939cda52014-06-11 23:29:47 -0600142 if (!strncasecmp(name, uc_priv->bank_name, len)) {
Simon Glassfe1ef502014-10-22 21:37:01 -0600143 if (!strict_strtoul(name + len, 10, &offset))
Samuel Holland390ccff2021-09-11 17:05:51 -0500144 if (offset < uc_priv->gpio_count)
145 break;
Simon Glass96495d92014-02-26 15:59:24 -0700146 }
Heiko Schocher2bd261d2020-05-22 11:08:59 +0200147
148 /*
149 * if we did not found a gpio through its bank
150 * name, we search for a valid gpio label.
151 */
152 if (!dm_gpio_lookup_label(name, uc_priv, &offset))
153 break;
Simon Glass96495d92014-02-26 15:59:24 -0700154 }
155
Simon Glassfe1ef502014-10-22 21:37:01 -0600156 if (!dev)
157 return ret ? ret : -EINVAL;
158
Patrick Delaunay9f2b0662020-01-13 11:35:01 +0100159 gpio_desc_init(desc, dev, offset);
Simon Glass32ec1592015-06-23 15:38:40 -0600160
161 return 0;
162}
163
164int gpio_lookup_name(const char *name, struct udevice **devp,
165 unsigned int *offsetp, unsigned int *gpiop)
166{
167 struct gpio_desc desc;
168 int ret;
169
Simon Glassfe1ef502014-10-22 21:37:01 -0600170 if (devp)
Simon Glass32ec1592015-06-23 15:38:40 -0600171 *devp = NULL;
172 ret = dm_gpio_lookup_name(name, &desc);
173 if (ret)
174 return ret;
175
176 if (devp)
177 *devp = desc.dev;
Simon Glassfe1ef502014-10-22 21:37:01 -0600178 if (offsetp)
Simon Glass32ec1592015-06-23 15:38:40 -0600179 *offsetp = desc.offset;
180 if (gpiop) {
181 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(desc.dev);
182
183 *gpiop = uc_priv->gpio_base + desc.offset;
184 }
Simon Glassfe1ef502014-10-22 21:37:01 -0600185
186 return 0;
Simon Glass96495d92014-02-26 15:59:24 -0700187}
188
Samuel Holland8a479822021-09-11 17:05:53 -0500189unsigned long gpio_flags_xlate(uint32_t arg)
190{
191 unsigned long flags = 0;
192
193 if (arg & GPIO_ACTIVE_LOW)
194 flags |= GPIOD_ACTIVE_LOW;
195
196 /*
197 * need to test 2 bits for gpio output binding:
198 * OPEN_DRAIN (0x6) = SINGLE_ENDED (0x2) | LINE_OPEN_DRAIN (0x4)
199 * OPEN_SOURCE (0x2) = SINGLE_ENDED (0x2) | LINE_OPEN_SOURCE (0x0)
200 */
201 if (arg & GPIO_SINGLE_ENDED) {
202 if (arg & GPIO_LINE_OPEN_DRAIN)
203 flags |= GPIOD_OPEN_DRAIN;
204 else
205 flags |= GPIOD_OPEN_SOURCE;
206 }
207
208 if (arg & GPIO_PULL_UP)
209 flags |= GPIOD_PULL_UP;
210
211 if (arg & GPIO_PULL_DOWN)
212 flags |= GPIOD_PULL_DOWN;
213
214 return flags;
215}
216
Simon Glass3a571232017-05-18 20:09:18 -0600217int gpio_xlate_offs_flags(struct udevice *dev, struct gpio_desc *desc,
218 struct ofnode_phandle_args *args)
Eric Nelson6c880b72016-04-24 16:32:40 -0700219{
Samuel Holland37c10bf2021-09-11 17:05:52 -0500220 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
221
Eric Nelson6c880b72016-04-24 16:32:40 -0700222 if (args->args_count < 1)
223 return -EINVAL;
224
225 desc->offset = args->args[0];
Samuel Holland37c10bf2021-09-11 17:05:52 -0500226 if (desc->offset >= uc_priv->gpio_count)
227 return -EINVAL;
Eric Nelson6c880b72016-04-24 16:32:40 -0700228
229 if (args->args_count < 2)
230 return 0;
231
Samuel Holland8a479822021-09-11 17:05:53 -0500232 desc->flags = gpio_flags_xlate(args->args[1]);
Patrick Delaunay477ca572020-01-13 11:35:07 +0100233
Eric Nelson6c880b72016-04-24 16:32:40 -0700234 return 0;
235}
236
Simon Glass3669e0e2015-01-05 20:05:29 -0700237static int gpio_find_and_xlate(struct gpio_desc *desc,
Simon Glass3a571232017-05-18 20:09:18 -0600238 struct ofnode_phandle_args *args)
Simon Glass0dac4d52015-01-05 20:05:28 -0700239{
Simon Glass3d647742021-02-04 21:22:05 -0700240 const struct dm_gpio_ops *ops = gpio_get_ops(desc->dev);
Simon Glass0dac4d52015-01-05 20:05:28 -0700241
Eric Nelson6c880b72016-04-24 16:32:40 -0700242 if (ops->xlate)
243 return ops->xlate(desc->dev, desc, args);
Simon Glass0dac4d52015-01-05 20:05:28 -0700244 else
Eric Nelson6c880b72016-04-24 16:32:40 -0700245 return gpio_xlate_offs_flags(desc->dev, desc, args);
Simon Glass0dac4d52015-01-05 20:05:28 -0700246}
247
Simon Glass48609d02021-08-07 07:24:12 -0600248#if CONFIG_IS_ENABLED(GPIO_HOG)
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200249
250struct gpio_hog_priv {
251 struct gpio_desc gpiod;
252};
253
254struct gpio_hog_data {
255 int gpiod_flags;
256 int value;
257 u32 val[2];
258};
259
Simon Glassd1998a92020-12-03 16:55:21 -0700260static int gpio_hog_of_to_plat(struct udevice *dev)
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200261{
Simon Glassc69cda22020-12-03 16:55:20 -0700262 struct gpio_hog_data *plat = dev_get_plat(dev);
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200263 const char *nodename;
264 int ret;
265
266 plat->value = 0;
267 if (dev_read_bool(dev, "input")) {
268 plat->gpiod_flags = GPIOD_IS_IN;
269 } else if (dev_read_bool(dev, "output-high")) {
270 plat->value = 1;
271 plat->gpiod_flags = GPIOD_IS_OUT;
272 } else if (dev_read_bool(dev, "output-low")) {
273 plat->gpiod_flags = GPIOD_IS_OUT;
274 } else {
275 printf("%s: missing gpio-hog state.\n", __func__);
276 return -EINVAL;
277 }
278 ret = dev_read_u32_array(dev, "gpios", plat->val, 2);
279 if (ret) {
280 printf("%s: wrong gpios property, 2 values needed %d\n",
281 __func__, ret);
282 return ret;
283 }
284 nodename = dev_read_string(dev, "line-name");
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200285 if (nodename)
286 device_set_name(dev, nodename);
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200287
288 return 0;
289}
290
291static int gpio_hog_probe(struct udevice *dev)
292{
Simon Glassc69cda22020-12-03 16:55:20 -0700293 struct gpio_hog_data *plat = dev_get_plat(dev);
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200294 struct gpio_hog_priv *priv = dev_get_priv(dev);
295 int ret;
296
297 ret = gpio_dev_request_index(dev->parent, dev->name, "gpio-hog",
298 plat->val[0], plat->gpiod_flags,
299 plat->val[1], &priv->gpiod);
300 if (ret < 0) {
301 debug("%s: node %s could not get gpio.\n", __func__,
302 dev->name);
303 return ret;
304 }
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200305
306 if (plat->gpiod_flags == GPIOD_IS_OUT) {
307 ret = dm_gpio_set_value(&priv->gpiod, plat->value);
308 if (ret < 0) {
309 debug("%s: node %s could not set gpio.\n", __func__,
310 dev->name);
311 return ret;
312 }
313 }
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200314
315 return 0;
316}
317
318int gpio_hog_probe_all(void)
319{
320 struct udevice *dev;
321 int ret;
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200322 int retval = 0;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200323
324 for (uclass_first_device(UCLASS_NOP, &dev);
325 dev;
326 uclass_find_next_device(&dev)) {
Simon Glass65e25be2020-12-28 20:34:56 -0700327 if (dev->driver == DM_DRIVER_GET(gpio_hog)) {
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200328 ret = device_probe(dev);
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200329 if (ret) {
330 printf("Failed to probe device %s err: %d\n",
331 dev->name, ret);
332 retval = ret;
333 }
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200334 }
335 }
336
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200337 return retval;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200338}
339
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200340int gpio_hog_lookup_name(const char *name, struct gpio_desc **desc)
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200341{
342 struct udevice *dev;
343
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200344 *desc = NULL;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200345 gpio_hog_probe_all();
346 if (!uclass_get_device_by_name(UCLASS_NOP, name, &dev)) {
347 struct gpio_hog_priv *priv = dev_get_priv(dev);
348
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200349 *desc = &priv->gpiod;
350 return 0;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200351 }
352
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200353 return -ENODEV;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200354}
355
356U_BOOT_DRIVER(gpio_hog) = {
357 .name = "gpio_hog",
358 .id = UCLASS_NOP,
Simon Glassd1998a92020-12-03 16:55:21 -0700359 .of_to_plat = gpio_hog_of_to_plat,
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200360 .probe = gpio_hog_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700361 .priv_auto = sizeof(struct gpio_hog_priv),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700362 .plat_auto = sizeof(struct gpio_hog_data),
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200363};
364#else
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200365int gpio_hog_lookup_name(const char *name, struct gpio_desc **desc)
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200366{
Heiko Schocher49b10cb2019-07-17 06:59:51 +0200367 return 0;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +0200368}
369#endif
370
Simon Glassefa677f2015-06-23 15:38:41 -0600371int dm_gpio_request(struct gpio_desc *desc, const char *label)
Simon Glassae7123f2015-01-05 20:05:27 -0700372{
Simon Glass3d647742021-02-04 21:22:05 -0700373 const struct dm_gpio_ops *ops = gpio_get_ops(desc->dev);
Simon Glassae7123f2015-01-05 20:05:27 -0700374 struct udevice *dev = desc->dev;
375 struct gpio_dev_priv *uc_priv;
376 char *str;
377 int ret;
378
Simon Glasse564f052015-03-05 12:25:20 -0700379 uc_priv = dev_get_uclass_priv(dev);
Simon Glassae7123f2015-01-05 20:05:27 -0700380 if (uc_priv->name[desc->offset])
381 return -EBUSY;
382 str = strdup(label);
383 if (!str)
384 return -ENOMEM;
Simon Glass3d647742021-02-04 21:22:05 -0700385 if (ops->request) {
386 ret = ops->request(dev, desc->offset, label);
Simon Glassae7123f2015-01-05 20:05:27 -0700387 if (ret) {
388 free(str);
389 return ret;
390 }
391 }
392 uc_priv->name[desc->offset] = str;
393
394 return 0;
395}
396
Simon Glass3669e0e2015-01-05 20:05:29 -0700397static int dm_gpio_requestf(struct gpio_desc *desc, const char *fmt, ...)
398{
Simon Glass27084c02019-09-25 08:56:27 -0600399#if !defined(CONFIG_SPL_BUILD) || !CONFIG_IS_ENABLED(USE_TINY_PRINTF)
Simon Glass3669e0e2015-01-05 20:05:29 -0700400 va_list args;
401 char buf[40];
402
403 va_start(args, fmt);
404 vscnprintf(buf, sizeof(buf), fmt, args);
405 va_end(args);
406 return dm_gpio_request(desc, buf);
Simon Glass4dc52592015-12-29 05:22:48 -0700407#else
408 return dm_gpio_request(desc, fmt);
409#endif
Simon Glass3669e0e2015-01-05 20:05:29 -0700410}
411
Simon Glass96495d92014-02-26 15:59:24 -0700412/**
413 * gpio_request() - [COMPAT] Request GPIO
414 * gpio: GPIO number
415 * label: Name for the requested GPIO
416 *
Simon Glassb892d122014-10-04 11:29:42 -0600417 * The label is copied and allocated so the caller does not need to keep
418 * the pointer around.
419 *
Simon Glass96495d92014-02-26 15:59:24 -0700420 * This function implements the API that's compatible with current
421 * GPIO API used in U-Boot. The request is forwarded to particular
422 * GPIO driver. Returns 0 on success, negative value on error.
423 */
424int gpio_request(unsigned gpio, const char *label)
425{
Simon Glassae7123f2015-01-05 20:05:27 -0700426 struct gpio_desc desc;
Simon Glass96495d92014-02-26 15:59:24 -0700427 int ret;
428
Simon Glassae7123f2015-01-05 20:05:27 -0700429 ret = gpio_to_device(gpio, &desc);
Simon Glass96495d92014-02-26 15:59:24 -0700430 if (ret)
431 return ret;
432
Simon Glassae7123f2015-01-05 20:05:27 -0700433 return dm_gpio_request(&desc, label);
Simon Glass96495d92014-02-26 15:59:24 -0700434}
435
436/**
Simon Glassd44f5972014-10-04 11:29:49 -0600437 * gpio_requestf() - [COMPAT] Request GPIO
438 * @gpio: GPIO number
439 * @fmt: Format string for the requested GPIO
440 * @...: Arguments for the printf() format string
441 *
442 * This function implements the API that's compatible with current
443 * GPIO API used in U-Boot. The request is forwarded to particular
444 * GPIO driver. Returns 0 on success, negative value on error.
445 */
446int gpio_requestf(unsigned gpio, const char *fmt, ...)
447{
Simon Glass27084c02019-09-25 08:56:27 -0600448#if !defined(CONFIG_SPL_BUILD) || !CONFIG_IS_ENABLED(USE_TINY_PRINTF)
Simon Glassd44f5972014-10-04 11:29:49 -0600449 va_list args;
450 char buf[40];
451
452 va_start(args, fmt);
453 vscnprintf(buf, sizeof(buf), fmt, args);
454 va_end(args);
455 return gpio_request(gpio, buf);
Simon Glass4dc52592015-12-29 05:22:48 -0700456#else
457 return gpio_request(gpio, fmt);
458#endif
Simon Glassd44f5972014-10-04 11:29:49 -0600459}
460
Simon Glassae7123f2015-01-05 20:05:27 -0700461int _dm_gpio_free(struct udevice *dev, uint offset)
Simon Glass96495d92014-02-26 15:59:24 -0700462{
Simon Glass3d647742021-02-04 21:22:05 -0700463 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
Simon Glassb892d122014-10-04 11:29:42 -0600464 struct gpio_dev_priv *uc_priv;
Simon Glass96495d92014-02-26 15:59:24 -0700465 int ret;
466
Simon Glasse564f052015-03-05 12:25:20 -0700467 uc_priv = dev_get_uclass_priv(dev);
Simon Glassb892d122014-10-04 11:29:42 -0600468 if (!uc_priv->name[offset])
469 return -ENXIO;
Simon Glass3d647742021-02-04 21:22:05 -0700470 if (ops->rfree) {
471 ret = ops->rfree(dev, offset);
Simon Glassb892d122014-10-04 11:29:42 -0600472 if (ret)
473 return ret;
474 }
475
476 free(uc_priv->name[offset]);
477 uc_priv->name[offset] = NULL;
478
479 return 0;
480}
481
Simon Glassae7123f2015-01-05 20:05:27 -0700482/**
483 * gpio_free() - [COMPAT] Relinquish GPIO
484 * gpio: GPIO number
485 *
486 * This function implements the API that's compatible with current
487 * GPIO API used in U-Boot. The request is forwarded to particular
488 * GPIO driver. Returns 0 on success, negative value on error.
489 */
490int gpio_free(unsigned gpio)
Simon Glassb892d122014-10-04 11:29:42 -0600491{
Simon Glassae7123f2015-01-05 20:05:27 -0700492 struct gpio_desc desc;
493 int ret;
Simon Glassb892d122014-10-04 11:29:42 -0600494
Simon Glassae7123f2015-01-05 20:05:27 -0700495 ret = gpio_to_device(gpio, &desc);
496 if (ret)
497 return ret;
498
499 return _dm_gpio_free(desc.dev, desc.offset);
500}
501
Simon Glass17c43f12016-03-06 19:27:51 -0700502static int check_reserved(const struct gpio_desc *desc, const char *func)
Simon Glassae7123f2015-01-05 20:05:27 -0700503{
Simon Glasseca48662015-07-02 18:16:16 -0600504 struct gpio_dev_priv *uc_priv;
Simon Glassae7123f2015-01-05 20:05:27 -0700505
Simon Glasseca48662015-07-02 18:16:16 -0600506 if (!dm_gpio_is_valid(desc))
507 return -ENOENT;
508
509 uc_priv = dev_get_uclass_priv(desc->dev);
Simon Glassae7123f2015-01-05 20:05:27 -0700510 if (!uc_priv->name[desc->offset]) {
Simon Glassb892d122014-10-04 11:29:42 -0600511 printf("%s: %s: error: gpio %s%d not reserved\n",
Simon Glassae7123f2015-01-05 20:05:27 -0700512 desc->dev->name, func,
513 uc_priv->bank_name ? uc_priv->bank_name : "",
514 desc->offset);
Simon Glassb892d122014-10-04 11:29:42 -0600515 return -EBUSY;
516 }
517
518 return 0;
Simon Glass96495d92014-02-26 15:59:24 -0700519}
520
521/**
522 * gpio_direction_input() - [COMPAT] Set GPIO direction to input
523 * gpio: GPIO number
524 *
525 * This function implements the API that's compatible with current
526 * GPIO API used in U-Boot. The request is forwarded to particular
527 * GPIO driver. Returns 0 on success, negative value on error.
528 */
529int gpio_direction_input(unsigned gpio)
530{
Simon Glassae7123f2015-01-05 20:05:27 -0700531 struct gpio_desc desc;
Simon Glass96495d92014-02-26 15:59:24 -0700532 int ret;
533
Simon Glassae7123f2015-01-05 20:05:27 -0700534 ret = gpio_to_device(gpio, &desc);
Simon Glass96495d92014-02-26 15:59:24 -0700535 if (ret)
536 return ret;
537
Simon Glassca1e1f52021-02-04 21:22:04 -0700538 return dm_gpio_clrset_flags(&desc, GPIOD_MASK_DIR, GPIOD_IS_IN);
Simon Glass96495d92014-02-26 15:59:24 -0700539}
540
541/**
542 * gpio_direction_output() - [COMPAT] Set GPIO direction to output and set value
543 * gpio: GPIO number
544 * value: Logical value to be set on the GPIO pin
545 *
546 * This function implements the API that's compatible with current
547 * GPIO API used in U-Boot. The request is forwarded to particular
548 * GPIO driver. Returns 0 on success, negative value on error.
549 */
550int gpio_direction_output(unsigned gpio, int value)
551{
Simon Glassae7123f2015-01-05 20:05:27 -0700552 struct gpio_desc desc;
Simon Glassca1e1f52021-02-04 21:22:04 -0700553 ulong flags;
Simon Glass96495d92014-02-26 15:59:24 -0700554 int ret;
555
Simon Glassae7123f2015-01-05 20:05:27 -0700556 ret = gpio_to_device(gpio, &desc);
Simon Glass96495d92014-02-26 15:59:24 -0700557 if (ret)
558 return ret;
559
Simon Glassca1e1f52021-02-04 21:22:04 -0700560 flags = GPIOD_IS_OUT;
561 if (value)
562 flags |= GPIOD_IS_OUT_ACTIVE;
563 return dm_gpio_clrset_flags(&desc, GPIOD_MASK_DIR, flags);
Simon Glassae7123f2015-01-05 20:05:27 -0700564}
565
Patrick Delaunay8a9140c2020-01-13 11:35:02 +0100566static int _gpio_get_value(const struct gpio_desc *desc)
Simon Glassae7123f2015-01-05 20:05:27 -0700567{
Simon Glass3d647742021-02-04 21:22:05 -0700568 const struct dm_gpio_ops *ops = gpio_get_ops(desc->dev);
Simon Glassae7123f2015-01-05 20:05:27 -0700569 int value;
Patrick Delaunay8a9140c2020-01-13 11:35:02 +0100570
Simon Glass3d647742021-02-04 21:22:05 -0700571 value = ops->get_value(desc->dev, desc->offset);
Patrick Delaunay8a9140c2020-01-13 11:35:02 +0100572
573 return desc->flags & GPIOD_ACTIVE_LOW ? !value : value;
574}
575
576int dm_gpio_get_value(const struct gpio_desc *desc)
577{
Simon Glassae7123f2015-01-05 20:05:27 -0700578 int ret;
579
580 ret = check_reserved(desc, "get_value");
581 if (ret)
582 return ret;
583
Patrick Delaunay8a9140c2020-01-13 11:35:02 +0100584 return _gpio_get_value(desc);
Simon Glassae7123f2015-01-05 20:05:27 -0700585}
586
Simon Glass17c43f12016-03-06 19:27:51 -0700587int dm_gpio_set_value(const struct gpio_desc *desc, int value)
Simon Glassae7123f2015-01-05 20:05:27 -0700588{
Simon Glass7e0a96d2021-02-04 21:22:03 -0700589 const struct dm_gpio_ops *ops;
Simon Glassae7123f2015-01-05 20:05:27 -0700590 int ret;
591
592 ret = check_reserved(desc, "set_value");
593 if (ret)
594 return ret;
595
596 if (desc->flags & GPIOD_ACTIVE_LOW)
597 value = !value;
Neil Armstrong47bd5332020-05-05 10:43:17 +0200598
Simon Glass7e0a96d2021-02-04 21:22:03 -0700599 /* GPIOD_ are directly managed by driver in set_flags */
600 ops = gpio_get_ops(desc->dev);
601 if (ops->set_flags) {
602 ulong flags = desc->flags;
603
604 if (value)
605 flags |= GPIOD_IS_OUT_ACTIVE;
606 else
607 flags &= ~GPIOD_IS_OUT_ACTIVE;
608 return ops->set_flags(desc->dev, desc->offset, flags);
609 }
610
Neil Armstrong47bd5332020-05-05 10:43:17 +0200611 /*
612 * Emulate open drain by not actively driving the line high or
613 * Emulate open source by not actively driving the line low
614 */
615 if ((desc->flags & GPIOD_OPEN_DRAIN && value) ||
616 (desc->flags & GPIOD_OPEN_SOURCE && !value))
Simon Glass7e0a96d2021-02-04 21:22:03 -0700617 return ops->direction_input(desc->dev, desc->offset);
Neil Armstrong47bd5332020-05-05 10:43:17 +0200618 else if (desc->flags & GPIOD_OPEN_DRAIN ||
619 desc->flags & GPIOD_OPEN_SOURCE)
Simon Glass7e0a96d2021-02-04 21:22:03 -0700620 return ops->direction_output(desc->dev, desc->offset, value);
Neil Armstrong47bd5332020-05-05 10:43:17 +0200621
Simon Glass7e0a96d2021-02-04 21:22:03 -0700622 ret = ops->set_value(desc->dev, desc->offset, value);
623 if (ret)
624 return ret;
625
Simon Glassae7123f2015-01-05 20:05:27 -0700626 return 0;
627}
628
Patrick Delaunay4292fb12020-01-13 11:35:04 +0100629/* check dir flags invalid configuration */
630static int check_dir_flags(ulong flags)
631{
632 if ((flags & GPIOD_IS_OUT) && (flags & GPIOD_IS_IN)) {
633 log_debug("%s: flags 0x%lx has GPIOD_IS_OUT and GPIOD_IS_IN\n",
634 __func__, flags);
635 return -EINVAL;
636 }
637
Patrick Delaunay477ca572020-01-13 11:35:07 +0100638 if ((flags & GPIOD_PULL_UP) && (flags & GPIOD_PULL_DOWN)) {
639 log_debug("%s: flags 0x%lx has GPIOD_PULL_UP and GPIOD_PULL_DOWN\n",
640 __func__, flags);
641 return -EINVAL;
642 }
643
644 if ((flags & GPIOD_OPEN_DRAIN) && (flags & GPIOD_OPEN_SOURCE)) {
645 log_debug("%s: flags 0x%lx has GPIOD_OPEN_DRAIN and GPIOD_OPEN_SOURCE\n",
646 __func__, flags);
647 return -EINVAL;
648 }
649
Patrick Delaunay4292fb12020-01-13 11:35:04 +0100650 return 0;
651}
652
Simon Glass7e0a96d2021-02-04 21:22:03 -0700653/**
654 * _dm_gpio_set_flags() - Send flags to the driver
655 *
656 * This uses the best available method to send the given flags to the driver.
657 * Note that if flags & GPIOD_ACTIVE_LOW, the driver sees the opposite value
658 * of GPIOD_IS_OUT_ACTIVE.
659 *
660 * @desc: GPIO description
661 * @flags: flags value to set
662 * @return 0 if OK, -ve on error
663 */
Simon Glass13979fc2021-02-04 21:21:55 -0700664static int _dm_gpio_set_flags(struct gpio_desc *desc, ulong flags)
Simon Glassae7123f2015-01-05 20:05:27 -0700665{
666 struct udevice *dev = desc->dev;
Simon Glass3d647742021-02-04 21:22:05 -0700667 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
Patrick Delaunay4292fb12020-01-13 11:35:04 +0100668 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Patrick Delaunay788ea832020-01-13 11:35:03 +0100669 int ret = 0;
Simon Glassae7123f2015-01-05 20:05:27 -0700670
Patrick Delaunay4292fb12020-01-13 11:35:04 +0100671 ret = check_dir_flags(flags);
672 if (ret) {
673 dev_dbg(dev,
674 "%s error: set_dir_flags for gpio %s%d has invalid dir flags 0x%lx\n",
675 desc->dev->name,
676 uc_priv->bank_name ? uc_priv->bank_name : "",
677 desc->offset, flags);
678
679 return ret;
680 }
681
Simon Glass7e0a96d2021-02-04 21:22:03 -0700682 /* If active low, invert the output state */
683 if ((flags & (GPIOD_IS_OUT | GPIOD_ACTIVE_LOW)) ==
684 (GPIOD_IS_OUT | GPIOD_ACTIVE_LOW))
685 flags ^= GPIOD_IS_OUT_ACTIVE;
686
Simon Glass13979fc2021-02-04 21:21:55 -0700687 /* GPIOD_ are directly managed by driver in set_flags */
688 if (ops->set_flags) {
689 ret = ops->set_flags(dev, desc->offset, flags);
Patrick Delaunay8fd9daf2020-01-13 11:35:09 +0100690 } else {
691 if (flags & GPIOD_IS_OUT) {
Simon Glass7e0a96d2021-02-04 21:22:03 -0700692 bool value = flags & GPIOD_IS_OUT_ACTIVE;
693
694 ret = ops->direction_output(dev, desc->offset, value);
Patrick Delaunay8fd9daf2020-01-13 11:35:09 +0100695 } else if (flags & GPIOD_IS_IN) {
696 ret = ops->direction_input(dev, desc->offset);
697 }
Simon Glassae7123f2015-01-05 20:05:27 -0700698 }
Patrick Delaunay788ea832020-01-13 11:35:03 +0100699
700 return ret;
701}
702
Simon Glass7e0a96d2021-02-04 21:22:03 -0700703int dm_gpio_clrset_flags(struct gpio_desc *desc, ulong clr, ulong set)
Patrick Delaunay788ea832020-01-13 11:35:03 +0100704{
Simon Glass7e0a96d2021-02-04 21:22:03 -0700705 ulong flags;
Patrick Delaunay788ea832020-01-13 11:35:03 +0100706 int ret;
707
708 ret = check_reserved(desc, "set_dir_flags");
Simon Glassae7123f2015-01-05 20:05:27 -0700709 if (ret)
710 return ret;
Simon Glassae7123f2015-01-05 20:05:27 -0700711
Simon Glass7e0a96d2021-02-04 21:22:03 -0700712 flags = (desc->flags & ~clr) | set;
Patrick Delaunay788ea832020-01-13 11:35:03 +0100713
Simon Glass7e0a96d2021-02-04 21:22:03 -0700714 ret = _dm_gpio_set_flags(desc, flags);
715 if (ret)
716 return ret;
717
718 /* save the flags also in descriptor */
719 desc->flags = flags;
720
721 return 0;
722}
723
724int dm_gpio_set_dir_flags(struct gpio_desc *desc, ulong flags)
725{
726 /* combine the requested flags (for IN/OUT) and the descriptor flags */
727 return dm_gpio_clrset_flags(desc, GPIOD_MASK_DIR, flags);
Simon Glassae7123f2015-01-05 20:05:27 -0700728}
729
Simon Glass8a45b222021-02-04 21:22:09 -0700730int dm_gpios_clrset_flags(struct gpio_desc *desc, int count, ulong clr,
731 ulong set)
732{
733 int ret;
734 int i;
735
736 for (i = 0; i < count; i++) {
737 ret = dm_gpio_clrset_flags(&desc[i], clr, set);
738 if (ret)
739 return log_ret(ret);
740 }
741
742 return 0;
743}
744
Simon Glassc0c1e622021-02-04 21:21:57 -0700745int dm_gpio_get_flags(struct gpio_desc *desc, ulong *flagsp)
Patrick Delaunay695e5fd2020-01-13 11:35:06 +0100746{
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100747 struct udevice *dev = desc->dev;
748 int ret, value;
Simon Glass3d647742021-02-04 21:22:05 -0700749 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
Simon Glass96487892021-02-04 21:21:56 -0700750 ulong flags;
Patrick Delaunay695e5fd2020-01-13 11:35:06 +0100751
Simon Glass96487892021-02-04 21:21:56 -0700752 ret = check_reserved(desc, "get_flags");
Patrick Delaunay695e5fd2020-01-13 11:35:06 +0100753 if (ret)
754 return ret;
755
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100756 /* GPIOD_ are directly provided by driver except GPIOD_ACTIVE_LOW */
Simon Glass96487892021-02-04 21:21:56 -0700757 if (ops->get_flags) {
758 ret = ops->get_flags(dev, desc->offset, &flags);
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100759 if (ret)
760 return ret;
Patrick Delaunay695e5fd2020-01-13 11:35:06 +0100761
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100762 /* GPIOD_ACTIVE_LOW is saved in desc->flags */
Simon Glass96487892021-02-04 21:21:56 -0700763 value = flags & GPIOD_IS_OUT_ACTIVE ? 1 : 0;
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100764 if (desc->flags & GPIOD_ACTIVE_LOW)
765 value = !value;
Simon Glass96487892021-02-04 21:21:56 -0700766 flags &= ~(GPIOD_ACTIVE_LOW | GPIOD_IS_OUT_ACTIVE);
767 flags |= (desc->flags & GPIOD_ACTIVE_LOW);
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100768 if (value)
Simon Glass96487892021-02-04 21:21:56 -0700769 flags |= GPIOD_IS_OUT_ACTIVE;
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100770 } else {
Simon Glass96487892021-02-04 21:21:56 -0700771 flags = desc->flags;
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100772 /* only GPIOD_IS_OUT_ACTIVE is provided by uclass */
Simon Glass96487892021-02-04 21:21:56 -0700773 flags &= ~GPIOD_IS_OUT_ACTIVE;
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100774 if ((desc->flags & GPIOD_IS_OUT) && _gpio_get_value(desc))
Simon Glass96487892021-02-04 21:21:56 -0700775 flags |= GPIOD_IS_OUT_ACTIVE;
Patrick Delaunayd2c07e52020-01-13 11:35:08 +0100776 }
Simon Glass96487892021-02-04 21:21:56 -0700777 *flagsp = flags;
Patrick Delaunay695e5fd2020-01-13 11:35:06 +0100778
779 return 0;
780}
781
Simon Glass96495d92014-02-26 15:59:24 -0700782/**
783 * gpio_get_value() - [COMPAT] Sample GPIO pin and return it's value
784 * gpio: GPIO number
785 *
786 * This function implements the API that's compatible with current
787 * GPIO API used in U-Boot. The request is forwarded to particular
788 * GPIO driver. Returns the value of the GPIO pin, or negative value
789 * on error.
790 */
791int gpio_get_value(unsigned gpio)
792{
Simon Glass96495d92014-02-26 15:59:24 -0700793 int ret;
794
Simon Glassae7123f2015-01-05 20:05:27 -0700795 struct gpio_desc desc;
796
797 ret = gpio_to_device(gpio, &desc);
Simon Glass96495d92014-02-26 15:59:24 -0700798 if (ret)
799 return ret;
Simon Glassae7123f2015-01-05 20:05:27 -0700800 return dm_gpio_get_value(&desc);
Simon Glass96495d92014-02-26 15:59:24 -0700801}
802
803/**
804 * gpio_set_value() - [COMPAT] Configure logical value on GPIO pin
805 * gpio: GPIO number
806 * value: Logical value to be set on the GPIO pin.
807 *
808 * This function implements the API that's compatible with current
809 * GPIO API used in U-Boot. The request is forwarded to particular
810 * GPIO driver. Returns 0 on success, negative value on error.
811 */
812int gpio_set_value(unsigned gpio, int value)
813{
Simon Glassae7123f2015-01-05 20:05:27 -0700814 struct gpio_desc desc;
Simon Glass96495d92014-02-26 15:59:24 -0700815 int ret;
816
Simon Glassae7123f2015-01-05 20:05:27 -0700817 ret = gpio_to_device(gpio, &desc);
Simon Glass96495d92014-02-26 15:59:24 -0700818 if (ret)
819 return ret;
Simon Glassae7123f2015-01-05 20:05:27 -0700820 return dm_gpio_set_value(&desc, value);
Simon Glass96495d92014-02-26 15:59:24 -0700821}
822
Heiko Schocher54c5d082014-05-22 12:43:05 +0200823const char *gpio_get_bank_info(struct udevice *dev, int *bit_count)
Simon Glass96495d92014-02-26 15:59:24 -0700824{
825 struct gpio_dev_priv *priv;
826
827 /* Must be called on an active device */
Simon Glasse564f052015-03-05 12:25:20 -0700828 priv = dev_get_uclass_priv(dev);
Simon Glass96495d92014-02-26 15:59:24 -0700829 assert(priv);
830
831 *bit_count = priv->gpio_count;
832 return priv->bank_name;
833}
834
Simon Glass6449a502014-10-04 11:29:43 -0600835static const char * const gpio_function[GPIOF_COUNT] = {
836 "input",
837 "output",
838 "unused",
839 "unknown",
840 "func",
841};
842
Masahiro Yamadafb07f972017-06-22 16:50:25 +0900843static int get_function(struct udevice *dev, int offset, bool skip_unused,
844 const char **namep)
Simon Glass6449a502014-10-04 11:29:43 -0600845{
Simon Glasse564f052015-03-05 12:25:20 -0700846 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass3d647742021-02-04 21:22:05 -0700847 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
Simon Glass6449a502014-10-04 11:29:43 -0600848
849 BUILD_BUG_ON(GPIOF_COUNT != ARRAY_SIZE(gpio_function));
850 if (!device_active(dev))
851 return -ENODEV;
852 if (offset < 0 || offset >= uc_priv->gpio_count)
853 return -EINVAL;
854 if (namep)
855 *namep = uc_priv->name[offset];
856 if (skip_unused && !uc_priv->name[offset])
857 return GPIOF_UNUSED;
858 if (ops->get_function) {
859 int ret;
860
861 ret = ops->get_function(dev, offset);
862 if (ret < 0)
863 return ret;
864 if (ret >= ARRAY_SIZE(gpio_function))
865 return -ENODATA;
866 return ret;
867 }
868
869 return GPIOF_UNKNOWN;
870}
871
872int gpio_get_function(struct udevice *dev, int offset, const char **namep)
873{
874 return get_function(dev, offset, true, namep);
875}
876
877int gpio_get_raw_function(struct udevice *dev, int offset, const char **namep)
878{
879 return get_function(dev, offset, false, namep);
880}
881
Simon Glass07575352014-10-04 11:29:44 -0600882int gpio_get_status(struct udevice *dev, int offset, char *buf, int buffsize)
883{
Simon Glass3d647742021-02-04 21:22:05 -0700884 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
Simon Glass07575352014-10-04 11:29:44 -0600885 struct gpio_dev_priv *priv;
886 char *str = buf;
887 int func;
888 int ret;
889 int len;
890
891 BUILD_BUG_ON(GPIOF_COUNT != ARRAY_SIZE(gpio_function));
892
893 *buf = 0;
Simon Glasse564f052015-03-05 12:25:20 -0700894 priv = dev_get_uclass_priv(dev);
Simon Glass07575352014-10-04 11:29:44 -0600895 ret = gpio_get_raw_function(dev, offset, NULL);
896 if (ret < 0)
897 return ret;
898 func = ret;
899 len = snprintf(str, buffsize, "%s%d: %s",
900 priv->bank_name ? priv->bank_name : "",
901 offset, gpio_function[func]);
902 if (func == GPIOF_INPUT || func == GPIOF_OUTPUT ||
903 func == GPIOF_UNUSED) {
904 const char *label;
905 bool used;
906
907 ret = ops->get_value(dev, offset);
908 if (ret < 0)
909 return ret;
910 used = gpio_get_function(dev, offset, &label) != GPIOF_UNUSED;
911 snprintf(str + len, buffsize - len, ": %d [%c]%s%s",
912 ret,
913 used ? 'x' : ' ',
914 used ? " " : "",
915 label ? label : "");
916 }
917
918 return 0;
919}
920
Simon Glass29126862020-07-07 13:11:44 -0600921#if CONFIG_IS_ENABLED(ACPIGEN)
922int gpio_get_acpi(const struct gpio_desc *desc, struct acpi_gpio *gpio)
923{
Simon Glass3d647742021-02-04 21:22:05 -0700924 const struct dm_gpio_ops *ops;
Simon Glass29126862020-07-07 13:11:44 -0600925
926 memset(gpio, '\0', sizeof(*gpio));
927 if (!dm_gpio_is_valid(desc)) {
928 /* Indicate that the GPIO is not valid */
929 gpio->pin_count = 0;
930 gpio->pins[0] = 0;
931 return -EINVAL;
932 }
933
934 ops = gpio_get_ops(desc->dev);
935 if (!ops->get_acpi)
936 return -ENOSYS;
937
938 return ops->get_acpi(desc, gpio);
939}
940#endif
941
Simon Glass962f5ca2015-04-14 21:03:20 -0600942int gpio_claim_vector(const int *gpio_num_array, const char *fmt)
943{
944 int i, ret;
945 int gpio;
946
947 for (i = 0; i < 32; i++) {
948 gpio = gpio_num_array[i];
949 if (gpio == -1)
950 break;
951 ret = gpio_requestf(gpio, fmt, i);
952 if (ret)
953 goto err;
954 ret = gpio_direction_input(gpio);
955 if (ret) {
956 gpio_free(gpio);
957 goto err;
958 }
959 }
960
961 return 0;
962err:
963 for (i--; i >= 0; i--)
964 gpio_free(gpio_num_array[i]);
965
966 return ret;
967}
968
Simon Glasse5901c92014-11-10 18:00:21 -0700969/*
970 * get a number comprised of multiple GPIO values. gpio_num_array points to
971 * the array of gpio pin numbers to scan, terminated by -1.
972 */
Simon Glass962f5ca2015-04-14 21:03:20 -0600973int gpio_get_values_as_int(const int *gpio_list)
Simon Glasse5901c92014-11-10 18:00:21 -0700974{
975 int gpio;
976 unsigned bitmask = 1;
977 unsigned vector = 0;
Simon Glass962f5ca2015-04-14 21:03:20 -0600978 int ret;
Simon Glasse5901c92014-11-10 18:00:21 -0700979
980 while (bitmask &&
Simon Glass962f5ca2015-04-14 21:03:20 -0600981 ((gpio = *gpio_list++) != -1)) {
982 ret = gpio_get_value(gpio);
983 if (ret < 0)
984 return ret;
985 else if (ret)
Simon Glasse5901c92014-11-10 18:00:21 -0700986 vector |= bitmask;
987 bitmask <<= 1;
988 }
Simon Glass962f5ca2015-04-14 21:03:20 -0600989
Simon Glasse5901c92014-11-10 18:00:21 -0700990 return vector;
991}
992
Simon Glass17c43f12016-03-06 19:27:51 -0700993int dm_gpio_get_values_as_int(const struct gpio_desc *desc_list, int count)
Simon Glassbbf24782016-03-06 19:27:50 -0700994{
995 unsigned bitmask = 1;
996 unsigned vector = 0;
997 int ret, i;
998
999 for (i = 0; i < count; i++) {
1000 ret = dm_gpio_get_value(&desc_list[i]);
1001 if (ret < 0)
1002 return ret;
1003 else if (ret)
1004 vector |= bitmask;
1005 bitmask <<= 1;
1006 }
1007
1008 return vector;
1009}
1010
Simon Glass8a45b222021-02-04 21:22:09 -07001011int dm_gpio_get_values_as_int_base3(struct gpio_desc *desc_list,
1012 int count)
1013{
1014 static const char tristate[] = "01z";
1015 enum {
1016 PULLUP,
1017 PULLDOWN,
1018
1019 NUM_OPTIONS,
1020 };
1021 int vals[NUM_OPTIONS];
1022 uint mask;
1023 uint vector = 0;
1024 int ret, i;
1025
1026 /*
1027 * Limit to 19 digits which should be plenty. This avoids overflow of a
1028 * 32-bit int
1029 */
1030 assert(count < 20);
1031
1032 for (i = 0; i < NUM_OPTIONS; i++) {
1033 uint flags = GPIOD_IS_IN;
1034
1035 flags |= (i == PULLDOWN) ? GPIOD_PULL_DOWN : GPIOD_PULL_UP;
1036 ret = dm_gpios_clrset_flags(desc_list, count, GPIOD_MASK_PULL,
1037 flags);
1038 if (ret)
1039 return log_msg_ret("pu", ret);
1040
1041 /* Give the lines time to settle */
1042 udelay(10);
1043
1044 ret = dm_gpio_get_values_as_int(desc_list, count);
1045 if (ret < 0)
1046 return log_msg_ret("get1", ret);
1047 vals[i] = ret;
1048 }
1049
1050 log_debug("values: %x %x, count = %d\n", vals[0], vals[1], count);
1051 for (i = count - 1, mask = 1 << i; i >= 0; i--, mask >>= 1) {
1052 uint pd = vals[PULLDOWN] & mask ? 1 : 0;
1053 uint pu = vals[PULLUP] & mask ? 1 : 0;
1054 uint digit;
1055
1056 /*
1057 * Get value with internal pulldown active. If this is 1 then
1058 * there is a stronger external pullup, which we call 1. If not
1059 * then call it 0.
1060 *
1061 * If the values differ then the pin is floating so we call
1062 * this a 2.
1063 */
1064 if (pu == pd)
1065 digit = pd;
1066 else
1067 digit = 2;
1068 log_debug("%c ", tristate[digit]);
1069 vector = 3 * vector + digit;
1070 }
1071 log_debug("vector=%d\n", vector);
1072
1073 return vector;
1074}
1075
Heiko Schocher49b10cb2019-07-17 06:59:51 +02001076/**
1077 * gpio_request_tail: common work for requesting a gpio.
1078 *
1079 * ret: return value from previous work in function which calls
1080 * this function.
1081 * This seems bogus (why calling this function instead not
1082 * calling it and end caller function instead?).
1083 * Because on error in caller function we want to set some
1084 * default values in gpio desc and have a common error
1085 * debug message, which provides this function.
1086 * nodename: Name of node for which gpio gets requested
1087 * used for gpio label name.
1088 * args: pointer to output arguments structure
1089 * list_name: Name of GPIO list
1090 * used for gpio label name.
1091 * index: gpio index in gpio list
1092 * used for gpio label name.
1093 * desc: pointer to gpio descriptor, filled from this
1094 * function.
1095 * flags: gpio flags to use.
1096 * add_index: should index added to gpio label name
1097 * gpio_dev: pointer to gpio device from which the gpio
1098 * will be requested. If NULL try to get the
1099 * gpio device with uclass_get_device_by_ofnode()
1100 *
1101 * return: In error case this function sets default values in
1102 * gpio descriptor, also emmits a debug message.
1103 * On success it returns 0 else the error code from
1104 * function calls, or the error code passed through
1105 * ret to this function.
1106 *
1107 */
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001108static int gpio_request_tail(int ret, const char *nodename,
Simon Glass3a571232017-05-18 20:09:18 -06001109 struct ofnode_phandle_args *args,
1110 const char *list_name, int index,
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001111 struct gpio_desc *desc, int flags,
Heiko Schocher49b10cb2019-07-17 06:59:51 +02001112 bool add_index, struct udevice *gpio_dev)
Simon Glass3669e0e2015-01-05 20:05:29 -07001113{
Patrick Delaunay9f2b0662020-01-13 11:35:01 +01001114 gpio_desc_init(desc, gpio_dev, 0);
Simon Glass3a571232017-05-18 20:09:18 -06001115 if (ret)
Simon Glass3669e0e2015-01-05 20:05:29 -07001116 goto err;
Simon Glass3669e0e2015-01-05 20:05:29 -07001117
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001118 if (!desc->dev) {
1119 ret = uclass_get_device_by_ofnode(UCLASS_GPIO, args->node,
1120 &desc->dev);
1121 if (ret) {
Heiko Schocher49b10cb2019-07-17 06:59:51 +02001122 debug("%s: uclass_get_device_by_ofnode failed\n",
1123 __func__);
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001124 goto err;
1125 }
Simon Glass3669e0e2015-01-05 20:05:29 -07001126 }
Simon Glass3a571232017-05-18 20:09:18 -06001127 ret = gpio_find_and_xlate(desc, args);
Simon Glass3669e0e2015-01-05 20:05:29 -07001128 if (ret) {
1129 debug("%s: gpio_find_and_xlate failed\n", __func__);
1130 goto err;
1131 }
1132 ret = dm_gpio_requestf(desc, add_index ? "%s.%s%d" : "%s.%s",
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001133 nodename, list_name, index);
Simon Glass3669e0e2015-01-05 20:05:29 -07001134 if (ret) {
1135 debug("%s: dm_gpio_requestf failed\n", __func__);
1136 goto err;
1137 }
Simon Glass7e0a96d2021-02-04 21:22:03 -07001138
1139 /* Keep any direction flags provided by the devicetree */
1140 ret = dm_gpio_set_dir_flags(desc,
1141 flags | (desc->flags & GPIOD_MASK_DIR));
Simon Glass3669e0e2015-01-05 20:05:29 -07001142 if (ret) {
1143 debug("%s: dm_gpio_set_dir failed\n", __func__);
1144 goto err;
1145 }
1146
1147 return 0;
1148err:
1149 debug("%s: Node '%s', property '%s', failed to request GPIO index %d: %d\n",
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001150 __func__, nodename, list_name, index, ret);
Simon Glass3669e0e2015-01-05 20:05:29 -07001151 return ret;
1152}
1153
Simon Glass95397382021-08-07 07:24:04 -06001154#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass150c5af2017-05-30 21:47:09 -06001155static int _gpio_request_by_name_nodev(ofnode node, const char *list_name,
1156 int index, struct gpio_desc *desc,
1157 int flags, bool add_index)
Simon Glass3a571232017-05-18 20:09:18 -06001158{
1159 struct ofnode_phandle_args args;
1160 int ret;
1161
Simon Glass150c5af2017-05-30 21:47:09 -06001162 ret = ofnode_parse_phandle_with_args(node, list_name, "#gpio-cells", 0,
1163 index, &args);
Simon Glass3a571232017-05-18 20:09:18 -06001164
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001165 return gpio_request_tail(ret, ofnode_get_name(node), &args, list_name,
1166 index, desc, flags, add_index, NULL);
Simon Glass3a571232017-05-18 20:09:18 -06001167}
1168
Simon Glass150c5af2017-05-30 21:47:09 -06001169int gpio_request_by_name_nodev(ofnode node, const char *list_name, int index,
Simon Glass3669e0e2015-01-05 20:05:29 -07001170 struct gpio_desc *desc, int flags)
1171{
Simon Glass150c5af2017-05-30 21:47:09 -06001172 return _gpio_request_by_name_nodev(node, list_name, index, desc, flags,
1173 index > 0);
Simon Glass3669e0e2015-01-05 20:05:29 -07001174}
1175
Simon Glass150c5af2017-05-30 21:47:09 -06001176int gpio_request_by_name(struct udevice *dev, const char *list_name, int index,
Simon Glass3669e0e2015-01-05 20:05:29 -07001177 struct gpio_desc *desc, int flags)
1178{
Simon Glass150c5af2017-05-30 21:47:09 -06001179 struct ofnode_phandle_args args;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001180 ofnode node;
Simon Glass150c5af2017-05-30 21:47:09 -06001181 int ret;
1182
1183 ret = dev_read_phandle_with_args(dev, list_name, "#gpio-cells", 0,
1184 index, &args);
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001185 node = dev_ofnode(dev);
1186 return gpio_request_tail(ret, ofnode_get_name(node), &args, list_name,
1187 index, desc, flags, index > 0, NULL);
Simon Glass3669e0e2015-01-05 20:05:29 -07001188}
1189
Simon Glass150c5af2017-05-30 21:47:09 -06001190int gpio_request_list_by_name_nodev(ofnode node, const char *list_name,
Simon Glass3669e0e2015-01-05 20:05:29 -07001191 struct gpio_desc *desc, int max_count,
1192 int flags)
1193{
1194 int count;
1195 int ret;
1196
Przemyslaw Marczak2984e7a2015-03-31 18:57:16 +02001197 for (count = 0; count < max_count; count++) {
Simon Glass150c5af2017-05-30 21:47:09 -06001198 ret = _gpio_request_by_name_nodev(node, list_name, count,
Simon Glass3669e0e2015-01-05 20:05:29 -07001199 &desc[count], flags, true);
1200 if (ret == -ENOENT)
1201 break;
1202 else if (ret)
1203 goto err;
1204 }
1205
1206 /* We ran out of GPIOs in the list */
1207 return count;
1208
1209err:
1210 gpio_free_list_nodev(desc, count - 1);
1211
1212 return ret;
1213}
1214
1215int gpio_request_list_by_name(struct udevice *dev, const char *list_name,
1216 struct gpio_desc *desc, int max_count,
1217 int flags)
1218{
1219 /*
1220 * This isn't ideal since we don't use dev->name in the debug()
1221 * calls in gpio_request_by_name(), but we can do this until
1222 * gpio_request_list_by_name_nodev() can be dropped.
1223 */
Simon Glass150c5af2017-05-30 21:47:09 -06001224 return gpio_request_list_by_name_nodev(dev_ofnode(dev), list_name, desc,
1225 max_count, flags);
Simon Glass3669e0e2015-01-05 20:05:29 -07001226}
1227
1228int gpio_get_list_count(struct udevice *dev, const char *list_name)
1229{
1230 int ret;
1231
Sean Anderson430e1362021-04-20 10:50:54 -04001232 ret = dev_count_phandle_with_args(dev, list_name, "#gpio-cells",
1233 -ENOENT);
1234 if (ret < 0) {
Simon Glass3669e0e2015-01-05 20:05:29 -07001235 debug("%s: Node '%s', property '%s', GPIO count failed: %d\n",
1236 __func__, dev->name, list_name, ret);
1237 }
1238
1239 return ret;
1240}
Simon Glass4fe40672021-02-04 21:21:54 -07001241#endif /* OF_PLATDATA */
Simon Glass3669e0e2015-01-05 20:05:29 -07001242
Simon Glass48609d02021-08-07 07:24:12 -06001243#if CONFIG_IS_ENABLED(OF_PLATDATA)
1244int gpio_request_by_phandle(struct udevice *dev,
1245 const struct phandle_2_arg *cells,
1246 struct gpio_desc *desc, int flags)
1247{
1248 struct ofnode_phandle_args args;
1249 struct udevice *gpio_dev;
1250 const int index = 0;
1251 int ret;
1252
1253 ret = device_get_by_ofplat_idx(cells->idx, &gpio_dev);
1254 if (ret)
1255 return ret;
1256 args.args[0] = cells->arg[0];
1257 args.args[1] = cells->arg[1];
1258
1259 return gpio_request_tail(ret, NULL, &args, NULL, index, desc, flags,
1260 index > 0, gpio_dev);
1261}
1262#endif
1263
Simon Glass3669e0e2015-01-05 20:05:29 -07001264int dm_gpio_free(struct udevice *dev, struct gpio_desc *desc)
1265{
1266 /* For now, we don't do any checking of dev */
1267 return _dm_gpio_free(desc->dev, desc->offset);
1268}
1269
1270int gpio_free_list(struct udevice *dev, struct gpio_desc *desc, int count)
1271{
1272 int i;
1273
1274 /* For now, we don't do any checking of dev */
1275 for (i = 0; i < count; i++)
1276 dm_gpio_free(dev, &desc[i]);
1277
1278 return 0;
1279}
1280
1281int gpio_free_list_nodev(struct gpio_desc *desc, int count)
1282{
1283 return gpio_free_list(NULL, desc, count);
1284}
1285
Simon Glass96495d92014-02-26 15:59:24 -07001286/* We need to renumber the GPIOs when any driver is probed/removed */
Simon Glassb892d122014-10-04 11:29:42 -06001287static int gpio_renumber(struct udevice *removed_dev)
Simon Glass96495d92014-02-26 15:59:24 -07001288{
1289 struct gpio_dev_priv *uc_priv;
Heiko Schocher54c5d082014-05-22 12:43:05 +02001290 struct udevice *dev;
Simon Glass96495d92014-02-26 15:59:24 -07001291 struct uclass *uc;
1292 unsigned base;
1293 int ret;
1294
1295 ret = uclass_get(UCLASS_GPIO, &uc);
1296 if (ret)
1297 return ret;
1298
1299 /* Ensure that we have a base for each bank */
1300 base = 0;
1301 uclass_foreach_dev(dev, uc) {
Simon Glassb892d122014-10-04 11:29:42 -06001302 if (device_active(dev) && dev != removed_dev) {
Simon Glasse564f052015-03-05 12:25:20 -07001303 uc_priv = dev_get_uclass_priv(dev);
Simon Glass96495d92014-02-26 15:59:24 -07001304 uc_priv->gpio_base = base;
1305 base += uc_priv->gpio_count;
1306 }
1307 }
1308
1309 return 0;
1310}
1311
Simon Glass17c43f12016-03-06 19:27:51 -07001312int gpio_get_number(const struct gpio_desc *desc)
Simon Glass56a71f82015-03-25 12:21:58 -06001313{
1314 struct udevice *dev = desc->dev;
1315 struct gpio_dev_priv *uc_priv;
1316
1317 if (!dev)
1318 return -1;
Simon Glass0fd3d912020-12-22 19:30:28 -07001319 uc_priv = dev_get_uclass_priv(dev);
Simon Glass56a71f82015-03-25 12:21:58 -06001320
1321 return uc_priv->gpio_base + desc->offset;
1322}
1323
Heiko Schocher54c5d082014-05-22 12:43:05 +02001324static int gpio_post_probe(struct udevice *dev)
Simon Glass96495d92014-02-26 15:59:24 -07001325{
Simon Glasse564f052015-03-05 12:25:20 -07001326 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glassb892d122014-10-04 11:29:42 -06001327
1328 uc_priv->name = calloc(uc_priv->gpio_count, sizeof(char *));
1329 if (!uc_priv->name)
1330 return -ENOMEM;
1331
1332 return gpio_renumber(NULL);
Simon Glass96495d92014-02-26 15:59:24 -07001333}
1334
Heiko Schocher54c5d082014-05-22 12:43:05 +02001335static int gpio_pre_remove(struct udevice *dev)
Simon Glass96495d92014-02-26 15:59:24 -07001336{
Simon Glasse564f052015-03-05 12:25:20 -07001337 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glassb892d122014-10-04 11:29:42 -06001338 int i;
1339
1340 for (i = 0; i < uc_priv->gpio_count; i++) {
1341 if (uc_priv->name[i])
1342 free(uc_priv->name[i]);
1343 }
1344 free(uc_priv->name);
1345
1346 return gpio_renumber(dev);
Simon Glass96495d92014-02-26 15:59:24 -07001347}
1348
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001349int gpio_dev_request_index(struct udevice *dev, const char *nodename,
1350 char *list_name, int index, int flags,
1351 int dtflags, struct gpio_desc *desc)
1352{
1353 struct ofnode_phandle_args args;
1354
1355 args.node = ofnode_null();
1356 args.args_count = 2;
1357 args.args[0] = index;
1358 args.args[1] = dtflags;
1359
1360 return gpio_request_tail(0, nodename, &args, list_name, index, desc,
1361 flags, 0, dev);
1362}
1363
Jean-Jacques Hiblotd4b722e2020-09-11 13:43:34 +05301364static void devm_gpiod_release(struct udevice *dev, void *res)
1365{
1366 dm_gpio_free(dev, res);
1367}
1368
1369static int devm_gpiod_match(struct udevice *dev, void *res, void *data)
1370{
1371 return res == data;
1372}
1373
1374struct gpio_desc *devm_gpiod_get_index(struct udevice *dev, const char *id,
1375 unsigned int index, int flags)
1376{
1377 int rc;
1378 struct gpio_desc *desc;
1379 char *propname;
1380 static const char suffix[] = "-gpios";
1381
1382 propname = malloc(strlen(id) + sizeof(suffix));
1383 if (!propname) {
1384 rc = -ENOMEM;
1385 goto end;
1386 }
1387
1388 strcpy(propname, id);
1389 strcat(propname, suffix);
1390
1391 desc = devres_alloc(devm_gpiod_release, sizeof(struct gpio_desc),
1392 __GFP_ZERO);
1393 if (unlikely(!desc)) {
1394 rc = -ENOMEM;
1395 goto end;
1396 }
1397
1398 rc = gpio_request_by_name(dev, propname, index, desc, flags);
1399
1400end:
1401 if (propname)
1402 free(propname);
1403
1404 if (rc)
1405 return ERR_PTR(rc);
1406
1407 devres_add(dev, desc);
1408
1409 return desc;
1410}
1411
1412struct gpio_desc *devm_gpiod_get_index_optional(struct udevice *dev,
1413 const char *id,
1414 unsigned int index,
1415 int flags)
1416{
1417 struct gpio_desc *desc = devm_gpiod_get_index(dev, id, index, flags);
1418
1419 if (IS_ERR(desc))
1420 return NULL;
1421
1422 return desc;
1423}
1424
1425void devm_gpiod_put(struct udevice *dev, struct gpio_desc *desc)
1426{
1427 int rc;
1428
1429 rc = devres_release(dev, devm_gpiod_release, devm_gpiod_match, desc);
1430 WARN_ON(rc);
1431}
1432
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001433static int gpio_post_bind(struct udevice *dev)
1434{
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001435 struct udevice *child;
1436 ofnode node;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001437
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001438#if defined(CONFIG_NEEDS_MANUAL_RELOC)
1439 struct dm_gpio_ops *ops = (struct dm_gpio_ops *)device_get_ops(dev);
1440 static int reloc_done;
1441
1442 if (!reloc_done) {
1443 if (ops->request)
1444 ops->request += gd->reloc_off;
Simon Glass093152f2020-02-04 20:15:17 -07001445 if (ops->rfree)
1446 ops->rfree += gd->reloc_off;
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001447 if (ops->direction_input)
1448 ops->direction_input += gd->reloc_off;
1449 if (ops->direction_output)
1450 ops->direction_output += gd->reloc_off;
1451 if (ops->get_value)
1452 ops->get_value += gd->reloc_off;
1453 if (ops->set_value)
1454 ops->set_value += gd->reloc_off;
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001455 if (ops->get_function)
1456 ops->get_function += gd->reloc_off;
1457 if (ops->xlate)
1458 ops->xlate += gd->reloc_off;
Simon Glass13979fc2021-02-04 21:21:55 -07001459 if (ops->set_flags)
1460 ops->set_flags += gd->reloc_off;
Simon Glass96487892021-02-04 21:21:56 -07001461 if (ops->get_flags)
1462 ops->get_flags += gd->reloc_off;
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001463
1464 reloc_done++;
1465 }
1466#endif
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001467
Simon Glass48609d02021-08-07 07:24:12 -06001468 if (CONFIG_IS_ENABLED(OF_REAL) && IS_ENABLED(CONFIG_GPIO_HOG)) {
Heiko Schocher49b10cb2019-07-17 06:59:51 +02001469 dev_for_each_subnode(node, dev) {
1470 if (ofnode_read_bool(node, "gpio-hog")) {
1471 const char *name = ofnode_get_name(node);
1472 int ret;
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001473
Heiko Schocher49b10cb2019-07-17 06:59:51 +02001474 ret = device_bind_driver_to_node(dev,
1475 "gpio_hog",
1476 name, node,
1477 &child);
1478 if (ret)
1479 return ret;
1480 }
Heiko Schocher5fc7cf82019-06-12 06:11:46 +02001481 }
1482 }
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001483 return 0;
1484}
1485
Simon Glass96495d92014-02-26 15:59:24 -07001486UCLASS_DRIVER(gpio) = {
1487 .id = UCLASS_GPIO,
1488 .name = "gpio",
Bhuvanchandra DVae89bb02015-06-01 18:37:15 +05301489 .flags = DM_UC_FLAG_SEQ_ALIAS,
Simon Glass96495d92014-02-26 15:59:24 -07001490 .post_probe = gpio_post_probe,
Michal Simek1b4c2aa2018-07-12 12:42:27 +02001491 .post_bind = gpio_post_bind,
Simon Glass96495d92014-02-26 15:59:24 -07001492 .pre_remove = gpio_pre_remove,
Simon Glass41575d82020-12-03 16:55:17 -07001493 .per_device_auto = sizeof(struct gpio_dev_priv),
Simon Glass96495d92014-02-26 15:59:24 -07001494};