Rename this feature to trusted virtual machine (TVM) to better describe how it is used. Change-Id: I856d82068ed15847e9412ceb0221622a7ea1843f Signed-off-by: Patrick Daly <quic_pdaly@quicinc.com>
37 lines
798 B
Plaintext
37 lines
798 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2022-2023 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,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;
|
|
};
|
|
};
|
|
};
|