Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
platform-mxc_rtc.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010-2011 Pengutronix
3  * Uwe Kleine-Koenig <[email protected]>
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 <mach/hardware.h>
10 #include <mach/devices-common.h>
11 
12 #define imx_mxc_rtc_data_entry_single(soc) \
13  { \
14  .iobase = soc ## _RTC_BASE_ADDR, \
15  .irq = soc ## _INT_RTC, \
16  }
17 
18 #ifdef CONFIG_SOC_IMX31
21 #endif /* ifdef CONFIG_SOC_IMX31 */
22 
23 #ifdef CONFIG_SOC_IMX35
24 const struct imx_mxc_rtc_data imx35_mxc_rtc_data __initconst =
26 #endif /* ifdef CONFIG_SOC_IMX35 */
27 
29  const struct imx_mxc_rtc_data *data)
30 {
31  struct resource res[] = {
32  {
33  .start = data->iobase,
34  .end = data->iobase + SZ_16K - 1,
35  .flags = IORESOURCE_MEM,
36  }, {
37  .start = data->irq,
38  .end = data->irq,
39  .flags = IORESOURCE_IRQ,
40  },
41  };
42 
43  return imx_add_platform_device("mxc_rtc", -1,
44  res, ARRAY_SIZE(res), NULL, 0);
45 }