forked from Freescale/linux-fslc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ssb: pick PCMCIA host code support from b43 driver
ssb bus can be found on various "host" devices like PCI/PCMCIA/SDIO. Every ssb bus contains cores AKA devices. The main idea is to have ssb driver scan/initialize bus and register ready-to-use cores. This way ssb drivers can operate on a single core mostly ignoring underlaying details. For some reason PCMCIA support was split between ssb and b43. We got PCMCIA host device probing in b43, then bus scanning in ssb and then wireless core probing back in b43. The truth is it's very unlikely we will ever see PCMCIA ssb device with no 802.11 core but I still don't see any advantage of the current architecture. With proposed change we get the same functionality with a simpler architecture, less Kconfig symbols, one killed EXPORT and hopefully cleaner b43. Since b43 supports both: ssb & bcma I prefer to keep ssb specific code in ssb driver. This mostly moves code from b43's pcmcia.c to bridge_pcmcia_80211.c. We already use similar solution with b43_pci_bridge.c. I didn't use "b43" in name of this new file as in theory any driver can operate on wireless core. Signed-off-by: Rafał Miłecki <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
- Loading branch information
Showing
9 changed files
with
146 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* | ||
* Broadcom 43xx PCMCIA-SSB bridge module | ||
* | ||
* Copyright (c) 2007 Michael Buesch <[email protected]> | ||
* | ||
* Licensed under the GNU/GPL. See COPYING for details. | ||
*/ | ||
|
||
#include <linux/ssb/ssb.h> | ||
#include <linux/slab.h> | ||
#include <linux/module.h> | ||
|
||
#include <pcmcia/cistpl.h> | ||
#include <pcmcia/ciscode.h> | ||
#include <pcmcia/ds.h> | ||
#include <pcmcia/cisreg.h> | ||
|
||
#include "ssb_private.h" | ||
|
||
static const struct pcmcia_device_id ssb_host_pcmcia_tbl[] = { | ||
PCMCIA_DEVICE_MANF_CARD(0x2D0, 0x448), | ||
PCMCIA_DEVICE_MANF_CARD(0x2D0, 0x476), | ||
PCMCIA_DEVICE_NULL, | ||
}; | ||
|
||
MODULE_DEVICE_TABLE(pcmcia, ssb_host_pcmcia_tbl); | ||
|
||
static int ssb_host_pcmcia_probe(struct pcmcia_device *dev) | ||
{ | ||
struct ssb_bus *ssb; | ||
int err = -ENOMEM; | ||
int res = 0; | ||
|
||
ssb = kzalloc(sizeof(*ssb), GFP_KERNEL); | ||
if (!ssb) | ||
goto out_error; | ||
|
||
err = -ENODEV; | ||
|
||
dev->config_flags |= CONF_ENABLE_IRQ; | ||
|
||
dev->resource[2]->flags |= WIN_ENABLE | WIN_DATA_WIDTH_16 | | ||
WIN_USE_WAIT; | ||
dev->resource[2]->start = 0; | ||
dev->resource[2]->end = SSB_CORE_SIZE; | ||
res = pcmcia_request_window(dev, dev->resource[2], 250); | ||
if (res != 0) | ||
goto err_kfree_ssb; | ||
|
||
res = pcmcia_map_mem_page(dev, dev->resource[2], 0); | ||
if (res != 0) | ||
goto err_disable; | ||
|
||
if (!dev->irq) | ||
goto err_disable; | ||
|
||
res = pcmcia_enable_device(dev); | ||
if (res != 0) | ||
goto err_disable; | ||
|
||
err = ssb_bus_pcmciabus_register(ssb, dev, dev->resource[2]->start); | ||
if (err) | ||
goto err_disable; | ||
dev->priv = ssb; | ||
|
||
return 0; | ||
|
||
err_disable: | ||
pcmcia_disable_device(dev); | ||
err_kfree_ssb: | ||
kfree(ssb); | ||
out_error: | ||
ssb_err("Initialization failed (%d, %d)\n", res, err); | ||
return err; | ||
} | ||
|
||
static void ssb_host_pcmcia_remove(struct pcmcia_device *dev) | ||
{ | ||
struct ssb_bus *ssb = dev->priv; | ||
|
||
ssb_bus_unregister(ssb); | ||
pcmcia_disable_device(dev); | ||
kfree(ssb); | ||
dev->priv = NULL; | ||
} | ||
|
||
#ifdef CONFIG_PM | ||
static int ssb_host_pcmcia_suspend(struct pcmcia_device *dev) | ||
{ | ||
struct ssb_bus *ssb = dev->priv; | ||
|
||
return ssb_bus_suspend(ssb); | ||
} | ||
|
||
static int ssb_host_pcmcia_resume(struct pcmcia_device *dev) | ||
{ | ||
struct ssb_bus *ssb = dev->priv; | ||
|
||
return ssb_bus_resume(ssb); | ||
} | ||
#else /* CONFIG_PM */ | ||
# define ssb_host_pcmcia_suspend NULL | ||
# define ssb_host_pcmcia_resume NULL | ||
#endif /* CONFIG_PM */ | ||
|
||
static struct pcmcia_driver ssb_host_pcmcia_driver = { | ||
.owner = THIS_MODULE, | ||
.name = "ssb-pcmcia", | ||
.id_table = ssb_host_pcmcia_tbl, | ||
.probe = ssb_host_pcmcia_probe, | ||
.remove = ssb_host_pcmcia_remove, | ||
.suspend = ssb_host_pcmcia_suspend, | ||
.resume = ssb_host_pcmcia_resume, | ||
}; | ||
|
||
/* | ||
* These are not module init/exit functions! | ||
* The module_pcmcia_driver() helper cannot be used here. | ||
*/ | ||
int ssb_host_pcmcia_init(void) | ||
{ | ||
return pcmcia_register_driver(&ssb_host_pcmcia_driver); | ||
} | ||
|
||
void ssb_host_pcmcia_exit(void) | ||
{ | ||
pcmcia_unregister_driver(&ssb_host_pcmcia_driver); | ||
} |
Oops, something went wrong.