blob: d33fdf27d0c49493bcbf1659077d11a83d289943 [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>
wdenk0bc4a1a2002-09-18 11:09:59 +000014#include <linux/stddef.h>
wdenk0bc4a1a2002-09-18 11:09:59 +000015
Wolfgang Denkd87080b2006-03-31 18:32:53 +020016DECLARE_GLOBAL_DATA_PTR;
17
Tom Rinieeba55c2017-08-19 22:27:57 -040018/*
19 * Because we only ever have the default environment available we must mark
20 * it as invalid.
21 */
22static int env_nowhere_init(void)
23{
24 gd->env_addr = (ulong)&default_environment[0];
25 gd->env_valid = ENV_INVALID;
26
27 return 0;
28}
29
Patrick Delaunayad3fec22020-07-28 11:51:18 +020030static int env_nowhere_load(void)
31{
32 /*
33 * for SPL, set env_valid = ENV_INVALID is enougth as env_get_char()
34 * return the default env if env_get is used
35 * and SPL don't used env_import to reduce its size
36 * 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};