]> Git Repo - J-u-boot.git/blame - env/fat.c
arm: a37xx: pci: Cleanup macro names
[J-u-boot.git] / env / fat.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
57210c7c
MS
2/*
3 * (c) Copyright 2011 by Tigris Elektronik GmbH
4 *
5 * Author:
6 * Maximilian Schwerin <[email protected]>
57210c7c
MS
7 */
8
9#include <common.h>
57210c7c 10#include <command.h>
0ac7d722 11#include <env.h>
f3998fdc 12#include <env_internal.h>
e6f6f9e6 13#include <part.h>
57210c7c 14#include <malloc.h>
cf92e05c 15#include <memalign.h>
57210c7c
MS
16#include <search.h>
17#include <errno.h>
18#include <fat.h>
19#include <mmc.h>
e6f6f9e6 20#include <asm/cache.h>
2339f01a 21#include <asm/global_data.h>
e6f6f9e6 22#include <linux/stddef.h>
57210c7c 23
4415f1d1
SG
24#ifdef CONFIG_SPL_BUILD
25/* TODO([email protected]): Figure out why this is needed */
26# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
27# define LOADENV
28# endif
29#else
30# define LOADENV
4415f1d1
SG
31#endif
32
2339f01a
BM
33DECLARE_GLOBAL_DATA_PTR;
34
6731bef6
DW
35static char *env_fat_device_and_part(void)
36{
37#ifdef CONFIG_MMC
38 static char *part_str;
39
40 if (!part_str) {
41 part_str = CONFIG_ENV_FAT_DEVICE_AND_PART;
42 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
43 part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART;
44 part_str[0] += mmc_get_env_dev();
45 }
46 }
47
48 return part_str;
49#else
50 return CONFIG_ENV_FAT_DEVICE_AND_PART;
51#endif
52}
53
e5bce247 54static int env_fat_save(void)
57210c7c 55{
cda87ec5 56 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
4101f687 57 struct blk_desc *dev_desc = NULL;
0528979f 58 struct disk_partition info;
2339f01a 59 const char *file = CONFIG_ENV_FAT_FILE;
be354c1a 60 int dev, part;
9aa90c1d 61 int err;
1ad0b98a 62 loff_t size;
57210c7c 63
7ce1526e
MV
64 err = env_export(&env_new);
65 if (err)
66 return err;
57210c7c 67
43ba3c59 68 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
6731bef6 69 env_fat_device_and_part(),
be354c1a
WJ
70 &dev_desc, &info, 1);
71 if (part < 0)
57210c7c 72 return 1;
9aa90c1d 73
bcce53d0 74 dev = dev_desc->devnum;
be354c1a 75 if (fat_set_blk_dev(dev_desc, &info) != 0) {
d0816da5
MR
76 /*
77 * This printf is embedded in the messages from env_save that
78 * will calling it. The missing \n is intentional.
79 */
f6f27be1 80 printf("Unable to use %s %d:%d... \n",
43ba3c59 81 CONFIG_ENV_FAT_INTERFACE, dev, part);
57210c7c
MS
82 return 1;
83 }
84
2339f01a
BM
85#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
86 if (gd->env_valid == ENV_VALID)
87 file = CONFIG_ENV_FAT_FILE_REDUND;
88#endif
89
90 err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size);
9aa90c1d 91 if (err == -1) {
d0816da5
MR
92 /*
93 * This printf is embedded in the messages from env_save that
94 * will calling it. The missing \n is intentional.
95 */
f6f27be1 96 printf("Unable to write \"%s\" from %s%d:%d... \n",
2339f01a 97 file, CONFIG_ENV_FAT_INTERFACE, dev, part);
57210c7c
MS
98 return 1;
99 }
100
2339f01a
BM
101#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
102 gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND;
103#endif
104
57210c7c
MS
105 return 0;
106}
57210c7c 107
4415f1d1 108#ifdef LOADENV
c5951991 109static int env_fat_load(void)
57210c7c 110{
2339f01a
BM
111 ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE);
112#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
113 ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE);
114 int err2;
115#endif
4101f687 116 struct blk_desc *dev_desc = NULL;
0528979f 117 struct disk_partition info;
be354c1a 118 int dev, part;
2339f01a 119 int err1;
57210c7c 120
95058fbb 121#ifdef CONFIG_MMC
26862b4a
FA
122 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
123 mmc_initialize(NULL);
95058fbb 124#endif
26862b4a 125
43ba3c59 126 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
6731bef6 127 env_fat_device_and_part(),
be354c1a
WJ
128 &dev_desc, &info, 1);
129 if (part < 0)
130 goto err_env_relocate;
131
bcce53d0 132 dev = dev_desc->devnum;
be354c1a 133 if (fat_set_blk_dev(dev_desc, &info) != 0) {
d0816da5
MR
134 /*
135 * This printf is embedded in the messages from env_save that
136 * will calling it. The missing \n is intentional.
137 */
f6f27be1 138 printf("Unable to use %s %d:%d... \n",
43ba3c59 139 CONFIG_ENV_FAT_INTERFACE, dev, part);
be354c1a 140 goto err_env_relocate;
57210c7c
MS
141 }
142
2339f01a
BM
143 err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE);
144#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
145 err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE);
146
147 err1 = (err1 >= 0) ? 0 : -1;
148 err2 = (err2 >= 0) ? 0 : -1;
149 return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL);
150#else
151 if (err1 < 0) {
d0816da5
MR
152 /*
153 * This printf is embedded in the messages from env_save that
154 * will calling it. The missing \n is intentional.
155 */
f6f27be1 156 printf("Unable to read \"%s\" from %s%d:%d... \n",
43ba3c59 157 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
be354c1a 158 goto err_env_relocate;
57210c7c
MS
159 }
160
2339f01a
BM
161 return env_import(buf1, 1, H_EXTERNAL);
162#endif
be354c1a
WJ
163
164err_env_relocate:
0ac7d722 165 env_set_default(NULL, 0);
c5951991
SG
166
167 return -EIO;
57210c7c 168}
4415f1d1
SG
169#endif /* LOADENV */
170
171U_BOOT_ENV_LOCATION(fat) = {
172 .location = ENVL_FAT,
ac358beb 173 ENV_NAME("FAT")
4415f1d1 174#ifdef LOADENV
e5bce247 175 .load = env_fat_load,
4415f1d1 176#endif
3908bc93 177 .save = ENV_SAVE_PTR(env_fat_save),
4415f1d1 178};
This page took 0.507226 seconds and 4 git commands to generate.