blob: 653a38fd937c8d998ce719b0a911de68599f29ad [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>
21#include <linux/stddef.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000022
Simon Glassc10a88e2017-08-03 12:21:58 -060023#ifdef CONFIG_SPL_BUILD
24/* TODO(sjg@chromium.org): Figure out why this is needed */
25# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
26# define LOADENV
27# endif
28#else
29# define LOADENV
Simon Glassc10a88e2017-08-03 12:21:58 -060030#endif
31
David Woodhouse93365392020-06-19 23:07:17 +010032static char *env_fat_device_and_part(void)
33{
34#ifdef CONFIG_MMC
35 static char *part_str;
36
37 if (!part_str) {
38 part_str = CONFIG_ENV_FAT_DEVICE_AND_PART;
39 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
40 part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART;
41 part_str[0] += mmc_get_env_dev();
42 }
43 }
44
45 return part_str;
46#else
47 return CONFIG_ENV_FAT_DEVICE_AND_PART;
48#endif
49}
50
Simon Glass082af922017-08-03 12:22:01 -060051static int env_fat_save(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000052{
Alex Kiernan28a21372018-02-07 20:01:54 +000053 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glasse3394752016-02-29 15:25:34 -070054 struct blk_desc *dev_desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -060055 struct disk_partition info;
Wu, Josh9b899f22014-06-24 17:31:02 +080056 int dev, part;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000057 int err;
Suriyan Ramasami441c2232014-11-17 14:39:35 -080058 loff_t size;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000059
Marek Vasutd73c1292014-03-05 19:59:50 +010060 err = env_export(&env_new);
61 if (err)
62 return err;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000063
Tom Rini17f14d92017-07-26 21:48:00 -040064 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
David Woodhouse93365392020-06-19 23:07:17 +010065 env_fat_device_and_part(),
Wu, Josh9b899f22014-06-24 17:31:02 +080066 &dev_desc, &info, 1);
67 if (part < 0)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000068 return 1;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000069
Simon Glass2f26fff2016-02-29 15:25:51 -070070 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +080071 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +010072 /*
73 * This printf is embedded in the messages from env_save that
74 * will calling it. The missing \n is intentional.
75 */
76 printf("Unable to use %s %d:%d... ",
Tom Rini17f14d92017-07-26 21:48:00 -040077 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +000078 return 1;
79 }
80
Tom Rini17f14d92017-07-26 21:48:00 -040081 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami441c2232014-11-17 14:39:35 -080082 &size);
Igor Grinberg49eee6e2012-09-23 05:25:21 +000083 if (err == -1) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +010084 /*
85 * This printf is embedded in the messages from env_save that
86 * will calling it. The missing \n is intentional.
87 */
88 printf("Unable to write \"%s\" from %s%d:%d... ",
Tom Rini17f14d92017-07-26 21:48:00 -040089 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +000090 return 1;
91 }
92
Maximilian Schwerin9765c082012-03-12 23:57:50 +000093 return 0;
94}
Maximilian Schwerin9765c082012-03-12 23:57:50 +000095
Simon Glassc10a88e2017-08-03 12:21:58 -060096#ifdef LOADENV
Simon Glass99778492017-08-03 12:22:17 -060097static int env_fat_load(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000098{
Tom Rini0b635ed2014-08-01 13:59:10 -040099 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glasse3394752016-02-29 15:25:34 -0700100 struct blk_desc *dev_desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600101 struct disk_partition info;
Wu, Josh9b899f22014-06-24 17:31:02 +0800102 int dev, part;
Igor Grinberg49eee6e2012-09-23 05:25:21 +0000103 int err;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000104
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +0200105#ifdef CONFIG_MMC
Faiz Abbasaae518f2018-02-12 19:24:31 +0530106 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
107 mmc_initialize(NULL);
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +0200108#endif
Faiz Abbasaae518f2018-02-12 19:24:31 +0530109
Tom Rini17f14d92017-07-26 21:48:00 -0400110 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
David Woodhouse93365392020-06-19 23:07:17 +0100111 env_fat_device_and_part(),
Wu, Josh9b899f22014-06-24 17:31:02 +0800112 &dev_desc, &info, 1);
113 if (part < 0)
114 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000115
Simon Glass2f26fff2016-02-29 15:25:51 -0700116 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +0800117 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100118 /*
119 * This printf is embedded in the messages from env_save that
120 * will calling it. The missing \n is intentional.
121 */
122 printf("Unable to use %s %d:%d... ",
Tom Rini17f14d92017-07-26 21:48:00 -0400123 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800124 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000125 }
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000126
Tom Rini17f14d92017-07-26 21:48:00 -0400127 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg49eee6e2012-09-23 05:25:21 +0000128 if (err == -1) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100129 /*
130 * This printf is embedded in the messages from env_save that
131 * will calling it. The missing \n is intentional.
132 */
133 printf("Unable to read \"%s\" from %s%d:%d... ",
Tom Rini17f14d92017-07-26 21:48:00 -0400134 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800135 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000136 }
137
Marek Vasutdfe4b7e2020-07-07 20:51:35 +0200138 return env_import(buf, 1, H_EXTERNAL);
Wu, Josh9b899f22014-06-24 17:31:02 +0800139
140err_env_relocate:
Simon Glass97385862019-08-01 09:47:00 -0600141 env_set_default(NULL, 0);
Simon Glass99778492017-08-03 12:22:17 -0600142
143 return -EIO;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000144}
Simon Glassc10a88e2017-08-03 12:21:58 -0600145#endif /* LOADENV */
146
147U_BOOT_ENV_LOCATION(fat) = {
148 .location = ENVL_FAT,
Simon Glassd8273ed2017-08-03 12:22:03 -0600149 ENV_NAME("FAT")
Simon Glassc10a88e2017-08-03 12:21:58 -0600150#ifdef LOADENV
Simon Glass082af922017-08-03 12:22:01 -0600151 .load = env_fat_load,
Simon Glassc10a88e2017-08-03 12:21:58 -0600152#endif
Rasmus Villemoes975ffba2020-02-19 09:47:41 +0000153 .save = ENV_SAVE_PTR(env_fat_save),
Simon Glassc10a88e2017-08-03 12:21:58 -0600154};