
Since the Armbian sources refer to linux 4.19.76 as being linux-mainline, all the patches from linux-4.19 were moved to linux-mainline_4.19 and the linux_4.19.76 recipes was named accordingly. This patch makes 4.19.76 as default version for linux Signed-off-by: Vicentiu Galanopulo <vicentiu@balena.io>
53 lines
1.4 KiB
Diff
53 lines
1.4 KiB
Diff
From 25be6ff78bebfd869a3be0017715f101bd75bb64 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Mon, 14 May 2018 01:19:06 +0200
|
|
Subject: [PATCH 15/82] arm64: dts: sun50i-h5: Enable cpufreq-dt on H5 CPU
|
|
|
|
Uses OPPs shared with H3.
|
|
|
|
Signed-off-by: Ondrej Jirman <megous@megous.com>
|
|
---
|
|
arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi b/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi
|
|
index 60fc84a1fb44..acd90f390e88 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi
|
|
@@ -52,6 +52,9 @@
|
|
device_type = "cpu";
|
|
reg = <0>;
|
|
enable-method = "psci";
|
|
+ clocks = <&ccu CLK_CPUX>;
|
|
+ clock-names = "cpu";
|
|
+ operating-points-v2 = <&cpu0_opp_table>;
|
|
clock-frequency = <1200000000>;
|
|
#cooling-cells = <2>;
|
|
cooling-min-level = <0>;
|
|
@@ -63,6 +66,7 @@
|
|
device_type = "cpu";
|
|
reg = <1>;
|
|
enable-method = "psci";
|
|
+ operating-points-v2 = <&cpu0_opp_table>;
|
|
clock-frequency = <1200000000>;
|
|
};
|
|
|
|
@@ -71,6 +75,7 @@
|
|
device_type = "cpu";
|
|
reg = <2>;
|
|
enable-method = "psci";
|
|
+ operating-points-v2 = <&cpu0_opp_table>;
|
|
clock-frequency = <1200000000>;
|
|
};
|
|
|
|
@@ -79,6 +84,7 @@
|
|
device_type = "cpu";
|
|
reg = <3>;
|
|
enable-method = "psci";
|
|
+ operating-points-v2 = <&cpu0_opp_table>;
|
|
clock-frequency = <1200000000>;
|
|
};
|
|
};
|
|
--
|
|
2.20.1
|
|
|