blob: febd8dd1ef38738524f48933b699c1f930465ad1 [file] [log] [blame]
Edward O'Callaghan4726a872014-01-25 07:40:39 +11001#
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
20if BOARD_AMD_PERSIMMON
21
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select ARCH_X86
25 select CPU_AMD_AGESA_FAMILY14
26 select NORTHBRIDGE_AMD_AGESA_FAMILY14
27 select SOUTHBRIDGE_AMD_CIMX_SB800
28 select SUPERIO_FINTEK_F81865F
29 select HAVE_OPTION_TABLE
30 select HAVE_PIRQ_TABLE
31 select HAVE_MP_TABLE
32 select HAVE_ACPI_RESUME
33 select SB_HT_CHAIN_UNITID_OFFSET_ONLY
34 select LIFT_BSP_APIC_ID
35 select SERIAL_CPU_INIT
36 select AMDMCT
37 select HAVE_ACPI_TABLES
38 select BOARD_ROMSIZE_KB_4096
39 select GFXUMA
40
41config MAINBOARD_DIR
42 string
43 default amd/persimmon
44
45config APIC_ID_OFFSET
46 hex
47 default 0x0
48
49config MAINBOARD_PART_NUMBER
50 string
51 default "Persimmon"
52
53config HW_MEM_HOLE_SIZEK
54 hex
55 default 0x200000
56
57config MAX_CPUS
58 int
59 default 2
60
61config MAX_PHYSICAL_CPUS
62 int
63 default 1
64
65config HW_MEM_HOLE_SIZE_AUTO_INC
66 bool
67 default n
68
69config IRQ_SLOT_COUNT
70 int
71 default 11
72
73config RAMTOP
74 hex
75 default 0x1000000
76
77config HEAP_SIZE
78 hex
79 default 0xc0000
80
81config RAMBASE
82 hex
83 default 0x200000
84
85config SIO_PORT
86 hex
87 default 0x4e
88
89config ONBOARD_VGA_IS_PRIMARY
90 bool
91 default y
92
93config VGA_BIOS
94 bool
95 default n
96
97#config VGA_BIOS_FILE
98# string "VGA BIOS path and filename"
99# depends on VGA_BIOS
100# default "rom/video/OntarioGenericVbios.bin"
101
102config VGA_BIOS_ID
103 string
104 default "1002,9802"
105
106config SB800_AHCI_ROM
107 bool
108 default n
109
110config DRIVERS_PS2_KEYBOARD
111 bool
112 default n
113
114endif # BOARD_AMD_PERSIMMON