blob: f5437c27dc2adc7dbcf1757b7c332c2d38663193 [file] [log] [blame]
Jason Cooper3d468b62012-02-27 16:07:13 +00001/*
2 * Copyright 2012 (C), Jason Cooper <jason@lakedaemon.net>
3 *
4 * arch/arm/mach-kirkwood/board-dt.c
5 *
Jason Cooper6fa6b872012-03-15 00:52:31 +00006 * Flattened Device Tree board initialization
Jason Cooper3d468b62012-02-27 16:07:13 +00007 *
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>
Jason Cooper3d468b62012-02-27 16:07:13 +000015#include <linux/of.h>
Jason Cooper3d468b62012-02-27 16:07:13 +000016#include <linux/of_platform.h>
Andrew Lunn1611f872012-11-17 15:22:28 +010017#include <linux/clk-provider.h>
18#include <linux/clk/mvebu.h>
Ian Campbella7ac56d2012-04-29 14:40:42 +010019#include <linux/kexec.h>
Jason Cooper3d468b62012-02-27 16:07:13 +000020#include <asm/mach/arch.h>
Jason Cooper2b45e052012-02-29 17:39:08 +000021#include <asm/mach/map.h>
Jason Cooper2b45e052012-02-29 17:39:08 +000022#include <mach/bridge-regs.h>
Andrew Lunn1611f872012-11-17 15:22:28 +010023#include <linux/platform_data/usb-ehci-orion.h>
Andrew Lunn278b45b2012-06-27 13:40:04 +020024#include <plat/irq.h>
Andrew Lunn1611f872012-11-17 15:22:28 +010025#include <plat/common.h>
Jason Cooper3d468b62012-02-27 16:07:13 +000026#include "common.h"
Jason Cooper3d468b62012-02-27 16:07:13 +000027
28static struct of_device_id kirkwood_dt_match_table[] __initdata = {
29 { .compatible = "simple-bus", },
30 { }
31};
32
Andrew Lunn1611f872012-11-17 15:22:28 +010033/*
34 * There are still devices that doesn't know about DT yet. Get clock
35 * gates here and add a clock lookup alias, so that old platform
36 * devices still work.
37*/
38
39static void __init kirkwood_legacy_clk_init(void)
40{
41
42 struct device_node *np = of_find_compatible_node(
43 NULL, NULL, "marvell,kirkwood-gating-clock");
Andrew Lunn1611f872012-11-17 15:22:28 +010044 struct of_phandle_args clkspec;
Sebastian Hesselbarth7bf5b402013-01-30 21:29:58 +010045 struct clk *clk;
Andrew Lunn1611f872012-11-17 15:22:28 +010046
47 clkspec.np = np;
48 clkspec.args_count = 1;
49
Andrew Lunn1611f872012-11-17 15:22:28 +010050 clkspec.args[0] = CGC_BIT_PEX0;
51 orion_clkdev_add("0", "pcie",
52 of_clk_get_from_provider(&clkspec));
53
Andrew Lunn1611f872012-11-17 15:22:28 +010054 clkspec.args[0] = CGC_BIT_PEX1;
55 orion_clkdev_add("1", "pcie",
56 of_clk_get_from_provider(&clkspec));
57
Sebastian Hesselbarth7bf5b402013-01-30 21:29:58 +010058 clkspec.args[0] = CGC_BIT_SDIO;
59 orion_clkdev_add(NULL, "mvsdio",
Andrew Lunn1611f872012-11-17 15:22:28 +010060 of_clk_get_from_provider(&clkspec));
Sebastian Hesselbarth7bf5b402013-01-30 21:29:58 +010061
62 /*
63 * The ethernet interfaces forget the MAC address assigned by
64 * u-boot if the clocks are turned off. Until proper DT support
65 * is available we always enable them for now.
66 */
67 clkspec.args[0] = CGC_BIT_GE0;
68 clk = of_clk_get_from_provider(&clkspec);
69 orion_clkdev_add(NULL, "mv643xx_eth_port.0", clk);
70 clk_prepare_enable(clk);
71
72 clkspec.args[0] = CGC_BIT_GE1;
73 clk = of_clk_get_from_provider(&clkspec);
74 orion_clkdev_add(NULL, "mv643xx_eth_port.1", clk);
75 clk_prepare_enable(clk);
Andrew Lunn1611f872012-11-17 15:22:28 +010076}
77
78static void __init kirkwood_of_clk_init(void)
79{
80 mvebu_clocks_init();
81 kirkwood_legacy_clk_init();
82}
Michael Walle76372122012-06-06 20:30:57 +020083
Jason Cooper3d468b62012-02-27 16:07:13 +000084static void __init kirkwood_dt_init(void)
85{
Jason Cooper2b45e052012-02-29 17:39:08 +000086 pr_info("Kirkwood: %s, TCLK=%d.\n", kirkwood_id(), kirkwood_tclk);
87
88 /*
89 * Disable propagation of mbus errors to the CPU local bus,
90 * as this causes mbus errors (which can occur for example
91 * for PCI aborts) to throw CPU aborts, which we're not set
92 * up to deal with.
93 */
94 writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);
95
Thomas Petazzoni5cc06732013-03-21 17:59:16 +010096 kirkwood_setup_wins();
Jason Cooper2b45e052012-02-29 17:39:08 +000097
Jason Cooper2b45e052012-02-29 17:39:08 +000098 kirkwood_l2_init();
Jason Cooper2b45e052012-02-29 17:39:08 +000099
Andrew Lunn2f129bf2011-12-15 08:15:07 +0100100 /* Setup root of clk tree */
Andrew Lunn1611f872012-11-17 15:22:28 +0100101 kirkwood_of_clk_init();
Jason Cooper2b45e052012-02-29 17:39:08 +0000102
Andrew Lunn9cfc94e2013-01-09 13:22:15 +0100103 kirkwood_cpuidle_init();
104
Jason Cooper2b45e052012-02-29 17:39:08 +0000105#ifdef CONFIG_KEXEC
106 kexec_reinit = kirkwood_enable_pcie;
107#endif
Jason Cooper3d468b62012-02-27 16:07:13 +0000108
109 if (of_machine_is_compatible("globalscale,dreamplug"))
110 dreamplug_init();
111
Willy Tarreau9b47a4f2012-12-09 19:40:04 +0100112 if (of_machine_is_compatible("globalscale,guruplug"))
113 guruplug_dt_init();
114
Jamie Lentin9007d102012-04-18 11:06:40 +0100115 if (of_machine_is_compatible("dlink,dns-kirkwood"))
116 dnskw_init();
117
Arnaud Patard (Rtp)c06cd9b2012-04-18 23:16:41 +0200118 if (of_machine_is_compatible("iom,iconnect"))
119 iconnect_init();
120
Simon Baatzf5520362012-04-30 23:55:17 +0200121 if (of_machine_is_compatible("raidsonic,ib-nas62x0"))
122 ib62x0_init();
123
Andrew Lunn9eb61f42012-05-12 14:57:59 +0200124 if (of_machine_is_compatible("qnap,ts219"))
125 qnap_dt_ts219_init();
126
Sebastian Hesselbarthdd88db72012-08-14 22:43:41 +0200127 if (of_machine_is_compatible("seagate,dockstar"))
128 dockstar_dt_init();
129
Josh Coombs5136b2a2012-07-16 11:52:50 +0200130 if (of_machine_is_compatible("seagate,goflexnet"))
131 goflexnet_init();
132
Michael Walle4aff38a2012-07-17 07:25:55 +0200133 if (of_machine_is_compatible("buffalo,lsxl"))
134 lsxl_init();
135
Alan M Butler4f48b7f2012-08-20 15:29:07 +0100136 if (of_machine_is_compatible("iom,ix2-200"))
137 iomega_ix2_200_init();
138
Valentin Longchamp0510c8a2012-09-04 11:55:02 +0200139 if (of_machine_is_compatible("keymile,km_kirkwood"))
140 km_kirkwood_init();
141
Simon Guinotecee1e42012-10-17 12:09:04 +0200142 if (of_machine_is_compatible("lacie,inetspace_v2") ||
143 of_machine_is_compatible("lacie,netspace_v2") ||
Simon Guinotca7d9452012-10-17 12:09:05 +0200144 of_machine_is_compatible("lacie,netspace_max_v2") ||
Simon Guinot7f9871d2012-10-17 12:09:06 +0200145 of_machine_is_compatible("lacie,netspace_lite_v2") ||
146 of_machine_is_compatible("lacie,netspace_mini_v2"))
Simon Guinotecee1e42012-10-17 12:09:04 +0200147 ns2_init();
148
Stefan Peter5492a112012-11-18 16:46:16 +0100149 if (of_machine_is_compatible("mpl,cec4"))
150 mplcec4_init();
151
Nobuhiro Iwamatsuf17073a2012-11-13 16:43:09 +0900152 if (of_machine_is_compatible("plathome,openblocks-a6"))
153 openblocks_a6_init();
154
Jason Cooper767fc1e2012-10-22 02:15:35 +0000155 if (of_machine_is_compatible("usi,topkick"))
156 usi_topkick_init();
157
Andrew Lunn1611f872012-11-17 15:22:28 +0100158 of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL);
Jason Cooper3d468b62012-02-27 16:07:13 +0000159}
160
Andrew Lunn98adf932012-10-20 13:23:16 +0200161static const char * const kirkwood_dt_board_compat[] = {
Jason Cooper3d468b62012-02-27 16:07:13 +0000162 "globalscale,dreamplug",
Willy Tarreau9b47a4f2012-12-09 19:40:04 +0100163 "globalscale,guruplug",
Jamie Lentin9007d102012-04-18 11:06:40 +0100164 "dlink,dns-320",
165 "dlink,dns-325",
Arnaud Patard (Rtp)c06cd9b2012-04-18 23:16:41 +0200166 "iom,iconnect",
Simon Baatzf5520362012-04-30 23:55:17 +0200167 "raidsonic,ib-nas62x0",
Andrew Lunn9eb61f42012-05-12 14:57:59 +0200168 "qnap,ts219",
Sebastian Hesselbarthdd88db72012-08-14 22:43:41 +0200169 "seagate,dockstar",
Josh Coombs5136b2a2012-07-16 11:52:50 +0200170 "seagate,goflexnet",
Michael Walle4aff38a2012-07-17 07:25:55 +0200171 "buffalo,lsxl",
Alan M Butler4f48b7f2012-08-20 15:29:07 +0100172 "iom,ix2-200",
Valentin Longchamp0510c8a2012-09-04 11:55:02 +0200173 "keymile,km_kirkwood",
Simon Guinotecee1e42012-10-17 12:09:04 +0200174 "lacie,inetspace_v2",
175 "lacie,netspace_max_v2",
176 "lacie,netspace_v2",
Simon Guinotca7d9452012-10-17 12:09:05 +0200177 "lacie,netspace_lite_v2",
Simon Guinot7f9871d2012-10-17 12:09:06 +0200178 "lacie,netspace_mini_v2",
Stefan Peter5492a112012-11-18 16:46:16 +0100179 "mpl,cec4",
Nobuhiro Iwamatsuf17073a2012-11-13 16:43:09 +0900180 "plathome,openblocks-a6",
Jason Cooper767fc1e2012-10-22 02:15:35 +0000181 "usi,topkick",
Tero Jaaskoafcad882012-10-26 18:56:16 +0300182 "zyxel,nsa310",
Jason Cooper3d468b62012-02-27 16:07:13 +0000183 NULL
184};
185
186DT_MACHINE_START(KIRKWOOD_DT, "Marvell Kirkwood (Flattened Device Tree)")
187 /* Maintainer: Jason Cooper <jason@lakedaemon.net> */
188 .map_io = kirkwood_map_io,
189 .init_early = kirkwood_init_early,
Andrew Lunn278b45b2012-06-27 13:40:04 +0200190 .init_irq = orion_dt_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700191 .init_time = kirkwood_timer_init,
Jason Cooper3d468b62012-02-27 16:07:13 +0000192 .init_machine = kirkwood_dt_init,
193 .restart = kirkwood_restart,
194 .dt_compat = kirkwood_dt_board_compat,
195MACHINE_END