mtd: spinand: toshiba: Support for new Kioxia Serial NAND
[oweals/u-boot.git] / drivers / pinctrl / pinctrl_stm32.c
index 0e74d051c30475d2903a4acbcb7289c0a5a724de..fc241fdcdef9d89cc4bbb37b3f867eb7f8a2e868 100644 (file)
 #include <common.h>
 #include <dm.h>
-#include <dm/pinctrl.h>
+#include <hwspinlock.h>
+#include <log.h>
+#include <malloc.h>
 #include <asm/arch/gpio.h>
 #include <asm/gpio.h>
 #include <asm/io.h>
+#include <dm/device_compat.h>
+#include <dm/lists.h>
+#include <dm/pinctrl.h>
+#include <linux/bitops.h>
+#include <linux/err.h>
+#include <linux/libfdt.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#define MAX_PINS_ONE_IP                        70
 #define MODE_BITS_MASK                 3
 #define OSPEED_MASK                    3
 #define PUPD_MASK                      3
 #define OTYPE_MSK                      1
 #define AFR_MASK                       0xF
 
+struct stm32_pinctrl_priv {
+       struct hwspinlock hws;
+       int pinctrl_ngpios;
+       struct list_head gpio_dev;
+};
+
+struct stm32_gpio_bank {
+       struct udevice *gpio_dev;
+       struct list_head list;
+};
+
+#ifndef CONFIG_SPL_BUILD
+
+static char pin_name[PINNAME_SIZE];
+#define PINMUX_MODE_COUNT              5
+static const char * const pinmux_mode[PINMUX_MODE_COUNT] = {
+       "gpio input",
+       "gpio output",
+       "analog",
+       "unknown",
+       "alt function",
+};
+
+static int stm32_pinctrl_get_af(struct udevice *dev, unsigned int offset)
+{
+       struct stm32_gpio_priv *priv = dev_get_priv(dev);
+       struct stm32_gpio_regs *regs = priv->regs;
+       u32 af;
+       u32 alt_shift = (offset % 8) * 4;
+       u32 alt_index =  offset / 8;
+
+       af = (readl(&regs->afr[alt_index]) &
+             GENMASK(alt_shift + 3, alt_shift)) >> alt_shift;
+
+       return af;
+}
+
+static int stm32_populate_gpio_dev_list(struct udevice *dev)
+{
+       struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
+       struct udevice *gpio_dev;
+       struct udevice *child;
+       struct stm32_gpio_bank *gpio_bank;
+       int ret;
+
+       /*
+        * parse pin-controller sub-nodes (ie gpio bank nodes) and fill
+        * a list with all gpio device reference which belongs to the
+        * current pin-controller. This list is used to find pin_name and
+        * pin muxing
+        */
+       list_for_each_entry(child, &dev->child_head, sibling_node) {
+               ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
+                                               &gpio_dev);
+               if (ret < 0)
+                       continue;
+
+               gpio_bank = malloc(sizeof(*gpio_bank));
+               if (!gpio_bank) {
+                       dev_err(dev, "Not enough memory\n");
+                       return -ENOMEM;
+               }
+
+               gpio_bank->gpio_dev = gpio_dev;
+               list_add_tail(&gpio_bank->list, &priv->gpio_dev);
+       }
+
+       return 0;
+}
+
+static int stm32_pinctrl_get_pins_count(struct udevice *dev)
+{
+       struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
+       struct gpio_dev_priv *uc_priv;
+       struct stm32_gpio_bank *gpio_bank;
+
+       /*
+        * if get_pins_count has already been executed once on this
+        * pin-controller, no need to run it again
+        */
+       if (priv->pinctrl_ngpios)
+               return priv->pinctrl_ngpios;
+
+       if (list_empty(&priv->gpio_dev))
+               stm32_populate_gpio_dev_list(dev);
+       /*
+        * walk through all banks to retrieve the pin-controller
+        * pins number
+        */
+       list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
+               uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
+
+               priv->pinctrl_ngpios += uc_priv->gpio_count;
+       }
+
+       return priv->pinctrl_ngpios;
+}
+
+static struct udevice *stm32_pinctrl_get_gpio_dev(struct udevice *dev,
+                                                 unsigned int selector,
+                                                 unsigned int *idx)
+{
+       struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
+       struct stm32_gpio_bank *gpio_bank;
+       struct gpio_dev_priv *uc_priv;
+       int pin_count = 0;
+
+       if (list_empty(&priv->gpio_dev))
+               stm32_populate_gpio_dev_list(dev);
+
+       /* look up for the bank which owns the requested pin */
+       list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
+               uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
+
+               if (selector < (pin_count + uc_priv->gpio_count)) {
+                       /*
+                        * we found the bank, convert pin selector to
+                        * gpio bank index
+                        */
+                       *idx = stm32_offset_to_index(gpio_bank->gpio_dev,
+                                                    selector - pin_count);
+                       if (IS_ERR_VALUE(*idx))
+                               return NULL;
+
+                       return gpio_bank->gpio_dev;
+               }
+               pin_count += uc_priv->gpio_count;
+       }
+
+       return NULL;
+}
+
+static const char *stm32_pinctrl_get_pin_name(struct udevice *dev,
+                                             unsigned int selector)
+{
+       struct gpio_dev_priv *uc_priv;
+       struct udevice *gpio_dev;
+       unsigned int gpio_idx;
+
+       /* look up for the bank which owns the requested pin */
+       gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
+       if (!gpio_dev) {
+               snprintf(pin_name, PINNAME_SIZE, "Error");
+       } else {
+               uc_priv = dev_get_uclass_priv(gpio_dev);
+
+               snprintf(pin_name, PINNAME_SIZE, "%s%d",
+                        uc_priv->bank_name,
+                        gpio_idx);
+       }
+
+       return pin_name;
+}
+
+static int stm32_pinctrl_get_pin_muxing(struct udevice *dev,
+                                       unsigned int selector,
+                                       char *buf,
+                                       int size)
+{
+       struct udevice *gpio_dev;
+       const char *label;
+       int mode;
+       int af_num;
+       unsigned int gpio_idx;
+
+       /* look up for the bank which owns the requested pin */
+       gpio_dev = stm32_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
+
+       if (!gpio_dev)
+               return -ENODEV;
+
+       mode = gpio_get_raw_function(gpio_dev, gpio_idx, &label);
+
+       dev_dbg(dev, "selector = %d gpio_idx = %d mode = %d\n",
+               selector, gpio_idx, mode);
+
+
+       switch (mode) {
+       case GPIOF_UNKNOWN:
+               /* should never happen */
+               return -EINVAL;
+       case GPIOF_UNUSED:
+               snprintf(buf, size, "%s", pinmux_mode[mode]);
+               break;
+       case GPIOF_FUNC:
+               af_num = stm32_pinctrl_get_af(gpio_dev, gpio_idx);
+               snprintf(buf, size, "%s %d", pinmux_mode[mode], af_num);
+               break;
+       case GPIOF_OUTPUT:
+       case GPIOF_INPUT:
+               snprintf(buf, size, "%s %s",
+                        pinmux_mode[mode], label ? label : "");
+               break;
+       }
+
+       return 0;
+}
+
+#endif
+
+static int stm32_pinctrl_probe(struct udevice *dev)
+{
+       struct stm32_pinctrl_priv *priv = dev_get_priv(dev);
+       int ret;
+
+       INIT_LIST_HEAD(&priv->gpio_dev);
+
+       /* hwspinlock property is optional, just log the error */
+       ret = hwspinlock_get_by_index(dev, 0, &priv->hws);
+       if (ret)
+               debug("%s: hwspinlock_get_by_index may have failed (%d)\n",
+                     __func__, ret);
+
+       return 0;
+}
+
 static int stm32_gpio_config(struct gpio_desc *desc,
                             const struct stm32_gpio_ctl *ctl)
 {
        struct stm32_gpio_priv *priv = dev_get_priv(desc->dev);
        struct stm32_gpio_regs *regs = priv->regs;
+       struct stm32_pinctrl_priv *ctrl_priv;
+       int ret;
        u32 index;
 
        if (!ctl || ctl->af > 15 || ctl->mode > 3 || ctl->otype > 1 ||
            ctl->pupd > 2 || ctl->speed > 3)
                return -EINVAL;
 
+       ctrl_priv = dev_get_priv(dev_get_parent(desc->dev));
+       ret = hwspinlock_lock_timeout(&ctrl_priv->hws, 10);
+       if (ret == -ETIME) {
+               dev_err(desc->dev, "HWSpinlock timeout\n");
+               return ret;
+       }
+
        index = (desc->offset & 0x07) * 4;
        clrsetbits_le32(&regs->afr[desc->offset >> 3], AFR_MASK << index,
                        ctl->af << index);
@@ -38,11 +272,14 @@ static int stm32_gpio_config(struct gpio_desc *desc,
        index = desc->offset;
        clrsetbits_le32(&regs->otyper, OTYPE_MSK << index, ctl->otype << index);
 
+       hwspinlock_unlock(&ctrl_priv->hws);
+
        return 0;
 }
+
 static int prep_gpio_dsc(struct stm32_gpio_dsc *gpio_dsc, u32 port_pin)
 {
-       gpio_dsc->port = (port_pin & 0xF000) >> 12;
+       gpio_dsc->port = (port_pin & 0x1F000) >> 12;
        gpio_dsc->pin = (port_pin & 0x0F00) >> 8;
        debug("%s: GPIO:port= %d, pin= %d\n", __func__, gpio_dsc->port,
              gpio_dsc->pin);
@@ -92,40 +329,39 @@ static int prep_gpio_ctl(struct stm32_gpio_ctl *gpio_ctl, u32 gpio_fn, int node)
        return 0;
 }
 
-static int stm32_pinctrl_set_state_simple(struct udevice *dev,
-                                         struct udevice *periph)
+static int stm32_pinctrl_config(int offset)
 {
-       u32 pin_mux[50];
-       struct fdtdec_phandle_args args;
+       u32 pin_mux[MAX_PINS_ONE_IP];
        int rv, len;
 
-       /* Get node pinctrl-0 */
-       rv = fdtdec_parse_phandle_with_args(gd->fdt_blob, periph->of_offset,
-                                          "pinctrl-0", 0, 0, 0, &args);
-       if (rv)
-               return rv;
        /*
         * check for "pinmux" property in each subnode (e.g. pins1 and pins2 for
         * usart1) of pin controller phandle "pinctrl-0"
         * */
-       fdt_for_each_subnode(args.node, gd->fdt_blob, args.node) {
+       fdt_for_each_subnode(offset, gd->fdt_blob, offset) {
                struct stm32_gpio_dsc gpio_dsc;
                struct stm32_gpio_ctl gpio_ctl;
                int i;
 
-               len = fdtdec_get_int_array_count(gd->fdt_blob, args.node,
+               len = fdtdec_get_int_array_count(gd->fdt_blob, offset,
                                                 "pinmux", pin_mux,
                                                 ARRAY_SIZE(pin_mux));
-               debug("%s: periph->name = %s, no of pinmux entries= %d\n",
-                     __func__, periph->name, len);
+               debug("%s: no of pinmux entries= %d\n", __func__, len);
                if (len < 0)
                        return -EINVAL;
                for (i = 0; i < len; i++) {
+                       struct gpio_desc desc;
+
                        debug("%s: pinmux = %x\n", __func__, *(pin_mux + i));
                        prep_gpio_dsc(&gpio_dsc, *(pin_mux + i));
-                       prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), args.node);
-
-                       rv = stm32_gpio_config(&gpio_dsc, &gpio_ctl);
+                       prep_gpio_ctl(&gpio_ctl, *(pin_mux + i), offset);
+                       rv = uclass_get_device_by_seq(UCLASS_GPIO,
+                                                     gpio_dsc.port,
+                                                     &desc.dev);
+                       if (rv)
+                               return rv;
+                       desc.offset = gpio_dsc.pin;
+                       rv = stm32_gpio_config(&desc, &gpio_ctl);
                        debug("%s: rv = %d\n\n", __func__, rv);
                        if (rv)
                                return rv;
@@ -135,19 +371,105 @@ static int stm32_pinctrl_set_state_simple(struct udevice *dev,
        return 0;
 }
 
+static int stm32_pinctrl_bind(struct udevice *dev)
+{
+       ofnode node;
+       const char *name;
+       int ret;
+
+       dev_for_each_subnode(node, dev) {
+               debug("%s: bind %s\n", __func__, ofnode_get_name(node));
+
+               ofnode_get_property(node, "gpio-controller", &ret);
+               if (ret < 0)
+                       continue;
+               /* Get the name of each gpio node */
+               name = ofnode_get_name(node);
+               if (!name)
+                       return -EINVAL;
+
+               /* Bind each gpio node */
+               ret = device_bind_driver_to_node(dev, "gpio_stm32",
+                                                name, node, NULL);
+               if (ret)
+                       return ret;
+
+               debug("%s: bind %s\n", __func__, name);
+       }
+
+       return 0;
+}
+
+#if CONFIG_IS_ENABLED(PINCTRL_FULL)
+static int stm32_pinctrl_set_state(struct udevice *dev, struct udevice *config)
+{
+       return stm32_pinctrl_config(dev_of_offset(config));
+}
+#else /* PINCTRL_FULL */
+static int stm32_pinctrl_set_state_simple(struct udevice *dev,
+                                         struct udevice *periph)
+{
+       const void *fdt = gd->fdt_blob;
+       const fdt32_t *list;
+       uint32_t phandle;
+       int config_node;
+       int size, i, ret;
+
+       list = fdt_getprop(fdt, dev_of_offset(periph), "pinctrl-0", &size);
+       if (!list)
+               return -EINVAL;
+
+       debug("%s: periph->name = %s\n", __func__, periph->name);
+
+       size /= sizeof(*list);
+       for (i = 0; i < size; i++) {
+               phandle = fdt32_to_cpu(*list++);
+
+               config_node = fdt_node_offset_by_phandle(fdt, phandle);
+               if (config_node < 0) {
+                       pr_err("prop pinctrl-0 index %d invalid phandle\n", i);
+                       return -EINVAL;
+               }
+
+               ret = stm32_pinctrl_config(config_node);
+               if (ret)
+                       return ret;
+       }
+
+       return 0;
+}
+#endif /* PINCTRL_FULL */
+
 static struct pinctrl_ops stm32_pinctrl_ops = {
+#if CONFIG_IS_ENABLED(PINCTRL_FULL)
+       .set_state              = stm32_pinctrl_set_state,
+#else /* PINCTRL_FULL */
        .set_state_simple       = stm32_pinctrl_set_state_simple,
+#endif /* PINCTRL_FULL */
+#ifndef CONFIG_SPL_BUILD
+       .get_pin_name           = stm32_pinctrl_get_pin_name,
+       .get_pins_count         = stm32_pinctrl_get_pins_count,
+       .get_pin_muxing         = stm32_pinctrl_get_pin_muxing,
+#endif
 };
 
 static const struct udevice_id stm32_pinctrl_ids[] = {
+       { .compatible = "st,stm32f429-pinctrl" },
+       { .compatible = "st,stm32f469-pinctrl" },
        { .compatible = "st,stm32f746-pinctrl" },
+       { .compatible = "st,stm32f769-pinctrl" },
+       { .compatible = "st,stm32h743-pinctrl" },
+       { .compatible = "st,stm32mp157-pinctrl" },
+       { .compatible = "st,stm32mp157-z-pinctrl" },
        { }
 };
 
 U_BOOT_DRIVER(pinctrl_stm32) = {
-       .name           = "pinctrl_stm32",
-       .id             = UCLASS_PINCTRL,
-       .of_match       = stm32_pinctrl_ids,
-       .ops            = &stm32_pinctrl_ops,
-       .bind           = dm_scan_fdt_dev,
+       .name                   = "pinctrl_stm32",
+       .id                     = UCLASS_PINCTRL,
+       .of_match               = stm32_pinctrl_ids,
+       .ops                    = &stm32_pinctrl_ops,
+       .bind                   = stm32_pinctrl_bind,
+       .probe                  = stm32_pinctrl_probe,
+       .priv_auto_alloc_size   = sizeof(struct stm32_pinctrl_priv),
 };