2009-04-28 20:07:43 +03:00
|
|
|
/*
|
2009-07-09 17:42:29 +03:00
|
|
|
* Copyright(C) 2009 Qi Hardware Inc.,
|
2009-07-05 07:43:21 +03:00
|
|
|
* Authors: Xiangfu Liu <xiangfu@qi-hardware.com>
|
2009-04-28 20:07:43 +03:00
|
|
|
*
|
2009-07-09 17:42:29 +03:00
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
2009-04-28 20:07:43 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "usb_boot_defines.h"
|
|
|
|
#include "ingenic_usb.h"
|
|
|
|
#include "cmd.h"
|
2009-07-02 12:26:14 +03:00
|
|
|
#include "xburst-tools_version.h"
|
2009-04-28 20:07:43 +03:00
|
|
|
|
2009-06-08 11:52:39 +03:00
|
|
|
extern struct nand_in nand_in;
|
2009-06-28 10:35:20 +03:00
|
|
|
extern struct sdram_in sdram_in;
|
|
|
|
extern unsigned char code_buf[4 * 512 * 1024];
|
|
|
|
|
2009-04-30 09:41:49 +03:00
|
|
|
int com_argc;
|
|
|
|
char com_argv[MAX_ARGC][MAX_COMMAND_LENGTH];
|
2009-04-28 20:07:43 +03:00
|
|
|
|
2009-06-26 06:38:32 +03:00
|
|
|
static const char COMMAND[][COMMAND_NUM]=
|
2009-04-28 20:07:43 +03:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"query",
|
|
|
|
"querya",
|
|
|
|
"erase",
|
|
|
|
"read",
|
|
|
|
"prog",
|
|
|
|
"nquery",
|
|
|
|
"nerase",
|
|
|
|
"nread",
|
|
|
|
"nreadraw",
|
2009-06-08 11:52:39 +03:00
|
|
|
"nreadoob", /* index 10 */
|
2009-04-28 20:07:43 +03:00
|
|
|
"nprog",
|
|
|
|
"help",
|
|
|
|
"version",
|
|
|
|
"go",
|
|
|
|
"fconfig",
|
|
|
|
"exit",
|
|
|
|
"readnand",
|
|
|
|
"gpios",
|
|
|
|
"gpioc",
|
2009-06-08 11:52:39 +03:00
|
|
|
"boot", /* index 20 */
|
2009-04-28 20:07:43 +03:00
|
|
|
"list",
|
|
|
|
"select",
|
|
|
|
"unselect",
|
|
|
|
"chip",
|
|
|
|
"unchip",
|
2009-06-26 05:24:03 +03:00
|
|
|
"nmark",
|
2009-04-28 20:07:43 +03:00
|
|
|
"nmake",
|
|
|
|
"load",
|
|
|
|
"memtest",
|
|
|
|
"run"
|
|
|
|
};
|
|
|
|
|
2009-05-04 19:08:03 +03:00
|
|
|
static int handle_help(void)
|
2009-04-28 20:07:43 +03:00
|
|
|
{
|
2009-06-28 06:38:48 +03:00
|
|
|
printf(" command support in current version:\n"
|
2009-06-29 04:10:51 +03:00
|
|
|
/* " query" */
|
|
|
|
/* " querya" */
|
|
|
|
/* " erase" */
|
|
|
|
/* " read" */
|
|
|
|
/* " prog" */
|
2009-06-29 04:25:19 +03:00
|
|
|
" nquery query NAND flash info\n"
|
|
|
|
" nerase erase NAND flash\n"
|
|
|
|
" nread read NAND flash data with checking bad block and ECC\n"
|
|
|
|
" nreadraw read NAND flash data without checking bad block and ECC\n"
|
|
|
|
" nreadoo read NAND flash oob without checking bad block and ECC\n" /* index 10 */
|
|
|
|
" nprog program NAND flash with data and ECC\n"
|
|
|
|
" help print this help\n"
|
|
|
|
" version show current USB Boot software version\n"
|
|
|
|
" go execute program in SDRAM\n"
|
|
|
|
" fconfig set USB Boot config file(not implement)\n"
|
|
|
|
" exit quit from telnet session\n"
|
|
|
|
" readnand read data from nand flash and store to SDRAM\n"
|
|
|
|
" gpios set one GPIO to high level\n"
|
|
|
|
" gpioc set one GPIO to low level\n"
|
|
|
|
" boot boot device and make it in stage2\n" /* index 20 */
|
|
|
|
" list show current device number can connect(not implement)\n"
|
2009-06-29 04:10:51 +03:00
|
|
|
/* " select" */
|
|
|
|
/* " unselect" */
|
|
|
|
/* " chip" */
|
|
|
|
/* " unchip" */
|
2009-06-29 04:25:19 +03:00
|
|
|
" nmark mark a bad block in NAND flash\n"
|
|
|
|
" nmake read all data from nand flash and store to file(not implement)\n"
|
|
|
|
" load load file data to SDRAM\n"
|
|
|
|
" memtest do SDRAM test\n"
|
|
|
|
" run run command script in file(implement by -c args)\n"
|
|
|
|
" sdprog program SD card(not implement)\n"
|
|
|
|
" sdread read data from SD card(not implement)\n");
|
2009-04-28 20:07:43 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-05-04 19:08:03 +03:00
|
|
|
static int handle_version(void)
|
2009-04-28 20:07:43 +03:00
|
|
|
{
|
2009-06-29 18:17:29 +03:00
|
|
|
printf(" USB Boot Software current version: %s\n", XBURST_TOOLS_VERSION);
|
2009-04-28 20:07:43 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-06-08 11:52:39 +03:00
|
|
|
/* need transfer two para :blk_num ,start_blk */
|
|
|
|
int handle_nerase(void)
|
|
|
|
{
|
|
|
|
if (com_argc < 5) {
|
2009-06-28 10:35:20 +03:00
|
|
|
printf(" Usage: nerase (1) (2) (3) (4)\n"
|
|
|
|
" 1:start block number\n"
|
2009-06-28 06:38:48 +03:00
|
|
|
" 2:block length\n"
|
|
|
|
" 3:device index number\n"
|
|
|
|
" 4:flash chip index number\n");
|
2009-06-08 11:52:39 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
init_nand_in();
|
|
|
|
|
|
|
|
nand_in.start = atoi(com_argv[1]);
|
|
|
|
nand_in.length = atoi(com_argv[2]);
|
|
|
|
nand_in.dev = atoi(com_argv[3]);
|
|
|
|
if (atoi(com_argv[4]) >= MAX_DEV_NUM) {
|
2009-06-28 06:38:48 +03:00
|
|
|
printf(" Flash index number overflow!\n");
|
2009-06-08 11:52:39 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
(nand_in.cs_map)[atoi(com_argv[4])] = 1;
|
|
|
|
|
|
|
|
if (nand_erase(&nand_in) < 1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-06-26 05:24:03 +03:00
|
|
|
int handle_nmark(void)
|
|
|
|
{
|
|
|
|
if (com_argc < 4) {
|
2009-06-28 10:35:20 +03:00
|
|
|
printf(" Usage: nerase (1) (2) (3)\n"
|
|
|
|
" 1:bad block number\n"
|
2009-06-28 06:38:48 +03:00
|
|
|
" 2:device index number\n"
|
|
|
|
" 3:flash chip index number\n");
|
2009-06-26 05:24:03 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
init_nand_in();
|
|
|
|
|
|
|
|
nand_in.start = atoi(com_argv[1]);
|
|
|
|
nand_in.dev = atoi(com_argv[2]);
|
|
|
|
|
|
|
|
if (atoi(com_argv[3])>=MAX_DEV_NUM) {
|
2009-06-28 06:38:48 +03:00
|
|
|
printf(" Flash index number overflow!\n");
|
2009-06-26 05:24:03 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
(nand_in.cs_map)[atoi(com_argv[3])] = 1;
|
|
|
|
|
|
|
|
nand_markbad(&nand_in);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-06-26 06:38:32 +03:00
|
|
|
int handle_memtest(void)
|
|
|
|
{
|
|
|
|
unsigned int start, size;
|
|
|
|
if (com_argc != 2 && com_argc != 4)
|
|
|
|
{
|
2009-06-28 10:35:20 +03:00
|
|
|
printf(" Usage: memtest (1) [2] [3]\n"
|
|
|
|
" 1:device index number\n"
|
2009-06-28 06:38:48 +03:00
|
|
|
" 2:SDRAM start address\n"
|
|
|
|
" 3:test size\n");
|
2009-06-26 06:38:32 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (com_argc == 4) {
|
2009-06-28 10:35:20 +03:00
|
|
|
start = strtoul(com_argv[2], NULL, 0);
|
|
|
|
size = strtoul(com_argv[3], NULL, 0);
|
2009-06-26 06:38:32 +03:00
|
|
|
} else {
|
|
|
|
start = 0;
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
debug_memory(atoi(com_argv[1]), start, size);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-06-26 20:41:54 +03:00
|
|
|
int handle_gpio(int mode)
|
|
|
|
{
|
|
|
|
if (com_argc < 3) {
|
2009-06-28 10:35:20 +03:00
|
|
|
printf(" Usage:"
|
|
|
|
" gpios (1) (2)\n"
|
2009-06-28 06:38:48 +03:00
|
|
|
" 1:GPIO pin number\n"
|
|
|
|
" 2:device index number\n");
|
2009-06-26 20:41:54 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug_gpio(atoi(com_argv[2]), mode, atoi(com_argv[1]));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-06-28 10:35:20 +03:00
|
|
|
int handle_load(void)
|
|
|
|
{
|
|
|
|
if (com_argc<4) {
|
|
|
|
printf(" Usage:"
|
|
|
|
" load (1) (2) (3) \n"
|
|
|
|
" 1:SDRAM start address\n"
|
|
|
|
" 2:image file name\n"
|
|
|
|
" 3:device index number\n");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sdram_in.start=strtoul(com_argv[1], NULL, 0);
|
|
|
|
printf(" start:::::: 0x%x\n", sdram_in.start);
|
|
|
|
|
|
|
|
sdram_in.dev = atoi(com_argv[3]);
|
|
|
|
sdram_in.buf = code_buf;
|
|
|
|
sdram_load_file(&sdram_in, com_argv[2]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-04-28 20:07:43 +03:00
|
|
|
int command_interpret(char * com_buf)
|
|
|
|
{
|
2010-06-15 17:37:36 +03:00
|
|
|
if(com_buf[0] == '\n')
|
2009-06-26 06:38:32 +03:00
|
|
|
return 0;
|
|
|
|
|
2010-06-15 17:37:36 +03:00
|
|
|
com_argc = 0;
|
|
|
|
char *p = strtok(com_buf, "\n ");
|
|
|
|
strcpy(com_argv[com_argc++], p);
|
|
|
|
|
|
|
|
while(p = strtok(NULL, "\n "))
|
|
|
|
strcpy(com_argv[com_argc++], p);
|
2009-04-28 20:07:43 +03:00
|
|
|
|
2010-06-15 17:37:36 +03:00
|
|
|
int loop = 0;
|
|
|
|
for (loop = 1; loop <= COMMAND_NUM; loop++)
|
|
|
|
if (!strcmp(COMMAND[loop], com_argv[0]))
|
|
|
|
return loop;
|
2009-04-28 20:07:43 +03:00
|
|
|
|
2010-06-15 17:37:36 +03:00
|
|
|
return -1;
|
2009-04-28 20:07:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int command_handle(char *buf)
|
|
|
|
{
|
2009-05-04 19:08:03 +03:00
|
|
|
int cmd = command_interpret(buf); /* get the command index */
|
2009-04-28 20:07:43 +03:00
|
|
|
|
|
|
|
switch (cmd) {
|
2009-06-26 06:38:32 +03:00
|
|
|
case 0:
|
|
|
|
break;
|
2009-05-14 20:11:03 +03:00
|
|
|
case 6:
|
|
|
|
nand_query();
|
|
|
|
break;
|
2009-06-08 11:52:39 +03:00
|
|
|
case 7:
|
|
|
|
handle_nerase();
|
|
|
|
break;
|
2009-06-25 11:20:59 +03:00
|
|
|
case 8: /* nread */
|
|
|
|
nand_read(NAND_READ);
|
|
|
|
break;
|
|
|
|
case 9: /* nreadraw */
|
|
|
|
nand_read(NAND_READ_RAW);
|
|
|
|
break;
|
|
|
|
case 10: /* nreadoob */
|
|
|
|
nand_read(NAND_READ_OOB);
|
|
|
|
break;
|
2009-04-28 20:07:43 +03:00
|
|
|
case 11:
|
2009-05-14 20:11:03 +03:00
|
|
|
nand_prog();
|
2009-05-04 18:57:06 +03:00
|
|
|
break;
|
2009-04-28 20:07:43 +03:00
|
|
|
case 12:
|
|
|
|
handle_help();
|
|
|
|
break;
|
|
|
|
case 13:
|
|
|
|
handle_version();
|
|
|
|
break;
|
2009-06-28 10:35:20 +03:00
|
|
|
case 14:
|
|
|
|
debug_go();
|
|
|
|
break;
|
2009-04-29 10:25:12 +03:00
|
|
|
case 16: /* exit */
|
2009-06-30 08:49:11 +03:00
|
|
|
printf(" exiting usbboot software\n");
|
2009-05-04 18:57:06 +03:00
|
|
|
return -1; /* return -1 to break the main.c while
|
|
|
|
* then run usb_ingenic_cleanup*/
|
2009-06-28 10:35:20 +03:00
|
|
|
/*case 17:
|
|
|
|
nand_read(NAND_READ_TO_RAM); */
|
|
|
|
break;
|
2009-06-26 20:41:54 +03:00
|
|
|
case 18:
|
|
|
|
handle_gpio(2);
|
|
|
|
break;
|
|
|
|
case 19:
|
|
|
|
handle_gpio(3);
|
|
|
|
break;
|
2009-04-28 20:07:43 +03:00
|
|
|
case 20:
|
2009-05-04 18:57:06 +03:00
|
|
|
boot(STAGE1_FILE_PATH, STAGE2_FILE_PATH);
|
|
|
|
break;
|
2009-06-26 05:24:03 +03:00
|
|
|
case 26:
|
|
|
|
handle_nmark();
|
|
|
|
break;
|
2009-06-28 10:35:20 +03:00
|
|
|
case 28:
|
|
|
|
handle_load();
|
|
|
|
break;
|
2009-06-26 06:38:32 +03:00
|
|
|
case 29:
|
|
|
|
handle_memtest();
|
|
|
|
break;
|
2010-06-15 17:37:36 +03:00
|
|
|
case -1:
|
2009-04-28 20:07:43 +03:00
|
|
|
default:
|
2009-06-28 06:38:48 +03:00
|
|
|
printf(" command not support or input error!\n");
|
2009-05-04 18:57:06 +03:00
|
|
|
break;
|
2009-04-28 20:07:43 +03:00
|
|
|
}
|
|
|
|
|
2009-04-28 21:13:19 +03:00
|
|
|
return 1;
|
2009-04-28 20:07:43 +03:00
|
|
|
}
|