drm/rockchip: Don't change hdmi reference clock rate
[drm/drm-misc.git] / arch / arm / mach-imx / mach-imx1.c
bloba4688f575ffe184755aee8e356b99068f1430970
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2014 Alexander Shiyan <shc_work@mail.ru>
4 */
6 #include <asm/mach/arch.h>
8 #include "common.h"
9 #include "hardware.h"
11 static void __init imx1_init_early(void)
13 mxc_set_cpu_type(MXC_CPU_MX1);
16 static const char * const imx1_dt_board_compat[] __initconst = {
17 "fsl,imx1",
18 NULL
21 DT_MACHINE_START(IMX1_DT, "Freescale i.MX1 (Device Tree Support)")
22 .init_early = imx1_init_early,
23 .dt_compat = imx1_dt_board_compat,
24 .restart = mxc_restart,
25 MACHINE_END