diff options
author | wanzongshun <mcuos.com@gmail.com> | 2009-07-17 14:42:33 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-07-23 10:22:45 +0100 |
commit | 42ff4cf957b695250534e540375e23507c722327 (patch) | |
tree | ab3bb05a23f0ecfeb10375ce6b5c76eda1afa520 /arch/arm/mach-w90x900 | |
parent | 0abe1856bdb68ef699c00949cf9f81fbec98d499 (diff) | |
download | linux-3.10-42ff4cf957b695250534e540375e23507c722327.tar.gz linux-3.10-42ff4cf957b695250534e540375e23507c722327.tar.bz2 linux-3.10-42ff4cf957b695250534e540375e23507c722327.zip |
[ARM] 5610/1: Add fmi resource define for w90p910 platform
Add fmi resource define for w90p910 platform.
Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-w90x900')
-rw-r--r-- | arch/arm/mach-w90x900/mach-w90p910evb.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/arm/mach-w90x900/mach-w90p910evb.c b/arch/arm/mach-w90x900/mach-w90p910evb.c index 7a62bd348e8..3b9fa312d9f 100644 --- a/arch/arm/mach-w90x900/mach-w90p910evb.c +++ b/arch/arm/mach-w90x900/mach-w90p910evb.c @@ -228,6 +228,28 @@ struct platform_device w90x900_device_usbgadget = { }; EXPORT_SYMBOL(w90x900_device_usbgadget); +/* FMI Device */ + +static struct resource w90p910_fmi_resource[] = { + [0] = { + .start = W90X900_PA_FMI, + .end = W90X900_PA_FMI + W90X900_SZ_FMI - 1, + .flags = IORESOURCE_MEM, + }, + [1] = { + .start = IRQ_FMI, + .end = IRQ_FMI, + .flags = IORESOURCE_IRQ, + } +}; + +static struct platform_device w90p910_device_fmi = { + .name = "w90p910-fmi", + .id = -1, + .num_resources = ARRAY_SIZE(w90p910_fmi_resource), + .resource = w90p910_fmi_resource, +}; + static struct map_desc w90p910_iodesc[] __initdata = { }; @@ -242,6 +264,7 @@ static struct platform_device *w90p910evb_dev[] __initdata = { &w90x900_device_rtc, &w90x900_device_kpi, &w90x900_device_usbgadget, + &w90p910_device_fmi, }; static void __init w90p910evb_map_io(void) |