ARM: orion5x: add interrupt for Ethernet in Device Tree
[deliverable/linux.git] / arch / arm / mach-orion5x / board-dt.c
CommitLineData
1bffb4a8
TP
1/*
2 * Copyright 2012 (C), Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 *
4 * arch/arm/mach-orion5x/board-dt.c
5 *
6 * Flattened Device Tree board initialization
7 *
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.
11 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/of.h>
16#include <linux/of_platform.h>
f7b861b7 17#include <linux/cpu.h>
5c697664 18#include <linux/mbus.h>
1bffb4a8
TP
19#include <asm/system_misc.h>
20#include <asm/mach/arch.h>
5c697664 21#include <asm/mach/map.h>
1bffb4a8 22#include <mach/orion5x.h>
5c697664 23#include <mach/bridge-regs.h>
1bffb4a8 24#include <plat/irq.h>
5c697664 25#include <plat/time.h>
1bffb4a8
TP
26#include "common.h"
27
42366666 28static struct of_dev_auxdata orion5x_auxdata_lookup[] __initdata = {
1bffb4a8
TP
29 OF_DEV_AUXDATA("marvell,orion-spi", 0xf1010600, "orion_spi.0", NULL),
30 OF_DEV_AUXDATA("marvell,mv64xxx-i2c", 0xf1011000, "mv64xxx_i2c.0",
31 NULL),
32 OF_DEV_AUXDATA("marvell,orion-wdt", 0xf1020300, "orion_wdt", NULL),
33 OF_DEV_AUXDATA("marvell,orion-sata", 0xf1080000, "sata_mv.0", NULL),
34 OF_DEV_AUXDATA("marvell,orion-crypto", 0xf1090000, "mv_crypto", NULL),
35 {},
36};
37
5c697664
TP
38static void orion5x_dt_init_early(void)
39{
40 orion_time_set_base(TIMER_VIRT_BASE);
41}
42
43static void orion5x_dt_init_time(void)
44{
45 orion5x_timer_init();
46}
47
1bffb4a8
TP
48static void __init orion5x_dt_init(void)
49{
50 char *dev_name;
51 u32 dev, rev;
52
53 orion5x_id(&dev, &rev, &dev_name);
54 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk);
55
5c697664
TP
56 BUG_ON(mvebu_mbus_dt_init());
57
1bffb4a8
TP
58 /*
59 * Setup Orion address map
60 */
5d1190ea 61 orion5x_setup_wins();
1bffb4a8
TP
62
63 /* Setup root of clk tree */
64 clk_init();
65
66 /*
67 * Don't issue "Wait for Interrupt" instruction if we are
68 * running on D0 5281 silicon.
69 */
70 if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) {
71 printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n");
f7b861b7 72 cpu_idle_poll_ctrl(true);
1bffb4a8
TP
73 }
74
07f645df
TP
75 if (of_machine_is_compatible("lacie,ethernet-disk-mini-v2"))
76 edmini_v2_init();
77
1bffb4a8
TP
78 of_platform_populate(NULL, of_default_bus_match_table,
79 orion5x_auxdata_lookup, NULL);
80}
81
82static const char *orion5x_dt_compat[] = {
83 "marvell,orion5x",
84 NULL,
85};
86
87DT_MACHINE_START(ORION5X_DT, "Marvell Orion5x (Flattened Device Tree)")
88 /* Maintainer: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> */
89 .map_io = orion5x_map_io,
5c697664 90 .init_early = orion5x_dt_init_early,
1bffb4a8 91 .init_irq = orion_dt_init_irq,
5c697664 92 .init_time = orion5x_dt_init_time,
1bffb4a8
TP
93 .init_machine = orion5x_dt_init,
94 .restart = orion5x_restart,
95 .dt_compat = orion5x_dt_compat,
96MACHINE_END
This page took 0.220357 seconds and 5 git commands to generate.