mirror of
git://nv-tegra.nvidia.com/device/hardware/nvidia/t23x-public-dts.git
synced 2025-12-22 09:12:02 +03:00
Remove the "-overlay" from file name and move all overlay files to the overlay folder. This way, base and overlay will be differentiate based on folder at source level and based on extension on binary level. Bug 3523182 Change-Id: I361877cea630be216cd22390daf8a7da8605c5e3 Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/device/hardware/nvidia/platform/t23x/concord-generic-dts/+/2808882 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
43 lines
1.1 KiB
Devicetree
43 lines
1.1 KiB
Devicetree
/*
|
|
* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Tegra234 Device-tree overlay for SBSA UART
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
/ {
|
|
overlay-name = "Tegra234 SBSA UART overlay";
|
|
compatible = "nvidia,tegra234";
|
|
|
|
fragment@0 {
|
|
target-path = "/bus@0/";
|
|
__overlay__ {
|
|
serial@31d0000 {
|
|
compatible = "arm,sbsa-uart";
|
|
reg = <0x31d0000 0x10000>;
|
|
interrupts = <GIC_SPI 285 IRQ_TYPE_LEVEL_HIGH>;
|
|
current-speed = <115200>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|