Rename AMD_AGESA to CPU_AMD_AGESA
[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 MAINBOARD_DIR
49         string
50         default amd/torpedo
51
52 config APIC_ID_OFFSET
53         hex
54         default 0x0
55
56 config MAINBOARD_PART_NUMBER
57         string
58         default "Torpedo"
59
60 config HW_MEM_HOLE_SIZEK
61         hex
62         default 0x200000
63
64 config MAX_CPUS
65         int
66         default 4
67
68 config MAX_PHYSICAL_CPUS
69         int
70         default 1
71
72 config HW_MEM_HOLE_SIZE_AUTO_INC
73         bool
74         default n
75
76 config MEM_TRAIN_SEQ
77         int
78         default 2
79
80 config SB_HT_CHAIN_ON_BUS0
81         int
82         default 1
83
84 config HT_CHAIN_END_UNITID_BASE
85         hex
86         default 0x1
87
88 config HT_CHAIN_UNITID_BASE
89         hex
90         default 0x0
91
92 config IRQ_SLOT_COUNT
93         int
94         default 11
95
96 config RAMTOP
97         hex
98         default 0x1000000
99
100 config HEAP_SIZE
101         hex
102         default 0xc0000
103
104 config STACK_SIZE
105         hex
106         default 0x10000
107
108 config ACPI_SSDTX_NUM
109         int
110         default 0
111
112 config RAMBASE
113         hex
114         default 0x200000
115
116 config SIO_PORT
117         hex
118         default 0x2e
119
120 config ONBOARD_VGA_IS_PRIMARY
121         bool
122         default y
123
124 config VGA_BIOS
125         bool
126         default n
127
128 #config VGA_BIOS_FILE
129 #       string "VGA BIOS path and filename"
130 #       depends on VGA_BIOS
131 #       default "rom/video/LlanoGenericVbios.bin"
132
133 config VGA_BIOS_ID
134         string "VGA device PCI IDs"
135         depends on VGA_BIOS
136         default "1002,9641"
137
138 config AHCI_BIOS
139         bool
140         default n
141
142 #config AHCI_BIOS_FILE
143 #       string "AHCI ROM path and filename"
144 #       depends on AHCI_BIOS
145 #       default "rom/ahci/sb900.bin"
146
147 config AHCI_BIOS_ID
148         string "AHCI device PCI IDs"
149         depends on AHCI_BIOS
150         default "1022,7801"
151
152 config XHC_BIOS
153         bool
154         default n
155
156 #config XHC_BIOS_FILE
157 #       string "XHC BIOS path and filename"
158 #       depends on XHC_BIOS
159 #       default "rom/xhc/Xhc.rom"
160
161 config XHC_BIOS_ID
162         string "XHC device PCI IDs"
163         depends on XHC_BIOS
164         default "1022,7812"
165
166 config DRIVERS_PS2_KEYBOARD
167         bool
168         default y
169
170 config WARNINGS_ARE_ERRORS
171         bool
172         default n
173
174 config CONSOLE_POST
175         bool
176         depends on !NO_POST
177         default y
178
179 config SATA_CONTROLLER_MODE
180         hex
181         default 0x0
182         depends on SOUTHBRIDGE_AMD_CIMX_SB900
183
184 config ONBOARD_LAN
185         bool
186         default y
187
188 config ONBOARD_1394
189         bool
190         default y
191
192 config ONBOARD_USB30
193         bool
194         default n
195
196 config ONBOARD_BLUETOOTH
197         bool
198         default y
199
200 config ONBOARD_WEBCAM
201         bool
202         default y
203
204 config ONBOARD_TRAVIS
205         bool
206         default y
207
208 config ONBOARD_LIGHTSENSOR
209         bool
210         default n
211
212 endif # BOARD_AMD_TORPEDO
213