diff options
author | Sricharan R <sricharan@codeaurora.org> | 2016-11-18 17:58:27 +0530 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-11-23 16:41:19 -0800 |
commit | 96893e101eb294bced8358fbd48cbac175977aa4 (patch) | |
tree | 12ecc8cb20fb5b8e9e99177b75604b85c0ed530a /drivers/clk | |
parent | 904bb4f5c7de2f40ff31d43d3547d40910e46640 (diff) | |
download | linux-96893e101eb294bced8358fbd48cbac175977aa4.tar.gz linux-96893e101eb294bced8358fbd48cbac175977aa4.tar.bz2 linux-96893e101eb294bced8358fbd48cbac175977aa4.zip |
clk: qcom: Put venus core0/1 gdscs to hw control mode
The venus video ip's internal core blocks are under the
control of the firmware and their powerdomains needs to be
'ON' only when used by the firmware. So putting it into
hw controlled mode lets this to happen, otherwise the firmware
hangs checking for this.
Signed-off-by: Sricharan R <sricharan@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/qcom/mmcc-msm8996.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/qcom/mmcc-msm8996.c b/drivers/clk/qcom/mmcc-msm8996.c index f77206f549cc..9b97246287a7 100644 --- a/drivers/clk/qcom/mmcc-msm8996.c +++ b/drivers/clk/qcom/mmcc-msm8996.c @@ -2945,6 +2945,7 @@ static struct gdsc venus_core0_gdsc = { .name = "venus_core0", }, .pwrsts = PWRSTS_OFF_ON, + .flags = HW_CTRL, }; static struct gdsc venus_core1_gdsc = { @@ -2955,6 +2956,7 @@ static struct gdsc venus_core1_gdsc = { .name = "venus_core1", }, .pwrsts = PWRSTS_OFF_ON, + .flags = HW_CTRL, }; static struct gdsc camss_gdsc = { |