platform-mxc_rtc.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (C) 2010-2011 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 <mach/hardware.h>
  10. #include <mach/devices-common.h>
  11. #define imx_mxc_rtc_data_entry_single(soc) \
  12. { \
  13. .iobase = soc ## _RTC_BASE_ADDR, \
  14. .irq = soc ## _INT_RTC, \
  15. }
  16. #ifdef CONFIG_SOC_IMX31
  17. const struct imx_mxc_rtc_data imx31_mxc_rtc_data __initconst =
  18. imx_mxc_rtc_data_entry_single(MX31);
  19. #endif /* ifdef CONFIG_SOC_IMX31 */
  20. struct platform_device *__init imx_add_mxc_rtc(
  21. const struct imx_mxc_rtc_data *data)
  22. {
  23. struct resource res[] = {
  24. {
  25. .start = data->iobase,
  26. .end = data->iobase + SZ_16K - 1,
  27. .flags = IORESOURCE_MEM,
  28. }, {
  29. .start = data->irq,
  30. .end = data->irq,
  31. .flags = IORESOURCE_IRQ,
  32. },
  33. };
  34. return imx_add_platform_device("mxc_rtc", -1,
  35. res, ARRAY_SIZE(res), NULL, 0);
  36. }