blob: 6251d9649b194237f12047d72faa2296cb5a9784 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Maximilian Schwerin9765c082012-03-12 23:57:50 +00002/*
3 * (c) Copyright 2011 by Tigris Elektronik GmbH
4 *
5 * Author:
6 * Maximilian Schwerin <mvs@tigris.de>
Maximilian Schwerin9765c082012-03-12 23:57:50 +00007 */
8
9#include <common.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000010#include <command.h>
Simon Glass97385862019-08-01 09:47:00 -060011#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060012#include <env_internal.h>
Simon Glass655306c2020-05-10 11:39:58 -060013#include <part.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000014#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060015#include <memalign.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000016#include <search.h>
17#include <errno.h>
18#include <fat.h>
19#include <mmc.h>
Simon Glass655306c2020-05-10 11:39:58 -060020#include <asm/cache.h>
Brandon Maierf2815462021-01-16 15:14:43 -060021#include <asm/global_data.h>
Simon Glass655306c2020-05-10 11:39:58 -060022#include <linux/stddef.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000023
Simon Glassc10a88e2017-08-03 12:21:58 -060024#ifdef CONFIG_SPL_BUILD
25/* TODO(sjg@chromium.org): Figure out why this is needed */
26# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
27# define LOADENV
28# endif
29#else
30# define LOADENV
Simon Glassc10a88e2017-08-03 12:21:58 -060031#endif
32
Brandon Maierf2815462021-01-16 15:14:43 -060033DECLARE_GLOBAL_DATA_PTR;
34
He Yong25936aa2022-02-18 00:07:25 +080035__weak const char *env_fat_get_intf(void)
36{
37 return (const char *)CONFIG_ENV_FAT_INTERFACE;
38}
39
40__weak char *env_fat_get_dev_part(void)
David Woodhouse93365392020-06-19 23:07:17 +010041{
42#ifdef CONFIG_MMC
43 static char *part_str;
44
45 if (!part_str) {
46 part_str = CONFIG_ENV_FAT_DEVICE_AND_PART;
47 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
48 part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART;
49 part_str[0] += mmc_get_env_dev();
50 }
51 }
52
53 return part_str;
54#else
55 return CONFIG_ENV_FAT_DEVICE_AND_PART;
56#endif
57}
58
Simon Glass082af922017-08-03 12:22:01 -060059static int env_fat_save(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000060{
Alex Kiernan28a21372018-02-07 20:01:54 +000061 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glasse3394752016-02-29 15:25:34 -070062 struct blk_desc *dev_desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -060063 struct disk_partition info;
Brandon Maierf2815462021-01-16 15:14:43 -060064 const char *file = CONFIG_ENV_FAT_FILE;
Wu, Josh9b899f22014-06-24 17:31:02 +080065 int dev, part;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000066 int err;
Suriyan Ramasami441c2232014-11-17 14:39:35 -080067 loff_t size;
He Yong25936aa2022-02-18 00:07:25 +080068 const char *ifname = env_fat_get_intf();
69 const char *dev_and_part = env_fat_get_dev_part();
Maximilian Schwerin9765c082012-03-12 23:57:50 +000070
Marek Vasutd73c1292014-03-05 19:59:50 +010071 err = env_export(&env_new);
72 if (err)
73 return err;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000074
He Yong25936aa2022-02-18 00:07:25 +080075 part = blk_get_device_part_str(ifname, dev_and_part,
76 &dev_desc, &info, 1);
Wu, Josh9b899f22014-06-24 17:31:02 +080077 if (part < 0)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000078 return 1;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000079
Simon Glass2f26fff2016-02-29 15:25:51 -070080 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +080081 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +010082 /*
83 * This printf is embedded in the messages from env_save that
84 * will calling it. The missing \n is intentional.
85 */
He Yong25936aa2022-02-18 00:07:25 +080086 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +000087 return 1;
88 }
89
Brandon Maierf2815462021-01-16 15:14:43 -060090#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
91 if (gd->env_valid == ENV_VALID)
92 file = CONFIG_ENV_FAT_FILE_REDUND;
93#endif
94
95 err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size);
Igor Grinberg49eee6e2012-09-23 05:25:21 +000096 if (err == -1) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +010097 /*
98 * This printf is embedded in the messages from env_save that
99 * will calling it. The missing \n is intentional.
100 */
He Yong25936aa2022-02-18 00:07:25 +0800101 printf("Unable to write \"%s\" from %s%d:%d...\n", file, ifname, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000102 return 1;
103 }
104
Brandon Maierf2815462021-01-16 15:14:43 -0600105#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
106 gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND;
107#endif
108
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000109 return 0;
110}
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000111
Simon Glassc10a88e2017-08-03 12:21:58 -0600112#ifdef LOADENV
Simon Glass99778492017-08-03 12:22:17 -0600113static int env_fat_load(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000114{
Brandon Maierf2815462021-01-16 15:14:43 -0600115 ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE);
116#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
117 ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE);
118 int err2;
119#endif
Simon Glasse3394752016-02-29 15:25:34 -0700120 struct blk_desc *dev_desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600121 struct disk_partition info;
Wu, Josh9b899f22014-06-24 17:31:02 +0800122 int dev, part;
Brandon Maierf2815462021-01-16 15:14:43 -0600123 int err1;
He Yong25936aa2022-02-18 00:07:25 +0800124 const char *ifname = env_fat_get_intf();
125 const char *dev_and_part = env_fat_get_dev_part();
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000126
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +0200127#ifdef CONFIG_MMC
He Yong25936aa2022-02-18 00:07:25 +0800128 if (!strcmp(ifname, "mmc"))
Faiz Abbasaae518f2018-02-12 19:24:31 +0530129 mmc_initialize(NULL);
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +0200130#endif
Faiz Abbasaae518f2018-02-12 19:24:31 +0530131
He Yong25936aa2022-02-18 00:07:25 +0800132 part = blk_get_device_part_str(ifname, dev_and_part,
133 &dev_desc, &info, 1);
Wu, Josh9b899f22014-06-24 17:31:02 +0800134 if (part < 0)
135 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000136
Simon Glass2f26fff2016-02-29 15:25:51 -0700137 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +0800138 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100139 /*
140 * This printf is embedded in the messages from env_save that
141 * will calling it. The missing \n is intentional.
142 */
He Yong25936aa2022-02-18 00:07:25 +0800143 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800144 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000145 }
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000146
Brandon Maierf2815462021-01-16 15:14:43 -0600147 err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE);
148#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
149 err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE);
150
151 err1 = (err1 >= 0) ? 0 : -1;
152 err2 = (err2 >= 0) ? 0 : -1;
153 return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL);
154#else
155 if (err1 < 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100156 /*
157 * This printf is embedded in the messages from env_save that
158 * will calling it. The missing \n is intentional.
159 */
Peter Robinsonff6b8a22022-01-02 11:38:35 +0000160 printf("Unable to read \"%s\" from %s%d:%d... \n",
He Yong25936aa2022-02-18 00:07:25 +0800161 CONFIG_ENV_FAT_FILE, ifname, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800162 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000163 }
164
Brandon Maierf2815462021-01-16 15:14:43 -0600165 return env_import(buf1, 1, H_EXTERNAL);
166#endif
Wu, Josh9b899f22014-06-24 17:31:02 +0800167
168err_env_relocate:
Simon Glass97385862019-08-01 09:47:00 -0600169 env_set_default(NULL, 0);
Simon Glass99778492017-08-03 12:22:17 -0600170
171 return -EIO;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000172}
Simon Glassc10a88e2017-08-03 12:21:58 -0600173#endif /* LOADENV */
174
175U_BOOT_ENV_LOCATION(fat) = {
176 .location = ENVL_FAT,
Simon Glassd8273ed2017-08-03 12:22:03 -0600177 ENV_NAME("FAT")
Simon Glassc10a88e2017-08-03 12:21:58 -0600178#ifdef LOADENV
Simon Glass082af922017-08-03 12:22:01 -0600179 .load = env_fat_load,
Simon Glassc10a88e2017-08-03 12:21:58 -0600180#endif
Rasmus Villemoes975ffba2020-02-19 09:47:41 +0000181 .save = ENV_SAVE_PTR(env_fat_save),
Simon Glassc10a88e2017-08-03 12:21:58 -0600182};