blob: d91fdbaa4abff0e121faa38d6af7d2b54e8c19db [file] [log] [blame]
Joe Hershberger2b744332013-04-08 10:32:51 +00001/*
2 * (c) Copyright 2012 by National Instruments,
3 * Joe Hershberger <joe.hershberger@ni.com>
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
Joe Hershberger2b744332013-04-08 10:32:51 +00006 */
7
8#include <common.h>
9
10#include <command.h>
11#include <environment.h>
12#include <errno.h>
13#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060014#include <memalign.h>
Joe Hershberger2b744332013-04-08 10:32:51 +000015#include <search.h>
16#include <ubi_uboot.h>
17#undef crc32
18
19char *env_name_spec = "UBI";
20
21env_t *env_ptr;
22
23DECLARE_GLOBAL_DATA_PTR;
24
25int env_init(void)
26{
27 /* use default */
28 gd->env_addr = (ulong)&default_environment[0];
Simon Glass203e94f2017-08-03 12:21:56 -060029 gd->env_valid = ENV_VALID;
Joe Hershberger2b744332013-04-08 10:32:51 +000030
31 return 0;
32}
33
34#ifdef CONFIG_CMD_SAVEENV
Joe Hershberger785881f2013-04-08 10:32:52 +000035#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
Joe Hershberger785881f2013-04-08 10:32:52 +000036int saveenv(void)
37{
38 ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1);
Marek Vasut7ce15262014-03-05 19:59:50 +010039 int ret;
Joe Hershberger785881f2013-04-08 10:32:52 +000040
Marek Vasut7ce15262014-03-05 19:59:50 +010041 ret = env_export(env_new);
42 if (ret)
43 return ret;
Joe Hershberger785881f2013-04-08 10:32:52 +000044
45 if (ubi_part(CONFIG_ENV_UBI_PART, NULL)) {
46 printf("\n** Cannot find mtd partition \"%s\"\n",
47 CONFIG_ENV_UBI_PART);
48 return 1;
49 }
50
Simon Glass203e94f2017-08-03 12:21:56 -060051 if (gd->env_valid == ENV_VALID) {
Joe Hershberger785881f2013-04-08 10:32:52 +000052 puts("Writing to redundant UBI... ");
53 if (ubi_volume_write(CONFIG_ENV_UBI_VOLUME_REDUND,
54 (void *)env_new, CONFIG_ENV_SIZE)) {
55 printf("\n** Unable to write env to %s:%s **\n",
56 CONFIG_ENV_UBI_PART,
57 CONFIG_ENV_UBI_VOLUME_REDUND);
58 return 1;
59 }
60 } else {
61 puts("Writing to UBI... ");
62 if (ubi_volume_write(CONFIG_ENV_UBI_VOLUME,
63 (void *)env_new, CONFIG_ENV_SIZE)) {
64 printf("\n** Unable to write env to %s:%s **\n",
65 CONFIG_ENV_UBI_PART,
66 CONFIG_ENV_UBI_VOLUME);
67 return 1;
68 }
69 }
70
71 puts("done\n");
72
Simon Glass203e94f2017-08-03 12:21:56 -060073 gd->env_valid = gd->env_valid == ENV_REDUND ? ENV_VALID : ENV_REDUND;
Joe Hershberger785881f2013-04-08 10:32:52 +000074
75 return 0;
76}
77#else /* ! CONFIG_SYS_REDUNDAND_ENVIRONMENT */
Joe Hershberger2b744332013-04-08 10:32:51 +000078int saveenv(void)
79{
80 ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1);
Marek Vasut7ce15262014-03-05 19:59:50 +010081 int ret;
Joe Hershberger2b744332013-04-08 10:32:51 +000082
Marek Vasut7ce15262014-03-05 19:59:50 +010083 ret = env_export(env_new);
84 if (ret)
85 return ret;
Joe Hershberger2b744332013-04-08 10:32:51 +000086
87 if (ubi_part(CONFIG_ENV_UBI_PART, NULL)) {
88 printf("\n** Cannot find mtd partition \"%s\"\n",
89 CONFIG_ENV_UBI_PART);
90 return 1;
91 }
92
Joe Hershberger2b744332013-04-08 10:32:51 +000093 if (ubi_volume_write(CONFIG_ENV_UBI_VOLUME, (void *)env_new,
94 CONFIG_ENV_SIZE)) {
95 printf("\n** Unable to write env to %s:%s **\n",
96 CONFIG_ENV_UBI_PART, CONFIG_ENV_UBI_VOLUME);
97 return 1;
98 }
99
100 puts("done\n");
101 return 0;
102}
Joe Hershberger785881f2013-04-08 10:32:52 +0000103#endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
Joe Hershberger2b744332013-04-08 10:32:51 +0000104#endif /* CONFIG_CMD_SAVEENV */
105
Joe Hershberger785881f2013-04-08 10:32:52 +0000106#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
107void env_relocate_spec(void)
108{
109 ALLOC_CACHE_ALIGN_BUFFER(char, env1_buf, CONFIG_ENV_SIZE);
110 ALLOC_CACHE_ALIGN_BUFFER(char, env2_buf, CONFIG_ENV_SIZE);
Fiach Antaw9d364af2017-01-25 18:53:12 +1000111 env_t *tmp_env1, *tmp_env2;
Joe Hershberger785881f2013-04-08 10:32:52 +0000112
Marcin Niestrojc1f51e02016-05-24 14:59:55 +0200113 /*
114 * In case we have restarted u-boot there is a chance that buffer
115 * contains old environment (from the previous boot).
116 * If UBI volume is zero size, ubi_volume_read() doesn't modify the
117 * buffer.
118 * We need to clear buffer manually here, so the invalid CRC will
119 * cause setting default environment as expected.
120 */
121 memset(env1_buf, 0x0, CONFIG_ENV_SIZE);
122 memset(env2_buf, 0x0, CONFIG_ENV_SIZE);
123
Joe Hershberger785881f2013-04-08 10:32:52 +0000124 tmp_env1 = (env_t *)env1_buf;
125 tmp_env2 = (env_t *)env2_buf;
126
127 if (ubi_part(CONFIG_ENV_UBI_PART, NULL)) {
128 printf("\n** Cannot find mtd partition \"%s\"\n",
129 CONFIG_ENV_UBI_PART);
130 set_default_env(NULL);
131 return;
132 }
133
134 if (ubi_volume_read(CONFIG_ENV_UBI_VOLUME, (void *)tmp_env1,
135 CONFIG_ENV_SIZE)) {
136 printf("\n** Unable to read env from %s:%s **\n",
137 CONFIG_ENV_UBI_PART, CONFIG_ENV_UBI_VOLUME);
138 }
139
140 if (ubi_volume_read(CONFIG_ENV_UBI_VOLUME_REDUND, (void *)tmp_env2,
141 CONFIG_ENV_SIZE)) {
142 printf("\n** Unable to read redundant env from %s:%s **\n",
143 CONFIG_ENV_UBI_PART, CONFIG_ENV_UBI_VOLUME_REDUND);
144 }
145
Fiach Antaw9d364af2017-01-25 18:53:12 +1000146 env_import_redund((char *)tmp_env1, (char *)tmp_env2);
Joe Hershberger785881f2013-04-08 10:32:52 +0000147}
148#else /* ! CONFIG_SYS_REDUNDAND_ENVIRONMENT */
Joe Hershberger2b744332013-04-08 10:32:51 +0000149void env_relocate_spec(void)
150{
151 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
152
Marcin Niestrojc1f51e02016-05-24 14:59:55 +0200153 /*
154 * In case we have restarted u-boot there is a chance that buffer
155 * contains old environment (from the previous boot).
156 * If UBI volume is zero size, ubi_volume_read() doesn't modify the
157 * buffer.
158 * We need to clear buffer manually here, so the invalid CRC will
159 * cause setting default environment as expected.
160 */
161 memset(buf, 0x0, CONFIG_ENV_SIZE);
162
Joe Hershberger2b744332013-04-08 10:32:51 +0000163 if (ubi_part(CONFIG_ENV_UBI_PART, NULL)) {
164 printf("\n** Cannot find mtd partition \"%s\"\n",
165 CONFIG_ENV_UBI_PART);
166 set_default_env(NULL);
167 return;
168 }
169
Kevin Smitha7c06cd2015-10-23 17:51:47 +0000170 if (ubi_volume_read(CONFIG_ENV_UBI_VOLUME, buf, CONFIG_ENV_SIZE)) {
Joe Hershberger2b744332013-04-08 10:32:51 +0000171 printf("\n** Unable to read env from %s:%s **\n",
172 CONFIG_ENV_UBI_PART, CONFIG_ENV_UBI_VOLUME);
173 set_default_env(NULL);
174 return;
175 }
176
177 env_import(buf, 1);
178}
Joe Hershberger785881f2013-04-08 10:32:52 +0000179#endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
Simon Glass4415f1d2017-08-03 12:21:58 -0600180
181U_BOOT_ENV_LOCATION(ubi) = {
182 .location = ENVL_UBI,
183 .get_char = env_get_char_spec,
184 .load = env_relocate_spec,
185 .save = env_save_ptr(saveenv),
186 .init = env_init,
187};