diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-05-16 14:55:42 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-16 19:32:19 -0400 |
commit | e00cf3b9eb7839b952e434a75bff6b99e47337ac (patch) | |
tree | ef583ab8ac09bf703026650d4bc7777e6a3864d3 /drivers/ssb | |
parent | 1a8218e96271790a07dd7065a2ef173e0f67e328 (diff) | |
parent | 3b8ab88acaceb505aa06ef3bbf3a73b92470ae78 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts:
drivers/net/wireless/iwlwifi/iwl-agn-tx.c
net/mac80211/sta_info.h
Diffstat (limited to 'drivers/ssb')
-rw-r--r-- | drivers/ssb/driver_pcicore.c | 26 | ||||
-rw-r--r-- | drivers/ssb/main.c | 31 | ||||
-rw-r--r-- | drivers/ssb/scan.c | 5 |
3 files changed, 35 insertions, 27 deletions
diff --git a/drivers/ssb/driver_pcicore.c b/drivers/ssb/driver_pcicore.c index 8fde1220bc89..82feb348c8bb 100644 --- a/drivers/ssb/driver_pcicore.c +++ b/drivers/ssb/driver_pcicore.c | |||
@@ -21,8 +21,6 @@ static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address); | |||
21 | static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device, | 21 | static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device, |
22 | u8 address, u16 data); | 22 | u8 address, u16 data); |
23 | 23 | ||
24 | static void ssb_commit_settings(struct ssb_bus *bus); | ||
25 | |||
26 | static inline | 24 | static inline |
27 | u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset) | 25 | u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset) |
28 | { | 26 | { |
@@ -659,30 +657,6 @@ static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device, | |||
659 | pcicore_write32(pc, mdio_control, 0); | 657 | pcicore_write32(pc, mdio_control, 0); |
660 | } | 658 | } |
661 | 659 | ||
662 | static void ssb_broadcast_value(struct ssb_device *dev, | ||
663 | u32 address, u32 data) | ||
664 | { | ||
665 | /* This is used for both, PCI and ChipCommon core, so be careful. */ | ||
666 | BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR); | ||
667 | BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA); | ||
668 | |||
669 | ssb_write32(dev, SSB_PCICORE_BCAST_ADDR, address); | ||
670 | ssb_read32(dev, SSB_PCICORE_BCAST_ADDR); /* flush */ | ||
671 | ssb_write32(dev, SSB_PCICORE_BCAST_DATA, data); | ||
672 | ssb_read32(dev, SSB_PCICORE_BCAST_DATA); /* flush */ | ||
673 | } | ||
674 | |||
675 | static void ssb_commit_settings(struct ssb_bus *bus) | ||
676 | { | ||
677 | struct ssb_device *dev; | ||
678 | |||
679 | dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev; | ||
680 | if (WARN_ON(!dev)) | ||
681 | return; | ||
682 | /* This forces an update of the cached registers. */ | ||
683 | ssb_broadcast_value(dev, 0xFD8, 0); | ||
684 | } | ||
685 | |||
686 | int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc, | 660 | int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc, |
687 | struct ssb_device *dev) | 661 | struct ssb_device *dev) |
688 | { | 662 | { |
diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c index ad3da93a428c..f8a13f863217 100644 --- a/drivers/ssb/main.c +++ b/drivers/ssb/main.c | |||
@@ -1329,6 +1329,37 @@ error: | |||
1329 | } | 1329 | } |
1330 | EXPORT_SYMBOL(ssb_bus_powerup); | 1330 | EXPORT_SYMBOL(ssb_bus_powerup); |
1331 | 1331 | ||
1332 | static void ssb_broadcast_value(struct ssb_device *dev, | ||
1333 | u32 address, u32 data) | ||
1334 | { | ||
1335 | #ifdef CONFIG_SSB_DRIVER_PCICORE | ||
1336 | /* This is used for both, PCI and ChipCommon core, so be careful. */ | ||
1337 | BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR); | ||
1338 | BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA); | ||
1339 | #endif | ||
1340 | |||
1341 | ssb_write32(dev, SSB_CHIPCO_BCAST_ADDR, address); | ||
1342 | ssb_read32(dev, SSB_CHIPCO_BCAST_ADDR); /* flush */ | ||
1343 | ssb_write32(dev, SSB_CHIPCO_BCAST_DATA, data); | ||
1344 | ssb_read32(dev, SSB_CHIPCO_BCAST_DATA); /* flush */ | ||
1345 | } | ||
1346 | |||
1347 | void ssb_commit_settings(struct ssb_bus *bus) | ||
1348 | { | ||
1349 | struct ssb_device *dev; | ||
1350 | |||
1351 | #ifdef CONFIG_SSB_DRIVER_PCICORE | ||
1352 | dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev; | ||
1353 | #else | ||
1354 | dev = bus->chipco.dev; | ||
1355 | #endif | ||
1356 | if (WARN_ON(!dev)) | ||
1357 | return; | ||
1358 | /* This forces an update of the cached registers. */ | ||
1359 | ssb_broadcast_value(dev, 0xFD8, 0); | ||
1360 | } | ||
1361 | EXPORT_SYMBOL(ssb_commit_settings); | ||
1362 | |||
1332 | u32 ssb_admatch_base(u32 adm) | 1363 | u32 ssb_admatch_base(u32 adm) |
1333 | { | 1364 | { |
1334 | u32 base = 0; | 1365 | u32 base = 0; |
diff --git a/drivers/ssb/scan.c b/drivers/ssb/scan.c index 7dca719fbcfb..45e5babd3961 100644 --- a/drivers/ssb/scan.c +++ b/drivers/ssb/scan.c | |||
@@ -258,7 +258,10 @@ static int we_support_multiple_80211_cores(struct ssb_bus *bus) | |||
258 | #ifdef CONFIG_SSB_PCIHOST | 258 | #ifdef CONFIG_SSB_PCIHOST |
259 | if (bus->bustype == SSB_BUSTYPE_PCI) { | 259 | if (bus->bustype == SSB_BUSTYPE_PCI) { |
260 | if (bus->host_pci->vendor == PCI_VENDOR_ID_BROADCOM && | 260 | if (bus->host_pci->vendor == PCI_VENDOR_ID_BROADCOM && |
261 | bus->host_pci->device == 0x4324) | 261 | ((bus->host_pci->device == 0x4313) || |
262 | (bus->host_pci->device == 0x431A) || | ||
263 | (bus->host_pci->device == 0x4321) || | ||
264 | (bus->host_pci->device == 0x4324))) | ||
262 | return 1; | 265 | return 1; |
263 | } | 266 | } |
264 | #endif /* CONFIG_SSB_PCIHOST */ | 267 | #endif /* CONFIG_SSB_PCIHOST */ |