-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Tested-by: Shawn Guo <shawn.guo@freescale.com>
- Loading branch information
Wolfram Sang
authored and
Sascha Hauer
committed
Aug 23, 2011
1 parent
e55e48f
commit a4de042
Showing
5 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (C) 2011 Pengutronix, Wolfram Sang <w.sang@pengutronix.de> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License version 2 as published by the | ||
* Free Software Foundation. | ||
*/ | ||
#include <asm/sizes.h> | ||
#include <mach/mx23.h> | ||
#include <mach/mx28.h> | ||
#include <mach/devices-common.h> | ||
|
||
#ifdef CONFIG_SOC_IMX23 | ||
struct platform_device *__init mx23_add_rtc_stmp3xxx(void) | ||
{ | ||
struct resource res[] = { | ||
{ | ||
.start = MX23_RTC_BASE_ADDR, | ||
.end = MX23_RTC_BASE_ADDR + SZ_8K - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = MX23_INT_RTC_ALARM, | ||
.end = MX23_INT_RTC_ALARM, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
}; | ||
|
||
return mxs_add_platform_device("stmp3xxx-rtc", 0, res, ARRAY_SIZE(res), | ||
NULL, 0); | ||
} | ||
#endif /* CONFIG_SOC_IMX23 */ | ||
|
||
#ifdef CONFIG_SOC_IMX28 | ||
struct platform_device *__init mx28_add_rtc_stmp3xxx(void) | ||
{ | ||
struct resource res[] = { | ||
{ | ||
.start = MX28_RTC_BASE_ADDR, | ||
.end = MX28_RTC_BASE_ADDR + SZ_8K - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = MX28_INT_RTC_ALARM, | ||
.end = MX28_INT_RTC_ALARM, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
}; | ||
|
||
return mxs_add_platform_device("stmp3xxx-rtc", 0, res, ARRAY_SIZE(res), | ||
NULL, 0); | ||
} | ||
#endif /* CONFIG_SOC_IMX28 */ |