1# SPDX-License-Identifier: GPL-2.0+
2
3include $(srctree)/scripts/Makefile.dts
4
5targets += $(dtb-y)
6
7# Add any required device tree compiler flags here
8DTC_FLAGS += -a 0x8
9
10ifdef CONFIG_RCAR_64
11DTC_FLAGS += -R 4 -p 0x1000
12endif
13
14PHONY += dtbs
15dtbs: $(addprefix $(obj)/, $(dtb-y))
16	@:
17
18clean-files := */*.dtb */*.dtbo
19