aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx5/devices.c
diff options
context:
space:
mode:
authorJason Wang <jason77.wang@gmail.com>2010-07-14 21:24:53 +0800
committerSascha Hauer <s.hauer@pengutronix.de>2010-07-26 14:29:20 +0200
commita7ebd93143bc883b51227457e59ec774b1eb6c03 (patch)
treed8ed317af471a6d0b69c73932c4ad923292e17cc /arch/arm/mach-mx5/devices.c
parentmx51_3ds: Add support for the imx51 3-stack board (diff)
downloadlinux-dev-a7ebd93143bc883b51227457e59ec774b1eb6c03.tar.xz
linux-dev-a7ebd93143bc883b51227457e59ec774b1eb6c03.zip
mx51: add imx_keypad device definition for mx51 platforms
add imx_keypad platform device definition and clocks for mx51 platforms. Signed-off-by: Jason Wang <jason77.wang@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx5/devices.c')
-rw-r--r--arch/arm/mach-mx5/devices.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/mach-mx5/devices.c b/arch/arm/mach-mx5/devices.c
index fa118646c99e..aafa61c6cec5 100644
--- a/arch/arm/mach-mx5/devices.c
+++ b/arch/arm/mach-mx5/devices.c
@@ -226,6 +226,25 @@ struct platform_device mxc_wdt = {
.resource = mxc_wdt_resources,
};
+static struct resource mxc_kpp_resources[] = {
+ {
+ .start = MX51_MXC_INT_KPP,
+ .end = MX51_MXC_INT_KPP,
+ .flags = IORESOURCE_IRQ,
+ } , {
+ .start = MX51_KPP_BASE_ADDR,
+ .end = MX51_KPP_BASE_ADDR + 0x8 - 1,
+ .flags = IORESOURCE_MEM,
+ },
+};
+
+struct platform_device mxc_keypad_device = {
+ .name = "imx-keypad",
+ .id = 0,
+ .num_resources = ARRAY_SIZE(mxc_kpp_resources),
+ .resource = mxc_kpp_resources,
+};
+
static struct mxc_gpio_port mxc_gpio_ports[] = {
{
.chip.label = "gpio-0",