Add the PCI IDs for the Macronix 98727 and 98732 parts. These are
3.3volt PCI/cardbus chipsets similar to the 98715 (and they have 512-bit hash tables). Also update the man page to mention the 98727/98732 and the SOHOware SFA110A Rev B4 card with the 98715AEC-C chip.
This commit is contained in:
parent
9a9e278fc0
commit
d6d5b813b3
@ -50,7 +50,7 @@ embedded controllers based on the following chipsets:
|
||||
.It
|
||||
DEC/Intel 21143
|
||||
.It
|
||||
Macronix 98713, 98713A, 98715, 98715A and 98725
|
||||
Macronix 98713, 98713A, 98715, 98715A, 98725, 98727 and 98732
|
||||
.It
|
||||
Davicom DM9100, DM9102 and DM9102A
|
||||
.It
|
||||
@ -113,7 +113,9 @@ Kingston KNE100TX (21143, MII)
|
||||
.It
|
||||
D-Link DFE-570TX (21143, MII, quad port)
|
||||
.It
|
||||
NDC SOHOware SFA110 (98713A)
|
||||
NDC SOHOware SFA110A (98713A)
|
||||
.It
|
||||
NDC SOHOware SFA110A Rev B4 (98715AEC-C)
|
||||
.It
|
||||
SVEC PN102-TX (98713)
|
||||
.It
|
||||
|
@ -36,7 +36,7 @@
|
||||
* DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143
|
||||
* series chips and several workalikes including the following:
|
||||
*
|
||||
* Macronix 98713/98715/98725 PMAC (www.macronix.com)
|
||||
* Macronix 98713/98715/98725/98727/98732 PMAC (www.macronix.com)
|
||||
* Macronix/Lite-On 82c115 PNIC II (www.macronix.com)
|
||||
* Lite-On 82c168/82c169 PNIC (www.litecom.com)
|
||||
* ASIX Electronics AX88140A (www.asix.com.tw)
|
||||
@ -187,6 +187,8 @@ static struct dc_type dc_devs[] = {
|
||||
"Macronix 98715AEC-C 10/100BaseTX" },
|
||||
{ DC_VENDORID_MX, DC_DEVICEID_987x5,
|
||||
"Macronix 98725 10/100BaseTX" },
|
||||
{ DC_VENDORID_MX, DC_DEVICEID_98727,
|
||||
"Macronix 98727/98732 10/100BaseTX" },
|
||||
{ DC_VENDORID_LO, DC_DEVICEID_82C115,
|
||||
"LC82C115 PNIC II 10/100BaseTX" },
|
||||
{ DC_VENDORID_LO, DC_DEVICEID_82C168,
|
||||
@ -1579,6 +1581,11 @@ static int dc_attach(dev)
|
||||
sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
|
||||
sc->dc_flags |= DC_REDUCED_MII_POLL|DC_21143_NWAY;
|
||||
break;
|
||||
case DC_DEVICEID_98727:
|
||||
sc->dc_type = DC_TYPE_987x5;
|
||||
sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
|
||||
sc->dc_flags |= DC_REDUCED_MII_POLL|DC_21143_NWAY;
|
||||
break;
|
||||
case DC_DEVICEID_82C115:
|
||||
sc->dc_type = DC_TYPE_PNICII;
|
||||
sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR|DC_128BIT_HASH;
|
||||
|
@ -711,6 +711,8 @@ struct dc_softc {
|
||||
*/
|
||||
#define DC_DEVICEID_98713 0x0512
|
||||
#define DC_DEVICEID_987x5 0x0531
|
||||
#define DC_DEVICEID_98727 0x0532
|
||||
#define DC_DEVICEID_98732 0x0532
|
||||
|
||||
/* Macronix PCI revision codes. */
|
||||
#define DC_REVISION_98713 0x00
|
||||
|
@ -36,7 +36,7 @@
|
||||
* DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143
|
||||
* series chips and several workalikes including the following:
|
||||
*
|
||||
* Macronix 98713/98715/98725 PMAC (www.macronix.com)
|
||||
* Macronix 98713/98715/98725/98727/98732 PMAC (www.macronix.com)
|
||||
* Macronix/Lite-On 82c115 PNIC II (www.macronix.com)
|
||||
* Lite-On 82c168/82c169 PNIC (www.litecom.com)
|
||||
* ASIX Electronics AX88140A (www.asix.com.tw)
|
||||
@ -187,6 +187,8 @@ static struct dc_type dc_devs[] = {
|
||||
"Macronix 98715AEC-C 10/100BaseTX" },
|
||||
{ DC_VENDORID_MX, DC_DEVICEID_987x5,
|
||||
"Macronix 98725 10/100BaseTX" },
|
||||
{ DC_VENDORID_MX, DC_DEVICEID_98727,
|
||||
"Macronix 98727/98732 10/100BaseTX" },
|
||||
{ DC_VENDORID_LO, DC_DEVICEID_82C115,
|
||||
"LC82C115 PNIC II 10/100BaseTX" },
|
||||
{ DC_VENDORID_LO, DC_DEVICEID_82C168,
|
||||
@ -1579,6 +1581,11 @@ static int dc_attach(dev)
|
||||
sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
|
||||
sc->dc_flags |= DC_REDUCED_MII_POLL|DC_21143_NWAY;
|
||||
break;
|
||||
case DC_DEVICEID_98727:
|
||||
sc->dc_type = DC_TYPE_987x5;
|
||||
sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR;
|
||||
sc->dc_flags |= DC_REDUCED_MII_POLL|DC_21143_NWAY;
|
||||
break;
|
||||
case DC_DEVICEID_82C115:
|
||||
sc->dc_type = DC_TYPE_PNICII;
|
||||
sc->dc_flags |= DC_TX_POLL|DC_TX_USE_TX_INTR|DC_128BIT_HASH;
|
||||
|
@ -711,6 +711,8 @@ struct dc_softc {
|
||||
*/
|
||||
#define DC_DEVICEID_98713 0x0512
|
||||
#define DC_DEVICEID_987x5 0x0531
|
||||
#define DC_DEVICEID_98727 0x0532
|
||||
#define DC_DEVICEID_98732 0x0532
|
||||
|
||||
/* Macronix PCI revision codes. */
|
||||
#define DC_REVISION_98713 0x00
|
||||
|
Loading…
x
Reference in New Issue
Block a user