Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 2 | /* |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 3 | * (C) Copyright 2000-2010 |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 4 | * 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> |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | db19701 | 2019-08-01 09:47:04 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 13 | #include <env_internal.h> |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 14 | #include <linux/stddef.h> |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 15 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Tom Rini | eeba55c | 2017-08-19 22:27:57 -0400 | [diff] [blame] | 18 | /* |
| 19 | * Because we only ever have the default environment available we must mark |
| 20 | * it as invalid. |
| 21 | */ |
| 22 | static 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 Delaunay | ad3fec2 | 2020-07-28 11:51:18 +0200 | [diff] [blame] | 30 | static 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 Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 46 | U_BOOT_ENV_LOCATION(nowhere) = { |
| 47 | .location = ENVL_NOWHERE, |
Tom Rini | eeba55c | 2017-08-19 22:27:57 -0400 | [diff] [blame] | 48 | .init = env_nowhere_init, |
Patrick Delaunay | ad3fec2 | 2020-07-28 11:51:18 +0200 | [diff] [blame] | 49 | .load = env_nowhere_load, |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 50 | ENV_NAME("nowhere") |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 51 | }; |