Skip to content

Commit

Permalink
clk: qcom: dispcc-qcm2290: Add MDSS_CORE reset
Browse files Browse the repository at this point in the history
Add the MDSS_CORE reset which can be asserted to reset the state of
the entire MDSS.

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230316-topic-qcm_dispcc_reset-v1-2-dd3708853014@linaro.org
  • Loading branch information
Konrad Dybcio authored and Bjorn Andersson committed Apr 5, 2023
1 parent 25dac40 commit 002c3fb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/clk/qcom/dispcc-qcm2290.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "clk-regmap-divider.h"
#include "common.h"
#include "gdsc.h"
#include "reset.h"

enum {
P_BI_TCXO,
Expand Down Expand Up @@ -445,6 +446,10 @@ static struct clk_branch disp_cc_sleep_clk = {
},
};

static const struct qcom_reset_map disp_cc_qcm2290_resets[] = {
[DISP_CC_MDSS_CORE_BCR] = { 0x2000 },
};

static struct gdsc mdss_gdsc = {
.gdscr = 0x3000,
.pd = {
Expand Down Expand Up @@ -494,6 +499,8 @@ static const struct qcom_cc_desc disp_cc_qcm2290_desc = {
.num_clks = ARRAY_SIZE(disp_cc_qcm2290_clocks),
.gdscs = disp_cc_qcm2290_gdscs,
.num_gdscs = ARRAY_SIZE(disp_cc_qcm2290_gdscs),
.resets = disp_cc_qcm2290_resets,
.num_resets = ARRAY_SIZE(disp_cc_qcm2290_resets),
};

static const struct of_device_id disp_cc_qcm2290_match_table[] = {
Expand Down

0 comments on commit 002c3fb

Please sign in to comment.