Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 1 | ## |
| 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 | |
| 20 | config 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älkki | 3bf3854 | 2014-12-18 22:22:04 +0200 | [diff] [blame] | 29 | select LATE_CBMEM_INIT |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 30 | |
Dave Frodin | 59158b2 | 2013-07-01 14:19:48 -0600 | [diff] [blame] | 31 | if NORTHBRIDGE_VIA_VX900 |
| 32 | |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 33 | config MAX_PIRQ_LINKS |
| 34 | int |
| 35 | default 8 |
| 36 | |
| 37 | config MMCONF_BASE_ADDRESS |
| 38 | hex |
| 39 | default 0xe0000000 |
| 40 | |
| 41 | config VGA_BIOS_ID |
| 42 | string |
| 43 | default "1106,7122" |
Dave Frodin | 59158b2 | 2013-07-01 14:19:48 -0600 | [diff] [blame] | 44 | |
Aaron Durbin | 3953e39 | 2015-09-03 00:41:29 -0500 | [diff] [blame] | 45 | config CHIPSET_BOOTBLOCK_INCLUDE |
| 46 | string |
| 47 | default "northbridge/via/vx900/romstrap.inc" |
| 48 | |
Dave Frodin | 59158b2 | 2013-07-01 14:19:48 -0600 | [diff] [blame] | 49 | endif |