1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2018, The Linux Foundation. All rights reserved.
4 #include <linux/kernel.h>
5 #include <linux/init.h>
6 #include <linux/module.h>
7 #include <linux/platform_device.h>
10 #include <linux/clk-provider.h>
11 #include <linux/regmap.h>
13 #include "clk-regmap.h"
14 #include "clk-hfpll.h"
16 static const struct hfpll_data hdata
= {
23 .config_val
= 0x430405d,
28 .user_vco_mask
= 0x100000,
29 .low_vco_max_rate
= 1248000000,
30 .min_rate
= 537600000UL,
31 .max_rate
= 2900000000UL,
34 static const struct of_device_id qcom_hfpll_match_table
[] = {
35 { .compatible
= "qcom,hfpll" },
38 MODULE_DEVICE_TABLE(of
, qcom_hfpll_match_table
);
40 static const struct regmap_config hfpll_regmap_config
= {
48 static int qcom_hfpll_probe(struct platform_device
*pdev
)
51 struct device
*dev
= &pdev
->dev
;
53 struct regmap
*regmap
;
55 struct clk_init_data init
= {
57 .ops
= &clk_ops_hfpll
,
59 * rather than marking the clock critical and forcing the clock
60 * to be always enabled, we make sure that the clock is not
61 * disabled: the firmware remains responsible of enabling this
62 * clock (for more info check the commit log)
64 .flags
= CLK_IGNORE_UNUSED
,
67 struct clk_parent_data pdata
= { .index
= 0 };
69 h
= devm_kzalloc(dev
, sizeof(*h
), GFP_KERNEL
);
73 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
74 base
= devm_ioremap_resource(dev
, res
);
78 regmap
= devm_regmap_init_mmio(&pdev
->dev
, base
, &hfpll_regmap_config
);
80 return PTR_ERR(regmap
);
82 if (of_property_read_string_index(dev
->of_node
, "clock-output-names",
86 init
.parent_data
= &pdata
;
89 h
->clkr
.hw
.init
= &init
;
90 spin_lock_init(&h
->lock
);
92 ret
= devm_clk_register_regmap(dev
, &h
->clkr
);
94 dev_err(dev
, "failed to register regmap clock: %d\n", ret
);
98 return devm_of_clk_add_hw_provider(dev
, of_clk_hw_simple_get
,
102 static struct platform_driver qcom_hfpll_driver
= {
103 .probe
= qcom_hfpll_probe
,
105 .name
= "qcom-hfpll",
106 .of_match_table
= qcom_hfpll_match_table
,
109 module_platform_driver(qcom_hfpll_driver
);
111 MODULE_DESCRIPTION("QCOM HFPLL Clock Driver");
112 MODULE_LICENSE("GPL v2");
113 MODULE_ALIAS("platform:qcom-hfpll");