Add device tree entries for smcinvoke, shmbridge and tz-log drivers and qseecom heaps. Change-Id: I1a427c66e12a02532097db352a1d26fe5ececb9f Signed-off-by: Anmolpreet Kaur <quic_anmolpre@quicinc.com>
24 lines
542 B
Plaintext
24 lines
542 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";
|
|
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>;
|
|
};
|
|
};
|
|
};
|