blob: c0531114c0bae47cc4c84b5e9162318505f3f83d [file] [log] [blame]
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2007-2009 coresystems GmbH
5## Copyright (C) 2014 Sage Electronic Engineering, LLC
6##
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##
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030020config NORTHBRIDGE_AMD_PI_00730F01
Bruce Griffith27ed80b2014-08-15 11:46:25 -060021 bool
22 select MMCONF_SUPPORT
23
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030024if NORTHBRIDGE_AMD_PI_00730F01
Bruce Griffith27ed80b2014-08-15 11:46:25 -060025
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
36 default 0xF8000000
37
38config MMCONF_BUS_NUMBER
39 int
40 default 64
41
42config VGA_BIOS_ID
43 string
44 default "1002,9850"
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
49config VGA_BIOS_FILE
50 string
51 default "3rdparty/northbridge/amd/00730F01/VBIOS.bin"
52
53endif