1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-mmp/mmp-dt.c
5 * Copyright (C) 2012 Marvell Technology Group Ltd.
6 * Author: Haojian Zhuang <haojian.zhuang@marvell.com>
9 #include <linux/of_clk.h>
10 #include <linux/clocksource.h>
11 #include <asm/mach/arch.h>
12 #include <asm/hardware/cache-tauros2.h>
16 static const char *const pxa168_dt_board_compat
[] __initconst
= {
17 "mrvl,pxa168-aspenite",
21 static const char *const pxa910_dt_board_compat
[] __initconst
= {
26 static void __init
mmp_init_time(void)
28 #ifdef CONFIG_CACHE_TAUROS2
35 DT_MACHINE_START(PXA168_DT
, "Marvell PXA168 (Device Tree Support)")
37 .init_time
= mmp_init_time
,
38 .dt_compat
= pxa168_dt_board_compat
,
41 DT_MACHINE_START(PXA910_DT
, "Marvell PXA910 (Device Tree Support)")
43 .init_time
= mmp_init_time
,
44 .dt_compat
= pxa910_dt_board_compat
,