blob: 5bb490d556eaa9dab0d26ba77ba5d77e4aba1d5b [file] [log] [blame]
Uwe Kleine-Könige7c74b32010-11-11 11:57:21 +01001/*
2 * Copyright (C) 2010 Pengutronix
3 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License version 2 as published by the
7 * Free Software Foundation.
8 */
9#include <asm/sizes.h>
Shawn Guo50f2de62012-09-14 14:14:45 +080010
11#include "../hardware.h"
Shawn Guoe0557c02012-09-13 15:51:15 +080012#include "devices-common.h"
Uwe Kleine-Könige7c74b32010-11-11 11:57:21 +010013
14#define imx_imxdi_rtc_data_entry_single(soc) \
15 { \
16 .iobase = soc ## _DRYICE_BASE_ADDR, \
17 .irq = soc ## _INT_DRYICE, \
18 }
19
Uwe Kleine-König972cc482010-11-11 18:35:01 +010020#ifdef CONFIG_SOC_IMX25
Uwe Kleine-Könige7c74b32010-11-11 11:57:21 +010021const struct imx_imxdi_rtc_data imx25_imxdi_rtc_data __initconst =
22 imx_imxdi_rtc_data_entry_single(MX25);
Uwe Kleine-König972cc482010-11-11 18:35:01 +010023#endif /* ifdef CONFIG_SOC_IMX25 */
Uwe Kleine-Könige7c74b32010-11-11 11:57:21 +010024
25struct platform_device *__init imx_add_imxdi_rtc(
26 const struct imx_imxdi_rtc_data *data)
27{
28 struct resource res[] = {
29 {
30 .start = data->iobase,
Shawn Guo5d187242011-03-20 11:17:59 +080031 .end = data->iobase + SZ_16K - 1,
Uwe Kleine-Könige7c74b32010-11-11 11:57:21 +010032 .flags = IORESOURCE_MEM,
33 }, {
34 .start = data->irq,
35 .end = data->irq,
36 .flags = IORESOURCE_IRQ,
37 },
38 };
39
40 return imx_add_platform_device("imxdi_rtc", 0,
41 res, ARRAY_SIZE(res), NULL, 0);
42}