mirror of
				https://github.com/oplus-giulia-dev/android_kernel_oneplus_sm8650-devicetrees
				synced 2025-11-04 06:44:04 +08:00 
			
		
		
		
	This change adds display heap region for niobe target. Change-Id: Id06f353e1dc838991b94d27d886aa6d2686ea338
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#include <dt-bindings/arm/msm/qcom_dma_heap_dt_constants.h>
 | 
						|
 | 
						|
&soc {
 | 
						|
	qcom,dma-heaps {
 | 
						|
		compatible = "qcom,dma-heaps";
 | 
						|
 | 
						|
		qcom,secure_cdsp {
 | 
						|
			qcom,dma-heap-name = "qcom,cma-secure-cdsp";
 | 
						|
			qcom,dma-heap-type = <HEAP_TYPE_CMA>;
 | 
						|
			memory-region = <&cdsp_secure_heap_cma>;
 | 
						|
		};
 | 
						|
		qcom,qseecom {
 | 
						|
			qcom,dma-heap-name = "qcom,qseecom";
 | 
						|
			qcom,dma-heap-type = <HEAP_TYPE_CMA>;
 | 
						|
			memory-region = <&qseecom_mem>;
 | 
						|
		};
 | 
						|
 | 
						|
		qcom,qseecom_ta {
 | 
						|
			qcom,dma-heap-name = "qcom,qseecom-ta";
 | 
						|
			qcom,dma-heap-type = <HEAP_TYPE_CMA>;
 | 
						|
			memory-region = <&qseecom_ta_mem>;
 | 
						|
		};
 | 
						|
 | 
						|
		qcom,display {
 | 
						|
			qcom,dma-heap-name = "qcom,display";
 | 
						|
			qcom,dma-heap-type = <HEAP_TYPE_CMA>;
 | 
						|
			qcom,max-align = <9>;
 | 
						|
			memory-region = <&non_secure_display_memory>;
 | 
						|
		};
 | 
						|
 | 
						|
		qcom,sp_hlos {
 | 
						|
			qcom,dma-heap-name = "qcom,sp-hlos";
 | 
						|
			qcom,dma-heap-type = <HEAP_TYPE_CMA>;
 | 
						|
			memory-region = <&sp_mem>;
 | 
						|
		};
 | 
						|
 | 
						|
		qcom,secure_sp_tz {
 | 
						|
			qcom,dma-heap-name = "qcom,secure-sp-tz";
 | 
						|
			qcom,dma-heap-type = <HEAP_TYPE_SECURE_CARVEOUT>;
 | 
						|
			memory-region = <&spu_secure_shared_memory_mem>;
 | 
						|
			qcom,token = <0x01000000>;
 | 
						|
		};
 | 
						|
 | 
						|
 | 
						|
	};
 | 
						|
};
 |