Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 (C), Jason Cooper <jason@lakedaemon.net> |
| 3 | * |
| 4 | * arch/arm/mach-kirkwood/board-dt.c |
| 5 | * |
Jason Cooper | 6fa6b87 | 2012-03-15 00:52:31 +0000 | [diff] [blame] | 6 | * Flattened Device Tree board initialization |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 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> |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 15 | #include <linux/of.h> |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 16 | #include <linux/of_platform.h> |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 17 | #include <linux/clk-provider.h> |
| 18 | #include <linux/clk/mvebu.h> |
Ian Campbell | a7ac56d | 2012-04-29 14:40:42 +0100 | [diff] [blame] | 19 | #include <linux/kexec.h> |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 20 | #include <asm/mach/arch.h> |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 21 | #include <asm/mach/map.h> |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 22 | #include <mach/bridge-regs.h> |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 23 | #include <linux/platform_data/usb-ehci-orion.h> |
Andrew Lunn | 278b45b | 2012-06-27 13:40:04 +0200 | [diff] [blame] | 24 | #include <plat/irq.h> |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 25 | #include <plat/common.h> |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 26 | #include "common.h" |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 27 | |
| 28 | static struct of_device_id kirkwood_dt_match_table[] __initdata = { |
| 29 | { .compatible = "simple-bus", }, |
| 30 | { } |
| 31 | }; |
| 32 | |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 33 | /* |
| 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 | |
| 39 | static 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 Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 44 | struct of_phandle_args clkspec; |
Sebastian Hesselbarth | 7bf5b40 | 2013-01-30 21:29:58 +0100 | [diff] [blame] | 45 | struct clk *clk; |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 46 | |
| 47 | clkspec.np = np; |
| 48 | clkspec.args_count = 1; |
| 49 | |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 50 | clkspec.args[0] = CGC_BIT_PEX0; |
| 51 | orion_clkdev_add("0", "pcie", |
| 52 | of_clk_get_from_provider(&clkspec)); |
| 53 | |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 54 | clkspec.args[0] = CGC_BIT_PEX1; |
| 55 | orion_clkdev_add("1", "pcie", |
| 56 | of_clk_get_from_provider(&clkspec)); |
| 57 | |
Sebastian Hesselbarth | 7bf5b40 | 2013-01-30 21:29:58 +0100 | [diff] [blame] | 58 | clkspec.args[0] = CGC_BIT_SDIO; |
| 59 | orion_clkdev_add(NULL, "mvsdio", |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 60 | of_clk_get_from_provider(&clkspec)); |
Sebastian Hesselbarth | 7bf5b40 | 2013-01-30 21:29:58 +0100 | [diff] [blame] | 61 | |
| 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 Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static void __init kirkwood_of_clk_init(void) |
| 79 | { |
| 80 | mvebu_clocks_init(); |
| 81 | kirkwood_legacy_clk_init(); |
| 82 | } |
Michael Walle | 7637212 | 2012-06-06 20:30:57 +0200 | [diff] [blame] | 83 | |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 84 | static void __init kirkwood_dt_init(void) |
| 85 | { |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 86 | 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 Petazzoni | 5cc0673 | 2013-03-21 17:59:16 +0100 | [diff] [blame] | 96 | kirkwood_setup_wins(); |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 97 | |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 98 | kirkwood_l2_init(); |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 99 | |
Andrew Lunn | 2f129bf | 2011-12-15 08:15:07 +0100 | [diff] [blame] | 100 | /* Setup root of clk tree */ |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 101 | kirkwood_of_clk_init(); |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 102 | |
Andrew Lunn | 9cfc94e | 2013-01-09 13:22:15 +0100 | [diff] [blame] | 103 | kirkwood_cpuidle_init(); |
| 104 | |
Jason Cooper | 2b45e05 | 2012-02-29 17:39:08 +0000 | [diff] [blame] | 105 | #ifdef CONFIG_KEXEC |
| 106 | kexec_reinit = kirkwood_enable_pcie; |
| 107 | #endif |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 108 | |
| 109 | if (of_machine_is_compatible("globalscale,dreamplug")) |
| 110 | dreamplug_init(); |
| 111 | |
Willy Tarreau | 9b47a4f | 2012-12-09 19:40:04 +0100 | [diff] [blame] | 112 | if (of_machine_is_compatible("globalscale,guruplug")) |
| 113 | guruplug_dt_init(); |
| 114 | |
Jamie Lentin | 9007d10 | 2012-04-18 11:06:40 +0100 | [diff] [blame] | 115 | if (of_machine_is_compatible("dlink,dns-kirkwood")) |
| 116 | dnskw_init(); |
| 117 | |
Arnaud Patard (Rtp) | c06cd9b | 2012-04-18 23:16:41 +0200 | [diff] [blame] | 118 | if (of_machine_is_compatible("iom,iconnect")) |
| 119 | iconnect_init(); |
| 120 | |
Simon Baatz | f552036 | 2012-04-30 23:55:17 +0200 | [diff] [blame] | 121 | if (of_machine_is_compatible("raidsonic,ib-nas62x0")) |
| 122 | ib62x0_init(); |
| 123 | |
Andrew Lunn | 9eb61f4 | 2012-05-12 14:57:59 +0200 | [diff] [blame] | 124 | if (of_machine_is_compatible("qnap,ts219")) |
| 125 | qnap_dt_ts219_init(); |
| 126 | |
Sebastian Hesselbarth | dd88db7 | 2012-08-14 22:43:41 +0200 | [diff] [blame] | 127 | if (of_machine_is_compatible("seagate,dockstar")) |
| 128 | dockstar_dt_init(); |
| 129 | |
Josh Coombs | 5136b2a | 2012-07-16 11:52:50 +0200 | [diff] [blame] | 130 | if (of_machine_is_compatible("seagate,goflexnet")) |
| 131 | goflexnet_init(); |
| 132 | |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 133 | if (of_machine_is_compatible("buffalo,lsxl")) |
| 134 | lsxl_init(); |
| 135 | |
Alan M Butler | 4f48b7f | 2012-08-20 15:29:07 +0100 | [diff] [blame] | 136 | if (of_machine_is_compatible("iom,ix2-200")) |
| 137 | iomega_ix2_200_init(); |
| 138 | |
Valentin Longchamp | 0510c8a | 2012-09-04 11:55:02 +0200 | [diff] [blame] | 139 | if (of_machine_is_compatible("keymile,km_kirkwood")) |
| 140 | km_kirkwood_init(); |
| 141 | |
Simon Guinot | 98d4f2ac | 2013-04-09 00:41:28 +0200 | [diff] [blame] | 142 | if (of_machine_is_compatible("lacie,cloudbox") || |
| 143 | of_machine_is_compatible("lacie,inetspace_v2") || |
Simon Guinot | 7f9871d | 2012-10-17 12:09:06 +0200 | [diff] [blame] | 144 | of_machine_is_compatible("lacie,netspace_lite_v2") || |
Simon Guinot | 98d4f2ac | 2013-04-09 00:41:28 +0200 | [diff] [blame] | 145 | of_machine_is_compatible("lacie,netspace_max_v2") || |
| 146 | of_machine_is_compatible("lacie,netspace_mini_v2") || |
| 147 | of_machine_is_compatible("lacie,netspace_v2")) |
Simon Guinot | ecee1e4 | 2012-10-17 12:09:04 +0200 | [diff] [blame] | 148 | ns2_init(); |
| 149 | |
Stefan Peter | 5492a11 | 2012-11-18 16:46:16 +0100 | [diff] [blame] | 150 | if (of_machine_is_compatible("mpl,cec4")) |
| 151 | mplcec4_init(); |
| 152 | |
Arnaud Ebalard | f236f5a | 2013-03-19 23:28:06 +0100 | [diff] [blame] | 153 | if (of_machine_is_compatible("netgear,readynas-duo-v2")) |
| 154 | netgear_readynas_init(); |
| 155 | |
Nobuhiro Iwamatsu | f17073a | 2012-11-13 16:43:09 +0900 | [diff] [blame] | 156 | if (of_machine_is_compatible("plathome,openblocks-a6")) |
| 157 | openblocks_a6_init(); |
| 158 | |
Jason Cooper | 767fc1e | 2012-10-22 02:15:35 +0000 | [diff] [blame] | 159 | if (of_machine_is_compatible("usi,topkick")) |
| 160 | usi_topkick_init(); |
| 161 | |
Andrew Lunn | 1611f87 | 2012-11-17 15:22:28 +0100 | [diff] [blame] | 162 | of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL); |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Andrew Lunn | 98adf93 | 2012-10-20 13:23:16 +0200 | [diff] [blame] | 165 | static const char * const kirkwood_dt_board_compat[] = { |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 166 | "globalscale,dreamplug", |
Willy Tarreau | 9b47a4f | 2012-12-09 19:40:04 +0100 | [diff] [blame] | 167 | "globalscale,guruplug", |
Jamie Lentin | 9007d10 | 2012-04-18 11:06:40 +0100 | [diff] [blame] | 168 | "dlink,dns-320", |
| 169 | "dlink,dns-325", |
Arnaud Patard (Rtp) | c06cd9b | 2012-04-18 23:16:41 +0200 | [diff] [blame] | 170 | "iom,iconnect", |
Simon Baatz | f552036 | 2012-04-30 23:55:17 +0200 | [diff] [blame] | 171 | "raidsonic,ib-nas62x0", |
Andrew Lunn | 9eb61f4 | 2012-05-12 14:57:59 +0200 | [diff] [blame] | 172 | "qnap,ts219", |
Sebastian Hesselbarth | dd88db7 | 2012-08-14 22:43:41 +0200 | [diff] [blame] | 173 | "seagate,dockstar", |
Josh Coombs | 5136b2a | 2012-07-16 11:52:50 +0200 | [diff] [blame] | 174 | "seagate,goflexnet", |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 175 | "buffalo,lsxl", |
Alan M Butler | 4f48b7f | 2012-08-20 15:29:07 +0100 | [diff] [blame] | 176 | "iom,ix2-200", |
Valentin Longchamp | 0510c8a | 2012-09-04 11:55:02 +0200 | [diff] [blame] | 177 | "keymile,km_kirkwood", |
Simon Guinot | 98d4f2ac | 2013-04-09 00:41:28 +0200 | [diff] [blame] | 178 | "lacie,cloudbox", |
Simon Guinot | ecee1e4 | 2012-10-17 12:09:04 +0200 | [diff] [blame] | 179 | "lacie,inetspace_v2", |
Simon Guinot | ca7d945 | 2012-10-17 12:09:05 +0200 | [diff] [blame] | 180 | "lacie,netspace_lite_v2", |
Simon Guinot | 98d4f2ac | 2013-04-09 00:41:28 +0200 | [diff] [blame] | 181 | "lacie,netspace_max_v2", |
Simon Guinot | 7f9871d | 2012-10-17 12:09:06 +0200 | [diff] [blame] | 182 | "lacie,netspace_mini_v2", |
Simon Guinot | 98d4f2ac | 2013-04-09 00:41:28 +0200 | [diff] [blame] | 183 | "lacie,netspace_v2", |
Stefan Peter | 5492a11 | 2012-11-18 16:46:16 +0100 | [diff] [blame] | 184 | "mpl,cec4", |
Arnaud Ebalard | f236f5a | 2013-03-19 23:28:06 +0100 | [diff] [blame] | 185 | "netgear,readynas-duo-v2", |
Nobuhiro Iwamatsu | f17073a | 2012-11-13 16:43:09 +0900 | [diff] [blame] | 186 | "plathome,openblocks-a6", |
Jason Cooper | 767fc1e | 2012-10-22 02:15:35 +0000 | [diff] [blame] | 187 | "usi,topkick", |
Tero Jaasko | afcad88 | 2012-10-26 18:56:16 +0300 | [diff] [blame] | 188 | "zyxel,nsa310", |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 189 | NULL |
| 190 | }; |
| 191 | |
| 192 | DT_MACHINE_START(KIRKWOOD_DT, "Marvell Kirkwood (Flattened Device Tree)") |
| 193 | /* Maintainer: Jason Cooper <jason@lakedaemon.net> */ |
| 194 | .map_io = kirkwood_map_io, |
| 195 | .init_early = kirkwood_init_early, |
Andrew Lunn | 278b45b | 2012-06-27 13:40:04 +0200 | [diff] [blame] | 196 | .init_irq = orion_dt_init_irq, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 197 | .init_time = kirkwood_timer_init, |
Jason Cooper | 3d468b6 | 2012-02-27 16:07:13 +0000 | [diff] [blame] | 198 | .init_machine = kirkwood_dt_init, |
| 199 | .restart = kirkwood_restart, |
| 200 | .dt_compat = kirkwood_dt_board_compat, |
| 201 | MACHINE_END |