blob: 8f3e766e6f84ce1cdd456ef85dafcdf7b2c85dc5 [file] [log] [blame]
Frank Vibrans420faca2011-02-14 18:42:12 +00001#
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
efdesign9805a89ab2011-06-20 17:38:49 -070020config CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000021 bool
22 select PCI_IO_CFG_EXT
23
24config CPU_ADDR_BITS
25 int
26 default 36
efdesign9805a89ab2011-06-20 17:38:49 -070027 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000028
29config CPU_SOCKET_TYPE
30 hex
31 default 0x10
efdesign9805a89ab2011-06-20 17:38:49 -070032 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000033
34# DDR2 and REG
35config DIMM_SUPPORT
36 hex
37 default 0x0104
efdesign9805a89ab2011-06-20 17:38:49 -070038 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000039
40config EXT_RT_TBL_SUPPORT
41 bool
42 default n
efdesign9805a89ab2011-06-20 17:38:49 -070043 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000044
45config EXT_CONF_SUPPORT
46 bool
47 default n
efdesign9805a89ab2011-06-20 17:38:49 -070048 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000049
50config CBB
51 hex
52 default 0x0
efdesign9805a89ab2011-06-20 17:38:49 -070053 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000054
55config CDB
56 hex
57 default 0x18
efdesign9805a89ab2011-06-20 17:38:49 -070058 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000059
60config XIP_ROM_BASE
61 hex
62 default 0xfff80000
efdesign9805a89ab2011-06-20 17:38:49 -070063 depends on CPU_AMD_AGESA_FAMILY14
Frank Vibrans420faca2011-02-14 18:42:12 +000064
65config XIP_ROM_SIZE
66 hex
67 default 0x80000
efdesign9805a89ab2011-06-20 17:38:49 -070068 depends on CPU_AMD_AGESA_FAMILY14
69
Frank Vibrans420faca2011-02-14 18:42:12 +000070config HAVE_INIT_TIMER
71 bool
72 default y
efdesign9805a89ab2011-06-20 17:38:49 -070073 depends on CPU_AMD_AGESA_FAMILY14
74