blob: 19f260e881ac3e77f5d04e69aeb261691f780388 [file] [log] [blame]
Maximilian Schwerin57210c72012-03-12 23:57:50 +00001/*
2 * (c) Copyright 2011 by Tigris Elektronik GmbH
3 *
4 * Author:
5 * Maximilian Schwerin <mvs@tigris.de>
6 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
Maximilian Schwerin57210c72012-03-12 23:57:50 +00008 */
9
10#include <common.h>
11
12#include <command.h>
13#include <environment.h>
14#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
Maximilian Schwerin57210c72012-03-12 23:57:50 +000034DECLARE_GLOBAL_DATA_PTR;
35
Simon Glass4415f1d2017-08-03 12:21:58 -060036#ifdef CMD_SAVEENV
Simon Glasse5bce242017-08-03 12:22:01 -060037static int env_fat_save(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000038{
Alex Kiernancda87ec2018-02-07 20:01:54 +000039 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glass4101f682016-02-29 15:25:34 -070040 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080041 disk_partition_t info;
42 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000043 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080044 loff_t size;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000045
Marek Vasut7ce15262014-03-05 19:59:50 +010046 err = env_export(&env_new);
47 if (err)
48 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000049
Tom Rini43ba3c52017-07-26 21:48:00 -040050 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
51 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080052 &dev_desc, &info, 1);
53 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000054 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000055
Simon Glassbcce53d2016-02-29 15:25:51 -070056 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080057 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010058 /*
59 * This printf is embedded in the messages from env_save that
60 * will calling it. The missing \n is intentional.
61 */
62 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040063 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000064 return 1;
65 }
66
Tom Rini43ba3c52017-07-26 21:48:00 -040067 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080068 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000069 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010070 /*
71 * This printf is embedded in the messages from env_save that
72 * will calling it. The missing \n is intentional.
73 */
74 printf("Unable to write \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040075 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000076 return 1;
77 }
78
Maximilian Schwerin57210c72012-03-12 23:57:50 +000079 return 0;
80}
Simon Glass4415f1d2017-08-03 12:21:58 -060081#endif /* CMD_SAVEENV */
Maximilian Schwerin57210c72012-03-12 23:57:50 +000082
Simon Glass4415f1d2017-08-03 12:21:58 -060083#ifdef LOADENV
Simon Glassc5951992017-08-03 12:22:17 -060084static int env_fat_load(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000085{
Tom Rini6d1966e2014-08-01 13:59:10 -040086 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glass4101f682016-02-29 15:25:34 -070087 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080088 disk_partition_t info;
89 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000090 int err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000091
Faiz Abbas26862b42018-02-12 19:24:31 +053092 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
93 mmc_initialize(NULL);
94
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:
126 set_default_env(NULL);
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};