blob: 884eeb8c5fc1517db5547689999285cc788a4403 [file] [log] [blame]
Maximilian Schwerin9765c082012-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 Denkbd8ec7e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
Maximilian Schwerin9765c082012-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 Glass2dd337a2015-09-02 17:24:58 -060016#include <memalign.h>
Maximilian Schwerin9765c082012-03-12 23:57:50 +000017#include <search.h>
18#include <errno.h>
19#include <fat.h>
20#include <mmc.h>
21
Simon Glassc10a88e2017-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 Schwerin9765c082012-03-12 23:57:50 +000034DECLARE_GLOBAL_DATA_PTR;
35
Simon Glassc10a88e2017-08-03 12:21:58 -060036#ifdef CMD_SAVEENV
Simon Glass082af922017-08-03 12:22:01 -060037static int env_fat_save(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000038{
Alex Kiernan28a21372018-02-07 20:01:54 +000039 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glasse3394752016-02-29 15:25:34 -070040 struct blk_desc *dev_desc = NULL;
Wu, Josh9b899f22014-06-24 17:31:02 +080041 disk_partition_t info;
42 int dev, part;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000043 int err;
Suriyan Ramasami441c2232014-11-17 14:39:35 -080044 loff_t size;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000045
Marek Vasutd73c1292014-03-05 19:59:50 +010046 err = env_export(&env_new);
47 if (err)
48 return err;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000049
Tom Rini17f14d92017-07-26 21:48:00 -040050 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
51 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Josh9b899f22014-06-24 17:31:02 +080052 &dev_desc, &info, 1);
53 if (part < 0)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000054 return 1;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000055
Simon Glass2f26fff2016-02-29 15:25:51 -070056 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +080057 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-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 Rini17f14d92017-07-26 21:48:00 -040063 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +000064 return 1;
65 }
66
Tom Rini17f14d92017-07-26 21:48:00 -040067 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami441c2232014-11-17 14:39:35 -080068 &size);
Igor Grinberg49eee6e2012-09-23 05:25:21 +000069 if (err == -1) {
Maxime Ripardbe6b2dc2018-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 Rini17f14d92017-07-26 21:48:00 -040075 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin9765c082012-03-12 23:57:50 +000076 return 1;
77 }
78
Maximilian Schwerin9765c082012-03-12 23:57:50 +000079 return 0;
80}
Simon Glassc10a88e2017-08-03 12:21:58 -060081#endif /* CMD_SAVEENV */
Maximilian Schwerin9765c082012-03-12 23:57:50 +000082
Simon Glassc10a88e2017-08-03 12:21:58 -060083#ifdef LOADENV
Simon Glass99778492017-08-03 12:22:17 -060084static int env_fat_load(void)
Maximilian Schwerin9765c082012-03-12 23:57:50 +000085{
Tom Rini0b635ed2014-08-01 13:59:10 -040086 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
Simon Glasse3394752016-02-29 15:25:34 -070087 struct blk_desc *dev_desc = NULL;
Wu, Josh9b899f22014-06-24 17:31:02 +080088 disk_partition_t info;
89 int dev, part;
Igor Grinberg49eee6e2012-09-23 05:25:21 +000090 int err;
Maximilian Schwerin9765c082012-03-12 23:57:50 +000091
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +020092#ifdef CONFIG_MMC
Faiz Abbasaae518f2018-02-12 19:24:31 +053093 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
94 mmc_initialize(NULL);
Heinrich Schuchardt9991fe82018-04-14 15:41:00 +020095#endif
Faiz Abbasaae518f2018-02-12 19:24:31 +053096
Tom Rini17f14d92017-07-26 21:48:00 -040097 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
98 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Josh9b899f22014-06-24 17:31:02 +080099 &dev_desc, &info, 1);
100 if (part < 0)
101 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000102
Simon Glass2f26fff2016-02-29 15:25:51 -0700103 dev = dev_desc->devnum;
Wu, Josh9b899f22014-06-24 17:31:02 +0800104 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100105 /*
106 * This printf is embedded in the messages from env_save that
107 * will calling it. The missing \n is intentional.
108 */
109 printf("Unable to use %s %d:%d... ",
Tom Rini17f14d92017-07-26 21:48:00 -0400110 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800111 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000112 }
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000113
Tom Rini17f14d92017-07-26 21:48:00 -0400114 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg49eee6e2012-09-23 05:25:21 +0000115 if (err == -1) {
Maxime Ripardbe6b2dc2018-01-23 21:16:55 +0100116 /*
117 * This printf is embedded in the messages from env_save that
118 * will calling it. The missing \n is intentional.
119 */
120 printf("Unable to read \"%s\" from %s%d:%d... ",
Tom Rini17f14d92017-07-26 21:48:00 -0400121 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Josh9b899f22014-06-24 17:31:02 +0800122 goto err_env_relocate;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000123 }
124
Simon Goldschmidt35b4c322018-01-31 14:47:12 +0100125 return env_import(buf, 1);
Wu, Josh9b899f22014-06-24 17:31:02 +0800126
127err_env_relocate:
128 set_default_env(NULL);
Simon Glass99778492017-08-03 12:22:17 -0600129
130 return -EIO;
Maximilian Schwerin9765c082012-03-12 23:57:50 +0000131}
Simon Glassc10a88e2017-08-03 12:21:58 -0600132#endif /* LOADENV */
133
134U_BOOT_ENV_LOCATION(fat) = {
135 .location = ENVL_FAT,
Simon Glassd8273ed2017-08-03 12:22:03 -0600136 ENV_NAME("FAT")
Simon Glassc10a88e2017-08-03 12:21:58 -0600137#ifdef LOADENV
Simon Glass082af922017-08-03 12:22:01 -0600138 .load = env_fat_load,
Simon Glassc10a88e2017-08-03 12:21:58 -0600139#endif
140#ifdef CMD_SAVEENV
Simon Glass082af922017-08-03 12:22:01 -0600141 .save = env_save_ptr(env_fat_save),
Simon Glassc10a88e2017-08-03 12:21:58 -0600142#endif
Simon Glassc10a88e2017-08-03 12:21:58 -0600143};