]>
Commit | Line | Data |
---|---|---|
61e115a5 MB |
1 | /* |
2 | * Broadcom 43xx PCI-SSB bridge module | |
3 | * | |
b8c268d1 | 4 | * This technically is a separate PCI driver module, but |
61e115a5 MB |
5 | * because of its small size we include it in the SSB core |
6 | * instead of creating a standalone module. | |
7 | * | |
eb032b98 | 8 | * Copyright 2007 Michael Buesch <[email protected]> |
61e115a5 MB |
9 | * |
10 | * Licensed under the GNU/GPL. See COPYING for details. | |
11 | */ | |
12 | ||
13 | #include <linux/pci.h> | |
20a112d0 | 14 | #include <linux/module.h> |
61e115a5 MB |
15 | #include <linux/ssb/ssb.h> |
16 | ||
6b9bafec MB |
17 | #include "ssb_private.h" |
18 | ||
61e115a5 MB |
19 | |
20 | static const struct pci_device_id b43_pci_bridge_tbl[] = { | |
21 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) }, | |
dd970e43 | 22 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) }, |
61e115a5 MB |
23 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) }, |
24 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) }, | |
25 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) }, | |
6b1c7c67 | 26 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) }, |
61e115a5 | 27 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) }, |
1d8638d4 | 28 | { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) }, |
61e115a5 MB |
29 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) }, |
30 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) }, | |
31 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) }, | |
8ec57228 HM |
32 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4322) }, |
33 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 43222) }, | |
61e115a5 MB |
34 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) }, |
35 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) }, | |
c272ef44 | 36 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) }, |
ca08a965 | 37 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) }, |
92d6128e | 38 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) }, |
7f0d9f43 | 39 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432c) }, |
2c60035a | 40 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4350) }, |
9837baa9 | 41 | { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4351) }, |
61e115a5 MB |
42 | { 0, }, |
43 | }; | |
44 | MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl); | |
45 | ||
46 | static struct pci_driver b43_pci_bridge_driver = { | |
47 | .name = "b43-pci-bridge", | |
48 | .id_table = b43_pci_bridge_tbl, | |
49 | }; | |
50 | ||
51 | ||
52 | int __init b43_pci_ssb_bridge_init(void) | |
53 | { | |
54 | return ssb_pcihost_register(&b43_pci_bridge_driver); | |
55 | } | |
56 | ||
57 | void __exit b43_pci_ssb_bridge_exit(void) | |
58 | { | |
59 | ssb_pcihost_unregister(&b43_pci_bridge_driver); | |
60 | } |