blob: c9b2a894418977ec32fd902739a6812a7e46e104 [file] [log] [blame]
Simon Glassbbb0b122011-10-15 05:48:21 +00001#
2# Copyright (c) 2011 The Chromium OS Authors.
3#
Wolfgang Denk1a459662013-07-08 09:37:19 +02004# SPDX-License-Identifier: GPL-2.0+
Simon Glassbbb0b122011-10-15 05:48:21 +00005#
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
Masahiro Yamadaefcf8612014-02-04 17:24:40 +090010DEVICE_TREE ?= $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%)
11ifeq ($(DEVICE_TREE),)
Masahiro Yamada3284c8b2014-02-05 11:28:27 +090012DEVICE_TREE := unset
Masahiro Yamadaefcf8612014-02-04 17:24:40 +090013endif
Simon Glassbbb0b122011-10-15 05:48:21 +000014
James Balean27cb7302017-03-15 23:11:31 -050015ARCH_PATH := arch/$(ARCH)/dts
16dtb_depends := arch-dtbs
17
Simon Glassd18926a2014-06-12 07:24:43 -060018ifneq ($(EXT_DTB),)
19DTB := $(EXT_DTB)
Simon Glass63b4b5b2014-06-02 22:04:50 -060020else
James Balean27cb7302017-03-15 23:11:31 -050021DTB := $(ARCH_PATH)/$(DEVICE_TREE).dtb
22dtb_depends += $(DTB:.dtb=.dts)
Simon Glass63b4b5b2014-06-02 22:04:50 -060023endif
Simon Glassbbb0b122011-10-15 05:48:21 +000024
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000025# 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
35quiet_cmd_fdtgrep = FDTGREP $@
36 cmd_fdtgrep = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \
37 -n /chosen -n /config -O dtb | \
38 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
39 $(addprefix -P ,$(subst $\",,$(CONFIG_OF_SPL_REMOVE_PROPS)))
40
41$(obj)/dt-spl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
42 $(call if_changed,fdtgrep)
43
Masahiro Yamada3284c8b2014-02-05 11:28:27 +090044$(obj)/dt.dtb: $(DTB) FORCE
Masahiro Yamadab9d1dbd2014-06-04 10:11:18 +090045 $(call if_changed,shipped)
Simon Glassbbb0b122011-10-15 05:48:21 +000046
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000047targets += dt.dtb dt-spl.dtb
Simon Glassbbb0b122011-10-15 05:48:21 +000048
James Balean27cb7302017-03-15 23:11:31 -050049$(DTB): $(dtb_depends)
50ifeq ($(EXT_DTB),)
51 $(Q)$(MAKE) $(build)=$(ARCH_PATH) $@
52endif
Masahiro Yamada3284c8b2014-02-05 11:28:27 +090053 $(Q)test -e $@ || ( \
54 echo >&2; \
55 echo >&2 "Device Tree Source is not correctly specified."; \
56 echo >&2 "Please define 'CONFIG_DEFAULT_DEVICE_TREE'"; \
57 echo >&2 "or build with 'DEVICE_TREE=<device_tree>' argument"; \
58 echo >&2; \
59 /bin/false)
60
61arch-dtbs:
James Balean27cb7302017-03-15 23:11:31 -050062 $(Q)$(MAKE) $(build)=$(ARCH_PATH) dtbs
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +090063
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000064.SECONDARY: $(obj)/dt.dtb.S $(obj)/dt-spl.dtb.S
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +090065
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000066
67ifeq ($(CONFIG_SPL_BUILD),y)
68obj-$(CONFIG_OF_EMBED) := dt-spl.dtb.o
69# support "out-of-tree" build for dtb-spl
70$(obj)/dt-spl.dtb.o: $(obj)/dt-spl.dtb.S FORCE
71 $(call if_changed_dep,as_o_S)
72else
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +090073obj-$(CONFIG_OF_EMBED) := dt.dtb.o
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000074endif
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +090075
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000076dtbs: $(obj)/dt.dtb $(obj)/dt-spl.dtb
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +090077 @:
78
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +000079clean-files := dt.dtb.S dt-spl.dtb.S
Masahiro Yamada3284c8b2014-02-05 11:28:27 +090080
81# Let clean descend into dts directories
Masahiro Yamadabe6b2b32016-01-24 03:50:02 +090082subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/mips/dts ../arch/sandbox/dts ../arch/x86/dts