mirror of
git://nv-tegra.nvidia.com/linux/kernel-devicetree.git
synced 2025-12-22 17:26:42 +03:00
Compare commits
5 Commits
IGX_OS-1.1
...
l4t/l4t-r3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da22d336b5 | ||
|
|
fa7e112eba | ||
|
|
cf5f0c7264 | ||
|
|
d290b67c3d | ||
|
|
0acb474aaf |
22
BUILD.bazel
Normal file
22
BUILD.bazel
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||||
|
|
||||||
|
package(
|
||||||
|
default_visibility = [
|
||||||
|
"//visibility:public",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "devicetree.scripts",
|
||||||
|
srcs = glob([
|
||||||
|
"scripts/**/*",
|
||||||
|
]),
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "generic-dts.srcs",
|
||||||
|
srcs = glob([
|
||||||
|
"generic-dts/**/*",
|
||||||
|
]),
|
||||||
|
)
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
objtree ?= $(srctree)
|
objtree ?= $(srctree)
|
||||||
@@ -13,15 +13,19 @@ include $(oottree)/scripts/Makefile.lib
|
|||||||
|
|
||||||
DTC_CPP_FLAGS += $(EXTRA_CPP_FLAGS)
|
DTC_CPP_FLAGS += $(EXTRA_CPP_FLAGS)
|
||||||
|
|
||||||
DTC_CPP_FLAGS += -DLINUX_VERSION=600 -DTEGRA_HOST1X_DT_VERSION=2
|
DTC_CPP_FLAGS += -DLINUX_VERSION=600 -DTEGRA_HOST1X_DT_VERSION=2 -DOS_LINUX
|
||||||
|
|
||||||
ifneq ($(findstring ack_src,$(NV_BUILD_KERNEL_OPTIONS)),)
|
ifdef CONFIG_TEGRA_SYSTEM_TYPE_ACK
|
||||||
|
ifdef CONFIG_TEGRA_KLEAF_BUILD
|
||||||
|
SOURCE_TOP := $(ROOT_DIR)
|
||||||
|
else # !CONFIG_TEGRA_KLEAF_BUILD
|
||||||
ifneq ($(TOP),)
|
ifneq ($(TOP),)
|
||||||
SOURCE_TOP := $(TOP)
|
SOURCE_TOP := $(TOP)
|
||||||
else
|
else
|
||||||
$(error TOP is not defined)
|
$(error TOP is not defined)
|
||||||
endif
|
endif
|
||||||
else
|
endif # end of CONFIG_TEGRA_KLEAF_BUILD
|
||||||
|
else # !CONFIG_TEGRA_SYSTEM_TYPE_ACK
|
||||||
ifneq ($(TEGRA_TOP),)
|
ifneq ($(TEGRA_TOP),)
|
||||||
SOURCE_TOP := $(TEGRA_TOP)
|
SOURCE_TOP := $(TEGRA_TOP)
|
||||||
else ifneq ($(TOP),)
|
else ifneq ($(TOP),)
|
||||||
@@ -29,9 +33,13 @@ SOURCE_TOP := $(TOP)
|
|||||||
else
|
else
|
||||||
$(error TEGRA_TOP or TOP is not defined)
|
$(error TEGRA_TOP or TOP is not defined)
|
||||||
endif
|
endif
|
||||||
endif
|
endif # end of CONFIG_TEGRA_SYSTEM_TYPE_ACK
|
||||||
|
|
||||||
|
ifdef CONFIG_TEGRA_KLEAF_BUILD
|
||||||
|
tegra-dtstree := $(SOURCE_TOP)/external/nvidia_dts/hardware/nvidia
|
||||||
|
else
|
||||||
tegra-dtstree := $(SOURCE_TOP)/hardware/nvidia
|
tegra-dtstree := $(SOURCE_TOP)/hardware/nvidia
|
||||||
|
endif
|
||||||
|
|
||||||
# Get relative path for tegra-dtstree from this makefile
|
# Get relative path for tegra-dtstree from this makefile
|
||||||
null :=
|
null :=
|
||||||
@@ -41,17 +49,28 @@ obj-path-from-top := $(subst $(SOURCE_TOP),,$(obj-path))
|
|||||||
rel-top-path := $(subst /, $(space)/,$(obj-path-from-top))
|
rel-top-path := $(subst /, $(space)/,$(obj-path-from-top))
|
||||||
rel-top-path := $(patsubst /%,../,$(rel-top-path))
|
rel-top-path := $(patsubst /%,../,$(rel-top-path))
|
||||||
rel-top-path := $(subst $(space),,$(rel-top-path))
|
rel-top-path := $(subst $(space),,$(rel-top-path))
|
||||||
|
ifdef CONFIG_TEGRA_KLEAF_BUILD
|
||||||
|
tegra-rel-dtstree := $(rel-top-path)/external/nvidia_dts/hardware/nvidia
|
||||||
|
else
|
||||||
tegra-rel-dtstree := $(rel-top-path)/hardware/nvidia
|
tegra-rel-dtstree := $(rel-top-path)/hardware/nvidia
|
||||||
|
endif
|
||||||
|
|
||||||
DTC_INCLUDE :=
|
DTC_INCLUDE :=
|
||||||
# SOC independent common include
|
# SOC independent common include
|
||||||
DTC_INCLUDE += $(tegra-dtstree)/tegra/nv-public
|
DTC_INCLUDE += $(tegra-dtstree)/tegra/nv-public
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/tegra/nv-public/include/kernel
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/tegra/nv-public/include/nvidia-oot
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/tegra/nv-public/include/platforms
|
||||||
|
|
||||||
# SOC T23X specific common include
|
# SOC T23X specific common include
|
||||||
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public/include/kernel
|
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public/include/kernel
|
||||||
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public/include/nvidia-oot
|
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public/include/nvidia-oot
|
||||||
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public/include/platforms
|
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public/include/platforms
|
||||||
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public
|
DTC_INCLUDE += $(tegra-dtstree)/t23x/nv-public
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/t264/nv-public/include/kernel-t264
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/t264/nv-public
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/t268/dts-public/include/kernel
|
||||||
|
DTC_INCLUDE += $(tegra-dtstree)/t268/dts-public
|
||||||
|
|
||||||
dtb-y :=
|
dtb-y :=
|
||||||
dtbo-y :=
|
dtbo-y :=
|
||||||
@@ -60,6 +79,8 @@ DTB_LIST := $(dtb-y)
|
|||||||
DTBO_LIST := $(dtbo-y)
|
DTBO_LIST := $(dtbo-y)
|
||||||
dtb-y :=
|
dtb-y :=
|
||||||
fdts := $(tegra-dtstree)/t23x
|
fdts := $(tegra-dtstree)/t23x
|
||||||
|
fdts += $(tegra-dtstree)/t264
|
||||||
|
fdts += $(tegra-dtstree)/t268
|
||||||
|
|
||||||
# Add internal SOCs to scan the DT makefiles
|
# Add internal SOCs to scan the DT makefiles
|
||||||
ifneq ($(internal_soc_list),)
|
ifneq ($(internal_soc_list),)
|
||||||
@@ -139,8 +160,14 @@ dtbs: $(DTB_OBJS) $(DTBO_OBJS) FORCE
|
|||||||
if [ ! -z "$(DTBS_DTBOS)" ] ; then \
|
if [ ! -z "$(DTBS_DTBOS)" ] ; then \
|
||||||
cp -u $(DTB_OBJS) $(DTBO_OBJS) $(obj)/dtbs/ ; \
|
cp -u $(DTB_OBJS) $(DTBO_OBJS) $(obj)/dtbs/ ; \
|
||||||
fi
|
fi
|
||||||
|
ifdef CONFIG_TEGRA_KLEAF_BUILD
|
||||||
|
if [ -d $(obj)/external/nvidia_dts/hardware/ ] ; then \
|
||||||
|
rm -rf $(obj)/external/nvidia_dts/hardware/ ; \
|
||||||
|
fi
|
||||||
|
else
|
||||||
if [ -d $(obj)/hardware/ ] ; then \
|
if [ -d $(obj)/hardware/ ] ; then \
|
||||||
rm -rf $(obj)/hardware/ ; \
|
rm -rf $(obj)/hardware/ ; \
|
||||||
fi
|
fi
|
||||||
|
endif
|
||||||
|
|
||||||
clean-files := *.dtb *.dtbo *.tmp
|
clean-files := *.dtb *.dtbo *.tmp
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ DTC_FLAGS += -Wno-graph_endpoint
|
|||||||
|
|
||||||
DTC_CPP_FLAGS += $(EXTRA_CPP_FLAGS)
|
DTC_CPP_FLAGS += $(EXTRA_CPP_FLAGS)
|
||||||
|
|
||||||
DTC_CPP_FLAGS += -DLINUX_VERSION=600 -DTEGRA_HOST1X_DT_VERSION=2
|
DTC_CPP_FLAGS += -DLINUX_VERSION=600 -DTEGRA_HOST1X_DT_VERSION=2 -DOS_LINUX
|
||||||
|
|
||||||
ifneq ($(findstring ack_src,$(NV_BUILD_KERNEL_OPTIONS)),)
|
ifneq ($(findstring ack_src,$(NV_BUILD_KERNEL_OPTIONS)),)
|
||||||
ifneq ($(TOP),)
|
ifneq ($(TOP),)
|
||||||
|
|||||||
Reference in New Issue
Block a user