1 The Netgear wgt634u uses a different format for storing the
2 configuration. This patch is needed to read out the correct
3 configuration. The cfe_env.c file uses a different method way to read
4 out the configuration than the in kernel cfe config reader.
6 --- a/arch/mips/bcm47xx/Makefile
7 +++ b/arch/mips/bcm47xx/Makefile
12 -obj-y += gpio.o irq.o nvram.o prom.o serial.o setup.o time.o bus.o sprom.o
13 +obj-y += gpio.o irq.o nvram.o prom.o serial.o setup.o time.o bus.o sprom.o cfe_env.o
15 +++ b/arch/mips/bcm47xx/cfe_env.c
18 + * CFE environment variable access
20 + * Copyright 2001-2003, Broadcom Corporation
21 + * Copyright 2006, Felix Fietkau <nbd@openwrt.org>
23 + * This program is free software; you can redistribute it and/or modify it
24 + * under the terms of the GNU General Public License as published by the
25 + * Free Software Foundation; either version 2 of the License, or (at your
26 + * option) any later version.
29 +#include <linux/init.h>
30 +#include <linux/module.h>
31 +#include <linux/kernel.h>
32 +#include <linux/string.h>
34 +#include <asm/uaccess.h>
36 +#define NVRAM_SIZE (0x1ff0)
37 +static char _nvdata[NVRAM_SIZE];
38 +static char _valuestr[256];
41 + * TLV types. These codes are used in the "type-length-value"
42 + * encoding of the items stored in the NVRAM device (flash or EEPROM)
44 + * The layout of the flash/nvram is as follows:
46 + * <type> <length> <data ...> <type> <length> <data ...> <type_end>
48 + * The type code of "ENV_TLV_TYPE_END" marks the end of the list.
49 + * The "length" field marks the length of the data section, not
50 + * including the type and length fields.
52 + * Environment variables are stored as follows:
54 + * <type_env> <length> <flags> <name> = <value>
56 + * If bit 0 (low bit) is set, the length is an 8-bit value.
57 + * If bit 0 (low bit) is clear, the length is a 16-bit value
59 + * Bit 7 set indicates "user" TLVs. In this case, bit 0 still
60 + * indicates the size of the length field.
62 + * Flags are from the constants below:
65 +#define ENV_LENGTH_16BITS 0x00 /* for low bit */
66 +#define ENV_LENGTH_8BITS 0x01
68 +#define ENV_TYPE_USER 0x80
70 +#define ENV_CODE_SYS(n,l) (((n)<<1)|(l))
71 +#define ENV_CODE_USER(n,l) ((((n)<<1)|(l)) | ENV_TYPE_USER)
74 + * The actual TLV types we support
77 +#define ENV_TLV_TYPE_END 0x00
78 +#define ENV_TLV_TYPE_ENV ENV_CODE_SYS(0,ENV_LENGTH_8BITS)
81 + * Environment variable flags
84 +#define ENV_FLG_NORMAL 0x00 /* normal read/write */
85 +#define ENV_FLG_BUILTIN 0x01 /* builtin - not stored in flash */
86 +#define ENV_FLG_READONLY 0x02 /* read-only - cannot be changed */
88 +#define ENV_FLG_MASK 0xFF /* mask of attributes we keep */
89 +#define ENV_FLG_ADMIN 0x100 /* lets us internally override permissions */
92 +/* *********************************************************************
93 + * _nvram_read(buffer,offset,length)
95 + * Read data from the NVRAM device
98 + * buffer - destination buffer
99 + * offset - offset of data to read
100 + * length - number of bytes to read
103 + * number of bytes read, or <0 if error occured
104 + ********************************************************************* */
106 +_nvram_read(unsigned char *nv_buf, unsigned char *buffer, int offset, int length)
109 + if (offset > NVRAM_SIZE)
112 + for ( i = 0; i < length; i++) {
113 + buffer[i] = ((volatile unsigned char*)nv_buf)[offset + i];
120 +_strnchr(const char *dest,int c,size_t cnt)
122 + while (*dest && (cnt > 0)) {
123 + if (*dest == c) return (char *) dest;
133 + * Core support API: Externally visible.
137 + * Get the value of an NVRAM variable
138 + * @param name name of variable to get
139 + * @return value of variable or NULL if undefined
143 +cfe_env_get(unsigned char *nv_buf, char* name)
146 + unsigned char *buffer;
147 + unsigned char *ptr;
148 + unsigned char *envval;
149 + unsigned int reclen;
150 + unsigned int rectype;
154 + if (!strcmp(name, "nvram_type"))
158 + buffer = &_nvdata[0];
163 + /* Read the record type and length */
164 + if (_nvram_read(nv_buf, ptr,offset,1) != 1) {
168 + while ((*ptr != ENV_TLV_TYPE_END) && (size > 1)) {
170 + /* Adjust pointer for TLV type */
176 + * Read the length. It can be either 1 or 2 bytes
177 + * depending on the code
179 + if (rectype & ENV_LENGTH_8BITS) {
180 + /* Read the record type and length - 8 bits */
181 + if (_nvram_read(nv_buf, ptr,offset,1) != 1) {
189 + /* Read the record type and length - 16 bits, MSB first */
190 + if (_nvram_read(nv_buf, ptr,offset,2) != 2) {
193 + reclen = (((unsigned int) *(ptr)) << 8) + (unsigned int) *(ptr+1);
199 + break; /* should not happen, bad NVRAM */
202 + case ENV_TLV_TYPE_ENV:
203 + /* Read the TLV data */
204 + if (_nvram_read(nv_buf, ptr,offset,reclen) != reclen)
207 + envval = (unsigned char *) _strnchr(ptr,'=',(reclen-1));
210 + memcpy(_valuestr,envval,(reclen-1)-(envval-ptr));
211 + _valuestr[(reclen-1)-(envval-ptr)] = '\0';
213 + printk(KERN_INFO "NVRAM:%s=%s\n", ptr, _valuestr);
215 + if(!strcmp(ptr, name)){
218 + if((strlen(ptr) > 1) && !strcmp(&ptr[1], name))
224 + /* Unknown TLV type, skip it. */
229 + * Advance to next TLV
232 + size -= (int)reclen;
235 + /* Read the next record type */
237 + if (_nvram_read(nv_buf, ptr,offset,1) != 1)
246 --- a/arch/mips/bcm47xx/nvram.c
247 +++ b/arch/mips/bcm47xx/nvram.c
249 #include <asm/mach-bcm47xx/bus.h>
251 static char nvram_buf[NVRAM_SPACE];
253 +extern char *cfe_env_get(char *nv_buf, const char *name);
255 /* Probe for NVRAM header */
256 static void early_nvram_init_pflash(void)
257 @@ -59,6 +61,25 @@ static void early_nvram_init_pflash(void
263 + /* XXX: hack for supporting the CFE environment stuff on WGT634U */
264 + if (lim >= 8 * 1024 * 1024) {
265 + src = (u32 *) KSEG1ADDR(base + 8 * 1024 * 1024 - 0x2000);
266 + dst = (u32 *) nvram_buf;
268 + if ((*src & 0xff00ff) == 0x000001) {
269 + printk("early_nvram_init: WGT634U NVRAM found.\n");
271 + for (i = 0; i < 0x1ff0; i++) {
272 + if (*src == 0xFFFFFFFF)
283 @@ -181,6 +202,12 @@ int nvram_getenv(char *name, char *val,
288 + value = cfe_env_get(nvram_buf, name);
289 + snprintf(val, val_len, "%s", value);
293 /* Look for name=value and return value */
294 var = &nvram_buf[sizeof(struct nvram_header)];
295 end = nvram_buf + sizeof(nvram_buf) - 2;
296 @@ -209,6 +236,9 @@ char *nvram_get(const char *name)
301 + return cfe_env_get(nvram_buf, name);
303 /* Look for name=value and return value */
304 var = &nvram_buf[sizeof(struct nvram_header)];
305 end = nvram_buf + sizeof(nvram_buf) - 2;