]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_fat.c
arm: mx5: clock: add support for changing CPU clock via cmdline
[karo-tx-uboot.git] / common / cmd_fat.c
1 /*
2  * (C) Copyright 2002
3  * Richard Jones, rjones@nexus-tech.net
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /*
9  * Boot support
10  */
11 #include <common.h>
12 #include <command.h>
13 #include <s_record.h>
14 #include <net.h>
15 #include <ata.h>
16 #include <part.h>
17 #include <fat.h>
18 #include <fs.h>
19
20 int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
21 {
22         return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT, 16);
23 }
24
25
26 U_BOOT_CMD(
27         fatload,        7,      0,      do_fat_fsload,
28         "load binary file from a dos filesystem",
29         "<interface> [<dev[:part]>]  <addr> <filename> [bytes [pos]]\n"
30         "    - Load binary file 'filename' from 'dev' on 'interface'\n"
31         "      to address 'addr' from dos filesystem.\n"
32         "      'pos' gives the file position to start loading from.\n"
33         "      If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
34         "      'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
35         "      the load stops on end of file.\n"
36         "      If either 'pos' or 'bytes' are not aligned to\n"
37         "      ARCH_DMA_MINALIGN then a misaligned buffer warning will\n"
38         "      be printed and performance will suffer for the load.\n"
39         "      All numeric parameters are assumed to be hex."
40 );
41
42 static int do_fat_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
43 {
44         return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT);
45 }
46
47 U_BOOT_CMD(
48         fatls,  4,      1,      do_fat_ls,
49         "list files in a directory (default /)",
50         "<interface> [<dev[:part]>] [directory]\n"
51         "    - list files from 'dev' on 'interface' in a 'directory'"
52 );
53
54 static int do_fat_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc,
55                          char * const argv[])
56 {
57         int dev, part;
58         block_dev_desc_t *dev_desc;
59         disk_partition_t info;
60
61         if (argc < 2) {
62                 printf("usage: fatinfo <interface> [<dev[:part]>]\n");
63                 return 0;
64         }
65
66         part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
67         if (part < 0)
68                 return 1;
69
70         dev = dev_desc->dev;
71         if (fat_set_blk_dev(dev_desc, &info) != 0) {
72                 printf("\n** Unable to use %s %d:%d for fatinfo **\n",
73                         argv[1], dev, part);
74                 return 1;
75         }
76         return file_fat_detectfs();
77 }
78
79 U_BOOT_CMD(
80         fatinfo,        3,      1,      do_fat_fsinfo,
81         "print information about filesystem",
82         "<interface> [<dev[:part]>]\n"
83         "    - print information about filesystem from 'dev' on 'interface'"
84 );
85
86 #ifdef CONFIG_FAT_WRITE
87 static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag,
88                 int argc, char * const argv[])
89 {
90         long size;
91         unsigned long addr;
92         unsigned long count;
93         block_dev_desc_t *dev_desc = NULL;
94         disk_partition_t info;
95         int dev = 0;
96         int part = 1;
97
98         if (argc < 5)
99                 return cmd_usage(cmdtp);
100
101         part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
102         if (part < 0)
103                 return 1;
104
105         dev = dev_desc->dev;
106
107         if (fat_set_blk_dev(dev_desc, &info) != 0) {
108                 printf("\n** Unable to use %s %d:%d for fatwrite **\n",
109                         argv[1], dev, part);
110                 return 1;
111         }
112         addr = simple_strtoul(argv[3], NULL, 16);
113         count = simple_strtoul(argv[5], NULL, 16);
114
115         size = file_fat_write(argv[4], (void *)addr, count);
116         if (size == -1) {
117                 printf("\n** Unable to write \"%s\" from %s %d:%d **\n",
118                         argv[4], argv[1], dev, part);
119                 return 1;
120         }
121
122         printf("%ld bytes written\n", size);
123
124         return 0;
125 }
126
127 U_BOOT_CMD(
128         fatwrite,       6,      0,      do_fat_fswrite,
129         "write file into a dos filesystem",
130         "<interface> <dev[:part]> <addr> <filename> <bytes>\n"
131         "    - write file 'filename' from the address 'addr' in RAM\n"
132         "      to 'dev' on 'interface'"
133 );
134 #endif