aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
authorGreg Watson <jarrah@users.sourceforge.net>2003-12-17 17:25:32 +0000
committerGreg Watson <jarrah@users.sourceforge.net>2003-12-17 17:25:32 +0000
commit139ef8aa682059b11793639bc49cc76d28916713 (patch)
treeeb520b0fecae12d7278df28195159731e64bcf36 /targets
parent17729a2ebdcd9c014b6fbc6ac7fee948fd24b1d0 (diff)
*** empty log message ***
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1312 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets')
-rw-r--r--targets/embeddedplanet/ep405pc/Config.lb31
1 files changed, 16 insertions, 15 deletions
diff --git a/targets/embeddedplanet/ep405pc/Config.lb b/targets/embeddedplanet/ep405pc/Config.lb
index 64d3cb7688..c12eed107b 100644
--- a/targets/embeddedplanet/ep405pc/Config.lb
+++ b/targets/embeddedplanet/ep405pc/Config.lb
@@ -11,6 +11,7 @@ uses HAVE_OPTION_TABLE
uses CONFIG_COMPRESS
uses CONFIG_CHIP_CONFIGURE
uses DEFAULT_CONSOLE_LOGLEVEL
+uses CONFIG_USE_INIT
uses CONFIG_CONSOLE_SERIAL8250
uses TTYS0_BASE UART0_IO_BASE
uses NO_POST
@@ -18,13 +19,13 @@ uses CONFIG_IDE_STREAM
uses CONFIG_SYS_CLK_FREQ
uses IDE_BOOT_DRIVE
uses IDE_SWAB IDE_OFFSET
-uses ROM_SIZE ROM_IMAGE_SIZE
-uses ROM_SECTION_SIZE
-uses ROM_SECTION_OFFSET
+uses ROM_SIZE
uses _RESET
uses _EXCEPTION_VECTORS
uses _ROMBASE
+uses _ROMSTART
uses _RAMBASE
+uses _RAMSTART
uses EMBEDDED_RAM_SIZE
uses STACK_SIZE HEAP_SIZE
@@ -32,10 +33,13 @@ uses STACK_SIZE HEAP_SIZE
option CPU_OPT="-Wa,-m405"
## use a cross compiler
-option CROSS_COMPILE="powerpc-eabi-"
+#option CROSS_COMPILE="powerpc-eabi-"
+
+## Use stage 1 initialization code
+option CONFIG_USE_INIT=1
## Use chip configuration
-#option CONFIG_CHIP_CONFIGURE=1
+option CONFIG_CHIP_CONFIGURE=1
## We don't use compressed image
option CONFIG_COMPRESS=0
@@ -72,29 +76,26 @@ option STACK_SIZE=0x10000
##
option HEAP_SIZE=0x10000
-## Compute the location and size of where this firmware image
-## (linuxBIOS plus bootloader) will live in the boot rom chip.
-##
-option ROM_SECTION_SIZE=ROM_SIZE
-option ROM_SECTION_OFFSET=0
-
##
## System clock
##
option CONFIG_SYS_CLK_FREQ=33
romimage "normal"
+ ##
+ option _ROMBASE=0xfff00000
+
## Reset vector address
option _RESET=0xfffffffc
## Exception vectors
- option _EXCEPTION_VECTORS=0xfff00100
+ option _EXCEPTION_VECTORS=_ROMBASE+0x100
## linuxBIOS ROM start address
- option _ROMBASE=0xfff03000
+ option _ROMSTART=0xfff03000
- ## ROM_IMAGE_SIZE is the amount of space to allow linuxBIOS to occupy.
- option ROM_IMAGE_SIZE=49152
+ ## linuxBIOS C code runs at this location in RAM
+ option _RAMBASE=0x00100000
mainboard embeddedplanet/ep405pc
end