]> Git Repo - J-u-boot.git/blame - common/cmd_fat.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[J-u-boot.git] / common / cmd_fat.c
CommitLineData
71f95118
WD
1/*
2 * (C) Copyright 2002
3 * Richard Jones, [email protected]
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
71f95118
WD
6 */
7
8/*
9 * Boot support
10 */
11#include <common.h>
12#include <command.h>
71f95118
WD
13#include <s_record.h>
14#include <net.h>
15#include <ata.h>
735dd97b 16#include <part.h>
71f95118 17#include <fat.h>
045fa1e1 18#include <fs.h>
7205e407 19
54841ab5 20int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71f95118 21{
f9b55e22 22 return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT, 16);
71f95118
WD
23}
24
7205e407 25
0d498393 26U_BOOT_CMD(
1170e634 27 fatload, 7, 0, do_fat_fsload,
2fb2604d 28 "load binary file from a dos filesystem",
1170e634
BT
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"
3f83c87e 35 " the load stops on end of file.\n"
01fac041
TR
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"
3f83c87e 39 " All numeric parameters are assumed to be hex."
b0fce99b
WD
40);
41
088f1b19 42static int do_fat_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71f95118 43{
045fa1e1 44 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT);
71f95118
WD
45}
46
0d498393 47U_BOOT_CMD(
7205e407 48 fatls, 4, 1, do_fat_ls,
2fb2604d 49 "list files in a directory (default /)",
cfda5aea 50 "<interface> [<dev[:part]>] [directory]\n"
a89c33db 51 " - list files from 'dev' on 'interface' in a 'directory'"
b0fce99b
WD
52);
53
088f1b19
KP
54static int do_fat_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc,
55 char * const argv[])
71f95118 56{
cfda5aea
RH
57 int dev, part;
58 block_dev_desc_t *dev_desc;
59 disk_partition_t info;
71f95118 60
7205e407 61 if (argc < 2) {
cfda5aea 62 printf("usage: fatinfo <interface> [<dev[:part]>]\n");
7385c28e 63 return 0;
7205e407 64 }
cfda5aea 65
10a37fd7 66 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
cfda5aea 67 if (part < 0)
7205e407 68 return 1;
cfda5aea
RH
69
70 dev = dev_desc->dev;
5e8f9831 71 if (fat_set_blk_dev(dev_desc, &info) != 0) {
7385c28e
WD
72 printf("\n** Unable to use %s %d:%d for fatinfo **\n",
73 argv[1], dev, part);
7205e407
WD
74 return 1;
75 }
7385c28e 76 return file_fat_detectfs();
71f95118
WD
77}
78
0d498393 79U_BOOT_CMD(
7205e407 80 fatinfo, 3, 1, do_fat_fsinfo,
2fb2604d 81 "print information about filesystem",
cfda5aea 82 "<interface> [<dev[:part]>]\n"
a89c33db 83 " - print information about filesystem from 'dev' on 'interface'"
b0fce99b 84);
656f4c65
DK
85
86#ifdef CONFIG_FAT_WRITE
87static 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;
cfda5aea 94 disk_partition_t info;
656f4c65
DK
95 int dev = 0;
96 int part = 1;
656f4c65
DK
97
98 if (argc < 5)
99 return cmd_usage(cmdtp);
100
10a37fd7 101 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
cfda5aea 102 if (part < 0)
656f4c65 103 return 1;
cfda5aea
RH
104
105 dev = dev_desc->dev;
106
5e8f9831 107 if (fat_set_blk_dev(dev_desc, &info) != 0) {
656f4c65
DK
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
127U_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
This page took 0.25486 seconds and 4 git commands to generate.