blob: 9772b87a19133f6a808909c5d65a98b600d980a2 [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>
Simon Glass90526e92020-05-10 11:39:56 -060010#include <asm/cache.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000011
12#include <command.h>
Simon Glass0ac7d722019-08-01 09:47:00 -060013#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060014#include <env_internal.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000015#include <linux/stddef.h>
16#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060017#include <memalign.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000018#include <search.h>
19#include <errno.h>
20#include <fat.h>
21#include <mmc.h>
22
Simon Glass4415f1d2017-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 Glass4415f1d2017-08-03 12:21:58 -060030#endif
31
Simon Glasse5bce242017-08-03 12:22:01 -060032static int env_fat_save(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000033{
Alex Kiernancda87ec2018-02-07 20:01:54 +000034 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glass4101f682016-02-29 15:25:34 -070035 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080036 disk_partition_t info;
37 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000038 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080039 loff_t size;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000040
Marek Vasut7ce15262014-03-05 19:59:50 +010041 err = env_export(&env_new);
42 if (err)
43 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000044
Tom Rini43ba3c52017-07-26 21:48:00 -040045 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
46 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080047 &dev_desc, &info, 1);
48 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000049 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000050
Simon Glassbcce53d2016-02-29 15:25:51 -070051 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080052 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010053 /*
54 * This printf is embedded in the messages from env_save that
55 * will calling it. The missing \n is intentional.
56 */
57 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040058 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000059 return 1;
60 }
61
Tom Rini43ba3c52017-07-26 21:48:00 -040062 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080063 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000064 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010065 /*
66 * This printf is embedded in the messages from env_save that
67 * will calling it. The missing \n is intentional.
68 */
69 printf("Unable to write \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040070 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000071 return 1;
72 }
73
Maximilian Schwerin57210c72012-03-12 23:57:50 +000074 return 0;
75}
Maximilian Schwerin57210c72012-03-12 23:57:50 +000076
Simon Glass4415f1d2017-08-03 12:21:58 -060077#ifdef LOADENV
Simon Glassc5951992017-08-03 12:22:17 -060078static int env_fat_load(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000079{
Tom Rini6d1966e2014-08-01 13:59:10 -040080 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glass4101f682016-02-29 15:25:34 -070081 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080082 disk_partition_t info;
83 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000084 int err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000085
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020086#ifdef CONFIG_MMC
Faiz Abbas26862b42018-02-12 19:24:31 +053087 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
88 mmc_initialize(NULL);
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020089#endif
Faiz Abbas26862b42018-02-12 19:24:31 +053090
Tom Rini43ba3c52017-07-26 21:48:00 -040091 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
92 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080093 &dev_desc, &info, 1);
94 if (part < 0)
95 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000096
Simon Glassbcce53d2016-02-29 15:25:51 -070097 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080098 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010099 /*
100 * This printf is embedded in the messages from env_save that
101 * will calling it. The missing \n is intentional.
102 */
103 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400104 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800105 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000106 }
107
Tom Rini43ba3c52017-07-26 21:48:00 -0400108 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg9aa90c12012-09-23 05:25:21 +0000109 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100110 /*
111 * This printf is embedded in the messages from env_save that
112 * will calling it. The missing \n is intentional.
113 */
114 printf("Unable to read \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400115 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800116 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000117 }
118
Simon Goldschmidt2166ebf2018-01-31 14:47:12 +0100119 return env_import(buf, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +0800120
121err_env_relocate:
Simon Glass0ac7d722019-08-01 09:47:00 -0600122 env_set_default(NULL, 0);
Simon Glassc5951992017-08-03 12:22:17 -0600123
124 return -EIO;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000125}
Simon Glass4415f1d2017-08-03 12:21:58 -0600126#endif /* LOADENV */
127
128U_BOOT_ENV_LOCATION(fat) = {
129 .location = ENVL_FAT,
Simon Glassac358be2017-08-03 12:22:03 -0600130 ENV_NAME("FAT")
Simon Glass4415f1d2017-08-03 12:21:58 -0600131#ifdef LOADENV
Simon Glasse5bce242017-08-03 12:22:01 -0600132 .load = env_fat_load,
Simon Glass4415f1d2017-08-03 12:21:58 -0600133#endif
Rasmus Villemoes3908bc92020-02-19 09:47:41 +0000134 .save = ENV_SAVE_PTR(env_fat_save),
Simon Glass4415f1d2017-08-03 12:21:58 -0600135};