blob: f4126858b5b4cd700c6bdffab005cce944c123b4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02003 * (C) Copyright 2000-2010
wdenkc6097192002-11-03 00:24:07 +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>
wdenkc6097192002-11-03 00:24:07 +00008 */
9
10/*
11 * 09-18-2001 Andreas Heppel, Sysgo RTS GmbH <aheppel@sysgo.de>
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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020021 * #define CONFIG_SYS_NVRAM_ACCESS_ROUTINE. Note, that those functions are
wdenkc6097192002-11-03 00:24:07 +000022 * 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>
wdenkc6097192002-11-03 00:24:07 +000027#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -060028#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060029#include <env_internal.h>
Simon Glass401d1c42020-10-30 21:38:53 -060030#include <asm/global_data.h>
wdenkc6097192002-11-03 00:24:07 +000031#include <linux/stddef.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020032#include <search.h>
33#include <errno.h>
Simon Glass3db71102019-11-14 12:57:16 -070034#include <u-boot/crc.h>
wdenkc6097192002-11-03 00:24:07 +000035
Jean-Christophe PLAGNIOL-VILLARD957a0e62008-09-10 22:47:59 +020036DECLARE_GLOBAL_DATA_PTR;
37
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
wdenkc6097192002-11-03 00:24:07 +000039extern void *nvram_read(void *dest, const long src, size_t count);
40extern void nvram_write(long dest, const void *src, size_t count);
wdenkc6097192002-11-03 00:24:07 +000041#else
Rasmus Villemoes46d9d1c2020-02-18 08:54:09 +000042static env_t *env_ptr = (env_t *)CONFIG_ENV_ADDR;
wdenkc6097192002-11-03 00:24:07 +000043#endif
44
Igor Grinbergbf95df42011-12-26 03:33:10 +000045#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
Goldschmidt Simonb2cdef42018-02-09 20:23:17 +000046/** Call this function from overridden env_get_char_spec() if you need
47 * this functionality.
48 */
49int env_nvram_get_char(int index)
wdenkc6097192002-11-03 00:24:07 +000050{
wdenkc6097192002-11-03 00:24:07 +000051 uchar c;
52
Igor Grinberg91494ca2011-11-07 01:14:04 +000053 nvram_read(&c, CONFIG_ENV_ADDR + index, 1);
wdenkc6097192002-11-03 00:24:07 +000054
55 return c;
wdenkc6097192002-11-03 00:24:07 +000056}
Igor Grinbergbf95df42011-12-26 03:33:10 +000057#endif
wdenkc6097192002-11-03 00:24:07 +000058
Simon Glassc5951992017-08-03 12:22:17 -060059static int env_nvram_load(void)
wdenkc6097192002-11-03 00:24:07 +000060{
Tom Rinicd0f4fa2013-04-05 14:55:21 -040061 char buf[CONFIG_ENV_SIZE];
Wolfgang Denkea882ba2010-06-20 23:33:59 +020062
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063#if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +020064 nvram_read(buf, CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +000065#else
Tom Rinicd0f4fa2013-04-05 14:55:21 -040066 memcpy(buf, (void *)CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +000067#endif
Marek Vasut890feec2020-07-07 20:51:35 +020068 return env_import(buf, 1, H_EXTERNAL);
wdenkc6097192002-11-03 00:24:07 +000069}
70
Simon Glasse5bce242017-08-03 12:22:01 -060071static int env_nvram_save(void)
wdenkc6097192002-11-03 00:24:07 +000072{
Tom Rinicd0f4fa2013-04-05 14:55:21 -040073 env_t env_new;
Wolfgang Denkea882ba2010-06-20 23:33:59 +020074 int rcode = 0;
75
Marek Vasut7ce15262014-03-05 19:59:50 +010076 rcode = env_export(&env_new);
77 if (rcode)
78 return rcode;
Wolfgang Denkea882ba2010-06-20 23:33:59 +020079
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
Tom Rinicd0f4fa2013-04-05 14:55:21 -040081 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;
wdenkc6097192002-11-03 00:24:07 +000085#endif
86 return rcode;
87}
88
Wolfgang Denkea882ba2010-06-20 23:33:59 +020089/*
wdenkc6097192002-11-03 00:24:07 +000090 * Initialize Environment use
91 *
92 * We are still running from ROM, so data use is limited
93 */
Simon Glasse5bce242017-08-03 12:22:01 -060094static int env_nvram_init(void)
wdenkc6097192002-11-03 00:24:07 +000095{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096#if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
wdenkc6097192002-11-03 00:24:07 +000097 ulong crc;
Tom Rinicd0f4fa2013-04-05 14:55:21 -040098 uchar data[ENV_SIZE];
Wolfgang Denkea882ba2010-06-20 23:33:59 +020099
100 nvram_read(&crc, CONFIG_ENV_ADDR, sizeof(ulong));
Igor Grinberg91494ca2011-11-07 01:14:04 +0000101 nvram_read(data, CONFIG_ENV_ADDR + sizeof(ulong), ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000102
103 if (crc32(0, data, ENV_SIZE) == crc) {
Igor Grinberg91494ca2011-11-07 01:14:04 +0000104 gd->env_addr = (ulong)CONFIG_ENV_ADDR + sizeof(long);
wdenkc6097192002-11-03 00:24:07 +0000105#else
106 if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {
Igor Grinberg91494ca2011-11-07 01:14:04 +0000107 gd->env_addr = (ulong)&env_ptr->data;
wdenkc6097192002-11-03 00:24:07 +0000108#endif
Simon Glass203e94f2017-08-03 12:21:56 -0600109 gd->env_valid = ENV_VALID;
wdenkc6097192002-11-03 00:24:07 +0000110 } else {
Igor Grinberg91494ca2011-11-07 01:14:04 +0000111 gd->env_addr = (ulong)&default_environment[0];
Simon Glass2d7cb5b2017-08-20 04:45:15 -0600112 gd->env_valid = ENV_INVALID;
wdenkc6097192002-11-03 00:24:07 +0000113 }
Igor Grinberg91494ca2011-11-07 01:14:04 +0000114
115 return 0;
wdenkc6097192002-11-03 00:24:07 +0000116}
Simon Glass4415f1d2017-08-03 12:21:58 -0600117
118U_BOOT_ENV_LOCATION(nvram) = {
119 .location = ENVL_NVRAM,
Simon Glassac358be2017-08-03 12:22:03 -0600120 ENV_NAME("NVRAM")
Simon Glasse5bce242017-08-03 12:22:01 -0600121 .load = env_nvram_load,
122 .save = env_save_ptr(env_nvram_save),
123 .init = env_nvram_init,
Simon Glass4415f1d2017-08-03 12:21:58 -0600124};