brcm47xx: fix nvram read out on devices with serial flash
authorHauke Mehrtens <hauke@hauke-m.de>
Fri, 18 May 2012 16:04:10 +0000 (16:04 +0000)
committerHauke Mehrtens <hauke@hauke-m.de>
Fri, 18 May 2012 16:04:10 +0000 (16:04 +0000)
detect nvram on Linksys E3200

SVN-Revision: 31790

target/linux/brcm47xx/patches-3.3/029-bcm47xx-read-nvram-from-sflash.patch
target/linux/brcm47xx/patches-3.3/030-bcm47xx-bcma-nandflash.patch
target/linux/brcm47xx/patches-3.3/197-MIPS-BCM47XX-return-number-of-written-bytes-in-nvram.patch
target/linux/brcm47xx/patches-3.3/400-arch-bcm47xx.patch
target/linux/brcm47xx/patches-3.3/820-wgt634u-nvram-fix.patch

index b3d13df39ff10ac762c0166724ac551a401161b9..1a994d9037bcafabeebd91760c1210714f636fb7 100644 (file)
@@ -24,7 +24,7 @@
                base = bcma_cc->pflash.window;
                lim = bcma_cc->pflash.window_size;
                break;
-@@ -86,7 +84,110 @@ found:
+@@ -86,7 +84,115 @@ found:
        for (i = 0; i < sizeof(struct nvram_header); i += 4)
                *dst++ = *src++;
        for (; i < header->len && i < NVRAM_SPACE; i += 4)
 +              *dst++ = *src++;
 +}
 +
-+static int early_nvram_init_sflash(void)
++static int find_nvram_size(void)
 +{
 +      struct nvram_header header;
++      int nvram_sizes[] = {NVRAM_SPACE, 0xF000, 2 * NVRAM_SPACE};
++      int i;
++      int ret;
++
++      for (i = 0; i < sizeof(nvram_sizes); i++) {
++              ret = bcm47xx_sflash.read(&bcm47xx_sflash, bcm47xx_sflash.size - nvram_sizes[i], sizeof(header), (u8 *)&header);
++              if (ret != sizeof(header))
++                      return ret;
++              if (header.magic == NVRAM_HEADER)
++                      return nvram_sizes[i];
++      }
++      return -1;
++}
++
++static int early_nvram_init_sflash(void)
++{
 +      u32 off;
 +      int ret;
 +      char *dst;
 +      int len;
++      int size;
 +
 +      /* check if the struct is already initilized */
 +      if (!bcm47xx_sflash.size)
 +              return -1;
 +
-+      off = FLASH_MIN;
-+      while (off <= bcm47xx_sflash.size) {
-+              ret = bcm47xx_sflash.read(&bcm47xx_sflash, off - NVRAM_SPACE, sizeof(header), (u8 *)&header);
-+              if (ret != sizeof(header))
-+                      return ret;
-+              if (header.magic == NVRAM_HEADER)
-+                      goto found;
-+              off <<= 1;
-+      }
++      size = find_nvram_size();
++      if (size <= 0)
++              return size;
 +
-+      off = FLASH_MIN;
-+      while (off <= bcm47xx_sflash.size) {
-+              ret = bcm47xx_sflash.read(&bcm47xx_sflash, off - (2 * NVRAM_SPACE), sizeof(header), (u8 *)&header);
-+              if (ret != sizeof(header))
-+                      return ret;
-+              if (header.magic == NVRAM_HEADER)
-+                      goto found;
-+              off <<= 1;
-+      }
-+      return -1;
-+
-+found:
 +      len = NVRAM_SPACE;
 +      dst = nvram_buf;
++      off = bcm47xx_sflash.size;
++      if (size > len) {
++              printk(KERN_WARNING "nvram on flash is bigger than the reserved"
++                     " space in memory, will just copy the first %i bytes\n",
++                     len);
++      }
 +      while (len) {
-+              ret = bcm47xx_sflash.read(&bcm47xx_sflash, off - (2 * NVRAM_SPACE), len, dst);
++              ret = bcm47xx_sflash.read(&bcm47xx_sflash, off - size, len, dst);
 +              if (ret < 0)
 +                      return ret;
 +              off += ret;
index 03dd321b16ce0841dc8c01c593ca2c2141db8062..00f3311a0d3b96f5f07db33e6c03732f2bcae0a2 100644 (file)
@@ -46,7 +46,7 @@
  
  static char nvram_buf[NVRAM_SPACE];
  
-@@ -134,6 +136,51 @@ found:
+@@ -139,6 +141,51 @@ static int early_nvram_init_sflash(void)
        return 0;
  }
  
@@ -64,7 +64,7 @@
 +      /* check if the struct is already initilized */
 +      if (!flash_size)
 +              return -1;
-+      
++
 +      cfe_env = 0;
 +
 +      off = FLASH_MIN;
@@ -98,7 +98,7 @@
  #ifdef CONFIG_BCM47XX_SSB
  static void early_nvram_init_ssb(void)
  {
-@@ -168,6 +215,11 @@ static void early_nvram_init_bcma(void)
+@@ -173,6 +220,11 @@ static void early_nvram_init_bcma(void)
                if (err < 0)
                        printk(KERN_WARNING "can not read from flash: %i\n", err);
                break;
index 4c4507c2dbaa6f063c8743eb226b53498fd33134..0a8c0a386fa1cdeee97d78660adc176a0133843e 100644 (file)
@@ -1,7 +1,7 @@
 
 --- a/arch/mips/bcm47xx/nvram.c
 +++ b/arch/mips/bcm47xx/nvram.c
-@@ -263,8 +263,7 @@ int nvram_getenv(char *name, char *val,
+@@ -268,8 +268,7 @@ int nvram_getenv(char *name, char *val,
                value = eq + 1;
                if ((eq - var) == strlen(name) &&
                        strncmp(var, name, (eq - var)) == 0) {
index 796a98aa82a2bd9906a3322e191392ce5a54a3e0..c3c7aea54148787ea7a96fd47b007eef3c8a3f4c 100644 (file)
@@ -1,6 +1,6 @@
 --- a/arch/mips/bcm47xx/nvram.c
 +++ b/arch/mips/bcm47xx/nvram.c
-@@ -269,3 +269,30 @@ int nvram_getenv(char *name, char *val,
+@@ -274,3 +274,30 @@ int nvram_getenv(char *name, char *val,
        return NVRAM_ERR_ENVNOTFOUND;
  }
  EXPORT_SYMBOL(nvram_getenv);
index baf339dca5b2c6169b5b192d715e41c4415eea18..933aad29665fcf2deb48b057d4e2baaa8cb8df4f 100644 (file)
@@ -280,7 +280,7 @@ out the configuration than the in kernel cfe config reader.
  
        off = FLASH_MIN;
        while (off <= lim) {
-@@ -252,6 +273,12 @@ int nvram_getenv(char *name, char *val,
+@@ -257,6 +278,12 @@ int nvram_getenv(char *name, char *val,
        if (!nvram_buf[0])
                early_nvram_init();
  
@@ -293,7 +293,7 @@ out the configuration than the in kernel cfe config reader.
        /* Look for name=value and return value */
        var = &nvram_buf[sizeof(struct nvram_header)];
        end = nvram_buf + sizeof(nvram_buf) - 2;
-@@ -280,6 +307,9 @@ char *nvram_get(const char *name)
+@@ -285,6 +312,9 @@ char *nvram_get(const char *name)
        if (!nvram_buf[0])
                early_nvram_init();