diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2004-06-05 14:54:46 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2004-06-05 14:54:46 +0000 |
commit | ab8ff84402e97d544b519ec17a2ee184651b8af6 (patch) | |
tree | a5e3d276108fbd280b9cd584412c5c9130b0c175 /src/mainboard/motorola/sandpoint/init.c | |
parent | 8ce104f487a8248be143b4436b7a4abc3969bb6f (diff) |
Add extra phase before memory init.
Rename sdram_init to memory_init
NOTE: need to test sandpoint and ep boards!
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1603 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/motorola/sandpoint/init.c')
-rw-r--r-- | src/mainboard/motorola/sandpoint/init.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/mainboard/motorola/sandpoint/init.c b/src/mainboard/motorola/sandpoint/init.c index 3a9993d785..816412b8f7 100644 --- a/src/mainboard/motorola/sandpoint/init.c +++ b/src/mainboard/motorola/sandpoint/init.c @@ -45,14 +45,11 @@ void pnp_output(char address, char data) void board_init(void) { - /* - * Configure FLASH - */ +} - /* - * Configure NVTRC/BCSR - */ - +void +board_init2(void) +{ /* * Enable UART0 * @@ -67,5 +64,5 @@ board_init(void) pnp_output(0x61, TTYS0_BASE & 0xFF); /* IO Base */ pnp_output(0x30, 1); /* Activate */ uart8250_init(TTYS0_BASE, 115200/TTYS0_BAUD, TTYS0_LCS); - printk_info("Board initialized...\n"); + printk_info("Sandpoint initialized...\n"); } |