blob: f70dbaa2a102a03cf46112e915bb244ce8b3a57f [file] [log] [blame]
efdesign98770b8772011-06-20 21:48:37 -07001#
2# This file is part of the coreboot project.
3#
efdesign982c660602011-08-19 14:25:48 -06004# Copyright (C) 2011 Advanced Micro Devices, Inc.
efdesign98770b8772011-06-20 21:48:37 -07005#
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
Paul Menzela46a7122013-02-23 18:37:27 +010017# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
efdesign98770b8772011-06-20 21:48:37 -070018#
19
20if BOARD_AMD_TORPEDO
21
22config 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
efdesign98770b8772011-06-20 21:48:37 -070028 select NORTHBRIDGE_AMD_AGESA_FAMILY12
29 select SOUTHBRIDGE_AMD_CIMX_SB900
30 select SUPERIO_SMSC_KBC1100
efdesign98770b8772011-06-20 21:48:37 -070031 select HAVE_OPTION_TABLE
32 select HAVE_PIRQ_TABLE
33 select HAVE_MP_TABLE
efdesign98770b8772011-06-20 21:48:37 -070034 select SB_HT_CHAIN_UNITID_OFFSET_ONLY
35 select LIFT_BSP_APIC_ID
Sven Schnellea2701c62012-07-29 17:42:52 +020036 select SERIAL_CPU_INIT
efdesign98770b8772011-06-20 21:48:37 -070037 select AMDMCT
38 select HAVE_ACPI_TABLES
39 select BOARD_ROMSIZE_KB_2048
40 select ENABLE_APIC_EXT_ID
efdesign98770b8772011-06-20 21:48:37 -070041 select GFXUMA
42
efdesign98770b8772011-06-20 21:48:37 -070043config MAINBOARD_DIR
44 string
45 default amd/torpedo
46
47config APIC_ID_OFFSET
48 hex
49 default 0x0
50
51config MAINBOARD_PART_NUMBER
52 string
53 default "Torpedo"
54
55config HW_MEM_HOLE_SIZEK
56 hex
57 default 0x200000
58
59config MAX_CPUS
60 int
61 default 4
62
63config MAX_PHYSICAL_CPUS
64 int
65 default 1
66
67config HW_MEM_HOLE_SIZE_AUTO_INC
68 bool
69 default n
70
71config MEM_TRAIN_SEQ
72 int
73 default 2
74
75config SB_HT_CHAIN_ON_BUS0
76 int
77 default 1
78
79config HT_CHAIN_END_UNITID_BASE
80 hex
81 default 0x1
82
83config HT_CHAIN_UNITID_BASE
84 hex
85 default 0x0
86
87config IRQ_SLOT_COUNT
88 int
89 default 11
90
91config RAMTOP
92 hex
93 default 0x1000000
94
95config HEAP_SIZE
96 hex
97 default 0xc0000
98
efdesign98770b8772011-06-20 21:48:37 -070099config RAMBASE
100 hex
101 default 0x200000
102
103config SIO_PORT
104 hex
105 default 0x2e
106
efdesign98770b8772011-06-20 21:48:37 -0700107config ONBOARD_VGA_IS_PRIMARY
108 bool
109 default y
110
111config VGA_BIOS
112 bool
113 default n
114
115#config VGA_BIOS_FILE
116# string "VGA BIOS path and filename"
117# depends on VGA_BIOS
118# default "rom/video/LlanoGenericVbios.bin"
119
120config VGA_BIOS_ID
121 string "VGA device PCI IDs"
122 depends on VGA_BIOS
123 default "1002,9641"
124
125config AHCI_BIOS
126 bool
127 default n
128
129#config AHCI_BIOS_FILE
130# string "AHCI ROM path and filename"
131# depends on AHCI_BIOS
132# default "rom/ahci/sb900.bin"
133
134config AHCI_BIOS_ID
135 string "AHCI device PCI IDs"
136 depends on AHCI_BIOS
137 default "1022,7801"
138
139config XHC_BIOS
140 bool
141 default n
142
143#config XHC_BIOS_FILE
144# string "XHC BIOS path and filename"
145# depends on XHC_BIOS
146# default "rom/xhc/Xhc.rom"
147
148config XHC_BIOS_ID
149 string "XHC device PCI IDs"
150 depends on XHC_BIOS
151 default "1022,7812"
152
efdesign982c660602011-08-19 14:25:48 -0600153config DRIVERS_PS2_KEYBOARD
154 bool
155 default y
156
157config WARNINGS_ARE_ERRORS
158 bool
159 default n
160
efdesign98770b8772011-06-20 21:48:37 -0700161config CONSOLE_POST
162 bool
163 depends on !NO_POST
164 default y
165
166config SATA_CONTROLLER_MODE
167 hex
168 default 0x0
efdesign98770b8772011-06-20 21:48:37 -0700169
170config ONBOARD_LAN
171 bool
172 default y
173
174config ONBOARD_1394
175 bool
176 default y
177
178config ONBOARD_USB30
179 bool
180 default n
181
182config ONBOARD_BLUETOOTH
183 bool
184 default y
185
186config ONBOARD_WEBCAM
187 bool
188 default y
189
190config ONBOARD_TRAVIS
191 bool
192 default y
193
194config ONBOARD_LIGHTSENSOR
195 bool
196 default n
197
198endif # BOARD_AMD_TORPEDO
199