mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
Add an overlay dts for oot kernel which contains tegra-carveout nodes. The dtbo generated by compiling this overlay dts would be applied on top of the main dtb during flash. Bug 200722773 Change-Id: I885cb845c93282bf6f9701d10ed79ced74f6a817 Signed-off-by: Ketan Patil <ketanp@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2752306 Reviewed-by: Sachin Nikam <snikam@nvidia.com> Reviewed-by: Rohit Khanna <rokhanna@nvidia.com> GVS: Gerrit_Virtual_Submit
30 lines
428 B
Devicetree
30 lines
428 B
Devicetree
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
fragment@0 {
|
|
target-path = "/";
|
|
__overlay__ {
|
|
|
|
reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
ranges;
|
|
|
|
vpr: vpr-carveout {
|
|
compatible = "nvidia,vpr-carveout";
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
tegra-carveouts {
|
|
compatible = "nvidia,carveouts-t19x";
|
|
memory-region = <&vpr>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|