2009-04-28 20:07:43 +03:00
|
|
|
/*
|
2009-06-25 07:33:46 +03:00
|
|
|
* Authors: Xiangfu Liu <xiangfu.z@gmail.com>
|
2009-04-28 20:07:43 +03:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2009-06-25 07:33:46 +03:00
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 3 of the License, or (at your option) any later version.
|
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-06-09 22:16:39 +03:00
|
|
|
#include "inflash_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"
|
|
|
|
" help print this help;\n"
|
|
|
|
" boot boot device and make it in stage2;\n"
|
|
|
|
" list show current device number can connect;\n"
|
|
|
|
" fconfig set USB Boot config file;\n"
|
|
|
|
" nquery query NAND flash info;\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"
|
|
|
|
" nreadoob read NAND flash oob without checking bad block and ECC;\n"
|
|
|
|
" nerase erase NAND flash;\n"
|
|
|
|
" nprog program NAND flash with data and ECC;\n"
|
|
|
|
" nmark mark a bad block in NAND flash;\n"
|
|
|
|
" go execute program in SDRAM;\n"
|
|
|
|
" version show current USB Boot software version;\n"
|
|
|
|
" exit quit from telnet session;\n"
|
|
|
|
" readnand read data from nand flash and store to SDRAM;\n"
|
|
|
|
" load load file data to SDRAM;\n"
|
|
|
|
" run run command script in file;\n"
|
|
|
|
" memtest do SDRAM test;\n"
|
|
|
|
" gpios let one GPIO to high level;\n"
|
|
|
|
" gpioc let one GPIO to low level;\n");
|
|
|
|
/* printf(" nmake read all data from nand flash and store to file(experimental);\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-28 06:38:48 +03:00
|
|
|
printf(" USB Boot Software current version: %s\n", INFLASH_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)
|
|
|
|
{
|
|
|
|
char *buf = com_buf;
|
2009-04-28 21:13:19 +03:00
|
|
|
int k, L, i = 0, j = 0;
|
2009-04-28 20:07:43 +03:00
|
|
|
|
|
|
|
L = (int)strlen(buf);
|
|
|
|
buf[L]=' ';
|
2009-06-26 06:38:32 +03:00
|
|
|
|
|
|
|
if (buf[0] == '\n')
|
|
|
|
return 0;
|
|
|
|
|
2009-04-28 20:07:43 +03:00
|
|
|
for (k = 0; k <= L; k++) {
|
2009-04-28 21:13:19 +03:00
|
|
|
if (*buf == ' ' || *buf == '\n') {
|
|
|
|
while ( *(++buf) == ' ' );
|
|
|
|
com_argv[i][j] = '\0';
|
2009-04-28 20:07:43 +03:00
|
|
|
i++;
|
2009-06-25 19:39:24 +03:00
|
|
|
if (i > MAX_ARGC)
|
|
|
|
return COMMAND_NUM + 1;
|
|
|
|
j = 0;
|
2009-04-28 20:07:43 +03:00
|
|
|
continue;
|
|
|
|
} else {
|
2009-04-28 21:13:19 +03:00
|
|
|
com_argv[i][j] = *buf;
|
2009-04-28 20:07:43 +03:00
|
|
|
j++;
|
2009-06-25 19:39:24 +03:00
|
|
|
if (j > MAX_COMMAND_LENGTH)
|
|
|
|
return COMMAND_NUM + 1;
|
2009-04-28 20:07:43 +03:00
|
|
|
}
|
|
|
|
buf++;
|
|
|
|
}
|
|
|
|
|
2009-04-28 21:13:19 +03:00
|
|
|
com_argc = i;
|
2009-04-28 20:07:43 +03:00
|
|
|
|
|
|
|
for (i = 1; i <= COMMAND_NUM; i++)
|
2009-04-28 21:13:19 +03:00
|
|
|
if (!strcmp(COMMAND[i], com_argv[0]))
|
2009-04-28 20:07:43 +03:00
|
|
|
return i;
|
|
|
|
return COMMAND_NUM + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-28 06:38:48 +03:00
|
|
|
printf(" exiting inflash 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;
|
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
|
|
|
}
|