Bump coreboot revision for Tyan s2895.
[buildrom.git] / buildrom-devel / config / platforms / Config.in
blobe8a0a8b8763d3a11ae57f6648deb14f5487327bf
1 menu "Platform Configuration"
3 choice
4         prompt "Vendor for the platform target"
5         default VENDOR_AMD
6         help
7           Select the vendor for the platform you are building for.
9 config VENDOR_AMD
10         bool "AMD"
12 config VENDOR_ARTEC_GROUP
13         bool "Artec Group"
15 config VENDOR_ASUS
16         bool "ASUS"
17         depends on COREBOOT_V2
19 config VENDOR_ADVANCED_DIGITAL_LOGIC
20         bool "Advanced Digital Logic"
22 config VENDOR_GIGABYTE
23         bool "GIGABYTE"
24         depends on COREBOOT_V2
26 config VENDOR_PC_ENGINES
27         bool "PC Engines"
29 config VENDOR_QEMU
30         bool "QEMU Emulator"
32 config VENDOR_SUPERMICRO
33         bool "Supermicro"
34         depends on COREBOOT_V2
36 config VENDOR_TYAN
37         bool "Tyan"
38         depends on COREBOOT_V2
40 endchoice
42 choice
43         prompt "Platform target for the ROM"
44         default PLATFORM_NORWICH
45         help
46           Select the platform you are building for.
48 config PLATFORM_NORWICH
49        bool "AMD Geode LX 'Norwich'"
50        depends on VENDOR_AMD
51        select PLATFORM
52        select PLATFORM_GEODE
54 config PLATFORM_DBE61
55        bool "Artec Group DBE61"
56        depends on VENDOR_ARTEC_GROUP
57        select PLATFORM
58        select PLATFORM_GEODE
60 config PLATFORM_ALIX1C
61        bool "PC Engines ALIX1.C"
62        depends on VENDOR_PC_ENGINES
63        select PLATFORM
64        select PLATFORM_GEODE
66 config PLATFORM_ALIX2C3
67        bool "PC Engines ALIX.2C3"
68        depends on VENDOR_PC_ENGINES
69        depends on COREBOOT_V3
70        select PLATFORM
71        select PLATFORM_GEODE
73 config PLATFORM_MSM800SEV
74        bool "Advanced Digital Logic MSM800SEV"
75        depends on VENDOR_ADVANCED_DIGITAL_LOGIC
76        select PLATFORM
77        select PLATFORM_GEODE
79 config PLATFORM_DB800
80         bool "AMD DB800"
81         depends on VENDOR_AMD
82         depends on COREBOOT_V2
83         select PLATFORM
84         select PLATFORM_GEODE
86 config PLATFORM_GA_M57SLI_S4
87        bool "GIGABYTE GA-M57SLI-S4"
88        depends on VENDOR_GIGABYTE
89        depends on COREBOOT_V2
90        select PLATFORM
91        select PLATFORM_SUPPORT_64BIT
93 config PLATFORM_ASUS_A8V_E_SE
94        bool "ASUS A8V-E SE"
95        depends on VENDOR_ASUS
96        depends on COREBOOT_V2
97        select PLATFORM
98        select PLATFORM_SUPPORT_64BIT
100 config PLATFORM_ASUS_A8N_E
101        bool "ASUS A8N-E"
102        depends on VENDOR_ASUS
103        depends on COREBOOT_V2
104        select PLATFORM
105        select PLATFORM_SUPPORT_64BIT
107 config PLATFORM_GA_2761GXDK
108         bool "GIGABYTE GA-2761GXDK"
109         depends on VENDOR_GIGABYTE
110         depends on COREBOOT_V2
111         select PLATFORM
112         select PLATFORM_SUPPORT_64BIT
114 config PLATFORM_TYAN_S2881
115        bool "Tyan S2881"
116        depends on VENDOR_TYAN
117        depends on COREBOOT_V2
118        select PLATFORM
119        select PLATFORM_SUPPORT_64BIT
121 config PLATFORM_TYAN_S2882
122        bool "Tyan S2882"
123        depends on VENDOR_TYAN
124        depends on COREBOOT_V2
125        select PLATFORM
126        select PLATFORM_SUPPORT_64BIT
128 config PLATFORM_TYAN_S2891
129        bool "Tyan S2891"
130        depends on VENDOR_TYAN
131        depends on COREBOOT_V2
132        select PLATFORM
133        select PLATFORM_SUPPORT_64BIT
135 config PLATFORM_TYAN_S2892
136        bool "Tyan S2892"
137        depends on VENDOR_TYAN
138        depends on COREBOOT_V2
139        select PLATFORM
140        select PLATFORM_SUPPORT_64BIT
142 config PLATFORM_TYAN_S2895
143        bool "Tyan S2895"
144        depends on VENDOR_TYAN
145        depends on COREBOOT_V2
146        select PLATFORM
147        select PLATFORM_SUPPORT_64BIT
149 config PLATFORM_QEMU-X86
150        bool "QEMU Emulator"
151        depends on VENDOR_QEMU
152        select PLATFORM
154 config PLATFORM_SERENGETI_CHEETAH
155        bool "AMD Serengeti-Cheetah"
156        depends on VENDOR_AMD
157        select PLATFORM
158        select PLATFORM_SUPPORT_64BIT
160 config PLATFORM_SUPERMICRO_H8DMR
161        bool "Supermicro H8DMR"
162        depends on VENDOR_SUPERMICRO
163        depends on COREBOOT_V2
164        select PLATFORM
165        select PLATFORM_SUPPORT_64BIT
167 config PLATFORM_SUPERMICRO_H8DME
168        bool "Supermicro H8DME"
169        depends on VENDOR_SUPERMICRO
170        depends on COREBOOT_V2
171        select PLATFORM
172        select PLATFORM_SUPPORT_64BIT
174 config PLATFORM_CHEETAH_FAM10
175         bool "AMD Serengeti-Cheetah with fam10 processor"
176         depends on VENDOR_AMD
177         depends on COREBOOT_V2
178         select PLATFORM
179         select PLATFORM_SUPPORT_64BIT
181 config PLATFORM_DBM690T
182         bool "AMD dbM690T"
183         depends on VENDOR_AMD
184         depends on COREBOOT_V2
185         select PLATFORM
186         select PLATFORM_SUPPORT_64BIT
187 endchoice
189 choice
190         prompt "Geode VSA SMM handler"
191         depends on PLATFORM_GEODE
192         default VSA_LEGACY
193         help
194           Select the SMM handler source to use with Geode platforms.
196 config VSA_LEGACY
197         bool "Legacy VSA binary from AMD"
199 config VSA_OPENVSA
200         bool "OpenVSA"
201         depends on EXPERIMENTAL
203 endchoice
206 config BUILD_QEMU
207         bool "Build QEMU with patches for coreboot"
208         depends on PLATFORM_QEMU-X86
209         default n
210         help
211           Say 'y' here to build a patched version of QEMU to work with
212           coreboot. This downloads the correct version and patches it;
213           it even builds it if you specify the QEMU_CC correctly.
215 config QEMU_CC
216         string "Compiler to use when building QEMU"
217         depends on BUILD_QEMU
218         default "gcc34"
219         help
220           QEMU has known problems when built using gcc 4.x.
221           Set this string to point to your compiler (GCC_VER 3.x).
223 config SIMNOW
224         bool "Build for the AMD SimNow (TM) emulator"
225         depends on PLATFORM_SERENGETI_CHEETAH || PLATFORM_SERENGETI_CHEETAH_64
226         depends on COREBOOT_V2
227         default n
228         help
229           Say 'y' here to patch the build to work on an
230           emulated platform in the AMD SimNow (TM) simulator.
232 config AMD_R690_HEADLESS
233         bool "Build the R690 platform as headless (without VGA)"
234         depends on ADVANCED
235         depends on PLATFORM_DBM690T
236         default n
237         help
238           Say 'y' here to build without the VGA BIOS for the
239           R690 chipset.  This will result in no video graphics
240           for the platform.  This is not likely what you want,
241           so you should say 'n' here unless you are absolutely
242           sure.
244 config AMD_R690_USE_VBIOS
245         bool
246         depends on PLATFORM_DBM690T
247         depends on !AMD_R690_HEADLESS
248         default y
250 config AMD_R690_CUSTOM_VBIOS
251         bool "Specify a custom location for the R690 video BIOS"
252         depends on AMD_R690_USE_VBIOS
253         help
254           Say 'y' here to specify a custom location for the R690
255           video BIOS file.  Otherwise, it will be looked for in a
256           default location.
258 config AMD_R690_VBIOS
259         string "Location of the RS690 Video BIOS file"
260         depends on AMD_R690_CUSTOM_VBIOS
261         default ""
262         help
263           Specify the full pathname for your RS690 video BIOS file.
265 endmenu