1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2020, The Linux Foundation. All rights reserved.
6 #include <linux/clk-provider.h>
7 #include <linux/platform_device.h>
8 #include <linux/module.h>
9 #include <linux/pm_clock.h>
10 #include <linux/pm_runtime.h>
11 #include <linux/regmap.h>
13 #include <dt-bindings/clock/qcom,mss-sc7180.h>
15 #include "clk-regmap.h"
16 #include "clk-branch.h"
19 static struct clk_branch mss_axi_nav_clk = {
21 .halt_check = BRANCH_HALT,
24 .enable_mask = BIT(0),
25 .hw.init = &(struct clk_init_data){
26 .name = "mss_axi_nav_clk",
27 .parent_data = &(const struct clk_parent_data){
28 .fw_name = "gcc_mss_nav_axi",
31 .ops = &clk_branch2_ops,
36 static struct clk_branch mss_axi_crypto_clk = {
38 .halt_check = BRANCH_HALT,
41 .enable_mask = BIT(0),
42 .hw.init = &(struct clk_init_data){
43 .name = "mss_axi_crypto_clk",
44 .parent_data = &(const struct clk_parent_data){
45 .fw_name = "gcc_mss_mfab_axis",
48 .ops = &clk_branch2_ops,
53 static const struct regmap_config mss_regmap_config = {
58 .max_register = 0x41aa0cc,
61 static struct clk_regmap *mss_sc7180_clocks[] = {
62 [MSS_AXI_CRYPTO_CLK] = &mss_axi_crypto_clk.clkr,
63 [MSS_AXI_NAV_CLK] = &mss_axi_nav_clk.clkr,
66 static const struct qcom_cc_desc mss_sc7180_desc = {
67 .config = &mss_regmap_config,
68 .clks = mss_sc7180_clocks,
69 .num_clks = ARRAY_SIZE(mss_sc7180_clocks),
72 static int mss_sc7180_probe(struct platform_device *pdev)
76 pm_runtime_enable(&pdev->dev);
77 ret = pm_clk_create(&pdev->dev);
79 goto disable_pm_runtime;
81 ret = pm_clk_add(&pdev->dev, "cfg_ahb");
83 dev_err(&pdev->dev, "failed to acquire iface clock\n");
87 ret = qcom_cc_probe(pdev, &mss_sc7180_desc);
94 pm_clk_destroy(&pdev->dev);
97 pm_runtime_disable(&pdev->dev);
102 static int mss_sc7180_remove(struct platform_device *pdev)
104 pm_clk_destroy(&pdev->dev);
105 pm_runtime_disable(&pdev->dev);
110 static const struct dev_pm_ops mss_sc7180_pm_ops = {
111 SET_RUNTIME_PM_OPS(pm_clk_suspend, pm_clk_resume, NULL)
114 static const struct of_device_id mss_sc7180_match_table[] = {
115 { .compatible = "qcom,sc7180-mss" },
118 MODULE_DEVICE_TABLE(of, mss_sc7180_match_table);
120 static struct platform_driver mss_sc7180_driver = {
121 .probe = mss_sc7180_probe,
122 .remove = mss_sc7180_remove,
124 .name = "sc7180-mss",
125 .of_match_table = mss_sc7180_match_table,
126 .pm = &mss_sc7180_pm_ops,
130 static int __init mss_sc7180_init(void)
132 return platform_driver_register(&mss_sc7180_driver);
134 subsys_initcall(mss_sc7180_init);
136 static void __exit mss_sc7180_exit(void)
138 platform_driver_unregister(&mss_sc7180_driver);
140 module_exit(mss_sc7180_exit);
142 MODULE_DESCRIPTION("QTI MSS SC7180 Driver");
143 MODULE_LICENSE("GPL v2");