diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-16 06:08:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-16 06:08:06 +0000 |
commit | 5d74452fba4fe87e5a4fcf4052ed86b7a549f3c1 (patch) | |
tree | b608d95a7641c58ccb656f74bb08a1024e81f999 | |
parent | d0d5c7cc49128875a228de10dad85b0dad64e2df (diff) |
new xl variant (Asus P4R800-VM motherboards)
-rw-r--r-- | share/man/man4/xl.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/if_xl_pci.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/pcidevs | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/share/man/man4/xl.4 b/share/man/man4/xl.4 index bbdb638cbb9..b6c0edc922b 100644 --- a/share/man/man4/xl.4 +++ b/share/man/man4/xl.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: xl.4,v 1.30 2003/12/23 14:04:18 mickey Exp $ +.\" $OpenBSD: xl.4,v 1.31 2004/07/16 06:08:05 deraadt Exp $ .\" .\" Copyright (c) 1997, 1998 .\" Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -55,7 +55,7 @@ and bus master EtherLink XL chips. This includes, among others, the following models: .Pp -.Bl -tag -width 3CXXXX -offset indent -compact +.Bl -tag -width 3CXXXXX -offset indent -compact .It 3C555 EtherLink XL MiniPCI .It 3C556 @@ -82,6 +82,8 @@ Fast EtherLink Server NIC OfficeConnect Fast Ethernet NIC .It 9201 NVIDIA nForce2 integrated 3Com 9201 (nForce2-ST, nForce2-GT) +.It 920BEMB +3c920B-EMB-WNM Integrated Fast Ethernet. .El .Pp It also supports embedded 3C905-TX and 3C905B-TX Ethernet hardware found diff --git a/sys/dev/pci/if_xl_pci.c b/sys/dev/pci/if_xl_pci.c index 404f052cd5b..1934913bca0 100644 --- a/sys/dev/pci/if_xl_pci.c +++ b/sys/dev/pci/if_xl_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xl_pci.c,v 1.19 2004/05/30 23:49:39 brad Exp $ */ +/* $OpenBSD: if_xl_pci.c,v 1.20 2004/07/16 06:08:05 deraadt Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -119,6 +119,7 @@ const struct pci_matchid xl_pci_devices[] = { { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C556 }, { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C556B }, { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C9201 }, + { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C920BEMBW }, }; int @@ -165,6 +166,7 @@ xl_pci_attach(parent, self, aux) sc->xl_flags |= XL_FLAG_INVERT_LED_PWR|XL_FLAG_INVERT_MII_PWR; break; case PCI_PRODUCT_3COM_3C9201: + case PCI_PRODUCT_3COM_3C920BEMBW: sc->xl_flags |= XL_FLAG_PHYOK; break; case TC_DEVICEID_BOOMERANG_10_100BT: diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index e9df0397951..f4d19a8b995 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ -$OpenBSD: pcidevs,v 1.746 2004/07/14 18:16:23 mickey Exp $ +$OpenBSD: pcidevs,v 1.747 2004/07/16 06:08:05 deraadt Exp $ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -309,6 +309,7 @@ product 3COM 3C905BCOMBO 0x9058 3c905B 10/100Mbps-Combo product 3COM 3C905BFX 0x905a 3c905B 100Base-FX product 3COM 3C905CTX 0x9200 3c905C 100Base-TX product 3COM 3C9201 0x9201 3c9201 100Base-TX +product 3COM 3C920BEMBW 0x9202 3c920B-EMB-WNM product 3COM 3CSHO100BTX 0x9300 3cSOHO 100B-TX product 3COM 3C980TX 0x9800 3c980 100Base-TX product 3COM 3C980CTX 0x9805 3c980C 100Base-TX |