summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx25/devices.c
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2010-01-27 15:00:48 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-01-29 10:43:21 +0100
commitdcbabbc1fce2c32e4cfe0e18a2651226a72ecaae (patch)
tree07282c982a6e6d756a76e754c22e7a7ed8812f3b /arch/arm/mach-mx25/devices.c
parent4cb73288b195dc04c1f604c38bd4ebd2081db9fa (diff)
downloadop-kernel-dev-dcbabbc1fce2c32e4cfe0e18a2651226a72ecaae.zip
op-kernel-dev-dcbabbc1fce2c32e4cfe0e18a2651226a72ecaae.tar.gz
mx25: add support for the DryIce rtc
Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx25/devices.c')
-rw-r--r--arch/arm/mach-mx25/devices.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/mach-mx25/devices.c b/arch/arm/mach-mx25/devices.c
index dd40697..b0b75fc 100644
--- a/arch/arm/mach-mx25/devices.c
+++ b/arch/arm/mach-mx25/devices.c
@@ -458,3 +458,22 @@ struct platform_device mxc_nand_device = {
.num_resources = ARRAY_SIZE(mxc_nand_resources),
.resource = mxc_nand_resources,
};
+
+static struct resource mx25_rtc_resources[] = {
+ {
+ .start = MX25_DRYICE_BASE_ADDR,
+ .end = MX25_DRYICE_BASE_ADDR + 0x40,
+ .flags = IORESOURCE_MEM,
+ },
+ {
+ .start = MX25_INT_DRYICE,
+ .flags = IORESOURCE_IRQ
+ },
+};
+
+struct platform_device mx25_rtc_device = {
+ .name = "imxdi_rtc",
+ .id = 0,
+ .num_resources = ARRAY_SIZE(mx25_rtc_resources),
+ .resource = mx25_rtc_resources,
+};
OpenPOWER on IntegriCloud