blob: 99e516a44d82dc74f868a5636a021c3c81718db1 [file] [log] [blame]
Stephen Warren045fa1e2012-10-22 06:43:51 +00001/*
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>
Simon Glass92ccc962012-12-26 09:53:35 +000023#include <sandboxfs.h>
Simon Glass117e0502012-12-26 09:53:32 +000024#include <asm/io.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000025
Stephen Warrena1b231c2012-10-30 07:50:47 +000026DECLARE_GLOBAL_DATA_PTR;
27
Stephen Warren045fa1e2012-10-22 06:43:51 +000028static block_dev_desc_t *fs_dev_desc;
29static disk_partition_t fs_partition;
30static int fs_type = FS_TYPE_ANY;
31
Simon Glass2ded0d42012-12-26 09:53:31 +000032static inline int fs_probe_unsupported(block_dev_desc_t *fs_dev_desc,
33 disk_partition_t *fs_partition)
Simon Glass436e2b72012-12-26 09:53:29 +000034{
35 printf("** Unrecognized filesystem type **\n");
36 return -1;
37}
38
Stephen Warren045fa1e2012-10-22 06:43:51 +000039static inline int fs_ls_unsupported(const char *dirname)
40{
Stephen Warren045fa1e2012-10-22 06:43:51 +000041 return -1;
42}
43
Simon Glass117e0502012-12-26 09:53:32 +000044static inline int fs_read_unsupported(const char *filename, void *buf,
Stephen Warren045fa1e2012-10-22 06:43:51 +000045 int offset, int len)
46{
Stephen Warren045fa1e2012-10-22 06:43:51 +000047 return -1;
48}
49
Simon Glassa8f6ab52013-04-20 08:42:50 +000050static inline int fs_write_unsupported(const char *filename, void *buf,
51 int offset, int len)
52{
53 return -1;
54}
55
Simon Glass436e2b72012-12-26 09:53:29 +000056static inline void fs_close_unsupported(void)
57{
58}
59
Simon Glass436e2b72012-12-26 09:53:29 +000060struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +000061 int fstype;
Simon Glass2ded0d42012-12-26 09:53:31 +000062 int (*probe)(block_dev_desc_t *fs_dev_desc,
63 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +000064 int (*ls)(const char *dirname);
Simon Glass117e0502012-12-26 09:53:32 +000065 int (*read)(const char *filename, void *buf, int offset, int len);
Simon Glassa8f6ab52013-04-20 08:42:50 +000066 int (*write)(const char *filename, void *buf, int offset, int len);
Simon Glass436e2b72012-12-26 09:53:29 +000067 void (*close)(void);
68};
69
70static struct fstype_info fstypes[] = {
71#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +000072 {
73 .fstype = FS_TYPE_FAT,
Simon Glasse6d52412012-12-26 09:53:33 +000074 .probe = fat_set_blk_dev,
75 .close = fat_close,
Simon Glass436e2b72012-12-26 09:53:29 +000076 .ls = file_fat_ls,
Simon Glasse6d52412012-12-26 09:53:33 +000077 .read = fat_read_file,
Stephen Warren045fa1e2012-10-22 06:43:51 +000078 },
Simon Glass436e2b72012-12-26 09:53:29 +000079#endif
80#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +000081 {
82 .fstype = FS_TYPE_EXT,
Simon Glasse6d52412012-12-26 09:53:33 +000083 .probe = ext4fs_probe,
84 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +000085 .ls = ext4fs_ls,
Simon Glasse6d52412012-12-26 09:53:33 +000086 .read = ext4_read_file,
Simon Glass436e2b72012-12-26 09:53:29 +000087 },
88#endif
Simon Glass92ccc962012-12-26 09:53:35 +000089#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,
Simon Glass7eb2c8d2013-04-20 08:42:51 +000096 .write = fs_write_sandbox,
Simon Glass92ccc962012-12-26 09:53:35 +000097 },
98#endif
Simon Glass436e2b72012-12-26 09:53:29 +000099 {
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,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000105 .write = fs_write_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000106 },
107};
108
Simon Glassc6f548d2012-12-26 09:53:30 +0000109static 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
Stephen Warren045fa1e2012-10-22 06:43:51 +0000123int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
124{
Simon Glass436e2b72012-12-26 09:53:29 +0000125 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000126 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000127#ifdef CONFIG_NEEDS_MANUAL_RELOC
128 static int relocated;
129
130 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000131 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;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000137 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000138 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000139 relocated = 1;
140 }
141#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000142
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
Simon Glass436e2b72012-12-26 09:53:29 +0000148 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)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000151 continue;
152
Simon Glass2ded0d42012-12-26 09:53:31 +0000153 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000154 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000155 return 0;
156 }
157 }
158
Stephen Warren045fa1e2012-10-22 06:43:51 +0000159 return -1;
160}
161
162static void fs_close(void)
163{
Simon Glassc6f548d2012-12-26 09:53:30 +0000164 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000165
Simon Glassc6f548d2012-12-26 09:53:30 +0000166 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000167
Stephen Warren045fa1e2012-10-22 06:43:51 +0000168 fs_type = FS_TYPE_ANY;
169}
170
171int fs_ls(const char *dirname)
172{
173 int ret;
174
Simon Glassc6f548d2012-12-26 09:53:30 +0000175 struct fstype_info *info = fs_get_info(fs_type);
176
177 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000178
Simon Glasse6d52412012-12-26 09:53:33 +0000179 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000180 fs_close();
181
182 return ret;
183}
184
185int fs_read(const char *filename, ulong addr, int offset, int len)
186{
Simon Glassc6f548d2012-12-26 09:53:30 +0000187 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000188 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000189 int ret;
190
Simon Glass117e0502012-12-26 09:53:32 +0000191 /*
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);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000198
Simon Glassc6f548d2012-12-26 09:53:30 +0000199 /* 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 }
Stephen Warren045fa1e2012-10-22 06:43:51 +0000204 fs_close();
205
206 return ret;
207}
208
Simon Glassa8f6ab52013-04-20 08:42:50 +0000209int 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
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000233int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Stephen Warren3f83c872012-10-30 12:04:19 +0000234 int fstype, int cmdline_base)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000235{
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;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100242 unsigned long time;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000243
Stephen Warrene9b0f992012-10-30 12:04:17 +0000244 if (argc < 2)
245 return CMD_RET_USAGE;
246 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000247 return CMD_RET_USAGE;
248
Stephen Warrene9b0f992012-10-30 12:04:17 +0000249 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000250 return 1;
251
252 if (argc >= 4) {
Stephen Warren3f83c872012-10-30 12:04:19 +0000253 addr = simple_strtoul(argv[3], NULL, cmdline_base);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000254 } 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)
Stephen Warren3f83c872012-10-30 12:04:19 +0000271 bytes = simple_strtoul(argv[5], NULL, cmdline_base);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000272 else
273 bytes = 0;
274 if (argc >= 7)
Stephen Warren3f83c872012-10-30 12:04:19 +0000275 pos = simple_strtoul(argv[6], NULL, cmdline_base);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000276 else
277 pos = 0;
278
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100279 time = get_timer(0);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000280 len_read = fs_read(filename, addr, pos, bytes);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100281 time = get_timer(time);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000282 if (len_read <= 0)
283 return 1;
284
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100285 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");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000292
Simon Glass49c4f032013-02-24 17:33:23 +0000293 setenv_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000294
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;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000303 if (argc > 4)
304 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000305
306 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
307 return 1;
308
Stephen Warrene9b0f992012-10-30 12:04:17 +0000309 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000310 return 1;
311
312 return 0;
313}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000314
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}