blob: 550f31038bd7887dd8e8c44f4a0f946e3aa88bb0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkfe57bb12002-09-18 13:23:15 +00002/*
3 * (C) Copyright 2001
4 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
wdenkfe57bb12002-09-18 13:23:15 +00005 */
6
Mike Frysingerf67066b2009-10-18 20:43:14 -04007#include <errno.h>
wdenkfe57bb12002-09-18 13:23:15 +00008#include <stdio.h>
Mike Frysinger89cdab72008-03-31 11:02:01 -04009#include <stdint.h>
wdenkfe57bb12002-09-18 13:23:15 +000010#include <stdlib.h>
Mike Frysinger837db3d2009-05-06 08:41:45 -040011#include <string.h>
Simon Glass3db71102019-11-14 12:57:16 -070012#include <u-boot/crc.h>
wdenkfe57bb12002-09-18 13:23:15 +000013#include <unistd.h>
14
York Sunf33f3e02016-11-15 17:02:31 -080015#include <linux/kconfig.h>
16
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020017#ifndef __ASSEMBLY__
18#define __ASSEMBLY__ /* Dirty trick to get only #defines */
19#endif
20#define __ASM_STUB_PROCESSOR_H__ /* don't include asm/processor. */
wdenkfe57bb12002-09-18 13:23:15 +000021#include <config.h>
22#undef __ASSEMBLY__
23
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020024#if defined(CONFIG_ENV_IS_IN_FLASH)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020025# ifndef CONFIG_ENV_ADDR
Tom Rini65cc0e22022-11-16 13:10:41 -050026# define CONFIG_ENV_ADDR (CFG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)
wdenkfe57bb12002-09-18 13:23:15 +000027# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020028# ifndef CONFIG_ENV_OFFSET
Tom Rini65cc0e22022-11-16 13:10:41 -050029# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CFG_SYS_FLASH_BASE)
wdenkfe57bb12002-09-18 13:23:15 +000030# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020031# if !defined(CONFIG_ENV_ADDR_REDUND) && defined(CONFIG_ENV_OFFSET_REDUND)
Tom Rini65cc0e22022-11-16 13:10:41 -050032# define CONFIG_ENV_ADDR_REDUND (CFG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET_REDUND)
wdenk43d96162003-03-06 00:02:04 +000033# endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020034# ifndef CONFIG_ENV_SIZE
35# define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
wdenkfe57bb12002-09-18 13:23:15 +000036# endif
Wolfgang Denka747a7f2009-10-27 00:03:32 +010037# if (CONFIG_ENV_ADDR >= CONFIG_SYS_MONITOR_BASE) && \
38 ((CONFIG_ENV_ADDR + CONFIG_ENV_SIZE) <= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN))
Igor Grinberg6f403ba2011-12-25 01:42:57 +000039# define ENV_IS_EMBEDDED
Wolfgang Denka747a7f2009-10-27 00:03:32 +010040# endif
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020041#endif /* CONFIG_ENV_IS_IN_FLASH */
wdenkfe57bb12002-09-18 13:23:15 +000042
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020043#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -040044# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenk43d96162003-03-06 00:02:04 +000045#else
Mike Frysinger89cdab72008-03-31 11:02:01 -040046# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenk43d96162003-03-06 00:02:04 +000047#endif
48
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020049#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenk43d96162003-03-06 00:02:04 +000050
51
Tom Rini6bd23722022-12-02 16:42:17 -050052#ifdef ENV_IS_EMBEDDED
Simon Glassf3998fd2019-08-02 09:44:25 -060053# include <env_internal.h>
wdenkfe57bb12002-09-18 13:23:15 +000054extern unsigned int env_size;
Simon Glassbe54ec12019-08-01 09:47:03 -060055extern env_t embedded_environment;
Tom Rini6bd23722022-12-02 16:42:17 -050056#endif /* ENV_IS_EMBEDDED */
wdenkfe57bb12002-09-18 13:23:15 +000057
Simon Glassb2ea91b2019-11-14 12:57:15 -070058extern uint32_t crc32(uint32_t, const unsigned char *, unsigned int);
Igor Grinberg73f94ed2011-11-27 21:57:38 +000059
wdenkfe57bb12002-09-18 13:23:15 +000060int main (int argc, char **argv)
61{
Tom Rini6bd23722022-12-02 16:42:17 -050062#ifdef ENV_IS_EMBEDDED
Mike Frysinger837db3d2009-05-06 08:41:45 -040063 unsigned char pad = 0x00;
Mike Frysinger89cdab72008-03-31 11:02:01 -040064 uint32_t crc;
Simon Glassbe54ec12019-08-01 09:47:03 -060065 unsigned char *envptr = (unsigned char *)&embedded_environment,
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020066 *dataptr = envptr + ENV_HEADER_SIZE;
67 unsigned int datasize = ENV_SIZE;
Mike Frysinger837db3d2009-05-06 08:41:45 -040068 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 }
wdenkfe57bb12002-09-18 13:23:15 +000087
Simon Glassb2ea91b2019-11-14 12:57:15 -070088 crc = crc32(0, dataptr, datasize);
wdenkfe57bb12002-09-18 13:23:15 +000089
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020090 /* Check if verbose mode is activated passing a parameter to the program */
91 if (argc > 1) {
Mike Frysinger837db3d2009-05-06 08:41:45 -040092 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));
Mike Frysingerf67066b2009-10-18 20:43:14 -0400106 if (fwrite(dataptr, 1, datasize, stdout) != datasize)
107 fprintf(stderr, "fwrite() failed: %s\n", strerror(errno));
Mike Frysinger837db3d2009-05-06 08:41:45 -0400108 } 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 }
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200114 } else {
115 printf ("0x%08X\n", crc);
116 }
Wolfgang Denka747a7f2009-10-27 00:03:32 +0100117#else
118 printf ("0\n");
119#endif
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200120 return EXIT_SUCCESS;
wdenkfe57bb12002-09-18 13:23:15 +0000121}