Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-imx/mach-imx50.c
26292 views
1
// SPDX-License-Identifier: GPL-2.0-or-later
2
/*
3
* Copyright 2013 Greg Ungerer <[email protected]>
4
* Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
5
* Copyright 2011 Linaro Ltd.
6
*/
7
8
#include <asm/mach/arch.h>
9
10
#include "common.h"
11
#include "hardware.h"
12
13
static void __init imx50_init_early(void)
14
{
15
mxc_set_cpu_type(MXC_CPU_MX50);
16
}
17
18
static const char * const imx50_dt_board_compat[] __initconst = {
19
"fsl,imx50",
20
NULL
21
};
22
23
DT_MACHINE_START(IMX50_DT, "Freescale i.MX50 (Device Tree Support)")
24
.init_early = imx50_init_early,
25
.dt_compat = imx50_dt_board_compat,
26
MACHINE_END
27
28