blob: 466414c8a39f420719bd1d166bdd79d10a333e9b [file] [log] [blame]
Siyuan Wang3e32cc02013-07-09 17:16:20 +08001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2007-2009 coresystems GmbH
Dave Frodinbccd4082014-06-06 06:52:28 -06005## Copyright (C) 2014 Sage Electronic Engineering, LLC
Siyuan Wang3e32cc02013-07-09 17:16:20 +08006##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20config NORTHBRIDGE_AMD_AGESA_FAMILY16_KB
21 bool
22 select MMCONF_SUPPORT
23
24if NORTHBRIDGE_AMD_AGESA_FAMILY16_KB
25
26config HW_MEM_HOLE_SIZEK
27 hex
28 default 0x100000
29
30config HW_MEM_HOLE_SIZE_AUTO_INC
31 bool
32 default n
33
34config MMCONF_BASE_ADDRESS
35 hex
Dave Frodinbccd4082014-06-06 06:52:28 -060036 default 0xF8000000
Siyuan Wang3e32cc02013-07-09 17:16:20 +080037
38config MMCONF_BUS_NUMBER
39 int
Dave Frodinbccd4082014-06-06 06:52:28 -060040 default 64
Siyuan Wang3e32cc02013-07-09 17:16:20 +080041
Bruce Griffith76db07e2013-07-07 02:06:53 -060042config VGA_BIOS_ID
43 string
44 default "1002,9830"
45 help
46 The default VGA BIOS PCI vendor/device ID should be set to the
47 result of the map_oprom_vendev() function in northbridge.c.
48
Siyuan Wang3e32cc02013-07-09 17:16:20 +080049endif