From 35a58da2b9b69307a263bb59e310509a034de4a7 Mon Sep 17 00:00:00 2001 From: Shreyas K K Date: Wed, 22 Jun 2022 09:19:09 +0530 Subject: [PATCH] ARM: dts: msm: Add the dma-buf heaps device node for SDMSHRIKE Add the dma-buf heaps device node for the dma-buf heaps driver on SDMSHRIKE. Change-Id: Ie3cccbab3ad6a10f16bf16cb28bf3fb1fbf125dd --- qcom/sdmshrike-dma-heaps.dtsi | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 qcom/sdmshrike-dma-heaps.dtsi diff --git a/qcom/sdmshrike-dma-heaps.dtsi b/qcom/sdmshrike-dma-heaps.dtsi new file mode 100644 index 00000000..000e8954 --- /dev/null +++ b/qcom/sdmshrike-dma-heaps.dtsi @@ -0,0 +1,44 @@ +#include + +&soc { + qcom,dma-heaps { + compatible = "qcom,dma-heaps"; + + qcom,adsp { + qcom,dma-heap-name = "qcom,adsp"; + qcom,dma-heap-type = ; + memory-region = <&adsp_mem>; + }; + + qcom,sp_hlos { + qcom,dma-heap-name = "qcom,sp-hlos"; + qcom,dma-heap-type = ; + memory-region = <&sp_mem>; + }; + + qcom,user_contig { + qcom,dma-heap-name = "qcom,user-contig"; + qcom,dma-heap-type = ; + memory-region = <&user_contig_mem>; + }; + + qcom,qseecom { + qcom,dma-heap-name = "qcom,qseecom"; + qcom,dma-heap-type = ; + memory-region = <&qseecom_mem>; + }; + + qcom,qseecom_ta { + qcom,dma-heap-name = "qcom,qseecom-ta"; + qcom,dma-heap-type = ; + memory-region = <&qseecom_ta_mem>; + }; + + qcom,display { + qcom,dma-heap-name = "qcom,display"; + qcom,dma-heap-type = ; + qcom,max-align = <9>; + memory-region = <&secure_display_memory>; + }; + }; +};