Get rid of the old romstage-as-bootblock ROM layout
[coreboot.git] / src / mainboard / amd / inagua / Kconfig
1 #
2 # This file is part of the coreboot project.
3 #
4 # Copyright (C) 2010-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_INAGUA
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_FAMILY14
28   select NORTHBRIDGE_AMD_AGESA_FAMILY14_ROOT_COMPLEX
29   select NORTHBRIDGE_AMD_AGESA_FAMILY14
30   select SOUTHBRIDGE_AMD_CIMX_SB800
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/inagua
55
56 config APIC_ID_OFFSET
57         hex
58         default 0x0
59
60 config MAINBOARD_PART_NUMBER
61         string
62         default "Inagua"
63
64 config HW_MEM_HOLE_SIZEK
65         hex
66         default 0x200000
67
68 config MAX_CPUS
69         int
70         default 2
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 DRIVERS_PS2_KEYBOARD
125         bool
126         default y
127
128 config WARNINGS_ARE_ERRORS
129         bool
130         default n
131
132 config ONBOARD_VGA_IS_PRIMARY
133         bool
134         default y
135
136 config VGA_BIOS
137         bool
138         default n
139
140 #config VGA_BIOS_FILE
141 #        string "VGA BIOS path and filename"
142 #        depends on VGA_BIOS
143 #        default "rom/video/OntarioGenericVBios.bin"
144
145 config VGA_BIOS_ID
146         string "VGA device PCI IDs"
147         depends on VGA_BIOS
148         default "1002,9802"
149
150 config AHCI_ROM
151         bool
152         default n
153
154 #config AHCI_ROM_FILE
155 #        string "AHCI ROM path and filename"
156 #        depends on AHCI_ROM
157 #        default "rom/ahci/sb800.bin"
158
159 config AHCI_ROM_ID
160         string "AHCI device PCI IDs"
161         depends on AHCI_ROM
162         default "1002,4391"
163
164 endif # BOARD_AMD_INAGUA
165