blob: bb760a00ed82db5b563fc861437f3ae1f9aa2049 [file] [log] [blame]
Terry Lva8060352010-05-17 10:57:01 +08001/*
Mingkai Hu97039ab2011-01-24 17:09:55 +00002 * (C) Copyright 2008-2011 Freescale Semiconductor, Inc.
Terry Lva8060352010-05-17 10:57:01 +08003 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02004 * SPDX-License-Identifier: GPL-2.0+
Terry Lva8060352010-05-17 10:57:01 +08005 */
6
7/* #define DEBUG */
8
9#include <common.h>
10
11#include <command.h>
12#include <environment.h>
Philipp Tomsichf8b8a552017-05-16 00:16:31 +020013#include <fdtdec.h>
Terry Lva8060352010-05-17 10:57:01 +080014#include <linux/stddef.h>
15#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060016#include <memalign.h>
Terry Lva8060352010-05-17 10:57:01 +080017#include <mmc.h>
Lei Wen6d1d51b2010-11-10 07:39:23 +080018#include <search.h>
Lei Wene79f4832010-10-13 11:07:21 +080019#include <errno.h>
Terry Lva8060352010-05-17 10:57:01 +080020
Michael Heimpoldd196bd82013-04-10 10:36:19 +000021#if defined(CONFIG_ENV_SIZE_REDUND) && \
22 (CONFIG_ENV_SIZE_REDUND != CONFIG_ENV_SIZE)
23#error CONFIG_ENV_SIZE_REDUND should be the same as CONFIG_ENV_SIZE
24#endif
25
Terry Lva8060352010-05-17 10:57:01 +080026char *env_name_spec = "MMC";
27
28#ifdef ENV_IS_EMBEDDED
Igor Grinberg994bc672011-11-17 06:07:23 +000029env_t *env_ptr = &environment;
Terry Lva8060352010-05-17 10:57:01 +080030#else /* ! ENV_IS_EMBEDDED */
Igor Grinberge8db8f72011-11-07 01:14:05 +000031env_t *env_ptr;
Terry Lva8060352010-05-17 10:57:01 +080032#endif /* ENV_IS_EMBEDDED */
33
Terry Lva8060352010-05-17 10:57:01 +080034DECLARE_GLOBAL_DATA_PTR;
35
Mingkai Hu97039ab2011-01-24 17:09:55 +000036#if !defined(CONFIG_ENV_OFFSET)
37#define CONFIG_ENV_OFFSET 0
38#endif
39
Philipp Tomsichf8b8a552017-05-16 00:16:31 +020040#if CONFIG_IS_ENABLED(OF_CONTROL)
41static inline s64 mmc_offset(int copy)
Mingkai Hu97039ab2011-01-24 17:09:55 +000042{
Philipp Tomsichf8b8a552017-05-16 00:16:31 +020043 const char *propname = "u-boot,mmc-env-offset";
44 s64 defvalue = CONFIG_ENV_OFFSET;
Stephen Warren5c088ee2013-06-11 15:14:02 -060045
Philipp Tomsichf8b8a552017-05-16 00:16:31 +020046#if defined(CONFIG_ENV_OFFSET_REDUND)
47 if (copy) {
48 propname = "u-boot,mmc-env-offset-redundant";
49 defvalue = CONFIG_ENV_OFFSET_REDUND;
50 }
51#endif
52
53 return fdtdec_get_config_int(gd->fdt_blob, propname, defvalue);
54}
55#else
56static inline s64 mmc_offset(int copy)
57{
58 s64 offset = CONFIG_ENV_OFFSET;
59
60#if defined(CONFIG_ENV_OFFSET_REDUND)
Michael Heimpoldd196bd82013-04-10 10:36:19 +000061 if (copy)
Stephen Warren5c088ee2013-06-11 15:14:02 -060062 offset = CONFIG_ENV_OFFSET_REDUND;
Michael Heimpoldd196bd82013-04-10 10:36:19 +000063#endif
Philipp Tomsichf8b8a552017-05-16 00:16:31 +020064 return offset;
65}
66#endif
67
68__weak int mmc_get_env_addr(struct mmc *mmc, int copy, u32 *env_addr)
69{
70 s64 offset = mmc_offset(copy);
Stephen Warren5c088ee2013-06-11 15:14:02 -060071
72 if (offset < 0)
73 offset += mmc->capacity;
74
75 *env_addr = offset;
76
Mingkai Hu97039ab2011-01-24 17:09:55 +000077 return 0;
78}
Mingkai Hu97039ab2011-01-24 17:09:55 +000079
Clemens Grubere92029c2016-01-20 15:43:37 +010080__weak int mmc_get_env_dev(void)
81{
82 return CONFIG_SYS_MMC_ENV_DEV;
83}
84
Terry Lva8060352010-05-17 10:57:01 +080085int env_init(void)
86{
87 /* use default */
Igor Grinberge8db8f72011-11-07 01:14:05 +000088 gd->env_addr = (ulong)&default_environment[0];
89 gd->env_valid = 1;
Terry Lva8060352010-05-17 10:57:01 +080090
91 return 0;
92}
93
Tom Rinib9c8cca2014-03-28 12:03:34 -040094#ifdef CONFIG_SYS_MMC_ENV_PART
Dmitry Lifshitz6e7b7df2014-07-30 13:19:06 +030095__weak uint mmc_get_env_part(struct mmc *mmc)
96{
97 return CONFIG_SYS_MMC_ENV_PART;
98}
99
Stephen Warren873cc1d2015-12-07 11:38:49 -0700100static unsigned char env_mmc_orig_hwpart;
101
Dmitry Lifshitz6e7b7df2014-07-30 13:19:06 +0300102static int mmc_set_env_part(struct mmc *mmc)
103{
104 uint part = mmc_get_env_part(mmc);
Clemens Grubere92029c2016-01-20 15:43:37 +0100105 int dev = mmc_get_env_dev();
Dmitry Lifshitz6e7b7df2014-07-30 13:19:06 +0300106 int ret = 0;
Tom Rinib9c8cca2014-03-28 12:03:34 -0400107
Simon Glass69f45cd2016-05-01 13:52:29 -0600108 env_mmc_orig_hwpart = mmc_get_blk_desc(mmc)->hwpart;
109 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
Stephen Warren873cc1d2015-12-07 11:38:49 -0700110 if (ret)
111 puts("MMC partition switch failed\n");
Dmitry Lifshitz6e7b7df2014-07-30 13:19:06 +0300112
113 return ret;
114}
115#else
116static inline int mmc_set_env_part(struct mmc *mmc) {return 0; };
Tom Rinib9c8cca2014-03-28 12:03:34 -0400117#endif
118
Tim Harveyc75648d2015-05-08 14:52:09 -0700119static const char *init_mmc_for_env(struct mmc *mmc)
Dmitry Lifshitz6e7b7df2014-07-30 13:19:06 +0300120{
Tim Harveyc75648d2015-05-08 14:52:09 -0700121 if (!mmc)
Hans de Goedea85da212015-08-15 20:05:01 +0200122 return "!No MMC card found";
Terry Lva8060352010-05-17 10:57:01 +0800123
Simon Glass01b73fe2017-05-27 11:37:18 -0600124#ifdef CONFIG_BLK
125 struct udevice *dev;
126
127 if (blk_get_from_parent(mmc->dev, &dev))
128 return "!No block device";
129#else
Tim Harveyc75648d2015-05-08 14:52:09 -0700130 if (mmc_init(mmc))
Hans de Goedea85da212015-08-15 20:05:01 +0200131 return "!MMC init failed";
Simon Glasse7017a32017-04-23 20:02:04 -0600132#endif
Tim Harveyc75648d2015-05-08 14:52:09 -0700133 if (mmc_set_env_part(mmc))
Hans de Goedea85da212015-08-15 20:05:01 +0200134 return "!MMC partition switch failed";
Tim Harveyc75648d2015-05-08 14:52:09 -0700135
136 return NULL;
Terry Lva8060352010-05-17 10:57:01 +0800137}
138
Stephen Warren9404a5f2012-07-30 10:55:44 +0000139static void fini_mmc_for_env(struct mmc *mmc)
140{
141#ifdef CONFIG_SYS_MMC_ENV_PART
Clemens Grubere92029c2016-01-20 15:43:37 +0100142 int dev = mmc_get_env_dev();
Tom Rinib9c8cca2014-03-28 12:03:34 -0400143
Simon Glass69f45cd2016-05-01 13:52:29 -0600144 blk_select_hwpart_devnum(IF_TYPE_MMC, dev, env_mmc_orig_hwpart);
Stephen Warren9404a5f2012-07-30 10:55:44 +0000145#endif
146}
147
Terry Lva8060352010-05-17 10:57:01 +0800148#ifdef CONFIG_CMD_SAVEENV
Igor Grinberge8db8f72011-11-07 01:14:05 +0000149static inline int write_env(struct mmc *mmc, unsigned long size,
150 unsigned long offset, const void *buffer)
Terry Lva8060352010-05-17 10:57:01 +0800151{
152 uint blk_start, blk_cnt, n;
Simon Glass5461acb2016-05-14 14:03:03 -0600153 struct blk_desc *desc = mmc_get_blk_desc(mmc);
Terry Lva8060352010-05-17 10:57:01 +0800154
Igor Grinberge8db8f72011-11-07 01:14:05 +0000155 blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len;
156 blk_cnt = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len;
Terry Lva8060352010-05-17 10:57:01 +0800157
Simon Glass5461acb2016-05-14 14:03:03 -0600158 n = blk_dwrite(desc, blk_start, blk_cnt, (u_char *)buffer);
Terry Lva8060352010-05-17 10:57:01 +0800159
160 return (n == blk_cnt) ? 0 : -1;
161}
162
163int saveenv(void)
164{
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400165 ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1);
Clemens Grubere92029c2016-01-20 15:43:37 +0100166 int dev = mmc_get_env_dev();
167 struct mmc *mmc = find_mmc_device(dev);
Igor Grinberge8db8f72011-11-07 01:14:05 +0000168 u32 offset;
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000169 int ret, copy = 0;
Tim Harveyc75648d2015-05-08 14:52:09 -0700170 const char *errmsg;
Terry Lva8060352010-05-17 10:57:01 +0800171
Tim Harveyc75648d2015-05-08 14:52:09 -0700172 errmsg = init_mmc_for_env(mmc);
173 if (errmsg) {
174 printf("%s\n", errmsg);
Mingkai Hu97039ab2011-01-24 17:09:55 +0000175 return 1;
Tim Harveyc75648d2015-05-08 14:52:09 -0700176 }
Mingkai Hu97039ab2011-01-24 17:09:55 +0000177
Marek Vasut7ce15262014-03-05 19:59:50 +0100178 ret = env_export(env_new);
179 if (ret)
Stephen Warren9404a5f2012-07-30 10:55:44 +0000180 goto fini;
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000181
182#ifdef CONFIG_ENV_OFFSET_REDUND
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000183 if (gd->env_valid == 1)
184 copy = 1;
185#endif
186
187 if (mmc_get_env_addr(mmc, copy, &offset)) {
188 ret = 1;
189 goto fini;
190 }
191
Clemens Grubere92029c2016-01-20 15:43:37 +0100192 printf("Writing to %sMMC(%d)... ", copy ? "redundant " : "", dev);
Stephen Warren4036b632012-05-24 11:38:33 +0000193 if (write_env(mmc, CONFIG_ENV_SIZE, offset, (u_char *)env_new)) {
Terry Lva8060352010-05-17 10:57:01 +0800194 puts("failed\n");
Stephen Warren9404a5f2012-07-30 10:55:44 +0000195 ret = 1;
196 goto fini;
Terry Lva8060352010-05-17 10:57:01 +0800197 }
198
199 puts("done\n");
Stephen Warren9404a5f2012-07-30 10:55:44 +0000200 ret = 0;
201
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000202#ifdef CONFIG_ENV_OFFSET_REDUND
203 gd->env_valid = gd->env_valid == 2 ? 1 : 2;
204#endif
205
Stephen Warren9404a5f2012-07-30 10:55:44 +0000206fini:
207 fini_mmc_for_env(mmc);
208 return ret;
Terry Lva8060352010-05-17 10:57:01 +0800209}
210#endif /* CONFIG_CMD_SAVEENV */
211
Igor Grinberge8db8f72011-11-07 01:14:05 +0000212static inline int read_env(struct mmc *mmc, unsigned long size,
213 unsigned long offset, const void *buffer)
Terry Lva8060352010-05-17 10:57:01 +0800214{
215 uint blk_start, blk_cnt, n;
Simon Glass5461acb2016-05-14 14:03:03 -0600216 struct blk_desc *desc = mmc_get_blk_desc(mmc);
Terry Lva8060352010-05-17 10:57:01 +0800217
Igor Grinberge8db8f72011-11-07 01:14:05 +0000218 blk_start = ALIGN(offset, mmc->read_bl_len) / mmc->read_bl_len;
219 blk_cnt = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len;
Terry Lva8060352010-05-17 10:57:01 +0800220
Simon Glass5461acb2016-05-14 14:03:03 -0600221 n = blk_dread(desc, blk_start, blk_cnt, (uchar *)buffer);
Terry Lva8060352010-05-17 10:57:01 +0800222
223 return (n == blk_cnt) ? 0 : -1;
224}
225
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000226#ifdef CONFIG_ENV_OFFSET_REDUND
227void env_relocate_spec(void)
228{
229#if !defined(ENV_IS_EMBEDDED)
Tom Rinib9c8cca2014-03-28 12:03:34 -0400230 struct mmc *mmc;
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000231 u32 offset1, offset2;
232 int read1_fail = 0, read2_fail = 0;
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000233 int ret;
Clemens Grubere92029c2016-01-20 15:43:37 +0100234 int dev = mmc_get_env_dev();
Tim Harveyc75648d2015-05-08 14:52:09 -0700235 const char *errmsg = NULL;
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000236
Markus Niebel452a2722013-10-04 15:48:03 +0200237 ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env1, 1);
238 ALLOC_CACHE_ALIGN_BUFFER(env_t, tmp_env2, 1);
239
Tom Rinib9c8cca2014-03-28 12:03:34 -0400240 mmc = find_mmc_device(dev);
241
Tim Harveyc75648d2015-05-08 14:52:09 -0700242 errmsg = init_mmc_for_env(mmc);
243 if (errmsg) {
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000244 ret = 1;
245 goto err;
246 }
247
248 if (mmc_get_env_addr(mmc, 0, &offset1) ||
249 mmc_get_env_addr(mmc, 1, &offset2)) {
250 ret = 1;
251 goto fini;
252 }
253
254 read1_fail = read_env(mmc, CONFIG_ENV_SIZE, offset1, tmp_env1);
255 read2_fail = read_env(mmc, CONFIG_ENV_SIZE, offset2, tmp_env2);
256
257 if (read1_fail && read2_fail)
258 puts("*** Error - No Valid Environment Area found\n");
259 else if (read1_fail || read2_fail)
260 puts("*** Warning - some problems detected "
261 "reading environment; recovered successfully\n");
262
Fiach Antaw9d364af2017-01-25 18:53:12 +1000263 if (read1_fail && read2_fail) {
Tim Harveyc75648d2015-05-08 14:52:09 -0700264 errmsg = "!bad CRC";
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000265 ret = 1;
266 goto fini;
Fiach Antaw9d364af2017-01-25 18:53:12 +1000267 } else if (!read1_fail && read2_fail) {
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000268 gd->env_valid = 1;
Fiach Antaw9d364af2017-01-25 18:53:12 +1000269 env_import((char *)tmp_env1, 1);
270 } else if (read1_fail && !read2_fail) {
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000271 gd->env_valid = 2;
Fiach Antaw9d364af2017-01-25 18:53:12 +1000272 env_import((char *)tmp_env2, 1);
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000273 } else {
Fiach Antaw9d364af2017-01-25 18:53:12 +1000274 env_import_redund((char *)tmp_env1, (char *)tmp_env2);
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000275 }
276
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000277 ret = 0;
278
279fini:
280 fini_mmc_for_env(mmc);
281err:
282 if (ret)
Tim Harveyc75648d2015-05-08 14:52:09 -0700283 set_default_env(errmsg);
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000284#endif
285}
286#else /* ! CONFIG_ENV_OFFSET_REDUND */
Terry Lva8060352010-05-17 10:57:01 +0800287void env_relocate_spec(void)
288{
289#if !defined(ENV_IS_EMBEDDED)
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400290 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Tom Rinib9c8cca2014-03-28 12:03:34 -0400291 struct mmc *mmc;
Mingkai Hu97039ab2011-01-24 17:09:55 +0000292 u32 offset;
Stephen Warren9404a5f2012-07-30 10:55:44 +0000293 int ret;
Clemens Grubere92029c2016-01-20 15:43:37 +0100294 int dev = mmc_get_env_dev();
Tim Harveyc75648d2015-05-08 14:52:09 -0700295 const char *errmsg;
Tom Rinib9c8cca2014-03-28 12:03:34 -0400296
Tom Rinib9c8cca2014-03-28 12:03:34 -0400297 mmc = find_mmc_device(dev);
Terry Lva8060352010-05-17 10:57:01 +0800298
Tim Harveyc75648d2015-05-08 14:52:09 -0700299 errmsg = init_mmc_for_env(mmc);
300 if (errmsg) {
Stephen Warren9404a5f2012-07-30 10:55:44 +0000301 ret = 1;
302 goto err;
303 }
Terry Lva8060352010-05-17 10:57:01 +0800304
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000305 if (mmc_get_env_addr(mmc, 0, &offset)) {
Stephen Warren9404a5f2012-07-30 10:55:44 +0000306 ret = 1;
307 goto fini;
308 }
309
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400310 if (read_env(mmc, CONFIG_ENV_SIZE, offset, buf)) {
Tim Harveyc75648d2015-05-08 14:52:09 -0700311 errmsg = "!read failed";
Stephen Warren9404a5f2012-07-30 10:55:44 +0000312 ret = 1;
313 goto fini;
314 }
Terry Lva8060352010-05-17 10:57:01 +0800315
Tom Rinicd0f4fa2013-04-05 14:55:21 -0400316 env_import(buf, 1);
Stephen Warren9404a5f2012-07-30 10:55:44 +0000317 ret = 0;
318
319fini:
320 fini_mmc_for_env(mmc);
321err:
322 if (ret)
Tim Harveyc75648d2015-05-08 14:52:09 -0700323 set_default_env(errmsg);
Terry Lva8060352010-05-17 10:57:01 +0800324#endif
325}
Michael Heimpoldd196bd82013-04-10 10:36:19 +0000326#endif /* CONFIG_ENV_OFFSET_REDUND */