|
1 | 1 | // SPDX-License-Identifier: GPL-2.0
|
2 | 2 | /*
|
3 |
| - * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved. |
| 3 | + * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved. |
4 | 4 | */
|
5 | 5 |
|
6 | 6 | #include <linux/clk-provider.h>
|
@@ -510,6 +510,27 @@ static const struct clk_rpmh_desc clk_rpmh_sm8350 = {
|
510 | 510 | .num_clks = ARRAY_SIZE(sm8350_rpmh_clocks),
|
511 | 511 | };
|
512 | 512 |
|
| 513 | +static struct clk_hw *sc7280_rpmh_clocks[] = { |
| 514 | + [RPMH_CXO_CLK] = &sdm845_bi_tcxo.hw, |
| 515 | + [RPMH_CXO_CLK_A] = &sdm845_bi_tcxo_ao.hw, |
| 516 | + [RPMH_LN_BB_CLK2] = &sdm845_ln_bb_clk2.hw, |
| 517 | + [RPMH_LN_BB_CLK2_A] = &sdm845_ln_bb_clk2_ao.hw, |
| 518 | + [RPMH_RF_CLK1] = &sdm845_rf_clk1.hw, |
| 519 | + [RPMH_RF_CLK1_A] = &sdm845_rf_clk1_ao.hw, |
| 520 | + [RPMH_RF_CLK3] = &sdm845_rf_clk3.hw, |
| 521 | + [RPMH_RF_CLK3_A] = &sdm845_rf_clk3_ao.hw, |
| 522 | + [RPMH_RF_CLK4] = &sm8350_rf_clk4.hw, |
| 523 | + [RPMH_RF_CLK4_A] = &sm8350_rf_clk4_ao.hw, |
| 524 | + [RPMH_IPA_CLK] = &sdm845_ipa.hw, |
| 525 | + [RPMH_PKA_CLK] = &sm8350_pka.hw, |
| 526 | + [RPMH_HWKM_CLK] = &sm8350_hwkm.hw, |
| 527 | +}; |
| 528 | + |
| 529 | +static const struct clk_rpmh_desc clk_rpmh_sc7280 = { |
| 530 | + .clks = sc7280_rpmh_clocks, |
| 531 | + .num_clks = ARRAY_SIZE(sc7280_rpmh_clocks), |
| 532 | +}; |
| 533 | + |
513 | 534 | static struct clk_hw *of_clk_rpmh_hw_get(struct of_phandle_args *clkspec,
|
514 | 535 | void *data)
|
515 | 536 | {
|
@@ -600,6 +621,7 @@ static const struct of_device_id clk_rpmh_match_table[] = {
|
600 | 621 | { .compatible = "qcom,sm8150-rpmh-clk", .data = &clk_rpmh_sm8150},
|
601 | 622 | { .compatible = "qcom,sm8250-rpmh-clk", .data = &clk_rpmh_sm8250},
|
602 | 623 | { .compatible = "qcom,sm8350-rpmh-clk", .data = &clk_rpmh_sm8350},
|
| 624 | + { .compatible = "qcom,sc7280-rpmh-clk", .data = &clk_rpmh_sc7280}, |
603 | 625 | { }
|
604 | 626 | };
|
605 | 627 | MODULE_DEVICE_TABLE(of, clk_rpmh_match_table);
|
|
0 commit comments