Move DDR command parsing to separate function

Move the FSL DDR prompt command parsing to a separate function
so that it can be reused.

Signed-off-by: James Yang <James.Yang@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
This commit is contained in:
James Yang 2013-01-04 08:14:00 +00:00 committed by Andy Fleming
parent e750cfaa01
commit bf4189307f

View File

@ -1369,14 +1369,15 @@ struct data_strings {
#define DATA_OPTIONS(name, step, dimm) {#name, step, dimm} #define DATA_OPTIONS(name, step, dimm) {#name, step, dimm}
unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo) static unsigned int fsl_ddr_parse_interactive_cmd(
{ char **argv,
unsigned long long ddrsize; int argc,
const char *prompt = "FSL DDR>"; unsigned int *pstep_mask,
char buffer[CONFIG_SYS_CBSIZE]; unsigned int *pctlr_mask,
char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */ unsigned int *pdimm_mask,
int argc; unsigned int *pdimm_number_required
unsigned int next_step = STEP_GET_SPD; ) {
static const struct data_strings options[] = { static const struct data_strings options[] = {
DATA_OPTIONS(spd, STEP_GET_SPD, 1), DATA_OPTIONS(spd, STEP_GET_SPD, 1),
DATA_OPTIONS(dimmparms, STEP_COMPUTE_DIMM_PARMS, 1), DATA_OPTIONS(dimmparms, STEP_COMPUTE_DIMM_PARMS, 1),
@ -1386,6 +1387,56 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
DATA_OPTIONS(regs, STEP_COMPUTE_REGS, 0), DATA_OPTIONS(regs, STEP_COMPUTE_REGS, 0),
}; };
static const unsigned int n_opts = ARRAY_SIZE(options); static const unsigned int n_opts = ARRAY_SIZE(options);
unsigned int i, j;
unsigned int error = 0;
unsigned int matched = 0;
for (i = 1; i < argc; i++) {
for (j = 0; j < n_opts; j++) {
if (strcmp(options[j].data_name, argv[i]) != 0)
continue;
*pstep_mask |= options[j].step_mask;
*pdimm_number_required =
options[j].dimm_number_required;
matched = 1;
break;
}
if (matched)
continue;
if (argv[i][0] == 'c') {
char c = argv[i][1];
if (isdigit(c))
*pctlr_mask |= 1 << (c - '0');
continue;
}
if (argv[i][0] == 'd') {
char c = argv[i][1];
if (isdigit(c))
*pdimm_mask |= 1 << (c - '0');
continue;
}
printf("unknown arg %s\n", argv[i]);
*pstep_mask = 0;
error = 1;
break;
}
return error;
}
unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
{
unsigned long long ddrsize;
const char *prompt = "FSL DDR>";
char buffer[CONFIG_SYS_CBSIZE];
char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
int argc;
unsigned int next_step = STEP_GET_SPD;
const char *usage = { const char *usage = {
"commands:\n" "commands:\n"
"print print SPD and intermediate computed data\n" "print print SPD and intermediate computed data\n"
@ -1426,7 +1477,6 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
} }
if (strcmp(argv[0], "edit") == 0) { if (strcmp(argv[0], "edit") == 0) {
unsigned int i, j;
unsigned int error = 0; unsigned int error = 0;
unsigned int step_mask = 0; unsigned int step_mask = 0;
unsigned int ctlr_mask = 0; unsigned int ctlr_mask = 0;
@ -1436,7 +1486,6 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
unsigned int dimm_number_required = 0; unsigned int dimm_number_required = 0;
unsigned int ctrl_num; unsigned int ctrl_num;
unsigned int dimm_num; unsigned int dimm_num;
unsigned int matched = 0;
if (argc == 1) { if (argc == 1) {
/* Only the element and value must be last */ /* Only the element and value must be last */
@ -1448,41 +1497,13 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
continue; continue;
} }
for (i = 1; i < argc - 2; i++) { error = fsl_ddr_parse_interactive_cmd(
for (j = 0; j < n_opts; j++) { argv, argc - 2,
if (strcmp(options[j].data_name, &step_mask,
argv[i]) != 0) &ctlr_mask,
continue; &dimm_mask,
step_mask |= options[j].step_mask; &dimm_number_required
dimm_number_required = );
options[j].dimm_number_required;
matched = 1;
break;
}
if (matched)
continue;
if (argv[i][0] == 'c') {
char c = argv[i][1];
if (isdigit(c))
ctlr_mask |= 1 << (c - '0');
continue;
}
if (argv[i][0] == 'd') {
char c = argv[i][1];
if (isdigit(c))
dimm_mask |= 1 << (c - '0');
continue;
}
printf("unknown arg %s\n", argv[i]);
step_mask = 0;
error = 1;
break;
}
if (error) if (error)
continue; continue;
@ -1629,12 +1650,11 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
} }
if (strcmp(argv[0], "print") == 0) { if (strcmp(argv[0], "print") == 0) {
unsigned int i, j;
unsigned int error = 0; unsigned int error = 0;
unsigned int step_mask = 0; unsigned int step_mask = 0;
unsigned int ctlr_mask = 0; unsigned int ctlr_mask = 0;
unsigned int dimm_mask = 0; unsigned int dimm_mask = 0;
unsigned int matched = 0; unsigned int dimm_number_required = 0;
if (argc == 1) { if (argc == 1) {
printf("print [c<n>] [d<n>] [spd] [dimmparms] " printf("print [c<n>] [d<n>] [spd] [dimmparms] "
@ -1642,38 +1662,13 @@ unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo)
continue; continue;
} }
for (i = 1; i < argc; i++) { error = fsl_ddr_parse_interactive_cmd(
for (j = 0; j < n_opts; j++) { argv, argc,
if (strcmp(options[j].data_name, &step_mask,
argv[i]) != 0) &ctlr_mask,
continue; &dimm_mask,
step_mask |= options[j].step_mask; &dimm_number_required
matched = 1; );
break;
}
if (matched)
continue;
if (argv[i][0] == 'c') {
char c = argv[i][1];
if (isdigit(c))
ctlr_mask |= 1 << (c - '0');
continue;
}
if (argv[i][0] == 'd') {
char c = argv[i][1];
if (isdigit(c))
dimm_mask |= 1 << (c - '0');
continue;
}
printf("unknown arg %s\n", argv[i]);
step_mask = 0;
error = 1;
break;
}
if (error) if (error)
continue; continue;