blob: 266aa1648a020e0ce36df5d63795fd4706869ef4 [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 *
Michael Büscheb032b92011-07-04 20:50:05 +02008 * Copyright 2007 Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04009 *
10 * Licensed under the GNU/GPL. See COPYING for details.
11 */
12
13#include <linux/pci.h>
Paul Gortmaker20a112d2011-07-17 16:03:40 -040014#include <linux/module.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040015#include <linux/ssb/ssb.h>
16
Michael Buesch6b9bafe2007-09-19 18:55:12 +020017#include "ssb_private.h"
18
Michael Buesch61e115a2007-09-18 15:12:50 -040019
20static const struct pci_device_id b43_pci_bridge_tbl[] = {
21 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4301) },
Michael Bueschdd970e42009-03-24 10:36:48 +010022 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4306) },
Michael Buesch61e115a2007-09-18 15:12:50 -040023 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4307) },
24 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4311) },
25 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4312) },
Michael Buesch6b1c7c62008-12-25 00:39:28 +010026 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4315) },
Michael Buesch61e115a2007-09-18 15:12:50 -040027 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4318) },
Daniel Klaffenbach1d8638d2010-11-19 21:25:21 -060028 { PCI_DEVICE(PCI_VENDOR_ID_BCM_GVC, 0x4318) },
Michael Buesch61e115a2007-09-18 15:12:50 -040029 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4319) },
30 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4320) },
31 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4321) },
Hauke Mehrtens8ec57222012-05-10 00:22:46 +020032 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4322) },
33 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 43222) },
Michael Buesch61e115a2007-09-18 15:12:50 -040034 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4324) },
35 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4325) },
Larry Fingerc272ef42007-11-09 16:56:25 -060036 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4328) },
Michael Bueschca08a962008-01-03 19:03:09 +010037 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4329) },
Johannes Berg92d61282008-12-24 12:44:09 +010038 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432b) },
Jonas Gorski7f0d9f42012-06-10 22:11:56 +020039 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x432c) },
Michael Buesch61e115a2007-09-18 15:12:50 -040040 { 0, },
41};
42MODULE_DEVICE_TABLE(pci, b43_pci_bridge_tbl);
43
44static struct pci_driver b43_pci_bridge_driver = {
45 .name = "b43-pci-bridge",
46 .id_table = b43_pci_bridge_tbl,
47};
48
49
50int __init b43_pci_ssb_bridge_init(void)
51{
52 return ssb_pcihost_register(&b43_pci_bridge_driver);
53}
54
55void __exit b43_pci_ssb_bridge_exit(void)
56{
57 ssb_pcihost_unregister(&b43_pci_bridge_driver);
58}