mirror of
git://nv-tegra.nvidia.com/device/hardware/nvidia/t23x-public-dts.git
synced 2025-12-22 09:12:02 +03:00
Add a name to the overlay. This is helpful when debugging issues related to overlays. Bug 4290389 Change-Id: I08d0c991bcd2eeada0e9ab1a8254c902b713dfc2 Signed-off-by: Brad Griffis <bgriffis@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/device/hardware/nvidia/t23x-public-dts/+/3016116 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
52 lines
1.0 KiB
Devicetree
52 lines
1.0 KiB
Devicetree
// SPDX-License-Identifier: GPL-2.0-only
|
|
// SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
overlay-name = "Tegra234 Carveouts Overlay";
|
|
|
|
fragment@0 {
|
|
target-path = "/";
|
|
__overlay__ {
|
|
|
|
reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
ranges;
|
|
|
|
vpr: vpr-carveout {
|
|
compatible = "nvidia,vpr-carveout";
|
|
status = "okay";
|
|
};
|
|
|
|
fsi_reserved: fsi-carveout {
|
|
compatible = "nvidia,fsi-carveout";
|
|
size = <0 0x2000000>;
|
|
alignment = <0 0x1000>;
|
|
no-map;
|
|
alloc-ranges = <0x0 0x0 0x1 0x0>;
|
|
status = "okay";
|
|
};
|
|
|
|
ramoops_reserved: ramoops_carveout {
|
|
compatible = "ramoops";
|
|
size = <0x0 0x200000>;
|
|
record-size = <0x00010000>;
|
|
console-size = <0x00080000>;
|
|
alignment = <0x0 0x10000>;
|
|
alloc-ranges = <0x0 0x0 0x1 0x0>;
|
|
no-map;
|
|
};
|
|
};
|
|
|
|
tegra-carveouts {
|
|
compatible = "nvidia,carveouts";
|
|
memory-region = <&vpr &fsi_reserved>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|