1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/pci.h>
14#include <linux/ssb/ssb.h>
15
16#include "ssb_private.h"
17
18
19static const struct pci_device_id b43_pci_bridge_tbl[] = {
20 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
21 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
22 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
23 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
24 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
25 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
26 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
27 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) },
28 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) },
29 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) },
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 { 0, },
36};
37MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
38
39static struct pci_driver b43_pci_bridge_driver = {
40 .name = "b43-pci-bridge",
41 .id_table = b43_pci_bridge_tbl,
42};
43
44
45int __init b43_pci_ssb_bridge_init(void)
46{
47 return ssb_pcihost_register(&b43_pci_bridge_driver);
48}
49
50void __exit b43_pci_ssb_bridge_exit(void)
51{
52 ssb_pcihost_unregister(&b43_pci_bridge_driver);
53}
54