blob: 5b0f7cd4ec5bb01d7d641d232b2d1c63a90cd92a [file] [log] [blame]
wdenkfe57bb12002-09-18 13:23:15 +00001/*
2 * (C) Copyright 2001
3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
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.
12 *
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.
17 *
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,
21 * MA 02111-1307 USA
22 */
23
24#include <stdio.h>
Mike Frysinger89cdab72008-03-31 11:02:01 -040025#include <stdint.h>
wdenkfe57bb12002-09-18 13:23:15 +000026#include <stdlib.h>
Mike Frysinger837db3d2009-05-06 08:41:45 -040027#include <string.h>
wdenkfe57bb12002-09-18 13:23:15 +000028#include <unistd.h>
29
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020030#ifndef __ASSEMBLY__
31#define __ASSEMBLY__ /* Dirty trick to get only #defines */
32#endif
33#define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
wdenkfe57bb12002-09-18 13:23:15 +000034#include <config.h>
35#undef __ASSEMBLY__
36
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020037#if defined(CONFIG_ENV_IS_IN_FLASH)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020038# ifndef CONFIG_ENV_ADDR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020039# define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
wdenkfe57bb12002-09-18 13:23:15 +000040# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020041# ifndef CONFIG_ENV_OFFSET
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
wdenkfe57bb12002-09-18 13:23:15 +000043# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020044# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045# define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
wdenk43d96162003-03-06 00:02:04 +000046# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020047# ifndef CONFIG_ENV_SIZE
48# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
wdenkfe57bb12002-09-18 13:23:15 +000049# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020050# if defined(CONFIG_ENV_ADDR_REDUND) && !defined(CONFIG_ENV_SIZE_REDUND)
51# define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
wdenk43d96162003-03-06 00:02:04 +000052# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
54 ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
wdenk43d96162003-03-06 00:02:04 +000055# define ENV_IS_EMBEDDED 1
56# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020057# if defined(CONFIG_ENV_ADDR_REDUND) || defined(CONFIG_ENV_OFFSET_REDUND)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058# define CONFIG_SYS_REDUNDAND_ENVIRONMENT 1
wdenkfe57bb12002-09-18 13:23:15 +000059# endif
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020060#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkfe57bb12002-09-18 13:23:15 +000061
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020062#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -040063# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenk43d96162003-03-06 00:02:04 +000064#else
Mike Frysinger89cdab72008-03-31 11:02:01 -040065# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenk43d96162003-03-06 00:02:04 +000066#endif
67
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020068#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenk43d96162003-03-06 00:02:04 +000069
70
Mike Frysinger89cdab72008-03-31 11:02:01 -040071extern uint32_t crc32 (uint32_t, const unsigned char *, unsigned int);
wdenkfe57bb12002-09-18 13:23:15 +000072
73#ifdef ENV_IS_EMBEDDED
74extern unsigned int env_size;
75extern unsigned char environment;
76#endif /* ENV_IS_EMBEDDED */
77
78int main (int argc, char **argv)
79{
80#ifdef ENV_IS_EMBEDDED
Mike Frysinger837db3d2009-05-06 08:41:45 -040081 unsigned char pad = 0x00;
Mike Frysinger89cdab72008-03-31 11:02:01 -040082 uint32_t crc;
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020083 unsigned char *envptr = &environment,
84 *dataptr = envptr + ENV_HEADER_SIZE;
85 unsigned int datasize = ENV_SIZE;
Mike Frysinger837db3d2009-05-06 08:41:45 -040086 unsigned int eoe;
87
88 if (argv[1] && !strncmp(argv[1], "--binary", 8)) {
89 int ipad = 0xff;
90 if (argv[1][8] == '=')
91 sscanf(argv[1] + 9, "%i", &ipad);
92 pad = ipad;
93 }
94
95 if (pad) {
96 /* find the end of env */
97 for (eoe = 0; eoe < datasize - 1; ++eoe)
98 if (!dataptr[eoe] && !dataptr[eoe+1]) {
99 eoe += 2;
100 break;
101 }
102 if (eoe < datasize - 1)
103 memset(dataptr + eoe, pad, datasize - eoe);
104 }
wdenkfe57bb12002-09-18 13:23:15 +0000105
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200106 crc = crc32 (0, dataptr, datasize);
wdenkfe57bb12002-09-18 13:23:15 +0000107
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200108 /* Check if verbose mode is activated passing a parameter to the program */
109 if (argc > 1) {
Mike Frysinger837db3d2009-05-06 08:41:45 -0400110 if (!strncmp(argv[1], "--binary", 8)) {
111 int le = (argc > 2 ? !strcmp(argv[2], "le") : 1);
112 size_t i, start, end, step;
113 if (le) {
114 start = 0;
115 end = ENV_HEADER_SIZE;
116 step = 1;
117 } else {
118 start = ENV_HEADER_SIZE - 1;
119 end = -1;
120 step = -1;
121 }
122 for (i = start; i != end; i += step)
123 printf("%c", (crc & (0xFF << (i * 8))) >> (i * 8));
124 fwrite(dataptr, 1, datasize, stdout);
125 } else {
126 printf("CRC32 from offset %08X to %08X of environment = %08X\n",
127 (unsigned int) (dataptr - envptr),
128 (unsigned int) (dataptr - envptr) + datasize,
129 crc);
130 }
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200131 } else {
132 printf ("0x%08X\n", crc);
133 }
wdenkfe57bb12002-09-18 13:23:15 +0000134#else
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200135 printf ("0\n");
wdenkfe57bb12002-09-18 13:23:15 +0000136#endif
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200137 return EXIT_SUCCESS;
wdenkfe57bb12002-09-18 13:23:15 +0000138}