mach-imx25.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2012 Sascha Hauer, Pengutronix
  3. *
  4. * The code contained herein is licensed under the GNU General Public
  5. * License. You may obtain a copy of the GNU General Public License
  6. * Version 2 or later at the following locations:
  7. *
  8. * http://www.opensource.org/licenses/gpl-license.html
  9. * http://www.gnu.org/copyleft/gpl.html
  10. */
  11. #include <linux/irq.h>
  12. #include <linux/of_address.h>
  13. #include <linux/of_irq.h>
  14. #include <linux/of_platform.h>
  15. #include <asm/mach/arch.h>
  16. #include <asm/mach/time.h>
  17. #include "common.h"
  18. #include "hardware.h"
  19. static void __init imx25_init_early(void)
  20. {
  21. mxc_set_cpu_type(MXC_CPU_MX25);
  22. }
  23. static void __init mx25_init_irq(void)
  24. {
  25. struct device_node *np;
  26. void __iomem *avic_base;
  27. np = of_find_compatible_node(NULL, NULL, "fsl,avic");
  28. avic_base = of_iomap(np, 0);
  29. BUG_ON(!avic_base);
  30. mxc_init_irq(avic_base);
  31. }
  32. static const char * const imx25_dt_board_compat[] __initconst = {
  33. "fsl,imx25",
  34. NULL
  35. };
  36. DT_MACHINE_START(IMX25_DT, "Freescale i.MX25 (Device Tree Support)")
  37. .init_early = imx25_init_early,
  38. .init_late = imx25_pm_init,
  39. .init_irq = mx25_init_irq,
  40. .dt_compat = imx25_dt_board_compat,
  41. MACHINE_END