Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/i386/pci Add quirk for Connectix Virtual PC 5 (for ...
details: https://anonhg.NetBSD.org/src/rev/e1f9c8e42bbb
branches: trunk
changeset: 535095:e1f9c8e42bbb
user: minoura <minoura%NetBSD.org@localhost>
date: Sat Aug 10 03:37:40 2002 +0000
description:
Add quirk for Connectix Virtual PC 5 (for Windows at least) emulated
PCI bridge (440BX).
Note that there's still a problem that emulated 21140 cannot be driven
by if_tlp. Workaround is to use if_de.
diffstat:
sys/arch/i386/pci/pci_machdep.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (27 lines):
diff -r 6dc53d048ff3 -r e1f9c8e42bbb sys/arch/i386/pci/pci_machdep.c
--- a/sys/arch/i386/pci/pci_machdep.c Sat Aug 10 03:08:15 2002 +0000
+++ b/sys/arch/i386/pci/pci_machdep.c Sat Aug 10 03:37:40 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_machdep.c,v 1.45 2002/06/25 21:18:32 drochner Exp $ */
+/* $NetBSD: pci_machdep.c,v 1.46 2002/08/10 03:37:40 minoura Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -80,7 +80,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.45 2002/06/25 21:18:32 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.46 2002/08/10 03:37:40 minoura Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -142,6 +142,8 @@
_qe(0, 0, 0, PCI_VENDOR_COMPAQ, PCI_PRODUCT_COMPAQ_TRIFLEX4),
/* Triton needed for Connectix Virtual PC */
_qe(0, 0, 0, PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82437FX),
+ /* Connectix Virtual PC 5 has a 440BX */
+ _qe(0, 0, 0, PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82443BX_NOAGP),
{0, 0xffffffff} /* patchable */
};
#undef _m1tag
Home |
Main Index |
Thread Index |
Old Index