blob: e483fe5a748a6bab821c8000842b27196786c7b3 [file] [log] [blame]
efdesign987c0c64e2011-06-20 19:56:06 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2007-2009 coresystems GmbH
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
efdesign987c0c64e2011-06-20 19:56:06 -070018##
19config NORTHBRIDGE_AMD_AGESA_FAMILY12
20 bool
21 select HAVE_DEBUG_RAM_SETUP
22 select HAVE_DEBUG_SMBUS
23 select HYPERTRANSPORT_PLUGIN_SUPPORT
24 select MMCONF_SUPPORT
efdesign987c0c64e2011-06-20 19:56:06 -070025
Kyösti Mälkki59d0d152013-06-11 16:30:48 +030026if NORTHBRIDGE_AMD_AGESA_FAMILY12
27
efdesign987c0c64e2011-06-20 19:56:06 -070028config HT3_SUPPORT
29 bool
30 default y
efdesign987c0c64e2011-06-20 19:56:06 -070031
32config HW_MEM_HOLE_SIZEK
33 hex
34 default 0x100000
efdesign987c0c64e2011-06-20 19:56:06 -070035
36config HW_MEM_HOLE_SIZE_AUTO_INC
37 bool
38 default n
efdesign987c0c64e2011-06-20 19:56:06 -070039
40config MMCONF_BASE_ADDRESS
41 hex
42 default 0xe0000000
efdesign987c0c64e2011-06-20 19:56:06 -070043
44config MMCONF_BUS_NUMBER
45 int
46 default 256
efdesign987c0c64e2011-06-20 19:56:06 -070047
48config DIMM_DDR3
49 bool
50 default n
efdesign987c0c64e2011-06-20 19:56:06 -070051
52config DIMM_REGISTERED
53 bool
54 default n
efdesign987c0c64e2011-06-20 19:56:06 -070055
56if !DIMM_REGISTERED
57 config DIMM_SUPPORT
58 hex
59 default 0x0004
60endif
61
62if DIMM_DDR3
63 if DIMM_REGISTERED
64 config DIMM_SUPPORT
65 hex
66 default 0x0005
67 endif
68endif
69
Kyösti Mälkki59d0d152013-06-11 16:30:48 +030070endif # NORTHBRIDGE_AMD_AGESA_FAMILY_12