firmware/nvram: bcm47xx: support init from IO memory
authorRafał Miłecki <rafal@milecki.pl>
Thu, 3 Nov 2022 08:25:29 +0000 (09:25 +0100)
committerFlorian Fainelli <f.fainelli@gmail.com>
Wed, 9 Nov 2022 18:27:10 +0000 (10:27 -0800)
Provide NVMEM content to the NVRAM driver from a simple
memory resource. This is necessary to use NVRAM in a memory-
mapped flash device. Patch taken from OpenWrts development
tree.

This patch makes it possible to use memory-mapped NVRAM
on the D-Link DWL-8610AP and the D-Link DIR-890L.

Cc: Hauke Mehrtens <hauke@hauke-m.de>
Cc: linux-mips@vger.kernel.org
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: bcm-kernel-feedback-list@broadcom.com
Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
[Added an export for modules potentially using the init symbol]
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20221103082529.359084-1-linus.walleij@linaro.org
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
drivers/firmware/broadcom/bcm47xx_nvram.c
drivers/nvmem/brcm_nvram.c
include/linux/bcm47xx_nvram.h

index bd235833b687563930bec8ceb3cf3af1495b84ea..5f47dbf4889a22c91cda031d6b13a8ad3d90beb5 100644 (file)
@@ -110,6 +110,24 @@ found:
        return 0;
 }
 
+int bcm47xx_nvram_init_from_iomem(void __iomem *nvram_start, size_t res_size)
+{
+       if (nvram_len) {
+               pr_warn("nvram already initialized\n");
+               return -EEXIST;
+       }
+
+       if (!bcm47xx_nvram_is_valid(nvram_start)) {
+               pr_err("No valid NVRAM found\n");
+               return -ENOENT;
+       }
+
+       bcm47xx_nvram_copy(nvram_start, res_size);
+
+       return 0;
+}
+EXPORT_SYMBOL_GPL(bcm47xx_nvram_init_from_iomem);
+
 /*
  * On bcm47xx we need access to the NVRAM very early, so we can't use mtd
  * subsystem to access flash. We can't even use platform device / driver to
index 4441daa2096517a6d2bb421871e1ef0eb1250057..34130449f2d28c27dc3b2e23d9f39a43ce62c3bc 100644 (file)
@@ -3,6 +3,7 @@
  * Copyright (C) 2021 Rafał Miłecki <rafal@milecki.pl>
  */
 
+#include <linux/bcm47xx_nvram.h>
 #include <linux/io.h>
 #include <linux/mod_devicetable.h>
 #include <linux/module.h>
@@ -136,6 +137,8 @@ static int brcm_nvram_probe(struct platform_device *pdev)
        if (err)
                return err;
 
+       bcm47xx_nvram_init_from_iomem(priv->base, resource_size(res));
+
        config.dev = dev;
        config.cells = priv->cells;
        config.ncells = priv->ncells;
index 53b31f69b74a304be8069e67a016fd04c348103c..7615f8d7b1edc86b98da0c87f6844728799d2388 100644 (file)
@@ -11,6 +11,7 @@
 #include <linux/vmalloc.h>
 
 #ifdef CONFIG_BCM47XX_NVRAM
+int bcm47xx_nvram_init_from_iomem(void __iomem *nvram_start, size_t res_size);
 int bcm47xx_nvram_init_from_mem(u32 base, u32 lim);
 int bcm47xx_nvram_getenv(const char *name, char *val, size_t val_len);
 int bcm47xx_nvram_gpio_pin(const char *name);
@@ -20,6 +21,11 @@ static inline void bcm47xx_nvram_release_contents(char *nvram)
        vfree(nvram);
 };
 #else
+static inline int bcm47xx_nvram_init_from_iomem(void __iomem *nvram_start,
+                                               size_t res_size)
+{
+       return -ENOTSUPP;
+}
 static inline int bcm47xx_nvram_init_from_mem(u32 base, u32 lim)
 {
        return -ENOTSUPP;