1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2013 Google, Inc
6 #define LOG_CATEGORY UCLASS_GPIO
11 #include <dm/devres.h>
12 #include <dm/device_compat.h>
13 #include <dm/device-internal.h>
15 #include <dm/uclass-internal.h>
16 #include <dt-bindings/gpio/gpio.h>
20 #include <acpi/acpi_device.h>
21 #include <asm/global_data.h>
23 #include <dm/device_compat.h>
24 #include <linux/bug.h>
25 #include <linux/ctype.h>
26 #include <linux/delay.h>
28 DECLARE_GLOBAL_DATA_PTR;
31 * gpio_desc_init() - Initialize the GPIO descriptor
33 * @desc: GPIO descriptor to initialize
35 * @offset: Offset of device GPIO
37 static void gpio_desc_init(struct gpio_desc *desc,
42 desc->offset = offset;
47 * gpio_to_device() - Convert global GPIO number to device, number
49 * Convert the GPIO number to an entry in the list of GPIOs
50 * or GPIO blocks registered with the GPIO controller. Returns
51 * entry on success, NULL on error.
53 * @gpio: The numeric representation of the GPIO
54 * @desc: Returns description (desc->flags will always be 0)
55 * @return 0 if found, -ENOENT if not found
57 static int gpio_to_device(unsigned int gpio, struct gpio_desc *desc)
59 struct gpio_dev_priv *uc_priv;
63 for (ret = uclass_first_device(UCLASS_GPIO, &dev);
65 ret = uclass_next_device(&dev)) {
66 uc_priv = dev_get_uclass_priv(dev);
67 if (gpio >= uc_priv->gpio_base &&
68 gpio < uc_priv->gpio_base + uc_priv->gpio_count) {
69 gpio_desc_init(desc, dev, gpio - uc_priv->gpio_base);
75 return ret ? ret : -ENOENT;
78 #if CONFIG_IS_ENABLED(DM_GPIO_LOOKUP_LABEL)
80 * dm_gpio_lookup_label() - look for name in gpio device
82 * search in uc_priv, if there is a gpio with labelname same
85 * @name: name which is searched
86 * @uc_priv: gpio_dev_priv pointer.
87 * @offset: gpio offset within the device
88 * @return: 0 if found, -ENOENT if not.
90 static int dm_gpio_lookup_label(const char *name,
91 struct gpio_dev_priv *uc_priv, ulong *offset)
98 for (i = 0; i < uc_priv->gpio_count; i++) {
99 if (!uc_priv->name[i])
101 if (!strncmp(name, uc_priv->name[i], len)) {
110 dm_gpio_lookup_label(const char *name, struct gpio_dev_priv *uc_priv,
117 int dm_gpio_lookup_name(const char *name, struct gpio_desc *desc)
119 struct gpio_dev_priv *uc_priv = NULL;
125 numeric = isdigit(*name) ? dectoul(name, NULL) : -1;
126 for (ret = uclass_first_device(UCLASS_GPIO, &dev);
128 ret = uclass_next_device(&dev)) {
131 uc_priv = dev_get_uclass_priv(dev);
133 offset = numeric - uc_priv->gpio_base;
134 /* Allow GPIOs to be numbered from 0 */
135 if (offset < uc_priv->gpio_count)
139 len = uc_priv->bank_name ? strlen(uc_priv->bank_name) : 0;
141 if (!strncasecmp(name, uc_priv->bank_name, len)) {
142 if (!strict_strtoul(name + len, 10, &offset))
147 * if we did not found a gpio through its bank
148 * name, we search for a valid gpio label.
150 if (!dm_gpio_lookup_label(name, uc_priv, &offset))
155 return ret ? ret : -EINVAL;
157 gpio_desc_init(desc, dev, offset);
162 int gpio_lookup_name(const char *name, struct udevice **devp,
163 unsigned int *offsetp, unsigned int *gpiop)
165 struct gpio_desc desc;
170 ret = dm_gpio_lookup_name(name, &desc);
177 *offsetp = desc.offset;
179 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(desc.dev);
181 *gpiop = uc_priv->gpio_base + desc.offset;
187 int gpio_xlate_offs_flags(struct udevice *dev, struct gpio_desc *desc,
188 struct ofnode_phandle_args *args)
190 if (args->args_count < 1)
193 desc->offset = args->args[0];
195 if (args->args_count < 2)
199 if (args->args[1] & GPIO_ACTIVE_LOW)
200 desc->flags |= GPIOD_ACTIVE_LOW;
203 * need to test 2 bits for gpio output binding:
204 * OPEN_DRAIN (0x6) = SINGLE_ENDED (0x2) | LINE_OPEN_DRAIN (0x4)
205 * OPEN_SOURCE (0x2) = SINGLE_ENDED (0x2) | LINE_OPEN_SOURCE (0x0)
207 if (args->args[1] & GPIO_SINGLE_ENDED) {
208 if (args->args[1] & GPIO_LINE_OPEN_DRAIN)
209 desc->flags |= GPIOD_OPEN_DRAIN;
211 desc->flags |= GPIOD_OPEN_SOURCE;
214 if (args->args[1] & GPIO_PULL_UP)
215 desc->flags |= GPIOD_PULL_UP;
217 if (args->args[1] & GPIO_PULL_DOWN)
218 desc->flags |= GPIOD_PULL_DOWN;
223 static int gpio_find_and_xlate(struct gpio_desc *desc,
224 struct ofnode_phandle_args *args)
226 const struct dm_gpio_ops *ops = gpio_get_ops(desc->dev);
229 return ops->xlate(desc->dev, desc, args);
231 return gpio_xlate_offs_flags(desc->dev, desc, args);
234 #if defined(CONFIG_GPIO_HOG)
236 struct gpio_hog_priv {
237 struct gpio_desc gpiod;
240 struct gpio_hog_data {
246 static int gpio_hog_of_to_plat(struct udevice *dev)
248 struct gpio_hog_data *plat = dev_get_plat(dev);
249 const char *nodename;
253 if (dev_read_bool(dev, "input")) {
254 plat->gpiod_flags = GPIOD_IS_IN;
255 } else if (dev_read_bool(dev, "output-high")) {
257 plat->gpiod_flags = GPIOD_IS_OUT;
258 } else if (dev_read_bool(dev, "output-low")) {
259 plat->gpiod_flags = GPIOD_IS_OUT;
261 printf("%s: missing gpio-hog state.\n", __func__);
264 ret = dev_read_u32_array(dev, "gpios", plat->val, 2);
266 printf("%s: wrong gpios property, 2 values needed %d\n",
270 nodename = dev_read_string(dev, "line-name");
272 device_set_name(dev, nodename);
277 static int gpio_hog_probe(struct udevice *dev)
279 struct gpio_hog_data *plat = dev_get_plat(dev);
280 struct gpio_hog_priv *priv = dev_get_priv(dev);
283 ret = gpio_dev_request_index(dev->parent, dev->name, "gpio-hog",
284 plat->val[0], plat->gpiod_flags,
285 plat->val[1], &priv->gpiod);
287 debug("%s: node %s could not get gpio.\n", __func__,
292 if (plat->gpiod_flags == GPIOD_IS_OUT) {
293 ret = dm_gpio_set_value(&priv->gpiod, plat->value);
295 debug("%s: node %s could not set gpio.\n", __func__,
304 int gpio_hog_probe_all(void)
310 for (uclass_first_device(UCLASS_NOP, &dev);
312 uclass_find_next_device(&dev)) {
313 if (dev->driver == DM_DRIVER_GET(gpio_hog)) {
314 ret = device_probe(dev);
316 printf("Failed to probe device %s err: %d\n",
326 int gpio_hog_lookup_name(const char *name, struct gpio_desc **desc)
331 gpio_hog_probe_all();
332 if (!uclass_get_device_by_name(UCLASS_NOP, name, &dev)) {
333 struct gpio_hog_priv *priv = dev_get_priv(dev);
335 *desc = &priv->gpiod;
342 U_BOOT_DRIVER(gpio_hog) = {
345 .of_to_plat = gpio_hog_of_to_plat,
346 .probe = gpio_hog_probe,
347 .priv_auto = sizeof(struct gpio_hog_priv),
348 .plat_auto = sizeof(struct gpio_hog_data),
351 int gpio_hog_lookup_name(const char *name, struct gpio_desc **desc)
357 int dm_gpio_request(struct gpio_desc *desc, const char *label)
359 const struct dm_gpio_ops *ops = gpio_get_ops(desc->dev);
360 struct udevice *dev = desc->dev;
361 struct gpio_dev_priv *uc_priv;
365 uc_priv = dev_get_uclass_priv(dev);
366 if (uc_priv->name[desc->offset])
372 ret = ops->request(dev, desc->offset, label);
378 uc_priv->name[desc->offset] = str;
383 static int dm_gpio_requestf(struct gpio_desc *desc, const char *fmt, ...)
385 #if !defined(CONFIG_SPL_BUILD) || !CONFIG_IS_ENABLED(USE_TINY_PRINTF)
390 vscnprintf(buf, sizeof(buf), fmt, args);
392 return dm_gpio_request(desc, buf);
394 return dm_gpio_request(desc, fmt);
399 * gpio_request() - [COMPAT] Request GPIO
401 * label: Name for the requested GPIO
403 * The label is copied and allocated so the caller does not need to keep
404 * the pointer around.
406 * This function implements the API that's compatible with current
407 * GPIO API used in U-Boot. The request is forwarded to particular
408 * GPIO driver. Returns 0 on success, negative value on error.
410 int gpio_request(unsigned gpio, const char *label)
412 struct gpio_desc desc;
415 ret = gpio_to_device(gpio, &desc);
419 return dm_gpio_request(&desc, label);
423 * gpio_requestf() - [COMPAT] Request GPIO
425 * @fmt: Format string for the requested GPIO
426 * @...: Arguments for the printf() format string
428 * This function implements the API that's compatible with current
429 * GPIO API used in U-Boot. The request is forwarded to particular
430 * GPIO driver. Returns 0 on success, negative value on error.
432 int gpio_requestf(unsigned gpio, const char *fmt, ...)
434 #if !defined(CONFIG_SPL_BUILD) || !CONFIG_IS_ENABLED(USE_TINY_PRINTF)
439 vscnprintf(buf, sizeof(buf), fmt, args);
441 return gpio_request(gpio, buf);
443 return gpio_request(gpio, fmt);
447 int _dm_gpio_free(struct udevice *dev, uint offset)
449 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
450 struct gpio_dev_priv *uc_priv;
453 uc_priv = dev_get_uclass_priv(dev);
454 if (!uc_priv->name[offset])
457 ret = ops->rfree(dev, offset);
462 free(uc_priv->name[offset]);
463 uc_priv->name[offset] = NULL;
469 * gpio_free() - [COMPAT] Relinquish GPIO
472 * This function implements the API that's compatible with current
473 * GPIO API used in U-Boot. The request is forwarded to particular
474 * GPIO driver. Returns 0 on success, negative value on error.
476 int gpio_free(unsigned gpio)
478 struct gpio_desc desc;
481 ret = gpio_to_device(gpio, &desc);
485 return _dm_gpio_free(desc.dev, desc.offset);
488 static int check_reserved(const struct gpio_desc *desc, const char *func)
490 struct gpio_dev_priv *uc_priv;
492 if (!dm_gpio_is_valid(desc))
495 uc_priv = dev_get_uclass_priv(desc->dev);
496 if (!uc_priv->name[desc->offset]) {
497 printf("%s: %s: error: gpio %s%d not reserved\n",
498 desc->dev->name, func,
499 uc_priv->bank_name ? uc_priv->bank_name : "",
508 * gpio_direction_input() - [COMPAT] Set GPIO direction to input
511 * This function implements the API that's compatible with current
512 * GPIO API used in U-Boot. The request is forwarded to particular
513 * GPIO driver. Returns 0 on success, negative value on error.
515 int gpio_direction_input(unsigned gpio)
517 struct gpio_desc desc;
520 ret = gpio_to_device(gpio, &desc);
524 return dm_gpio_clrset_flags(&desc, GPIOD_MASK_DIR, GPIOD_IS_IN);
528 * gpio_direction_output() - [COMPAT] Set GPIO direction to output and set value
530 * value: Logical value to be set on the GPIO pin
532 * This function implements the API that's compatible with current
533 * GPIO API used in U-Boot. The request is forwarded to particular
534 * GPIO driver. Returns 0 on success, negative value on error.
536 int gpio_direction_output(unsigned gpio, int value)
538 struct gpio_desc desc;
542 ret = gpio_to_device(gpio, &desc);
546 flags = GPIOD_IS_OUT;
548 flags |= GPIOD_IS_OUT_ACTIVE;
549 return dm_gpio_clrset_flags(&desc, GPIOD_MASK_DIR, flags);
552 static int _gpio_get_value(const struct gpio_desc *desc)
554 const struct dm_gpio_ops *ops = gpio_get_ops(desc->dev);
557 value = ops->get_value(desc->dev, desc->offset);
559 return desc->flags & GPIOD_ACTIVE_LOW ? !value : value;
562 int dm_gpio_get_value(const struct gpio_desc *desc)
566 ret = check_reserved(desc, "get_value");
570 return _gpio_get_value(desc);
573 int dm_gpio_set_value(const struct gpio_desc *desc, int value)
575 const struct dm_gpio_ops *ops;
578 ret = check_reserved(desc, "set_value");
582 if (desc->flags & GPIOD_ACTIVE_LOW)
585 /* GPIOD_ are directly managed by driver in set_flags */
586 ops = gpio_get_ops(desc->dev);
587 if (ops->set_flags) {
588 ulong flags = desc->flags;
591 flags |= GPIOD_IS_OUT_ACTIVE;
593 flags &= ~GPIOD_IS_OUT_ACTIVE;
594 return ops->set_flags(desc->dev, desc->offset, flags);
598 * Emulate open drain by not actively driving the line high or
599 * Emulate open source by not actively driving the line low
601 if ((desc->flags & GPIOD_OPEN_DRAIN && value) ||
602 (desc->flags & GPIOD_OPEN_SOURCE && !value))
603 return ops->direction_input(desc->dev, desc->offset);
604 else if (desc->flags & GPIOD_OPEN_DRAIN ||
605 desc->flags & GPIOD_OPEN_SOURCE)
606 return ops->direction_output(desc->dev, desc->offset, value);
608 ret = ops->set_value(desc->dev, desc->offset, value);
615 /* check dir flags invalid configuration */
616 static int check_dir_flags(ulong flags)
618 if ((flags & GPIOD_IS_OUT) && (flags & GPIOD_IS_IN)) {
619 log_debug("%s: flags 0x%lx has GPIOD_IS_OUT and GPIOD_IS_IN\n",
624 if ((flags & GPIOD_PULL_UP) && (flags & GPIOD_PULL_DOWN)) {
625 log_debug("%s: flags 0x%lx has GPIOD_PULL_UP and GPIOD_PULL_DOWN\n",
630 if ((flags & GPIOD_OPEN_DRAIN) && (flags & GPIOD_OPEN_SOURCE)) {
631 log_debug("%s: flags 0x%lx has GPIOD_OPEN_DRAIN and GPIOD_OPEN_SOURCE\n",
640 * _dm_gpio_set_flags() - Send flags to the driver
642 * This uses the best available method to send the given flags to the driver.
643 * Note that if flags & GPIOD_ACTIVE_LOW, the driver sees the opposite value
644 * of GPIOD_IS_OUT_ACTIVE.
646 * @desc: GPIO description
647 * @flags: flags value to set
648 * @return 0 if OK, -ve on error
650 static int _dm_gpio_set_flags(struct gpio_desc *desc, ulong flags)
652 struct udevice *dev = desc->dev;
653 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
654 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
657 ret = check_dir_flags(flags);
660 "%s error: set_dir_flags for gpio %s%d has invalid dir flags 0x%lx\n",
662 uc_priv->bank_name ? uc_priv->bank_name : "",
663 desc->offset, flags);
668 /* If active low, invert the output state */
669 if ((flags & (GPIOD_IS_OUT | GPIOD_ACTIVE_LOW)) ==
670 (GPIOD_IS_OUT | GPIOD_ACTIVE_LOW))
671 flags ^= GPIOD_IS_OUT_ACTIVE;
673 /* GPIOD_ are directly managed by driver in set_flags */
674 if (ops->set_flags) {
675 ret = ops->set_flags(dev, desc->offset, flags);
677 if (flags & GPIOD_IS_OUT) {
678 bool value = flags & GPIOD_IS_OUT_ACTIVE;
680 ret = ops->direction_output(dev, desc->offset, value);
681 } else if (flags & GPIOD_IS_IN) {
682 ret = ops->direction_input(dev, desc->offset);
689 int dm_gpio_clrset_flags(struct gpio_desc *desc, ulong clr, ulong set)
694 ret = check_reserved(desc, "set_dir_flags");
698 flags = (desc->flags & ~clr) | set;
700 ret = _dm_gpio_set_flags(desc, flags);
704 /* save the flags also in descriptor */
710 int dm_gpio_set_dir_flags(struct gpio_desc *desc, ulong flags)
712 /* combine the requested flags (for IN/OUT) and the descriptor flags */
713 return dm_gpio_clrset_flags(desc, GPIOD_MASK_DIR, flags);
716 int dm_gpios_clrset_flags(struct gpio_desc *desc, int count, ulong clr,
722 for (i = 0; i < count; i++) {
723 ret = dm_gpio_clrset_flags(&desc[i], clr, set);
731 int dm_gpio_get_flags(struct gpio_desc *desc, ulong *flagsp)
733 struct udevice *dev = desc->dev;
735 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
738 ret = check_reserved(desc, "get_flags");
742 /* GPIOD_ are directly provided by driver except GPIOD_ACTIVE_LOW */
743 if (ops->get_flags) {
744 ret = ops->get_flags(dev, desc->offset, &flags);
748 /* GPIOD_ACTIVE_LOW is saved in desc->flags */
749 value = flags & GPIOD_IS_OUT_ACTIVE ? 1 : 0;
750 if (desc->flags & GPIOD_ACTIVE_LOW)
752 flags &= ~(GPIOD_ACTIVE_LOW | GPIOD_IS_OUT_ACTIVE);
753 flags |= (desc->flags & GPIOD_ACTIVE_LOW);
755 flags |= GPIOD_IS_OUT_ACTIVE;
758 /* only GPIOD_IS_OUT_ACTIVE is provided by uclass */
759 flags &= ~GPIOD_IS_OUT_ACTIVE;
760 if ((desc->flags & GPIOD_IS_OUT) && _gpio_get_value(desc))
761 flags |= GPIOD_IS_OUT_ACTIVE;
769 * gpio_get_value() - [COMPAT] Sample GPIO pin and return it's value
772 * This function implements the API that's compatible with current
773 * GPIO API used in U-Boot. The request is forwarded to particular
774 * GPIO driver. Returns the value of the GPIO pin, or negative value
777 int gpio_get_value(unsigned gpio)
781 struct gpio_desc desc;
783 ret = gpio_to_device(gpio, &desc);
786 return dm_gpio_get_value(&desc);
790 * gpio_set_value() - [COMPAT] Configure logical value on GPIO pin
792 * value: Logical value to be set on the GPIO pin.
794 * This function implements the API that's compatible with current
795 * GPIO API used in U-Boot. The request is forwarded to particular
796 * GPIO driver. Returns 0 on success, negative value on error.
798 int gpio_set_value(unsigned gpio, int value)
800 struct gpio_desc desc;
803 ret = gpio_to_device(gpio, &desc);
806 return dm_gpio_set_value(&desc, value);
809 const char *gpio_get_bank_info(struct udevice *dev, int *bit_count)
811 struct gpio_dev_priv *priv;
813 /* Must be called on an active device */
814 priv = dev_get_uclass_priv(dev);
817 *bit_count = priv->gpio_count;
818 return priv->bank_name;
821 static const char * const gpio_function[GPIOF_COUNT] = {
829 static int get_function(struct udevice *dev, int offset, bool skip_unused,
832 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
833 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
835 BUILD_BUG_ON(GPIOF_COUNT != ARRAY_SIZE(gpio_function));
836 if (!device_active(dev))
838 if (offset < 0 || offset >= uc_priv->gpio_count)
841 *namep = uc_priv->name[offset];
842 if (skip_unused && !uc_priv->name[offset])
844 if (ops->get_function) {
847 ret = ops->get_function(dev, offset);
850 if (ret >= ARRAY_SIZE(gpio_function))
855 return GPIOF_UNKNOWN;
858 int gpio_get_function(struct udevice *dev, int offset, const char **namep)
860 return get_function(dev, offset, true, namep);
863 int gpio_get_raw_function(struct udevice *dev, int offset, const char **namep)
865 return get_function(dev, offset, false, namep);
868 int gpio_get_status(struct udevice *dev, int offset, char *buf, int buffsize)
870 const struct dm_gpio_ops *ops = gpio_get_ops(dev);
871 struct gpio_dev_priv *priv;
877 BUILD_BUG_ON(GPIOF_COUNT != ARRAY_SIZE(gpio_function));
880 priv = dev_get_uclass_priv(dev);
881 ret = gpio_get_raw_function(dev, offset, NULL);
885 len = snprintf(str, buffsize, "%s%d: %s",
886 priv->bank_name ? priv->bank_name : "",
887 offset, gpio_function[func]);
888 if (func == GPIOF_INPUT || func == GPIOF_OUTPUT ||
889 func == GPIOF_UNUSED) {
893 ret = ops->get_value(dev, offset);
896 used = gpio_get_function(dev, offset, &label) != GPIOF_UNUSED;
897 snprintf(str + len, buffsize - len, ": %d [%c]%s%s",
907 #if CONFIG_IS_ENABLED(ACPIGEN)
908 int gpio_get_acpi(const struct gpio_desc *desc, struct acpi_gpio *gpio)
910 const struct dm_gpio_ops *ops;
912 memset(gpio, '\0', sizeof(*gpio));
913 if (!dm_gpio_is_valid(desc)) {
914 /* Indicate that the GPIO is not valid */
920 ops = gpio_get_ops(desc->dev);
924 return ops->get_acpi(desc, gpio);
928 int gpio_claim_vector(const int *gpio_num_array, const char *fmt)
933 for (i = 0; i < 32; i++) {
934 gpio = gpio_num_array[i];
937 ret = gpio_requestf(gpio, fmt, i);
940 ret = gpio_direction_input(gpio);
949 for (i--; i >= 0; i--)
950 gpio_free(gpio_num_array[i]);
956 * get a number comprised of multiple GPIO values. gpio_num_array points to
957 * the array of gpio pin numbers to scan, terminated by -1.
959 int gpio_get_values_as_int(const int *gpio_list)
962 unsigned bitmask = 1;
967 ((gpio = *gpio_list++) != -1)) {
968 ret = gpio_get_value(gpio);
979 int dm_gpio_get_values_as_int(const struct gpio_desc *desc_list, int count)
981 unsigned bitmask = 1;
985 for (i = 0; i < count; i++) {
986 ret = dm_gpio_get_value(&desc_list[i]);
997 int dm_gpio_get_values_as_int_base3(struct gpio_desc *desc_list,
1000 static const char tristate[] = "01z";
1007 int vals[NUM_OPTIONS];
1013 * Limit to 19 digits which should be plenty. This avoids overflow of a
1018 for (i = 0; i < NUM_OPTIONS; i++) {
1019 uint flags = GPIOD_IS_IN;
1021 flags |= (i == PULLDOWN) ? GPIOD_PULL_DOWN : GPIOD_PULL_UP;
1022 ret = dm_gpios_clrset_flags(desc_list, count, GPIOD_MASK_PULL,
1025 return log_msg_ret("pu", ret);
1027 /* Give the lines time to settle */
1030 ret = dm_gpio_get_values_as_int(desc_list, count);
1032 return log_msg_ret("get1", ret);
1036 log_debug("values: %x %x, count = %d\n", vals[0], vals[1], count);
1037 for (i = count - 1, mask = 1 << i; i >= 0; i--, mask >>= 1) {
1038 uint pd = vals[PULLDOWN] & mask ? 1 : 0;
1039 uint pu = vals[PULLUP] & mask ? 1 : 0;
1043 * Get value with internal pulldown active. If this is 1 then
1044 * there is a stronger external pullup, which we call 1. If not
1047 * If the values differ then the pin is floating so we call
1054 log_debug("%c ", tristate[digit]);
1055 vector = 3 * vector + digit;
1057 log_debug("vector=%d\n", vector);
1063 * gpio_request_tail: common work for requesting a gpio.
1065 * ret: return value from previous work in function which calls
1067 * This seems bogus (why calling this function instead not
1068 * calling it and end caller function instead?).
1069 * Because on error in caller function we want to set some
1070 * default values in gpio desc and have a common error
1071 * debug message, which provides this function.
1072 * nodename: Name of node for which gpio gets requested
1073 * used for gpio label name.
1074 * args: pointer to output arguments structure
1075 * list_name: Name of GPIO list
1076 * used for gpio label name.
1077 * index: gpio index in gpio list
1078 * used for gpio label name.
1079 * desc: pointer to gpio descriptor, filled from this
1081 * flags: gpio flags to use.
1082 * add_index: should index added to gpio label name
1083 * gpio_dev: pointer to gpio device from which the gpio
1084 * will be requested. If NULL try to get the
1085 * gpio device with uclass_get_device_by_ofnode()
1087 * return: In error case this function sets default values in
1088 * gpio descriptor, also emmits a debug message.
1089 * On success it returns 0 else the error code from
1090 * function calls, or the error code passed through
1091 * ret to this function.
1094 static int gpio_request_tail(int ret, const char *nodename,
1095 struct ofnode_phandle_args *args,
1096 const char *list_name, int index,
1097 struct gpio_desc *desc, int flags,
1098 bool add_index, struct udevice *gpio_dev)
1100 gpio_desc_init(desc, gpio_dev, 0);
1105 ret = uclass_get_device_by_ofnode(UCLASS_GPIO, args->node,
1108 debug("%s: uclass_get_device_by_ofnode failed\n",
1113 ret = gpio_find_and_xlate(desc, args);
1115 debug("%s: gpio_find_and_xlate failed\n", __func__);
1118 ret = dm_gpio_requestf(desc, add_index ? "%s.%s%d" : "%s.%s",
1119 nodename, list_name, index);
1121 debug("%s: dm_gpio_requestf failed\n", __func__);
1125 /* Keep any direction flags provided by the devicetree */
1126 ret = dm_gpio_set_dir_flags(desc,
1127 flags | (desc->flags & GPIOD_MASK_DIR));
1129 debug("%s: dm_gpio_set_dir failed\n", __func__);
1135 debug("%s: Node '%s', property '%s', failed to request GPIO index %d: %d\n",
1136 __func__, nodename, list_name, index, ret);
1140 #if CONFIG_IS_ENABLED(OF_REAL)
1141 static int _gpio_request_by_name_nodev(ofnode node, const char *list_name,
1142 int index, struct gpio_desc *desc,
1143 int flags, bool add_index)
1145 struct ofnode_phandle_args args;
1148 ret = ofnode_parse_phandle_with_args(node, list_name, "#gpio-cells", 0,
1151 return gpio_request_tail(ret, ofnode_get_name(node), &args, list_name,
1152 index, desc, flags, add_index, NULL);
1155 int gpio_request_by_name_nodev(ofnode node, const char *list_name, int index,
1156 struct gpio_desc *desc, int flags)
1158 return _gpio_request_by_name_nodev(node, list_name, index, desc, flags,
1162 int gpio_request_by_name(struct udevice *dev, const char *list_name, int index,
1163 struct gpio_desc *desc, int flags)
1165 struct ofnode_phandle_args args;
1169 ret = dev_read_phandle_with_args(dev, list_name, "#gpio-cells", 0,
1171 node = dev_ofnode(dev);
1172 return gpio_request_tail(ret, ofnode_get_name(node), &args, list_name,
1173 index, desc, flags, index > 0, NULL);
1176 int gpio_request_list_by_name_nodev(ofnode node, const char *list_name,
1177 struct gpio_desc *desc, int max_count,
1183 for (count = 0; count < max_count; count++) {
1184 ret = _gpio_request_by_name_nodev(node, list_name, count,
1185 &desc[count], flags, true);
1192 /* We ran out of GPIOs in the list */
1196 gpio_free_list_nodev(desc, count - 1);
1201 int gpio_request_list_by_name(struct udevice *dev, const char *list_name,
1202 struct gpio_desc *desc, int max_count,
1206 * This isn't ideal since we don't use dev->name in the debug()
1207 * calls in gpio_request_by_name(), but we can do this until
1208 * gpio_request_list_by_name_nodev() can be dropped.
1210 return gpio_request_list_by_name_nodev(dev_ofnode(dev), list_name, desc,
1214 int gpio_get_list_count(struct udevice *dev, const char *list_name)
1218 ret = dev_count_phandle_with_args(dev, list_name, "#gpio-cells",
1221 debug("%s: Node '%s', property '%s', GPIO count failed: %d\n",
1222 __func__, dev->name, list_name, ret);
1227 #endif /* OF_PLATDATA */
1229 int dm_gpio_free(struct udevice *dev, struct gpio_desc *desc)
1231 /* For now, we don't do any checking of dev */
1232 return _dm_gpio_free(desc->dev, desc->offset);
1235 int gpio_free_list(struct udevice *dev, struct gpio_desc *desc, int count)
1239 /* For now, we don't do any checking of dev */
1240 for (i = 0; i < count; i++)
1241 dm_gpio_free(dev, &desc[i]);
1246 int gpio_free_list_nodev(struct gpio_desc *desc, int count)
1248 return gpio_free_list(NULL, desc, count);
1251 /* We need to renumber the GPIOs when any driver is probed/removed */
1252 static int gpio_renumber(struct udevice *removed_dev)
1254 struct gpio_dev_priv *uc_priv;
1255 struct udevice *dev;
1260 ret = uclass_get(UCLASS_GPIO, &uc);
1264 /* Ensure that we have a base for each bank */
1266 uclass_foreach_dev(dev, uc) {
1267 if (device_active(dev) && dev != removed_dev) {
1268 uc_priv = dev_get_uclass_priv(dev);
1269 uc_priv->gpio_base = base;
1270 base += uc_priv->gpio_count;
1277 int gpio_get_number(const struct gpio_desc *desc)
1279 struct udevice *dev = desc->dev;
1280 struct gpio_dev_priv *uc_priv;
1284 uc_priv = dev_get_uclass_priv(dev);
1286 return uc_priv->gpio_base + desc->offset;
1289 static int gpio_post_probe(struct udevice *dev)
1291 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
1293 uc_priv->name = calloc(uc_priv->gpio_count, sizeof(char *));
1297 return gpio_renumber(NULL);
1300 static int gpio_pre_remove(struct udevice *dev)
1302 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
1305 for (i = 0; i < uc_priv->gpio_count; i++) {
1306 if (uc_priv->name[i])
1307 free(uc_priv->name[i]);
1309 free(uc_priv->name);
1311 return gpio_renumber(dev);
1314 int gpio_dev_request_index(struct udevice *dev, const char *nodename,
1315 char *list_name, int index, int flags,
1316 int dtflags, struct gpio_desc *desc)
1318 struct ofnode_phandle_args args;
1320 args.node = ofnode_null();
1321 args.args_count = 2;
1322 args.args[0] = index;
1323 args.args[1] = dtflags;
1325 return gpio_request_tail(0, nodename, &args, list_name, index, desc,
1329 static void devm_gpiod_release(struct udevice *dev, void *res)
1331 dm_gpio_free(dev, res);
1334 static int devm_gpiod_match(struct udevice *dev, void *res, void *data)
1339 struct gpio_desc *devm_gpiod_get_index(struct udevice *dev, const char *id,
1340 unsigned int index, int flags)
1343 struct gpio_desc *desc;
1345 static const char suffix[] = "-gpios";
1347 propname = malloc(strlen(id) + sizeof(suffix));
1353 strcpy(propname, id);
1354 strcat(propname, suffix);
1356 desc = devres_alloc(devm_gpiod_release, sizeof(struct gpio_desc),
1358 if (unlikely(!desc)) {
1363 rc = gpio_request_by_name(dev, propname, index, desc, flags);
1372 devres_add(dev, desc);
1377 struct gpio_desc *devm_gpiod_get_index_optional(struct udevice *dev,
1382 struct gpio_desc *desc = devm_gpiod_get_index(dev, id, index, flags);
1390 void devm_gpiod_put(struct udevice *dev, struct gpio_desc *desc)
1394 rc = devres_release(dev, devm_gpiod_release, devm_gpiod_match, desc);
1398 static int gpio_post_bind(struct udevice *dev)
1400 struct udevice *child;
1403 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
1404 struct dm_gpio_ops *ops = (struct dm_gpio_ops *)device_get_ops(dev);
1405 static int reloc_done;
1409 ops->request += gd->reloc_off;
1411 ops->rfree += gd->reloc_off;
1412 if (ops->direction_input)
1413 ops->direction_input += gd->reloc_off;
1414 if (ops->direction_output)
1415 ops->direction_output += gd->reloc_off;
1417 ops->get_value += gd->reloc_off;
1419 ops->set_value += gd->reloc_off;
1420 if (ops->get_function)
1421 ops->get_function += gd->reloc_off;
1423 ops->xlate += gd->reloc_off;
1425 ops->set_flags += gd->reloc_off;
1427 ops->get_flags += gd->reloc_off;
1433 if (IS_ENABLED(CONFIG_GPIO_HOG)) {
1434 dev_for_each_subnode(node, dev) {
1435 if (ofnode_read_bool(node, "gpio-hog")) {
1436 const char *name = ofnode_get_name(node);
1439 ret = device_bind_driver_to_node(dev,
1451 UCLASS_DRIVER(gpio) = {
1454 .flags = DM_UC_FLAG_SEQ_ALIAS,
1455 .post_probe = gpio_post_probe,
1456 .post_bind = gpio_post_bind,
1457 .pre_remove = gpio_pre_remove,
1458 .per_device_auto = sizeof(struct gpio_dev_priv),