Support for 82801CAM PRO/100 VE
Contributed by Jan Wieck
This commit is contained in:
parent
5da4a0bd56
commit
8a5484202c
5 changed files with 12 additions and 1 deletions
|
@ -97,7 +97,8 @@ card()
|
|||
cards()
|
||||
{
|
||||
card 0 "No Ethernet card (no networking)"
|
||||
card 1 "Intel Pro/100" "8086:103D" "8086:1064" "8086:1229" "8086:2449"
|
||||
card 1 "Intel Pro/100" "8086:103D" "8086:1064" "8086:1229" "8086:2449" \
|
||||
"8086:1031" "8086:1032"
|
||||
card 2 "3Com 501 or 3Com 509 based card"
|
||||
card 3 "Realtek 8139 based card (also emulated by KVM)" \
|
||||
"10EC:8139" "02AC:1012" "1065:8139" "1113:1211" "1186:1300" \
|
||||
|
|
|
@ -53,6 +53,8 @@ PRIVATE struct pcitab pcitab_fxp[]=
|
|||
{ 0x8086, 0x2449, 0 }, /* Intel 82801BA/BAM/CA/CAM */
|
||||
{ 0x8086, 0x103d, 0 }, /* Intel 82801DB */
|
||||
{ 0x8086, 0x1064, 0 }, /* Intel 82562 */
|
||||
{ 0x8086, 0x1031, 0 }, /* Intel 82801CAM VE */
|
||||
{ 0x8086, 0x1032, 0 }, /* Intel 82801CAM VE */
|
||||
|
||||
{ 0x0000, 0x0000, 0 }
|
||||
};
|
||||
|
@ -600,6 +602,9 @@ static int fxp_probe(fxp_t *fp, int skip)
|
|||
case FXP_REV_82551_2: str= "82551(2)"; /* 0x10 */
|
||||
fp->fxp_type= FT_82559;
|
||||
break;
|
||||
case FXP_REV_82801CAM: str= "82801CAM"; /* 0x42 */
|
||||
fp->fxp_type= FT_82801;
|
||||
break;
|
||||
case FXP_REV_82801DB: str= "82801DB"; /* 0x81 */
|
||||
fp->fxp_type= FT_82801;
|
||||
break;
|
||||
|
|
|
@ -27,6 +27,7 @@ Created: Nov 2004 by Philip Homburg <philip@f-mnx.phicoh.com>
|
|||
#define FXP_REV_82550_3 0x0E
|
||||
#define FXP_REV_82551_1 0x0F
|
||||
#define FXP_REV_82551_2 0x10
|
||||
#define FXP_REV_82801CAM 0x42
|
||||
#define FXP_REV_82801DB 0x81
|
||||
|
||||
/* Control/Status Registers (CSR). The first 8 bytes are called
|
||||
|
|
|
@ -134,6 +134,8 @@ struct pci_device pci_device_table[]=
|
|||
{ 0x8086, 0x100E, "Intel PRO/1000 MT Desktop Adapter" },
|
||||
{ 0x8086, 0x1029, "Intel EtherExpressPro100 ID1029" },
|
||||
{ 0x8086, 0x1030, "Intel Corporation 82559 InBusiness 10/100" },
|
||||
{ 0x8086, 0x1031, "Intel Corporation 82801CAM PRO/100 VE" },
|
||||
{ 0x8086, 0x1032, "Intel Corporation 82801CAM PRO/100 VE" },
|
||||
{ 0x8086, 0x103d, "Intel Corporation 82801DB PRO/100 VE (MOB)" },
|
||||
{ 0x8086, 0x1064, "Intel Corporation 82562 PRO/100 VE" },
|
||||
{ 0x8086, 0x107C, "Intel PRO/1000 GT Desktop Adapter" },
|
||||
|
|
|
@ -320,6 +320,8 @@ service fxp
|
|||
IRQCTL # 19
|
||||
DEVIO # 21
|
||||
;
|
||||
pci device 8086/1031;
|
||||
pci device 8086/1032;
|
||||
pci device 8086/103d;
|
||||
pci device 8086/1064;
|
||||
pci device 8086/1229;
|
||||
|
|
Loading…
Reference in a new issue