1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * BCM947xx nvram variable access
5 * Copyright (C) 2005 Broadcom Corporation
6 * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
7 * Copyright (C) 2010-2012 Hauke Mehrtens <hauke@hauke-m.de>
11 #include <linux/types.h>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/string.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/bcm47xx_nvram.h>
18 #define NVRAM_MAGIC 0x48534C46 /* 'FLSH' */
19 #define NVRAM_SPACE 0x10000
20 #define NVRAM_MAX_GPIO_ENTRIES 32
21 #define NVRAM_MAX_GPIO_VALUE_LEN 30
23 #define FLASH_MIN 0x00020000 /* Minimum flash size */
28 u32 crc_ver_init
; /* 0:7 crc, 8:15 ver, 16:31 sdram_init */
29 u32 config_refresh
; /* 0:15 sdram_config, 16:31 sdram_refresh */
30 u32 config_ncdl
; /* ncdl values for memc */
33 static char nvram_buf
[NVRAM_SPACE
];
34 static size_t nvram_len
;
35 static const u32 nvram_sizes
[] = {0x6000, 0x8000, 0xF000, 0x10000};
38 * bcm47xx_nvram_is_valid - check for a valid NVRAM at specified memory
40 static bool bcm47xx_nvram_is_valid(void __iomem
*nvram
)
42 return ((struct nvram_header
*)nvram
)->magic
== NVRAM_MAGIC
;
46 * bcm47xx_nvram_copy - copy NVRAM to internal buffer
48 static void bcm47xx_nvram_copy(void __iomem
*nvram_start
, size_t res_size
)
50 struct nvram_header __iomem
*header
= nvram_start
;
53 copy_size
= header
->len
;
54 if (copy_size
> res_size
) {
55 pr_err("The nvram size according to the header seems to be bigger than the partition on flash\n");
58 if (copy_size
>= NVRAM_SPACE
) {
59 pr_err("nvram on flash (%zu bytes) is bigger than the reserved space in memory, will just copy the first %i bytes\n",
60 copy_size
, NVRAM_SPACE
- 1);
61 copy_size
= NVRAM_SPACE
- 1;
64 __ioread32_copy(nvram_buf
, nvram_start
, DIV_ROUND_UP(copy_size
, 4));
65 nvram_buf
[NVRAM_SPACE
- 1] = '\0';
66 nvram_len
= copy_size
;
70 * bcm47xx_nvram_find_and_copy - find NVRAM on flash mapping & copy it
72 static int bcm47xx_nvram_find_and_copy(void __iomem
*flash_start
, size_t res_size
)
79 pr_warn("nvram already initialized\n");
83 /* TODO: when nvram is on nand flash check for bad blocks first. */
85 /* Try every possible flash size and check for NVRAM at its end */
86 for (flash_size
= FLASH_MIN
; flash_size
<= res_size
; flash_size
<<= 1) {
87 for (i
= 0; i
< ARRAY_SIZE(nvram_sizes
); i
++) {
88 offset
= flash_size
- nvram_sizes
[i
];
89 if (bcm47xx_nvram_is_valid(flash_start
+ offset
))
94 /* Try embedded NVRAM at 4 KB and 1 KB as last resorts */
97 if (bcm47xx_nvram_is_valid(flash_start
+ offset
))
101 if (bcm47xx_nvram_is_valid(flash_start
+ offset
))
104 pr_err("no nvram found\n");
108 bcm47xx_nvram_copy(flash_start
+ offset
, res_size
- offset
);
113 int bcm47xx_nvram_init_from_iomem(void __iomem
*nvram_start
, size_t res_size
)
116 pr_warn("nvram already initialized\n");
120 if (!bcm47xx_nvram_is_valid(nvram_start
)) {
121 pr_err("No valid NVRAM found\n");
125 bcm47xx_nvram_copy(nvram_start
, res_size
);
129 EXPORT_SYMBOL_GPL(bcm47xx_nvram_init_from_iomem
);
132 * On bcm47xx we need access to the NVRAM very early, so we can't use mtd
133 * subsystem to access flash. We can't even use platform device / driver to
134 * store memory offset.
135 * To handle this we provide following symbol. It's supposed to be called as
136 * soon as we get info about flash device, before any NVRAM entry is needed.
138 int bcm47xx_nvram_init_from_mem(u32 base
, u32 lim
)
140 void __iomem
*iobase
;
143 iobase
= ioremap(base
, lim
);
147 err
= bcm47xx_nvram_find_and_copy(iobase
, lim
);
154 static int nvram_init(void)
157 struct mtd_info
*mtd
;
158 struct nvram_header header
;
162 mtd
= get_mtd_device_nm("nvram");
166 err
= mtd_read(mtd
, 0, sizeof(header
), &bytes_read
, (uint8_t *)&header
);
167 if (!err
&& header
.magic
== NVRAM_MAGIC
&&
168 header
.len
> sizeof(header
)) {
169 nvram_len
= header
.len
;
170 if (nvram_len
>= NVRAM_SPACE
) {
171 pr_err("nvram on flash (%zu bytes) is bigger than the reserved space in memory, will just copy the first %i bytes\n",
172 nvram_len
, NVRAM_SPACE
);
173 nvram_len
= NVRAM_SPACE
- 1;
176 err
= mtd_read(mtd
, 0, nvram_len
, &nvram_len
,
185 int bcm47xx_nvram_getenv(const char *name
, char *val
, size_t val_len
)
187 char *var
, *value
, *end
, *eq
;
199 /* Look for name=value and return value */
200 var
= &nvram_buf
[sizeof(struct nvram_header
)];
201 end
= nvram_buf
+ sizeof(nvram_buf
);
202 while (var
< end
&& *var
) {
203 eq
= strchr(var
, '=');
207 if (eq
- var
== strlen(name
) &&
208 strncmp(var
, name
, eq
- var
) == 0)
209 return snprintf(val
, val_len
, "%s", value
);
210 var
= value
+ strlen(value
) + 1;
214 EXPORT_SYMBOL(bcm47xx_nvram_getenv
);
216 int bcm47xx_nvram_gpio_pin(const char *name
)
219 char nvram_var
[] = "gpioXX";
220 char buf
[NVRAM_MAX_GPIO_VALUE_LEN
];
222 /* TODO: Optimize it to don't call getenv so many times */
223 for (i
= 0; i
< NVRAM_MAX_GPIO_ENTRIES
; i
++) {
224 err
= snprintf(nvram_var
, sizeof(nvram_var
), "gpio%i", i
);
227 err
= bcm47xx_nvram_getenv(nvram_var
, buf
, sizeof(buf
));
230 if (!strcmp(name
, buf
))
235 EXPORT_SYMBOL(bcm47xx_nvram_gpio_pin
);
237 char *bcm47xx_nvram_get_contents(size_t *nvram_size
)
248 *nvram_size
= nvram_len
- sizeof(struct nvram_header
);
249 nvram
= vmalloc(*nvram_size
);
252 memcpy(nvram
, &nvram_buf
[sizeof(struct nvram_header
)], *nvram_size
);
256 EXPORT_SYMBOL(bcm47xx_nvram_get_contents
);