mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
esd WUH405 and DU405 board updated
Patch by Matthias Fuchs, 27 Jul 2005
This commit is contained in:
parent
9bcf2ab41f
commit
82f4c6ac84
5 changed files with 1838 additions and 1725 deletions
|
@ -2,6 +2,9 @@
|
|||
Changes for U-Boot 1.1.3:
|
||||
======================================================================
|
||||
|
||||
* esd WUH405 and DU405 board updated
|
||||
Patch by Matthias Fuchs, 27 Jul 2005
|
||||
|
||||
* Fix problem in cmd_nand.c (only when defined CFG_NAND_SKIP_BAD_DOT_I)
|
||||
Patch by Matthias Fuchs, 4 May 2005
|
||||
|
||||
|
|
|
@ -141,6 +141,20 @@ int board_early_init_f (void)
|
|||
}
|
||||
|
||||
|
||||
int misc_init_r (void)
|
||||
{
|
||||
unsigned long cntrl0Reg;
|
||||
|
||||
/*
|
||||
* Setup UART1 handshaking: use CTS instead of DSR
|
||||
*/
|
||||
cntrl0Reg = mfdcr(cntrl0);
|
||||
mtdcr(cntrl0, cntrl0Reg | 0x00001000);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Check Board Identity:
|
||||
*/
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -32,12 +32,14 @@
|
|||
* High Level Configuration Options
|
||||
* (easy to change)
|
||||
*/
|
||||
#define CONFIG_IDENT_STRING " $Name: $"
|
||||
|
||||
#define CONFIG_405GP 1 /* This is a PPC405 CPU */
|
||||
#define CONFIG_4xx 1 /* ...member of PPC4xx family */
|
||||
#define CONFIG_DU405 1 /* ...on a DU405 board */
|
||||
|
||||
#define CONFIG_BOARD_EARLY_INIT_F 1 /* call board_early_init_f() */
|
||||
#define CONFIG_MISC_INIT_R 1 /* call misc_init_r() */
|
||||
|
||||
#define CONFIG_SYS_CLK_FREQ 25000000 /* external frequency to pll */
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
* High Level Configuration Options
|
||||
* (easy to change)
|
||||
*/
|
||||
#define CONFIG_IDENT_STRING " $Name: $"
|
||||
|
||||
#define CONFIG_405EP 1 /* This is a PPC405 CPU */
|
||||
#define CONFIG_4xx 1 /* ...member of PPC4xx family */
|
||||
|
|
Loading…
Reference in a new issue