Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-imx/mach-imx35.c
26295 views
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
12
static const char * const imx35_dt_board_compat[] __initconst = {
13
"fsl,imx35",
14
NULL
15
};
16
17
DT_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,
23
MACHINE_END
24
25