imx35-dt.c 909 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright 2012 Steffen Trumtrar, Pengutronix
  3. *
  4. * based on imx27-dt.c
  5. *
  6. * This program is free software; you can redistribute it and/or modify it under
  7. * the terms of the GNU General Public License version 2 as published by the
  8. * Free Software Foundation.
  9. */
  10. #include <linux/irq.h>
  11. #include <linux/irqdomain.h>
  12. #include <linux/of_irq.h>
  13. #include <linux/of_platform.h>
  14. #include <linux/clk-provider.h>
  15. #include <linux/clocksource.h>
  16. #include <asm/mach/arch.h>
  17. #include <asm/mach/time.h>
  18. #include <asm/hardware/cache-l2x0.h>
  19. #include "common.h"
  20. #include "mx35.h"
  21. static const char * const imx35_dt_board_compat[] __initconst = {
  22. "fsl,imx35",
  23. NULL
  24. };
  25. DT_MACHINE_START(IMX35_DT, "Freescale i.MX35 (Device Tree Support)")
  26. .l2c_aux_val = 0,
  27. .l2c_aux_mask = ~0,
  28. .map_io = mx35_map_io,
  29. .init_early = imx35_init_early,
  30. .init_irq = mx35_init_irq,
  31. .dt_compat = imx35_dt_board_compat,
  32. MACHINE_END