]> Git Repo - J-u-boot.git/blame - env/fat.c
env_internal.h: add alternative ENV_SAVE_PTR macro
[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>
10
11#include <command.h>
0ac7d722 12#include <env.h>
f3998fdc 13#include <env_internal.h>
57210c7c
MS
14#include <linux/stddef.h>
15#include <malloc.h>
cf92e05c 16#include <memalign.h>
57210c7c
MS
17#include <search.h>
18#include <errno.h>
19#include <fat.h>
20#include <mmc.h>
21
4415f1d1
SG
22#ifdef CONFIG_SPL_BUILD
23/* TODO([email protected]): 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
4415f1d1 34#ifdef CMD_SAVEENV
e5bce247 35static int env_fat_save(void)
57210c7c 36{
cda87ec5 37 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
4101f687 38 struct blk_desc *dev_desc = NULL;
be354c1a
WJ
39 disk_partition_t info;
40 int dev, part;
9aa90c1d 41 int err;
1ad0b98a 42 loff_t size;
57210c7c 43
7ce1526e
MV
44 err = env_export(&env_new);
45 if (err)
46 return err;
57210c7c 47
43ba3c59
TR
48 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
49 CONFIG_ENV_FAT_DEVICE_AND_PART,
be354c1a
WJ
50 &dev_desc, &info, 1);
51 if (part < 0)
57210c7c 52 return 1;
9aa90c1d 53
bcce53d0 54 dev = dev_desc->devnum;
be354c1a 55 if (fat_set_blk_dev(dev_desc, &info) != 0) {
d0816da5
MR
56 /*
57 * This printf is embedded in the messages from env_save that
58 * will calling it. The missing \n is intentional.
59 */
60 printf("Unable to use %s %d:%d... ",
43ba3c59 61 CONFIG_ENV_FAT_INTERFACE, dev, part);
57210c7c
MS
62 return 1;
63 }
64
43ba3c59 65 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
1ad0b98a 66 &size);
9aa90c1d 67 if (err == -1) {
d0816da5
MR
68 /*
69 * This printf is embedded in the messages from env_save that
70 * will calling it. The missing \n is intentional.
71 */
72 printf("Unable to write \"%s\" from %s%d:%d... ",
43ba3c59 73 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
57210c7c
MS
74 return 1;
75 }
76
57210c7c
MS
77 return 0;
78}
4415f1d1 79#endif /* CMD_SAVEENV */
57210c7c 80
4415f1d1 81#ifdef LOADENV
c5951991 82static int env_fat_load(void)
57210c7c 83{
6d1966e1 84 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
4101f687 85 struct blk_desc *dev_desc = NULL;
be354c1a
WJ
86 disk_partition_t info;
87 int dev, part;
9aa90c1d 88 int err;
57210c7c 89
95058fbb 90#ifdef CONFIG_MMC
26862b4a
FA
91 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
92 mmc_initialize(NULL);
95058fbb 93#endif
26862b4a 94
43ba3c59
TR
95 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
96 CONFIG_ENV_FAT_DEVICE_AND_PART,
be354c1a
WJ
97 &dev_desc, &info, 1);
98 if (part < 0)
99 goto err_env_relocate;
100
bcce53d0 101 dev = dev_desc->devnum;
be354c1a 102 if (fat_set_blk_dev(dev_desc, &info) != 0) {
d0816da5
MR
103 /*
104 * This printf is embedded in the messages from env_save that
105 * will calling it. The missing \n is intentional.
106 */
107 printf("Unable to use %s %d:%d... ",
43ba3c59 108 CONFIG_ENV_FAT_INTERFACE, dev, part);
be354c1a 109 goto err_env_relocate;
57210c7c
MS
110 }
111
43ba3c59 112 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
9aa90c1d 113 if (err == -1) {
d0816da5
MR
114 /*
115 * This printf is embedded in the messages from env_save that
116 * will calling it. The missing \n is intentional.
117 */
118 printf("Unable to read \"%s\" from %s%d:%d... ",
43ba3c59 119 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
be354c1a 120 goto err_env_relocate;
57210c7c
MS
121 }
122
2166ebf7 123 return env_import(buf, 1);
be354c1a
WJ
124
125err_env_relocate:
0ac7d722 126 env_set_default(NULL, 0);
c5951991
SG
127
128 return -EIO;
57210c7c 129}
4415f1d1
SG
130#endif /* LOADENV */
131
132U_BOOT_ENV_LOCATION(fat) = {
133 .location = ENVL_FAT,
ac358beb 134 ENV_NAME("FAT")
4415f1d1 135#ifdef LOADENV
e5bce247 136 .load = env_fat_load,
4415f1d1
SG
137#endif
138#ifdef CMD_SAVEENV
e5bce247 139 .save = env_save_ptr(env_fat_save),
4415f1d1 140#endif
4415f1d1 141};
This page took 0.465997 seconds and 4 git commands to generate.