blob: 1ad301eaaffb10a70c858e5d025733319bd2a922 [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
Maximilian Schwerin9765c082012-03-12 23:57:50 +00009#include <command.h>
Simon Glass97385862019-08-01 09:47:00 -060010#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060011#include <env_internal.h>
Simon Glass655306c2020-05-10 11:39:58 -060012#include <part.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000013#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060014#include <memalign.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000015#include <search.h>
16#include <errno.h>
17#include <fat.h>
18#include <mmc.h>
Rogier Stam454aa192022-05-11 23:20:28 +020019#include <scsi.h>
Fiona Kluted4b57ec2024-05-01 10:54:09 +020020#include <virtio.h>
Simon Glass655306c2020-05-10 11:39:58 -060021#include <asm/cache.h>
Brandon Maierf2815462021-01-16 15:14:43 -060022#include <asm/global_data.h>
Simon Glass655306c2020-05-10 11:39:58 -060023#include <linux/stddef.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000024
Simon Glass0e84d962024-09-29 19:49:50 -060025#ifdef CONFIG_XPL_BUILD
Simon Glassc10a88e2017-08-03 12:21:58 -060026/* 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 Glassc10a88e2017-08-03 12:21:58 -060032#endif
33
Brandon Maierf2815462021-01-16 15:14:43 -060034DECLARE_GLOBAL_DATA_PTR;
35
He Yong25936aa2022-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 Woodhouse93365392020-06-19 23:07:17 +010042{
43#ifdef CONFIG_MMC
Andre Przywara788acaf2025-01-30 13:36:46 +000044 /* reserve one more char for the manipulation below */
45 static char part_str[] = CONFIG_ENV_FAT_DEVICE_AND_PART "\0";
David Woodhouse93365392020-06-19 23:07:17 +010046
Andre Przywara788acaf2025-01-30 13:36:46 +000047 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
48 part_str[0] = '0' + mmc_get_env_dev();
49 strcpy(&part_str[1], CONFIG_ENV_FAT_DEVICE_AND_PART);
David Woodhouse93365392020-06-19 23:07:17 +010050 }
51
52 return part_str;
53#else
54 return CONFIG_ENV_FAT_DEVICE_AND_PART;
55#endif
56}
57
Simon Glass082af922017-08-03 12:22:01 -060058static int env_fat_save(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000059{
Alex Kiernan28a21372018-02-07 20:01:54 +000060 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glasse3394752016-02-29 15:25:34 -070061 struct blk_desc *dev_desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -060062 struct disk_partition info;
Brandon Maierf2815462021-01-16 15:14:43 -060063 const char *file = CONFIG_ENV_FAT_FILE;
Wu, Josh9b899f22014-06-24 17:31:02 +080064 int dev, part;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000065 int err;
Suriyan Ramasami441c2232014-11-17 14:39:35 -080066 loff_t size;
He Yong25936aa2022-02-18 00:07:25 +080067 const char *ifname = env_fat_get_intf();
68 const char *dev_and_part = env_fat_get_dev_part();
Maximilian Schwerin9765c082012-03-12 23:57:50 +000069
Marek Vasutd73c1292014-03-05 19:59:50 +010070 err = env_export(&env_new);
71 if (err)
72 return err;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000073
He Yong25936aa2022-02-18 00:07:25 +080074 part = blk_get_device_part_str(ifname, dev_and_part,
75 &dev_desc, &info, 1);
Wu, Josh9b899f22014-06-24 17:31:02 +080076 if (part < 0)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000077 return 1;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000078
Simon Glass2f26fff2016-02-29 15:25:51 -070079 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +080080 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +010081 /*
82 * This printf is embedded in the messages from env_save that
83 * will calling it. The missing \n is intentional.
84 */
He Yong25936aa2022-02-18 00:07:25 +080085 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +000086 return 1;
87 }
88
Brandon Maierf2815462021-01-16 15:14:43 -060089#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
90 if (gd->env_valid == ENV_VALID)
91 file = CONFIG_ENV_FAT_FILE_REDUND;
92#endif
93
94 err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size);
Igor Grinberg49eee6e2012-09-23 05:25:21 +000095 if (err == -1) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +010096 /*
97 * This printf is embedded in the messages from env_save that
98 * will calling it. The missing \n is intentional.
99 */
He Yong25936aa2022-02-18 00:07:25 +0800100 printf("Unable to write \"%s\" from %s%d:%d...\n", file, ifname, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000101 return 1;
102 }
103
Brandon Maierf2815462021-01-16 15:14:43 -0600104#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
105 gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND;
106#endif
107
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000108 return 0;
109}
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000110
Simon Glassc10a88e2017-08-03 12:21:58 -0600111#ifdef LOADENV
Simon Glass99778492017-08-03 12:22:17 -0600112static int env_fat_load(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000113{
Brandon Maierf2815462021-01-16 15:14:43 -0600114 ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE);
115#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
116 ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE);
117 int err2;
118#endif
Simon Glasse3394752016-02-29 15:25:34 -0700119 struct blk_desc *dev_desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600120 struct disk_partition info;
Wu, Josh9b899f22014-06-24 17:31:02 +0800121 int dev, part;
Brandon Maierf2815462021-01-16 15:14:43 -0600122 int err1;
He Yong25936aa2022-02-18 00:07:25 +0800123 const char *ifname = env_fat_get_intf();
124 const char *dev_and_part = env_fat_get_dev_part();
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000125
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +0200126#ifdef CONFIG_MMC
He Yong25936aa2022-02-18 00:07:25 +0800127 if (!strcmp(ifname, "mmc"))
Faiz Abbasaae518f2018-02-12 19:24:31 +0530128 mmc_initialize(NULL);
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +0200129#endif
Simon Glass0e84d962024-09-29 19:49:50 -0600130#ifndef CONFIG_XPL_BUILD
Rogier Stam454aa192022-05-11 23:20:28 +0200131#if defined(CONFIG_AHCI) || defined(CONFIG_SCSI)
132 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "scsi"))
133 scsi_scan(true);
134#endif
Fiona Kluted4b57ec2024-05-01 10:54:09 +0200135#if defined(CONFIG_VIRTIO)
136 if (!strcmp(ifname, "virtio"))
137 virtio_init();
138#endif
Rogier Stam454aa192022-05-11 23:20:28 +0200139#endif
He Yong25936aa2022-02-18 00:07:25 +0800140 part = blk_get_device_part_str(ifname, dev_and_part,
141 &dev_desc, &info, 1);
Wu, Josh9b899f22014-06-24 17:31:02 +0800142 if (part < 0)
143 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000144
Simon Glass2f26fff2016-02-29 15:25:51 -0700145 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +0800146 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100147 /*
148 * This printf is embedded in the messages from env_save that
149 * will calling it. The missing \n is intentional.
150 */
He Yong25936aa2022-02-18 00:07:25 +0800151 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800152 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000153 }
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000154
Brandon Maierf2815462021-01-16 15:14:43 -0600155 err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE);
156#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
157 err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE);
158
159 err1 = (err1 >= 0) ? 0 : -1;
160 err2 = (err2 >= 0) ? 0 : -1;
161 return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL);
162#else
163 if (err1 < 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100164 /*
165 * This printf is embedded in the messages from env_save that
166 * will calling it. The missing \n is intentional.
167 */
Peter Robinsonff6b8a22022-01-02 11:38:35 +0000168 printf("Unable to read \"%s\" from %s%d:%d... \n",
He Yong25936aa2022-02-18 00:07:25 +0800169 CONFIG_ENV_FAT_FILE, ifname, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800170 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000171 }
172
Brandon Maierf2815462021-01-16 15:14:43 -0600173 return env_import(buf1, 1, H_EXTERNAL);
174#endif
Wu, Josh9b899f22014-06-24 17:31:02 +0800175
176err_env_relocate:
Simon Glass97385862019-08-01 09:47:00 -0600177 env_set_default(NULL, 0);
Simon Glass99778492017-08-03 12:22:17 -0600178
179 return -EIO;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000180}
Simon Glassc10a88e2017-08-03 12:21:58 -0600181#endif /* LOADENV */
182
183U_BOOT_ENV_LOCATION(fat) = {
184 .location = ENVL_FAT,
Simon Glassd8273ed2017-08-03 12:22:03 -0600185 ENV_NAME("FAT")
Simon Glassc10a88e2017-08-03 12:21:58 -0600186#ifdef LOADENV
Simon Glass082af922017-08-03 12:22:01 -0600187 .load = env_fat_load,
Simon Glassc10a88e2017-08-03 12:21:58 -0600188#endif
Rasmus Villemoes975ffba2020-02-19 09:47:41 +0000189 .save = ENV_SAVE_PTR(env_fat_save),
Simon Glassc10a88e2017-08-03 12:21:58 -0600190};