aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mxs/devices/platform-rtc-stmp3xxx.c
blob: 639eaee155532926e6633568f8783b4824af8881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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 */