Add support for the Netgear GA302T 10/100/1000 adapter. Given that

it's a 32-bit card, it's quite nice for $75.

MFC after:	3 days
This commit is contained in:
John Polstra 2002-01-27 01:00:16 +00:00
parent b8a3639565
commit 586d7c2ef0
5 changed files with 16 additions and 6 deletions

View File

@ -53,6 +53,8 @@ following:
.It
Dell PowerEdge 2550 integrated BCM5700 NIC (10/100/1000baseTX)
.It
Netgear GA302T (10/100/1000baseTX)
.It
SysKonnect SK-9D21 (10/100/1000baseTX)
.It
SysKonnect SK-9D41 (1000baseSX)

View File

@ -1718,9 +1718,9 @@ device miibus
# awi: Support for IEEE 802.11 PC Card devices using the AMD Am79C930 and
# Harris (Intersil) Chipset with PCnetMobile firmware by AMD.
# bge: Support for gigabit ethernet adapters based on the Broadcom
# BCM570x familiy of controllers, including the 3Com 3c996-T,
# the SysKonnect SK-9D21 and SK-9D41, and the embedded gigE NICs
# on Dell PowerEdge 2550 servers.
# BCM570x family of controllers, including the 3Com 3c996-T,
# the Netgear GA302T, the SysKonnect SK-9D21 and SK-9D41, and
# the embedded gigE NICs on Dell PowerEdge 2550 servers.
# cnw: Xircom CNW/Netware Airsurfer PC Card adapter
# cm: Arcnet SMC COM90c26 / SMC COM90c56
# (and SMC COM90c66 in '56 compatibility mode) adapters.

View File

@ -143,6 +143,8 @@ static struct bge_type bge_devs[] = {
"Broadcom BCM5701 Gigabit Ethernet" },
{ SK_VENDORID, SK_DEVICEID_ALTIMA,
"SysKonnect Gigabit Ethernet" },
{ ALTIMA_VENDORID, ALTIMA_DEVICE_AC1000,
"Altima AC1000 Gigabit Ethernet" },
{ 0, 0, NULL }
};

View File

@ -1799,6 +1799,12 @@ struct bge_status_block {
#define SK_SUBSYSID_9D21 0x4421
#define SK_SUBSYSID_9D41 0x4441
/*
* Altima PCI vendor/device ID.
*/
#define ALTIMA_VENDORID 0x173b
#define ALTIMA_DEVICE_AC1000 0x03e8
/*
* Offset of MAC address inside EEPROM.
*/

View File

@ -1718,9 +1718,9 @@ device miibus
# awi: Support for IEEE 802.11 PC Card devices using the AMD Am79C930 and
# Harris (Intersil) Chipset with PCnetMobile firmware by AMD.
# bge: Support for gigabit ethernet adapters based on the Broadcom
# BCM570x familiy of controllers, including the 3Com 3c996-T,
# the SysKonnect SK-9D21 and SK-9D41, and the embedded gigE NICs
# on Dell PowerEdge 2550 servers.
# BCM570x family of controllers, including the 3Com 3c996-T,
# the Netgear GA302T, the SysKonnect SK-9D21 and SK-9D41, and
# the embedded gigE NICs on Dell PowerEdge 2550 servers.
# cnw: Xircom CNW/Netware Airsurfer PC Card adapter
# cm: Arcnet SMC COM90c26 / SMC COM90c56
# (and SMC COM90c66 in '56 compatibility mode) adapters.