Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * AmLogic Meson-AXG Clock Controller Driver |
| 4 | * |
| 5 | * Copyright (c) 2016 Baylibre SAS. |
| 6 | * Author: Michael Turquette <mturquette@baylibre.com> |
| 7 | * |
| 8 | * Copyright (c) 2017 Amlogic, inc. |
| 9 | * Author: Qiufang Dai <qiufang.dai@amlogic.com> |
| 10 | */ |
| 11 | |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 12 | #include <linux/clk-provider.h> |
Jerome Brunet | 161f6e5b | 2018-02-12 15:58:35 +0100 | [diff] [blame] | 13 | #include <linux/init.h> |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 14 | #include <linux/of_device.h> |
| 15 | #include <linux/platform_device.h> |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 16 | |
Jerome Brunet | 889c2b7 | 2019-02-01 13:58:41 +0100 | [diff] [blame] | 17 | #include "clk-input.h" |
| 18 | #include "clk-regmap.h" |
| 19 | #include "clk-pll.h" |
| 20 | #include "clk-mpll.h" |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 21 | #include "axg.h" |
Jerome Brunet | 6682bd4 | 2019-02-01 15:53:45 +0100 | [diff] [blame] | 22 | #include "meson-eeclk.h" |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 23 | |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 24 | static DEFINE_SPINLOCK(meson_clk_lock); |
| 25 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 26 | static struct clk_regmap axg_fixed_pll_dco = { |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 27 | .data = &(struct meson_clk_pll_data){ |
Jerome Brunet | e40c7e3 | 2018-08-01 16:00:50 +0200 | [diff] [blame] | 28 | .en = { |
| 29 | .reg_off = HHI_MPLL_CNTL, |
| 30 | .shift = 30, |
| 31 | .width = 1, |
| 32 | }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 33 | .m = { |
| 34 | .reg_off = HHI_MPLL_CNTL, |
| 35 | .shift = 0, |
| 36 | .width = 9, |
| 37 | }, |
| 38 | .n = { |
| 39 | .reg_off = HHI_MPLL_CNTL, |
| 40 | .shift = 9, |
| 41 | .width = 5, |
| 42 | }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 43 | .frac = { |
| 44 | .reg_off = HHI_MPLL_CNTL2, |
| 45 | .shift = 0, |
| 46 | .width = 12, |
| 47 | }, |
| 48 | .l = { |
| 49 | .reg_off = HHI_MPLL_CNTL, |
| 50 | .shift = 31, |
| 51 | .width = 1, |
| 52 | }, |
| 53 | .rst = { |
| 54 | .reg_off = HHI_MPLL_CNTL, |
| 55 | .shift = 29, |
| 56 | .width = 1, |
| 57 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 58 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 59 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 60 | .name = "fixed_pll_dco", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 61 | .ops = &meson_clk_pll_ro_ops, |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 62 | .parent_names = (const char *[]){ IN_PREFIX "xtal" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 63 | .num_parents = 1, |
| 64 | }, |
| 65 | }; |
| 66 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 67 | static struct clk_regmap axg_fixed_pll = { |
| 68 | .data = &(struct clk_regmap_div_data){ |
| 69 | .offset = HHI_MPLL_CNTL, |
| 70 | .shift = 16, |
| 71 | .width = 2, |
| 72 | .flags = CLK_DIVIDER_POWER_OF_TWO, |
| 73 | }, |
| 74 | .hw.init = &(struct clk_init_data){ |
| 75 | .name = "fixed_pll", |
| 76 | .ops = &clk_regmap_divider_ro_ops, |
| 77 | .parent_names = (const char *[]){ "fixed_pll_dco" }, |
| 78 | .num_parents = 1, |
| 79 | /* |
| 80 | * This clock won't ever change at runtime so |
| 81 | * CLK_SET_RATE_PARENT is not required |
| 82 | */ |
| 83 | }, |
| 84 | }; |
| 85 | |
| 86 | static struct clk_regmap axg_sys_pll_dco = { |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 87 | .data = &(struct meson_clk_pll_data){ |
Jerome Brunet | e40c7e3 | 2018-08-01 16:00:50 +0200 | [diff] [blame] | 88 | .en = { |
| 89 | .reg_off = HHI_SYS_PLL_CNTL, |
| 90 | .shift = 30, |
| 91 | .width = 1, |
| 92 | }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 93 | .m = { |
| 94 | .reg_off = HHI_SYS_PLL_CNTL, |
| 95 | .shift = 0, |
| 96 | .width = 9, |
| 97 | }, |
| 98 | .n = { |
| 99 | .reg_off = HHI_SYS_PLL_CNTL, |
| 100 | .shift = 9, |
| 101 | .width = 5, |
| 102 | }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 103 | .l = { |
| 104 | .reg_off = HHI_SYS_PLL_CNTL, |
| 105 | .shift = 31, |
| 106 | .width = 1, |
| 107 | }, |
| 108 | .rst = { |
| 109 | .reg_off = HHI_SYS_PLL_CNTL, |
| 110 | .shift = 29, |
| 111 | .width = 1, |
| 112 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 113 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 114 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 115 | .name = "sys_pll_dco", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 116 | .ops = &meson_clk_pll_ro_ops, |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 117 | .parent_names = (const char *[]){ IN_PREFIX "xtal" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 118 | .num_parents = 1, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 119 | }, |
| 120 | }; |
| 121 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 122 | static struct clk_regmap axg_sys_pll = { |
| 123 | .data = &(struct clk_regmap_div_data){ |
| 124 | .offset = HHI_SYS_PLL_CNTL, |
| 125 | .shift = 16, |
| 126 | .width = 2, |
| 127 | .flags = CLK_DIVIDER_POWER_OF_TWO, |
| 128 | }, |
| 129 | .hw.init = &(struct clk_init_data){ |
| 130 | .name = "sys_pll", |
| 131 | .ops = &clk_regmap_divider_ro_ops, |
| 132 | .parent_names = (const char *[]){ "sys_pll_dco" }, |
| 133 | .num_parents = 1, |
| 134 | .flags = CLK_SET_RATE_PARENT, |
| 135 | }, |
| 136 | }; |
| 137 | |
Jerome Brunet | dd601db | 2018-08-01 16:00:53 +0200 | [diff] [blame] | 138 | static const struct pll_params_table axg_gp0_pll_params_table[] = { |
| 139 | PLL_PARAMS(40, 1), |
| 140 | PLL_PARAMS(41, 1), |
| 141 | PLL_PARAMS(42, 1), |
| 142 | PLL_PARAMS(43, 1), |
| 143 | PLL_PARAMS(44, 1), |
| 144 | PLL_PARAMS(45, 1), |
| 145 | PLL_PARAMS(46, 1), |
| 146 | PLL_PARAMS(47, 1), |
| 147 | PLL_PARAMS(48, 1), |
| 148 | PLL_PARAMS(49, 1), |
| 149 | PLL_PARAMS(50, 1), |
| 150 | PLL_PARAMS(51, 1), |
| 151 | PLL_PARAMS(52, 1), |
| 152 | PLL_PARAMS(53, 1), |
| 153 | PLL_PARAMS(54, 1), |
| 154 | PLL_PARAMS(55, 1), |
| 155 | PLL_PARAMS(56, 1), |
| 156 | PLL_PARAMS(57, 1), |
| 157 | PLL_PARAMS(58, 1), |
| 158 | PLL_PARAMS(59, 1), |
| 159 | PLL_PARAMS(60, 1), |
| 160 | PLL_PARAMS(61, 1), |
| 161 | PLL_PARAMS(62, 1), |
| 162 | PLL_PARAMS(63, 1), |
| 163 | PLL_PARAMS(64, 1), |
| 164 | PLL_PARAMS(65, 1), |
| 165 | PLL_PARAMS(66, 1), |
| 166 | PLL_PARAMS(67, 1), |
| 167 | PLL_PARAMS(68, 1), |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 168 | { /* sentinel */ }, |
| 169 | }; |
| 170 | |
Stephen Boyd | 5d1c04d | 2018-03-14 15:36:31 -0700 | [diff] [blame] | 171 | static const struct reg_sequence axg_gp0_init_regs[] = { |
Jerome Brunet | c77de0e | 2018-02-19 12:21:40 +0100 | [diff] [blame] | 172 | { .reg = HHI_GP0_PLL_CNTL1, .def = 0xc084b000 }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 173 | { .reg = HHI_GP0_PLL_CNTL2, .def = 0xb75020be }, |
| 174 | { .reg = HHI_GP0_PLL_CNTL3, .def = 0x0a59a288 }, |
| 175 | { .reg = HHI_GP0_PLL_CNTL4, .def = 0xc000004d }, |
| 176 | { .reg = HHI_GP0_PLL_CNTL5, .def = 0x00078000 }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 177 | }; |
| 178 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 179 | static struct clk_regmap axg_gp0_pll_dco = { |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 180 | .data = &(struct meson_clk_pll_data){ |
Jerome Brunet | e40c7e3 | 2018-08-01 16:00:50 +0200 | [diff] [blame] | 181 | .en = { |
| 182 | .reg_off = HHI_GP0_PLL_CNTL, |
| 183 | .shift = 30, |
| 184 | .width = 1, |
| 185 | }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 186 | .m = { |
| 187 | .reg_off = HHI_GP0_PLL_CNTL, |
| 188 | .shift = 0, |
| 189 | .width = 9, |
| 190 | }, |
| 191 | .n = { |
| 192 | .reg_off = HHI_GP0_PLL_CNTL, |
| 193 | .shift = 9, |
| 194 | .width = 5, |
| 195 | }, |
Jerome Brunet | c77de0e | 2018-02-19 12:21:40 +0100 | [diff] [blame] | 196 | .frac = { |
| 197 | .reg_off = HHI_GP0_PLL_CNTL1, |
| 198 | .shift = 0, |
| 199 | .width = 10, |
| 200 | }, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 201 | .l = { |
| 202 | .reg_off = HHI_GP0_PLL_CNTL, |
| 203 | .shift = 31, |
| 204 | .width = 1, |
| 205 | }, |
| 206 | .rst = { |
| 207 | .reg_off = HHI_GP0_PLL_CNTL, |
| 208 | .shift = 29, |
| 209 | .width = 1, |
| 210 | }, |
Jerome Brunet | dd601db | 2018-08-01 16:00:53 +0200 | [diff] [blame] | 211 | .table = axg_gp0_pll_params_table, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 212 | .init_regs = axg_gp0_init_regs, |
| 213 | .init_count = ARRAY_SIZE(axg_gp0_init_regs), |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 214 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 215 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 216 | .name = "gp0_pll_dco", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 217 | .ops = &meson_clk_pll_ops, |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 218 | .parent_names = (const char *[]){ IN_PREFIX "xtal" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 219 | .num_parents = 1, |
| 220 | }, |
| 221 | }; |
| 222 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 223 | static struct clk_regmap axg_gp0_pll = { |
| 224 | .data = &(struct clk_regmap_div_data){ |
| 225 | .offset = HHI_GP0_PLL_CNTL, |
| 226 | .shift = 16, |
| 227 | .width = 2, |
| 228 | .flags = CLK_DIVIDER_POWER_OF_TWO, |
| 229 | }, |
| 230 | .hw.init = &(struct clk_init_data){ |
| 231 | .name = "gp0_pll", |
| 232 | .ops = &clk_regmap_divider_ops, |
| 233 | .parent_names = (const char *[]){ "gp0_pll_dco" }, |
| 234 | .num_parents = 1, |
| 235 | .flags = CLK_SET_RATE_PARENT, |
| 236 | }, |
| 237 | }; |
| 238 | |
Stephen Boyd | 5d1c04d | 2018-03-14 15:36:31 -0700 | [diff] [blame] | 239 | static const struct reg_sequence axg_hifi_init_regs[] = { |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 240 | { .reg = HHI_HIFI_PLL_CNTL1, .def = 0xc084b000 }, |
| 241 | { .reg = HHI_HIFI_PLL_CNTL2, .def = 0xb75020be }, |
| 242 | { .reg = HHI_HIFI_PLL_CNTL3, .def = 0x0a6a3a88 }, |
| 243 | { .reg = HHI_HIFI_PLL_CNTL4, .def = 0xc000004d }, |
| 244 | { .reg = HHI_HIFI_PLL_CNTL5, .def = 0x00058000 }, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 245 | }; |
| 246 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 247 | static struct clk_regmap axg_hifi_pll_dco = { |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 248 | .data = &(struct meson_clk_pll_data){ |
Jerome Brunet | e40c7e3 | 2018-08-01 16:00:50 +0200 | [diff] [blame] | 249 | .en = { |
| 250 | .reg_off = HHI_HIFI_PLL_CNTL, |
| 251 | .shift = 30, |
| 252 | .width = 1, |
| 253 | }, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 254 | .m = { |
| 255 | .reg_off = HHI_HIFI_PLL_CNTL, |
| 256 | .shift = 0, |
| 257 | .width = 9, |
| 258 | }, |
| 259 | .n = { |
| 260 | .reg_off = HHI_HIFI_PLL_CNTL, |
| 261 | .shift = 9, |
| 262 | .width = 5, |
| 263 | }, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 264 | .frac = { |
| 265 | .reg_off = HHI_HIFI_PLL_CNTL5, |
| 266 | .shift = 0, |
| 267 | .width = 13, |
| 268 | }, |
| 269 | .l = { |
| 270 | .reg_off = HHI_HIFI_PLL_CNTL, |
| 271 | .shift = 31, |
| 272 | .width = 1, |
| 273 | }, |
| 274 | .rst = { |
| 275 | .reg_off = HHI_HIFI_PLL_CNTL, |
| 276 | .shift = 29, |
| 277 | .width = 1, |
| 278 | }, |
Jerome Brunet | dd601db | 2018-08-01 16:00:53 +0200 | [diff] [blame] | 279 | .table = axg_gp0_pll_params_table, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 280 | .init_regs = axg_hifi_init_regs, |
| 281 | .init_count = ARRAY_SIZE(axg_hifi_init_regs), |
| 282 | .flags = CLK_MESON_PLL_ROUND_CLOSEST, |
| 283 | }, |
| 284 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 285 | .name = "hifi_pll_dco", |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 286 | .ops = &meson_clk_pll_ops, |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 287 | .parent_names = (const char *[]){ IN_PREFIX "xtal" }, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 288 | .num_parents = 1, |
| 289 | }, |
| 290 | }; |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 291 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 292 | static struct clk_regmap axg_hifi_pll = { |
| 293 | .data = &(struct clk_regmap_div_data){ |
| 294 | .offset = HHI_HIFI_PLL_CNTL, |
| 295 | .shift = 16, |
| 296 | .width = 2, |
| 297 | .flags = CLK_DIVIDER_POWER_OF_TWO, |
| 298 | }, |
| 299 | .hw.init = &(struct clk_init_data){ |
| 300 | .name = "hifi_pll", |
| 301 | .ops = &clk_regmap_divider_ops, |
| 302 | .parent_names = (const char *[]){ "hifi_pll_dco" }, |
| 303 | .num_parents = 1, |
| 304 | .flags = CLK_SET_RATE_PARENT, |
| 305 | }, |
| 306 | }; |
| 307 | |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 308 | static struct clk_fixed_factor axg_fclk_div2_div = { |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 309 | .mult = 1, |
| 310 | .div = 2, |
| 311 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 312 | .name = "fclk_div2_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 313 | .ops = &clk_fixed_factor_ops, |
| 314 | .parent_names = (const char *[]){ "fixed_pll" }, |
| 315 | .num_parents = 1, |
| 316 | }, |
| 317 | }; |
| 318 | |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 319 | static struct clk_regmap axg_fclk_div2 = { |
| 320 | .data = &(struct clk_regmap_gate_data){ |
| 321 | .offset = HHI_MPLL_CNTL6, |
| 322 | .bit_idx = 27, |
| 323 | }, |
| 324 | .hw.init = &(struct clk_init_data){ |
| 325 | .name = "fclk_div2", |
| 326 | .ops = &clk_regmap_gate_ops, |
| 327 | .parent_names = (const char *[]){ "fclk_div2_div" }, |
| 328 | .num_parents = 1, |
Jerome Brunet | d6ee1e7 | 2018-11-08 10:31:23 +0100 | [diff] [blame] | 329 | .flags = CLK_IS_CRITICAL, |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 330 | }, |
| 331 | }; |
| 332 | |
| 333 | static struct clk_fixed_factor axg_fclk_div3_div = { |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 334 | .mult = 1, |
| 335 | .div = 3, |
| 336 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 337 | .name = "fclk_div3_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 338 | .ops = &clk_fixed_factor_ops, |
| 339 | .parent_names = (const char *[]){ "fixed_pll" }, |
| 340 | .num_parents = 1, |
| 341 | }, |
| 342 | }; |
| 343 | |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 344 | static struct clk_regmap axg_fclk_div3 = { |
| 345 | .data = &(struct clk_regmap_gate_data){ |
| 346 | .offset = HHI_MPLL_CNTL6, |
| 347 | .bit_idx = 28, |
| 348 | }, |
| 349 | .hw.init = &(struct clk_init_data){ |
| 350 | .name = "fclk_div3", |
| 351 | .ops = &clk_regmap_gate_ops, |
| 352 | .parent_names = (const char *[]){ "fclk_div3_div" }, |
| 353 | .num_parents = 1, |
Jerome Brunet | d6ee1e7 | 2018-11-08 10:31:23 +0100 | [diff] [blame] | 354 | /* |
| 355 | * FIXME: |
| 356 | * This clock, as fdiv2, is used by the SCPI FW and is required |
| 357 | * by the platform to operate correctly. |
| 358 | * Until the following condition are met, we need this clock to |
| 359 | * be marked as critical: |
| 360 | * a) The SCPI generic driver claims and enable all the clocks |
| 361 | * it needs |
| 362 | * b) CCF has a clock hand-off mechanism to make the sure the |
| 363 | * clock stays on until the proper driver comes along |
| 364 | */ |
| 365 | .flags = CLK_IS_CRITICAL, |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 366 | }, |
| 367 | }; |
| 368 | |
| 369 | static struct clk_fixed_factor axg_fclk_div4_div = { |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 370 | .mult = 1, |
| 371 | .div = 4, |
| 372 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 373 | .name = "fclk_div4_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 374 | .ops = &clk_fixed_factor_ops, |
| 375 | .parent_names = (const char *[]){ "fixed_pll" }, |
| 376 | .num_parents = 1, |
| 377 | }, |
| 378 | }; |
| 379 | |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 380 | static struct clk_regmap axg_fclk_div4 = { |
| 381 | .data = &(struct clk_regmap_gate_data){ |
| 382 | .offset = HHI_MPLL_CNTL6, |
| 383 | .bit_idx = 29, |
| 384 | }, |
| 385 | .hw.init = &(struct clk_init_data){ |
| 386 | .name = "fclk_div4", |
| 387 | .ops = &clk_regmap_gate_ops, |
| 388 | .parent_names = (const char *[]){ "fclk_div4_div" }, |
| 389 | .num_parents = 1, |
| 390 | }, |
| 391 | }; |
| 392 | |
| 393 | static struct clk_fixed_factor axg_fclk_div5_div = { |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 394 | .mult = 1, |
| 395 | .div = 5, |
| 396 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 397 | .name = "fclk_div5_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 398 | .ops = &clk_fixed_factor_ops, |
| 399 | .parent_names = (const char *[]){ "fixed_pll" }, |
| 400 | .num_parents = 1, |
| 401 | }, |
| 402 | }; |
| 403 | |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 404 | static struct clk_regmap axg_fclk_div5 = { |
| 405 | .data = &(struct clk_regmap_gate_data){ |
| 406 | .offset = HHI_MPLL_CNTL6, |
| 407 | .bit_idx = 30, |
| 408 | }, |
| 409 | .hw.init = &(struct clk_init_data){ |
| 410 | .name = "fclk_div5", |
| 411 | .ops = &clk_regmap_gate_ops, |
| 412 | .parent_names = (const char *[]){ "fclk_div5_div" }, |
| 413 | .num_parents = 1, |
| 414 | }, |
| 415 | }; |
| 416 | |
| 417 | static struct clk_fixed_factor axg_fclk_div7_div = { |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 418 | .mult = 1, |
| 419 | .div = 7, |
| 420 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 421 | .name = "fclk_div7_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 422 | .ops = &clk_fixed_factor_ops, |
| 423 | .parent_names = (const char *[]){ "fixed_pll" }, |
| 424 | .num_parents = 1, |
| 425 | }, |
| 426 | }; |
| 427 | |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 428 | static struct clk_regmap axg_fclk_div7 = { |
| 429 | .data = &(struct clk_regmap_gate_data){ |
| 430 | .offset = HHI_MPLL_CNTL6, |
| 431 | .bit_idx = 31, |
| 432 | }, |
| 433 | .hw.init = &(struct clk_init_data){ |
| 434 | .name = "fclk_div7", |
| 435 | .ops = &clk_regmap_gate_ops, |
| 436 | .parent_names = (const char *[]){ "fclk_div7_div" }, |
| 437 | .num_parents = 1, |
| 438 | }, |
| 439 | }; |
| 440 | |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 441 | static struct clk_regmap axg_mpll_prediv = { |
| 442 | .data = &(struct clk_regmap_div_data){ |
| 443 | .offset = HHI_MPLL_CNTL5, |
| 444 | .shift = 12, |
| 445 | .width = 1, |
| 446 | }, |
| 447 | .hw.init = &(struct clk_init_data){ |
| 448 | .name = "mpll_prediv", |
| 449 | .ops = &clk_regmap_divider_ro_ops, |
| 450 | .parent_names = (const char *[]){ "fixed_pll" }, |
| 451 | .num_parents = 1, |
| 452 | }, |
| 453 | }; |
| 454 | |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 455 | static struct clk_regmap axg_mpll0_div = { |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 456 | .data = &(struct meson_clk_mpll_data){ |
| 457 | .sdm = { |
| 458 | .reg_off = HHI_MPLL_CNTL7, |
| 459 | .shift = 0, |
| 460 | .width = 14, |
| 461 | }, |
| 462 | .sdm_en = { |
| 463 | .reg_off = HHI_MPLL_CNTL7, |
| 464 | .shift = 15, |
| 465 | .width = 1, |
| 466 | }, |
| 467 | .n2 = { |
| 468 | .reg_off = HHI_MPLL_CNTL7, |
| 469 | .shift = 16, |
| 470 | .width = 9, |
| 471 | }, |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 472 | .misc = { |
| 473 | .reg_off = HHI_PLL_TOP_MISC, |
| 474 | .shift = 0, |
| 475 | .width = 1, |
| 476 | }, |
| 477 | .lock = &meson_clk_lock, |
Jerome Brunet | de1ca2d | 2018-05-15 18:36:52 +0200 | [diff] [blame] | 478 | .flags = CLK_MESON_MPLL_ROUND_CLOSEST, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 479 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 480 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 481 | .name = "mpll0_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 482 | .ops = &meson_clk_mpll_ops, |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 483 | .parent_names = (const char *[]){ "mpll_prediv" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 484 | .num_parents = 1, |
| 485 | }, |
| 486 | }; |
| 487 | |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 488 | static struct clk_regmap axg_mpll0 = { |
| 489 | .data = &(struct clk_regmap_gate_data){ |
| 490 | .offset = HHI_MPLL_CNTL7, |
| 491 | .bit_idx = 14, |
| 492 | }, |
| 493 | .hw.init = &(struct clk_init_data){ |
| 494 | .name = "mpll0", |
| 495 | .ops = &clk_regmap_gate_ops, |
| 496 | .parent_names = (const char *[]){ "mpll0_div" }, |
| 497 | .num_parents = 1, |
| 498 | .flags = CLK_SET_RATE_PARENT, |
| 499 | }, |
| 500 | }; |
| 501 | |
| 502 | static struct clk_regmap axg_mpll1_div = { |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 503 | .data = &(struct meson_clk_mpll_data){ |
| 504 | .sdm = { |
| 505 | .reg_off = HHI_MPLL_CNTL8, |
| 506 | .shift = 0, |
| 507 | .width = 14, |
| 508 | }, |
| 509 | .sdm_en = { |
| 510 | .reg_off = HHI_MPLL_CNTL8, |
| 511 | .shift = 15, |
| 512 | .width = 1, |
| 513 | }, |
| 514 | .n2 = { |
| 515 | .reg_off = HHI_MPLL_CNTL8, |
| 516 | .shift = 16, |
| 517 | .width = 9, |
| 518 | }, |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 519 | .misc = { |
| 520 | .reg_off = HHI_PLL_TOP_MISC, |
| 521 | .shift = 1, |
| 522 | .width = 1, |
| 523 | }, |
| 524 | .lock = &meson_clk_lock, |
Jerome Brunet | de1ca2d | 2018-05-15 18:36:52 +0200 | [diff] [blame] | 525 | .flags = CLK_MESON_MPLL_ROUND_CLOSEST, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 526 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 527 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 528 | .name = "mpll1_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 529 | .ops = &meson_clk_mpll_ops, |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 530 | .parent_names = (const char *[]){ "mpll_prediv" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 531 | .num_parents = 1, |
| 532 | }, |
| 533 | }; |
| 534 | |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 535 | static struct clk_regmap axg_mpll1 = { |
| 536 | .data = &(struct clk_regmap_gate_data){ |
| 537 | .offset = HHI_MPLL_CNTL8, |
| 538 | .bit_idx = 14, |
| 539 | }, |
| 540 | .hw.init = &(struct clk_init_data){ |
| 541 | .name = "mpll1", |
| 542 | .ops = &clk_regmap_gate_ops, |
| 543 | .parent_names = (const char *[]){ "mpll1_div" }, |
| 544 | .num_parents = 1, |
| 545 | .flags = CLK_SET_RATE_PARENT, |
| 546 | }, |
| 547 | }; |
| 548 | |
| 549 | static struct clk_regmap axg_mpll2_div = { |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 550 | .data = &(struct meson_clk_mpll_data){ |
| 551 | .sdm = { |
| 552 | .reg_off = HHI_MPLL_CNTL9, |
| 553 | .shift = 0, |
| 554 | .width = 14, |
| 555 | }, |
| 556 | .sdm_en = { |
| 557 | .reg_off = HHI_MPLL_CNTL9, |
| 558 | .shift = 15, |
| 559 | .width = 1, |
| 560 | }, |
| 561 | .n2 = { |
| 562 | .reg_off = HHI_MPLL_CNTL9, |
| 563 | .shift = 16, |
| 564 | .width = 9, |
| 565 | }, |
Jerome Brunet | dc4e62d | 2019-05-13 14:31:11 +0200 | [diff] [blame] | 566 | .ssen = { |
| 567 | .reg_off = HHI_MPLL_CNTL, |
| 568 | .shift = 25, |
| 569 | .width = 1, |
| 570 | }, |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 571 | .misc = { |
| 572 | .reg_off = HHI_PLL_TOP_MISC, |
| 573 | .shift = 2, |
| 574 | .width = 1, |
| 575 | }, |
| 576 | .lock = &meson_clk_lock, |
Jerome Brunet | de1ca2d | 2018-05-15 18:36:52 +0200 | [diff] [blame] | 577 | .flags = CLK_MESON_MPLL_ROUND_CLOSEST, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 578 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 579 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 580 | .name = "mpll2_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 581 | .ops = &meson_clk_mpll_ops, |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 582 | .parent_names = (const char *[]){ "mpll_prediv" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 583 | .num_parents = 1, |
| 584 | }, |
| 585 | }; |
| 586 | |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 587 | static struct clk_regmap axg_mpll2 = { |
| 588 | .data = &(struct clk_regmap_gate_data){ |
| 589 | .offset = HHI_MPLL_CNTL9, |
| 590 | .bit_idx = 14, |
| 591 | }, |
| 592 | .hw.init = &(struct clk_init_data){ |
| 593 | .name = "mpll2", |
| 594 | .ops = &clk_regmap_gate_ops, |
| 595 | .parent_names = (const char *[]){ "mpll2_div" }, |
| 596 | .num_parents = 1, |
| 597 | .flags = CLK_SET_RATE_PARENT, |
| 598 | }, |
| 599 | }; |
| 600 | |
| 601 | static struct clk_regmap axg_mpll3_div = { |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 602 | .data = &(struct meson_clk_mpll_data){ |
| 603 | .sdm = { |
| 604 | .reg_off = HHI_MPLL3_CNTL0, |
| 605 | .shift = 12, |
| 606 | .width = 14, |
| 607 | }, |
| 608 | .sdm_en = { |
| 609 | .reg_off = HHI_MPLL3_CNTL0, |
| 610 | .shift = 11, |
| 611 | .width = 1, |
| 612 | }, |
| 613 | .n2 = { |
| 614 | .reg_off = HHI_MPLL3_CNTL0, |
| 615 | .shift = 2, |
| 616 | .width = 9, |
| 617 | }, |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 618 | .misc = { |
| 619 | .reg_off = HHI_PLL_TOP_MISC, |
| 620 | .shift = 3, |
| 621 | .width = 1, |
| 622 | }, |
| 623 | .lock = &meson_clk_lock, |
Jerome Brunet | de1ca2d | 2018-05-15 18:36:52 +0200 | [diff] [blame] | 624 | .flags = CLK_MESON_MPLL_ROUND_CLOSEST, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 625 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 626 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 627 | .name = "mpll3_div", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 628 | .ops = &meson_clk_mpll_ops, |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 629 | .parent_names = (const char *[]){ "mpll_prediv" }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 630 | .num_parents = 1, |
| 631 | }, |
| 632 | }; |
| 633 | |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 634 | static struct clk_regmap axg_mpll3 = { |
| 635 | .data = &(struct clk_regmap_gate_data){ |
| 636 | .offset = HHI_MPLL3_CNTL0, |
| 637 | .bit_idx = 0, |
| 638 | }, |
| 639 | .hw.init = &(struct clk_init_data){ |
| 640 | .name = "mpll3", |
| 641 | .ops = &clk_regmap_gate_ops, |
| 642 | .parent_names = (const char *[]){ "mpll3_div" }, |
| 643 | .num_parents = 1, |
| 644 | .flags = CLK_SET_RATE_PARENT, |
| 645 | }, |
| 646 | }; |
| 647 | |
Jerome Brunet | dd601db | 2018-08-01 16:00:53 +0200 | [diff] [blame] | 648 | static const struct pll_params_table axg_pcie_pll_params_table[] = { |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 649 | { |
Jerome Brunet | dd601db | 2018-08-01 16:00:53 +0200 | [diff] [blame] | 650 | .m = 200, |
| 651 | .n = 3, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 652 | }, |
| 653 | { /* sentinel */ }, |
| 654 | }; |
| 655 | |
| 656 | static const struct reg_sequence axg_pcie_init_regs[] = { |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 657 | { .reg = HHI_PCIE_PLL_CNTL1, .def = 0x0084a2aa }, |
| 658 | { .reg = HHI_PCIE_PLL_CNTL2, .def = 0xb75020be }, |
| 659 | { .reg = HHI_PCIE_PLL_CNTL3, .def = 0x0a47488e }, |
| 660 | { .reg = HHI_PCIE_PLL_CNTL4, .def = 0xc000004d }, |
| 661 | { .reg = HHI_PCIE_PLL_CNTL5, .def = 0x00078000 }, |
| 662 | { .reg = HHI_PCIE_PLL_CNTL6, .def = 0x002323c6 }, |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 663 | { .reg = HHI_PCIE_PLL_CNTL, .def = 0x400106c8 }, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 664 | }; |
| 665 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 666 | static struct clk_regmap axg_pcie_pll_dco = { |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 667 | .data = &(struct meson_clk_pll_data){ |
Jerome Brunet | e40c7e3 | 2018-08-01 16:00:50 +0200 | [diff] [blame] | 668 | .en = { |
| 669 | .reg_off = HHI_PCIE_PLL_CNTL, |
| 670 | .shift = 30, |
| 671 | .width = 1, |
| 672 | }, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 673 | .m = { |
| 674 | .reg_off = HHI_PCIE_PLL_CNTL, |
| 675 | .shift = 0, |
| 676 | .width = 9, |
| 677 | }, |
| 678 | .n = { |
| 679 | .reg_off = HHI_PCIE_PLL_CNTL, |
| 680 | .shift = 9, |
| 681 | .width = 5, |
| 682 | }, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 683 | .frac = { |
| 684 | .reg_off = HHI_PCIE_PLL_CNTL1, |
| 685 | .shift = 0, |
| 686 | .width = 12, |
| 687 | }, |
| 688 | .l = { |
| 689 | .reg_off = HHI_PCIE_PLL_CNTL, |
| 690 | .shift = 31, |
| 691 | .width = 1, |
| 692 | }, |
| 693 | .rst = { |
| 694 | .reg_off = HHI_PCIE_PLL_CNTL, |
| 695 | .shift = 29, |
| 696 | .width = 1, |
| 697 | }, |
Jerome Brunet | dd601db | 2018-08-01 16:00:53 +0200 | [diff] [blame] | 698 | .table = axg_pcie_pll_params_table, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 699 | .init_regs = axg_pcie_init_regs, |
| 700 | .init_count = ARRAY_SIZE(axg_pcie_init_regs), |
| 701 | }, |
| 702 | .hw.init = &(struct clk_init_data){ |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 703 | .name = "pcie_pll_dco", |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 704 | .ops = &meson_clk_pll_ops, |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 705 | .parent_names = (const char *[]){ IN_PREFIX "xtal" }, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 706 | .num_parents = 1, |
| 707 | }, |
| 708 | }; |
| 709 | |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 710 | static struct clk_regmap axg_pcie_pll_od = { |
| 711 | .data = &(struct clk_regmap_div_data){ |
| 712 | .offset = HHI_PCIE_PLL_CNTL, |
| 713 | .shift = 16, |
| 714 | .width = 2, |
| 715 | .flags = CLK_DIVIDER_POWER_OF_TWO, |
| 716 | }, |
| 717 | .hw.init = &(struct clk_init_data){ |
| 718 | .name = "pcie_pll_od", |
| 719 | .ops = &clk_regmap_divider_ops, |
| 720 | .parent_names = (const char *[]){ "pcie_pll_dco" }, |
| 721 | .num_parents = 1, |
| 722 | .flags = CLK_SET_RATE_PARENT, |
| 723 | }, |
| 724 | }; |
| 725 | |
| 726 | static struct clk_regmap axg_pcie_pll = { |
| 727 | .data = &(struct clk_regmap_div_data){ |
| 728 | .offset = HHI_PCIE_PLL_CNTL6, |
| 729 | .shift = 6, |
| 730 | .width = 2, |
| 731 | .flags = CLK_DIVIDER_POWER_OF_TWO, |
| 732 | }, |
| 733 | .hw.init = &(struct clk_init_data){ |
| 734 | .name = "pcie_pll", |
| 735 | .ops = &clk_regmap_divider_ops, |
| 736 | .parent_names = (const char *[]){ "pcie_pll_od" }, |
| 737 | .num_parents = 1, |
| 738 | .flags = CLK_SET_RATE_PARENT, |
| 739 | }, |
| 740 | }; |
| 741 | |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 742 | static struct clk_regmap axg_pcie_mux = { |
| 743 | .data = &(struct clk_regmap_mux_data){ |
| 744 | .offset = HHI_PCIE_PLL_CNTL6, |
| 745 | .mask = 0x1, |
| 746 | .shift = 2, |
Yixun Lan | 69b9310 | 2018-08-01 12:16:24 +0000 | [diff] [blame] | 747 | /* skip the parent mpll3, reserved for debug */ |
| 748 | .table = (u32[]){ 1 }, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 749 | }, |
| 750 | .hw.init = &(struct clk_init_data){ |
| 751 | .name = "pcie_mux", |
| 752 | .ops = &clk_regmap_mux_ops, |
Yixun Lan | 69b9310 | 2018-08-01 12:16:24 +0000 | [diff] [blame] | 753 | .parent_names = (const char *[]){ "pcie_pll" }, |
| 754 | .num_parents = 1, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 755 | .flags = CLK_SET_RATE_PARENT, |
| 756 | }, |
| 757 | }; |
| 758 | |
| 759 | static struct clk_regmap axg_pcie_ref = { |
| 760 | .data = &(struct clk_regmap_mux_data){ |
| 761 | .offset = HHI_PCIE_PLL_CNTL6, |
| 762 | .mask = 0x1, |
| 763 | .shift = 1, |
| 764 | /* skip the parent 0, reserved for debug */ |
| 765 | .table = (u32[]){ 1 }, |
| 766 | }, |
| 767 | .hw.init = &(struct clk_init_data){ |
| 768 | .name = "pcie_ref", |
| 769 | .ops = &clk_regmap_mux_ops, |
| 770 | .parent_names = (const char *[]){ "pcie_mux" }, |
| 771 | .num_parents = 1, |
| 772 | .flags = CLK_SET_RATE_PARENT, |
| 773 | }, |
| 774 | }; |
| 775 | |
| 776 | static struct clk_regmap axg_pcie_cml_en0 = { |
| 777 | .data = &(struct clk_regmap_gate_data){ |
| 778 | .offset = HHI_PCIE_PLL_CNTL6, |
| 779 | .bit_idx = 4, |
| 780 | }, |
| 781 | .hw.init = &(struct clk_init_data) { |
| 782 | .name = "pcie_cml_en0", |
| 783 | .ops = &clk_regmap_gate_ops, |
| 784 | .parent_names = (const char *[]){ "pcie_ref" }, |
| 785 | .num_parents = 1, |
| 786 | .flags = CLK_SET_RATE_PARENT, |
| 787 | |
| 788 | }, |
| 789 | }; |
| 790 | |
| 791 | static struct clk_regmap axg_pcie_cml_en1 = { |
| 792 | .data = &(struct clk_regmap_gate_data){ |
| 793 | .offset = HHI_PCIE_PLL_CNTL6, |
| 794 | .bit_idx = 3, |
| 795 | }, |
| 796 | .hw.init = &(struct clk_init_data) { |
| 797 | .name = "pcie_cml_en1", |
| 798 | .ops = &clk_regmap_gate_ops, |
| 799 | .parent_names = (const char *[]){ "pcie_ref" }, |
| 800 | .num_parents = 1, |
| 801 | .flags = CLK_SET_RATE_PARENT, |
| 802 | }, |
| 803 | }; |
| 804 | |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 805 | static u32 mux_table_clk81[] = { 0, 2, 3, 4, 5, 6, 7 }; |
| 806 | static const char * const clk81_parent_names[] = { |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 807 | IN_PREFIX "xtal", "fclk_div7", "mpll1", "mpll2", "fclk_div4", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 808 | "fclk_div3", "fclk_div5" |
| 809 | }; |
| 810 | |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 811 | static struct clk_regmap axg_mpeg_clk_sel = { |
| 812 | .data = &(struct clk_regmap_mux_data){ |
| 813 | .offset = HHI_MPEG_CLK_CNTL, |
| 814 | .mask = 0x7, |
| 815 | .shift = 12, |
| 816 | .table = mux_table_clk81, |
| 817 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 818 | .hw.init = &(struct clk_init_data){ |
| 819 | .name = "mpeg_clk_sel", |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 820 | .ops = &clk_regmap_mux_ro_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 821 | .parent_names = clk81_parent_names, |
| 822 | .num_parents = ARRAY_SIZE(clk81_parent_names), |
| 823 | }, |
| 824 | }; |
| 825 | |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 826 | static struct clk_regmap axg_mpeg_clk_div = { |
| 827 | .data = &(struct clk_regmap_div_data){ |
| 828 | .offset = HHI_MPEG_CLK_CNTL, |
| 829 | .shift = 0, |
| 830 | .width = 7, |
| 831 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 832 | .hw.init = &(struct clk_init_data){ |
| 833 | .name = "mpeg_clk_div", |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 834 | .ops = &clk_regmap_divider_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 835 | .parent_names = (const char *[]){ "mpeg_clk_sel" }, |
| 836 | .num_parents = 1, |
| 837 | .flags = CLK_SET_RATE_PARENT, |
| 838 | }, |
| 839 | }; |
| 840 | |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 841 | static struct clk_regmap axg_clk81 = { |
| 842 | .data = &(struct clk_regmap_gate_data){ |
| 843 | .offset = HHI_MPEG_CLK_CNTL, |
| 844 | .bit_idx = 7, |
| 845 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 846 | .hw.init = &(struct clk_init_data){ |
| 847 | .name = "clk81", |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 848 | .ops = &clk_regmap_gate_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 849 | .parent_names = (const char *[]){ "mpeg_clk_div" }, |
| 850 | .num_parents = 1, |
| 851 | .flags = (CLK_SET_RATE_PARENT | CLK_IS_CRITICAL), |
| 852 | }, |
| 853 | }; |
| 854 | |
| 855 | static const char * const axg_sd_emmc_clk0_parent_names[] = { |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 856 | IN_PREFIX "xtal", "fclk_div2", "fclk_div3", "fclk_div5", "fclk_div7", |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 857 | |
| 858 | /* |
| 859 | * Following these parent clocks, we should also have had mpll2, mpll3 |
| 860 | * and gp0_pll but these clocks are too precious to be used here. All |
| 861 | * the necessary rates for MMC and NAND operation can be acheived using |
| 862 | * xtal or fclk_div clocks |
| 863 | */ |
| 864 | }; |
| 865 | |
| 866 | /* SDcard clock */ |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 867 | static struct clk_regmap axg_sd_emmc_b_clk0_sel = { |
| 868 | .data = &(struct clk_regmap_mux_data){ |
| 869 | .offset = HHI_SD_EMMC_CLK_CNTL, |
| 870 | .mask = 0x7, |
| 871 | .shift = 25, |
| 872 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 873 | .hw.init = &(struct clk_init_data) { |
| 874 | .name = "sd_emmc_b_clk0_sel", |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 875 | .ops = &clk_regmap_mux_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 876 | .parent_names = axg_sd_emmc_clk0_parent_names, |
| 877 | .num_parents = ARRAY_SIZE(axg_sd_emmc_clk0_parent_names), |
| 878 | .flags = CLK_SET_RATE_PARENT, |
| 879 | }, |
| 880 | }; |
| 881 | |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 882 | static struct clk_regmap axg_sd_emmc_b_clk0_div = { |
| 883 | .data = &(struct clk_regmap_div_data){ |
| 884 | .offset = HHI_SD_EMMC_CLK_CNTL, |
| 885 | .shift = 16, |
| 886 | .width = 7, |
| 887 | .flags = CLK_DIVIDER_ROUND_CLOSEST, |
| 888 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 889 | .hw.init = &(struct clk_init_data) { |
| 890 | .name = "sd_emmc_b_clk0_div", |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 891 | .ops = &clk_regmap_divider_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 892 | .parent_names = (const char *[]){ "sd_emmc_b_clk0_sel" }, |
| 893 | .num_parents = 1, |
| 894 | .flags = CLK_SET_RATE_PARENT, |
| 895 | }, |
| 896 | }; |
| 897 | |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 898 | static struct clk_regmap axg_sd_emmc_b_clk0 = { |
| 899 | .data = &(struct clk_regmap_gate_data){ |
| 900 | .offset = HHI_SD_EMMC_CLK_CNTL, |
| 901 | .bit_idx = 23, |
| 902 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 903 | .hw.init = &(struct clk_init_data){ |
| 904 | .name = "sd_emmc_b_clk0", |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 905 | .ops = &clk_regmap_gate_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 906 | .parent_names = (const char *[]){ "sd_emmc_b_clk0_div" }, |
| 907 | .num_parents = 1, |
| 908 | .flags = CLK_SET_RATE_PARENT, |
| 909 | }, |
| 910 | }; |
| 911 | |
| 912 | /* EMMC/NAND clock */ |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 913 | static struct clk_regmap axg_sd_emmc_c_clk0_sel = { |
| 914 | .data = &(struct clk_regmap_mux_data){ |
| 915 | .offset = HHI_NAND_CLK_CNTL, |
| 916 | .mask = 0x7, |
| 917 | .shift = 9, |
| 918 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 919 | .hw.init = &(struct clk_init_data) { |
| 920 | .name = "sd_emmc_c_clk0_sel", |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 921 | .ops = &clk_regmap_mux_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 922 | .parent_names = axg_sd_emmc_clk0_parent_names, |
| 923 | .num_parents = ARRAY_SIZE(axg_sd_emmc_clk0_parent_names), |
| 924 | .flags = CLK_SET_RATE_PARENT, |
| 925 | }, |
| 926 | }; |
| 927 | |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 928 | static struct clk_regmap axg_sd_emmc_c_clk0_div = { |
| 929 | .data = &(struct clk_regmap_div_data){ |
| 930 | .offset = HHI_NAND_CLK_CNTL, |
| 931 | .shift = 0, |
| 932 | .width = 7, |
| 933 | .flags = CLK_DIVIDER_ROUND_CLOSEST, |
| 934 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 935 | .hw.init = &(struct clk_init_data) { |
| 936 | .name = "sd_emmc_c_clk0_div", |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 937 | .ops = &clk_regmap_divider_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 938 | .parent_names = (const char *[]){ "sd_emmc_c_clk0_sel" }, |
| 939 | .num_parents = 1, |
| 940 | .flags = CLK_SET_RATE_PARENT, |
| 941 | }, |
| 942 | }; |
| 943 | |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 944 | static struct clk_regmap axg_sd_emmc_c_clk0 = { |
| 945 | .data = &(struct clk_regmap_gate_data){ |
| 946 | .offset = HHI_NAND_CLK_CNTL, |
| 947 | .bit_idx = 7, |
| 948 | }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 949 | .hw.init = &(struct clk_init_data){ |
| 950 | .name = "sd_emmc_c_clk0", |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 951 | .ops = &clk_regmap_gate_ops, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 952 | .parent_names = (const char *[]){ "sd_emmc_c_clk0_div" }, |
| 953 | .num_parents = 1, |
| 954 | .flags = CLK_SET_RATE_PARENT, |
| 955 | }, |
| 956 | }; |
| 957 | |
Jerome Brunet | 7df533a | 2018-07-04 18:54:58 +0200 | [diff] [blame] | 958 | static u32 mux_table_gen_clk[] = { 0, 4, 5, 6, 7, 8, |
| 959 | 9, 10, 11, 13, 14, }; |
| 960 | static const char * const gen_clk_parent_names[] = { |
Jerome Brunet | 6e73dac | 2019-01-16 18:54:34 +0100 | [diff] [blame] | 961 | IN_PREFIX "xtal", "hifi_pll", "mpll0", "mpll1", "mpll2", "mpll3", |
Jerome Brunet | 7df533a | 2018-07-04 18:54:58 +0200 | [diff] [blame] | 962 | "fclk_div4", "fclk_div3", "fclk_div5", "fclk_div7", "gp0_pll", |
| 963 | }; |
| 964 | |
| 965 | static struct clk_regmap axg_gen_clk_sel = { |
| 966 | .data = &(struct clk_regmap_mux_data){ |
| 967 | .offset = HHI_GEN_CLK_CNTL, |
| 968 | .mask = 0xf, |
| 969 | .shift = 12, |
| 970 | .table = mux_table_gen_clk, |
| 971 | }, |
| 972 | .hw.init = &(struct clk_init_data){ |
| 973 | .name = "gen_clk_sel", |
| 974 | .ops = &clk_regmap_mux_ops, |
| 975 | /* |
| 976 | * bits 15:12 selects from 14 possible parents: |
| 977 | * xtal, [rtc_oscin_i], [sys_cpu_div16], [ddr_dpll_pt], |
| 978 | * hifi_pll, mpll0, mpll1, mpll2, mpll3, fdiv4, |
| 979 | * fdiv3, fdiv5, [cts_msr_clk], fdiv7, gp0_pll |
| 980 | */ |
| 981 | .parent_names = gen_clk_parent_names, |
| 982 | .num_parents = ARRAY_SIZE(gen_clk_parent_names), |
| 983 | }, |
| 984 | }; |
| 985 | |
| 986 | static struct clk_regmap axg_gen_clk_div = { |
| 987 | .data = &(struct clk_regmap_div_data){ |
| 988 | .offset = HHI_GEN_CLK_CNTL, |
| 989 | .shift = 0, |
| 990 | .width = 11, |
| 991 | }, |
| 992 | .hw.init = &(struct clk_init_data){ |
| 993 | .name = "gen_clk_div", |
| 994 | .ops = &clk_regmap_divider_ops, |
| 995 | .parent_names = (const char *[]){ "gen_clk_sel" }, |
| 996 | .num_parents = 1, |
| 997 | .flags = CLK_SET_RATE_PARENT, |
| 998 | }, |
| 999 | }; |
| 1000 | |
| 1001 | static struct clk_regmap axg_gen_clk = { |
| 1002 | .data = &(struct clk_regmap_gate_data){ |
| 1003 | .offset = HHI_GEN_CLK_CNTL, |
| 1004 | .bit_idx = 7, |
| 1005 | }, |
| 1006 | .hw.init = &(struct clk_init_data){ |
| 1007 | .name = "gen_clk", |
| 1008 | .ops = &clk_regmap_gate_ops, |
| 1009 | .parent_names = (const char *[]){ "gen_clk_div" }, |
| 1010 | .num_parents = 1, |
| 1011 | .flags = CLK_SET_RATE_PARENT, |
| 1012 | }, |
| 1013 | }; |
| 1014 | |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1015 | /* Everything Else (EE) domain gates */ |
| 1016 | static MESON_GATE(axg_ddr, HHI_GCLK_MPEG0, 0); |
| 1017 | static MESON_GATE(axg_audio_locker, HHI_GCLK_MPEG0, 2); |
| 1018 | static MESON_GATE(axg_mipi_dsi_host, HHI_GCLK_MPEG0, 3); |
| 1019 | static MESON_GATE(axg_isa, HHI_GCLK_MPEG0, 5); |
| 1020 | static MESON_GATE(axg_pl301, HHI_GCLK_MPEG0, 6); |
| 1021 | static MESON_GATE(axg_periphs, HHI_GCLK_MPEG0, 7); |
| 1022 | static MESON_GATE(axg_spicc_0, HHI_GCLK_MPEG0, 8); |
| 1023 | static MESON_GATE(axg_i2c, HHI_GCLK_MPEG0, 9); |
| 1024 | static MESON_GATE(axg_rng0, HHI_GCLK_MPEG0, 12); |
| 1025 | static MESON_GATE(axg_uart0, HHI_GCLK_MPEG0, 13); |
| 1026 | static MESON_GATE(axg_mipi_dsi_phy, HHI_GCLK_MPEG0, 14); |
| 1027 | static MESON_GATE(axg_spicc_1, HHI_GCLK_MPEG0, 15); |
| 1028 | static MESON_GATE(axg_pcie_a, HHI_GCLK_MPEG0, 16); |
| 1029 | static MESON_GATE(axg_pcie_b, HHI_GCLK_MPEG0, 17); |
| 1030 | static MESON_GATE(axg_hiu_reg, HHI_GCLK_MPEG0, 19); |
| 1031 | static MESON_GATE(axg_assist_misc, HHI_GCLK_MPEG0, 23); |
| 1032 | static MESON_GATE(axg_emmc_b, HHI_GCLK_MPEG0, 25); |
| 1033 | static MESON_GATE(axg_emmc_c, HHI_GCLK_MPEG0, 26); |
| 1034 | static MESON_GATE(axg_dma, HHI_GCLK_MPEG0, 27); |
| 1035 | static MESON_GATE(axg_spi, HHI_GCLK_MPEG0, 30); |
| 1036 | |
| 1037 | static MESON_GATE(axg_audio, HHI_GCLK_MPEG1, 0); |
| 1038 | static MESON_GATE(axg_eth_core, HHI_GCLK_MPEG1, 3); |
| 1039 | static MESON_GATE(axg_uart1, HHI_GCLK_MPEG1, 16); |
| 1040 | static MESON_GATE(axg_g2d, HHI_GCLK_MPEG1, 20); |
| 1041 | static MESON_GATE(axg_usb0, HHI_GCLK_MPEG1, 21); |
| 1042 | static MESON_GATE(axg_usb1, HHI_GCLK_MPEG1, 22); |
| 1043 | static MESON_GATE(axg_reset, HHI_GCLK_MPEG1, 23); |
| 1044 | static MESON_GATE(axg_usb_general, HHI_GCLK_MPEG1, 26); |
| 1045 | static MESON_GATE(axg_ahb_arb0, HHI_GCLK_MPEG1, 29); |
| 1046 | static MESON_GATE(axg_efuse, HHI_GCLK_MPEG1, 30); |
| 1047 | static MESON_GATE(axg_boot_rom, HHI_GCLK_MPEG1, 31); |
| 1048 | |
| 1049 | static MESON_GATE(axg_ahb_data_bus, HHI_GCLK_MPEG2, 1); |
| 1050 | static MESON_GATE(axg_ahb_ctrl_bus, HHI_GCLK_MPEG2, 2); |
| 1051 | static MESON_GATE(axg_usb1_to_ddr, HHI_GCLK_MPEG2, 8); |
| 1052 | static MESON_GATE(axg_usb0_to_ddr, HHI_GCLK_MPEG2, 9); |
| 1053 | static MESON_GATE(axg_mmc_pclk, HHI_GCLK_MPEG2, 11); |
| 1054 | static MESON_GATE(axg_vpu_intr, HHI_GCLK_MPEG2, 25); |
| 1055 | static MESON_GATE(axg_sec_ahb_ahb3_bridge, HHI_GCLK_MPEG2, 26); |
| 1056 | static MESON_GATE(axg_gic, HHI_GCLK_MPEG2, 30); |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 1057 | static MESON_GATE(axg_mipi_enable, HHI_MIPI_CNTL0, 29); |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1058 | |
| 1059 | /* Always On (AO) domain gates */ |
| 1060 | |
| 1061 | static MESON_GATE(axg_ao_media_cpu, HHI_GCLK_AO, 0); |
| 1062 | static MESON_GATE(axg_ao_ahb_sram, HHI_GCLK_AO, 1); |
| 1063 | static MESON_GATE(axg_ao_ahb_bus, HHI_GCLK_AO, 2); |
| 1064 | static MESON_GATE(axg_ao_iface, HHI_GCLK_AO, 3); |
| 1065 | static MESON_GATE(axg_ao_i2c, HHI_GCLK_AO, 4); |
| 1066 | |
| 1067 | /* Array of all clocks provided by this provider */ |
| 1068 | |
| 1069 | static struct clk_hw_onecell_data axg_hw_onecell_data = { |
| 1070 | .hws = { |
| 1071 | [CLKID_SYS_PLL] = &axg_sys_pll.hw, |
| 1072 | [CLKID_FIXED_PLL] = &axg_fixed_pll.hw, |
| 1073 | [CLKID_FCLK_DIV2] = &axg_fclk_div2.hw, |
| 1074 | [CLKID_FCLK_DIV3] = &axg_fclk_div3.hw, |
| 1075 | [CLKID_FCLK_DIV4] = &axg_fclk_div4.hw, |
| 1076 | [CLKID_FCLK_DIV5] = &axg_fclk_div5.hw, |
| 1077 | [CLKID_FCLK_DIV7] = &axg_fclk_div7.hw, |
| 1078 | [CLKID_GP0_PLL] = &axg_gp0_pll.hw, |
| 1079 | [CLKID_MPEG_SEL] = &axg_mpeg_clk_sel.hw, |
| 1080 | [CLKID_MPEG_DIV] = &axg_mpeg_clk_div.hw, |
| 1081 | [CLKID_CLK81] = &axg_clk81.hw, |
| 1082 | [CLKID_MPLL0] = &axg_mpll0.hw, |
| 1083 | [CLKID_MPLL1] = &axg_mpll1.hw, |
| 1084 | [CLKID_MPLL2] = &axg_mpll2.hw, |
| 1085 | [CLKID_MPLL3] = &axg_mpll3.hw, |
| 1086 | [CLKID_DDR] = &axg_ddr.hw, |
| 1087 | [CLKID_AUDIO_LOCKER] = &axg_audio_locker.hw, |
| 1088 | [CLKID_MIPI_DSI_HOST] = &axg_mipi_dsi_host.hw, |
| 1089 | [CLKID_ISA] = &axg_isa.hw, |
| 1090 | [CLKID_PL301] = &axg_pl301.hw, |
| 1091 | [CLKID_PERIPHS] = &axg_periphs.hw, |
| 1092 | [CLKID_SPICC0] = &axg_spicc_0.hw, |
| 1093 | [CLKID_I2C] = &axg_i2c.hw, |
| 1094 | [CLKID_RNG0] = &axg_rng0.hw, |
| 1095 | [CLKID_UART0] = &axg_uart0.hw, |
| 1096 | [CLKID_MIPI_DSI_PHY] = &axg_mipi_dsi_phy.hw, |
| 1097 | [CLKID_SPICC1] = &axg_spicc_1.hw, |
| 1098 | [CLKID_PCIE_A] = &axg_pcie_a.hw, |
| 1099 | [CLKID_PCIE_B] = &axg_pcie_b.hw, |
| 1100 | [CLKID_HIU_IFACE] = &axg_hiu_reg.hw, |
| 1101 | [CLKID_ASSIST_MISC] = &axg_assist_misc.hw, |
| 1102 | [CLKID_SD_EMMC_B] = &axg_emmc_b.hw, |
| 1103 | [CLKID_SD_EMMC_C] = &axg_emmc_c.hw, |
| 1104 | [CLKID_DMA] = &axg_dma.hw, |
| 1105 | [CLKID_SPI] = &axg_spi.hw, |
| 1106 | [CLKID_AUDIO] = &axg_audio.hw, |
| 1107 | [CLKID_ETH] = &axg_eth_core.hw, |
| 1108 | [CLKID_UART1] = &axg_uart1.hw, |
| 1109 | [CLKID_G2D] = &axg_g2d.hw, |
| 1110 | [CLKID_USB0] = &axg_usb0.hw, |
| 1111 | [CLKID_USB1] = &axg_usb1.hw, |
| 1112 | [CLKID_RESET] = &axg_reset.hw, |
| 1113 | [CLKID_USB] = &axg_usb_general.hw, |
| 1114 | [CLKID_AHB_ARB0] = &axg_ahb_arb0.hw, |
| 1115 | [CLKID_EFUSE] = &axg_efuse.hw, |
| 1116 | [CLKID_BOOT_ROM] = &axg_boot_rom.hw, |
| 1117 | [CLKID_AHB_DATA_BUS] = &axg_ahb_data_bus.hw, |
| 1118 | [CLKID_AHB_CTRL_BUS] = &axg_ahb_ctrl_bus.hw, |
| 1119 | [CLKID_USB1_DDR_BRIDGE] = &axg_usb1_to_ddr.hw, |
| 1120 | [CLKID_USB0_DDR_BRIDGE] = &axg_usb0_to_ddr.hw, |
| 1121 | [CLKID_MMC_PCLK] = &axg_mmc_pclk.hw, |
| 1122 | [CLKID_VPU_INTR] = &axg_vpu_intr.hw, |
| 1123 | [CLKID_SEC_AHB_AHB3_BRIDGE] = &axg_sec_ahb_ahb3_bridge.hw, |
| 1124 | [CLKID_GIC] = &axg_gic.hw, |
| 1125 | [CLKID_AO_MEDIA_CPU] = &axg_ao_media_cpu.hw, |
| 1126 | [CLKID_AO_AHB_SRAM] = &axg_ao_ahb_sram.hw, |
| 1127 | [CLKID_AO_AHB_BUS] = &axg_ao_ahb_bus.hw, |
| 1128 | [CLKID_AO_IFACE] = &axg_ao_iface.hw, |
| 1129 | [CLKID_AO_I2C] = &axg_ao_i2c.hw, |
| 1130 | [CLKID_SD_EMMC_B_CLK0_SEL] = &axg_sd_emmc_b_clk0_sel.hw, |
| 1131 | [CLKID_SD_EMMC_B_CLK0_DIV] = &axg_sd_emmc_b_clk0_div.hw, |
| 1132 | [CLKID_SD_EMMC_B_CLK0] = &axg_sd_emmc_b_clk0.hw, |
| 1133 | [CLKID_SD_EMMC_C_CLK0_SEL] = &axg_sd_emmc_c_clk0_sel.hw, |
| 1134 | [CLKID_SD_EMMC_C_CLK0_DIV] = &axg_sd_emmc_c_clk0_div.hw, |
| 1135 | [CLKID_SD_EMMC_C_CLK0] = &axg_sd_emmc_c_clk0.hw, |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 1136 | [CLKID_MPLL0_DIV] = &axg_mpll0_div.hw, |
| 1137 | [CLKID_MPLL1_DIV] = &axg_mpll1_div.hw, |
| 1138 | [CLKID_MPLL2_DIV] = &axg_mpll2_div.hw, |
| 1139 | [CLKID_MPLL3_DIV] = &axg_mpll3_div.hw, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 1140 | [CLKID_HIFI_PLL] = &axg_hifi_pll.hw, |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 1141 | [CLKID_MPLL_PREDIV] = &axg_mpll_prediv.hw, |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 1142 | [CLKID_FCLK_DIV2_DIV] = &axg_fclk_div2_div.hw, |
| 1143 | [CLKID_FCLK_DIV3_DIV] = &axg_fclk_div3_div.hw, |
| 1144 | [CLKID_FCLK_DIV4_DIV] = &axg_fclk_div4_div.hw, |
| 1145 | [CLKID_FCLK_DIV5_DIV] = &axg_fclk_div5_div.hw, |
| 1146 | [CLKID_FCLK_DIV7_DIV] = &axg_fclk_div7_div.hw, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 1147 | [CLKID_PCIE_PLL] = &axg_pcie_pll.hw, |
| 1148 | [CLKID_PCIE_MUX] = &axg_pcie_mux.hw, |
| 1149 | [CLKID_PCIE_REF] = &axg_pcie_ref.hw, |
| 1150 | [CLKID_PCIE_CML_EN0] = &axg_pcie_cml_en0.hw, |
| 1151 | [CLKID_PCIE_CML_EN1] = &axg_pcie_cml_en1.hw, |
| 1152 | [CLKID_MIPI_ENABLE] = &axg_mipi_enable.hw, |
Jerome Brunet | 7df533a | 2018-07-04 18:54:58 +0200 | [diff] [blame] | 1153 | [CLKID_GEN_CLK_SEL] = &axg_gen_clk_sel.hw, |
| 1154 | [CLKID_GEN_CLK_DIV] = &axg_gen_clk_div.hw, |
| 1155 | [CLKID_GEN_CLK] = &axg_gen_clk.hw, |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 1156 | [CLKID_SYS_PLL_DCO] = &axg_sys_pll_dco.hw, |
| 1157 | [CLKID_FIXED_PLL_DCO] = &axg_fixed_pll_dco.hw, |
| 1158 | [CLKID_GP0_PLL_DCO] = &axg_gp0_pll_dco.hw, |
| 1159 | [CLKID_HIFI_PLL_DCO] = &axg_hifi_pll_dco.hw, |
| 1160 | [CLKID_PCIE_PLL_DCO] = &axg_pcie_pll_dco.hw, |
| 1161 | [CLKID_PCIE_PLL_OD] = &axg_pcie_pll_od.hw, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1162 | [NR_CLKS] = NULL, |
| 1163 | }, |
| 1164 | .num = NR_CLKS, |
| 1165 | }; |
| 1166 | |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 1167 | /* Convenience table to populate regmap in .probe */ |
Jerome Brunet | 7f9768a | 2018-02-12 15:58:36 +0100 | [diff] [blame] | 1168 | static struct clk_regmap *const axg_clk_regmaps[] = { |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1169 | &axg_clk81, |
| 1170 | &axg_ddr, |
| 1171 | &axg_audio_locker, |
| 1172 | &axg_mipi_dsi_host, |
| 1173 | &axg_isa, |
| 1174 | &axg_pl301, |
| 1175 | &axg_periphs, |
| 1176 | &axg_spicc_0, |
| 1177 | &axg_i2c, |
| 1178 | &axg_rng0, |
| 1179 | &axg_uart0, |
| 1180 | &axg_mipi_dsi_phy, |
| 1181 | &axg_spicc_1, |
| 1182 | &axg_pcie_a, |
| 1183 | &axg_pcie_b, |
| 1184 | &axg_hiu_reg, |
| 1185 | &axg_assist_misc, |
| 1186 | &axg_emmc_b, |
| 1187 | &axg_emmc_c, |
| 1188 | &axg_dma, |
| 1189 | &axg_spi, |
| 1190 | &axg_audio, |
| 1191 | &axg_eth_core, |
| 1192 | &axg_uart1, |
| 1193 | &axg_g2d, |
| 1194 | &axg_usb0, |
| 1195 | &axg_usb1, |
| 1196 | &axg_reset, |
| 1197 | &axg_usb_general, |
| 1198 | &axg_ahb_arb0, |
| 1199 | &axg_efuse, |
| 1200 | &axg_boot_rom, |
| 1201 | &axg_ahb_data_bus, |
| 1202 | &axg_ahb_ctrl_bus, |
| 1203 | &axg_usb1_to_ddr, |
| 1204 | &axg_usb0_to_ddr, |
| 1205 | &axg_mmc_pclk, |
| 1206 | &axg_vpu_intr, |
| 1207 | &axg_sec_ahb_ahb3_bridge, |
| 1208 | &axg_gic, |
| 1209 | &axg_ao_media_cpu, |
| 1210 | &axg_ao_ahb_sram, |
| 1211 | &axg_ao_ahb_bus, |
| 1212 | &axg_ao_iface, |
| 1213 | &axg_ao_i2c, |
| 1214 | &axg_sd_emmc_b_clk0, |
| 1215 | &axg_sd_emmc_c_clk0, |
Jerome Brunet | f06ddd2 | 2018-02-12 15:58:37 +0100 | [diff] [blame] | 1216 | &axg_mpeg_clk_div, |
| 1217 | &axg_sd_emmc_b_clk0_div, |
| 1218 | &axg_sd_emmc_c_clk0_div, |
Jerome Brunet | 2513a28 | 2018-02-12 15:58:38 +0100 | [diff] [blame] | 1219 | &axg_mpeg_clk_sel, |
| 1220 | &axg_sd_emmc_b_clk0_sel, |
| 1221 | &axg_sd_emmc_c_clk0_sel, |
Jerome Brunet | c763e61 | 2018-02-12 15:58:40 +0100 | [diff] [blame] | 1222 | &axg_mpll0, |
| 1223 | &axg_mpll1, |
| 1224 | &axg_mpll2, |
| 1225 | &axg_mpll3, |
Jerome Brunet | d610b54 | 2018-02-12 15:58:43 +0100 | [diff] [blame] | 1226 | &axg_mpll0_div, |
| 1227 | &axg_mpll1_div, |
| 1228 | &axg_mpll2_div, |
| 1229 | &axg_mpll3_div, |
Jerome Brunet | 722825d | 2018-02-12 15:58:42 +0100 | [diff] [blame] | 1230 | &axg_fixed_pll, |
| 1231 | &axg_sys_pll, |
| 1232 | &axg_gp0_pll, |
Jerome Brunet | 093c3fa | 2018-02-19 12:21:43 +0100 | [diff] [blame] | 1233 | &axg_hifi_pll, |
Jerome Brunet | 513b67a | 2018-02-19 12:21:44 +0100 | [diff] [blame] | 1234 | &axg_mpll_prediv, |
Jerome Brunet | 05f8144 | 2018-02-19 12:21:45 +0100 | [diff] [blame] | 1235 | &axg_fclk_div2, |
| 1236 | &axg_fclk_div3, |
| 1237 | &axg_fclk_div4, |
| 1238 | &axg_fclk_div5, |
| 1239 | &axg_fclk_div7, |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 1240 | &axg_pcie_pll_dco, |
| 1241 | &axg_pcie_pll_od, |
Yixun Lan | cddcb20 | 2018-07-02 21:31:18 +0000 | [diff] [blame] | 1242 | &axg_pcie_pll, |
| 1243 | &axg_pcie_mux, |
| 1244 | &axg_pcie_ref, |
| 1245 | &axg_pcie_cml_en0, |
| 1246 | &axg_pcie_cml_en1, |
| 1247 | &axg_mipi_enable, |
Jerome Brunet | 7df533a | 2018-07-04 18:54:58 +0200 | [diff] [blame] | 1248 | &axg_gen_clk_sel, |
| 1249 | &axg_gen_clk_div, |
| 1250 | &axg_gen_clk, |
Jerome Brunet | 8717355 | 2018-08-01 16:00:52 +0200 | [diff] [blame] | 1251 | &axg_fixed_pll_dco, |
| 1252 | &axg_sys_pll_dco, |
| 1253 | &axg_gp0_pll_dco, |
| 1254 | &axg_hifi_pll_dco, |
| 1255 | &axg_pcie_pll_dco, |
| 1256 | &axg_pcie_pll_od, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1257 | }; |
| 1258 | |
Jerome Brunet | 6682bd4 | 2019-02-01 15:53:45 +0100 | [diff] [blame] | 1259 | static const struct meson_eeclkc_data axg_clkc_data = { |
| 1260 | .regmap_clks = axg_clk_regmaps, |
| 1261 | .regmap_clk_num = ARRAY_SIZE(axg_clk_regmaps), |
| 1262 | .hw_onecell_data = &axg_hw_onecell_data, |
| 1263 | }; |
| 1264 | |
| 1265 | |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1266 | static const struct of_device_id clkc_match_table[] = { |
Jerome Brunet | 6682bd4 | 2019-02-01 15:53:45 +0100 | [diff] [blame] | 1267 | { .compatible = "amlogic,axg-clkc", .data = &axg_clkc_data }, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1268 | {} |
| 1269 | }; |
| 1270 | |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1271 | static struct platform_driver axg_driver = { |
Jerome Brunet | 6682bd4 | 2019-02-01 15:53:45 +0100 | [diff] [blame] | 1272 | .probe = meson_eeclkc_probe, |
Qiufang Dai | 78b4af3 | 2017-12-11 22:13:46 +0800 | [diff] [blame] | 1273 | .driver = { |
| 1274 | .name = "axg-clkc", |
| 1275 | .of_match_table = clkc_match_table, |
| 1276 | }, |
| 1277 | }; |
| 1278 | |
| 1279 | builtin_platform_driver(axg_driver); |