1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved. 4 */ 5 6 #include <linux/clk-provider.h> 7 #include <linux/module.h> 8 #include <linux/platform_device.h> 9 #include <linux/pm_runtime.h> 10 #include <linux/regmap.h> 11 12 #include <dt-bindings/clock/qcom,videocc-sm8250.h> 13 14 #include "clk-alpha-pll.h" 15 #include "clk-branch.h" 16 #include "clk-rcg.h" 17 #include "clk-regmap.h" 18 #include "clk-regmap-divider.h" 19 #include "common.h" 20 #include "reset.h" 21 #include "gdsc.h" 22 23 enum { 24 P_BI_TCXO, 25 P_VIDEO_PLL0_OUT_MAIN, 26 P_VIDEO_PLL1_OUT_MAIN, 27 }; 28 29 static struct pll_vco lucid_vco[] = { 30 { 249600000, 2000000000, 0 }, 31 }; 32 33 static const struct alpha_pll_config video_pll0_config = { 34 .l = 0x25, 35 .alpha = 0x8000, 36 .config_ctl_val = 0x20485699, 37 .config_ctl_hi_val = 0x00002261, 38 .config_ctl_hi1_val = 0x329A699C, 39 .user_ctl_val = 0x00000000, 40 .user_ctl_hi_val = 0x00000805, 41 .user_ctl_hi1_val = 0x00000000, 42 }; 43 44 static struct clk_alpha_pll video_pll0 = { 45 .offset = 0x42c, 46 .vco_table = lucid_vco, 47 .num_vco = ARRAY_SIZE(lucid_vco), 48 .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID], 49 .clkr = { 50 .hw.init = &(struct clk_init_data){ 51 .name = "video_pll0", 52 .parent_data = &(const struct clk_parent_data){ 53 .fw_name = "bi_tcxo", 54 }, 55 .num_parents = 1, 56 .ops = &clk_alpha_pll_lucid_ops, 57 }, 58 }, 59 }; 60 61 static const struct alpha_pll_config video_pll1_config = { 62 .l = 0x2B, 63 .alpha = 0xC000, 64 .config_ctl_val = 0x20485699, 65 .config_ctl_hi_val = 0x00002261, 66 .config_ctl_hi1_val = 0x329A699C, 67 .user_ctl_val = 0x00000000, 68 .user_ctl_hi_val = 0x00000805, 69 .user_ctl_hi1_val = 0x00000000, 70 }; 71 72 static struct clk_alpha_pll video_pll1 = { 73 .offset = 0x7d0, 74 .vco_table = lucid_vco, 75 .num_vco = ARRAY_SIZE(lucid_vco), 76 .regs = clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_LUCID], 77 .clkr = { 78 .hw.init = &(struct clk_init_data){ 79 .name = "video_pll1", 80 .parent_data = &(const struct clk_parent_data){ 81 .fw_name = "bi_tcxo", 82 }, 83 .num_parents = 1, 84 .ops = &clk_alpha_pll_lucid_ops, 85 }, 86 }, 87 }; 88 89 static const struct parent_map video_cc_parent_map_1[] = { 90 { P_BI_TCXO, 0 }, 91 { P_VIDEO_PLL0_OUT_MAIN, 1 }, 92 }; 93 94 static const struct clk_parent_data video_cc_parent_data_1[] = { 95 { .fw_name = "bi_tcxo" }, 96 { .hw = &video_pll0.clkr.hw }, 97 }; 98 99 static const struct parent_map video_cc_parent_map_2[] = { 100 { P_BI_TCXO, 0 }, 101 { P_VIDEO_PLL1_OUT_MAIN, 1 }, 102 }; 103 104 static const struct clk_parent_data video_cc_parent_data_2[] = { 105 { .fw_name = "bi_tcxo" }, 106 { .hw = &video_pll1.clkr.hw }, 107 }; 108 109 static const struct freq_tbl ftbl_video_cc_mvs0_clk_src[] = { 110 F(19200000, P_BI_TCXO, 1, 0, 0), 111 F(720000000, P_VIDEO_PLL0_OUT_MAIN, 1, 0, 0), 112 F(1014000000, P_VIDEO_PLL0_OUT_MAIN, 1, 0, 0), 113 F(1098000000, P_VIDEO_PLL0_OUT_MAIN, 1, 0, 0), 114 F(1332000000, P_VIDEO_PLL0_OUT_MAIN, 1, 0, 0), 115 { } 116 }; 117 118 static struct clk_rcg2 video_cc_mvs0_clk_src = { 119 .cmd_rcgr = 0xb94, 120 .mnd_width = 0, 121 .hid_width = 5, 122 .parent_map = video_cc_parent_map_1, 123 .freq_tbl = ftbl_video_cc_mvs0_clk_src, 124 .clkr.hw.init = &(struct clk_init_data){ 125 .name = "video_cc_mvs0_clk_src", 126 .parent_data = video_cc_parent_data_1, 127 .num_parents = ARRAY_SIZE(video_cc_parent_data_1), 128 .flags = CLK_SET_RATE_PARENT, 129 .ops = &clk_rcg2_shared_ops, 130 }, 131 }; 132 133 static const struct freq_tbl ftbl_video_cc_mvs1_clk_src[] = { 134 F(19200000, P_BI_TCXO, 1, 0, 0), 135 F(840000000, P_VIDEO_PLL1_OUT_MAIN, 1, 0, 0), 136 F(1098000000, P_VIDEO_PLL1_OUT_MAIN, 1, 0, 0), 137 F(1332000000, P_VIDEO_PLL1_OUT_MAIN, 1, 0, 0), 138 { } 139 }; 140 141 static struct clk_rcg2 video_cc_mvs1_clk_src = { 142 .cmd_rcgr = 0xbb4, 143 .mnd_width = 0, 144 .hid_width = 5, 145 .parent_map = video_cc_parent_map_2, 146 .freq_tbl = ftbl_video_cc_mvs1_clk_src, 147 .clkr.hw.init = &(struct clk_init_data){ 148 .name = "video_cc_mvs1_clk_src", 149 .parent_data = video_cc_parent_data_2, 150 .num_parents = ARRAY_SIZE(video_cc_parent_data_2), 151 .flags = CLK_SET_RATE_PARENT, 152 .ops = &clk_rcg2_shared_ops, 153 }, 154 }; 155 156 static struct clk_regmap_div video_cc_mvs0c_div2_div_clk_src = { 157 .reg = 0xc54, 158 .shift = 0, 159 .width = 2, 160 .clkr.hw.init = &(struct clk_init_data) { 161 .name = "video_cc_mvs0c_div2_div_clk_src", 162 .parent_hws = (const struct clk_hw*[]){ 163 &video_cc_mvs0_clk_src.clkr.hw, 164 }, 165 .num_parents = 1, 166 .flags = CLK_SET_RATE_PARENT, 167 .ops = &clk_regmap_div_ro_ops, 168 }, 169 }; 170 171 static struct clk_regmap_div video_cc_mvs0_div_clk_src = { 172 .reg = 0xd54, 173 .shift = 0, 174 .width = 2, 175 .clkr.hw.init = &(struct clk_init_data) { 176 .name = "video_cc_mvs0_div_clk_src", 177 .parent_hws = (const struct clk_hw*[]){ 178 &video_cc_mvs0_clk_src.clkr.hw, 179 }, 180 .num_parents = 1, 181 .flags = CLK_SET_RATE_PARENT, 182 .ops = &clk_regmap_div_ro_ops, 183 }, 184 }; 185 186 static struct clk_regmap_div video_cc_mvs1c_div2_div_clk_src = { 187 .reg = 0xcf4, 188 .shift = 0, 189 .width = 2, 190 .clkr.hw.init = &(struct clk_init_data) { 191 .name = "video_cc_mvs1c_div2_div_clk_src", 192 .parent_hws = (const struct clk_hw*[]){ 193 &video_cc_mvs1_clk_src.clkr.hw, 194 }, 195 .num_parents = 1, 196 .flags = CLK_SET_RATE_PARENT, 197 .ops = &clk_regmap_div_ro_ops, 198 }, 199 }; 200 201 static struct clk_branch video_cc_mvs0c_clk = { 202 .halt_reg = 0xc34, 203 .halt_check = BRANCH_HALT, 204 .clkr = { 205 .enable_reg = 0xc34, 206 .enable_mask = BIT(0), 207 .hw.init = &(struct clk_init_data){ 208 .name = "video_cc_mvs0c_clk", 209 .parent_hws = (const struct clk_hw*[]){ 210 &video_cc_mvs0c_div2_div_clk_src.clkr.hw, 211 }, 212 .num_parents = 1, 213 .flags = CLK_SET_RATE_PARENT, 214 .ops = &clk_branch2_ops, 215 }, 216 }, 217 }; 218 219 static struct clk_branch video_cc_mvs0_clk = { 220 .halt_reg = 0xd34, 221 .halt_check = BRANCH_HALT_VOTED, 222 .clkr = { 223 .enable_reg = 0xd34, 224 .enable_mask = BIT(0), 225 .hw.init = &(struct clk_init_data){ 226 .name = "video_cc_mvs0_clk", 227 .parent_hws = (const struct clk_hw*[]){ 228 &video_cc_mvs0_div_clk_src.clkr.hw, 229 }, 230 .num_parents = 1, 231 .flags = CLK_SET_RATE_PARENT, 232 .ops = &clk_branch2_ops, 233 }, 234 }, 235 }; 236 237 static struct clk_branch video_cc_mvs1_div2_clk = { 238 .halt_reg = 0xdf4, 239 .halt_check = BRANCH_HALT_VOTED, 240 .clkr = { 241 .enable_reg = 0xdf4, 242 .enable_mask = BIT(0), 243 .hw.init = &(struct clk_init_data){ 244 .name = "video_cc_mvs1_div2_clk", 245 .parent_hws = (const struct clk_hw*[]){ 246 &video_cc_mvs1c_div2_div_clk_src.clkr.hw, 247 }, 248 .num_parents = 1, 249 .flags = CLK_SET_RATE_PARENT, 250 .ops = &clk_branch2_ops, 251 }, 252 }, 253 }; 254 255 static struct clk_branch video_cc_mvs1c_clk = { 256 .halt_reg = 0xcd4, 257 .halt_check = BRANCH_HALT_VOTED, 258 .clkr = { 259 .enable_reg = 0xcd4, 260 .enable_mask = BIT(0), 261 .hw.init = &(struct clk_init_data){ 262 .name = "video_cc_mvs1c_clk", 263 .parent_hws = (const struct clk_hw*[]){ 264 &video_cc_mvs1c_div2_div_clk_src.clkr.hw, 265 }, 266 .num_parents = 1, 267 .flags = CLK_SET_RATE_PARENT, 268 .ops = &clk_branch2_ops, 269 }, 270 }, 271 }; 272 273 static struct gdsc mvs0c_gdsc = { 274 .gdscr = 0xbf8, 275 .pd = { 276 .name = "mvs0c_gdsc", 277 }, 278 .flags = 0, 279 .pwrsts = PWRSTS_OFF_ON, 280 .supply = "mmcx", 281 }; 282 283 static struct gdsc mvs1c_gdsc = { 284 .gdscr = 0xc98, 285 .pd = { 286 .name = "mvs1c_gdsc", 287 }, 288 .flags = 0, 289 .pwrsts = PWRSTS_OFF_ON, 290 .supply = "mmcx", 291 }; 292 293 static struct gdsc mvs0_gdsc = { 294 .gdscr = 0xd18, 295 .pd = { 296 .name = "mvs0_gdsc", 297 }, 298 .flags = HW_CTRL, 299 .pwrsts = PWRSTS_OFF_ON, 300 .supply = "mmcx", 301 }; 302 303 static struct gdsc mvs1_gdsc = { 304 .gdscr = 0xd98, 305 .pd = { 306 .name = "mvs1_gdsc", 307 }, 308 .flags = HW_CTRL, 309 .pwrsts = PWRSTS_OFF_ON, 310 .supply = "mmcx", 311 }; 312 313 static struct clk_regmap *video_cc_sm8250_clocks[] = { 314 [VIDEO_CC_MVS0_CLK] = &video_cc_mvs0_clk.clkr, 315 [VIDEO_CC_MVS0_CLK_SRC] = &video_cc_mvs0_clk_src.clkr, 316 [VIDEO_CC_MVS0_DIV_CLK_SRC] = &video_cc_mvs0_div_clk_src.clkr, 317 [VIDEO_CC_MVS0C_CLK] = &video_cc_mvs0c_clk.clkr, 318 [VIDEO_CC_MVS0C_DIV2_DIV_CLK_SRC] = &video_cc_mvs0c_div2_div_clk_src.clkr, 319 [VIDEO_CC_MVS1_CLK_SRC] = &video_cc_mvs1_clk_src.clkr, 320 [VIDEO_CC_MVS1_DIV2_CLK] = &video_cc_mvs1_div2_clk.clkr, 321 [VIDEO_CC_MVS1C_CLK] = &video_cc_mvs1c_clk.clkr, 322 [VIDEO_CC_MVS1C_DIV2_DIV_CLK_SRC] = &video_cc_mvs1c_div2_div_clk_src.clkr, 323 [VIDEO_CC_PLL0] = &video_pll0.clkr, 324 [VIDEO_CC_PLL1] = &video_pll1.clkr, 325 }; 326 327 static const struct qcom_reset_map video_cc_sm8250_resets[] = { 328 [VIDEO_CC_CVP_INTERFACE_BCR] = { 0xe54 }, 329 [VIDEO_CC_CVP_MVS0_BCR] = { 0xd14 }, 330 [VIDEO_CC_MVS0C_CLK_ARES] = { 0xc34, 2 }, 331 [VIDEO_CC_CVP_MVS0C_BCR] = { 0xbf4 }, 332 [VIDEO_CC_CVP_MVS1_BCR] = { 0xd94 }, 333 [VIDEO_CC_MVS1C_CLK_ARES] = { 0xcd4, 2 }, 334 [VIDEO_CC_CVP_MVS1C_BCR] = { 0xc94 }, 335 }; 336 337 static struct gdsc *video_cc_sm8250_gdscs[] = { 338 [MVS0C_GDSC] = &mvs0c_gdsc, 339 [MVS1C_GDSC] = &mvs1c_gdsc, 340 [MVS0_GDSC] = &mvs0_gdsc, 341 [MVS1_GDSC] = &mvs1_gdsc, 342 }; 343 344 static const struct regmap_config video_cc_sm8250_regmap_config = { 345 .reg_bits = 32, 346 .reg_stride = 4, 347 .val_bits = 32, 348 .max_register = 0xf4c, 349 .fast_io = true, 350 }; 351 352 static const struct qcom_cc_desc video_cc_sm8250_desc = { 353 .config = &video_cc_sm8250_regmap_config, 354 .clks = video_cc_sm8250_clocks, 355 .num_clks = ARRAY_SIZE(video_cc_sm8250_clocks), 356 .resets = video_cc_sm8250_resets, 357 .num_resets = ARRAY_SIZE(video_cc_sm8250_resets), 358 .gdscs = video_cc_sm8250_gdscs, 359 .num_gdscs = ARRAY_SIZE(video_cc_sm8250_gdscs), 360 }; 361 362 static const struct of_device_id video_cc_sm8250_match_table[] = { 363 { .compatible = "qcom,sm8250-videocc" }, 364 { } 365 }; 366 MODULE_DEVICE_TABLE(of, video_cc_sm8250_match_table); 367 368 static void video_cc_sm8250_pm_runtime_disable(void *data) 369 { 370 pm_runtime_disable(data); 371 } 372 373 static int video_cc_sm8250_probe(struct platform_device *pdev) 374 { 375 struct regmap *regmap; 376 int ret; 377 378 pm_runtime_enable(&pdev->dev); 379 380 ret = devm_add_action_or_reset(&pdev->dev, video_cc_sm8250_pm_runtime_disable, &pdev->dev); 381 if (ret) 382 return ret; 383 384 ret = pm_runtime_resume_and_get(&pdev->dev); 385 if (ret) 386 return ret; 387 388 regmap = qcom_cc_map(pdev, &video_cc_sm8250_desc); 389 if (IS_ERR(regmap)) { 390 pm_runtime_put(&pdev->dev); 391 return PTR_ERR(regmap); 392 } 393 394 clk_lucid_pll_configure(&video_pll0, regmap, &video_pll0_config); 395 clk_lucid_pll_configure(&video_pll1, regmap, &video_pll1_config); 396 397 /* Keep VIDEO_CC_AHB_CLK and VIDEO_CC_XO_CLK ALWAYS-ON */ 398 regmap_update_bits(regmap, 0xe58, BIT(0), BIT(0)); 399 regmap_update_bits(regmap, 0xeec, BIT(0), BIT(0)); 400 401 ret = qcom_cc_really_probe(pdev, &video_cc_sm8250_desc, regmap); 402 403 pm_runtime_put(&pdev->dev); 404 405 return ret; 406 } 407 408 static struct platform_driver video_cc_sm8250_driver = { 409 .probe = video_cc_sm8250_probe, 410 .driver = { 411 .name = "sm8250-videocc", 412 .of_match_table = video_cc_sm8250_match_table, 413 }, 414 }; 415 416 static int __init video_cc_sm8250_init(void) 417 { 418 return platform_driver_register(&video_cc_sm8250_driver); 419 } 420 subsys_initcall(video_cc_sm8250_init); 421 422 static void __exit video_cc_sm8250_exit(void) 423 { 424 platform_driver_unregister(&video_cc_sm8250_driver); 425 } 426 module_exit(video_cc_sm8250_exit); 427 428 MODULE_LICENSE("GPL v2"); 429 MODULE_DESCRIPTION("QTI VIDEOCC SM8250 Driver"); 430