blob: 4e71895e46c2962d7bd31b94e3133bd1c6d67fcd [file] [log] [blame]
Bruce Griffith006364e2014-10-22 03:33:49 -06001##
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_PI_00630F01
20 bool
21 select MMCONF_SUPPORT
22 select PER_DEVICE_ACPI_TABLES
23
24if NORTHBRIDGE_AMD_PI_00630F01
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
36 default 0xF8000000
37
38config MMCONF_BUS_NUMBER
39 int
40 default 64
41
42config VGA_BIOS_ID
43 string
44 default "1002,1304"
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/00630F01/VBIOS.bin"
52
53endif