]> git.ipfire.org Git - people/ms/u-boot.git/blame - fs/fs.c
pci: Properly configure prefetchable memory region
[people/ms/u-boot.git] / fs / fs.c
CommitLineData
045fa1e1
SW
1/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include <config.h>
18#include <common.h>
19#include <part.h>
20#include <ext4fs.h>
21#include <fat.h>
22#include <fs.h>
92ccc96b 23#include <sandboxfs.h>
117e0507 24#include <asm/io.h>
045fa1e1 25
a1b231ce
SW
26DECLARE_GLOBAL_DATA_PTR;
27
045fa1e1
SW
28static block_dev_desc_t *fs_dev_desc;
29static disk_partition_t fs_partition;
30static int fs_type = FS_TYPE_ANY;
31
2ded0d47
SG
32static inline int fs_probe_unsupported(block_dev_desc_t *fs_dev_desc,
33 disk_partition_t *fs_partition)
436e2b73
SG
34{
35 printf("** Unrecognized filesystem type **\n");
36 return -1;
37}
38
045fa1e1
SW
39static inline int fs_ls_unsupported(const char *dirname)
40{
045fa1e1
SW
41 return -1;
42}
43
117e0507 44static inline int fs_read_unsupported(const char *filename, void *buf,
045fa1e1
SW
45 int offset, int len)
46{
045fa1e1
SW
47 return -1;
48}
49
a8f6ab52
SG
50static inline int fs_write_unsupported(const char *filename, void *buf,
51 int offset, int len)
52{
53 return -1;
54}
55
436e2b73
SG
56static inline void fs_close_unsupported(void)
57{
58}
59
436e2b73 60struct fstype_info {
045fa1e1 61 int fstype;
2ded0d47
SG
62 int (*probe)(block_dev_desc_t *fs_dev_desc,
63 disk_partition_t *fs_partition);
436e2b73 64 int (*ls)(const char *dirname);
117e0507 65 int (*read)(const char *filename, void *buf, int offset, int len);
a8f6ab52 66 int (*write)(const char *filename, void *buf, int offset, int len);
436e2b73
SG
67 void (*close)(void);
68};
69
70static struct fstype_info fstypes[] = {
71#ifdef CONFIG_FS_FAT
045fa1e1
SW
72 {
73 .fstype = FS_TYPE_FAT,
e6d52415
SG
74 .probe = fat_set_blk_dev,
75 .close = fat_close,
436e2b73 76 .ls = file_fat_ls,
e6d52415 77 .read = fat_read_file,
045fa1e1 78 },
436e2b73
SG
79#endif
80#ifdef CONFIG_FS_EXT4
045fa1e1
SW
81 {
82 .fstype = FS_TYPE_EXT,
e6d52415
SG
83 .probe = ext4fs_probe,
84 .close = ext4fs_close,
436e2b73 85 .ls = ext4fs_ls,
e6d52415 86 .read = ext4_read_file,
436e2b73 87 },
92ccc96b
SG
88#endif
89#ifdef CONFIG_SANDBOX
90 {
91 .fstype = FS_TYPE_SANDBOX,
92 .probe = sandbox_fs_set_blk_dev,
93 .close = sandbox_fs_close,
94 .ls = sandbox_fs_ls,
95 .read = fs_read_sandbox,
7eb2c8d5 96 .write = fs_write_sandbox,
92ccc96b 97 },
436e2b73
SG
98#endif
99 {
100 .fstype = FS_TYPE_ANY,
101 .probe = fs_probe_unsupported,
102 .close = fs_close_unsupported,
103 .ls = fs_ls_unsupported,
104 .read = fs_read_unsupported,
a8f6ab52 105 .write = fs_write_unsupported,
045fa1e1
SW
106 },
107};
108
c6f548d2
SG
109static struct fstype_info *fs_get_info(int fstype)
110{
111 struct fstype_info *info;
112 int i;
113
114 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
115 if (fstype == info->fstype)
116 return info;
117 }
118
119 /* Return the 'unsupported' sentinel */
120 return info;
121}
122
045fa1e1
SW
123int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
124{
436e2b73 125 struct fstype_info *info;
045fa1e1 126 int part, i;
a1b231ce
SW
127#ifdef CONFIG_NEEDS_MANUAL_RELOC
128 static int relocated;
129
130 if (!relocated) {
436e2b73
SG
131 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
132 i++, info++) {
133 info->probe += gd->reloc_off;
134 info->close += gd->reloc_off;
135 info->ls += gd->reloc_off;
136 info->read += gd->reloc_off;
a8f6ab52 137 info->write += gd->reloc_off;
436e2b73 138 }
a1b231ce
SW
139 relocated = 1;
140 }
141#endif
045fa1e1
SW
142
143 part = get_device_and_partition(ifname, dev_part_str, &fs_dev_desc,
144 &fs_partition, 1);
145 if (part < 0)
146 return -1;
147
436e2b73
SG
148 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
149 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
150 fstype != info->fstype)
045fa1e1
SW
151 continue;
152
2ded0d47 153 if (!info->probe(fs_dev_desc, &fs_partition)) {
436e2b73 154 fs_type = info->fstype;
045fa1e1
SW
155 return 0;
156 }
157 }
158
045fa1e1
SW
159 return -1;
160}
161
162static void fs_close(void)
163{
c6f548d2 164 struct fstype_info *info = fs_get_info(fs_type);
045fa1e1 165
c6f548d2 166 info->close();
e6d52415 167
045fa1e1
SW
168 fs_type = FS_TYPE_ANY;
169}
170
171int fs_ls(const char *dirname)
172{
173 int ret;
174
c6f548d2
SG
175 struct fstype_info *info = fs_get_info(fs_type);
176
177 ret = info->ls(dirname);
045fa1e1 178
e6d52415 179 fs_type = FS_TYPE_ANY;
045fa1e1
SW
180 fs_close();
181
182 return ret;
183}
184
185int fs_read(const char *filename, ulong addr, int offset, int len)
186{
c6f548d2 187 struct fstype_info *info = fs_get_info(fs_type);
117e0507 188 void *buf;
045fa1e1
SW
189 int ret;
190
117e0507
SG
191 /*
192 * We don't actually know how many bytes are being read, since len==0
193 * means read the whole file.
194 */
195 buf = map_sysmem(addr, len);
196 ret = info->read(filename, buf, offset, len);
197 unmap_sysmem(buf);
045fa1e1 198
c6f548d2
SG
199 /* If we requested a specific number of bytes, check we got it */
200 if (ret >= 0 && len && ret != len) {
201 printf("** Unable to read file %s **\n", filename);
202 ret = -1;
203 }
045fa1e1
SW
204 fs_close();
205
206 return ret;
207}
208
a8f6ab52
SG
209int fs_write(const char *filename, ulong addr, int offset, int len)
210{
211 struct fstype_info *info = fs_get_info(fs_type);
212 void *buf;
213 int ret;
214
215 /*
216 * We don't actually know how many bytes are being read, since len==0
217 * means read the whole file.
218 */
219 buf = map_sysmem(addr, len);
220 ret = info->write(filename, buf, offset, len);
221 unmap_sysmem(buf);
222
223 /* If we requested a specific number of bytes, check we got it */
224 if (ret >= 0 && len && ret != len) {
225 printf("** Unable to write file %s **\n", filename);
226 ret = -1;
227 }
228 fs_close();
229
230 return ret;
231}
232
f9b55e22 233int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
3f83c87e 234 int fstype, int cmdline_base)
045fa1e1
SW
235{
236 unsigned long addr;
237 const char *addr_str;
238 const char *filename;
239 unsigned long bytes;
240 unsigned long pos;
241 int len_read;
da1fd96c 242 unsigned long time;
045fa1e1 243
e9b0f99e
SW
244 if (argc < 2)
245 return CMD_RET_USAGE;
246 if (argc > 7)
045fa1e1
SW
247 return CMD_RET_USAGE;
248
e9b0f99e 249 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
045fa1e1
SW
250 return 1;
251
252 if (argc >= 4) {
3f83c87e 253 addr = simple_strtoul(argv[3], NULL, cmdline_base);
045fa1e1
SW
254 } else {
255 addr_str = getenv("loadaddr");
256 if (addr_str != NULL)
257 addr = simple_strtoul(addr_str, NULL, 16);
258 else
259 addr = CONFIG_SYS_LOAD_ADDR;
260 }
261 if (argc >= 5) {
262 filename = argv[4];
263 } else {
264 filename = getenv("bootfile");
265 if (!filename) {
266 puts("** No boot file defined **\n");
267 return 1;
268 }
269 }
270 if (argc >= 6)
3f83c87e 271 bytes = simple_strtoul(argv[5], NULL, cmdline_base);
045fa1e1
SW
272 else
273 bytes = 0;
274 if (argc >= 7)
3f83c87e 275 pos = simple_strtoul(argv[6], NULL, cmdline_base);
045fa1e1
SW
276 else
277 pos = 0;
278
da1fd96c 279 time = get_timer(0);
045fa1e1 280 len_read = fs_read(filename, addr, pos, bytes);
da1fd96c 281 time = get_timer(time);
045fa1e1
SW
282 if (len_read <= 0)
283 return 1;
284
da1fd96c
AB
285 printf("%d bytes read in %lu ms", len_read, time);
286 if (time > 0) {
287 puts(" (");
288 print_size(len_read / time * 1000, "/s");
289 puts(")");
290 }
291 puts("\n");
045fa1e1 292
49c4f037 293 setenv_hex("filesize", len_read);
045fa1e1
SW
294
295 return 0;
296}
297
298int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
299 int fstype)
300{
301 if (argc < 2)
302 return CMD_RET_USAGE;
e9b0f99e
SW
303 if (argc > 4)
304 return CMD_RET_USAGE;
045fa1e1
SW
305
306 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
307 return 1;
308
e9b0f99e 309 if (fs_ls(argc >= 4 ? argv[3] : "/"))
045fa1e1
SW
310 return 1;
311
312 return 0;
313}
a8f6ab52
SG
314
315int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
316 int fstype, int cmdline_base)
317{
318 unsigned long addr;
319 const char *filename;
320 unsigned long bytes;
321 unsigned long pos;
322 int len;
323 unsigned long time;
324
325 if (argc < 6 || argc > 7)
326 return CMD_RET_USAGE;
327
328 if (fs_set_blk_dev(argv[1], argv[2], fstype))
329 return 1;
330
331 filename = argv[3];
332 addr = simple_strtoul(argv[4], NULL, cmdline_base);
333 bytes = simple_strtoul(argv[5], NULL, cmdline_base);
334 if (argc >= 7)
335 pos = simple_strtoul(argv[6], NULL, cmdline_base);
336 else
337 pos = 0;
338
339 time = get_timer(0);
340 len = fs_write(filename, addr, pos, bytes);
341 time = get_timer(time);
342 if (len <= 0)
343 return 1;
344
345 printf("%d bytes written in %lu ms", len, time);
346 if (time > 0) {
347 puts(" (");
348 print_size(len / time * 1000, "/s");
349 puts(")");
350 }
351 puts("\n");
352
353 return 0;
354}