1 // SPDX-License-Identifier: GPL-2.0
3 * Qualcomm A7 PLL driver
5 * Copyright (c) 2020, Linaro Limited
6 * Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
9 #include <linux/clk-provider.h>
10 #include <linux/module.h>
11 #include <linux/platform_device.h>
12 #include <linux/regmap.h>
14 #include "clk-alpha-pll.h"
16 #define LUCID_PLL_OFF_L_VAL 0x04
18 static const struct pll_vco lucid_vco
[] = {
19 { 249600000, 2000000000, 0 },
22 static struct clk_alpha_pll a7pll
= {
24 .vco_table
= lucid_vco
,
25 .num_vco
= ARRAY_SIZE(lucid_vco
),
26 .regs
= clk_alpha_pll_regs
[CLK_ALPHA_PLL_TYPE_LUCID
],
28 .hw
.init
= &(struct clk_init_data
){
30 .parent_data
= &(const struct clk_parent_data
){
34 .ops
= &clk_alpha_pll_lucid_ops
,
39 static const struct alpha_pll_config a7pll_config
= {
41 .config_ctl_val
= 0x20485699,
42 .config_ctl_hi_val
= 0x2261,
43 .config_ctl_hi1_val
= 0x029A699C,
45 .user_ctl_hi_val
= 0x805,
48 static const struct regmap_config a7pll_regmap_config
= {
52 .max_register
= 0x1000,
56 static int qcom_a7pll_probe(struct platform_device
*pdev
)
58 struct device
*dev
= &pdev
->dev
;
59 struct regmap
*regmap
;
64 base
= devm_platform_ioremap_resource(pdev
, 0);
68 regmap
= devm_regmap_init_mmio(dev
, base
, &a7pll_regmap_config
);
70 return PTR_ERR(regmap
);
72 /* Configure PLL only if the l_val is zero */
73 regmap_read(regmap
, a7pll
.offset
+ LUCID_PLL_OFF_L_VAL
, &l_val
);
75 clk_lucid_pll_configure(&a7pll
, regmap
, &a7pll_config
);
77 ret
= devm_clk_register_regmap(dev
, &a7pll
.clkr
);
81 return devm_of_clk_add_hw_provider(dev
, of_clk_hw_simple_get
,
85 static const struct of_device_id qcom_a7pll_match_table
[] = {
86 { .compatible
= "qcom,sdx55-a7pll" },
89 MODULE_DEVICE_TABLE(of
, qcom_a7pll_match_table
);
91 static struct platform_driver qcom_a7pll_driver
= {
92 .probe
= qcom_a7pll_probe
,
95 .of_match_table
= qcom_a7pll_match_table
,
98 module_platform_driver(qcom_a7pll_driver
);
100 MODULE_DESCRIPTION("Qualcomm A7 PLL Driver");
101 MODULE_LICENSE("GPL v2");