]> Git Repo - J-u-boot.git/blob - env/fat.c
Merge patch series "Add AM64x Support to PRUSS and PRU_RPROC driver"
[J-u-boot.git] / env / fat.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (c) Copyright 2011 by Tigris Elektronik GmbH
4  *
5  * Author:
6  *  Maximilian Schwerin <[email protected]>
7  */
8
9 #include <command.h>
10 #include <env.h>
11 #include <env_internal.h>
12 #include <part.h>
13 #include <malloc.h>
14 #include <memalign.h>
15 #include <search.h>
16 #include <errno.h>
17 #include <fat.h>
18 #include <mmc.h>
19 #include <scsi.h>
20 #include <asm/cache.h>
21 #include <asm/global_data.h>
22 #include <linux/stddef.h>
23
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
31 #endif
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 __weak const char *env_fat_get_intf(void)
36 {
37         return (const char *)CONFIG_ENV_FAT_INTERFACE;
38 }
39
40 __weak char *env_fat_get_dev_part(void)
41 {
42 #ifdef CONFIG_MMC
43         static char *part_str;
44
45         if (!part_str) {
46                 part_str = CONFIG_ENV_FAT_DEVICE_AND_PART;
47                 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
48                         part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART;
49                         part_str[0] += mmc_get_env_dev();
50                 }
51         }
52
53         return part_str;
54 #else
55         return CONFIG_ENV_FAT_DEVICE_AND_PART;
56 #endif
57 }
58
59 static int env_fat_save(void)
60 {
61         env_t __aligned(ARCH_DMA_MINALIGN) env_new;
62         struct blk_desc *dev_desc = NULL;
63         struct disk_partition info;
64         const char *file = CONFIG_ENV_FAT_FILE;
65         int dev, part;
66         int err;
67         loff_t size;
68         const char *ifname = env_fat_get_intf();
69         const char *dev_and_part = env_fat_get_dev_part();
70
71         err = env_export(&env_new);
72         if (err)
73                 return err;
74
75         part = blk_get_device_part_str(ifname, dev_and_part,
76                                        &dev_desc, &info, 1);
77         if (part < 0)
78                 return 1;
79
80         dev = dev_desc->devnum;
81         if (fat_set_blk_dev(dev_desc, &info) != 0) {
82                 /*
83                  * This printf is embedded in the messages from env_save that
84                  * will calling it. The missing \n is intentional.
85                  */
86                 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
87                 return 1;
88         }
89
90 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
91         if (gd->env_valid == ENV_VALID)
92                 file = CONFIG_ENV_FAT_FILE_REDUND;
93 #endif
94
95         err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size);
96         if (err == -1) {
97                 /*
98                  * This printf is embedded in the messages from env_save that
99                  * will calling it. The missing \n is intentional.
100                  */
101                 printf("Unable to write \"%s\" from %s%d:%d...\n", file, ifname, dev, part);
102                 return 1;
103         }
104
105 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
106         gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND;
107 #endif
108
109         return 0;
110 }
111
112 #ifdef LOADENV
113 static int env_fat_load(void)
114 {
115         ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE);
116 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
117         ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE);
118         int err2;
119 #endif
120         struct blk_desc *dev_desc = NULL;
121         struct disk_partition info;
122         int dev, part;
123         int err1;
124         const char *ifname = env_fat_get_intf();
125         const char *dev_and_part = env_fat_get_dev_part();
126
127 #ifdef CONFIG_MMC
128         if (!strcmp(ifname, "mmc"))
129                 mmc_initialize(NULL);
130 #endif
131 #ifndef CONFIG_SPL_BUILD
132 #if defined(CONFIG_AHCI) || defined(CONFIG_SCSI)
133         if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "scsi"))
134                 scsi_scan(true);
135 #endif
136 #endif
137         part = blk_get_device_part_str(ifname, dev_and_part,
138                                        &dev_desc, &info, 1);
139         if (part < 0)
140                 goto err_env_relocate;
141
142         dev = dev_desc->devnum;
143         if (fat_set_blk_dev(dev_desc, &info) != 0) {
144                 /*
145                  * This printf is embedded in the messages from env_save that
146                  * will calling it. The missing \n is intentional.
147                  */
148                 printf("Unable to use %s %d:%d...\n", ifname, dev, part);
149                 goto err_env_relocate;
150         }
151
152         err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE);
153 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
154         err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE);
155
156         err1 = (err1 >= 0) ? 0 : -1;
157         err2 = (err2 >= 0) ? 0 : -1;
158         return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL);
159 #else
160         if (err1 < 0) {
161                 /*
162                  * This printf is embedded in the messages from env_save that
163                  * will calling it. The missing \n is intentional.
164                  */
165                 printf("Unable to read \"%s\" from %s%d:%d... \n",
166                         CONFIG_ENV_FAT_FILE, ifname, dev, part);
167                 goto err_env_relocate;
168         }
169
170         return env_import(buf1, 1, H_EXTERNAL);
171 #endif
172
173 err_env_relocate:
174         env_set_default(NULL, 0);
175
176         return -EIO;
177 }
178 #endif /* LOADENV */
179
180 U_BOOT_ENV_LOCATION(fat) = {
181         .location       = ENVL_FAT,
182         ENV_NAME("FAT")
183 #ifdef LOADENV
184         .load           = env_fat_load,
185 #endif
186         .save           = ENV_SAVE_PTR(env_fat_save),
187 };
This page took 0.036143 seconds and 4 git commands to generate.