Add memory enteries for TUI carveout in device tree for parrot.
Change-Id: I62b8c06dece1e5d3311dc8276c92e4e6d894860e
Signed-off-by: Nageswara reddy Karnati <quic_nkarnati@quicinc.com>
(cherry picked from commit 4c18a3a634
)
37 lines
759 B
Plaintext
37 lines
759 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";
|
|
|
|
qcom,tui {
|
|
qcom,dma-heap-name = "qcom,tui";
|
|
qcom,dma-heap-type = <HEAP_TYPE_TVM_CARVEOUT>;
|
|
qcom,dynamic-heap;
|
|
};
|
|
|
|
qcom,ms1 {
|
|
qcom,dma-heap-name = "qcom,ms1";
|
|
qcom,dma-heap-type = <HEAP_TYPE_TVM_CARVEOUT>;
|
|
qcom,dynamic-heap;
|
|
};
|
|
|
|
qcom,ms2 {
|
|
qcom,dma-heap-name = "qcom,ms2";
|
|
qcom,dma-heap-type = <HEAP_TYPE_TVM_CARVEOUT>;
|
|
qcom,dynamic-heap;
|
|
};
|
|
|
|
qcom,ms3 {
|
|
qcom,dma-heap-name = "qcom,ms3";
|
|
qcom,dma-heap-type = <HEAP_TYPE_TVM_CARVEOUT>;
|
|
qcom,dynamic-heap;
|
|
};
|
|
};
|
|
};
|