32 lines
973 B
Plaintext
32 lines
973 B
Plaintext
|
/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 and
|
||
|
* only version 2 as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*/
|
||
|
|
||
|
&soc {
|
||
|
qcom,iommu-domains {
|
||
|
compatible = "qcom,iommu-domains";
|
||
|
|
||
|
venus_domain_ns: qcom,iommu-domain1 {
|
||
|
label = "venus_ns";
|
||
|
qcom,iommu-contexts = <&venus_ns>;
|
||
|
qcom,virtual-addr-pool = <0x40000000 0x3f000000
|
||
|
0x7f000000 0x1000000>;
|
||
|
};
|
||
|
|
||
|
venus_domain_cp: qcom,iommu-domain2 {
|
||
|
label = "venus_cp";
|
||
|
qcom,iommu-contexts = <&venus_cp>;
|
||
|
qcom,virtual-addr-pool = <0x1000000 0x3f000000>;
|
||
|
qcom,secure-domain;
|
||
|
};
|
||
|
};
|
||
|
};
|