blob: 259195b6bfba48c7b2009b85e7fcb0b7a2baf21a [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
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##
19config NORTHBRIDGE_AMD_AGESA_FAMILY16_KB
20 bool
21 select MMCONF_SUPPORT
22
23if NORTHBRIDGE_AMD_AGESA_FAMILY16_KB
24
25config HW_MEM_HOLE_SIZEK
26 hex
27 default 0x100000
28
29config HW_MEM_HOLE_SIZE_AUTO_INC
30 bool
31 default n
32
33config MMCONF_BASE_ADDRESS
34 hex
35 default 0xA0000000
36
37config MMCONF_BUS_NUMBER
38 int
39 default 256
40
Bruce Griffith76db07e2013-07-07 02:06:53 -060041config VGA_BIOS_ID
42 string
43 default "1002,9830"
44 help
45 The default VGA BIOS PCI vendor/device ID should be set to the
46 result of the map_oprom_vendev() function in northbridge.c.
47
Siyuan Wang3e32cc02013-07-09 17:16:20 +080048endif