2 * Copyright 2012 (C), Jason Cooper <jason@lakedaemon.net>
4 * arch/arm/mach-kirkwood/board-dt.c
6 * Flattened Device Tree board initialization
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
16 #include <linux/of_platform.h>
17 #include <linux/kexec.h>
18 #include <asm/mach/arch.h>
19 #include <asm/mach/map.h>
20 #include <mach/bridge-regs.h>
23 static struct of_device_id kirkwood_dt_match_table
[] __initdata
= {
24 { .compatible
= "simple-bus", },
28 static void __init
kirkwood_dt_init(void)
30 pr_info("Kirkwood: %s, TCLK=%d.\n", kirkwood_id(), kirkwood_tclk
);
33 * Disable propagation of mbus errors to the CPU local bus,
34 * as this causes mbus errors (which can occur for example
35 * for PCI aborts) to throw CPU aborts, which we're not set
38 writel(readl(CPU_CONFIG
) & ~CPU_CONFIG_ERROR_PROP
, CPU_CONFIG
);
40 kirkwood_setup_cpu_mbus();
42 #ifdef CONFIG_CACHE_FEROCEON_L2
46 /* Setup root of clk tree */
49 /* internal devices that every board has */
53 kirkwood_crypto_init();
56 kexec_reinit
= kirkwood_enable_pcie
;
59 if (of_machine_is_compatible("globalscale,dreamplug"))
62 if (of_machine_is_compatible("dlink,dns-kirkwood"))
65 if (of_machine_is_compatible("iom,iconnect"))
68 if (of_machine_is_compatible("raidsonic,ib-nas62x0"))
71 of_platform_populate(NULL
, kirkwood_dt_match_table
, NULL
, NULL
);
74 static const char *kirkwood_dt_board_compat
[] = {
75 "globalscale,dreamplug",
79 "raidsonic,ib-nas62x0",
83 DT_MACHINE_START(KIRKWOOD_DT
, "Marvell Kirkwood (Flattened Device Tree)")
84 /* Maintainer: Jason Cooper <jason@lakedaemon.net> */
85 .map_io
= kirkwood_map_io
,
86 .init_early
= kirkwood_init_early
,
87 .init_irq
= kirkwood_init_irq
,
88 .timer
= &kirkwood_timer
,
89 .init_machine
= kirkwood_dt_init
,
90 .restart
= kirkwood_restart
,
91 .dt_compat
= kirkwood_dt_board_compat
,