blob: abf6d115b7b99e7cfd3a7a06f2f7752c1938a642 [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 +000034char *env_name_spec = "FAT";
35
36env_t *env_ptr;
37
38DECLARE_GLOBAL_DATA_PTR;
39
Maximilian Schwerin57210c72012-03-12 23:57:50 +000040int env_init(void)
41{
42 /* use default */
43 gd->env_addr = (ulong)&default_environment[0];
Simon Glass203e94f2017-08-03 12:21:56 -060044 gd->env_valid = ENV_VALID;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000045
46 return 0;
47}
48
Simon Glass4415f1d2017-08-03 12:21:58 -060049#ifdef CMD_SAVEENV
Maximilian Schwerin57210c72012-03-12 23:57:50 +000050int saveenv(void)
51{
Tom Rinicd0f4fa2013-04-05 14:55:21 -040052 env_t env_new;
Simon Glass4101f682016-02-29 15:25:34 -070053 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080054 disk_partition_t info;
55 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000056 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080057 loff_t size;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000058
Marek Vasut7ce15262014-03-05 19:59:50 +010059 err = env_export(&env_new);
60 if (err)
61 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000062
Tom Rini43ba3c52017-07-26 21:48:00 -040063 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
64 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080065 &dev_desc, &info, 1);
66 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000067 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000068
Simon Glassbcce53d2016-02-29 15:25:51 -070069 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080070 if (fat_set_blk_dev(dev_desc, &info) != 0) {
71 printf("\n** Unable to use %s %d:%d for saveenv **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -040072 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000073 return 1;
74 }
75
Tom Rini43ba3c52017-07-26 21:48:00 -040076 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080077 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000078 if (err == -1) {
Maximilian Schwerin57210c72012-03-12 23:57:50 +000079 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -040080 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000081 return 1;
82 }
83
84 puts("done\n");
85 return 0;
86}
Simon Glass4415f1d2017-08-03 12:21:58 -060087#endif /* CMD_SAVEENV */
Maximilian Schwerin57210c72012-03-12 23:57:50 +000088
Simon Glass4415f1d2017-08-03 12:21:58 -060089#ifdef LOADENV
Maximilian Schwerin57210c72012-03-12 23:57:50 +000090void env_relocate_spec(void)
91{
Tom Rini6d1966e2014-08-01 13:59:10 -040092 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glass4101f682016-02-29 15:25:34 -070093 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080094 disk_partition_t info;
95 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000096 int err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000097
Tom Rini43ba3c52017-07-26 21:48:00 -040098 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
99 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +0800100 &dev_desc, &info, 1);
101 if (part < 0)
102 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000103
Simon Glassbcce53d2016-02-29 15:25:51 -0700104 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +0800105 if (fat_set_blk_dev(dev_desc, &info) != 0) {
106 printf("\n** Unable to use %s %d:%d for loading the env **\n",
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) {
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000113 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
Tom Rini43ba3c52017-07-26 21:48:00 -0400114 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800115 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000116 }
117
118 env_import(buf, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +0800119 return;
120
121err_env_relocate:
122 set_default_env(NULL);
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000123}
Simon Glass4415f1d2017-08-03 12:21:58 -0600124#endif /* LOADENV */
125
126U_BOOT_ENV_LOCATION(fat) = {
127 .location = ENVL_FAT,
128 .get_char = env_get_char_spec,
129#ifdef LOADENV
130 .load = env_relocate_spec,
131#endif
132#ifdef CMD_SAVEENV
133 .save = env_save_ptr(saveenv),
134#endif
135 .init = env_init,
136};