mirror of
https://github.com/Evolution-X-Devices/kernel_xiaomi_sm8450-devicetrees
synced 2026-02-01 04:59:05 +00:00
adsp dma heap node to for contig heap use cases. Change-Id: I1d6014cee975a66b998f9b80df6ddc15883d9e0b
45 lines
1.0 KiB
Plaintext
45 lines
1.0 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,secure-cdsp";
|
|
qcom,dma-heap-type = <HEAP_TYPE_SECURE_CARVEOUT>;
|
|
memory-region = <&cdsp_secure_heap_mem>;
|
|
qcom,token = <0x20000000>;
|
|
};
|
|
|
|
qcom,adsp {
|
|
qcom,dma-heap-name = "qcom,adsp";
|
|
qcom,dma-heap-type = <HEAP_TYPE_CMA>;
|
|
memory-region = <&sdsp_mem>;
|
|
};
|
|
|
|
qcom,user_contig {
|
|
qcom,dma-heap-name = "qcom,user-contig";
|
|
qcom,dma-heap-type = <HEAP_TYPE_CMA>;
|
|
memory-region = <&user_contig_mem>;
|
|
};
|
|
|
|
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,audio_ml {
|
|
qcom,dma-heap-name = "qcom,audio-ml";
|
|
qcom,dma-heap-type = <HEAP_TYPE_CMA>;
|
|
memory-region = <&audio_cma_mem>;
|
|
};
|
|
};
|
|
};
|