blob: e0787bef40fe18422224be10727fb56a65679455 [file] [log] [blame]
zbao323a9232012-07-19 16:39:01 +08001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2012 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
Paul Menzela46a7122013-02-23 18:37:27 +010017# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
zbao323a9232012-07-19 16:39:01 +080018#
19
20if BOARD_AMD_PARMER
21
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select ARCH_X86
25 select CPU_AMD_AGESA_FAMILY15_TN
zbao323a9232012-07-19 16:39:01 +080026 select NORTHBRIDGE_AMD_AGESA_FAMILY15_TN
27 select SOUTHBRIDGE_AMD_AGESA_HUDSON
zbao323a9232012-07-19 16:39:01 +080028 select HAVE_OPTION_TABLE
29 select HAVE_PIRQ_TABLE
30 select HAVE_MP_TABLE
zbao323a9232012-07-19 16:39:01 +080031 select HAVE_ACPI_RESUME
zbao323a9232012-07-19 16:39:01 +080032 select SB_HT_CHAIN_UNITID_OFFSET_ONLY
33 select LIFT_BSP_APIC_ID
34 select SERIAL_CPU_INIT
35 select AMDMCT
36 select HAVE_ACPI_TABLES
37 select BOARD_ROMSIZE_KB_4096
zbao323a9232012-07-19 16:39:01 +080038 select GFXUMA
39 select UDELAY_LAPIC
40
41config MAINBOARD_DIR
42 string
43 default amd/parmer
44
45config APIC_ID_OFFSET
46 hex
47 default 0x0
48
49config MAINBOARD_PART_NUMBER
50 string
51 default "Parmer"
52
53config HW_MEM_HOLE_SIZEK
54 hex
55 default 0x200000
56
57config MAX_CPUS
58 int
59 default 4
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 MEM_TRAIN_SEQ
70 int
71 default 2
72
73config IRQ_SLOT_COUNT
74 int
75 default 11
76
77config RAMTOP
78 hex
79 default 0x1000000
80
81config HEAP_SIZE
82 hex
83 default 0xc0000
84
zbao323a9232012-07-19 16:39:01 +080085config RAMBASE
86 hex
87 default 0x200000
88
89config ONBOARD_VGA_IS_PRIMARY
90 bool
91 default y
92
93config VGA_BIOS_ID
94 string
95 default "1002,9900"
96
Martin Rotheac220f2013-01-16 09:07:30 -070097config HUDSON_LEGACY_FREE
98 bool
99 default y
100
zbao323a9232012-07-19 16:39:01 +0800101endif # BOARD_AMD_PARMER