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