xen/xenbus: Add 'will_handle' callback support in xenbus_watch_path()
[linux/fpc-iii.git] / arch / arm / mach-mvebu / dove.c
blobd076c5771adc2f0e17f895370e59ac0d747a08c7
1 /*
2 * arch/arm/mach-mvebu/dove.c
4 * Marvell Dove 88AP510 System On Chip FDT Board
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
11 #include <linux/init.h>
12 #include <linux/mbus.h>
13 #include <linux/of.h>
14 #include <linux/soc/dove/pmu.h>
15 #include <asm/hardware/cache-tauros2.h>
16 #include <asm/mach/arch.h>
17 #include "common.h"
19 static void __init dove_init(void)
21 pr_info("Dove 88AP510 SoC\n");
23 #ifdef CONFIG_CACHE_TAUROS2
24 tauros2_init(0);
25 #endif
26 BUG_ON(mvebu_mbus_dt_init(false));
27 dove_init_pmu();
30 static const char * const dove_dt_compat[] __initconst = {
31 "marvell,dove",
32 NULL
35 DT_MACHINE_START(DOVE_DT, "Marvell Dove")
36 .init_machine = dove_init,
37 .restart = mvebu_restart,
38 .dt_compat = dove_dt_compat,
39 MACHINE_END