Add xhcbios and ahcibios rom handling
[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 AMD_CIMX_SB800
51         bool
52         default y
53
54 config MAINBOARD_DIR
55         string
56         default amd/persimmon
57
58 config APIC_ID_OFFSET
59         hex
60         default 0x0
61
62 config MAINBOARD_PART_NUMBER
63         string
64         default "Persimmon"
65
66 config HW_MEM_HOLE_SIZEK
67         hex
68         default 0x200000
69
70 config MAX_CPUS
71         int
72         default 2
73
74 config MAX_PHYSICAL_CPUS
75         int
76         default 1
77
78 config HW_MEM_HOLE_SIZE_AUTO_INC
79         bool
80         default n
81
82 config MEM_TRAIN_SEQ
83         int
84         default 2
85
86 config IRQ_SLOT_COUNT
87         int
88         default 11
89
90 config RAMTOP
91         hex
92         default 0x1000000
93
94 config HEAP_SIZE
95         hex
96         default 0xc0000
97
98 config STACK_SIZE
99         hex
100         default 0x10000
101
102 config ACPI_SSDTX_NUM
103         int
104         default 0
105
106 config RAMBASE
107         hex
108         default 0x200000
109
110 config SIO_PORT
111         hex
112         default 0x4e
113
114 config ONBOARD_VGA_IS_PRIMARY
115         bool
116         default y
117
118 config VGA_BIOS_ID
119         string
120         default "1002,9802"
121
122 config AHCI_BIOS
123         bool
124         default n
125
126 #config AHCI_BIOS_FILE
127 #       string "AHCI ROM path and filename"
128 #       depends on AHCI_BIOS
129 #       default "rom/ahci/sb900.bin"
130
131 config AHCI_BIOS_ID
132         string "AHCI device PCI IDs"
133         depends on AHCI_BIOS
134         default "1002,4391"
135
136 config DRIVERS_PS2_KEYBOARD
137         bool
138         default n
139
140 config WARNINGS_ARE_ERRORS
141         bool
142         default n
143
144 endif # BOARD_AMD_PERSIMMON
145