Remove upstreamed patches: 010-menu-fix-the-logic-checking-whether-ESC-key-is-press.patch [1] 011-menu-add-support-to-check-if-menu-needs-to-be-reprin.patch [2] 012-bootmenu-add-reprint-check.patch [3] Remove outdated patches: 455-arm-provide-noncached_set_region-prototype-to-fix-build.patch Some patches have been manually rebased to match the upstream changes. This patch also fixes the dtc warning for reserved-memory dts node. If #address-cells and #size-cells are not same as the root node definitions, the dtc will complain about it. All defconfigs are refreshed by `make "$board"_defconfig` and `make savedefconfig`. [1]ddac69885e
[2]ccdd7948e2
[3]599652cff1
Signed-off-by: Shiji Yang <yangshiji66@qq.com>
34 lines
686 B
Diff
34 lines
686 B
Diff
--- a/arch/arm/dts/mt7988.dtsi
|
|
+++ b/arch/arm/dts/mt7988.dtsi
|
|
@@ -63,6 +63,30 @@
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
+ psci {
|
|
+ compatible = "arm,psci-0.2";
|
|
+ method = "smc";
|
|
+ };
|
|
+
|
|
+ reserved-memory {
|
|
+ #address-cells = <2>;
|
|
+ #size-cells = <2>;
|
|
+ ranges;
|
|
+
|
|
+ /* 64 KiB reserved for ramoops/pstore */
|
|
+ ramoops@42ff0000 {
|
|
+ compatible = "ramoops";
|
|
+ reg = <0 0x42ff0000 0 0x10000>;
|
|
+ record-size = <0x1000>;
|
|
+ };
|
|
+
|
|
+ /* 320 KiB reserved for ARM Trusted Firmware (BL31+BL32) */
|
|
+ secmon_reserved: secmon@43000000 {
|
|
+ reg = <0 0x43000000 0 0x50000>;
|
|
+ no-map;
|
|
+ };
|
|
+ };
|
|
+
|
|
hwver: hwver {
|
|
compatible = "mediatek,hwver", "syscon";
|
|
reg = <0 0x8000000 0 0x1000>;
|