b43_pci_bridge.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 <m@bues.ch>
  9. *
  10. * Licensed under the GNU/GPL. See COPYING for details.
  11. */
  12. #include "ssb_private.h"
  13. #include <linux/pci.h>
  14. #include <linux/module.h>
  15. #include <linux/ssb/ssb.h>
  16. static const struct pci_device_id b43_pci_bridge_tbl[] = {
  17. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
  18. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
  19. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
  20. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
  21. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
  22. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
  23. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
  24. { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
  25. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) },
  26. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) },
  27. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) },
  28. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4322) },
  29. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 43222) },
  30. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
  31. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) },
  32. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
  33. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
  34. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) },
  35. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432c) },
  36. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4350) },
  37. { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4351) },
  38. { 0, },
  39. };
  40. MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
  41. static struct pci_driver b43_pci_bridge_driver = {
  42. .name = "b43-pci-bridge",
  43. .id_table = b43_pci_bridge_tbl,
  44. };
  45. int __init b43_pci_ssb_bridge_init(void)
  46. {
  47. return ssb_pcihost_register(&b43_pci_bridge_driver);
  48. }
  49. void __exit b43_pci_ssb_bridge_exit(void)
  50. {
  51. ssb_pcihost_unregister(&b43_pci_bridge_driver);
  52. }