Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clk: qcom: camcc-sdm845: Specify Titan GDSC power domain as a parent to other

When a consumer turns on/off a power domain dependent on another power
domain in hardware, the parent power domain shall be turned on/off by
the power domain provider as well, and to get it the power domain hardware
hierarchy shall be properly described in the power domain provider driver.

Establish the power domain hierarchy with a Titan GDSC set as a parent of
other GDSC power domains provided by the SDM845 camera clock controller,
including IPE0/1 and BPS ones.

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Reviewed-by: Imran Shaik <imran.shaik@oss.qualcomm.com>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
Link: https://lore.kernel.org/r/20251021234450.2271279-4-vladimir.zapolskiy@linaro.org
Signed-off-by: Bjorn Andersson <andersson@kernel.org>

authored by

Vladimir Zapolskiy and committed by
Bjorn Andersson
ee2867ca a76ce61d

+3
+3
drivers/clk/qcom/camcc-sdm845.c
··· 1543 1543 .name = "bps_gdsc", 1544 1544 }, 1545 1545 .flags = HW_CTRL | POLL_CFG_GDSCR, 1546 + .parent = &titan_top_gdsc.pd, 1546 1547 .pwrsts = PWRSTS_OFF_ON, 1547 1548 }; 1548 1549 ··· 1553 1552 .name = "ipe_0_gdsc", 1554 1553 }, 1555 1554 .flags = HW_CTRL | POLL_CFG_GDSCR, 1555 + .parent = &titan_top_gdsc.pd, 1556 1556 .pwrsts = PWRSTS_OFF_ON, 1557 1557 }; 1558 1558 ··· 1563 1561 .name = "ipe_1_gdsc", 1564 1562 }, 1565 1563 .flags = HW_CTRL | POLL_CFG_GDSCR, 1564 + .parent = &titan_top_gdsc.pd, 1566 1565 .pwrsts = PWRSTS_OFF_ON, 1567 1566 }; 1568 1567