mach-imx31.c 411 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright 2012 Sascha Hauer, Pengutronix
  4. */
  5. #include <asm/mach/arch.h>
  6. #include "common.h"
  7. static const char * const imx31_dt_board_compat[] __initconst = {
  8. "fsl,imx31",
  9. NULL
  10. };
  11. DT_MACHINE_START(IMX31_DT, "Freescale i.MX31 (Device Tree Support)")
  12. .map_io = mx31_map_io,
  13. .init_early = imx31_init_early,
  14. .dt_compat = imx31_dt_board_compat,
  15. MACHINE_END