blob: d2f5a8c1b20273b915a9ec05f367c945c9a7dce6 [file] [log] [blame]
zbao2c08f6a2012-07-02 15:32:58 +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
zbao2c08f6a2012-07-02 15:32:58 +080018#
19
20config CPU_AMD_AGESA_FAMILY15_TN
21 bool
22 select PCI_IO_CFG_EXT
Aaron Durbin57686f82013-03-20 15:50:59 -050023 select X86_AMD_FIXED_MTRRS
zbao2c08f6a2012-07-02 15:32:58 +080024
25config CPU_ADDR_BITS
26 int
Zheng Bao105da502013-01-05 12:17:46 +080027 default 48
zbao2c08f6a2012-07-02 15:32:58 +080028 depends on CPU_AMD_AGESA_FAMILY15_TN
29
30config CPU_SOCKET_TYPE
31 hex
32 default 0x10
33 depends on CPU_AMD_AGESA_FAMILY15_TN
34
35# DDR2 and REG
36config DIMM_SUPPORT
37 hex
38 default 0x0104
39 depends on CPU_AMD_AGESA_FAMILY15_TN
40
41config EXT_RT_TBL_SUPPORT
42 bool
43 default n
44 depends on CPU_AMD_AGESA_FAMILY15_TN
45
46config EXT_CONF_SUPPORT
47 bool
48 default n
49 depends on CPU_AMD_AGESA_FAMILY15_TN
50
51config CBB
52 hex
53 default 0x0
54 depends on CPU_AMD_AGESA_FAMILY15_TN
55
56config CDB
57 hex
58 default 0x18
59 depends on CPU_AMD_AGESA_FAMILY15_TN
60
61config XIP_ROM_BASE
62 hex
63 default 0xfff80000
64 depends on CPU_AMD_AGESA_FAMILY15_TN
65
66config XIP_ROM_SIZE
67 hex
68 default 0x100000
69 depends on CPU_AMD_AGESA_FAMILY15_TN
70
71config HAVE_INIT_TIMER
72 bool
73 default y
74 depends on CPU_AMD_AGESA_FAMILY15_TN
75
76config HIGH_SCRATCH_MEMORY_SIZE
77 hex
78 # Assume the maximum size of stack as (0xA0000 - 0x30000 + 0x1000)
79 default 0xA1000
80 depends on CPU_AMD_AGESA_FAMILY15_TN