diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2005-09-05 15:49:54 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-09-05 15:49:54 -0400 |
commit | 0ce7625f3c1e3f921f6b83f7e944e00031a39dfa (patch) | |
tree | bf04a478adbad082fe4689cecd02c2cd8c1f6031 /arch/arm/mach-pxa/corgi.c | |
parent | 027da01d734db0ca9dd1a084339dab07ab576935 (diff) |
[ARM] 2882/1: pxa2xx_sharpsl: Update PCMCIA driver to support variety of new hardware
Patch from Richard Purdie
This patch updates the PCMCIA pxa2xx_sharpsl driver to support multiple scoop
devices by adding a scoop to pcmcia slot mapping structure. It adds platform
support for poodle, is known to work on spitz (which is dual slot) and
should also support collie with a minor amount of further work.
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/corgi.c')
-rw-r--r-- | arch/arm/mach-pxa/corgi.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 86b862f56e7e..06ea730e8675 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c | |||
@@ -60,6 +60,15 @@ static struct scoop_config corgi_scoop_setup = { | |||
60 | .io_out = CORGI_SCOOP_IO_OUT, | 60 | .io_out = CORGI_SCOOP_IO_OUT, |
61 | }; | 61 | }; |
62 | 62 | ||
63 | static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = { | ||
64 | { | ||
65 | .dev = &corgiscoop_device.dev, | ||
66 | .irq = CORGI_IRQ_GPIO_CF_IRQ, | ||
67 | .cd_irq = CORGI_IRQ_GPIO_CF_CD, | ||
68 | .cd_irq_str = "PCMCIA0 CD", | ||
69 | }, | ||
70 | }; | ||
71 | |||
63 | struct platform_device corgiscoop_device = { | 72 | struct platform_device corgiscoop_device = { |
64 | .name = "sharp-scoop", | 73 | .name = "sharp-scoop", |
65 | .id = -1, | 74 | .id = -1, |
@@ -241,6 +250,9 @@ static void __init corgi_init(void) | |||
241 | pxa_set_udc_info(&udc_info); | 250 | pxa_set_udc_info(&udc_info); |
242 | pxa_set_mci_info(&corgi_mci_platform_data); | 251 | pxa_set_mci_info(&corgi_mci_platform_data); |
243 | 252 | ||
253 | scoop_num = 1; | ||
254 | scoop_devs = &corgi_pcmcia_scoop[0]; | ||
255 | |||
244 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 256 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
245 | } | 257 | } |
246 | 258 | ||