ce36f55e921b98cc3c15f410e3a753d7dcc9c1b1
[coreboot.git] / src / arch / i386 / Kconfig
1 config ARCH_X86
2         boolean
3         help
4           This option is used to set the architecture of a mainboard.
5           It is usually set in mainboard/*/Kconfig.
6
7 config ARCH
8         string
9         default i386
10         depends on ARCH_X86
11         help
12           This is the name of the respective subdirectory in arch/.
13
14 config ROMBASE
15         hex 
16         default 0xffe00000 if COREBOOT_ROMSIZE_KB_2048
17         default 0xfff00000 if COREBOOT_ROMSIZE_KB_1024
18         default 0xfff80000 if COREBOOT_ROMSIZE_KB_512
19         default 0xfffc0000 if COREBOOT_ROMSIZE_KB_256
20         default 0xfffe0000 if COREBOOT_ROMSIZE_KB_128
21
22 config PAYLOAD_SIZE
23         hex
24         default 0
25
26 config ROM_PAYLOAD_START
27         hex
28         default 0xffe00000 if COREBOOT_ROMSIZE_KB_2048
29         default 0xfff00000 if COREBOOT_ROMSIZE_KB_1024
30         default 0xfff80000 if COREBOOT_ROMSIZE_KB_512
31         default 0xfffc0000 if COREBOOT_ROMSIZE_KB_256
32         default 0xfffe0000 if COREBOOT_ROMSIZE_KB_128
33
34 config ROM_IMAGE_SIZE
35         hex
36         default 0x200000 if COREBOOT_ROMSIZE_KB_2048
37         default 0x100000 if COREBOOT_ROMSIZE_KB_1024
38         default 0x80000 if COREBOOT_ROMSIZE_KB_512
39         default 0x40000 if COREBOOT_ROMSIZE_KB_256
40         default 0x20000 if COREBOOT_ROMSIZE_KB_128
41
42 config RAMBASE
43         hex
44         default 0x100000
45
46 config STACK_SIZE
47         hex
48         default 0x8000
49
50
51 menu "Misc Options"
52
53 config MAX_REBOOT_CNT
54         int "Maximum Reboot Count"
55         default 3
56
57 endmenu
58
59