1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright 2012 Steffen Trumtrar, Pengutronix
4 *
5 * based on imx27-dt.c
6 */
7
8#include <asm/mach/arch.h>
9#include "common.h"
10#include "mx35.h"
11
12static const char * const imx35_dt_board_compat[] __initconst = {
13 "fsl,imx35",
14 NULL
15};
16
17DT_MACHINE_START(IMX35_DT, "Freescale i.MX35 (Device Tree Support)")
18 .l2c_aux_val = 0,
19 .l2c_aux_mask = ~0,
20 .map_io = mx35_map_io,
21 .init_early = imx35_init_early,
22 .dt_compat = imx35_dt_board_compat,
23MACHINE_END
24

source code of linux/arch/arm/mach-imx/mach-imx35.c