]>
Commit | Line | Data |
---|---|---|
61e115a5 MB |
1 | /* |
2 | * Broadcom 43xx PCI-SSB bridge module | |
3 | * | |
4 | * This technically is a seperate 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 <[email protected]> | |
9 | * | |
10 | * Licensed under the GNU/GPL. See COPYING for details. | |
11 | */ | |
12 | ||
13 | #include <linux/pci.h> | |
14 | #include <linux/ssb/ssb.h> | |
15 | ||
6b9bafec MB |
16 | #include "ssb_private.h" |
17 | ||
61e115a5 MB |
18 | |
19 | static const struct pci_device_id b43_pci_bridge_tbl[] = { | |
20 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) }, | |
21 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) }, | |
22 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) }, | |
23 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) }, | |
24 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 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, 0x4324) }, | |
29 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) }, | |
30 | { 0, }, | |
31 | }; | |
32 | MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl); | |
33 | ||
34 | static struct pci_driver b43_pci_bridge_driver = { | |
35 | .name = "b43-pci-bridge", | |
36 | .id_table = b43_pci_bridge_tbl, | |
37 | }; | |
38 | ||
39 | ||
40 | int __init b43_pci_ssb_bridge_init(void) | |
41 | { | |
42 | return ssb_pcihost_register(&b43_pci_bridge_driver); | |
43 | } | |
44 | ||
45 | void __exit b43_pci_ssb_bridge_exit(void) | |
46 | { | |
47 | ssb_pcihost_unregister(&b43_pci_bridge_driver); | |
48 | } |