blob: 0487438faa028655b752689a21d023b38414812e [file] [log] [blame]
wdenk71f95112003-06-15 22:40:42 +00001/*
2 * (C) Copyright 2002
3 * Richard Jones, rjones@nexus-tech.net
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * Boot support
26 */
27#include <common.h>
28#include <command.h>
wdenk71f95112003-06-15 22:40:42 +000029#include <s_record.h>
30#include <net.h>
31#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010032#include <part.h>
wdenk71f95112003-06-15 22:40:42 +000033#include <fat.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000034#include <fs.h>
wdenk7205e402003-09-10 22:30:53 +000035
Wolfgang Denk54841ab2010-06-28 22:00:46 +020036int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk71f95112003-06-15 22:40:42 +000037{
Stephen Warrenf9b55e22012-10-31 11:05:07 +000038 return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT, 16);
wdenk71f95112003-06-15 22:40:42 +000039}
40
wdenk7205e402003-09-10 22:30:53 +000041
wdenk0d498392003-07-01 21:06:45 +000042U_BOOT_CMD(
Benoît Thébaudeau1170e632012-09-18 08:14:56 +000043 fatload, 7, 0, do_fat_fsload,
Peter Tyser2fb26042009-01-27 18:03:12 -060044 "load binary file from a dos filesystem",
Benoît Thébaudeau1170e632012-09-18 08:14:56 +000045 "<interface> [<dev[:part]>] <addr> <filename> [bytes [pos]]\n"
46 " - Load binary file 'filename' from 'dev' on 'interface'\n"
47 " to address 'addr' from dos filesystem.\n"
48 " 'pos' gives the file position to start loading from.\n"
49 " If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
50 " 'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
Stephen Warren3f83c872012-10-30 12:04:19 +000051 " the load stops on end of file.\n"
Tom Rini01fac042013-02-21 06:55:40 +000052 " If either 'pos' or 'bytes' are not aligned to\n"
53 " ARCH_DMA_MINALIGN then a misaligned buffer warning will\n"
54 " be printed and performance will suffer for the load.\n"
Stephen Warren3f83c872012-10-30 12:04:19 +000055 " All numeric parameters are assumed to be hex."
wdenkb0fce992003-06-29 21:03:46 +000056);
57
Kim Phillips088f1b12012-10-29 13:34:31 +000058static int do_fat_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk71f95112003-06-15 22:40:42 +000059{
Stephen Warren045fa1e2012-10-22 06:43:51 +000060 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT);
wdenk71f95112003-06-15 22:40:42 +000061}
62
wdenk0d498392003-07-01 21:06:45 +000063U_BOOT_CMD(
wdenk7205e402003-09-10 22:30:53 +000064 fatls, 4, 1, do_fat_ls,
Peter Tyser2fb26042009-01-27 18:03:12 -060065 "list files in a directory (default /)",
Rob Herringcfda5ae2012-08-23 11:31:47 +000066 "<interface> [<dev[:part]>] [directory]\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +020067 " - list files from 'dev' on 'interface' in a 'directory'"
wdenkb0fce992003-06-29 21:03:46 +000068);
69
Kim Phillips088f1b12012-10-29 13:34:31 +000070static int do_fat_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc,
71 char * const argv[])
wdenk71f95112003-06-15 22:40:42 +000072{
Rob Herringcfda5ae2012-08-23 11:31:47 +000073 int dev, part;
74 block_dev_desc_t *dev_desc;
75 disk_partition_t info;
wdenk71f95112003-06-15 22:40:42 +000076
wdenk7205e402003-09-10 22:30:53 +000077 if (argc < 2) {
Rob Herringcfda5ae2012-08-23 11:31:47 +000078 printf("usage: fatinfo <interface> [<dev[:part]>]\n");
Wolfgang Denk7385c282010-07-19 11:37:00 +020079 return 0;
wdenk7205e402003-09-10 22:30:53 +000080 }
Rob Herringcfda5ae2012-08-23 11:31:47 +000081
Stephen Warren10a37fd2012-09-21 09:50:57 +000082 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
Rob Herringcfda5ae2012-08-23 11:31:47 +000083 if (part < 0)
wdenk7205e402003-09-10 22:30:53 +000084 return 1;
Rob Herringcfda5ae2012-08-23 11:31:47 +000085
86 dev = dev_desc->dev;
Stephen Warren5e8f9832012-10-17 06:44:59 +000087 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +020088 printf("\n** Unable to use %s %d:%d for fatinfo **\n",
89 argv[1], dev, part);
wdenk7205e402003-09-10 22:30:53 +000090 return 1;
91 }
Wolfgang Denk7385c282010-07-19 11:37:00 +020092 return file_fat_detectfs();
wdenk71f95112003-06-15 22:40:42 +000093}
94
wdenk0d498392003-07-01 21:06:45 +000095U_BOOT_CMD(
wdenk7205e402003-09-10 22:30:53 +000096 fatinfo, 3, 1, do_fat_fsinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -060097 "print information about filesystem",
Rob Herringcfda5ae2012-08-23 11:31:47 +000098 "<interface> [<dev[:part]>]\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +020099 " - print information about filesystem from 'dev' on 'interface'"
wdenkb0fce992003-06-29 21:03:46 +0000100);
Donggeun Kim656f4c62012-03-22 04:38:56 +0000101
102#ifdef CONFIG_FAT_WRITE
103static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag,
104 int argc, char * const argv[])
105{
106 long size;
107 unsigned long addr;
108 unsigned long count;
109 block_dev_desc_t *dev_desc = NULL;
Rob Herringcfda5ae2012-08-23 11:31:47 +0000110 disk_partition_t info;
Donggeun Kim656f4c62012-03-22 04:38:56 +0000111 int dev = 0;
112 int part = 1;
Donggeun Kim656f4c62012-03-22 04:38:56 +0000113
114 if (argc < 5)
115 return cmd_usage(cmdtp);
116
Stephen Warren10a37fd2012-09-21 09:50:57 +0000117 part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
Rob Herringcfda5ae2012-08-23 11:31:47 +0000118 if (part < 0)
Donggeun Kim656f4c62012-03-22 04:38:56 +0000119 return 1;
Rob Herringcfda5ae2012-08-23 11:31:47 +0000120
121 dev = dev_desc->dev;
122
Stephen Warren5e8f9832012-10-17 06:44:59 +0000123 if (fat_set_blk_dev(dev_desc, &info) != 0) {
Donggeun Kim656f4c62012-03-22 04:38:56 +0000124 printf("\n** Unable to use %s %d:%d for fatwrite **\n",
125 argv[1], dev, part);
126 return 1;
127 }
128 addr = simple_strtoul(argv[3], NULL, 16);
129 count = simple_strtoul(argv[5], NULL, 16);
130
131 size = file_fat_write(argv[4], (void *)addr, count);
132 if (size == -1) {
133 printf("\n** Unable to write \"%s\" from %s %d:%d **\n",
134 argv[4], argv[1], dev, part);
135 return 1;
136 }
137
138 printf("%ld bytes written\n", size);
139
140 return 0;
141}
142
143U_BOOT_CMD(
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'"
149);
150#endif