blob: ec49c39053691a5d6638fc64af2e9caf910ca5ea [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{
Tom Rinicd0f4fa2013-04-05 14:55:21 -040039 env_t 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) {
58 printf("\n** Unable to use %s %d:%d for saveenv **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -040059 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000060 return 1;
61 }
62
Tom Rini43ba3c52017-07-26 21:48:00 -040063 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080064 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000065 if (err == -1) {
Maximilian Schwerin57210c72012-03-12 23:57:50 +000066 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -040067 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000068 return 1;
69 }
70
71 puts("done\n");
72 return 0;
73}
Simon Glass4415f1d2017-08-03 12:21:58 -060074#endif /* CMD_SAVEENV */
Maximilian Schwerin57210c72012-03-12 23:57:50 +000075
Simon Glass4415f1d2017-08-03 12:21:58 -060076#ifdef LOADENV
Simon Glassc5951992017-08-03 12:22:17 -060077static int env_fat_load(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000078{
Tom Rini6d1966e2014-08-01 13:59:10 -040079 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glass4101f682016-02-29 15:25:34 -070080 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080081 disk_partition_t info;
82 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000083 int err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000084
Tom Rini43ba3c52017-07-26 21:48:00 -040085 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
86 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080087 &dev_desc, &info, 1);
88 if (part < 0)
89 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000090
Simon Glassbcce53d2016-02-29 15:25:51 -070091 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080092 if (fat_set_blk_dev(dev_desc, &info) != 0) {
93 printf("\n** Unable to use %s %d:%d for loading the env **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -040094 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +080095 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000096 }
97
Tom Rini43ba3c52017-07-26 21:48:00 -040098 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000099 if (err == -1) {
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000100 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -0400101 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800102 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000103 }
104
105 env_import(buf, 1);
Simon Glassc5951992017-08-03 12:22:17 -0600106 return 0;
Wu, Joshbe354c12014-06-24 17:31:02 +0800107
108err_env_relocate:
109 set_default_env(NULL);
Simon Glassc5951992017-08-03 12:22:17 -0600110
111 return -EIO;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000112}
Simon Glass4415f1d2017-08-03 12:21:58 -0600113#endif /* LOADENV */
114
115U_BOOT_ENV_LOCATION(fat) = {
116 .location = ENVL_FAT,
Simon Glassac358be2017-08-03 12:22:03 -0600117 ENV_NAME("FAT")
Simon Glass4415f1d2017-08-03 12:21:58 -0600118#ifdef LOADENV
Simon Glasse5bce242017-08-03 12:22:01 -0600119 .load = env_fat_load,
Simon Glass4415f1d2017-08-03 12:21:58 -0600120#endif
121#ifdef CMD_SAVEENV
Simon Glasse5bce242017-08-03 12:22:01 -0600122 .save = env_save_ptr(env_fat_save),
Simon Glass4415f1d2017-08-03 12:21:58 -0600123#endif
Simon Glass4415f1d2017-08-03 12:21:58 -0600124};