blob: cf2e5e2b26e90b1f05bcf70a98c7d70cdaff6edf [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>
Simon Glass0ac7d722019-08-01 09:47:00 -060012#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060013#include <env_internal.h>
Maximilian Schwerin57210c72012-03-12 23:57:50 +000014#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
Simon Glass4415f1d2017-08-03 12:21:58 -060029#endif
30
Simon Glasse5bce242017-08-03 12:22:01 -060031static int env_fat_save(void)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000032{
Alex Kiernancda87ec2018-02-07 20:01:54 +000033 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
Simon Glass4101f682016-02-29 15:25:34 -070034 struct blk_desc *dev_desc = NULL;
Wu, Joshbe354c12014-06-24 17:31:02 +080035 disk_partition_t info;
36 int dev, part;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000037 int err;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080038 loff_t size;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000039
Marek Vasut7ce15262014-03-05 19:59:50 +010040 err = env_export(&env_new);
41 if (err)
42 return err;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000043
Tom Rini43ba3c52017-07-26 21:48:00 -040044 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
45 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080046 &dev_desc, &info, 1);
47 if (part < 0)
Maximilian Schwerin57210c72012-03-12 23:57:50 +000048 return 1;
Igor Grinberg9aa90c12012-09-23 05:25:21 +000049
Simon Glassbcce53d2016-02-29 15:25:51 -070050 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080051 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010052 /*
53 * This printf is embedded in the messages from env_save that
54 * will calling it. The missing \n is intentional.
55 */
56 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040057 CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000058 return 1;
59 }
60
Tom Rini43ba3c52017-07-26 21:48:00 -040061 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -080062 &size);
Igor Grinberg9aa90c12012-09-23 05:25:21 +000063 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010064 /*
65 * This printf is embedded in the messages from env_save that
66 * will calling it. The missing \n is intentional.
67 */
68 printf("Unable to write \"%s\" from %s%d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -040069 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
Maximilian Schwerin57210c72012-03-12 23:57:50 +000070 return 1;
71 }
72
Maximilian Schwerin57210c72012-03-12 23:57:50 +000073 return 0;
74}
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
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020085#ifdef CONFIG_MMC
Faiz Abbas26862b42018-02-12 19:24:31 +053086 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
87 mmc_initialize(NULL);
Heinrich Schuchardt95058fb2018-04-14 15:41:00 +020088#endif
Faiz Abbas26862b42018-02-12 19:24:31 +053089
Tom Rini43ba3c52017-07-26 21:48:00 -040090 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
91 CONFIG_ENV_FAT_DEVICE_AND_PART,
Wu, Joshbe354c12014-06-24 17:31:02 +080092 &dev_desc, &info, 1);
93 if (part < 0)
94 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +000095
Simon Glassbcce53d2016-02-29 15:25:51 -070096 dev = dev_desc->devnum;
Wu, Joshbe354c12014-06-24 17:31:02 +080097 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Maxime Ripardd0816da2018-01-23 21:16:55 +010098 /*
99 * This printf is embedded in the messages from env_save that
100 * will calling it. The missing \n is intentional.
101 */
102 printf("Unable to use %s %d:%d... ",
Tom Rini43ba3c52017-07-26 21:48:00 -0400103 CONFIG_ENV_FAT_INTERFACE, dev, part);
Wu, Joshbe354c12014-06-24 17:31:02 +0800104 goto err_env_relocate;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000105 }
106
Tom Rini43ba3c52017-07-26 21:48:00 -0400107 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
Igor Grinberg9aa90c12012-09-23 05:25:21 +0000108 if (err == -1) {
Maxime Ripardd0816da2018-01-23 21:16:55 +0100109 /*
110 * This printf is embedded in the messages from env_save that
111 * will calling it. The missing \n is intentional.
112 */
113 printf("Unable to read \"%s\" from %s%d:%d... ",
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
Simon Goldschmidt2166ebf2018-01-31 14:47:12 +0100118 return env_import(buf, 1);
Wu, Joshbe354c12014-06-24 17:31:02 +0800119
120err_env_relocate:
Simon Glass0ac7d722019-08-01 09:47:00 -0600121 env_set_default(NULL, 0);
Simon Glassc5951992017-08-03 12:22:17 -0600122
123 return -EIO;
Maximilian Schwerin57210c72012-03-12 23:57:50 +0000124}
Simon Glass4415f1d2017-08-03 12:21:58 -0600125#endif /* LOADENV */
126
127U_BOOT_ENV_LOCATION(fat) = {
128 .location = ENVL_FAT,
Simon Glassac358be2017-08-03 12:22:03 -0600129 ENV_NAME("FAT")
Simon Glass4415f1d2017-08-03 12:21:58 -0600130#ifdef LOADENV
Simon Glasse5bce242017-08-03 12:22:01 -0600131 .load = env_fat_load,
Simon Glass4415f1d2017-08-03 12:21:58 -0600132#endif
Rasmus Villemoes3908bc92020-02-19 09:47:41 +0000133 .save = ENV_SAVE_PTR(env_fat_save),
Simon Glass4415f1d2017-08-03 12:21:58 -0600134};