blob: 3172130d75d3d639f730d20b3c5aa39a6b3d46b5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Maximilian Schwerin57210c72012-03-12 23:57:50 +00002/*
3 * (c) Copyright 2011 by Tigris Elektronik GmbH
4 *
5 * Author:
6 * Maximilian Schwerin <mvs@tigris.de>
Maximilian Schwerin57210c72012-03-12 23:57:50 +00007 */
8
9#include <common.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000010#include <command.h>
Simon Glass0ac7d722019-08-01 09:47:00 -060011#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060012#include <env_internal.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060013#include <part.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000014#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060015#include <memalign.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000016#include <search.h>
17#include <errno.h>
18#include <fat.h>
19#include <mmc.h>
Rogier Stam54ee5ae2022-05-11 23:20:28 +020020#include <scsi.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060021#include <asm/cache.h>
Brandon Maier2339f012021-01-16 15:14:43 -060022#include <asm/global_data.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060023#include <linux/stddef.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000024
Simon Glass4415f1d2017-08-03 12:21:58 -060025#ifdef CONFIG_SPL_BUILD
26/* TODO(sjg@chromium.org): Figure out why this is needed */
27# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
28# define LOADENV
29# endif
30#else
31# define LOADENV
Simon Glass4415f1d2017-08-03 12:21:58 -060032#endif
33
Brandon Maier2339f012021-01-16 15:14:43 -060034DECLARE_GLOBAL_DATA_PTR;
35
He Yongeb68ead2022-02-18 00:07:25 +080036__weak const char *env_fat_get_intf(void)
37{
38 return (const char *)CONFIG_ENV_FAT_INTERFACE;
39}
40
41__weak char *env_fat_get_dev_part(void)
David Woodhouse6731bef2020-06-19 23:07:17 +010042{
43#ifdef CONFIG_MMC
44 static char *part_str;
45
46 if (!part_str) {
47 part_str = CONFIG_ENV_FAT_DEVICE_AND_PART;
48 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
49 part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART;
50 part_str[0] += mmc_get_env_dev();
51 }
52 }
53
54 return part_str;
55#else
56 return CONFIG_ENV_FAT_DEVICE_AND_PART;
57#endif
58}
59
Simon Glasse5bce242017-08-03 12:22:01 -060060static int env_fat_save(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000061{
Alex Kiernancda87ec2018-02-07 20:01:54 +000062 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glass4101f682016-02-29 15:25:34 -070063 struct blk_desc *dev_desc = NULL;
Simon Glass05289792020-05-10 11:39:57 -060064 struct disk_partition info;
Brandon Maier2339f012021-01-16 15:14:43 -060065 const char *file = CONFIG_ENV_FAT_FILE;
Wu, Joshbe354c12014-06-24 17:31:02 +080066 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000067 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080068 loff_t size;
He Yongeb68ead2022-02-18 00:07:25 +080069 const char *ifname = env_fat_get_intf();
70 const char *dev_and_part = env_fat_get_dev_part();
Maximilian Schwerin57210c72012-03-12 23:57:50 +000071
Marek Vasut7ce15262014-03-05 19:59:50 +010072 err = env_export(&env_new);
73 if (err)
74 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000075
He Yongeb68ead2022-02-18 00:07:25 +080076 part = blk_get_device_part_str(ifname, dev_and_part,
77 &dev_desc, &info, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +080078 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000079 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000080
Simon Glassbcce53d2016-02-29 15:25:51 -070081 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080082 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010083 /*
84 * This printf is embedded in the messages from env_save that
85 * will calling it. The missing \n is intentional.
86 */
He Yongeb68ead2022-02-18 00:07:25 +080087 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000088 return 1;
89 }
90
Brandon Maier2339f012021-01-16 15:14:43 -060091#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
92 if (gd->env_valid == ENV_VALID)
93 file = CONFIG_ENV_FAT_FILE_REDUND;
94#endif
95
96 err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000097 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010098 /*
99 * This printf is embedded in the messages from env_save that
100 * will calling it. The missing \n is intentional.
101 */
He Yongeb68ead2022-02-18 00:07:25 +0800102 printf("Unable to write \"%s\" from %s%d:%d...\n", file, ifname, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000103 return 1;
104 }
105
Brandon Maier2339f012021-01-16 15:14:43 -0600106#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
107 gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND;
108#endif
109
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000110 return 0;
111}
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000112
Simon Glass4415f1d2017-08-03 12:21:58 -0600113#ifdef LOADENV
Simon Glassc5951992017-08-03 12:22:17 -0600114static int env_fat_load(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000115{
Brandon Maier2339f012021-01-16 15:14:43 -0600116 ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE);
117#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
118 ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE);
119 int err2;
120#endif
Simon Glass4101f682016-02-29 15:25:34 -0700121 struct blk_desc *dev_desc = NULL;
Simon Glass05289792020-05-10 11:39:57 -0600122 struct disk_partition info;
Wu, Joshbe354c12014-06-24 17:31:02 +0800123 int dev, part;
Brandon Maier2339f012021-01-16 15:14:43 -0600124 int err1;
He Yongeb68ead2022-02-18 00:07:25 +0800125 const char *ifname = env_fat_get_intf();
126 const char *dev_and_part = env_fat_get_dev_part();
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000127
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +0200128#ifdef CONFIG_MMC
He Yongeb68ead2022-02-18 00:07:25 +0800129 if (!strcmp(ifname, "mmc"))
Faiz Abbas26862b42018-02-12 19:24:31 +0530130 mmc_initialize(NULL);
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +0200131#endif
Rogier Stam54ee5ae2022-05-11 23:20:28 +0200132#ifndef CONFIG_SPL_BUILD
133#if defined(CONFIG_AHCI) || defined(CONFIG_SCSI)
134 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "scsi"))
135 scsi_scan(true);
136#endif
137#endif
He Yongeb68ead2022-02-18 00:07:25 +0800138 part = blk_get_device_part_str(ifname, dev_and_part,
139 &dev_desc, &info, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +0800140 if (part < 0)
141 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000142
Simon Glassbcce53d2016-02-29 15:25:51 -0700143 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +0800144 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100145 /*
146 * This printf is embedded in the messages from env_save that
147 * will calling it. The missing \n is intentional.
148 */
He Yongeb68ead2022-02-18 00:07:25 +0800149 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800150 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000151 }
152
Brandon Maier2339f012021-01-16 15:14:43 -0600153 err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE);
154#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
155 err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE);
156
157 err1 = (err1 >= 0) ? 0 : -1;
158 err2 = (err2 >= 0) ? 0 : -1;
159 return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL);
160#else
161 if (err1 < 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100162 /*
163 * This printf is embedded in the messages from env_save that
164 * will calling it. The missing \n is intentional.
165 */
Peter Robinsonf6f27be2022-01-02 11:38:35 +0000166 printf("Unable to read \"%s\" from %s%d:%d... \n",
He Yongeb68ead2022-02-18 00:07:25 +0800167 CONFIG_ENV_FAT_FILE, ifname, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800168 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000169 }
170
Brandon Maier2339f012021-01-16 15:14:43 -0600171 return env_import(buf1, 1, H_EXTERNAL);
172#endif
Wu, Joshbe354c12014-06-24 17:31:02 +0800173
174err_env_relocate:
Simon Glass0ac7d722019-08-01 09:47:00 -0600175 env_set_default(NULL, 0);
Simon Glassc5951992017-08-03 12:22:17 -0600176
177 return -EIO;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000178}
Simon Glass4415f1d2017-08-03 12:21:58 -0600179#endif /* LOADENV */
180
181U_BOOT_ENV_LOCATION(fat) = {
182 .location = ENVL_FAT,
Simon Glassac358be2017-08-03 12:22:03 -0600183 ENV_NAME("FAT")
Simon Glass4415f1d2017-08-03 12:21:58 -0600184#ifdef LOADENV
Simon Glasse5bce242017-08-03 12:22:01 -0600185 .load = env_fat_load,
Simon Glass4415f1d2017-08-03 12:21:58 -0600186#endif
Rasmus Villemoes3908bc92020-02-19 09:47:41 +0000187 .save = ENV_SAVE_PTR(env_fat_save),
Simon Glass4415f1d2017-08-03 12:21:58 -0600188};