blob: dac964d933fe85a6adf363e47249858b8c0a2f37 [file] [log] [blame]
wdenk34b613e2002-12-17 01:51:00 +00001/*
Grant Erickson73a4e5e2008-05-06 20:16:15 -07002 * (C) Copyright 2002-2008
wdenk34b613e2002-12-17 01:51:00 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk34b613e2002-12-17 01:51:00 +00006 */
7
Andreas Fenkartaa01f8d2015-12-09 13:13:24 +01008#include <aes.h>
9#include <stdint.h>
10
Tom Rinicfd1e542012-12-20 07:30:27 -070011/* Pull in the current config to define the default environment */
Peter Robinson217f95b2015-06-17 16:58:32 +010012#include <linux/kconfig.h>
13
Tom Rinicfd1e542012-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
wdenk57b2d802003-06-27 21:31:46 +000022/*
Frans Meulenbroeks014117d2012-01-05 08:09:10 +000023 * To build the utility with the static configuration
24 * comment out the next line.
Wolfgang Denk8f399b32011-05-01 20:44:23 +020025 * See included "fw_env.config" sample file
wdenke7f34c62003-01-11 09:48:40 +000026 * for notes on configuration.
27 */
wdenk92bbe3f2003-04-20 14:04:18 +000028#define CONFIG_FILE "/etc/fw_env.config"
wdenke7f34c62003-01-11 09:48:40 +000029
Joe Hershberger671adc42012-10-03 09:38:46 +000030#ifndef CONFIG_FILE
wdenk34b613e2002-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"
wdenke7f34c62003-01-11 09:48:40 +000034#define DEVICE1_OFFSET 0x0000
wdenk34b613e2002-12-17 01:51:00 +000035#define ENV1_SIZE 0x4000
Frans Meulenbroeks416ef382011-12-01 03:30:04 +000036#define DEVICE1_ESIZE 0x4000
37#define DEVICE1_ENVSECTORS 2
wdenke7f34c62003-01-11 09:48:40 +000038#define DEVICE2_OFFSET 0x0000
wdenk34b613e2002-12-17 01:51:00 +000039#define ENV2_SIZE 0x4000
Frans Meulenbroeks416ef382011-12-01 03:30:04 +000040#define DEVICE2_ESIZE 0x4000
41#define DEVICE2_ENVSECTORS 2
Joe Hershberger671adc42012-10-03 09:38:46 +000042#endif
wdenk34b613e2002-12-17 01:51:00 +000043
Tom Rinicfd1e542012-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 Fenkart24371902016-04-05 23:13:42 +020060struct env_opts {
Andreas Fenkartaa01f8d2015-12-09 13:13:24 +010061#ifdef CONFIG_FILE
62 char *config_file;
63#endif
Andreas Fenkartaa01f8d2015-12-09 13:13:24 +010064 int aes_flag; /* Is AES encryption used? */
Andreas Fenkart24371902016-04-05 23:13:42 +020065 uint8_t aes_key[AES_KEY_LENGTH];
Andreas Fenkart33e91772015-12-09 13:13:23 +010066};
Andreas Fenkart33e91772015-12-09 13:13:23 +010067
Andreas Fenkartaa01f8d2015-12-09 13:13:24 +010068int parse_aes_key(char *key, uint8_t *bin_key);
69
Andreas Fenkart24371902016-04-05 23:13:42 +020070int fw_printenv(int argc, char *argv[], int value_only, struct env_opts *opts);
Andreas Fenkart576d08e2016-04-19 22:43:40 +020071char *fw_getenv(char *name);
Andreas Fenkart24371902016-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 Fenkart576d08e2016-04-19 22:43:40 +020075int fw_env_write(char *name, char *value);
Andreas Fenkart24371902016-04-05 23:13:42 +020076int fw_env_close(struct env_opts *opts);
wdenk34b613e2002-12-17 01:51:00 +000077
Andreas Fenkart576d08e2016-04-19 22:43:40 +020078unsigned long crc32(unsigned long, const unsigned char *, unsigned);