1 // SPDX-License-Identifier: GPL-2.0
3 * Qualcomm A53 PLL driver
5 * Copyright (c) 2017, Linaro Limited
6 * Author: Georgi Djakov <georgi.djakov@linaro.org>
9 #include <linux/clk-provider.h>
10 #include <linux/kernel.h>
11 #include <linux/platform_device.h>
12 #include <linux/regmap.h>
13 #include <linux/module.h>
16 #include "clk-regmap.h"
18 static const struct pll_freq_tbl a53pll_freq
[] = {
19 { 998400000, 52, 0x0, 0x1, 0 },
20 { 1094400000, 57, 0x0, 0x1, 0 },
21 { 1152000000, 62, 0x0, 0x1, 0 },
22 { 1209600000, 63, 0x0, 0x1, 0 },
23 { 1248000000, 65, 0x0, 0x1, 0 },
24 { 1363200000, 71, 0x0, 0x1, 0 },
25 { 1401600000, 73, 0x0, 0x1, 0 },
29 static const struct regmap_config a53pll_regmap_config
= {
37 static int qcom_a53pll_probe(struct platform_device
*pdev
)
39 struct device
*dev
= &pdev
->dev
;
40 struct regmap
*regmap
;
44 struct clk_init_data init
= { };
47 pll
= devm_kzalloc(dev
, sizeof(*pll
), GFP_KERNEL
);
51 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
52 base
= devm_ioremap_resource(dev
, res
);
56 regmap
= devm_regmap_init_mmio(dev
, base
, &a53pll_regmap_config
);
58 return PTR_ERR(regmap
);
63 pll
->config_reg
= 0x14;
65 pll
->status_reg
= 0x1c;
67 pll
->freq_tbl
= a53pll_freq
;
70 init
.parent_names
= (const char *[]){ "xo" };
72 init
.ops
= &clk_pll_sr2_ops
;
73 init
.flags
= CLK_IS_CRITICAL
;
74 pll
->clkr
.hw
.init
= &init
;
76 ret
= devm_clk_register_regmap(dev
, &pll
->clkr
);
78 dev_err(dev
, "failed to register regmap clock: %d\n", ret
);
82 ret
= devm_of_clk_add_hw_provider(dev
, of_clk_hw_simple_get
,
85 dev_err(dev
, "failed to add clock provider: %d\n", ret
);
92 static const struct of_device_id qcom_a53pll_match_table
[] = {
93 { .compatible
= "qcom,msm8916-a53pll" },
97 static struct platform_driver qcom_a53pll_driver
= {
98 .probe
= qcom_a53pll_probe
,
100 .name
= "qcom-a53pll",
101 .of_match_table
= qcom_a53pll_match_table
,
104 module_platform_driver(qcom_a53pll_driver
);
106 MODULE_DESCRIPTION("Qualcomm A53 PLL Driver");
107 MODULE_LICENSE("GPL v2");