Gregory CLEMENT | c382894 | 2018-09-12 15:40:17 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Marvell Armada CP110 System Controller |
| 4 | * |
| 5 | * Copyright (C) 2016 Marvell |
| 6 | * |
| 7 | * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 8 | * |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | /* |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 12 | * CP110 has 6 core clocks: |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 13 | * |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 14 | * - PLL0 (1 Ghz) |
| 15 | * - PPv2 core (1/3 PLL0) |
| 16 | * - x2 Core (1/2 PLL0) |
| 17 | * - Core (1/2 x2 Core) |
| 18 | * - SDIO (2/5 PLL0) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 19 | * |
| 20 | * - NAND clock, which is either: |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 21 | * - Equal to SDIO clock |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 22 | * - 2/5 PLL0 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 23 | * |
Colin Ian King | 7fbb639 | 2019-04-16 12:56:16 +0100 | [diff] [blame] | 24 | * CP110 has 32 gateable clocks, for the various peripherals in the IP. |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 25 | */ |
| 26 | |
| 27 | #define pr_fmt(fmt) "cp110-system-controller: " fmt |
| 28 | |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 29 | #include "armada_ap_cp_helper.h" |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 30 | #include <linux/clk-provider.h> |
| 31 | #include <linux/mfd/syscon.h> |
Paul Gortmaker | 7acf751 | 2016-07-04 17:12:13 -0400 | [diff] [blame] | 32 | #include <linux/init.h> |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 33 | #include <linux/of.h> |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 34 | #include <linux/platform_device.h> |
| 35 | #include <linux/regmap.h> |
| 36 | #include <linux/slab.h> |
| 37 | |
| 38 | #define CP110_PM_CLOCK_GATING_REG 0x220 |
| 39 | #define CP110_NAND_FLASH_CLK_CTRL_REG 0x700 |
| 40 | #define NF_CLOCK_SEL_400_MASK BIT(0) |
| 41 | |
| 42 | enum { |
| 43 | CP110_CLK_TYPE_CORE, |
| 44 | CP110_CLK_TYPE_GATABLE, |
| 45 | }; |
| 46 | |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 47 | #define CP110_MAX_CORE_CLOCKS 6 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 48 | #define CP110_MAX_GATABLE_CLOCKS 32 |
| 49 | |
| 50 | #define CP110_CLK_NUM \ |
| 51 | (CP110_MAX_CORE_CLOCKS + CP110_MAX_GATABLE_CLOCKS) |
| 52 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 53 | #define CP110_CORE_PLL0 0 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 54 | #define CP110_CORE_PPV2 1 |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 55 | #define CP110_CORE_X2CORE 2 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 56 | #define CP110_CORE_CORE 3 |
| 57 | #define CP110_CORE_NAND 4 |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 58 | #define CP110_CORE_SDIO 5 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 59 | |
Colin Ian King | 7fbb639 | 2019-04-16 12:56:16 +0100 | [diff] [blame] | 60 | /* A number of gateable clocks need special handling */ |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 61 | #define CP110_GATE_AUDIO 0 |
| 62 | #define CP110_GATE_COMM_UNIT 1 |
| 63 | #define CP110_GATE_NAND 2 |
| 64 | #define CP110_GATE_PPV2 3 |
| 65 | #define CP110_GATE_SDIO 4 |
Thomas Petazzoni | 1006ccc | 2016-12-21 11:26:56 +0100 | [diff] [blame] | 66 | #define CP110_GATE_MG 5 |
| 67 | #define CP110_GATE_MG_CORE 6 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 68 | #define CP110_GATE_XOR1 7 |
| 69 | #define CP110_GATE_XOR0 8 |
Thomas Petazzoni | 1006ccc | 2016-12-21 11:26:56 +0100 | [diff] [blame] | 70 | #define CP110_GATE_GOP_DP 9 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 71 | #define CP110_GATE_PCIE_X1_0 11 |
| 72 | #define CP110_GATE_PCIE_X1_1 12 |
| 73 | #define CP110_GATE_PCIE_X4 13 |
| 74 | #define CP110_GATE_PCIE_XOR 14 |
| 75 | #define CP110_GATE_SATA 15 |
| 76 | #define CP110_GATE_SATA_USB 16 |
| 77 | #define CP110_GATE_MAIN 17 |
Thomas Petazzoni | 1006ccc | 2016-12-21 11:26:56 +0100 | [diff] [blame] | 78 | #define CP110_GATE_SDMMC_GOP 18 |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 79 | #define CP110_GATE_SLOW_IO 21 |
| 80 | #define CP110_GATE_USB3H0 22 |
| 81 | #define CP110_GATE_USB3H1 23 |
| 82 | #define CP110_GATE_USB3DEV 24 |
| 83 | #define CP110_GATE_EIP150 25 |
| 84 | #define CP110_GATE_EIP197 26 |
| 85 | |
Stephen Boyd | 4a5aa06 | 2017-06-19 17:11:47 -0700 | [diff] [blame] | 86 | static const char * const gate_base_names[] = { |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 87 | [CP110_GATE_AUDIO] = "audio", |
| 88 | [CP110_GATE_COMM_UNIT] = "communit", |
| 89 | [CP110_GATE_NAND] = "nand", |
| 90 | [CP110_GATE_PPV2] = "ppv2", |
| 91 | [CP110_GATE_SDIO] = "sdio", |
| 92 | [CP110_GATE_MG] = "mg-domain", |
| 93 | [CP110_GATE_MG_CORE] = "mg-core", |
| 94 | [CP110_GATE_XOR1] = "xor1", |
| 95 | [CP110_GATE_XOR0] = "xor0", |
| 96 | [CP110_GATE_GOP_DP] = "gop-dp", |
| 97 | [CP110_GATE_PCIE_X1_0] = "pcie_x10", |
| 98 | [CP110_GATE_PCIE_X1_1] = "pcie_x11", |
| 99 | [CP110_GATE_PCIE_X4] = "pcie_x4", |
| 100 | [CP110_GATE_PCIE_XOR] = "pcie-xor", |
| 101 | [CP110_GATE_SATA] = "sata", |
| 102 | [CP110_GATE_SATA_USB] = "sata-usb", |
| 103 | [CP110_GATE_MAIN] = "main", |
| 104 | [CP110_GATE_SDMMC_GOP] = "sd-mmc-gop", |
| 105 | [CP110_GATE_SLOW_IO] = "slow-io", |
| 106 | [CP110_GATE_USB3H0] = "usb3h0", |
| 107 | [CP110_GATE_USB3H1] = "usb3h1", |
| 108 | [CP110_GATE_USB3DEV] = "usb3dev", |
| 109 | [CP110_GATE_EIP150] = "eip150", |
| 110 | [CP110_GATE_EIP197] = "eip197" |
| 111 | }; |
| 112 | |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 113 | struct cp110_gate_clk { |
| 114 | struct clk_hw hw; |
| 115 | struct regmap *regmap; |
| 116 | u8 bit_idx; |
| 117 | }; |
| 118 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 119 | #define to_cp110_gate_clk(hw) container_of(hw, struct cp110_gate_clk, hw) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 120 | |
| 121 | static int cp110_gate_enable(struct clk_hw *hw) |
| 122 | { |
| 123 | struct cp110_gate_clk *gate = to_cp110_gate_clk(hw); |
| 124 | |
| 125 | regmap_update_bits(gate->regmap, CP110_PM_CLOCK_GATING_REG, |
| 126 | BIT(gate->bit_idx), BIT(gate->bit_idx)); |
| 127 | |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | static void cp110_gate_disable(struct clk_hw *hw) |
| 132 | { |
| 133 | struct cp110_gate_clk *gate = to_cp110_gate_clk(hw); |
| 134 | |
| 135 | regmap_update_bits(gate->regmap, CP110_PM_CLOCK_GATING_REG, |
| 136 | BIT(gate->bit_idx), 0); |
| 137 | } |
| 138 | |
| 139 | static int cp110_gate_is_enabled(struct clk_hw *hw) |
| 140 | { |
| 141 | struct cp110_gate_clk *gate = to_cp110_gate_clk(hw); |
| 142 | u32 val; |
| 143 | |
| 144 | regmap_read(gate->regmap, CP110_PM_CLOCK_GATING_REG, &val); |
| 145 | |
| 146 | return val & BIT(gate->bit_idx); |
| 147 | } |
| 148 | |
| 149 | static const struct clk_ops cp110_gate_ops = { |
| 150 | .enable = cp110_gate_enable, |
| 151 | .disable = cp110_gate_disable, |
| 152 | .is_enabled = cp110_gate_is_enabled, |
| 153 | }; |
| 154 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 155 | static struct clk_hw *cp110_register_gate(const char *name, |
| 156 | const char *parent_name, |
| 157 | struct regmap *regmap, u8 bit_idx) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 158 | { |
| 159 | struct cp110_gate_clk *gate; |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 160 | struct clk_hw *hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 161 | struct clk_init_data init; |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 162 | int ret; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 163 | |
| 164 | gate = kzalloc(sizeof(*gate), GFP_KERNEL); |
| 165 | if (!gate) |
| 166 | return ERR_PTR(-ENOMEM); |
| 167 | |
Marcin Wojtas | ad715b2 | 2016-09-21 11:05:57 +0200 | [diff] [blame] | 168 | memset(&init, 0, sizeof(init)); |
| 169 | |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 170 | init.name = name; |
| 171 | init.ops = &cp110_gate_ops; |
| 172 | init.parent_names = &parent_name; |
| 173 | init.num_parents = 1; |
| 174 | |
| 175 | gate->regmap = regmap; |
| 176 | gate->bit_idx = bit_idx; |
| 177 | gate->hw.init = &init; |
| 178 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 179 | hw = &gate->hw; |
| 180 | ret = clk_hw_register(NULL, hw); |
| 181 | if (ret) { |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 182 | kfree(gate); |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 183 | hw = ERR_PTR(ret); |
| 184 | } |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 185 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 186 | return hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 187 | } |
| 188 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 189 | static void cp110_unregister_gate(struct clk_hw *hw) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 190 | { |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 191 | clk_hw_unregister(hw); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 192 | kfree(to_cp110_gate_clk(hw)); |
| 193 | } |
| 194 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 195 | static struct clk_hw *cp110_of_clk_get(struct of_phandle_args *clkspec, |
| 196 | void *data) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 197 | { |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 198 | struct clk_hw_onecell_data *clk_data = data; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 199 | unsigned int type = clkspec->args[0]; |
| 200 | unsigned int idx = clkspec->args[1]; |
| 201 | |
| 202 | if (type == CP110_CLK_TYPE_CORE) { |
Dan Carpenter | d9f5b7f | 2018-12-03 17:50:55 +0300 | [diff] [blame] | 203 | if (idx >= CP110_MAX_CORE_CLOCKS) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 204 | return ERR_PTR(-EINVAL); |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 205 | return clk_data->hws[idx]; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 206 | } else if (type == CP110_CLK_TYPE_GATABLE) { |
Dan Carpenter | d9f5b7f | 2018-12-03 17:50:55 +0300 | [diff] [blame] | 207 | if (idx >= CP110_MAX_GATABLE_CLOCKS) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 208 | return ERR_PTR(-EINVAL); |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 209 | return clk_data->hws[CP110_MAX_CORE_CLOCKS + idx]; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | return ERR_PTR(-EINVAL); |
| 213 | } |
| 214 | |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 215 | static int cp110_syscon_common_probe(struct platform_device *pdev, |
| 216 | struct device_node *syscon_node) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 217 | { |
| 218 | struct regmap *regmap; |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 219 | struct device *dev = &pdev->dev; |
| 220 | struct device_node *np = dev->of_node; |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 221 | const char *ppv2_name, *pll0_name, *core_name, *x2core_name, *nand_name, |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 222 | *sdio_name; |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 223 | struct clk_hw_onecell_data *cp110_clk_data; |
| 224 | struct clk_hw *hw, **cp110_clks; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 225 | u32 nand_clk_ctrl; |
| 226 | int i, ret; |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 227 | char *gate_name[ARRAY_SIZE(gate_base_names)]; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 228 | |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 229 | regmap = syscon_node_to_regmap(syscon_node); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 230 | if (IS_ERR(regmap)) |
| 231 | return PTR_ERR(regmap); |
| 232 | |
| 233 | ret = regmap_read(regmap, CP110_NAND_FLASH_CLK_CTRL_REG, |
| 234 | &nand_clk_ctrl); |
| 235 | if (ret) |
| 236 | return ret; |
| 237 | |
Stephen Kitt | e620a1e | 2019-09-27 20:51:10 +0200 | [diff] [blame] | 238 | cp110_clk_data = devm_kzalloc(dev, struct_size(cp110_clk_data, hws, |
| 239 | CP110_CLK_NUM), |
Marcin Wojtas | a0245eb | 2016-09-21 11:05:58 +0200 | [diff] [blame] | 240 | GFP_KERNEL); |
| 241 | if (!cp110_clk_data) |
| 242 | return -ENOMEM; |
| 243 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 244 | cp110_clks = cp110_clk_data->hws; |
| 245 | cp110_clk_data->num = CP110_CLK_NUM; |
Marcin Wojtas | a0245eb | 2016-09-21 11:05:58 +0200 | [diff] [blame] | 246 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 247 | /* Register the PLL0 which is the root of the hw tree */ |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 248 | pll0_name = ap_cp_unique_name(dev, syscon_node, "pll0"); |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 249 | hw = clk_hw_register_fixed_rate(NULL, pll0_name, NULL, 0, |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 250 | 1000 * 1000 * 1000); |
| 251 | if (IS_ERR(hw)) { |
| 252 | ret = PTR_ERR(hw); |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 253 | goto fail_pll0; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 254 | } |
| 255 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 256 | cp110_clks[CP110_CORE_PLL0] = hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 257 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 258 | /* PPv2 is PLL0/3 */ |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 259 | ppv2_name = ap_cp_unique_name(dev, syscon_node, "ppv2-core"); |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 260 | hw = clk_hw_register_fixed_factor(NULL, ppv2_name, pll0_name, 0, 1, 3); |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 261 | if (IS_ERR(hw)) { |
| 262 | ret = PTR_ERR(hw); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 263 | goto fail_ppv2; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 264 | } |
| 265 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 266 | cp110_clks[CP110_CORE_PPV2] = hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 267 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 268 | /* X2CORE clock is PLL0/2 */ |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 269 | x2core_name = ap_cp_unique_name(dev, syscon_node, "x2core"); |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 270 | hw = clk_hw_register_fixed_factor(NULL, x2core_name, pll0_name, |
| 271 | 0, 1, 2); |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 272 | if (IS_ERR(hw)) { |
| 273 | ret = PTR_ERR(hw); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 274 | goto fail_eip; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 275 | } |
| 276 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 277 | cp110_clks[CP110_CORE_X2CORE] = hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 278 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 279 | /* Core clock is X2CORE/2 */ |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 280 | core_name = ap_cp_unique_name(dev, syscon_node, "core"); |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 281 | hw = clk_hw_register_fixed_factor(NULL, core_name, x2core_name, |
| 282 | 0, 1, 2); |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 283 | if (IS_ERR(hw)) { |
| 284 | ret = PTR_ERR(hw); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 285 | goto fail_core; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 286 | } |
| 287 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 288 | cp110_clks[CP110_CORE_CORE] = hw; |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 289 | /* NAND can be either PLL0/2.5 or core clock */ |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 290 | nand_name = ap_cp_unique_name(dev, syscon_node, "nand-core"); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 291 | if (nand_clk_ctrl & NF_CLOCK_SEL_400_MASK) |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 292 | hw = clk_hw_register_fixed_factor(NULL, nand_name, |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 293 | pll0_name, 0, 2, 5); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 294 | else |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 295 | hw = clk_hw_register_fixed_factor(NULL, nand_name, |
| 296 | core_name, 0, 1, 1); |
| 297 | if (IS_ERR(hw)) { |
| 298 | ret = PTR_ERR(hw); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 299 | goto fail_nand; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 300 | } |
| 301 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 302 | cp110_clks[CP110_CORE_NAND] = hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 303 | |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 304 | /* SDIO clock is PLL0/2.5 */ |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 305 | sdio_name = ap_cp_unique_name(dev, syscon_node, "sdio-core"); |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 306 | hw = clk_hw_register_fixed_factor(NULL, sdio_name, |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 307 | pll0_name, 0, 2, 5); |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 308 | if (IS_ERR(hw)) { |
| 309 | ret = PTR_ERR(hw); |
| 310 | goto fail_sdio; |
| 311 | } |
| 312 | |
| 313 | cp110_clks[CP110_CORE_SDIO] = hw; |
| 314 | |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 315 | /* create the unique name for all the gate clocks */ |
| 316 | for (i = 0; i < ARRAY_SIZE(gate_base_names); i++) |
Gregory CLEMENT | 33c0259 | 2019-07-10 15:43:42 +0200 | [diff] [blame] | 317 | gate_name[i] = ap_cp_unique_name(dev, syscon_node, |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 318 | gate_base_names[i]); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 319 | |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 320 | for (i = 0; i < ARRAY_SIZE(gate_base_names); i++) { |
| 321 | const char *parent; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 322 | |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 323 | if (gate_name[i] == NULL) |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 324 | continue; |
| 325 | |
| 326 | switch (i) { |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 327 | case CP110_GATE_NAND: |
| 328 | parent = nand_name; |
| 329 | break; |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 330 | case CP110_GATE_MG: |
| 331 | case CP110_GATE_GOP_DP: |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 332 | case CP110_GATE_PPV2: |
| 333 | parent = ppv2_name; |
| 334 | break; |
| 335 | case CP110_GATE_SDIO: |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 336 | parent = sdio_name; |
| 337 | break; |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 338 | case CP110_GATE_MAIN: |
| 339 | case CP110_GATE_PCIE_XOR: |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 340 | case CP110_GATE_PCIE_X4: |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 341 | case CP110_GATE_EIP150: |
| 342 | case CP110_GATE_EIP197: |
| 343 | parent = x2core_name; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 344 | break; |
| 345 | default: |
| 346 | parent = core_name; |
| 347 | break; |
| 348 | } |
Gregory CLEMENT | f566727 | 2017-05-31 15:11:09 +0200 | [diff] [blame] | 349 | hw = cp110_register_gate(gate_name[i], parent, regmap, i); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 350 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 351 | if (IS_ERR(hw)) { |
| 352 | ret = PTR_ERR(hw); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 353 | goto fail_gate; |
| 354 | } |
| 355 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 356 | cp110_clks[CP110_MAX_CORE_CLOCKS + i] = hw; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 357 | } |
| 358 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 359 | ret = of_clk_add_hw_provider(np, cp110_of_clk_get, cp110_clk_data); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 360 | if (ret) |
| 361 | goto fail_clk_add; |
| 362 | |
Marcin Wojtas | a0245eb | 2016-09-21 11:05:58 +0200 | [diff] [blame] | 363 | platform_set_drvdata(pdev, cp110_clks); |
| 364 | |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 365 | return 0; |
| 366 | |
| 367 | fail_clk_add: |
| 368 | fail_gate: |
| 369 | for (i = 0; i < CP110_MAX_GATABLE_CLOCKS; i++) { |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 370 | hw = cp110_clks[CP110_MAX_CORE_CLOCKS + i]; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 371 | |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 372 | if (hw) |
| 373 | cp110_unregister_gate(hw); |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 374 | } |
| 375 | |
Konstantin Porotchkin | a45af6d | 2017-05-31 15:19:15 +0200 | [diff] [blame] | 376 | clk_hw_unregister_fixed_factor(cp110_clks[CP110_CORE_SDIO]); |
| 377 | fail_sdio: |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 378 | clk_hw_unregister_fixed_factor(cp110_clks[CP110_CORE_NAND]); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 379 | fail_nand: |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 380 | clk_hw_unregister_fixed_factor(cp110_clks[CP110_CORE_CORE]); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 381 | fail_core: |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 382 | clk_hw_unregister_fixed_factor(cp110_clks[CP110_CORE_X2CORE]); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 383 | fail_eip: |
Marcin Wojtas | 57ecc7a | 2016-09-25 09:47:53 +0200 | [diff] [blame] | 384 | clk_hw_unregister_fixed_factor(cp110_clks[CP110_CORE_PPV2]); |
Gregory CLEMENT | 29e6beb5 | 2017-04-07 15:47:08 +0200 | [diff] [blame] | 385 | fail_ppv2: |
Gregory CLEMENT | c7e92de | 2018-02-28 15:07:51 +0100 | [diff] [blame] | 386 | clk_hw_unregister_fixed_rate(cp110_clks[CP110_CORE_PLL0]); |
| 387 | fail_pll0: |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 388 | return ret; |
| 389 | } |
| 390 | |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 391 | static int cp110_syscon_legacy_clk_probe(struct platform_device *pdev) |
| 392 | { |
| 393 | dev_warn(&pdev->dev, FW_WARN "Using legacy device tree binding\n"); |
| 394 | dev_warn(&pdev->dev, FW_WARN "Update your device tree:\n"); |
| 395 | dev_warn(&pdev->dev, FW_WARN |
| 396 | "This binding won't be supported in future kernels\n"); |
| 397 | |
| 398 | return cp110_syscon_common_probe(pdev, pdev->dev.of_node); |
| 399 | } |
| 400 | |
| 401 | static int cp110_clk_probe(struct platform_device *pdev) |
| 402 | { |
| 403 | return cp110_syscon_common_probe(pdev, pdev->dev.of_node->parent); |
| 404 | } |
| 405 | |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 406 | static const struct of_device_id cp110_syscon_legacy_of_match[] = { |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 407 | { .compatible = "marvell,cp110-system-controller0", }, |
| 408 | { } |
| 409 | }; |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 410 | |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 411 | static struct platform_driver cp110_syscon_legacy_driver = { |
Stephen Boyd | 4a5aa06 | 2017-06-19 17:11:47 -0700 | [diff] [blame] | 412 | .probe = cp110_syscon_legacy_clk_probe, |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 413 | .driver = { |
| 414 | .name = "marvell-cp110-system-controller0", |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 415 | .of_match_table = cp110_syscon_legacy_of_match, |
Paul Gortmaker | 7acf751 | 2016-07-04 17:12:13 -0400 | [diff] [blame] | 416 | .suppress_bind_attrs = true, |
Thomas Petazzoni | d3da3ea | 2016-04-14 17:33:33 +0200 | [diff] [blame] | 417 | }, |
| 418 | }; |
Gregory CLEMENT | 5ffeb5f | 2017-05-30 17:46:06 +0200 | [diff] [blame] | 419 | builtin_platform_driver(cp110_syscon_legacy_driver); |
| 420 | |
| 421 | static const struct of_device_id cp110_clock_of_match[] = { |
| 422 | { .compatible = "marvell,cp110-clock", }, |
| 423 | { } |
| 424 | }; |
| 425 | |
| 426 | static struct platform_driver cp110_clock_driver = { |
| 427 | .probe = cp110_clk_probe, |
| 428 | .driver = { |
| 429 | .name = "marvell-cp110-clock", |
| 430 | .of_match_table = cp110_clock_of_match, |
| 431 | .suppress_bind_attrs = true, |
| 432 | }, |
| 433 | }; |
| 434 | builtin_platform_driver(cp110_clock_driver); |