]> Git Repo - u-boot.git/blame - tools/envcrc.c
Merge tag 'v2024.07-rc4' into next
[u-boot.git] / tools / envcrc.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
fe57bb19
WD
2/*
3 * (C) Copyright 2001
4 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), [email protected]
fe57bb19
WD
5 */
6
f67066b6 7#include <errno.h>
fe57bb19 8#include <stdio.h>
89cdab78 9#include <stdint.h>
fe57bb19 10#include <stdlib.h>
837db3d8 11#include <string.h>
3db71108 12#include <u-boot/crc.h>
fe57bb19
WD
13#include <unistd.h>
14
f33f3e07
YS
15#include <linux/kconfig.h>
16
dc17fb6d
WD
17#ifndef __ASSEMBLY__
18#define __ASSEMBLY__ /* Dirty trick to get only #defines */
19#endif
20#define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
fe57bb19
WD
21#include <config.h>
22#undef __ASSEMBLY__
23
5a1aceb0 24#if defined(CONFIG_ENV_IS_IN_FLASH)
0e8d1586 25# ifndef CONFIG_ENV_ADDR
65cc0e2a 26# define CONFIG_ENV_ADDR (CFG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
fe57bb19 27# endif
0e8d1586 28# ifndef CONFIG_ENV_OFFSET
65cc0e2a 29# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CFG_SYS_FLASH_BASE)
fe57bb19 30# endif
0e8d1586 31# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
65cc0e2a 32# define CONFIG_ENV_ADDR_REDUND (CFG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
43d9616c 33# endif
0e8d1586
JCPV
34# ifndef CONFIG_ENV_SIZE
35# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
fe57bb19 36# endif
a747a7f3
WD
37# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
38 ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
6f403bad 39# define ENV_IS_EMBEDDED
a747a7f3 40# endif
5a1aceb0 41#endif /* CONFIG_ENV_IS_IN_FLASH */
fe57bb19 42
6d0f6bcf 43#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
89cdab78 44# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
43d9616c 45#else
89cdab78 46# define ENV_HEADER_SIZE (sizeof(uint32_t))
43d9616c
WD
47#endif
48
0e8d1586 49#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
43d9616c
WD
50
51
6bd23720 52#ifdef ENV_IS_EMBEDDED
f3998fdc 53# include <env_internal.h>
fe57bb19 54extern unsigned int env_size;
be54ec16 55extern env_t embedded_environment;
6bd23720 56#endif /* ENV_IS_EMBEDDED */
fe57bb19 57
b2ea91ba 58extern uint32_t crc32(uint32_t, const unsigned char *, unsigned int);
73f94ed4 59
fe57bb19
WD
60int main (int argc, char **argv)
61{
6bd23720 62#ifdef ENV_IS_EMBEDDED
837db3d8 63 unsigned char pad = 0x00;
89cdab78 64 uint32_t crc;
be54ec16 65 unsigned char *envptr = (unsigned char *)&embedded_environment,
dc17fb6d
WD
66 *dataptr = envptr + ENV_HEADER_SIZE;
67 unsigned int datasize = ENV_SIZE;
837db3d8
MF
68 unsigned int eoe;
69
70 if (argv[1] && !strncmp(argv[1], "--binary", 8)) {
71 int ipad = 0xff;
72 if (argv[1][8] == '=')
73 sscanf(argv[1] + 9, "%i", &ipad);
74 pad = ipad;
75 }
76
77 if (pad) {
78 /* find the end of env */
79 for (eoe = 0; eoe < datasize - 1; ++eoe)
80 if (!dataptr[eoe] && !dataptr[eoe+1]) {
81 eoe += 2;
82 break;
83 }
84 if (eoe < datasize - 1)
85 memset(dataptr + eoe, pad, datasize - eoe);
86 }
fe57bb19 87
b2ea91ba 88 crc = crc32(0, dataptr, datasize);
fe57bb19 89
dc17fb6d
WD
90 /* Check if verbose mode is activated passing a parameter to the program */
91 if (argc > 1) {
837db3d8
MF
92 if (!strncmp(argv[1], "--binary", 8)) {
93 int le = (argc > 2 ? !strcmp(argv[2], "le") : 1);
94 size_t i, start, end, step;
95 if (le) {
96 start = 0;
97 end = ENV_HEADER_SIZE;
98 step = 1;
99 } else {
100 start = ENV_HEADER_SIZE - 1;
101 end = -1;
102 step = -1;
103 }
104 for (i = start; i != end; i += step)
105 printf("%c", (crc & (0xFF << (i * 8))) >> (i * 8));
f67066b6
MF
106 if (fwrite(dataptr, 1, datasize, stdout) != datasize)
107 fprintf(stderr, "fwrite() failed: %s\n", strerror(errno));
837db3d8
MF
108 } else {
109 printf("CRC32 from offset %08X to %08X of environment = %08X\n",
110 (unsigned int) (dataptr - envptr),
111 (unsigned int) (dataptr - envptr) + datasize,
112 crc);
113 }
dc17fb6d
WD
114 } else {
115 printf ("0x%08X\n", crc);
116 }
a747a7f3
WD
117#else
118 printf ("0\n");
119#endif
dc17fb6d 120 return EXIT_SUCCESS;
fe57bb19 121}
This page took 0.359248 seconds and 4 git commands to generate.