blob: 2d27d6d6d08ebe40fdf4b02e4c4a66b601307e11 [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) },
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) },
Larry Fingerc272ef42007-11-09 16:56:25 -060030 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
Michael Bueschca08a962008-01-03 19:03:09 +010031 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
Michael Buesch61e115a2007-09-18 15:12:50 -040032 { 0, },
33};
34MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
35
36static struct pci_driver b43_pci_bridge_driver = {
37 .name = "b43-pci-bridge",
38 .id_table = b43_pci_bridge_tbl,
39};
40
41
42int __init b43_pci_ssb_bridge_init(void)
43{
44 return ssb_pcihost_register(&b43_pci_bridge_driver);
45}
46
47void __exit b43_pci_ssb_bridge_exit(void)
48{
49 ssb_pcihost_unregister(&b43_pci_bridge_driver);
50}