blob: bce77902476d65c4762980d3ea9fcbb4141f35c7 [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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020026# define CONFIG_ENV_ADDR (CONFIG_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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029# define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_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)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020032# define CONFIG_ENV_ADDR_REDUND (CONFIG_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
Mike Frysingerc3eb3fe2011-07-08 10:44:25 +000043#if defined(ENV_IS_EMBEDDED) && !defined(CONFIG_BUILD_ENVCRC)
Igor Grinberg6f403ba2011-12-25 01:42:57 +000044# define CONFIG_BUILD_ENVCRC
Mike Frysingerc3eb3fe2011-07-08 10:44:25 +000045#endif
46
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Mike Frysinger89cdab72008-03-31 11:02:01 -040048# define ENV_HEADER_SIZE (sizeof(uint32_t) + 1)
wdenk43d96162003-03-06 00:02:04 +000049#else
Mike Frysinger89cdab72008-03-31 11:02:01 -040050# define ENV_HEADER_SIZE (sizeof(uint32_t))
wdenk43d96162003-03-06 00:02:04 +000051#endif
52
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020053#define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
wdenk43d96162003-03-06 00:02:04 +000054
55
Mike Frysingerc3eb3fe2011-07-08 10:44:25 +000056#ifdef CONFIG_BUILD_ENVCRC
Simon Glassf3998fd2019-08-02 09:44:25 -060057# include <env_internal.h>
wdenkfe57bb12002-09-18 13:23:15 +000058extern unsigned int env_size;
Simon Glassbe54ec12019-08-01 09:47:03 -060059extern env_t embedded_environment;
Mike Frysingerc3eb3fe2011-07-08 10:44:25 +000060#endif /* CONFIG_BUILD_ENVCRC */
wdenkfe57bb12002-09-18 13:23:15 +000061
Simon Glassb2ea91b2019-11-14 12:57:15 -070062extern uint32_t crc32(uint32_t, const unsigned char *, unsigned int);
Igor Grinberg73f94ed2011-11-27 21:57:38 +000063
wdenkfe57bb12002-09-18 13:23:15 +000064int main (int argc, char **argv)
65{
Mike Frysingerc3eb3fe2011-07-08 10:44:25 +000066#ifdef CONFIG_BUILD_ENVCRC
Mike Frysinger837db3d2009-05-06 08:41:45 -040067 unsigned char pad = 0x00;
Mike Frysinger89cdab72008-03-31 11:02:01 -040068 uint32_t crc;
Simon Glassbe54ec12019-08-01 09:47:03 -060069 unsigned char *envptr = (unsigned char *)&embedded_environment,
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020070 *dataptr = envptr + ENV_HEADER_SIZE;
71 unsigned int datasize = ENV_SIZE;
Mike Frysinger837db3d2009-05-06 08:41:45 -040072 unsigned int eoe;
73
74 if (argv[1] && !strncmp(argv[1], "--binary", 8)) {
75 int ipad = 0xff;
76 if (argv[1][8] == '=')
77 sscanf(argv[1] + 9, "%i", &ipad);
78 pad = ipad;
79 }
80
81 if (pad) {
82 /* find the end of env */
83 for (eoe = 0; eoe < datasize - 1; ++eoe)
84 if (!dataptr[eoe] && !dataptr[eoe+1]) {
85 eoe += 2;
86 break;
87 }
88 if (eoe < datasize - 1)
89 memset(dataptr + eoe, pad, datasize - eoe);
90 }
wdenkfe57bb12002-09-18 13:23:15 +000091
Simon Glassb2ea91b2019-11-14 12:57:15 -070092 crc = crc32(0, dataptr, datasize);
wdenkfe57bb12002-09-18 13:23:15 +000093
Wolfgang Denkdc17fb62005-08-03 22:32:02 +020094 /* Check if verbose mode is activated passing a parameter to the program */
95 if (argc > 1) {
Mike Frysinger837db3d2009-05-06 08:41:45 -040096 if (!strncmp(argv[1], "--binary", 8)) {
97 int le = (argc > 2 ? !strcmp(argv[2], "le") : 1);
98 size_t i, start, end, step;
99 if (le) {
100 start = 0;
101 end = ENV_HEADER_SIZE;
102 step = 1;
103 } else {
104 start = ENV_HEADER_SIZE - 1;
105 end = -1;
106 step = -1;
107 }
108 for (i = start; i != end; i += step)
109 printf("%c", (crc & (0xFF << (i * 8))) >> (i * 8));
Mike Frysingerf67066b2009-10-18 20:43:14 -0400110 if (fwrite(dataptr, 1, datasize, stdout) != datasize)
111 fprintf(stderr, "fwrite() failed: %s\n", strerror(errno));
Mike Frysinger837db3d2009-05-06 08:41:45 -0400112 } else {
113 printf("CRC32 from offset %08X to %08X of environment = %08X\n",
114 (unsigned int) (dataptr - envptr),
115 (unsigned int) (dataptr - envptr) + datasize,
116 crc);
117 }
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200118 } else {
119 printf ("0x%08X\n", crc);
120 }
Wolfgang Denka747a7f2009-10-27 00:03:32 +0100121#else
122 printf ("0\n");
123#endif
Wolfgang Denkdc17fb62005-08-03 22:32:02 +0200124 return EXIT_SUCCESS;
wdenkfe57bb12002-09-18 13:23:15 +0000125}