mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[PATCH] collie: fix missing pcmcia bits
This adds missing bits of collie (sharp sl-5500) PCMCIA support and MFD support. Signed-off-by: Pavel Machek <pavel@suse.cz> Acked-by: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
36a95bf5cd
commit
44575b2f08
1 changed files with 30 additions and 0 deletions
|
@ -40,6 +40,7 @@
|
||||||
#include <asm/hardware/scoop.h>
|
#include <asm/hardware/scoop.h>
|
||||||
#include <asm/mach/sharpsl_param.h>
|
#include <asm/mach/sharpsl_param.h>
|
||||||
#include <asm/hardware/locomo.h>
|
#include <asm/hardware/locomo.h>
|
||||||
|
#include <asm/arch/mcp.h>
|
||||||
|
|
||||||
#include "generic.h"
|
#include "generic.h"
|
||||||
|
|
||||||
|
@ -66,6 +67,32 @@ struct platform_device colliescoop_device = {
|
||||||
.resource = collie_scoop_resources,
|
.resource = collie_scoop_resources,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct scoop_pcmcia_dev collie_pcmcia_scoop[] = {
|
||||||
|
{
|
||||||
|
.dev = &colliescoop_device.dev,
|
||||||
|
.irq = COLLIE_IRQ_GPIO_CF_IRQ,
|
||||||
|
.cd_irq = COLLIE_IRQ_GPIO_CF_CD,
|
||||||
|
.cd_irq_str = "PCMCIA0 CD",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct scoop_pcmcia_config collie_pcmcia_config = {
|
||||||
|
.devs = &collie_pcmcia_scoop[0],
|
||||||
|
.num_devs = 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
static struct mcp_plat_data collie_mcp_data = {
|
||||||
|
.mccr0 = MCCR0_ADM,
|
||||||
|
.sclk_rate = 11981000,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
static struct sa1100_port_fns collie_port_fns __initdata = {
|
||||||
|
.set_mctrl = collie_uart_set_mctrl,
|
||||||
|
.get_mctrl = collie_uart_get_mctrl,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
static struct resource locomo_resources[] = {
|
static struct resource locomo_resources[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
|
@ -159,6 +186,8 @@ static void __init collie_init(void)
|
||||||
GPDR |= GPIO_32_768kHz;
|
GPDR |= GPIO_32_768kHz;
|
||||||
TUCR = TUCR_32_768kHz;
|
TUCR = TUCR_32_768kHz;
|
||||||
|
|
||||||
|
platform_scoop_config = &collie_pcmcia_config;
|
||||||
|
|
||||||
ret = platform_add_devices(devices, ARRAY_SIZE(devices));
|
ret = platform_add_devices(devices, ARRAY_SIZE(devices));
|
||||||
if (ret) {
|
if (ret) {
|
||||||
printk(KERN_WARNING "collie: Unable to register LoCoMo device\n");
|
printk(KERN_WARNING "collie: Unable to register LoCoMo device\n");
|
||||||
|
@ -166,6 +195,7 @@ static void __init collie_init(void)
|
||||||
|
|
||||||
sa11x0_set_flash_data(&collie_flash_data, collie_flash_resources,
|
sa11x0_set_flash_data(&collie_flash_data, collie_flash_resources,
|
||||||
ARRAY_SIZE(collie_flash_resources));
|
ARRAY_SIZE(collie_flash_resources));
|
||||||
|
sa11x0_set_mcp_data(&collie_mcp_data);
|
||||||
|
|
||||||
sharpsl_save_param();
|
sharpsl_save_param();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue