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 | ## |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 16 | |
| 17 | config NORTHBRIDGE_VIA_VX900 |
| 18 | bool |
| 19 | select IOAPIC |
| 20 | select DRIVERS_GENERIC_IOAPIC |
| 21 | select HAVE_DEBUG_RAM_SETUP |
| 22 | select HAVE_DEBUG_SMBUS |
Nico Huber | 68dd00d | 2018-10-06 18:01:30 +0200 | [diff] [blame] | 23 | select HAVE_CF9_RESET |
Kyösti Mälkki | 7904e72 | 2018-06-03 14:55:10 +0300 | [diff] [blame] | 24 | select NO_RELOCATABLE_RAMSTAGE |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 25 | |
Dave Frodin | 59158b2 | 2013-07-01 14:19:48 -0600 | [diff] [blame] | 26 | if NORTHBRIDGE_VIA_VX900 |
| 27 | |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 28 | config MAX_PIRQ_LINKS |
| 29 | int |
| 30 | default 8 |
| 31 | |
| 32 | config MMCONF_BASE_ADDRESS |
| 33 | hex |
| 34 | default 0xe0000000 |
| 35 | |
Kyösti Mälkki | e25b5ef | 2016-12-02 08:56:05 +0200 | [diff] [blame] | 36 | config MMCONF_BUS_NUMBER |
| 37 | int |
| 38 | default 256 |
| 39 | |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 40 | config VGA_BIOS_ID |
| 41 | string |
| 42 | default "1106,7122" |
Dave Frodin | 59158b2 | 2013-07-01 14:19:48 -0600 | [diff] [blame] | 43 | |
Lubomir Rintel | 71053a9 | 2017-10-31 10:02:27 +0100 | [diff] [blame] | 44 | config BOOTBLOCK_NORTHBRIDGE_INIT |
| 45 | string |
| 46 | default "northbridge/via/vx900/bootblock.c" |
| 47 | |
Dave Frodin | 59158b2 | 2013-07-01 14:19:48 -0600 | [diff] [blame] | 48 | endif |