Update my e-mail address
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / ssb / b43_pci_bridge.c
CommitLineData
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 <m@bues.ch>
61e115a5
MB
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
19static const struct pci_device_id b43_pci_bridge_tbl[] = {
20 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
dd970e43 21 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
61e115a5
MB
22 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
23 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
24 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
6b1c7c67 25 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
61e115a5 26 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
1d8638d4 27 { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
61e115a5
MB
28 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) },
29 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) },
30 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) },
31 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
32 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) },
c272ef44 33 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
ca08a965 34 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
92d6128e 35 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) },
61e115a5
MB
36 { 0, },
37};
38MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
39
40static struct pci_driver b43_pci_bridge_driver = {
41 .name = "b43-pci-bridge",
42 .id_table = b43_pci_bridge_tbl,
43};
44
45
46int __init b43_pci_ssb_bridge_init(void)
47{
48 return ssb_pcihost_register(&b43_pci_bridge_driver);
49}
50
51void __exit b43_pci_ssb_bridge_exit(void)
52{
53 ssb_pcihost_unregister(&b43_pci_bridge_driver);
54}