b43_pci_bridge.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Broadcom 43xx PCI-SSB bridge module
  3. *
  4. * This technically is a separate PCI driver module, but
  5. * because of its small size we include it in the SSB core
  6. * instead of creating a standalone module.
  7. *
  8. * Copyright 2007 Michael Buesch <mb@bu3sch.de>
  9. *
  10. * Licensed under the GNU/GPL. See COPYING for details.
  11. */
  12. #include <linux/pci.h>
  13. #include <linux/ssb/ssb.h>
  14. #include "ssb_private.h"
  15. static const struct pci_device_id b43_pci_bridge_tbl[] = {
  16. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
  17. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
  18. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
  19. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
  20. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
  21. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
  22. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
  23. { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
  24. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) },
  25. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) },
  26. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) },
  27. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
  28. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) },
  29. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
  30. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
  31. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) },
  32. { 0, },
  33. };
  34. MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
  35. static struct pci_driver b43_pci_bridge_driver = {
  36. .name = "b43-pci-bridge",
  37. .id_table = b43_pci_bridge_tbl,
  38. };
  39. int __init b43_pci_ssb_bridge_init(void)
  40. {
  41. return ssb_pcihost_register(&b43_pci_bridge_driver);
  42. }
  43. void __exit b43_pci_ssb_bridge_exit(void)
  44. {
  45. ssb_pcihost_unregister(&b43_pci_bridge_driver);
  46. }