92288234fe83748eb79ab348566f1a2d72ea8c5f
[coreboot.git] / targets / totalimpact / briq / Config.lb
1 # Config file for the Total Impact briQ
2 # This will make a target directory of ./briq
3
4 target briq
5         
6 mainboard totalimpact/briq
7
8 ## Use stage 1 initialization code
9 option CONFIG_USE_INIT=1
10
11 ## We don't use compressed image
12 option CONFIG_COMPRESS=0
13
14 ## Turn off POST codes
15 option NO_POST=1
16
17 ## Enable serial console
18 option DEFAULT_CONSOLE_LOGLEVEL=8
19 option CONFIG_CONSOLE_SERIAL8250=1
20
21 ## Boot linux from IDE
22 option CONFIG_IDE_PAYLOAD=1
23 option IDE_BOOT_DRIVE=0
24 option IDE_SWAB=1
25 option IDE_OFFSET=0
26
27 # ROM is 1Mb
28 option ROM_SIZE=1024*1024
29
30 # Set stack and heap sizes (stage 2)
31 option STACK_SIZE=0x10000
32 option HEAP_SIZE=0x10000
33
34 # Sandpoint Demo Board
35 romimage "normal"
36         ## Base of ROM
37         option _ROMBASE=0xfff00000
38
39         ## Sandpoint reset vector
40         option _RESET=_ROMBASE+0x100
41
42         ## Exception vectors (other than reset vector)
43         option _EXCEPTION_VECTORS=_RESET+0x100
44
45         ## Start of coreboot in the boot rom
46         ## = _RESET + exeception vector table size
47         option _ROMSTART=_RESET+0x3100
48
49         ## Coreboot C code runs at this location in RAM
50         option _RAMBASE=0x00100000
51         option _RAMSTART=0x00100000
52
53         option CONFIG_BRIQ_750FX=1
54         #option CONFIG_BRIQ_7400=1
55
56 end
57
58 buildrom ./coreboot.rom ROM_SIZE "normal"