root/arch/arm/mach-imx/imx27-dt.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // SPDX-License-Identifier: GPL-2.0-or-later
   2 /*
   3  * Copyright 2012 Sascha Hauer, Pengutronix
   4  */
   5 
   6 #include <linux/irq.h>
   7 #include <linux/of_irq.h>
   8 #include <linux/of_platform.h>
   9 #include <asm/mach/arch.h>
  10 #include <asm/mach/time.h>
  11 
  12 #include "common.h"
  13 #include "mx27.h"
  14 
  15 static const char * const imx27_dt_board_compat[] __initconst = {
  16         "fsl,imx27",
  17         NULL
  18 };
  19 
  20 DT_MACHINE_START(IMX27_DT, "Freescale i.MX27 (Device Tree Support)")
  21         .map_io         = mx27_map_io,
  22         .init_early     = imx27_init_early,
  23         .init_irq       = mx27_init_irq,
  24         .init_late      = imx27_pm_init,
  25         .dt_compat      = imx27_dt_board_compat,
  26 MACHINE_END

/* [<][>][^][v][top][bottom][index][help] */