Browse Source

Merge pull request #165 in PROCESSOR-SDK/processor-sdk-linux from PLSDK-2837 to processor-sdk-linux-4.19.y

* commit '03f3e52a719695a20fa7099d6342a1014ac59001':
  arm64: dts: ti: k3-am65-main: reduce memory reserved for msmc_sram1
Muralidharan Karicheri 6 years ago
parent
commit
2bb432e3a0
1 changed files with 9 additions and 1 deletions
  1. 9 1
      arch/arm64/boot/dts/ti/k3-am65-main.dtsi

+ 9 - 1
arch/arm64/boot/dts/ti/k3-am65-main.dtsi

@@ -14,12 +14,20 @@
 		#size-cells = <1>;
 		ranges = <0x0 0x0 0x70000000 0x200000>;
 
+		/* WARNING!!! No All non-reserved memory
+		 * is available for use. For example
+		 * ICSSG PRUETH needs 98K * 3 = 294K.
+		 * So reserve memory below carefully
+		 * after reviewing current usage. One
+		 * way is to check the instances of
+		 * dts nodes pointing to msmc_ram
+		 */
 		atf-sram@0 {
 			reg = <0x0 0x20000>;
 		};
 
 		msmc_sram1: msmc-sram1@20000 {
-			reg = <0x20000 0xd0000>;
+			reg = <0x20000 0x10000>;
 		};
 
 		sysfw-sram@f0000 {