1# 2# Copyright (c) 2011 The Chromium OS Authors. 3# 4# SPDX-License-Identifier: GPL-2.0+ 5# 6 7# This Makefile builds the internal U-Boot fdt if CONFIG_OF_CONTROL is 8# enabled. See doc/README.fdt-control for more details. 9 10DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%) 11ifeq ($(DEVICE_TREE),) 12DEVICE_TREE := unset 13endif 14 15ARCH_PATH := arch/$(ARCH)/dts 16dtb_depends := arch-dtbs 17 18ifneq ($(EXT_DTB),) 19DTB := $(EXT_DTB) 20else 21DTB := $(ARCH_PATH)/$(DEVICE_TREE).dtb 22dtb_depends += $(DTB:.dtb=.dts) 23endif 24 25# Pass the original device tree file through fdtgrep twice. The first pass 26# removes any unwanted nodes (i.e. those which don't have the 27# 'u-boot,dm-pre-reloc' property and thus are not needed by SPL. The second 28# pass removes various unused properties from the remaining nodes. 29# The output is typically a much smaller device tree file. 30ifeq ($(CONFIG_TPL_BUILD),y) 31fdtgrep_props := -b u-boot,dm-pre-reloc -b u-boot,dm-tpl 32else 33fdtgrep_props := -b u-boot,dm-pre-reloc -b u-boot,dm-spl 34endif 35 36quiet_cmd_fdtgrep = FDTGREP $@ 37 cmd_fdtgrep = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \ 38 -n /chosen -n /config -O dtb | \ 39 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \ 40 $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS))) 41 42quiet_cmd_fdtgrep_uboot = FDTGREP $@ 43 cmd_fdtgrep_uboot = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \ 44 -n /chosen -n /config -O dtb | \ 45 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \ 46 $(addprefix -P ,$(subst $\",,$(CONFIG_OF_U_BOOT_REMOVE_PROPS))) 47 48fdtgrep_tpl_props := -b u-boot,dm-pre-reloc -b u-boot,dm-tpl 49quiet_cmd_fdtgrep_tpl = FDTGREP $@ 50 cmd_fdtgrep_tpl = $(objtree)/tools/fdtgrep $(fdtgrep_tpl_props) -RT $< \ 51 -n /chosen -n config -O dtb | \ 52 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \ 53 $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS))) 54 55fdtgrep_spl_minimum_props := -b u-boot,dm-spl 56quiet_cmd_fdtgrep_spl_minimum = FDTGREP $@ 57 cmd_fdtgrep_spl_minimum = $(objtree)/tools/fdtgrep $(fdtgrep_spl_minimum_props) -RT $< \ 58 -n /chosen -n config -O dtb | \ 59 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \ 60 $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS))) 61 62$(obj)/dt-tpl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE 63 $(call if_changed,fdtgrep_tpl) 64 65ifeq ($(CONFIG_SPL_DTB_MINIMUM),y) 66$(obj)/dt-spl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE 67 $(call if_changed,fdtgrep_spl_minimum) 68else 69$(obj)/dt-spl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE 70 $(call if_changed,fdtgrep) 71endif 72 73# Normally, usbplug is enabled with kernel dtb disabled 74ifneq ($(CONFIG_USING_KERNEL_DTB)$(CONFIG_SUPPORT_USBPLUG),) 75$(obj)/dt.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE 76ifneq ($(CONFIG_OF_U_BOOT_REMOVE_PROPS), "") 77 $(call if_changed,fdtgrep_uboot) 78else 79 $(call if_changed,fdtgrep) 80endif 81else 82$(obj)/dt.dtb: $(DTB) FORCE 83 $(call if_changed,shipped) 84endif 85 86targets += dt.dtb dt-spl.dtb dt-tpl.dtb 87 88$(DTB): $(dtb_depends) 89ifeq ($(EXT_DTB),) 90 $(Q)$(MAKE) $(build)=$(ARCH_PATH) $@ 91endif 92 $(Q)test -e $@ || ( \ 93 echo >&2; \ 94 echo >&2 "Device Tree Source is not correctly specified."; \ 95 echo >&2 "Please define 'CONFIG_DEFAULT_DEVICE_TREE'"; \ 96 echo >&2 "or build with 'DEVICE_TREE=<device_tree>' argument"; \ 97 echo >&2; \ 98 /bin/false) 99 100arch-dtbs: 101 $(Q)$(MAKE) $(build)=$(ARCH_PATH) dtbs 102 103.SECONDARY: $(obj)/dt.dtb.S $(obj)/dt-spl.dtb.S $(obj)/dt-tpl.dtb.S 104 105 106ifeq ($(CONFIG_SPL_BUILD),y) 107obj-$(CONFIG_OF_EMBED) := dt-spl.dtb.o 108# support "out-of-tree" build for dtb-spl 109$(obj)/dt-tpl.dtb.o: $(obj)/dt-tpl.dtb.S FORCE 110 $(call if_changed_dep,as_o_S) 111 112$(obj)/dt-spl.dtb.o: $(obj)/dt-spl.dtb.S FORCE 113 $(call if_changed_dep,as_o_S) 114else 115obj-$(CONFIG_OF_EMBED) := dt.dtb.o 116endif 117 118dtbs: $(obj)/dt.dtb $(obj)/dt-spl.dtb $(obj)/dt-tpl.dtb 119 @: 120 121clean-files := dt.dtb.S dt-spl.dtb.S dt-tpl.dtb.S 122 123# Let clean descend into dts directories 124subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/mips/dts ../arch/sandbox/dts ../arch/x86/dts 125