mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
This commit is contained in:
commit
d03f4230a6
19 changed files with 67 additions and 35 deletions
|
@ -106,7 +106,9 @@ int checkcpu(void)
|
||||||
puts(cpu_type_list[i].name);
|
puts(cpu_type_list[i].name);
|
||||||
if (IS_E_PROCESSOR(spridr))
|
if (IS_E_PROCESSOR(spridr))
|
||||||
puts("E");
|
puts("E");
|
||||||
if (REVID_MAJOR(spridr) >= 2)
|
if ((SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
|
||||||
|
SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
|
||||||
|
REVID_MAJOR(spridr) >= 2)
|
||||||
puts("A");
|
puts("A");
|
||||||
printf(", Rev: %d.%d", REVID_MAJOR(spridr),
|
printf(", Rev: %d.%d", REVID_MAJOR(spridr),
|
||||||
REVID_MINOR(spridr));
|
REVID_MINOR(spridr));
|
||||||
|
|
|
@ -116,7 +116,7 @@ int get_clocks(void)
|
||||||
#if defined(CONFIG_MPC8315)
|
#if defined(CONFIG_MPC8315)
|
||||||
u32 tdm_clk;
|
u32 tdm_clk;
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_MPC837x)
|
#if defined(CONFIG_FSL_ESDHC)
|
||||||
u32 sdhc_clk;
|
u32 sdhc_clk;
|
||||||
#endif
|
#endif
|
||||||
u32 enc_clk;
|
u32 enc_clk;
|
||||||
|
@ -274,7 +274,7 @@ int get_clocks(void)
|
||||||
return -7;
|
return -7;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(CONFIG_MPC837x)
|
#if defined(CONFIG_FSL_ESDHC)
|
||||||
switch ((sccr & SCCR_SDHCCM) >> SCCR_SDHCCM_SHIFT) {
|
switch ((sccr & SCCR_SDHCCM) >> SCCR_SDHCCM_SHIFT) {
|
||||||
case 0:
|
case 0:
|
||||||
sdhc_clk = 0;
|
sdhc_clk = 0;
|
||||||
|
@ -321,7 +321,7 @@ int get_clocks(void)
|
||||||
i2c1_clk = enc_clk;
|
i2c1_clk = enc_clk;
|
||||||
#elif defined(CONFIG_MPC831x)
|
#elif defined(CONFIG_MPC831x)
|
||||||
i2c1_clk = enc_clk;
|
i2c1_clk = enc_clk;
|
||||||
#elif defined(CONFIG_MPC837x)
|
#elif defined(CONFIG_FSL_ESDHC)
|
||||||
i2c1_clk = sdhc_clk;
|
i2c1_clk = sdhc_clk;
|
||||||
#endif
|
#endif
|
||||||
#if !defined(CONFIG_MPC832x)
|
#if !defined(CONFIG_MPC832x)
|
||||||
|
@ -455,7 +455,7 @@ int get_clocks(void)
|
||||||
#if defined(CONFIG_MPC8315)
|
#if defined(CONFIG_MPC8315)
|
||||||
gd->tdm_clk = tdm_clk;
|
gd->tdm_clk = tdm_clk;
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_MPC837x)
|
#if defined(CONFIG_FSL_ESDHC)
|
||||||
gd->sdhc_clk = sdhc_clk;
|
gd->sdhc_clk = sdhc_clk;
|
||||||
#endif
|
#endif
|
||||||
gd->core_clk = core_clk;
|
gd->core_clk = core_clk;
|
||||||
|
@ -522,7 +522,7 @@ int do_clocks (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
||||||
#if defined(CONFIG_MPC8315)
|
#if defined(CONFIG_MPC8315)
|
||||||
printf(" TDM: %-4s MHz\n", strmhz(buf, gd->tdm_clk));
|
printf(" TDM: %-4s MHz\n", strmhz(buf, gd->tdm_clk));
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_MPC837x)
|
#if defined(CONFIG_FSL_ESDHC)
|
||||||
printf(" SDHC: %-4s MHz\n", strmhz(buf, gd->sdhc_clk));
|
printf(" SDHC: %-4s MHz\n", strmhz(buf, gd->sdhc_clk));
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_MPC834x) || defined(CONFIG_MPC831x) || defined(CONFIG_MPC837x)
|
#if defined(CONFIG_MPC834x) || defined(CONFIG_MPC831x) || defined(CONFIG_MPC837x)
|
||||||
|
|
|
@ -686,7 +686,7 @@ void board_init_r (gd_t *id, ulong dest_addr)
|
||||||
|
|
||||||
WATCHDOG_RESET();
|
WATCHDOG_RESET();
|
||||||
|
|
||||||
#if defined(CONFIG_SYS_DELAYED_ICACHE) || defined(CONFIG_MPC83xx)
|
#if defined(CONFIG_SYS_DELAYED_ICACHE)
|
||||||
icache_enable (); /* it's time to enable the instruction cache */
|
icache_enable (); /* it's time to enable the instruction cache */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -435,7 +435,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1
|
#define CONFIG_CMDLINE_EDITING 1
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Miscellaneous configurable options
|
* Miscellaneous configurable options
|
||||||
|
@ -517,7 +517,8 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
|
HID0_ENABLE_INSTRUCTION_CACHE | \
|
||||||
|
HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
|
||||||
|
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
|
|
|
@ -504,6 +504,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
|
||||||
|
@ -535,8 +536,9 @@
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE | \
|
||||||
HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
|
HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -437,8 +438,9 @@
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -286,6 +286,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -454,8 +455,9 @@
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -296,6 +296,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -597,7 +598,8 @@
|
||||||
#define CONFIG_SYS_SICRL SICRL_LDP_A
|
#define CONFIG_SYS_SICRL SICRL_LDP_A
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
|
|
||||||
/* #define CONFIG_SYS_HID0_FINAL (\
|
/* #define CONFIG_SYS_HID0_FINAL (\
|
||||||
HID0_ENABLE_INSTRUCTION_CACHE |\
|
HID0_ENABLE_INSTRUCTION_CACHE |\
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options
|
* High Level Configuration Options
|
||||||
*/
|
*/
|
||||||
|
#define CONFIG_MPC83xx 1
|
||||||
#define CONFIG_MPC834x /* MPC834x family (8343, 8347, 8349) */
|
#define CONFIG_MPC834x /* MPC834x family (8343, 8347, 8349) */
|
||||||
#define CONFIG_MPC8349 /* MPC8349 specific */
|
#define CONFIG_MPC8349 /* MPC8349 specific */
|
||||||
|
|
||||||
|
@ -511,7 +512,8 @@ boards, we say we have two, but don't display a message if we find only one. */
|
||||||
* Miscellaneous configurable options
|
* Miscellaneous configurable options
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
||||||
#define CONFIG_CMDLINE_EDITING /* Command-line editing */
|
#define CONFIG_CMDLINE_EDITING /* Command-line editing */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
#define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */
|
#define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
||||||
|
|
||||||
|
@ -595,8 +597,8 @@ boards, we say we have two, but don't display a message if we find only one. */
|
||||||
#define CONFIG_SYS_SICRH SICRH_TSOBI1 /* Needed for gigabit to work on TSEC 1 */
|
#define CONFIG_SYS_SICRH SICRH_TSOBI1 /* Needed for gigabit to work on TSEC 1 */
|
||||||
#define CONFIG_SYS_SICRL (SICRL_LDP_A | SICRL_USB1) /* USB DR as device + USB MPH as host */
|
#define CONFIG_SYS_SICRL (SICRL_LDP_A | SICRL_USB1) /* USB DR as device + USB MPH as host */
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x00000000
|
||||||
#define CONFIG_SYS_HID0_FINAL CONFIG_SYS_HID0_INIT
|
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_INSTRUCTION_CACHE
|
||||||
|
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
#define CONFIG_HIGH_BATS 1 /* High BATs supported */
|
#define CONFIG_HIGH_BATS 1 /* High BATs supported */
|
||||||
|
|
|
@ -320,6 +320,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -494,8 +495,9 @@
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -250,6 +250,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -411,8 +412,9 @@
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -500,6 +500,7 @@ extern int board_pci_host_broken(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
|
||||||
|
@ -543,8 +544,9 @@ extern int board_pci_host_broken(void);
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -508,6 +508,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
|
|
||||||
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
#undef CONFIG_WATCHDOG /* watchdog disabled */
|
||||||
|
|
||||||
|
@ -551,8 +552,9 @@
|
||||||
/*
|
/*
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -275,6 +275,7 @@
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_LONGHELP
|
#define CONFIG_SYS_LONGHELP
|
||||||
#define CONFIG_CMDLINE_EDITING
|
#define CONFIG_CMDLINE_EDITING
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
||||||
|
|
||||||
|
@ -320,7 +321,8 @@
|
||||||
#define CONFIG_SYS_SICRL (SICRL_LDP_A | SICRL_USB1 | SICRL_USB0)
|
#define CONFIG_SYS_SICRL (SICRL_LDP_A | SICRL_USB1 | SICRL_USB0)
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL CONFIG_SYS_HID0_INIT
|
#define CONFIG_SYS_HID0_FINAL (CONFIG_SYS_HID0_INIT | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
|
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
#define CONFIG_HIGH_BATS 1
|
#define CONFIG_HIGH_BATS 1
|
||||||
|
|
|
@ -342,7 +342,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1
|
#define CONFIG_CMDLINE_EDITING 1
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Miscellaneous configurable options
|
* Miscellaneous configurable options
|
||||||
|
@ -411,8 +411,9 @@
|
||||||
| SICRL_ETSEC2_A )
|
| SICRL_ETSEC2_A )
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK \
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
| HID0_ENABLE_DYNAMIC_POWER_MANAGMENT )
|
HID0_ENABLE_INSTRUCTION_CACHE | \
|
||||||
|
HID0_ENABLE_DYNAMIC_POWER_MANAGMENT )
|
||||||
|
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
|
|
|
@ -332,6 +332,8 @@ extern int tqm834x_num_flash_banks;
|
||||||
#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
|
#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
|
|
||||||
#define CONFIG_SYS_HUSH_PARSER 1 /* Use the HUSH parser */
|
#define CONFIG_SYS_HUSH_PARSER 1 /* Use the HUSH parser */
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
||||||
|
@ -403,7 +405,8 @@ extern int tqm834x_num_flash_banks;
|
||||||
|
|
||||||
/* i-cache and d-cache disabled */
|
/* i-cache and d-cache disabled */
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL CONFIG_SYS_HID0_INIT
|
#define CONFIG_SYS_HID0_FINAL (CONFIG_SYS_HID0_INIT | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
#define CONFIG_HIGH_BATS 1 /* High BATs supported */
|
#define CONFIG_HIGH_BATS 1 /* High BATs supported */
|
||||||
|
|
|
@ -367,7 +367,8 @@
|
||||||
* Core HID Setup
|
* Core HID Setup
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -283,6 +283,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -541,7 +542,8 @@
|
||||||
#define CONFIG_SYS_SICRL SICRL_LDP_A
|
#define CONFIG_SYS_SICRL SICRL_LDP_A
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
|
|
||||||
/* #define CONFIG_SYS_HID0_FINAL (\
|
/* #define CONFIG_SYS_HID0_FINAL (\
|
||||||
HID0_ENABLE_INSTRUCTION_CACHE |\
|
HID0_ENABLE_INSTRUCTION_CACHE |\
|
||||||
|
|
|
@ -197,6 +197,7 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR + 0x4600)
|
#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR + 0x4600)
|
||||||
|
|
||||||
#define CONFIG_CMDLINE_EDITING /* add command line history */
|
#define CONFIG_CMDLINE_EDITING /* add command line history */
|
||||||
|
#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
|
||||||
/* Use the HUSH parser */
|
/* Use the HUSH parser */
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#ifdef CONFIG_SYS_HUSH_PARSER
|
#ifdef CONFIG_SYS_HUSH_PARSER
|
||||||
|
@ -448,7 +449,8 @@
|
||||||
#define CONFIG_SYS_SICRL SICRL_LDP_A
|
#define CONFIG_SYS_SICRL SICRL_LDP_A
|
||||||
|
|
||||||
#define CONFIG_SYS_HID0_INIT 0x000000000
|
#define CONFIG_SYS_HID0_INIT 0x000000000
|
||||||
#define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
|
#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
|
||||||
|
HID0_ENABLE_INSTRUCTION_CACHE)
|
||||||
|
|
||||||
#define CONFIG_SYS_HID2 HID2_HBE
|
#define CONFIG_SYS_HID2 HID2_HBE
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue