Add initial device tree support for parrot/ravelin vm target. This is a snapshot of dtsi files as of KP.1.0 'commit <370d8eab7cc6> ("Merge "ARM: dts: qcom: Disable cnss-kiwi SOL on anorak platform"")'. Change-Id: Iaf69c882974f38b69d9edd671d675f14dfb9774d Signed-off-by: Swetha Chikkaboraiah <quic_schikk@quicinc.com>
37 lines
744 B
Plaintext
37 lines
744 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
/ {
|
|
vm-config {
|
|
vdevices {
|
|
vsmmu@15000000 {
|
|
vdevice-type = "vsmmu-v2";
|
|
smmu-handle = <0x15000000>;
|
|
num-cbs = <0x2>;
|
|
num-smrs = <0x3>;
|
|
patch = "/soc/apps-smmu@15000000";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&soc {
|
|
apps_smmu: apps-smmu@15000000 {
|
|
/*
|
|
* reg, #global-interrupts & interrupts properties will
|
|
* be added dynamically by bootloader.
|
|
*/
|
|
compatible = "qcom,qsmmu-v500", "qcom,virt-smmu";
|
|
#iommu-cells = <2>;
|
|
qcom,use-3-lvl-tables;
|
|
dma-coherent;
|
|
qcom,actlr =
|
|
<0x2803 0x0400 0x00000001>,
|
|
<0x2804 0x0402 0x00000001>;
|
|
};
|
|
};
|