blob: 84349f3039856bae87822a3d9b86551a7bde9b72 [file] [log] [blame]
Stephen Warren045fa1e2012-10-22 06:43:51 +00001/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
Tom Rini5b8031c2016-01-14 22:05:13 -05004 * SPDX-License-Identifier: GPL-2.0
Stephen Warren045fa1e2012-10-22 06:43:51 +00005 */
6
7#include <config.h>
Christian Gmeiner59e890e2014-11-12 14:35:04 +01008#include <errno.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +00009#include <common.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050010#include <mapmem.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000011#include <part.h>
12#include <ext4fs.h>
13#include <fat.h>
14#include <fs.h>
Simon Glass92ccc962012-12-26 09:53:35 +000015#include <sandboxfs.h>
Hans de Goede251cee02015-09-17 18:46:58 -040016#include <ubifs_uboot.h>
Marek Behún0c936ee2017-09-03 17:00:29 +020017#include <btrfs.h>
Simon Glass117e0502012-12-26 09:53:32 +000018#include <asm/io.h>
Tom Rini9e374e72014-11-24 11:50:46 -050019#include <div64.h>
20#include <linux/math64.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000021
Stephen Warrena1b231c2012-10-30 07:50:47 +000022DECLARE_GLOBAL_DATA_PTR;
23
Simon Glass4101f682016-02-29 15:25:34 -070024static struct blk_desc *fs_dev_desc;
Rob Clark4bbcc962017-09-09 13:15:55 -040025static int fs_dev_part;
Stephen Warren045fa1e2012-10-22 06:43:51 +000026static disk_partition_t fs_partition;
27static int fs_type = FS_TYPE_ANY;
28
Simon Glass4101f682016-02-29 15:25:34 -070029static inline int fs_probe_unsupported(struct blk_desc *fs_dev_desc,
Simon Glass2ded0d42012-12-26 09:53:31 +000030 disk_partition_t *fs_partition)
Simon Glass436e2b72012-12-26 09:53:29 +000031{
32 printf("** Unrecognized filesystem type **\n");
33 return -1;
34}
35
Stephen Warren045fa1e2012-10-22 06:43:51 +000036static inline int fs_ls_unsupported(const char *dirname)
37{
Stephen Warren045fa1e2012-10-22 06:43:51 +000038 return -1;
39}
40
Rob Clark89191d62017-09-09 13:15:58 -040041/* generic implementation of ls in terms of opendir/readdir/closedir */
42__maybe_unused
43static int fs_ls_generic(const char *dirname)
44{
45 struct fs_dir_stream *dirs;
46 struct fs_dirent *dent;
47 int nfiles = 0, ndirs = 0;
48
49 dirs = fs_opendir(dirname);
50 if (!dirs)
51 return -errno;
52
53 while ((dent = fs_readdir(dirs))) {
54 if (dent->type == FS_DT_DIR) {
55 printf(" %s/\n", dent->name);
56 ndirs++;
57 } else {
58 printf(" %8lld %s\n", dent->size, dent->name);
59 nfiles++;
60 }
61 }
62
63 fs_closedir(dirs);
64
65 printf("\n%d file(s), %d dir(s)\n\n", nfiles, ndirs);
66
67 return 0;
68}
69
Stephen Warren61529162014-02-03 13:21:00 -070070static inline int fs_exists_unsupported(const char *filename)
71{
72 return 0;
73}
74
Suriyan Ramasamid455d872014-11-17 14:39:38 -080075static inline int fs_size_unsupported(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -060076{
77 return -1;
78}
79
Simon Glass117e0502012-12-26 09:53:32 +000080static inline int fs_read_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080081 loff_t offset, loff_t len,
82 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +000083{
Stephen Warren045fa1e2012-10-22 06:43:51 +000084 return -1;
85}
86
Simon Glassa8f6ab52013-04-20 08:42:50 +000087static inline int fs_write_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080088 loff_t offset, loff_t len,
89 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +000090{
91 return -1;
92}
93
Simon Glass436e2b72012-12-26 09:53:29 +000094static inline void fs_close_unsupported(void)
95{
96}
97
Christian Gmeiner59e890e2014-11-12 14:35:04 +010098static inline int fs_uuid_unsupported(char *uuid_str)
99{
100 return -1;
101}
102
Rob Clark4bbcc962017-09-09 13:15:55 -0400103static inline int fs_opendir_unsupported(const char *filename,
104 struct fs_dir_stream **dirs)
105{
106 return -EACCES;
107}
108
Simon Glass436e2b72012-12-26 09:53:29 +0000109struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +0000110 int fstype;
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100111 char *name;
Stephen Warren377202b2014-02-03 13:21:01 -0700112 /*
113 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
114 * should be false in most cases. For "virtual" filesystems which
115 * aren't based on a U-Boot block device (e.g. sandbox), this can be
116 * set to true. This should also be true for the dumm entry at the end
117 * of fstypes[], since that is essentially a "virtual" (non-existent)
118 * filesystem.
119 */
120 bool null_dev_desc_ok;
Simon Glass4101f682016-02-29 15:25:34 -0700121 int (*probe)(struct blk_desc *fs_dev_desc,
Simon Glass2ded0d42012-12-26 09:53:31 +0000122 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +0000123 int (*ls)(const char *dirname);
Stephen Warren61529162014-02-03 13:21:00 -0700124 int (*exists)(const char *filename);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800125 int (*size)(const char *filename, loff_t *size);
126 int (*read)(const char *filename, void *buf, loff_t offset,
127 loff_t len, loff_t *actread);
128 int (*write)(const char *filename, void *buf, loff_t offset,
129 loff_t len, loff_t *actwrite);
Simon Glass436e2b72012-12-26 09:53:29 +0000130 void (*close)(void);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100131 int (*uuid)(char *uuid_str);
Rob Clark4bbcc962017-09-09 13:15:55 -0400132 /*
133 * Open a directory stream. On success return 0 and directory
134 * stream pointer via 'dirsp'. On error, return -errno. See
135 * fs_opendir().
136 */
137 int (*opendir)(const char *filename, struct fs_dir_stream **dirsp);
138 /*
139 * Read next entry from directory stream. On success return 0
140 * and directory entry pointer via 'dentp'. On error return
141 * -errno. See fs_readdir().
142 */
143 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
144 /* see fs_closedir() */
145 void (*closedir)(struct fs_dir_stream *dirs);
Simon Glass436e2b72012-12-26 09:53:29 +0000146};
147
148static struct fstype_info fstypes[] = {
149#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000150 {
151 .fstype = FS_TYPE_FAT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100152 .name = "fat",
Stephen Warren377202b2014-02-03 13:21:01 -0700153 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000154 .probe = fat_set_blk_dev,
155 .close = fat_close,
Rob Clark89191d62017-09-09 13:15:58 -0400156 .ls = fs_ls_generic,
Stephen Warrenb7b5f312014-02-03 13:21:10 -0700157 .exists = fat_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600158 .size = fat_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000159 .read = fat_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800160#ifdef CONFIG_FAT_WRITE
161 .write = file_fat_write,
162#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700163 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800164#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100165 .uuid = fs_uuid_unsupported,
Rob Clark89191d62017-09-09 13:15:58 -0400166 .opendir = fat_opendir,
167 .readdir = fat_readdir,
168 .closedir = fat_closedir,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000169 },
Simon Glass436e2b72012-12-26 09:53:29 +0000170#endif
171#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000172 {
173 .fstype = FS_TYPE_EXT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100174 .name = "ext4",
Stephen Warren377202b2014-02-03 13:21:01 -0700175 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000176 .probe = ext4fs_probe,
177 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000178 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700179 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600180 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000181 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800182#ifdef CONFIG_CMD_EXT4_WRITE
183 .write = ext4_write_file,
184#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700185 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800186#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100187 .uuid = ext4fs_uuid,
Rob Clark4bbcc962017-09-09 13:15:55 -0400188 .opendir = fs_opendir_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000189 },
190#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000191#ifdef CONFIG_SANDBOX
192 {
193 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100194 .name = "sandbox",
Stephen Warren377202b2014-02-03 13:21:01 -0700195 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000196 .probe = sandbox_fs_set_blk_dev,
197 .close = sandbox_fs_close,
198 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700199 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600200 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000201 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000202 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100203 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400204 .opendir = fs_opendir_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000205 },
206#endif
Hans de Goede251cee02015-09-17 18:46:58 -0400207#ifdef CONFIG_CMD_UBIFS
208 {
209 .fstype = FS_TYPE_UBIFS,
210 .name = "ubifs",
211 .null_dev_desc_ok = true,
212 .probe = ubifs_set_blk_dev,
213 .close = ubifs_close,
214 .ls = ubifs_ls,
215 .exists = ubifs_exists,
216 .size = ubifs_size,
217 .read = ubifs_read,
218 .write = fs_write_unsupported,
219 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400220 .opendir = fs_opendir_unsupported,
Hans de Goede251cee02015-09-17 18:46:58 -0400221 },
222#endif
Marek Behún0c936ee2017-09-03 17:00:29 +0200223#ifdef CONFIG_FS_BTRFS
224 {
225 .fstype = FS_TYPE_BTRFS,
226 .name = "btrfs",
227 .null_dev_desc_ok = false,
228 .probe = btrfs_probe,
229 .close = btrfs_close,
230 .ls = btrfs_ls,
231 .exists = btrfs_exists,
232 .size = btrfs_size,
233 .read = btrfs_read,
234 .write = fs_write_unsupported,
235 .uuid = btrfs_uuid,
236 },
237#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000238 {
239 .fstype = FS_TYPE_ANY,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100240 .name = "unsupported",
Stephen Warren377202b2014-02-03 13:21:01 -0700241 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000242 .probe = fs_probe_unsupported,
243 .close = fs_close_unsupported,
244 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700245 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600246 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000247 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000248 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100249 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400250 .opendir = fs_opendir_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000251 },
252};
253
Simon Glassc6f548d2012-12-26 09:53:30 +0000254static struct fstype_info *fs_get_info(int fstype)
255{
256 struct fstype_info *info;
257 int i;
258
259 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
260 if (fstype == info->fstype)
261 return info;
262 }
263
264 /* Return the 'unsupported' sentinel */
265 return info;
266}
267
Stephen Warren045fa1e2012-10-22 06:43:51 +0000268int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
269{
Simon Glass436e2b72012-12-26 09:53:29 +0000270 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000271 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000272#ifdef CONFIG_NEEDS_MANUAL_RELOC
273 static int relocated;
274
275 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000276 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
277 i++, info++) {
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100278 info->name += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000279 info->probe += gd->reloc_off;
280 info->close += gd->reloc_off;
281 info->ls += gd->reloc_off;
282 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000283 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000284 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000285 relocated = 1;
286 }
287#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000288
Simon Glasse35929e2016-02-29 15:25:44 -0700289 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000290 &fs_partition, 1);
291 if (part < 0)
292 return -1;
293
Simon Glass436e2b72012-12-26 09:53:29 +0000294 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
295 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
296 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000297 continue;
298
Stephen Warren377202b2014-02-03 13:21:01 -0700299 if (!fs_dev_desc && !info->null_dev_desc_ok)
300 continue;
301
Simon Glass2ded0d42012-12-26 09:53:31 +0000302 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000303 fs_type = info->fstype;
Rob Clark4bbcc962017-09-09 13:15:55 -0400304 fs_dev_part = part;
305 return 0;
306 }
307 }
308
309 return -1;
310}
311
312/* set current blk device w/ blk_desc + partition # */
313int fs_set_blk_dev_with_part(struct blk_desc *desc, int part)
314{
315 struct fstype_info *info;
316 int ret, i;
317
318 if (part >= 1)
319 ret = part_get_info(desc, part, &fs_partition);
320 else
321 ret = part_get_info_whole_disk(desc, &fs_partition);
322 if (ret)
323 return ret;
324 fs_dev_desc = desc;
325
326 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
327 if (!info->probe(fs_dev_desc, &fs_partition)) {
328 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000329 return 0;
330 }
331 }
332
Stephen Warren045fa1e2012-10-22 06:43:51 +0000333 return -1;
334}
335
336static void fs_close(void)
337{
Simon Glassc6f548d2012-12-26 09:53:30 +0000338 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000339
Simon Glassc6f548d2012-12-26 09:53:30 +0000340 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000341
Stephen Warren045fa1e2012-10-22 06:43:51 +0000342 fs_type = FS_TYPE_ANY;
343}
344
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100345int fs_uuid(char *uuid_str)
346{
347 struct fstype_info *info = fs_get_info(fs_type);
348
349 return info->uuid(uuid_str);
350}
351
Stephen Warren045fa1e2012-10-22 06:43:51 +0000352int fs_ls(const char *dirname)
353{
354 int ret;
355
Simon Glassc6f548d2012-12-26 09:53:30 +0000356 struct fstype_info *info = fs_get_info(fs_type);
357
358 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000359
Simon Glasse6d52412012-12-26 09:53:33 +0000360 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000361 fs_close();
362
363 return ret;
364}
365
Stephen Warren61529162014-02-03 13:21:00 -0700366int fs_exists(const char *filename)
367{
368 int ret;
369
370 struct fstype_info *info = fs_get_info(fs_type);
371
372 ret = info->exists(filename);
373
374 fs_close();
375
376 return ret;
377}
378
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800379int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600380{
381 int ret;
382
383 struct fstype_info *info = fs_get_info(fs_type);
384
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800385 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600386
387 fs_close();
388
389 return ret;
390}
391
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800392int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
393 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000394{
Simon Glassc6f548d2012-12-26 09:53:30 +0000395 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000396 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000397 int ret;
398
Simon Glass117e0502012-12-26 09:53:32 +0000399 /*
400 * We don't actually know how many bytes are being read, since len==0
401 * means read the whole file.
402 */
403 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800404 ret = info->read(filename, buf, offset, len, actread);
Simon Glass117e0502012-12-26 09:53:32 +0000405 unmap_sysmem(buf);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000406
Simon Glassc6f548d2012-12-26 09:53:30 +0000407 /* If we requested a specific number of bytes, check we got it */
Max Krummenacher7a3e70c2015-08-05 17:16:58 +0200408 if (ret == 0 && len && *actread != len)
409 printf("** %s shorter than offset + len **\n", filename);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000410 fs_close();
411
412 return ret;
413}
414
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800415int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
416 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000417{
418 struct fstype_info *info = fs_get_info(fs_type);
419 void *buf;
420 int ret;
421
Simon Glassa8f6ab52013-04-20 08:42:50 +0000422 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800423 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000424 unmap_sysmem(buf);
425
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800426 if (ret < 0 && len != *actwrite) {
Simon Glassa8f6ab52013-04-20 08:42:50 +0000427 printf("** Unable to write file %s **\n", filename);
428 ret = -1;
429 }
430 fs_close();
431
432 return ret;
433}
434
Rob Clark4bbcc962017-09-09 13:15:55 -0400435struct fs_dir_stream *fs_opendir(const char *filename)
436{
437 struct fstype_info *info = fs_get_info(fs_type);
438 struct fs_dir_stream *dirs = NULL;
439 int ret;
440
441 ret = info->opendir(filename, &dirs);
442 fs_close();
443 if (ret) {
444 errno = -ret;
445 return NULL;
446 }
447
448 dirs->desc = fs_dev_desc;
449 dirs->part = fs_dev_part;
450
451 return dirs;
452}
453
454struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs)
455{
456 struct fstype_info *info;
457 struct fs_dirent *dirent;
458 int ret;
459
460 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
461 info = fs_get_info(fs_type);
462
463 ret = info->readdir(dirs, &dirent);
464 fs_close();
465 if (ret) {
466 errno = -ret;
467 return NULL;
468 }
469
470 return dirent;
471}
472
473void fs_closedir(struct fs_dir_stream *dirs)
474{
475 struct fstype_info *info;
476
477 if (!dirs)
478 return;
479
480 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
481 info = fs_get_info(fs_type);
482
483 info->closedir(dirs);
484 fs_close();
485}
486
487
Stephen Warrencf659812014-06-11 12:47:26 -0600488int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
489 int fstype)
490{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800491 loff_t size;
Stephen Warrencf659812014-06-11 12:47:26 -0600492
493 if (argc != 4)
494 return CMD_RET_USAGE;
495
496 if (fs_set_blk_dev(argv[1], argv[2], fstype))
497 return 1;
498
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800499 if (fs_size(argv[3], &size) < 0)
Stephen Warrencf659812014-06-11 12:47:26 -0600500 return CMD_RET_FAILURE;
501
Simon Glass018f5302017-08-03 12:22:10 -0600502 env_set_hex("filesize", size);
Stephen Warrencf659812014-06-11 12:47:26 -0600503
504 return 0;
505}
506
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000507int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200508 int fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000509{
510 unsigned long addr;
511 const char *addr_str;
512 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800513 loff_t bytes;
514 loff_t pos;
515 loff_t len_read;
516 int ret;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100517 unsigned long time;
Pavel Machek949bbd72014-07-09 22:42:57 +0200518 char *ep;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000519
Stephen Warrene9b0f992012-10-30 12:04:17 +0000520 if (argc < 2)
521 return CMD_RET_USAGE;
522 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000523 return CMD_RET_USAGE;
524
Stephen Warrene9b0f992012-10-30 12:04:17 +0000525 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000526 return 1;
527
528 if (argc >= 4) {
Pavel Machek949bbd72014-07-09 22:42:57 +0200529 addr = simple_strtoul(argv[3], &ep, 16);
530 if (ep == argv[3] || *ep != '\0')
531 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000532 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600533 addr_str = env_get("loadaddr");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000534 if (addr_str != NULL)
535 addr = simple_strtoul(addr_str, NULL, 16);
536 else
537 addr = CONFIG_SYS_LOAD_ADDR;
538 }
539 if (argc >= 5) {
540 filename = argv[4];
541 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600542 filename = env_get("bootfile");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000543 if (!filename) {
544 puts("** No boot file defined **\n");
545 return 1;
546 }
547 }
548 if (argc >= 6)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200549 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000550 else
551 bytes = 0;
552 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200553 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000554 else
555 pos = 0;
556
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100557 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800558 ret = fs_read(filename, addr, pos, bytes, &len_read);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100559 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800560 if (ret < 0)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000561 return 1;
562
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800563 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100564 if (time > 0) {
565 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500566 print_size(div_u64(len_read, time) * 1000, "/s");
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100567 puts(")");
568 }
569 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000570
Simon Glass018f5302017-08-03 12:22:10 -0600571 env_set_hex("fileaddr", addr);
572 env_set_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000573
574 return 0;
575}
576
577int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
578 int fstype)
579{
580 if (argc < 2)
581 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000582 if (argc > 4)
583 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000584
585 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
586 return 1;
587
Stephen Warrene9b0f992012-10-30 12:04:17 +0000588 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000589 return 1;
590
591 return 0;
592}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000593
Stephen Warren61529162014-02-03 13:21:00 -0700594int file_exists(const char *dev_type, const char *dev_part, const char *file,
595 int fstype)
596{
597 if (fs_set_blk_dev(dev_type, dev_part, fstype))
598 return 0;
599
600 return fs_exists(file);
601}
602
Simon Glassa8f6ab52013-04-20 08:42:50 +0000603int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200604 int fstype)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000605{
606 unsigned long addr;
607 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800608 loff_t bytes;
609 loff_t pos;
610 loff_t len;
611 int ret;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000612 unsigned long time;
613
614 if (argc < 6 || argc > 7)
615 return CMD_RET_USAGE;
616
617 if (fs_set_blk_dev(argv[1], argv[2], fstype))
618 return 1;
619
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800620 addr = simple_strtoul(argv[3], NULL, 16);
621 filename = argv[4];
Wolfgang Denkb770e882013-10-05 21:07:25 +0200622 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000623 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200624 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000625 else
626 pos = 0;
627
628 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800629 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000630 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800631 if (ret < 0)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000632 return 1;
633
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800634 printf("%llu bytes written in %lu ms", len, time);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000635 if (time > 0) {
636 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500637 print_size(div_u64(len, time) * 1000, "/s");
Simon Glassa8f6ab52013-04-20 08:42:50 +0000638 puts(")");
639 }
640 puts("\n");
641
642 return 0;
643}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100644
645int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
646 int fstype)
647{
648 int ret;
649 char uuid[37];
650 memset(uuid, 0, sizeof(uuid));
651
652 if (argc < 3 || argc > 4)
653 return CMD_RET_USAGE;
654
655 if (fs_set_blk_dev(argv[1], argv[2], fstype))
656 return 1;
657
658 ret = fs_uuid(uuid);
659 if (ret)
660 return CMD_RET_FAILURE;
661
662 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600663 env_set(argv[3], uuid);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100664 else
665 printf("%s\n", uuid);
666
667 return CMD_RET_SUCCESS;
668}
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100669
670int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
671{
672 struct fstype_info *info;
673
674 if (argc < 3 || argc > 4)
675 return CMD_RET_USAGE;
676
677 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
678 return 1;
679
680 info = fs_get_info(fs_type);
681
682 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600683 env_set(argv[3], info->name);
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100684 else
685 printf("%s\n", info->name);
686
687 return CMD_RET_SUCCESS;
688}
689