Get rid of the old romstage-as-bootblock ROM layout
[coreboot.git] / src / mainboard / amd / torpedo / Kconfig
1 #
2 # This file is part of the coreboot project.
3 #
4 # Copyright (C) 2011 Advanced Micro Devices, Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 #
19
20 if BOARD_AMD_TORPEDO
21
22 config BOARD_SPECIFIC_OPTIONS # dummy
23         def_bool y
24   select ARCH_X86
25         select DIMM_DDR3
26         select DIMM_UNREGISTERED
27   select CPU_AMD_AGESA_FAMILY12
28   select NORTHBRIDGE_AMD_AGESA_FAMILY12_ROOT_COMPLEX
29   select NORTHBRIDGE_AMD_AGESA_FAMILY12
30   select SOUTHBRIDGE_AMD_CIMX_SB900
31   select SUPERIO_SMSC_KBC1100
32   select BOARD_HAS_FADT
33         select HAVE_BUS_CONFIG
34         select HAVE_OPTION_TABLE
35         select HAVE_PIRQ_TABLE
36         select HAVE_MP_TABLE
37         select HAVE_MAINBOARD_RESOURCES
38         select HAVE_HARD_RESET
39         select SB_HT_CHAIN_UNITID_OFFSET_ONLY
40         select LIFT_BSP_APIC_ID
41   select SERIAL_CPU_INIT
42   select AMDMCT
43         select HAVE_ACPI_TABLES
44   select BOARD_ROMSIZE_KB_2048
45   select ENABLE_APIC_EXT_ID
46         select GFXUMA
47
48 config AMD_AGESA
49         bool
50         default y
51
52 config MAINBOARD_DIR
53         string
54         default amd/torpedo
55
56 config APIC_ID_OFFSET
57         hex
58         default 0x0
59
60 config MAINBOARD_PART_NUMBER
61         string
62         default "Torpedo"
63
64 config HW_MEM_HOLE_SIZEK
65         hex
66         default 0x200000
67
68 config MAX_CPUS
69         int
70         default 4
71
72 config MAX_PHYSICAL_CPUS
73         int
74         default 1
75
76 config HW_MEM_HOLE_SIZE_AUTO_INC
77         bool
78         default n
79
80 config MEM_TRAIN_SEQ
81         int
82         default 2
83
84 config SB_HT_CHAIN_ON_BUS0
85         int
86         default 1
87
88 config HT_CHAIN_END_UNITID_BASE
89         hex
90         default 0x1
91
92 config HT_CHAIN_UNITID_BASE
93         hex
94         default 0x0
95
96 config IRQ_SLOT_COUNT
97         int
98         default 11
99
100 config RAMTOP
101         hex
102         default 0x1000000
103
104 config HEAP_SIZE
105         hex
106         default 0xc0000
107
108 config STACK_SIZE
109         hex
110         default 0x10000
111
112 config ACPI_SSDTX_NUM
113         int
114         default 0
115
116 config RAMBASE
117         hex
118         default 0x200000
119
120 config SIO_PORT
121         hex
122         default 0x2e
123
124 config ONBOARD_VGA_IS_PRIMARY
125         bool
126         default y
127
128 config VGA_BIOS
129         bool
130         default n
131
132 #config VGA_BIOS_FILE
133 #       string "VGA BIOS path and filename"
134 #       depends on VGA_BIOS
135 #       default "rom/video/LlanoGenericVbios.bin"
136
137 config VGA_BIOS_ID
138         string "VGA device PCI IDs"
139         depends on VGA_BIOS
140         default "1002,9641"
141
142 config AHCI_BIOS
143         bool
144         default n
145
146 #config AHCI_BIOS_FILE
147 #       string "AHCI ROM path and filename"
148 #       depends on AHCI_BIOS
149 #       default "rom/ahci/sb900.bin"
150
151 config AHCI_BIOS_ID
152         string "AHCI device PCI IDs"
153         depends on AHCI_BIOS
154         default "1022,7801"
155
156 config XHC_BIOS
157         bool
158         default n
159
160 #config XHC_BIOS_FILE
161 #       string "XHC BIOS path and filename"
162 #       depends on XHC_BIOS
163 #       default "rom/xhc/Xhc.rom"
164
165 config XHC_BIOS_ID
166         string "XHC device PCI IDs"
167         depends on XHC_BIOS
168         default "1022,7812"
169
170 config DRIVERS_PS2_KEYBOARD
171         bool
172         default y
173
174 config WARNINGS_ARE_ERRORS
175         bool
176         default n
177
178 config CONSOLE_POST
179         bool
180         depends on !NO_POST
181         default y
182
183 config SATA_CONTROLLER_MODE
184         hex
185         default 0x0
186         depends on SOUTHBRIDGE_AMD_CIMX_SB900
187
188 config ONBOARD_LAN
189         bool
190         default y
191
192 config ONBOARD_1394
193         bool
194         default y
195
196 config ONBOARD_USB30
197         bool
198         default n
199
200 config ONBOARD_BLUETOOTH
201         bool
202         default y
203
204 config ONBOARD_WEBCAM
205         bool
206         default y
207
208 config ONBOARD_TRAVIS
209         bool
210         default y
211
212 config ONBOARD_LIGHTSENSOR
213         bool
214         default n
215
216 endif # BOARD_AMD_TORPEDO
217