72b7947d60878452fa67af56f07ee8d705614db0
[coreboot.git] / src / mainboard / amd / persimmon / 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_PERSIMMON
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_FINTEK_F81865F
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_4096
43   select TINY_BOOTBLOCK
44         select GFXUMA
45
46 config AMD_AGESA
47         bool
48         default y
49
50 config MAINBOARD_DIR
51         string
52         default amd/persimmon
53
54 config APIC_ID_OFFSET
55         hex
56         default 0x0
57
58 config MAINBOARD_PART_NUMBER
59         string
60         default "Persimmon"
61
62 config HW_MEM_HOLE_SIZEK
63         hex
64         default 0x200000
65
66 config MAX_CPUS
67         int
68         default 2
69
70 config MAX_PHYSICAL_CPUS
71         int
72         default 1
73
74 config HW_MEM_HOLE_SIZE_AUTO_INC
75         bool
76         default n
77
78 config MEM_TRAIN_SEQ
79         int
80         default 2
81
82 config IRQ_SLOT_COUNT
83         int
84         default 11
85
86 config RAMTOP
87         hex
88         default 0x1000000
89
90 config HEAP_SIZE
91         hex
92         default 0xc0000
93
94 config STACK_SIZE
95         hex
96         default 0x10000
97
98 config ACPI_SSDTX_NUM
99         int
100         default 0
101
102 config RAMBASE
103         hex
104         default 0x200000
105
106 config SIO_PORT
107         hex
108         default 0x4e
109
110 config ONBOARD_VGA_IS_PRIMARY
111         bool
112         default y
113
114 config VGA_BIOS
115        bool
116        default n
117
118 #config VGA_BIOS_FILE
119 #        string "VGA BIOS path and filename"
120 #        depends on VGA_BIOS
121 #        default "rom/video/OntarioGenericVbios.bin"
122
123 config VGA_BIOS_ID
124         string
125         default "1002,9802"
126
127
128 config SB800_AHCI_ROM
129         bool
130         default n
131
132 config DRIVERS_PS2_KEYBOARD
133         bool
134         default n
135
136 config WARNINGS_ARE_ERRORS
137         bool
138         default n
139
140 endif # BOARD_AMD_PERSIMMON
141