Add constants for fast path resume copying
[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 CPU_AMD_AGESA_FAMILY14
26         select NORTHBRIDGE_AMD_AGESA_FAMILY14_ROOT_COMPLEX
27         select NORTHBRIDGE_AMD_AGESA_FAMILY14
28         select SOUTHBRIDGE_AMD_CIMX_SB800
29         select SUPERIO_SMSC_KBC1100
30         select BOARD_HAS_FADT
31         select HAVE_BUS_CONFIG
32         select HAVE_OPTION_TABLE
33         select HAVE_PIRQ_TABLE
34         select HAVE_MP_TABLE
35         select HAVE_MAINBOARD_RESOURCES
36         select HAVE_HARD_RESET
37         select SB_HT_CHAIN_UNITID_OFFSET_ONLY
38         select LIFT_BSP_APIC_ID
39         select SERIAL_CPU_INIT
40         select AMDMCT
41         select HAVE_ACPI_TABLES
42         select BOARD_ROMSIZE_KB_2048
43         select ENABLE_APIC_EXT_ID
44         select GFXUMA
45
46 config MAINBOARD_DIR
47         string
48         default amd/inagua
49
50 config APIC_ID_OFFSET
51         hex
52         default 0x0
53
54 config MAINBOARD_PART_NUMBER
55         string
56         default "Inagua"
57
58 config HW_MEM_HOLE_SIZEK
59         hex
60         default 0x200000
61
62 config MAX_CPUS
63         int
64         default 2
65
66 config MAX_PHYSICAL_CPUS
67         int
68         default 1
69
70 config HW_MEM_HOLE_SIZE_AUTO_INC
71         bool
72         default n
73
74 config MEM_TRAIN_SEQ
75         int
76         default 2
77
78 config IRQ_SLOT_COUNT
79         int
80         default 11
81
82 config RAMTOP
83         hex
84         default 0x1000000
85
86 config HEAP_SIZE
87         hex
88         default 0xc0000
89
90 config STACK_SIZE
91         hex
92         default 0x10000
93
94 config ACPI_SSDTX_NUM
95         int
96         default 0
97
98 config RAMBASE
99         hex
100         default 0x200000
101
102 config SIO_PORT
103         hex
104         default 0x2e
105
106 config DRIVERS_PS2_KEYBOARD
107         bool
108         default y
109
110 config WARNINGS_ARE_ERRORS
111         bool
112         default n
113
114 config ONBOARD_VGA_IS_PRIMARY
115         bool
116         default y
117
118 config VGA_BIOS
119         bool
120         default n
121
122 #config VGA_BIOS_FILE
123 #        string "VGA BIOS path and filename"
124 #        depends on VGA_BIOS
125 #        default "rom/video/OntarioGenericVBios.bin"
126
127 config VGA_BIOS_ID
128         string "VGA device PCI IDs"
129         depends on VGA_BIOS
130         default "1002,9802"
131
132 config SB800_AHCI_ROM
133         bool
134         default n
135
136 endif # BOARD_AMD_INAGUA
137