diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-06-05 09:45:15 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-06-05 09:45:15 +0000 |
commit | 49e010146a7fe56465e8001af0a6701af58d4095 (patch) | |
tree | 0b8bfac1f11f1d2327ede0c9d275a3d73226885b /sys/arch/amd64 | |
parent | 6e180a12fce059bc462015511a8e8b43d68dea4c (diff) |
Allow pchb(4) to find additional non-coherent HyperTransport links
with 10h and 11h families of AMD CPU's.
ok kettenis@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/pci/pchb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/amd64/pci/pchb.c b/sys/arch/amd64/pci/pchb.c index e8713c6a44d..f0d1fc96e38 100644 --- a/sys/arch/amd64/pci/pchb.c +++ b/sys/arch/amd64/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.21 2008/04/28 06:17:47 brad Exp $ */ +/* $OpenBSD: pchb.c,v 1.22 2008/06/05 09:45:14 brad Exp $ */ /* $NetBSD: pchb.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -156,6 +156,8 @@ pchbattach(struct device *parent, struct device *self, void *aux) printf("\n"); switch (PCI_PRODUCT(pa->pa_id)) { case PCI_PRODUCT_AMD_AMD64_0F_HT: + case PCI_PRODUCT_AMD_AMD64_10_HT: + case PCI_PRODUCT_AMD_AMD64_11_HT: for (i = 0; i < AMD64HT_NUM_LDT; i++) pchb_amd64ht_attach(self, pa, i); break; |