64f75631f67144ff897ec445b8318ebe0e069c6c
[coreboot.git] / src / mainboard / amd / inagua / Kconfig
1 #
2 # This file is part of the coreboot project.
3 #
4 # Copyright (C) 2010 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_WRAPPER_FAMILY14
28   select NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14_ROOT_COMPLEX
29   select NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14
30   select SOUTHBRIDGE_AMD_CIMX_WRAPPER_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 TINY_BOOTBLOCK
47         select GFXUMA
48
49 config AMD_AGESA
50         bool
51         default y
52
53 config AMD_CIMX_SB800
54         bool
55         default y
56
57 config MAINBOARD_DIR
58         string
59         default amd/inagua
60
61 config APIC_ID_OFFSET
62         hex
63         default 0x0
64
65 config MAINBOARD_PART_NUMBER
66         string
67         default "Inagua"
68
69 config HW_MEM_HOLE_SIZEK
70         hex
71         default 0x200000
72
73 config MAX_CPUS
74         int
75         default 2
76
77 config MAX_PHYSICAL_CPUS
78         int
79         default 1
80
81 config HW_MEM_HOLE_SIZE_AUTO_INC
82         bool
83         default n
84
85 config MEM_TRAIN_SEQ
86         int
87         default 2
88
89 config SB_HT_CHAIN_ON_BUS0
90         int
91         default 1
92
93 config HT_CHAIN_END_UNITID_BASE
94         hex
95         default 0x1
96
97 config HT_CHAIN_UNITID_BASE
98         hex
99         default 0x0
100
101 config IRQ_SLOT_COUNT
102         int
103         default 11
104
105 config RAMTOP
106         hex
107         default 0x1000000
108
109 config HEAP_SIZE
110         hex
111         default 0xc0000
112
113 config STACK_SIZE
114         hex
115         default 0x10000
116
117 config ACPI_SSDTX_NUM
118         int
119         default 0
120
121 config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
122         hex
123         default 0x1510
124
125 config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
126         hex
127         default 0x1022
128
129 config RAMBASE
130         hex
131         default 0x200000
132
133 config SIO_PORT
134         hex
135         default 0x2e
136
137 config DRIVERS_PS2_KEYBOARD
138         bool
139         default y
140
141 config WARNINGS_ARE_ERRORS
142         bool
143         default n
144
145 config PAYLOAD_ELF
146         bool
147         default y
148
149 config FALLBACK_PAYLOAD_FILE
150         string "Payload path and filename"
151         depends on PAYLOAD_ELF
152         default "payloads/seabios/out/bios.bin.elf"
153
154 config ONBOARD_VGA_IS_PRIMARY
155         bool
156         default y
157
158 config VGA_BIOS
159         bool
160         default y
161
162 config FALLBACK_VGA_BIOS_FILE
163         string "VGA BIOS path and filename"
164         depends on VGA_BIOS
165         default "rom/video/OntarioGenericVBios.bin"
166
167 config FALLBACK_VGA_BIOS_ID
168         string "VGA device PCI IDs"
169         depends on VGA_BIOS
170         default "1002,9802"
171
172 config AHCI_ROM
173         bool
174         default y
175
176 config AHCI_ROM_FILE
177         string "AHCI ROM path and filename"
178         depends on AHCI_ROM
179         default "rom/ahci/sb800.bin"
180
181 config AHCI_ROM_ID
182         string "AHCI device PCI IDs"
183         depends on AHCI_ROM
184         default "1002,4391"
185
186 endif # BOARD_AMD_INAGUA
187