Files
t23x-public-dts/Makefile
Laxman Dewangan e13cd817e0 overlay: Copy concord overlay DTS files from nvidia-oot
Overlay DTS files contain the overlay DTBO nodes to apply on top
of base DTB of the given platform.

The overlay DTS files are used by non-linux client also and
doest not have access to nvidia-oot path.

Copy all concord overlay DTS files so client can refer these
overlay dtbos.

These files are copied only without any edit.
Files are synced from the nvidia-oot/archarm64/boot/dts/nvidia
Change list from folder nvidia-oot/archarm64/boot/dts/nvidia is:
            af9627e nvidia-oot: dts: pinmux: Add pinmux DT node for T234
            2af0e64 arm64: dts: Add smmu_test node
            7ca4e62 arm64: tegra: Remove GPCDMA driver from OOT
            b068fae t23x: concord: dts: enable cpu core power gating
            f23cc48 dtb: disp: Add display node to concord overlay dtb
            994623c nvidia-oot: add soc-hwpm device node
            6d2a57d nvidia-oot: add tsec driver as oot module
            9bc606c arm64: tegra: Enable RT5640 codec support
            a765a2e arm64: tegra: Add overlay dts for t234 carveouts
            f8c472c dts: pwm-fan: Add Tegra234 PWM FAN
            bfea978 arm64: tegra: Add assigned-clocks binding for AHUB
            bbde9d8 dts: pwm: Add Tegra234 PWM controller
            6799b30 dts: Add linux-cma node with 256MB for GPU requirements
            9fa1d2a DTB: DCE : Add dce node to t234 soc overlay
            943cc4d arm64: tegra: Enable APE sound card
            55220a5 arm64: tegra: Correct the compatible for SE4
            b0746ed arch: arm64: add gpu node in OOT

Bug 3860258

Change-Id: I03dee2f1cce9b26dcdbd0ce81f4082bc92f95220
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/+/2807228
Reviewed-by: svcacv <svcacv@nvidia.com>
2023-04-19 18:17:43 +00:00

19 lines
414 B
Makefile

old-dtb := $(dtb-y)
old-dtbo := $(dtbo-y)
dtb-y :=
dtbo-y :=
makefile-path := platform/t23x/concord/dts/generic-dts
dtbo-y += tegra234-p3737-0000+p3701-0000-overlay.dtbo
dtb-y += tegra234-p3710-0010-a01-linux-native.dtb
ifneq ($(dtb-y),)
dtb-y := $(addprefix $(makefile-path)/,$(dtb-y))
endif
ifneq ($(dtbo-y),)
dtbo-y := $(addprefix $(makefile-path)/,$(dtbo-y))
endif
dtb-y += $(old-dtb)
dtbo-y += $(old-dtbo)