blob: fc825dd1d1bef0c3edb547aff4668751f575d33c [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
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +020023 select PER_DEVICE_ACPI_TABLES
Bruce Griffith27ed80b2014-08-15 11:46:25 -060024
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030025if NORTHBRIDGE_AMD_PI_00730F01
Bruce Griffith27ed80b2014-08-15 11:46:25 -060026
27config HW_MEM_HOLE_SIZEK
28 hex
29 default 0x100000
30
31config HW_MEM_HOLE_SIZE_AUTO_INC
32 bool
33 default n
34
35config MMCONF_BASE_ADDRESS
36 hex
37 default 0xF8000000
38
39config MMCONF_BUS_NUMBER
40 int
41 default 64
42
43config VGA_BIOS_ID
44 string
45 default "1002,9850"
46 help
47 The default VGA BIOS PCI vendor/device ID should be set to the
48 result of the map_oprom_vendev() function in northbridge.c.
49
50config VGA_BIOS_FILE
51 string
Patrick Georgi26e24cc2015-05-05 22:27:25 +020052 default "3rdparty/blobs/northbridge/amd/00730F01/VBIOS.bin"
Bruce Griffith27ed80b2014-08-15 11:46:25 -060053
54endif