]> git.ipfire.org Git - people/ms/u-boot.git/blame - tools/envcrc.c
sf: sst: support newer standardized flashes
[people/ms/u-boot.git] / tools / envcrc.c
CommitLineData
fe57bb19
WD
1/*
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
f67066b6 24#include <errno.h>
fe57bb19 25#include <stdio.h>
89cdab78 26#include <stdint.h>
fe57bb19 27#include <stdlib.h>
837db3d8 28#include <string.h>
fe57bb19
WD
29#include <unistd.h>
30
dc17fb6d
WD
31#ifndef __ASSEMBLY__
32#define __ASSEMBLY__ /* Dirty trick to get only #defines */
33#endif
34#define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
fe57bb19
WD
35#include <config.h>
36#undef __ASSEMBLY__
37
5a1aceb0 38#if defined(CONFIG_ENV_IS_IN_FLASH)
0e8d1586 39# ifndef CONFIG_ENV_ADDR
6d0f6bcf 40# define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
fe57bb19 41# endif
0e8d1586 42# ifndef CONFIG_ENV_OFFSET
6d0f6bcf 43# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
fe57bb19 44# endif
0e8d1586 45# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
6d0f6bcf 46# define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
43d9616c 47# endif
0e8d1586
JCPV
48# ifndef CONFIG_ENV_SIZE
49# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
fe57bb19 50# endif
0e8d1586
JCPV
51# if defined(CONFIG_ENV_ADDR_REDUND) && !defined(CONFIG_ENV_SIZE_REDUND)
52# define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
43d9616c 53# endif
a747a7f3
WD
54# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
55 ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
56# define ENV_IS_EMBEDDED 1
57# endif
0e8d1586 58# if defined(CONFIG_ENV_ADDR_REDUND) || defined(CONFIG_ENV_OFFSET_REDUND)
6d0f6bcf 59# define CONFIG_SYS_REDUNDAND_ENVIRONMENT 1
fe57bb19 60# endif
5a1aceb0 61#endif /* CONFIG_ENV_IS_IN_FLASH */
fe57bb19 62
6d0f6bcf 63#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
89cdab78 64# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
43d9616c 65#else
89cdab78 66# define ENV_HEADER_SIZE (sizeof(uint32_t))
43d9616c
WD
67#endif
68
0e8d1586 69#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
43d9616c
WD
70
71
89cdab78 72extern uint32_t crc32 (uint32_t, const unsigned char *, unsigned int);
fe57bb19 73
a747a7f3 74#ifdef ENV_IS_EMBEDDED
fe57bb19
WD
75extern unsigned int env_size;
76extern unsigned char environment;
a747a7f3 77#endif /* ENV_IS_EMBEDDED */
fe57bb19
WD
78
79int main (int argc, char **argv)
80{
a747a7f3 81#ifdef ENV_IS_EMBEDDED
837db3d8 82 unsigned char pad = 0x00;
89cdab78 83 uint32_t crc;
dc17fb6d
WD
84 unsigned char *envptr = &environment,
85 *dataptr = envptr + ENV_HEADER_SIZE;
86 unsigned int datasize = ENV_SIZE;
837db3d8
MF
87 unsigned int eoe;
88
89 if (argv[1] && !strncmp(argv[1], "--binary", 8)) {
90 int ipad = 0xff;
91 if (argv[1][8] == '=')
92 sscanf(argv[1] + 9, "%i", &ipad);
93 pad = ipad;
94 }
95
96 if (pad) {
97 /* find the end of env */
98 for (eoe = 0; eoe < datasize - 1; ++eoe)
99 if (!dataptr[eoe] && !dataptr[eoe+1]) {
100 eoe += 2;
101 break;
102 }
103 if (eoe < datasize - 1)
104 memset(dataptr + eoe, pad, datasize - eoe);
105 }
fe57bb19 106
dc17fb6d 107 crc = crc32 (0, dataptr, datasize);
fe57bb19 108
dc17fb6d
WD
109 /* Check if verbose mode is activated passing a parameter to the program */
110 if (argc > 1) {
837db3d8
MF
111 if (!strncmp(argv[1], "--binary", 8)) {
112 int le = (argc > 2 ? !strcmp(argv[2], "le") : 1);
113 size_t i, start, end, step;
114 if (le) {
115 start = 0;
116 end = ENV_HEADER_SIZE;
117 step = 1;
118 } else {
119 start = ENV_HEADER_SIZE - 1;
120 end = -1;
121 step = -1;
122 }
123 for (i = start; i != end; i += step)
124 printf("%c", (crc & (0xFF << (i * 8))) >> (i * 8));
f67066b6
MF
125 if (fwrite(dataptr, 1, datasize, stdout) != datasize)
126 fprintf(stderr, "fwrite() failed: %s\n", strerror(errno));
837db3d8
MF
127 } else {
128 printf("CRC32 from offset %08X to %08X of environment = %08X\n",
129 (unsigned int) (dataptr - envptr),
130 (unsigned int) (dataptr - envptr) + datasize,
131 crc);
132 }
dc17fb6d
WD
133 } else {
134 printf ("0x%08X\n", crc);
135 }
a747a7f3
WD
136#else
137 printf ("0\n");
138#endif
dc17fb6d 139 return EXIT_SUCCESS;
fe57bb19 140}