diff options
| author | Ansuel Smith <ansuelsmth@gmail.com> | 2021-05-20 23:39:36 +0200 |
|---|---|---|
| committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-06-30 23:14:43 +0200 |
| commit | 014aac7944ab9c6d5f33f57491acea5698d77f3b (patch) | |
| tree | 9c1b36277a1d2df1e436ccdbc276c9dd3ff9ea32 | |
| parent | aeee1bd2da724e89e9aa19e79627abd2ffd90fca (diff) | |
| download | upstream-014aac7944ab9c6d5f33f57491acea5698d77f3b.tar.gz upstream-014aac7944ab9c6d5f33f57491acea5698d77f3b.tar.bz2 upstream-014aac7944ab9c6d5f33f57491acea5698d77f3b.zip | |
ipq806x: fix missing 1.4ghz cache freq for ipq8065 SoC
With the new implementation of the dedicated cpufreq driver,
the 1.4 Ghz was only dropped and not added to the ipq8065 SoC.
Fix this to improve performance.
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8065.dtsi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8065.dtsi b/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8065.dtsi index 9c3a24f6007..a0312686a00 100644 --- a/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8065.dtsi +++ b/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8065.dtsi @@ -77,6 +77,17 @@ qcom,mpll = <5>; }; +&opp_table_l2 { + /delete-node/opp-1200000000; + + opp-1400000000 { + opp-hz = /bits/ 64 <1400000000>; + opp-microvolt = <1150000>; + clock-latency-ns = <100000>; + opp-level = <2>; + }; +}; + &opp_table0 { /* * On ipq8065 1.2 ghz freq is not present |
