blob: 744d3f6e470987c773f72a733dbbc146fa358706 [file] [log] [blame]
Michael Buesch61e115a2007-09-18 15:12:50 -04001/*
2 * Broadcom 43xx PCI-SSB bridge module
3 *
Joe Perchesb8c268d2008-02-03 17:30:25 +02004 * This technically is a separate PCI driver module, but
Michael Buesch61e115a2007-09-18 15:12:50 -04005 * 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 <mb@bu3sch.de>
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
Michael Buesch6b9bafe2007-09-19 18:55:12 +020016#include "ssb_private.h"
17
Michael Buesch61e115a2007-09-18 15:12:50 -040018
19static const struct pci_device_id b43_pci_bridge_tbl[] = {
20 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
Michael Bueschdd970e42009-03-24 10:36:48 +010021 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
Michael Buesch61e115a2007-09-18 15:12:50 -040022 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
23 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
24 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
Michael Buesch6b1c7c62008-12-25 00:39:28 +010025 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
Michael Buesch61e115a2007-09-18 15:12:50 -040026 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
Daniel Klaffenbach1d8638d2010-11-19 21:25:21 -060027 { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
Michael Buesch61e115a2007-09-18 15:12:50 -040028 { 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) },
Larry Fingerc272ef42007-11-09 16:56:25 -060033 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
Michael Bueschca08a962008-01-03 19:03:09 +010034 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
Johannes Berg92d61282008-12-24 12:44:09 +010035 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) },
Michael Buesch61e115a2007-09-18 15:12:50 -040036 { 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}