3 * Richard Jones, rjones@nexus-tech.net
5 * SPDX-License-Identifier: GPL-2.0+
21 int do_fat_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
23 return do_size(cmdtp, flag, argc, argv, FS_TYPE_FAT);
27 fatsize, 4, 0, do_fat_size,
28 "determine a file's size",
29 "<interface> <dev[:part]> <filename>\n"
30 " - Find file 'filename' from 'dev' on 'interface'\n"
31 " and determine its size."
34 int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
36 return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT);
41 fatload, 7, 0, do_fat_fsload,
42 "load binary file from a dos filesystem",
43 "<interface> [<dev[:part]> [<addr> [<filename> [bytes [pos]]]]]\n"
44 " - Load binary file 'filename' from 'dev' on 'interface'\n"
45 " to address 'addr' from dos filesystem.\n"
46 " 'pos' gives the file position to start loading from.\n"
47 " If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
48 " 'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
49 " the load stops on end of file.\n"
50 " If either 'pos' or 'bytes' are not aligned to\n"
51 " ARCH_DMA_MINALIGN then a misaligned buffer warning will\n"
52 " be printed and performance will suffer for the load."
55 static int do_fat_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
57 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT);
61 fatls, 4, 1, do_fat_ls,
62 "list files in a directory (default /)",
63 "<interface> [<dev[:part]>] [directory]\n"
64 " - list files from 'dev' on 'interface' in a 'directory'"
67 static int do_fat_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc,
71 block_dev_desc_t *dev_desc;
72 disk_partition_t info;
75 printf("usage: fatinfo <interface> [<dev[:part]>]\n");
79 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
84 if (fat_set_blk_dev(dev_desc, &info) != 0) {
85 printf("\n** Unable to use %s %d:%d for fatinfo **\n",
89 return file_fat_detectfs();
93 fatinfo, 3, 1, do_fat_fsinfo,
94 "print information about filesystem",
95 "<interface> [<dev[:part]>]\n"
96 " - print information about filesystem from 'dev' on 'interface'"
99 #ifdef CONFIG_FAT_WRITE
100 static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag,
101 int argc, char * const argv[])
106 block_dev_desc_t *dev_desc = NULL;
107 disk_partition_t info;
113 return cmd_usage(cmdtp);
115 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
121 if (fat_set_blk_dev(dev_desc, &info) != 0) {
122 printf("\n** Unable to use %s %d:%d for fatwrite **\n",
126 addr = simple_strtoul(argv[3], NULL, 16);
127 count = simple_strtoul(argv[5], NULL, 16);
129 buf = map_sysmem(addr, count);
130 size = file_fat_write(argv[4], buf, count);
133 printf("\n** Unable to write \"%s\" from %s %d:%d **\n",
134 argv[4], argv[1], dev, part);
138 printf("%ld bytes written\n", size);
144 fatwrite, 6, 0, do_fat_fswrite,
145 "write file into a dos filesystem",
146 "<interface> <dev[:part]> <addr> <filename> <bytes>\n"
147 " - write file 'filename' from the address 'addr' in RAM\n"
148 " to 'dev' on 'interface'"