blob: 1836556f361d012e0bcd5ba54323475fe181e8a3 [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>
10
11#include <command.h>
Simon Glass0ac7d722019-08-01 09:47:00 -060012#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060013#include <env_internal.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000014#include <linux/stddef.h>
15#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060016#include <memalign.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000017#include <search.h>
18#include <errno.h>
19#include <fat.h>
20#include <mmc.h>
21
Simon Glass4415f1d2017-08-03 12:21:58 -060022#ifdef CONFIG_SPL_BUILD
23/* TODO(sjg@chromium.org): Figure out why this is needed */
24# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
25# define LOADENV
26# endif
27#else
28# define LOADENV
29# if defined(CONFIG_CMD_SAVEENV)
30# define CMD_SAVEENV
31# endif
32#endif
33
Simon Glass4415f1d2017-08-03 12:21:58 -060034#ifdef CMD_SAVEENV
Simon Glasse5bce242017-08-03 12:22:01 -060035static int env_fat_save(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000036{
Alex Kiernancda87ec2018-02-07 20:01:54 +000037 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glass4101f682016-02-29 15:25:34 -070038 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080039 disk_partition_t info;
40 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000041 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080042 loff_t size;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000043
Marek Vasut7ce15262014-03-05 19:59:50 +010044 err = env_export(&env_new);
45 if (err)
46 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000047
Tom Rini43ba3c52017-07-26 21:48:00 -040048 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
49 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080050 &dev_desc, &info, 1);
51 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000052 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000053
Simon Glassbcce53d2016-02-29 15:25:51 -070054 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080055 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010056 /*
57 * This printf is embedded in the messages from env_save that
58 * will calling it. The missing \n is intentional.
59 */
60 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040061 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000062 return 1;
63 }
64
Tom Rini43ba3c52017-07-26 21:48:00 -040065 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080066 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000067 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010068 /*
69 * This printf is embedded in the messages from env_save that
70 * will calling it. The missing \n is intentional.
71 */
72 printf("Unable to write \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040073 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000074 return 1;
75 }
76
Maximilian Schwerin57210c72012-03-12 23:57:50 +000077 return 0;
78}
Simon Glass4415f1d2017-08-03 12:21:58 -060079#endif /* CMD_SAVEENV */
Maximilian Schwerin57210c72012-03-12 23:57:50 +000080
Simon Glass4415f1d2017-08-03 12:21:58 -060081#ifdef LOADENV
Simon Glassc5951992017-08-03 12:22:17 -060082static int env_fat_load(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000083{
Tom Rini6d1966e2014-08-01 13:59:10 -040084 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glass4101f682016-02-29 15:25:34 -070085 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080086 disk_partition_t info;
87 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000088 int err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000089
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020090#ifdef CONFIG_MMC
Faiz Abbas26862b42018-02-12 19:24:31 +053091 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
92 mmc_initialize(NULL);
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020093#endif
Faiz Abbas26862b42018-02-12 19:24:31 +053094
Tom Rini43ba3c52017-07-26 21:48:00 -040095 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
96 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080097 &dev_desc, &info, 1);
98 if (part < 0)
99 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000100
Simon Glassbcce53d2016-02-29 15:25:51 -0700101 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +0800102 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100103 /*
104 * This printf is embedded in the messages from env_save that
105 * will calling it. The missing \n is intentional.
106 */
107 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400108 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800109 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000110 }
111
Tom Rini43ba3c52017-07-26 21:48:00 -0400112 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg9aa90c12012-09-23 05:25:21 +0000113 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100114 /*
115 * This printf is embedded in the messages from env_save that
116 * will calling it. The missing \n is intentional.
117 */
118 printf("Unable to read \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400119 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800120 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000121 }
122
Simon Goldschmidt2166ebf2018-01-31 14:47:12 +0100123 return env_import(buf, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +0800124
125err_env_relocate:
Simon Glass0ac7d722019-08-01 09:47:00 -0600126 env_set_default(NULL, 0);
Simon Glassc5951992017-08-03 12:22:17 -0600127
128 return -EIO;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000129}
Simon Glass4415f1d2017-08-03 12:21:58 -0600130#endif /* LOADENV */
131
132U_BOOT_ENV_LOCATION(fat) = {
133 .location = ENVL_FAT,
Simon Glassac358be2017-08-03 12:22:03 -0600134 ENV_NAME("FAT")
Simon Glass4415f1d2017-08-03 12:21:58 -0600135#ifdef LOADENV
Simon Glasse5bce242017-08-03 12:22:01 -0600136 .load = env_fat_load,
Simon Glass4415f1d2017-08-03 12:21:58 -0600137#endif
138#ifdef CMD_SAVEENV
Simon Glasse5bce242017-08-03 12:22:01 -0600139 .save = env_save_ptr(env_fat_save),
Simon Glass4415f1d2017-08-03 12:21:58 -0600140#endif
Simon Glass4415f1d2017-08-03 12:21:58 -0600141};