You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prism2_plx.c 1.5KB

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