blob: 57149e733ba3b134315ad98cf134334ea599bf7d [file] [log] [blame]
wdenk6aff3112002-12-17 01:51:00 +00001/*
Grant Ericksonbc117562008-05-06 20:16:15 -07002 * (C) Copyright 2002-2008
wdenk6aff3112002-12-17 01:51:00 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk6aff3112002-12-17 01:51:00 +00006 */
7
Andreas Fenkart371ee132015-12-09 13:13:24 +01008#include <aes.h>
9#include <stdint.h>
10
Tom Rinie3c52f22012-12-20 07:30:27 -070011/* Pull in the current config to define the default environment */
Peter Robinson0b367382015-06-17 16:58:32 +010012#include <linux/kconfig.h>
13
Tom Rinie3c52f22012-12-20 07:30:27 -070014#ifndef __ASSEMBLY__
15#define __ASSEMBLY__ /* get only #defines from config.h */
16#include <config.h>
17#undef __ASSEMBLY__
18#else
19#include <config.h>
20#endif
21
wdenk8bde7f72003-06-27 21:31:46 +000022/*
Frans Meulenbroeks9cbfee62012-01-05 08:09:10 +000023 * To build the utility with the static configuration
24 * comment out the next line.
Wolfgang Denk566e5cf2011-05-01 20:44:23 +020025 * See included "fw_env.config" sample file
wdenkd0fb80c2003-01-11 09:48:40 +000026 * for notes on configuration.
27 */
wdenkd791b1d2003-04-20 14:04:18 +000028#define CONFIG_FILE "/etc/fw_env.config"
wdenkd0fb80c2003-01-11 09:48:40 +000029
Joe Hershberger497f2052012-10-03 09:38:46 +000030#ifndef CONFIG_FILE
wdenk6aff3112002-12-17 01:51:00 +000031#define HAVE_REDUND /* For systems with 2 env sectors */
32#define DEVICE1_NAME "/dev/mtd1"
33#define DEVICE2_NAME "/dev/mtd2"
wdenkd0fb80c2003-01-11 09:48:40 +000034#define DEVICE1_OFFSET 0x0000
wdenk6aff3112002-12-17 01:51:00 +000035#define ENV1_SIZE 0x4000
Frans Meulenbroeks5d5cc382011-12-01 03:30:04 +000036#define DEVICE1_ESIZE 0x4000
37#define DEVICE1_ENVSECTORS 2
wdenkd0fb80c2003-01-11 09:48:40 +000038#define DEVICE2_OFFSET 0x0000
wdenk6aff3112002-12-17 01:51:00 +000039#define ENV2_SIZE 0x4000
Frans Meulenbroeks5d5cc382011-12-01 03:30:04 +000040#define DEVICE2_ESIZE 0x4000
41#define DEVICE2_ENVSECTORS 2
Joe Hershberger497f2052012-10-03 09:38:46 +000042#endif
wdenk6aff3112002-12-17 01:51:00 +000043
Tom Rinie3c52f22012-12-20 07:30:27 -070044#ifndef CONFIG_BAUDRATE
45#define CONFIG_BAUDRATE 115200
46#endif
47
48#ifndef CONFIG_BOOTDELAY
49#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
50#endif
51
52#ifndef CONFIG_BOOTCOMMAND
53#define CONFIG_BOOTCOMMAND \
54 "bootp; " \
55 "setenv bootargs root=/dev/nfs nfsroot=${serverip}:${rootpath} " \
56 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off; " \
57 "bootm"
58#endif
59
Andreas Fenkart371ee132015-12-09 13:13:24 +010060struct common_args {
61#ifdef CONFIG_FILE
62 char *config_file;
63#endif
64 uint8_t aes_key[AES_KEY_LENGTH];
65 int aes_flag; /* Is AES encryption used? */
66};
67extern struct common_args common_args;
68
Andreas Fenkart07ce9442015-12-09 13:13:23 +010069struct printenv_args {
Andreas Fenkart371ee132015-12-09 13:13:24 +010070 int name_suppress;
Andreas Fenkart07ce9442015-12-09 13:13:23 +010071};
72extern struct printenv_args printenv_args;
73
74struct setenv_args {
75 char *script_file;
76};
77extern struct setenv_args setenv_args;
78
Andreas Fenkart371ee132015-12-09 13:13:24 +010079int parse_aes_key(char *key, uint8_t *bin_key);
80
Grant Ericksonbc117562008-05-06 20:16:15 -070081extern int fw_printenv(int argc, char *argv[]);
Markus Klotzbücher6de66b32007-11-27 10:23:20 +010082extern char *fw_getenv (char *name);
83extern int fw_setenv (int argc, char *argv[]);
Stefano Babicbd7b26f2010-05-24 12:08:16 +020084extern int fw_parse_script(char *fname);
85extern int fw_env_open(void);
86extern int fw_env_write(char *name, char *value);
87extern int fw_env_close(void);
wdenk6aff3112002-12-17 01:51:00 +000088
89extern unsigned long crc32 (unsigned long, const unsigned char *, unsigned);