blob: ac0897d94a08625de0bca16a913d8fcdb6392884 [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>
Christian Gmeiner59e890e2014-11-12 14:35:04 +010018#include <errno.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000019#include <common.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050020#include <mapmem.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000021#include <part.h>
22#include <ext4fs.h>
23#include <fat.h>
24#include <fs.h>
Simon Glass92ccc962012-12-26 09:53:35 +000025#include <sandboxfs.h>
Simon Glass117e0502012-12-26 09:53:32 +000026#include <asm/io.h>
Tom Rini9e374e72014-11-24 11:50:46 -050027#include <div64.h>
28#include <linux/math64.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000029
Stephen Warrena1b231c2012-10-30 07:50:47 +000030DECLARE_GLOBAL_DATA_PTR;
31
Stephen Warren045fa1e2012-10-22 06:43:51 +000032static block_dev_desc_t *fs_dev_desc;
33static disk_partition_t fs_partition;
34static int fs_type = FS_TYPE_ANY;
35
Simon Glass2ded0d42012-12-26 09:53:31 +000036static inline int fs_probe_unsupported(block_dev_desc_t *fs_dev_desc,
37 disk_partition_t *fs_partition)
Simon Glass436e2b72012-12-26 09:53:29 +000038{
39 printf("** Unrecognized filesystem type **\n");
40 return -1;
41}
42
Stephen Warren045fa1e2012-10-22 06:43:51 +000043static inline int fs_ls_unsupported(const char *dirname)
44{
Stephen Warren045fa1e2012-10-22 06:43:51 +000045 return -1;
46}
47
Stephen Warren61529162014-02-03 13:21:00 -070048static inline int fs_exists_unsupported(const char *filename)
49{
50 return 0;
51}
52
Suriyan Ramasamid455d872014-11-17 14:39:38 -080053static inline int fs_size_unsupported(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -060054{
55 return -1;
56}
57
Simon Glass117e0502012-12-26 09:53:32 +000058static inline int fs_read_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080059 loff_t offset, loff_t len,
60 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +000061{
Stephen Warren045fa1e2012-10-22 06:43:51 +000062 return -1;
63}
64
Simon Glassa8f6ab52013-04-20 08:42:50 +000065static inline int fs_write_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080066 loff_t offset, loff_t len,
67 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +000068{
69 return -1;
70}
71
Simon Glass436e2b72012-12-26 09:53:29 +000072static inline void fs_close_unsupported(void)
73{
74}
75
Christian Gmeiner59e890e2014-11-12 14:35:04 +010076static inline int fs_uuid_unsupported(char *uuid_str)
77{
78 return -1;
79}
80
Simon Glass436e2b72012-12-26 09:53:29 +000081struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +000082 int fstype;
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +010083 char *name;
Stephen Warren377202b2014-02-03 13:21:01 -070084 /*
85 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
86 * should be false in most cases. For "virtual" filesystems which
87 * aren't based on a U-Boot block device (e.g. sandbox), this can be
88 * set to true. This should also be true for the dumm entry at the end
89 * of fstypes[], since that is essentially a "virtual" (non-existent)
90 * filesystem.
91 */
92 bool null_dev_desc_ok;
Simon Glass2ded0d42012-12-26 09:53:31 +000093 int (*probe)(block_dev_desc_t *fs_dev_desc,
94 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +000095 int (*ls)(const char *dirname);
Stephen Warren61529162014-02-03 13:21:00 -070096 int (*exists)(const char *filename);
Suriyan Ramasamid455d872014-11-17 14:39:38 -080097 int (*size)(const char *filename, loff_t *size);
98 int (*read)(const char *filename, void *buf, loff_t offset,
99 loff_t len, loff_t *actread);
100 int (*write)(const char *filename, void *buf, loff_t offset,
101 loff_t len, loff_t *actwrite);
Simon Glass436e2b72012-12-26 09:53:29 +0000102 void (*close)(void);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100103 int (*uuid)(char *uuid_str);
Simon Glass436e2b72012-12-26 09:53:29 +0000104};
105
106static struct fstype_info fstypes[] = {
107#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000108 {
109 .fstype = FS_TYPE_FAT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100110 .name = "fat",
Stephen Warren377202b2014-02-03 13:21:01 -0700111 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000112 .probe = fat_set_blk_dev,
113 .close = fat_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000114 .ls = file_fat_ls,
Stephen Warrenb7b5f312014-02-03 13:21:10 -0700115 .exists = fat_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600116 .size = fat_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000117 .read = fat_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800118#ifdef CONFIG_FAT_WRITE
119 .write = file_fat_write,
120#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700121 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800122#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100123 .uuid = fs_uuid_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000124 },
Simon Glass436e2b72012-12-26 09:53:29 +0000125#endif
126#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000127 {
128 .fstype = FS_TYPE_EXT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100129 .name = "ext4",
Stephen Warren377202b2014-02-03 13:21:01 -0700130 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000131 .probe = ext4fs_probe,
132 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000133 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700134 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600135 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000136 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800137#ifdef CONFIG_CMD_EXT4_WRITE
138 .write = ext4_write_file,
139#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700140 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800141#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100142 .uuid = ext4fs_uuid,
Simon Glass436e2b72012-12-26 09:53:29 +0000143 },
144#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000145#ifdef CONFIG_SANDBOX
146 {
147 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100148 .name = "sandbox",
Stephen Warren377202b2014-02-03 13:21:01 -0700149 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000150 .probe = sandbox_fs_set_blk_dev,
151 .close = sandbox_fs_close,
152 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700153 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600154 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000155 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000156 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100157 .uuid = fs_uuid_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000158 },
159#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000160 {
161 .fstype = FS_TYPE_ANY,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100162 .name = "unsupported",
Stephen Warren377202b2014-02-03 13:21:01 -0700163 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000164 .probe = fs_probe_unsupported,
165 .close = fs_close_unsupported,
166 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700167 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600168 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000169 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000170 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100171 .uuid = fs_uuid_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000172 },
173};
174
Simon Glassc6f548d2012-12-26 09:53:30 +0000175static struct fstype_info *fs_get_info(int fstype)
176{
177 struct fstype_info *info;
178 int i;
179
180 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
181 if (fstype == info->fstype)
182 return info;
183 }
184
185 /* Return the 'unsupported' sentinel */
186 return info;
187}
188
Stephen Warren045fa1e2012-10-22 06:43:51 +0000189int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
190{
Simon Glass436e2b72012-12-26 09:53:29 +0000191 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000192 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000193#ifdef CONFIG_NEEDS_MANUAL_RELOC
194 static int relocated;
195
196 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000197 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
198 i++, info++) {
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100199 info->name += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000200 info->probe += gd->reloc_off;
201 info->close += gd->reloc_off;
202 info->ls += gd->reloc_off;
203 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000204 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000205 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000206 relocated = 1;
207 }
208#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000209
210 part = get_device_and_partition(ifname, dev_part_str, &fs_dev_desc,
211 &fs_partition, 1);
212 if (part < 0)
213 return -1;
214
Simon Glass436e2b72012-12-26 09:53:29 +0000215 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
216 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
217 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000218 continue;
219
Stephen Warren377202b2014-02-03 13:21:01 -0700220 if (!fs_dev_desc && !info->null_dev_desc_ok)
221 continue;
222
Simon Glass2ded0d42012-12-26 09:53:31 +0000223 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000224 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000225 return 0;
226 }
227 }
228
Stephen Warren045fa1e2012-10-22 06:43:51 +0000229 return -1;
230}
231
232static void fs_close(void)
233{
Simon Glassc6f548d2012-12-26 09:53:30 +0000234 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000235
Simon Glassc6f548d2012-12-26 09:53:30 +0000236 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000237
Stephen Warren045fa1e2012-10-22 06:43:51 +0000238 fs_type = FS_TYPE_ANY;
239}
240
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100241int fs_uuid(char *uuid_str)
242{
243 struct fstype_info *info = fs_get_info(fs_type);
244
245 return info->uuid(uuid_str);
246}
247
Stephen Warren045fa1e2012-10-22 06:43:51 +0000248int fs_ls(const char *dirname)
249{
250 int ret;
251
Simon Glassc6f548d2012-12-26 09:53:30 +0000252 struct fstype_info *info = fs_get_info(fs_type);
253
254 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000255
Simon Glasse6d52412012-12-26 09:53:33 +0000256 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000257 fs_close();
258
259 return ret;
260}
261
Stephen Warren61529162014-02-03 13:21:00 -0700262int fs_exists(const char *filename)
263{
264 int ret;
265
266 struct fstype_info *info = fs_get_info(fs_type);
267
268 ret = info->exists(filename);
269
270 fs_close();
271
272 return ret;
273}
274
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800275int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600276{
277 int ret;
278
279 struct fstype_info *info = fs_get_info(fs_type);
280
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800281 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600282
283 fs_close();
284
285 return ret;
286}
287
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800288int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
289 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000290{
Simon Glassc6f548d2012-12-26 09:53:30 +0000291 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000292 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000293 int ret;
294
Simon Glass117e0502012-12-26 09:53:32 +0000295 /*
296 * We don't actually know how many bytes are being read, since len==0
297 * means read the whole file.
298 */
299 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800300 ret = info->read(filename, buf, offset, len, actread);
Simon Glass117e0502012-12-26 09:53:32 +0000301 unmap_sysmem(buf);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000302
Simon Glassc6f548d2012-12-26 09:53:30 +0000303 /* If we requested a specific number of bytes, check we got it */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800304 if (ret == 0 && len && *actread != len) {
Simon Glassc6f548d2012-12-26 09:53:30 +0000305 printf("** Unable to read file %s **\n", filename);
306 ret = -1;
307 }
Stephen Warren045fa1e2012-10-22 06:43:51 +0000308 fs_close();
309
310 return ret;
311}
312
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800313int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
314 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000315{
316 struct fstype_info *info = fs_get_info(fs_type);
317 void *buf;
318 int ret;
319
Simon Glassa8f6ab52013-04-20 08:42:50 +0000320 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800321 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000322 unmap_sysmem(buf);
323
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800324 if (ret < 0 && len != *actwrite) {
Simon Glassa8f6ab52013-04-20 08:42:50 +0000325 printf("** Unable to write file %s **\n", filename);
326 ret = -1;
327 }
328 fs_close();
329
330 return ret;
331}
332
Stephen Warrencf659812014-06-11 12:47:26 -0600333int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
334 int fstype)
335{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800336 loff_t size;
Stephen Warrencf659812014-06-11 12:47:26 -0600337
338 if (argc != 4)
339 return CMD_RET_USAGE;
340
341 if (fs_set_blk_dev(argv[1], argv[2], fstype))
342 return 1;
343
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800344 if (fs_size(argv[3], &size) < 0)
Stephen Warrencf659812014-06-11 12:47:26 -0600345 return CMD_RET_FAILURE;
346
347 setenv_hex("filesize", size);
348
349 return 0;
350}
351
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000352int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200353 int fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000354{
355 unsigned long addr;
356 const char *addr_str;
357 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800358 loff_t bytes;
359 loff_t pos;
360 loff_t len_read;
361 int ret;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100362 unsigned long time;
Pavel Machek949bbd72014-07-09 22:42:57 +0200363 char *ep;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000364
Stephen Warrene9b0f992012-10-30 12:04:17 +0000365 if (argc < 2)
366 return CMD_RET_USAGE;
367 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000368 return CMD_RET_USAGE;
369
Stephen Warrene9b0f992012-10-30 12:04:17 +0000370 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000371 return 1;
372
373 if (argc >= 4) {
Pavel Machek949bbd72014-07-09 22:42:57 +0200374 addr = simple_strtoul(argv[3], &ep, 16);
375 if (ep == argv[3] || *ep != '\0')
376 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000377 } else {
378 addr_str = getenv("loadaddr");
379 if (addr_str != NULL)
380 addr = simple_strtoul(addr_str, NULL, 16);
381 else
382 addr = CONFIG_SYS_LOAD_ADDR;
383 }
384 if (argc >= 5) {
385 filename = argv[4];
386 } else {
387 filename = getenv("bootfile");
388 if (!filename) {
389 puts("** No boot file defined **\n");
390 return 1;
391 }
392 }
393 if (argc >= 6)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200394 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000395 else
396 bytes = 0;
397 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200398 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000399 else
400 pos = 0;
401
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100402 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800403 ret = fs_read(filename, addr, pos, bytes, &len_read);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100404 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800405 if (ret < 0)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000406 return 1;
407
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800408 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100409 if (time > 0) {
410 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500411 print_size(div_u64(len_read, time) * 1000, "/s");
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100412 puts(")");
413 }
414 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000415
Simon Glass49c4f032013-02-24 17:33:23 +0000416 setenv_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000417
418 return 0;
419}
420
421int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
422 int fstype)
423{
424 if (argc < 2)
425 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000426 if (argc > 4)
427 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000428
429 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
430 return 1;
431
Stephen Warrene9b0f992012-10-30 12:04:17 +0000432 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000433 return 1;
434
435 return 0;
436}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000437
Stephen Warren61529162014-02-03 13:21:00 -0700438int file_exists(const char *dev_type, const char *dev_part, const char *file,
439 int fstype)
440{
441 if (fs_set_blk_dev(dev_type, dev_part, fstype))
442 return 0;
443
444 return fs_exists(file);
445}
446
Simon Glassa8f6ab52013-04-20 08:42:50 +0000447int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200448 int fstype)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000449{
450 unsigned long addr;
451 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800452 loff_t bytes;
453 loff_t pos;
454 loff_t len;
455 int ret;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000456 unsigned long time;
457
458 if (argc < 6 || argc > 7)
459 return CMD_RET_USAGE;
460
461 if (fs_set_blk_dev(argv[1], argv[2], fstype))
462 return 1;
463
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800464 addr = simple_strtoul(argv[3], NULL, 16);
465 filename = argv[4];
Wolfgang Denkb770e882013-10-05 21:07:25 +0200466 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000467 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200468 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000469 else
470 pos = 0;
471
472 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800473 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000474 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800475 if (ret < 0)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000476 return 1;
477
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800478 printf("%llu bytes written in %lu ms", len, time);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000479 if (time > 0) {
480 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500481 print_size(div_u64(len, time) * 1000, "/s");
Simon Glassa8f6ab52013-04-20 08:42:50 +0000482 puts(")");
483 }
484 puts("\n");
485
486 return 0;
487}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100488
489int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
490 int fstype)
491{
492 int ret;
493 char uuid[37];
494 memset(uuid, 0, sizeof(uuid));
495
496 if (argc < 3 || argc > 4)
497 return CMD_RET_USAGE;
498
499 if (fs_set_blk_dev(argv[1], argv[2], fstype))
500 return 1;
501
502 ret = fs_uuid(uuid);
503 if (ret)
504 return CMD_RET_FAILURE;
505
506 if (argc == 4)
507 setenv(argv[3], uuid);
508 else
509 printf("%s\n", uuid);
510
511 return CMD_RET_SUCCESS;
512}
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100513
514int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
515{
516 struct fstype_info *info;
517
518 if (argc < 3 || argc > 4)
519 return CMD_RET_USAGE;
520
521 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
522 return 1;
523
524 info = fs_get_info(fs_type);
525
526 if (argc == 4)
527 setenv(argv[3], info->name);
528 else
529 printf("%s\n", info->name);
530
531 return CMD_RET_SUCCESS;
532}
533