]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_fat.c
Merge branch 'u-boot-sunxi/master' into 'u-boot-arm/master'
[people/ms/u-boot.git] / common / cmd_fat.c
CommitLineData
71f95118
WD
1/*
2 * (C) Copyright 2002
3 * Richard Jones, rjones@nexus-tech.net
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>
31e997f9 16#include <asm/io.h>
735dd97b 17#include <part.h>
71f95118 18#include <fat.h>
045fa1e1 19#include <fs.h>
7205e407 20
54841ab5 21int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71f95118 22{
b770e88a 23 return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT);
71f95118
WD
24}
25
7205e407 26
0d498393 27U_BOOT_CMD(
1170e634 28 fatload, 7, 0, do_fat_fsload,
2fb2604d 29 "load binary file from a dos filesystem",
6b367467 30 "<interface> [<dev[:part]> [<addr> [<filename> [bytes [pos]]]]]\n"
1170e634
BT
31 " - Load binary file 'filename' from 'dev' on 'interface'\n"
32 " to address 'addr' from dos filesystem.\n"
33 " 'pos' gives the file position to start loading from.\n"
34 " If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
35 " 'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
3f83c87e 36 " the load stops on end of file.\n"
01fac041
TR
37 " If either 'pos' or 'bytes' are not aligned to\n"
38 " ARCH_DMA_MINALIGN then a misaligned buffer warning will\n"
b770e88a 39 " be printed and performance will suffer for the load."
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;
31e997f9 97 void *buf;
656f4c65
DK
98
99 if (argc < 5)
100 return cmd_usage(cmdtp);
101
10a37fd7 102 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
cfda5aea 103 if (part < 0)
656f4c65 104 return 1;
cfda5aea
RH
105
106 dev = dev_desc->dev;
107
5e8f9831 108 if (fat_set_blk_dev(dev_desc, &info) != 0) {
656f4c65
DK
109 printf("\n** Unable to use %s %d:%d for fatwrite **\n",
110 argv[1], dev, part);
111 return 1;
112 }
113 addr = simple_strtoul(argv[3], NULL, 16);
114 count = simple_strtoul(argv[5], NULL, 16);
115
31e997f9
WJ
116 buf = map_sysmem(addr, count);
117 size = file_fat_write(argv[4], buf, count);
118 unmap_sysmem(buf);
656f4c65
DK
119 if (size == -1) {
120 printf("\n** Unable to write \"%s\" from %s %d:%d **\n",
121 argv[4], argv[1], dev, part);
122 return 1;
123 }
124
125 printf("%ld bytes written\n", size);
126
127 return 0;
128}
129
130U_BOOT_CMD(
131 fatwrite, 6, 0, do_fat_fswrite,
132 "write file into a dos filesystem",
133 "<interface> <dev[:part]> <addr> <filename> <bytes>\n"
134 " - write file 'filename' from the address 'addr' in RAM\n"
135 " to 'dev' on 'interface'"
136);
137#endif