blob: 1fcf5034535bb137d6c755a463bb740a9cb20542 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk0bc4a1a2002-09-18 11:09:59 +00002/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02003 * (C) Copyright 2000-2010
wdenk0bc4a1a2002-09-18 11:09:59 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Andreas Heppel <aheppel@sysgo.de>
wdenk0bc4a1a2002-09-18 11:09:59 +00008 */
9
10#include <common.h>
wdenk0bc4a1a2002-09-18 11:09:59 +000011#include <command.h>
Simon Glassdb197012019-08-01 09:47:04 -060012#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060013#include <env_internal.h>
Simon Glass401d1c42020-10-30 21:38:53 -060014#include <asm/global_data.h>
wdenk0bc4a1a2002-09-18 11:09:59 +000015#include <linux/stddef.h>
wdenk0bc4a1a2002-09-18 11:09:59 +000016
Wolfgang Denkd87080b2006-03-31 18:32:53 +020017DECLARE_GLOBAL_DATA_PTR;
18
Tom Rinieeba55c2017-08-19 22:27:57 -040019/*
20 * Because we only ever have the default environment available we must mark
21 * it as invalid.
22 */
23static int env_nowhere_init(void)
24{
25 gd->env_addr = (ulong)&default_environment[0];
26 gd->env_valid = ENV_INVALID;
27
28 return 0;
29}
30
Patrick Delaunayad3fec22020-07-28 11:51:18 +020031static int env_nowhere_load(void)
32{
33 /*
Marek BehĂșn52f9ed32021-10-17 17:36:30 +020034 * For SPL, setting env_valid = ENV_INVALID is enough, as env_get()
35 * searches default_environment array in that case.
Patrick Delaunayad3fec22020-07-28 11:51:18 +020036 * For U-Boot proper, import the default environment to allow reload.
37 */
38 if (!IS_ENABLED(CONFIG_SPL_BUILD))
39 env_set_default(NULL, 0);
40
41 gd->env_valid = ENV_INVALID;
42
43 return 0;
44}
45
Simon Glass4415f1d2017-08-03 12:21:58 -060046U_BOOT_ENV_LOCATION(nowhere) = {
47 .location = ENVL_NOWHERE,
Tom Rinieeba55c2017-08-19 22:27:57 -040048 .init = env_nowhere_init,
Patrick Delaunayad3fec22020-07-28 11:51:18 +020049 .load = env_nowhere_load,
Simon Glassac358be2017-08-03 12:22:03 -060050 ENV_NAME("nowhere")
Simon Glass4415f1d2017-08-03 12:21:58 -060051};