[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
eepro100 detection success! (was: Re: eepro100 detection fail?)
From: |
arief# |
Subject: |
eepro100 detection success! (was: Re: eepro100 detection fail?) |
Date: |
Thu, 29 Jul 2004 12:54:57 +0700 |
Dear all,
I finally succeeded getting my eepro100 working and detected.
Special thanks for Marco and Sergio for advices.
The step I've taken was take a look pci_tbl structure from eepro100.c in
linux-2.4.23 sources, and write these down in gnumach eepro100.c linux
(2.2?) driver:
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1031,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1032,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1033,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1034,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1035,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1036,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1037,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1038,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1039,
0
}, { "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x103A,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x103B,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x103C,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x103D,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x103E,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1050,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1059,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1227,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x1228,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x2459,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x245D,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x5200,
0
},
{ "Intel PCI EtherExpress Pro100 82801CAM",
PCI_VENDOR_ID_INTEL, 0x5201,
0
},
As you can see the names are all alike, I don't know what is the exact
name of each device ID. So I just use the name of the device in my
system.
Should I create a patch for this?
Best Regards
-arief