Commit 63d42708 authored by Bryan O'Donoghue's avatar Bryan O'Donoghue Committed by Bjorn Andersson

clk: qcom: gcc-msm8939: Fix bimc_ddr_clk_src rcgr base address

Reviewing qcom docs for the 8939 we can see the command rcgr is pointing to
the wrong address. bimc_ddr_clk_src_rcgr is @ 0x01832024 not 0x01832004.

Fixes: 1664014e ("clk: qcom: gcc-msm8939: Add MSM8939 Generic Clock Controller")
Signed-off-by: default avatarBryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220504163835.40130-3-bryan.odonoghue@linaro.org
parent 07e7fcf1
...@@ -632,7 +632,7 @@ static struct clk_rcg2 system_noc_bfdcd_clk_src = { ...@@ -632,7 +632,7 @@ static struct clk_rcg2 system_noc_bfdcd_clk_src = {
}; };
static struct clk_rcg2 bimc_ddr_clk_src = { static struct clk_rcg2 bimc_ddr_clk_src = {
.cmd_rcgr = 0x32004, .cmd_rcgr = 0x32024,
.hid_width = 5, .hid_width = 5,
.parent_map = gcc_xo_gpll0_bimc_map, .parent_map = gcc_xo_gpll0_bimc_map,
.clkr.hw.init = &(struct clk_init_data){ .clkr.hw.init = &(struct clk_init_data){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment