5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #define __ASSEMBLY__ /* Dirty trick to get only #defines */
34 #define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
38 #if defined(CONFIG_ENV_IS_IN_FLASH)
39 # ifndef CONFIG_ENV_ADDR
40 # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
42 # ifndef CONFIG_ENV_OFFSET
43 # define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
45 # if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
46 # define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
48 # ifndef CONFIG_ENV_SIZE
49 # define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
51 # if defined(CONFIG_ENV_ADDR_REDUND) && !defined(CONFIG_ENV_SIZE_REDUND)
52 # define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
54 # if defined(CONFIG_ENV_ADDR_REDUND) || defined(CONFIG_ENV_OFFSET_REDUND)
55 # define CONFIG_SYS_REDUNDAND_ENVIRONMENT 1
57 #endif /* CONFIG_ENV_IS_IN_FLASH */
59 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
60 # define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
62 # define ENV_HEADER_SIZE (sizeof(uint32_t))
65 #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
68 extern uint32_t crc32 (uint32_t, const unsigned char *, unsigned int);
70 extern unsigned int env_size;
71 extern unsigned char environment;
73 int main (int argc, char **argv)
75 unsigned char pad = 0x00;
77 unsigned char *envptr = &environment,
78 *dataptr = envptr + ENV_HEADER_SIZE;
79 unsigned int datasize = ENV_SIZE;
82 if (argv[1] && !strncmp(argv[1], "--binary", 8)) {
84 if (argv[1][8] == '=')
85 sscanf(argv[1] + 9, "%i", &ipad);
90 /* find the end of env */
91 for (eoe = 0; eoe < datasize - 1; ++eoe)
92 if (!dataptr[eoe] && !dataptr[eoe+1]) {
96 if (eoe < datasize - 1)
97 memset(dataptr + eoe, pad, datasize - eoe);
100 crc = crc32 (0, dataptr, datasize);
102 /* Check if verbose mode is activated passing a parameter to the program */
104 if (!strncmp(argv[1], "--binary", 8)) {
105 int le = (argc > 2 ? !strcmp(argv[2], "le") : 1);
106 size_t i, start, end, step;
109 end = ENV_HEADER_SIZE;
112 start = ENV_HEADER_SIZE - 1;
116 for (i = start; i != end; i += step)
117 printf("%c", (crc & (0xFF << (i * 8))) >> (i * 8));
118 if (fwrite(dataptr, 1, datasize, stdout) != datasize)
119 fprintf(stderr, "fwrite() failed: %s\n", strerror(errno));
121 printf("CRC32 from offset %08X to %08X of environment = %08X\n",
122 (unsigned int) (dataptr - envptr),
123 (unsigned int) (dataptr - envptr) + datasize,
127 printf ("0x%08X\n", crc);