The qcom,display heap is used for camera usecases. Change-Id: Ib4cd937450c73cc8440be20912fe864653663577 Signed-off-by: Akash Gajjar <quic_agajjar@quicinc.com>
39 lines
911 B
Plaintext
39 lines
911 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include <dt-bindings/arm/msm/qcom_dma_heap_dt_constants.h>
|
|
|
|
&soc {
|
|
qcom,dma-heaps {
|
|
compatible = "qcom,dma-heaps";
|
|
depends-on-supply = <&qcom_scm>;
|
|
|
|
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,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>;
|
|
};
|
|
};
|
|
};
|