blob: 3da78606d1281f93ebe3108b9a7bd8f6e5f31edc [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>
20#include <part.h>
21#include <ext4fs.h>
22#include <fat.h>
23#include <fs.h>
Simon Glass92ccc962012-12-26 09:53:35 +000024#include <sandboxfs.h>
Simon Glass117e0502012-12-26 09:53:32 +000025#include <asm/io.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000026
Stephen Warrena1b231c2012-10-30 07:50:47 +000027DECLARE_GLOBAL_DATA_PTR;
28
Stephen Warren045fa1e2012-10-22 06:43:51 +000029static block_dev_desc_t *fs_dev_desc;
30static disk_partition_t fs_partition;
31static int fs_type = FS_TYPE_ANY;
32
Simon Glass2ded0d42012-12-26 09:53:31 +000033static inline int fs_probe_unsupported(block_dev_desc_t *fs_dev_desc,
34 disk_partition_t *fs_partition)
Simon Glass436e2b72012-12-26 09:53:29 +000035{
36 printf("** Unrecognized filesystem type **\n");
37 return -1;
38}
39
Stephen Warren045fa1e2012-10-22 06:43:51 +000040static inline int fs_ls_unsupported(const char *dirname)
41{
Stephen Warren045fa1e2012-10-22 06:43:51 +000042 return -1;
43}
44
Stephen Warren61529162014-02-03 13:21:00 -070045static inline int fs_exists_unsupported(const char *filename)
46{
47 return 0;
48}
49
Suriyan Ramasamid455d872014-11-17 14:39:38 -080050static inline int fs_size_unsupported(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -060051{
52 return -1;
53}
54
Simon Glass117e0502012-12-26 09:53:32 +000055static inline int fs_read_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080056 loff_t offset, loff_t len,
57 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +000058{
Stephen Warren045fa1e2012-10-22 06:43:51 +000059 return -1;
60}
61
Simon Glassa8f6ab52013-04-20 08:42:50 +000062static inline int fs_write_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080063 loff_t offset, loff_t len,
64 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +000065{
66 return -1;
67}
68
Simon Glass436e2b72012-12-26 09:53:29 +000069static inline void fs_close_unsupported(void)
70{
71}
72
Christian Gmeiner59e890e2014-11-12 14:35:04 +010073static inline int fs_uuid_unsupported(char *uuid_str)
74{
75 return -1;
76}
77
Simon Glass436e2b72012-12-26 09:53:29 +000078struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +000079 int fstype;
Stephen Warren377202b2014-02-03 13:21:01 -070080 /*
81 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
82 * should be false in most cases. For "virtual" filesystems which
83 * aren't based on a U-Boot block device (e.g. sandbox), this can be
84 * set to true. This should also be true for the dumm entry at the end
85 * of fstypes[], since that is essentially a "virtual" (non-existent)
86 * filesystem.
87 */
88 bool null_dev_desc_ok;
Simon Glass2ded0d42012-12-26 09:53:31 +000089 int (*probe)(block_dev_desc_t *fs_dev_desc,
90 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +000091 int (*ls)(const char *dirname);
Stephen Warren61529162014-02-03 13:21:00 -070092 int (*exists)(const char *filename);
Suriyan Ramasamid455d872014-11-17 14:39:38 -080093 int (*size)(const char *filename, loff_t *size);
94 int (*read)(const char *filename, void *buf, loff_t offset,
95 loff_t len, loff_t *actread);
96 int (*write)(const char *filename, void *buf, loff_t offset,
97 loff_t len, loff_t *actwrite);
Simon Glass436e2b72012-12-26 09:53:29 +000098 void (*close)(void);
Christian Gmeiner59e890e2014-11-12 14:35:04 +010099 int (*uuid)(char *uuid_str);
Simon Glass436e2b72012-12-26 09:53:29 +0000100};
101
102static struct fstype_info fstypes[] = {
103#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000104 {
105 .fstype = FS_TYPE_FAT,
Stephen Warren377202b2014-02-03 13:21:01 -0700106 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000107 .probe = fat_set_blk_dev,
108 .close = fat_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000109 .ls = file_fat_ls,
Stephen Warrenb7b5f312014-02-03 13:21:10 -0700110 .exists = fat_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600111 .size = fat_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000112 .read = fat_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800113#ifdef CONFIG_FAT_WRITE
114 .write = file_fat_write,
115#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700116 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800117#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100118 .uuid = fs_uuid_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000119 },
Simon Glass436e2b72012-12-26 09:53:29 +0000120#endif
121#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000122 {
123 .fstype = FS_TYPE_EXT,
Stephen Warren377202b2014-02-03 13:21:01 -0700124 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000125 .probe = ext4fs_probe,
126 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000127 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700128 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600129 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000130 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800131#ifdef CONFIG_CMD_EXT4_WRITE
132 .write = ext4_write_file,
133#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700134 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800135#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100136 .uuid = ext4fs_uuid,
Simon Glass436e2b72012-12-26 09:53:29 +0000137 },
138#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000139#ifdef CONFIG_SANDBOX
140 {
141 .fstype = FS_TYPE_SANDBOX,
Stephen Warren377202b2014-02-03 13:21:01 -0700142 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000143 .probe = sandbox_fs_set_blk_dev,
144 .close = sandbox_fs_close,
145 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700146 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600147 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000148 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000149 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100150 .uuid = fs_uuid_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000151 },
152#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000153 {
154 .fstype = FS_TYPE_ANY,
Stephen Warren377202b2014-02-03 13:21:01 -0700155 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000156 .probe = fs_probe_unsupported,
157 .close = fs_close_unsupported,
158 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700159 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600160 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000161 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000162 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100163 .uuid = fs_uuid_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000164 },
165};
166
Simon Glassc6f548d2012-12-26 09:53:30 +0000167static struct fstype_info *fs_get_info(int fstype)
168{
169 struct fstype_info *info;
170 int i;
171
172 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
173 if (fstype == info->fstype)
174 return info;
175 }
176
177 /* Return the 'unsupported' sentinel */
178 return info;
179}
180
Stephen Warren045fa1e2012-10-22 06:43:51 +0000181int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
182{
Simon Glass436e2b72012-12-26 09:53:29 +0000183 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000184 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000185#ifdef CONFIG_NEEDS_MANUAL_RELOC
186 static int relocated;
187
188 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000189 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
190 i++, info++) {
191 info->probe += gd->reloc_off;
192 info->close += gd->reloc_off;
193 info->ls += gd->reloc_off;
194 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000195 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000196 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000197 relocated = 1;
198 }
199#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000200
201 part = get_device_and_partition(ifname, dev_part_str, &fs_dev_desc,
202 &fs_partition, 1);
203 if (part < 0)
204 return -1;
205
Simon Glass436e2b72012-12-26 09:53:29 +0000206 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
207 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
208 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000209 continue;
210
Stephen Warren377202b2014-02-03 13:21:01 -0700211 if (!fs_dev_desc && !info->null_dev_desc_ok)
212 continue;
213
Simon Glass2ded0d42012-12-26 09:53:31 +0000214 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000215 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000216 return 0;
217 }
218 }
219
Stephen Warren045fa1e2012-10-22 06:43:51 +0000220 return -1;
221}
222
223static void fs_close(void)
224{
Simon Glassc6f548d2012-12-26 09:53:30 +0000225 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000226
Simon Glassc6f548d2012-12-26 09:53:30 +0000227 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000228
Stephen Warren045fa1e2012-10-22 06:43:51 +0000229 fs_type = FS_TYPE_ANY;
230}
231
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100232int fs_uuid(char *uuid_str)
233{
234 struct fstype_info *info = fs_get_info(fs_type);
235
236 return info->uuid(uuid_str);
237}
238
Stephen Warren045fa1e2012-10-22 06:43:51 +0000239int fs_ls(const char *dirname)
240{
241 int ret;
242
Simon Glassc6f548d2012-12-26 09:53:30 +0000243 struct fstype_info *info = fs_get_info(fs_type);
244
245 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000246
Simon Glasse6d52412012-12-26 09:53:33 +0000247 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000248 fs_close();
249
250 return ret;
251}
252
Stephen Warren61529162014-02-03 13:21:00 -0700253int fs_exists(const char *filename)
254{
255 int ret;
256
257 struct fstype_info *info = fs_get_info(fs_type);
258
259 ret = info->exists(filename);
260
261 fs_close();
262
263 return ret;
264}
265
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800266int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600267{
268 int ret;
269
270 struct fstype_info *info = fs_get_info(fs_type);
271
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800272 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600273
274 fs_close();
275
276 return ret;
277}
278
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800279int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
280 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000281{
Simon Glassc6f548d2012-12-26 09:53:30 +0000282 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000283 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000284 int ret;
285
Simon Glass117e0502012-12-26 09:53:32 +0000286 /*
287 * We don't actually know how many bytes are being read, since len==0
288 * means read the whole file.
289 */
290 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800291 ret = info->read(filename, buf, offset, len, actread);
Simon Glass117e0502012-12-26 09:53:32 +0000292 unmap_sysmem(buf);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000293
Simon Glassc6f548d2012-12-26 09:53:30 +0000294 /* If we requested a specific number of bytes, check we got it */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800295 if (ret == 0 && len && *actread != len) {
Simon Glassc6f548d2012-12-26 09:53:30 +0000296 printf("** Unable to read file %s **\n", filename);
297 ret = -1;
298 }
Stephen Warren045fa1e2012-10-22 06:43:51 +0000299 fs_close();
300
301 return ret;
302}
303
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800304int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
305 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000306{
307 struct fstype_info *info = fs_get_info(fs_type);
308 void *buf;
309 int ret;
310
Simon Glassa8f6ab52013-04-20 08:42:50 +0000311 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800312 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000313 unmap_sysmem(buf);
314
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800315 if (ret < 0 && len != *actwrite) {
Simon Glassa8f6ab52013-04-20 08:42:50 +0000316 printf("** Unable to write file %s **\n", filename);
317 ret = -1;
318 }
319 fs_close();
320
321 return ret;
322}
323
Stephen Warrencf659812014-06-11 12:47:26 -0600324int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
325 int fstype)
326{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800327 loff_t size;
Stephen Warrencf659812014-06-11 12:47:26 -0600328
329 if (argc != 4)
330 return CMD_RET_USAGE;
331
332 if (fs_set_blk_dev(argv[1], argv[2], fstype))
333 return 1;
334
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800335 if (fs_size(argv[3], &size) < 0)
Stephen Warrencf659812014-06-11 12:47:26 -0600336 return CMD_RET_FAILURE;
337
338 setenv_hex("filesize", size);
339
340 return 0;
341}
342
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000343int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200344 int fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000345{
346 unsigned long addr;
347 const char *addr_str;
348 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800349 loff_t bytes;
350 loff_t pos;
351 loff_t len_read;
352 int ret;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100353 unsigned long time;
Pavel Machek949bbd72014-07-09 22:42:57 +0200354 char *ep;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000355
Stephen Warrene9b0f992012-10-30 12:04:17 +0000356 if (argc < 2)
357 return CMD_RET_USAGE;
358 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000359 return CMD_RET_USAGE;
360
Stephen Warrene9b0f992012-10-30 12:04:17 +0000361 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000362 return 1;
363
364 if (argc >= 4) {
Pavel Machek949bbd72014-07-09 22:42:57 +0200365 addr = simple_strtoul(argv[3], &ep, 16);
366 if (ep == argv[3] || *ep != '\0')
367 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000368 } else {
369 addr_str = getenv("loadaddr");
370 if (addr_str != NULL)
371 addr = simple_strtoul(addr_str, NULL, 16);
372 else
373 addr = CONFIG_SYS_LOAD_ADDR;
374 }
375 if (argc >= 5) {
376 filename = argv[4];
377 } else {
378 filename = getenv("bootfile");
379 if (!filename) {
380 puts("** No boot file defined **\n");
381 return 1;
382 }
383 }
384 if (argc >= 6)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200385 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000386 else
387 bytes = 0;
388 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200389 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000390 else
391 pos = 0;
392
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100393 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800394 ret = fs_read(filename, addr, pos, bytes, &len_read);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100395 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800396 if (ret < 0)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000397 return 1;
398
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800399 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100400 if (time > 0) {
401 puts(" (");
402 print_size(len_read / time * 1000, "/s");
403 puts(")");
404 }
405 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000406
Simon Glass49c4f032013-02-24 17:33:23 +0000407 setenv_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000408
409 return 0;
410}
411
412int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
413 int fstype)
414{
415 if (argc < 2)
416 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000417 if (argc > 4)
418 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000419
420 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
421 return 1;
422
Stephen Warrene9b0f992012-10-30 12:04:17 +0000423 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000424 return 1;
425
426 return 0;
427}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000428
Stephen Warren61529162014-02-03 13:21:00 -0700429int file_exists(const char *dev_type, const char *dev_part, const char *file,
430 int fstype)
431{
432 if (fs_set_blk_dev(dev_type, dev_part, fstype))
433 return 0;
434
435 return fs_exists(file);
436}
437
Simon Glassa8f6ab52013-04-20 08:42:50 +0000438int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200439 int fstype)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000440{
441 unsigned long addr;
442 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800443 loff_t bytes;
444 loff_t pos;
445 loff_t len;
446 int ret;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000447 unsigned long time;
448
449 if (argc < 6 || argc > 7)
450 return CMD_RET_USAGE;
451
452 if (fs_set_blk_dev(argv[1], argv[2], fstype))
453 return 1;
454
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800455 addr = simple_strtoul(argv[3], NULL, 16);
456 filename = argv[4];
Wolfgang Denkb770e882013-10-05 21:07:25 +0200457 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000458 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200459 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000460 else
461 pos = 0;
462
463 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800464 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000465 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800466 if (ret < 0)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000467 return 1;
468
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800469 printf("%llu bytes written in %lu ms", len, time);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000470 if (time > 0) {
471 puts(" (");
472 print_size(len / time * 1000, "/s");
473 puts(")");
474 }
475 puts("\n");
476
477 return 0;
478}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100479
480int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
481 int fstype)
482{
483 int ret;
484 char uuid[37];
485 memset(uuid, 0, sizeof(uuid));
486
487 if (argc < 3 || argc > 4)
488 return CMD_RET_USAGE;
489
490 if (fs_set_blk_dev(argv[1], argv[2], fstype))
491 return 1;
492
493 ret = fs_uuid(uuid);
494 if (ret)
495 return CMD_RET_FAILURE;
496
497 if (argc == 4)
498 setenv(argv[3], uuid);
499 else
500 printf("%s\n", uuid);
501
502 return CMD_RET_SUCCESS;
503}