2003-06-15 22:40:42 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Richard Jones, rjones@nexus-tech.net
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Boot support
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <s_record.h>
|
|
|
|
#include <net.h>
|
|
|
|
#include <ata.h>
|
2007-02-20 08:04:34 +00:00
|
|
|
#include <part.h>
|
2003-06-15 22:40:42 +00:00
|
|
|
#include <fat.h>
|
|
|
|
|
2003-09-10 22:30:53 +00:00
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-15 22:40:42 +00:00
|
|
|
{
|
|
|
|
long size;
|
|
|
|
unsigned long offset;
|
|
|
|
unsigned long count;
|
2003-10-06 21:55:32 +00:00
|
|
|
char buf [12];
|
2003-09-10 22:30:53 +00:00
|
|
|
block_dev_desc_t *dev_desc=NULL;
|
|
|
|
int dev=0;
|
|
|
|
int part=1;
|
|
|
|
char *ep;
|
2003-06-15 22:40:42 +00:00
|
|
|
|
2003-09-10 22:30:53 +00:00
|
|
|
if (argc < 5) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf( "usage: fatload <interface> <dev[:part]> "
|
|
|
|
"<addr> <filename> [bytes]\n");
|
2004-08-28 21:09:14 +00:00
|
|
|
return 1;
|
2003-06-15 22:40:42 +00:00
|
|
|
}
|
2010-07-19 09:37:00 +00:00
|
|
|
|
|
|
|
dev = (int)simple_strtoul(argv[2], &ep, 16);
|
|
|
|
dev_desc = get_dev(argv[1],dev);
|
|
|
|
if (dev_desc == NULL) {
|
|
|
|
puts("\n** Invalid boot device **\n");
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (*ep) {
|
|
|
|
if (*ep != ':') {
|
2010-07-19 09:37:00 +00:00
|
|
|
puts("\n** Invalid boot device, use `dev[:part]' **\n");
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
part = (int)simple_strtoul(++ep, NULL, 16);
|
|
|
|
}
|
|
|
|
if (fat_register_device(dev_desc,part)!=0) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("\n** Unable to use %s %d:%d for fatload **\n",
|
|
|
|
argv[1], dev, part);
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2010-07-19 09:37:00 +00:00
|
|
|
offset = simple_strtoul(argv[3], NULL, 16);
|
2003-09-10 22:30:53 +00:00
|
|
|
if (argc == 6)
|
2010-07-19 09:37:00 +00:00
|
|
|
count = simple_strtoul(argv[5], NULL, 16);
|
2003-06-15 22:40:42 +00:00
|
|
|
else
|
|
|
|
count = 0;
|
2010-07-19 09:37:00 +00:00
|
|
|
size = file_fat_read(argv[4], (unsigned char *)offset, count);
|
2003-06-15 22:40:42 +00:00
|
|
|
|
2003-10-06 21:55:32 +00:00
|
|
|
if(size==-1) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("\n** Unable to read \"%s\" from %s %d:%d **\n",
|
|
|
|
argv[4], argv[1], dev, part);
|
2004-08-28 21:09:14 +00:00
|
|
|
return 1;
|
2003-10-06 21:55:32 +00:00
|
|
|
}
|
|
|
|
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("\n%ld bytes read\n", size);
|
2004-08-28 21:09:14 +00:00
|
|
|
|
|
|
|
sprintf(buf, "%lX", size);
|
|
|
|
setenv("filesize", buf);
|
|
|
|
|
|
|
|
return 0;
|
2003-06-15 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2003-09-10 22:30:53 +00:00
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2003-09-10 22:30:53 +00:00
|
|
|
fatload, 6, 0, do_fat_fsload,
|
2009-01-28 00:03:12 +00:00
|
|
|
"load binary file from a dos filesystem",
|
2003-09-10 22:30:53 +00:00
|
|
|
"<interface> <dev[:part]> <addr> <filename> [bytes]\n"
|
|
|
|
" - load binary file 'filename' from 'dev' on 'interface'\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
" to address 'addr' from dos filesystem"
|
2003-06-29 21:03:46 +00:00
|
|
|
);
|
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_fat_ls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-15 22:40:42 +00:00
|
|
|
{
|
|
|
|
char *filename = "/";
|
|
|
|
int ret;
|
2003-09-10 22:30:53 +00:00
|
|
|
int dev=0;
|
|
|
|
int part=1;
|
|
|
|
char *ep;
|
|
|
|
block_dev_desc_t *dev_desc=NULL;
|
2003-06-15 22:40:42 +00:00
|
|
|
|
2003-09-10 22:30:53 +00:00
|
|
|
if (argc < 3) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("usage: fatls <interface> <dev[:part]> [directory]\n");
|
|
|
|
return 0;
|
2003-09-10 22:30:53 +00:00
|
|
|
}
|
2010-07-19 09:37:00 +00:00
|
|
|
dev = (int)simple_strtoul(argv[2], &ep, 16);
|
|
|
|
dev_desc = get_dev(argv[1],dev);
|
|
|
|
if (dev_desc == NULL) {
|
|
|
|
puts("\n** Invalid boot device **\n");
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (*ep) {
|
|
|
|
if (*ep != ':') {
|
2010-07-19 09:37:00 +00:00
|
|
|
puts("\n** Invalid boot device, use `dev[:part]' **\n");
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
part = (int)simple_strtoul(++ep, NULL, 16);
|
|
|
|
}
|
|
|
|
if (fat_register_device(dev_desc,part)!=0) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("\n** Unable to use %s %d:%d for fatls **\n",
|
|
|
|
argv[1], dev, part);
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (argc == 4)
|
2010-07-19 09:37:00 +00:00
|
|
|
ret = file_fat_ls(argv[3]);
|
2003-06-15 22:40:42 +00:00
|
|
|
else
|
2010-07-19 09:37:00 +00:00
|
|
|
ret = file_fat_ls(filename);
|
2003-06-15 22:40:42 +00:00
|
|
|
|
2003-09-10 22:30:53 +00:00
|
|
|
if(ret!=0)
|
|
|
|
printf("No Fat FS detected\n");
|
2010-07-19 09:37:00 +00:00
|
|
|
return ret;
|
2003-06-15 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2003-09-10 22:30:53 +00:00
|
|
|
fatls, 4, 1, do_fat_ls,
|
2009-01-28 00:03:12 +00:00
|
|
|
"list files in a directory (default /)",
|
2003-09-10 22:30:53 +00:00
|
|
|
"<interface> <dev[:part]> [directory]\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
" - list files from 'dev' on 'interface' in a 'directory'"
|
2003-06-29 21:03:46 +00:00
|
|
|
);
|
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_fat_fsinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-15 22:40:42 +00:00
|
|
|
{
|
2003-09-10 22:30:53 +00:00
|
|
|
int dev=0;
|
|
|
|
int part=1;
|
|
|
|
char *ep;
|
|
|
|
block_dev_desc_t *dev_desc=NULL;
|
2003-06-15 22:40:42 +00:00
|
|
|
|
2003-09-10 22:30:53 +00:00
|
|
|
if (argc < 2) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("usage: fatinfo <interface> <dev[:part]>\n");
|
|
|
|
return 0;
|
2003-09-10 22:30:53 +00:00
|
|
|
}
|
2010-07-19 09:37:00 +00:00
|
|
|
dev = (int)simple_strtoul(argv[2], &ep, 16);
|
|
|
|
dev_desc = get_dev(argv[1],dev);
|
|
|
|
if (dev_desc == NULL) {
|
|
|
|
puts("\n** Invalid boot device **\n");
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (*ep) {
|
|
|
|
if (*ep != ':') {
|
2010-07-19 09:37:00 +00:00
|
|
|
puts("\n** Invalid boot device, use `dev[:part]' **\n");
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
part = (int)simple_strtoul(++ep, NULL, 16);
|
|
|
|
}
|
|
|
|
if (fat_register_device(dev_desc,part)!=0) {
|
2010-07-19 09:37:00 +00:00
|
|
|
printf("\n** Unable to use %s %d:%d for fatinfo **\n",
|
|
|
|
argv[1], dev, part);
|
2003-09-10 22:30:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2010-07-19 09:37:00 +00:00
|
|
|
return file_fat_detectfs();
|
2003-06-15 22:40:42 +00:00
|
|
|
}
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2003-09-10 22:30:53 +00:00
|
|
|
fatinfo, 3, 1, do_fat_fsinfo,
|
2009-01-28 00:03:12 +00:00
|
|
|
"print information about filesystem",
|
2003-09-10 22:30:53 +00:00
|
|
|
"<interface> <dev[:part]>\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
" - print information about filesystem from 'dev' on 'interface'"
|
2003-06-29 21:03:46 +00:00
|
|
|
);
|