blob: 3e46c260df815a2dfeb4d707c6e697cc0ce80347 [file] [log] [blame]
wdenk05706fd2002-09-28 17:48:27 +00001/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02002 * (C) Copyright 2000-2010
wdenk05706fd2002-09-28 17:48:27 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
Wolfgang Denkea882ba2010-06-20 23:33:59 +02007 *
wdenk05706fd2002-09-28 17:48:27 +00008 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <command.h>
29#include <environment.h>
wdenk05706fd2002-09-28 17:48:27 +000030#include <linux/stddef.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020031#include <search.h>
32#include <errno.h>
wdenk05706fd2002-09-28 17:48:27 +000033#include <malloc.h>
34
Wolfgang Denkd87080b2006-03-31 18:32:53 +020035DECLARE_GLOBAL_DATA_PTR;
36
wdenk05706fd2002-09-28 17:48:27 +000037/************************************************************************
38 * Default settings to be used when no valid environment is found
39 */
40#define XMK_STR(x) #x
41#define MK_STR(x) XMK_STR(x)
42
Mike Frysinger147c7162011-04-23 23:43:21 +000043const uchar default_environment[] = {
wdenk05706fd2002-09-28 17:48:27 +000044#ifdef CONFIG_BOOTARGS
45 "bootargs=" CONFIG_BOOTARGS "\0"
46#endif
47#ifdef CONFIG_BOOTCOMMAND
48 "bootcmd=" CONFIG_BOOTCOMMAND "\0"
49#endif
50#ifdef CONFIG_RAMBOOTCOMMAND
51 "ramboot=" CONFIG_RAMBOOTCOMMAND "\0"
52#endif
53#ifdef CONFIG_NFSBOOTCOMMAND
54 "nfsboot=" CONFIG_NFSBOOTCOMMAND "\0"
55#endif
56#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
57 "bootdelay=" MK_STR(CONFIG_BOOTDELAY) "\0"
58#endif
59#if defined(CONFIG_BAUDRATE) && (CONFIG_BAUDRATE >= 0)
60 "baudrate=" MK_STR(CONFIG_BAUDRATE) "\0"
61#endif
62#ifdef CONFIG_LOADS_ECHO
63 "loads_echo=" MK_STR(CONFIG_LOADS_ECHO) "\0"
64#endif
65#ifdef CONFIG_ETHADDR
66 "ethaddr=" MK_STR(CONFIG_ETHADDR) "\0"
67#endif
68#ifdef CONFIG_ETH1ADDR
69 "eth1addr=" MK_STR(CONFIG_ETH1ADDR) "\0"
70#endif
71#ifdef CONFIG_ETH2ADDR
72 "eth2addr=" MK_STR(CONFIG_ETH2ADDR) "\0"
73#endif
wdenk69459792004-05-29 16:53:29 +000074#ifdef CONFIG_ETH3ADDR
75 "eth3addr=" MK_STR(CONFIG_ETH3ADDR) "\0"
76#endif
richardretanubunc68a05f2008-09-29 18:28:23 -040077#ifdef CONFIG_ETH4ADDR
78 "eth4addr=" MK_STR(CONFIG_ETH4ADDR) "\0"
79#endif
80#ifdef CONFIG_ETH5ADDR
81 "eth5addr=" MK_STR(CONFIG_ETH5ADDR) "\0"
82#endif
Benoît Thébaudeau84209af2012-08-10 07:45:31 +000083#ifdef CONFIG_ETHPRIME
84 "ethprime=" CONFIG_ETHPRIME "\0"
85#endif
wdenk05706fd2002-09-28 17:48:27 +000086#ifdef CONFIG_IPADDR
87 "ipaddr=" MK_STR(CONFIG_IPADDR) "\0"
88#endif
89#ifdef CONFIG_SERVERIP
90 "serverip=" MK_STR(CONFIG_SERVERIP) "\0"
91#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092#ifdef CONFIG_SYS_AUTOLOAD
Igor Grinberg27aafe92011-11-07 01:14:11 +000093 "autoload=" CONFIG_SYS_AUTOLOAD "\0"
wdenk05706fd2002-09-28 17:48:27 +000094#endif
95#ifdef CONFIG_PREBOOT
96 "preboot=" CONFIG_PREBOOT "\0"
97#endif
98#ifdef CONFIG_ROOTPATH
Joe Hershberger8b3637c2011-10-13 13:03:47 +000099 "rootpath=" CONFIG_ROOTPATH "\0"
wdenk05706fd2002-09-28 17:48:27 +0000100#endif
101#ifdef CONFIG_GATEWAYIP
102 "gatewayip=" MK_STR(CONFIG_GATEWAYIP) "\0"
103#endif
104#ifdef CONFIG_NETMASK
105 "netmask=" MK_STR(CONFIG_NETMASK) "\0"
106#endif
107#ifdef CONFIG_HOSTNAME
108 "hostname=" MK_STR(CONFIG_HOSTNAME) "\0"
109#endif
110#ifdef CONFIG_BOOTFILE
Joe Hershbergerb3f44c22011-10-13 13:03:48 +0000111 "bootfile=" CONFIG_BOOTFILE "\0"
wdenk05706fd2002-09-28 17:48:27 +0000112#endif
113#ifdef CONFIG_LOADADDR
114 "loadaddr=" MK_STR(CONFIG_LOADADDR) "\0"
115#endif
Igor Grinberg27aafe92011-11-07 01:14:11 +0000116#ifdef CONFIG_CLOCKS_IN_MHZ
wdenk05706fd2002-09-28 17:48:27 +0000117 "clocks_in_mhz=1\0"
118#endif
stroesead10dd92003-02-14 11:21:23 +0000119#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
120 "pcidelay=" MK_STR(CONFIG_PCI_BOOTDELAY) "\0"
121#endif
Stephen Warren5e724ca2012-05-22 09:21:54 +0000122#ifdef CONFIG_ENV_VARS_UBOOT_CONFIG
123 "arch=" CONFIG_SYS_ARCH "\0"
124 "cpu=" CONFIG_SYS_CPU "\0"
125 "board=" CONFIG_SYS_BOARD "\0"
126#ifdef CONFIG_SYS_VENDOR
127 "vendor=" CONFIG_SYS_VENDOR "\0"
128#endif
129#ifdef CONFIG_SYS_SOC
130 "soc=" CONFIG_SYS_SOC "\0"
131#endif
132#endif
Igor Grinberg27aafe92011-11-07 01:14:11 +0000133#ifdef CONFIG_EXTRA_ENV_SETTINGS
wdenk05706fd2002-09-28 17:48:27 +0000134 CONFIG_EXTRA_ENV_SETTINGS
135#endif
136 "\0"
137};
138
Gerlando Falautoc5983592012-08-24 00:11:39 +0000139struct hsearch_data env_htab = {
140 .apply = env_check_apply,
141};
Mike Frysinger2eb15732010-12-08 06:26:04 -0500142
Igor Grinbergbf95df42011-12-26 03:33:10 +0000143static uchar __env_get_char_spec(int index)
144{
145 return *((uchar *)(gd->env_addr + index));
146}
147uchar env_get_char_spec(int)
148 __attribute__((weak, alias("__env_get_char_spec")));
149
Igor Grinberg27aafe92011-11-07 01:14:11 +0000150static uchar env_get_char_init(int index)
wdenk05706fd2002-09-28 17:48:27 +0000151{
wdenk05706fd2002-09-28 17:48:27 +0000152 /* if crc was bad, use the default environment */
153 if (gd->env_valid)
Igor Grinberg27aafe92011-11-07 01:14:11 +0000154 return env_get_char_spec(index);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200155 else
Igor Grinberg27aafe92011-11-07 01:14:11 +0000156 return default_environment[index];
wdenk05706fd2002-09-28 17:48:27 +0000157}
158
Igor Grinberg27aafe92011-11-07 01:14:11 +0000159uchar env_get_char_memory(int index)
wdenk05706fd2002-09-28 17:48:27 +0000160{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200161 return *env_get_addr(index);
wdenk05706fd2002-09-28 17:48:27 +0000162}
163
Igor Grinberg27aafe92011-11-07 01:14:11 +0000164uchar env_get_char(int index)
Joakim Tjernlundb5026112008-07-06 12:30:09 +0200165{
Joakim Tjernlundb5026112008-07-06 12:30:09 +0200166 /* if relocated to RAM */
167 if (gd->flags & GD_FLG_RELOC)
Igor Grinberg27aafe92011-11-07 01:14:11 +0000168 return env_get_char_memory(index);
Joakim Tjernlundb5026112008-07-06 12:30:09 +0200169 else
Igor Grinberg27aafe92011-11-07 01:14:11 +0000170 return env_get_char_init(index);
Joakim Tjernlundb5026112008-07-06 12:30:09 +0200171}
172
Igor Grinberg27aafe92011-11-07 01:14:11 +0000173const uchar *env_get_addr(int index)
wdenk05706fd2002-09-28 17:48:27 +0000174{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200175 if (gd->env_valid)
176 return (uchar *)(gd->env_addr + index);
177 else
178 return &default_environment[index];
wdenk05706fd2002-09-28 17:48:27 +0000179}
180
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200181void set_default_env(const char *s)
Harald Welte5bb12db2008-07-07 15:40:39 +0800182{
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000183 /*
184 * By default, do not apply changes as they will eventually
185 * be applied by someone else
186 */
187 int do_apply = 0;
Harald Welte5bb12db2008-07-07 15:40:39 +0800188 if (sizeof(default_environment) > ENV_SIZE) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200189 puts("*** Error - default environment is too large\n\n");
Harald Welte5bb12db2008-07-07 15:40:39 +0800190 return;
191 }
192
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200193 if (s) {
194 if (*s == '!') {
195 printf("*** Warning - %s, "
196 "using default environment\n\n",
Igor Grinberg27aafe92011-11-07 01:14:11 +0000197 s + 1);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200198 } else {
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000199 /*
200 * This set_to_default was explicitly asked for
201 * by the user, as opposed to being a recovery
202 * mechanism. Therefore we check every single
203 * variable and apply changes to the system
204 * right away (e.g. baudrate, console).
205 */
206 do_apply = 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200207 puts(s);
208 }
209 } else {
210 puts("Using default environment\n\n");
211 }
212
Mike Frysinger2eb15732010-12-08 06:26:04 -0500213 if (himport_r(&env_htab, (char *)default_environment,
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000214 sizeof(default_environment), '\0', 0,
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000215 0, NULL, do_apply) == 0)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200216 error("Environment import failed: errno = %d\n", errno);
Igor Grinberg27aafe92011-11-07 01:14:11 +0000217
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200218 gd->flags |= GD_FLG_ENV_READY;
219}
220
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000221
222/* [re]set individual variables to their value in the default environment */
223int set_default_vars(int nvars, char * const vars[])
224{
225 /*
226 * Special use-case: import from default environment
227 * (and use \0 as a separator)
228 */
229 return himport_r(&env_htab, (const char *)default_environment,
230 sizeof(default_environment), '\0', H_NOCLEAR,
231 nvars, vars, 1 /* do_apply */);
232}
233
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200234/*
235 * Check if CRC is valid and (if yes) import the environment.
236 * Note that "buf" may or may not be aligned.
237 */
238int env_import(const char *buf, int check)
239{
240 env_t *ep = (env_t *)buf;
241
242 if (check) {
243 uint32_t crc;
244
245 memcpy(&crc, &ep->crc, sizeof(crc));
246
247 if (crc32(0, ep->data, ENV_SIZE) != crc) {
248 set_default_env("!bad CRC");
249 return 0;
250 }
251 }
252
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000253 if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0,
Gerlando Falautoc5983592012-08-24 00:11:39 +0000254 0, NULL, 0 /* do_apply */)) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200255 gd->flags |= GD_FLG_ENV_READY;
256 return 1;
257 }
258
259 error("Cannot import environment: errno = %d\n", errno);
260
261 set_default_env("!import failed");
262
263 return 0;
Harald Welte5bb12db2008-07-07 15:40:39 +0800264}
265
Igor Grinberg27aafe92011-11-07 01:14:11 +0000266void env_relocate(void)
wdenk05706fd2002-09-28 17:48:27 +0000267{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200268#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200269 env_reloc();
270#endif
wdenk05706fd2002-09-28 17:48:27 +0000271 if (gd->env_valid == 0) {
Wolfgang Denk0fe247b2010-07-05 22:46:33 +0200272#if defined(CONFIG_ENV_IS_NOWHERE) /* Environment not changable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200273 set_default_env(NULL);
wdenk05706fd2002-09-28 17:48:27 +0000274#else
Simon Glass770605e2012-02-13 13:51:18 +0000275 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200276 set_default_env("!bad CRC");
Lei Wend2590792010-10-10 12:36:40 +0800277#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200278 } else {
Igor Grinberg27aafe92011-11-07 01:14:11 +0000279 env_relocate_spec();
wdenk05706fd2002-09-28 17:48:27 +0000280 }
wdenk05706fd2002-09-28 17:48:27 +0000281}
wdenk04a85b32004-04-15 18:22:41 +0000282
Mike Frysinger560d4242010-12-17 16:51:59 -0500283#ifdef CONFIG_AUTO_COMPLETE
wdenk04a85b32004-04-15 18:22:41 +0000284int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf)
285{
Mike Frysinger560d4242010-12-17 16:51:59 -0500286 ENTRY *match;
287 int found, idx;
wdenk04a85b32004-04-15 18:22:41 +0000288
Mike Frysinger560d4242010-12-17 16:51:59 -0500289 idx = 0;
wdenk04a85b32004-04-15 18:22:41 +0000290 found = 0;
291 cmdv[0] = NULL;
292
Mike Frysinger560d4242010-12-17 16:51:59 -0500293 while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
294 int vallen = strlen(match->key) + 1;
wdenk04a85b32004-04-15 18:22:41 +0000295
Mike Frysinger560d4242010-12-17 16:51:59 -0500296 if (found >= maxv - 2 || bufsz < vallen)
wdenk04a85b32004-04-15 18:22:41 +0000297 break;
Mike Frysinger560d4242010-12-17 16:51:59 -0500298
wdenk04a85b32004-04-15 18:22:41 +0000299 cmdv[found++] = buf;
Mike Frysinger560d4242010-12-17 16:51:59 -0500300 memcpy(buf, match->key, vallen);
301 buf += vallen;
302 bufsz -= vallen;
wdenk04a85b32004-04-15 18:22:41 +0000303 }
304
Mike Frysinger560d4242010-12-17 16:51:59 -0500305 qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
306
307 if (idx)
308 cmdv[found++] = "...";
Igor Grinberg27aafe92011-11-07 01:14:11 +0000309
wdenk04a85b32004-04-15 18:22:41 +0000310 cmdv[found] = NULL;
311 return found;
312}
313#endif