Merge git://git.denx.de/u-boot-video
[oweals/u-boot.git] / env / fat.c
1 /*
2  * (c) Copyright 2011 by Tigris Elektronik GmbH
3  *
4  * Author:
5  *  Maximilian Schwerin <mvs@tigris.de>
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #include <common.h>
11
12 #include <command.h>
13 #include <environment.h>
14 #include <linux/stddef.h>
15 #include <malloc.h>
16 #include <memalign.h>
17 #include <search.h>
18 #include <errno.h>
19 #include <fat.h>
20 #include <mmc.h>
21
22 #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
34 DECLARE_GLOBAL_DATA_PTR;
35
36 #ifdef CMD_SAVEENV
37 static int env_fat_save(void)
38 {
39         env_t __aligned(ARCH_DMA_MINALIGN) env_new;
40         struct blk_desc *dev_desc = NULL;
41         disk_partition_t info;
42         int dev, part;
43         int err;
44         loff_t size;
45
46         err = env_export(&env_new);
47         if (err)
48                 return err;
49
50         part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
51                                         CONFIG_ENV_FAT_DEVICE_AND_PART,
52                                         &dev_desc, &info, 1);
53         if (part < 0)
54                 return 1;
55
56         dev = dev_desc->devnum;
57         if (fat_set_blk_dev(dev_desc, &info) != 0) {
58                 /*
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... ",
63                        CONFIG_ENV_FAT_INTERFACE, dev, part);
64                 return 1;
65         }
66
67         err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
68                              &size);
69         if (err == -1) {
70                 /*
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... ",
75                         CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
76                 return 1;
77         }
78
79         return 0;
80 }
81 #endif /* CMD_SAVEENV */
82
83 #ifdef LOADENV
84 static int env_fat_load(void)
85 {
86         ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
87         struct blk_desc *dev_desc = NULL;
88         disk_partition_t info;
89         int dev, part;
90         int err;
91
92 #ifdef CONFIG_MMC
93         if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc"))
94                 mmc_initialize(NULL);
95 #endif
96
97         part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
98                                         CONFIG_ENV_FAT_DEVICE_AND_PART,
99                                         &dev_desc, &info, 1);
100         if (part < 0)
101                 goto err_env_relocate;
102
103         dev = dev_desc->devnum;
104         if (fat_set_blk_dev(dev_desc, &info) != 0) {
105                 /*
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... ",
110                        CONFIG_ENV_FAT_INTERFACE, dev, part);
111                 goto err_env_relocate;
112         }
113
114         err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
115         if (err == -1) {
116                 /*
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... ",
121                         CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
122                 goto err_env_relocate;
123         }
124
125         return env_import(buf, 1);
126
127 err_env_relocate:
128         set_default_env(NULL);
129
130         return -EIO;
131 }
132 #endif /* LOADENV */
133
134 U_BOOT_ENV_LOCATION(fat) = {
135         .location       = ENVL_FAT,
136         ENV_NAME("FAT")
137 #ifdef LOADENV
138         .load           = env_fat_load,
139 #endif
140 #ifdef CMD_SAVEENV
141         .save           = env_save_ptr(env_fat_save),
142 #endif
143 };