blob: 380441deca65d1b443962fbe6151f4aadd918383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// SPDX-License-Identifier: BSD-3-Clause
/*
* x1 specific modifications required to boot in EL2.
*/
/dts-v1/;
/plugin/;
/* We can't and don't need to use zap shader in EL2 as linux can zap the gpu on it's own. */
&gpu_zap_shader {
status = "disabled";
};
/*
* When running under Gunyah, this IOMMU is controlled by the firmware,
* however when we take ownership of it in EL2, we need to configure
* it properly to use PCIe.
*
* Additionally, it seems like ITS emulation in Gunyah is broken so we
* can't use MSI on some PCIe controllers in EL1. But we can add them
* here for EL2.
*/
&pcie3 {
iommu-map = <0 &pcie_smmu 0x30000 0x10000>;
msi-map = <0 &gic_its 0xb0000 0x10000>;
};
&pcie4 {
iommu-map = <0 &pcie_smmu 0x40000 0x10000>;
};
&pcie5 {
iommu-map = <0 &pcie_smmu 0x50000 0x10000>;
msi-map = <0 &gic_its 0xd0000 0x10000>;
};
&pcie6a {
iommu-map = <0 &pcie_smmu 0x60000 0x10000>;
};
&pcie_smmu {
status = "okay";
};
/*
* The "SBSA watchdog" is implemented in software in Gunyah
* and can't be used when running in EL2.
*/
&sbsa_watchdog {
status = "disabled";
};
|