diff options
author | arch import user (historical) <svn@openbios.org> | 2005-07-06 17:15:30 +0000 |
---|---|---|
committer | arch import user (historical) <svn@openbios.org> | 2005-07-06 17:15:30 +0000 |
commit | ef03afa405b049a172146aab93cfb81fb21f3945 (patch) | |
tree | 3b59033be66edd60c2cc6c66d6875153dc052a72 /src/devices | |
parent | 014c3e185fe8e1455e56efeb496715a67ce292bb (diff) |
Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-34
Creator: Yinghai Lu <yhlu@tyan.com>
AMD D0/E0 Opteron new mem mapping support, AMD E Opteron mem hole support,AMD K8 Four Ranks DIMM support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1950 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/hypertransport.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/hypertransport.c b/src/devices/hypertransport.c index 7bc1c215b8..80c621ed79 100644 --- a/src/devices/hypertransport.c +++ b/src/devices/hypertransport.c @@ -10,6 +10,10 @@ #define OPT_HT_LINK 0 +#if OPT_HT_LINK == 1 +#include "../northbridge/amd/amdk8/cpu_rev.c" +#endif + static device_t ht_scan_get_devs(device_t *old_devices) { device_t first, last; @@ -47,6 +51,7 @@ static unsigned ht_read_freq_cap(device_t dev, unsigned pos) } else /* AMD K8 Unsupported 1Ghz? */ if ((dev->vendor == PCI_VENDOR_ID_AMD) && (dev->device == 0x1100)) { + if (is_cpu_pre_e0()) freq_cap &= ~(1 << HT_FREQ_1000Mhz); } return freq_cap; |