blob: 7f74c64dfe7e094af8142cb66dc94682dabc6b5a [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>
12#include <environment.h>
13#include <linux/stddef.h>
14#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>
20
Simon Glass4415f1d2017-08-03 12:21:58 -060021#ifdef CONFIG_SPL_BUILD
22/* TODO(sjg@chromium.org): Figure out why this is needed */
23# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
24# define LOADENV
25# endif
26#else
27# define LOADENV
28# if defined(CONFIG_CMD_SAVEENV)
29# define CMD_SAVEENV
30# endif
31#endif
32
Simon Glass4415f1d2017-08-03 12:21:58 -060033#ifdef CMD_SAVEENV
Simon Glasse5bce242017-08-03 12:22:01 -060034static int env_fat_save(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000035{
Alex Kiernancda87ec2018-02-07 20:01:54 +000036 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glass4101f682016-02-29 15:25:34 -070037 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080038 disk_partition_t info;
39 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000040 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080041 loff_t size;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000042
Marek Vasut7ce15262014-03-05 19:59:50 +010043 err = env_export(&env_new);
44 if (err)
45 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000046
Tom Rini43ba3c52017-07-26 21:48:00 -040047 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
48 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080049 &dev_desc, &info, 1);
50 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000051 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000052
Simon Glassbcce53d2016-02-29 15:25:51 -070053 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080054 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010055 /*
56 * This printf is embedded in the messages from env_save that
57 * will calling it. The missing \n is intentional.
58 */
59 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040060 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000061 return 1;
62 }
63
Tom Rini43ba3c52017-07-26 21:48:00 -040064 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080065 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000066 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010067 /*
68 * This printf is embedded in the messages from env_save that
69 * will calling it. The missing \n is intentional.
70 */
71 printf("Unable to write \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040072 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000073 return 1;
74 }
75
Maximilian Schwerin57210c72012-03-12 23:57:50 +000076 return 0;
77}
Simon Glass4415f1d2017-08-03 12:21:58 -060078#endif /* CMD_SAVEENV */
Maximilian Schwerin57210c72012-03-12 23:57:50 +000079
Simon Glass4415f1d2017-08-03 12:21:58 -060080#ifdef LOADENV
Simon Glassc5951992017-08-03 12:22:17 -060081static int env_fat_load(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000082{
Tom Rini6d1966e2014-08-01 13:59:10 -040083 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glass4101f682016-02-29 15:25:34 -070084 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080085 disk_partition_t info;
86 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000087 int err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000088
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020089#ifdef CONFIG_MMC
Faiz Abbas26862b42018-02-12 19:24:31 +053090 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
91 mmc_initialize(NULL);
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020092#endif
Faiz Abbas26862b42018-02-12 19:24:31 +053093
Tom Rini43ba3c52017-07-26 21:48:00 -040094 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
95 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080096 &dev_desc, &info, 1);
97 if (part < 0)
98 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000099
Simon Glassbcce53d2016-02-29 15:25:51 -0700100 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +0800101 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100102 /*
103 * This printf is embedded in the messages from env_save that
104 * will calling it. The missing \n is intentional.
105 */
106 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400107 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800108 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000109 }
110
Tom Rini43ba3c52017-07-26 21:48:00 -0400111 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg9aa90c12012-09-23 05:25:21 +0000112 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100113 /*
114 * This printf is embedded in the messages from env_save that
115 * will calling it. The missing \n is intentional.
116 */
117 printf("Unable to read \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400118 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800119 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000120 }
121
Simon Goldschmidt2166ebf2018-01-31 14:47:12 +0100122 return env_import(buf, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +0800123
124err_env_relocate:
Yaniv Levinskyc5d548a2018-06-24 19:16:57 +0300125 set_default_env(NULL, 0);
Simon Glassc5951992017-08-03 12:22:17 -0600126
127 return -EIO;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000128}
Simon Glass4415f1d2017-08-03 12:21:58 -0600129#endif /* LOADENV */
130
131U_BOOT_ENV_LOCATION(fat) = {
132 .location = ENVL_FAT,
Simon Glassac358be2017-08-03 12:22:03 -0600133 ENV_NAME("FAT")
Simon Glass4415f1d2017-08-03 12:21:58 -0600134#ifdef LOADENV
Simon Glasse5bce242017-08-03 12:22:01 -0600135 .load = env_fat_load,
Simon Glass4415f1d2017-08-03 12:21:58 -0600136#endif
137#ifdef CMD_SAVEENV
Simon Glasse5bce242017-08-03 12:22:01 -0600138 .save = env_save_ptr(env_fat_save),
Simon Glass4415f1d2017-08-03 12:21:58 -0600139#endif
Simon Glass4415f1d2017-08-03 12:21:58 -0600140};