]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_fat.c
lcd: mpc823: move mpc823-specific lcd_logo_set_cmap code to mpc8xx_lcd.c
[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
cf659819
SW
21int do_fat_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
22{
23 return do_size(cmdtp, flag, argc, argv, FS_TYPE_FAT);
24}
25
26U_BOOT_CMD(
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."
32);
33
54841ab5 34int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71f95118 35{
b770e88a 36 return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT);
71f95118
WD
37}
38
7205e407 39
0d498393 40U_BOOT_CMD(
1170e634 41 fatload, 7, 0, do_fat_fsload,
2fb2604d 42 "load binary file from a dos filesystem",
6b367467 43 "<interface> [<dev[:part]> [<addr> [<filename> [bytes [pos]]]]]\n"
1170e634
BT
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"
3f83c87e 49 " the load stops on end of file.\n"
01fac041
TR
50 " If either 'pos' or 'bytes' are not aligned to\n"
51 " ARCH_DMA_MINALIGN then a misaligned buffer warning will\n"
b770e88a 52 " be printed and performance will suffer for the load."
b0fce99b
WD
53);
54
088f1b19 55static int do_fat_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71f95118 56{
045fa1e1 57 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT);
71f95118
WD
58}
59
0d498393 60U_BOOT_CMD(
7205e407 61 fatls, 4, 1, do_fat_ls,
2fb2604d 62 "list files in a directory (default /)",
cfda5aea 63 "<interface> [<dev[:part]>] [directory]\n"
a89c33db 64 " - list files from 'dev' on 'interface' in a 'directory'"
b0fce99b
WD
65);
66
088f1b19
KP
67static int do_fat_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc,
68 char * const argv[])
71f95118 69{
cfda5aea
RH
70 int dev, part;
71 block_dev_desc_t *dev_desc;
72 disk_partition_t info;
71f95118 73
7205e407 74 if (argc < 2) {
cfda5aea 75 printf("usage: fatinfo <interface> [<dev[:part]>]\n");
7385c28e 76 return 0;
7205e407 77 }
cfda5aea 78
10a37fd7 79 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
cfda5aea 80 if (part < 0)
7205e407 81 return 1;
cfda5aea
RH
82
83 dev = dev_desc->dev;
5e8f9831 84 if (fat_set_blk_dev(dev_desc, &info) != 0) {
7385c28e
WD
85 printf("\n** Unable to use %s %d:%d for fatinfo **\n",
86 argv[1], dev, part);
7205e407
WD
87 return 1;
88 }
7385c28e 89 return file_fat_detectfs();
71f95118
WD
90}
91
0d498393 92U_BOOT_CMD(
7205e407 93 fatinfo, 3, 1, do_fat_fsinfo,
2fb2604d 94 "print information about filesystem",
cfda5aea 95 "<interface> [<dev[:part]>]\n"
a89c33db 96 " - print information about filesystem from 'dev' on 'interface'"
b0fce99b 97);
656f4c65
DK
98
99#ifdef CONFIG_FAT_WRITE
100static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag,
101 int argc, char * const argv[])
102{
1ad0b98a
SR
103 loff_t size;
104 int ret;
656f4c65
DK
105 unsigned long addr;
106 unsigned long count;
107 block_dev_desc_t *dev_desc = NULL;
cfda5aea 108 disk_partition_t info;
656f4c65
DK
109 int dev = 0;
110 int part = 1;
31e997f9 111 void *buf;
656f4c65
DK
112
113 if (argc < 5)
114 return cmd_usage(cmdtp);
115
10a37fd7 116 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
cfda5aea 117 if (part < 0)
656f4c65 118 return 1;
cfda5aea
RH
119
120 dev = dev_desc->dev;
121
5e8f9831 122 if (fat_set_blk_dev(dev_desc, &info) != 0) {
656f4c65
DK
123 printf("\n** Unable to use %s %d:%d for fatwrite **\n",
124 argv[1], dev, part);
125 return 1;
126 }
127 addr = simple_strtoul(argv[3], NULL, 16);
128 count = simple_strtoul(argv[5], NULL, 16);
129
31e997f9 130 buf = map_sysmem(addr, count);
1ad0b98a 131 ret = file_fat_write(argv[4], buf, 0, count, &size);
31e997f9 132 unmap_sysmem(buf);
1ad0b98a 133 if (ret < 0) {
656f4c65
DK
134 printf("\n** Unable to write \"%s\" from %s %d:%d **\n",
135 argv[4], argv[1], dev, part);
136 return 1;
137 }
138
1ad0b98a 139 printf("%llu bytes written\n", size);
656f4c65
DK
140
141 return 0;
142}
143
144U_BOOT_CMD(
145 fatwrite, 6, 0, do_fat_fswrite,
146 "write file into a dos filesystem",
147 "<interface> <dev[:part]> <addr> <filename> <bytes>\n"
148 " - write file 'filename' from the address 'addr' in RAM\n"
149 " to 'dev' on 'interface'"
150);
151#endif