blob: dac964d933fe85a6adf363e47249858b8c0a2f37 [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 Fenkart81974f42016-04-05 23:13:42 +020060struct env_opts {
Andreas Fenkart371ee132015-12-09 13:13:24 +010061#ifdef CONFIG_FILE
62 char *config_file;
63#endif
Andreas Fenkart371ee132015-12-09 13:13:24 +010064 int aes_flag; /* Is AES encryption used? */
Andreas Fenkart81974f42016-04-05 23:13:42 +020065 uint8_t aes_key[AES_KEY_LENGTH];
Andreas Fenkart371ee132015-12-09 13:13:24 +010066};
Andreas Fenkart07ce9442015-12-09 13:13:23 +010067
Andreas Fenkart371ee132015-12-09 13:13:24 +010068int parse_aes_key(char *key, uint8_t *bin_key);
69
Andreas Fenkart81974f42016-04-05 23:13:42 +020070int fw_printenv(int argc, char *argv[], int value_only, struct env_opts *opts);
Andreas Fenkartc3a23e82016-04-19 22:43:40 +020071char *fw_getenv(char *name);
Andreas Fenkart81974f42016-04-05 23:13:42 +020072int fw_setenv(int argc, char *argv[], struct env_opts *opts);
73int fw_parse_script(char *fname, struct env_opts *opts);
74int fw_env_open(struct env_opts *opts);
Andreas Fenkartc3a23e82016-04-19 22:43:40 +020075int fw_env_write(char *name, char *value);
Andreas Fenkart81974f42016-04-05 23:13:42 +020076int fw_env_close(struct env_opts *opts);
wdenk6aff3112002-12-17 01:51:00 +000077
Andreas Fenkartc3a23e82016-04-19 22:43:40 +020078unsigned long crc32(unsigned long, const unsigned char *, unsigned);