1 | /**************************************************************************
|
---|
2 | Etherboot - BOOTP/TFTP Bootstrap Program
|
---|
3 | Prism2 NIC driver for Etherboot
|
---|
4 | Wrapper for prism2_plx
|
---|
5 |
|
---|
6 | Written by Michael Brown of Fen Systems Ltd
|
---|
7 | $Id: prism2_plx.c 1 1970-01-01 00:00:00Z vboxsync $
|
---|
8 | ***************************************************************************/
|
---|
9 |
|
---|
10 | /*
|
---|
11 | * This program is free software; you can redistribute it and/or
|
---|
12 | * modify it under the terms of the GNU General Public License as
|
---|
13 | * published by the Free Software Foundation; either version 2, or (at
|
---|
14 | * your option) any later version.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #define WLAN_HOSTIF WLAN_PLX
|
---|
18 | #include "prism2.c"
|
---|
19 |
|
---|
20 | static struct pci_id prism2_plx_nics[] = {
|
---|
21 | PCI_ROM(0x1385, 0x4100, "ma301", "Netgear MA301"),
|
---|
22 | PCI_ROM(0x10b7, 0x7770, "3c-airconnect", "3Com AirConnect"),
|
---|
23 | PCI_ROM(0x111a, 0x1023, "ss1023", "Siemens SpeedStream SS1023"),
|
---|
24 | PCI_ROM(0x15e8, 0x0130, "correga", "Correga"),
|
---|
25 | PCI_ROM(0x1638, 0x1100, "smc2602w", "SMC EZConnect SMC2602W"), /* or Eumitcom PCI WL11000, Addtron AWA-100 */
|
---|
26 | PCI_ROM(0x16ab, 0x1100, "gl24110p", "Global Sun Tech GL24110P"),
|
---|
27 | PCI_ROM(0x16ab, 0x1101, "16ab-1101", "Unknown"),
|
---|
28 | PCI_ROM(0x16ab, 0x1102, "wdt11", "Linksys WDT11"),
|
---|
29 | PCI_ROM(0x16ec, 0x3685, "usr2415", "USR 2415"),
|
---|
30 | PCI_ROM(0xec80, 0xec00, "f5d6000", "Belkin F5D6000"),
|
---|
31 | PCI_ROM(0x126c, 0x8030, "emobility", "Nortel emobility"),
|
---|
32 | };
|
---|
33 |
|
---|
34 | static struct pci_driver prism2_plx_driver __pci_driver = {
|
---|
35 | .type = NIC_DRIVER,
|
---|
36 | .name = "Prism2_PLX",
|
---|
37 | .probe = prism2_plx_probe,
|
---|
38 | .ids = prism2_plx_nics,
|
---|
39 | .id_count = sizeof(prism2_plx_nics)/sizeof(prism2_plx_nics[0]),
|
---|
40 | .class = 0,
|
---|
41 | };
|
---|
42 |
|
---|