blob: 335c2652f9f42c53f8bfbe239436f3a4eb142d71 [file] [log] [blame]
Alexandru Gagniuc88a30232013-06-04 23:37:56 -05001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2011 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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, either version 2 of the License, or
9## (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
18##
19
20config NORTHBRIDGE_VIA_VX900
21 bool
22 select IOAPIC
23 select DRIVERS_GENERIC_IOAPIC
24 select HAVE_DEBUG_RAM_SETUP
25 select HAVE_DEBUG_SMBUS
26 select HAVE_HARD_RESET
27 select MMCONF_SUPPORT
28 select MMCONF_SUPPORT_DEFAULT
Kyösti Mälkki3bf38542014-12-18 22:22:04 +020029 select LATE_CBMEM_INIT
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050030
Dave Frodin59158b22013-07-01 14:19:48 -060031if NORTHBRIDGE_VIA_VX900
32
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050033config MAX_PIRQ_LINKS
34 int
35 default 8
36
37config MMCONF_BASE_ADDRESS
38 hex
39 default 0xe0000000
40
41config VGA_BIOS_ID
42 string
43 default "1106,7122"
Dave Frodin59158b22013-07-01 14:19:48 -060044
Aaron Durbin3953e392015-09-03 00:41:29 -050045config CHIPSET_BOOTBLOCK_INCLUDE
46 string
47 default "northbridge/via/vx900/romstrap.inc"
48
Dave Frodin59158b22013-07-01 14:19:48 -060049endif