blob: 4334cdf746d987378ff5a780d64b347612871856 [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>
27#include <unistd.h>
28
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020029#ifndef __ASSEMBLY__
30#define __ASSEMBLY__ /* Dirty trick to get only #defines */
31#endif
32#define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
wdenkfe57bb12002-09-18 13:23:15 +000033#include <config.h>
34#undef __ASSEMBLY__
35
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020036#if defined(CONFIG_ENV_IS_IN_FLASH)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020037# ifndef CONFIG_ENV_ADDR
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038# define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
wdenkfe57bb12002-09-18 13:23:15 +000039# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020040# ifndef CONFIG_ENV_OFFSET
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
wdenkfe57bb12002-09-18 13:23:15 +000042# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020043# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044# define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
wdenk43d96162003-03-06 00:02:04 +000045# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020046# ifndef CONFIG_ENV_SIZE
47# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
wdenkfe57bb12002-09-18 13:23:15 +000048# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020049# if defined(CONFIG_ENV_ADDR_REDUND) && !defined(CONFIG_ENV_SIZE_REDUND)
50# define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
wdenk43d96162003-03-06 00:02:04 +000051# endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
53 ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
wdenk43d96162003-03-06 00:02:04 +000054# define ENV_IS_EMBEDDED 1
55# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020056# if defined(CONFIG_ENV_ADDR_REDUND) || defined(CONFIG_ENV_OFFSET_REDUND)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057# define CONFIG_SYS_REDUNDAND_ENVIRONMENT 1
wdenkfe57bb12002-09-18 13:23:15 +000058# endif
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020059#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkfe57bb12002-09-18 13:23:15 +000060
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -040062# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenk43d96162003-03-06 00:02:04 +000063#else
Mike Frysinger89cdab72008-03-31 11:02:01 -040064# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenk43d96162003-03-06 00:02:04 +000065#endif
66
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020067#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenk43d96162003-03-06 00:02:04 +000068
69
Mike Frysinger89cdab72008-03-31 11:02:01 -040070extern uint32_t crc32 (uint32_t, const unsigned char *, unsigned int);
wdenkfe57bb12002-09-18 13:23:15 +000071
72#ifdef ENV_IS_EMBEDDED
73extern unsigned int env_size;
74extern unsigned char environment;
75#endif /* ENV_IS_EMBEDDED */
76
77int main (int argc, char **argv)
78{
79#ifdef ENV_IS_EMBEDDED
Mike Frysinger89cdab72008-03-31 11:02:01 -040080 uint32_t crc;
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020081 unsigned char *envptr = &environment,
82 *dataptr = envptr + ENV_HEADER_SIZE;
83 unsigned int datasize = ENV_SIZE;
wdenkfe57bb12002-09-18 13:23:15 +000084
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020085 crc = crc32 (0, dataptr, datasize);
wdenkfe57bb12002-09-18 13:23:15 +000086
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020087 /* Check if verbose mode is activated passing a parameter to the program */
88 if (argc > 1) {
89 printf ("CRC32 from offset %08X to %08X of environment = %08X\n",
90 (unsigned int) (dataptr - envptr),
91 (unsigned int) (dataptr - envptr) + datasize,
92 crc);
93 } else {
94 printf ("0x%08X\n", crc);
95 }
wdenkfe57bb12002-09-18 13:23:15 +000096#else
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020097 printf ("0\n");
wdenkfe57bb12002-09-18 13:23:15 +000098#endif
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020099 return EXIT_SUCCESS;
wdenkfe57bb12002-09-18 13:23:15 +0000100}