]> Git Repo - u-boot.git/blame - env/nvram.c
common: Drop asm/global_data.h from common header
[u-boot.git] / env / nvram.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
c609719b 2/*
ea882baf 3 * (C) Copyright 2000-2010
c609719b
WD
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
5 *
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Andreas Heppel <[email protected]>
c609719b
WD
8 */
9
10/*
11 * 09-18-2001 Andreas Heppel, Sysgo RTS GmbH <[email protected]>
12 *
13 * It might not be possible in all cases to use 'memcpy()' to copy
14 * the environment to NVRAM, as the NVRAM might not be mapped into
15 * the memory space. (I.e. this is the case for the BAB750). In those
16 * cases it might be possible to access the NVRAM using a different
17 * method. For example, the RTC on the BAB750 is accessible in IO
18 * space using its address and data registers. To enable usage of
19 * NVRAM in those cases I invented the functions 'nvram_read()' and
20 * 'nvram_write()', which will be activated upon the configuration
6d0f6bcf 21 * #define CONFIG_SYS_NVRAM_ACCESS_ROUTINE. Note, that those functions are
c609719b
WD
22 * strongly dependent on the used HW, and must be redefined for each
23 * board that wants to use them.
24 */
25
26#include <common.h>
c609719b 27#include <command.h>
7b51b576 28#include <env.h>
f3998fdc 29#include <env_internal.h>
401d1c4f 30#include <asm/global_data.h>
c609719b 31#include <linux/stddef.h>
ea882baf
WD
32#include <search.h>
33#include <errno.h>
3db71108 34#include <u-boot/crc.h>
c609719b 35
957a0e69
JCPV
36DECLARE_GLOBAL_DATA_PTR;
37
6d0f6bcf 38#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
c609719b
WD
39extern void *nvram_read(void *dest, const long src, size_t count);
40extern void nvram_write(long dest, const void *src, size_t count);
c609719b 41#else
46d9d1c3 42static env_t *env_ptr = (env_t *)CONFIG_ENV_ADDR;
c609719b
WD
43#endif
44
bf95df44 45#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
b2cdef48
GS
46/** Call this function from overridden env_get_char_spec() if you need
47 * this functionality.
48 */
49int env_nvram_get_char(int index)
c609719b 50{
c609719b
WD
51 uchar c;
52
91494ca6 53 nvram_read(&c, CONFIG_ENV_ADDR + index, 1);
c609719b
WD
54
55 return c;
c609719b 56}
bf95df44 57#endif
c609719b 58
c5951991 59static int env_nvram_load(void)
c609719b 60{
cd0f4fa1 61 char buf[CONFIG_ENV_SIZE];
ea882baf 62
6d0f6bcf 63#if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
ea882baf 64 nvram_read(buf, CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
c609719b 65#else
cd0f4fa1 66 memcpy(buf, (void *)CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
c609719b 67#endif
890feeca 68 return env_import(buf, 1, H_EXTERNAL);
c609719b
WD
69}
70
e5bce247 71static int env_nvram_save(void)
c609719b 72{
cd0f4fa1 73 env_t env_new;
ea882baf
WD
74 int rcode = 0;
75
7ce1526e
MV
76 rcode = env_export(&env_new);
77 if (rcode)
78 return rcode;
ea882baf 79
6d0f6bcf 80#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
cd0f4fa1
TR
81 nvram_write(CONFIG_ENV_ADDR, &env_new, CONFIG_ENV_SIZE);
82#else
83 if (memcpy((char *)CONFIG_ENV_ADDR, &env_new, CONFIG_ENV_SIZE) == NULL)
84 rcode = 1;
c609719b
WD
85#endif
86 return rcode;
87}
88
ea882baf 89/*
c609719b
WD
90 * Initialize Environment use
91 *
92 * We are still running from ROM, so data use is limited
93 */
e5bce247 94static int env_nvram_init(void)
c609719b 95{
6d0f6bcf 96#if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
c609719b 97 ulong crc;
cd0f4fa1 98 uchar data[ENV_SIZE];
ea882baf
WD
99
100 nvram_read(&crc, CONFIG_ENV_ADDR, sizeof(ulong));
91494ca6 101 nvram_read(data, CONFIG_ENV_ADDR + sizeof(ulong), ENV_SIZE);
c609719b
WD
102
103 if (crc32(0, data, ENV_SIZE) == crc) {
91494ca6 104 gd->env_addr = (ulong)CONFIG_ENV_ADDR + sizeof(long);
c609719b
WD
105#else
106 if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {
91494ca6 107 gd->env_addr = (ulong)&env_ptr->data;
c609719b 108#endif
203e94f6 109 gd->env_valid = ENV_VALID;
c609719b 110 } else {
91494ca6 111 gd->env_addr = (ulong)&default_environment[0];
2d7cb5b4 112 gd->env_valid = ENV_INVALID;
c609719b 113 }
91494ca6
IG
114
115 return 0;
c609719b 116}
4415f1d1
SG
117
118U_BOOT_ENV_LOCATION(nvram) = {
119 .location = ENVL_NVRAM,
ac358beb 120 ENV_NAME("NVRAM")
e5bce247
SG
121 .load = env_nvram_load,
122 .save = env_save_ptr(env_nvram_save),
123 .init = env_nvram_init,
4415f1d1 124};
This page took 0.364224 seconds and 4 git commands to generate.