Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2011 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | # |
| 6 | # (C) Copyright 2011 |
| 7 | # Daniel Schwierzeck, daniel.schwierzeck@googlemail.com. |
| 8 | # |
| 9 | # (C) Copyright 2011 |
| 10 | # Texas Instruments Incorporated - http://www.ti.com/ |
| 11 | # Aneesh V <aneesh@ti.com> |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 12 | # Based on top-level Makefile. |
| 13 | # |
| 14 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 15 | src := $(obj) |
| 16 | |
| 17 | # Create output directory if not already present |
| 18 | _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj)) |
| 19 | |
Masahiro Yamada | bf4b3de | 2014-02-04 17:24:18 +0900 | [diff] [blame] | 20 | include $(srctree)/scripts/Kbuild.include |
| 21 | |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 22 | -include include/config/auto.conf |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 23 | -include $(obj)/include/autoconf.mk |
Masahiro Yamada | e0d5d9f | 2014-02-04 17:24:22 +0900 | [diff] [blame] | 24 | |
Masahiro Yamada | f34d0ad | 2020-04-17 16:21:37 +0900 | [diff] [blame] | 25 | UBOOTINCLUDE := -I$(obj)/include $(UBOOTINCLUDE) |
| 26 | |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 27 | KBUILD_CPPFLAGS += -DCONFIG_SPL_BUILD |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 28 | ifeq ($(CONFIG_TPL_BUILD),y) |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 29 | KBUILD_CPPFLAGS += -DCONFIG_TPL_BUILD |
| 30 | endif |
| 31 | |
| 32 | ifeq ($(CONFIG_TPL_BUILD),y) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 33 | SPL_BIN := u-boot-tpl |
Simon Glass | 53db2ee | 2020-12-22 19:30:13 -0700 | [diff] [blame] | 34 | SPL_NAME := tpl |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 35 | else |
| 36 | SPL_BIN := u-boot-spl |
Simon Glass | 53db2ee | 2020-12-22 19:30:13 -0700 | [diff] [blame] | 37 | SPL_NAME := spl |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 38 | endif |
| 39 | |
Simon Glass | c7674fc | 2020-12-22 19:30:15 -0700 | [diff] [blame] | 40 | export SPL_NAME |
| 41 | |
Simon Glass | d688bd7 | 2017-01-16 07:03:28 -0700 | [diff] [blame] | 42 | ifdef CONFIG_SPL_BUILD |
| 43 | SPL_ := SPL_ |
Simon Glass | 001f314 | 2017-04-02 09:50:30 -0600 | [diff] [blame] | 44 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 45 | SPL_TPL_ := TPL_ |
| 46 | else |
| 47 | SPL_TPL_ := SPL_ |
| 48 | endif |
Simon Glass | d688bd7 | 2017-01-16 07:03:28 -0700 | [diff] [blame] | 49 | else |
| 50 | SPL_ := |
Simon Glass | 001f314 | 2017-04-02 09:50:30 -0600 | [diff] [blame] | 51 | SPL_TPL_ := |
Simon Glass | d688bd7 | 2017-01-16 07:03:28 -0700 | [diff] [blame] | 52 | endif |
| 53 | |
Simon Glass | 2c5eac1 | 2018-10-01 12:22:11 -0600 | [diff] [blame] | 54 | ifeq ($(obj)$(CONFIG_SUPPORT_SPL),spl) |
| 55 | $(error You cannot build SPL without enabling CONFIG_SUPPORT_SPL) |
| 56 | endif |
| 57 | ifeq ($(obj)$(CONFIG_SUPPORT_TPL),tpl) |
| 58 | $(error You cannot build TPL without enabling CONFIG_SUPPORT_TPL) |
| 59 | endif |
| 60 | |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 61 | include $(srctree)/config.mk |
Daniel Schwierzeck | e19db55 | 2014-11-21 23:51:33 +0100 | [diff] [blame] | 62 | include $(srctree)/arch/$(ARCH)/Makefile |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 63 | |
Simon Goldschmidt | d693742 | 2018-02-14 06:44:36 +0100 | [diff] [blame] | 64 | include $(srctree)/scripts/Makefile.lib |
| 65 | |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 66 | # Enable garbage collection of un-used sections for SPL |
| 67 | KBUILD_CFLAGS += -ffunction-sections -fdata-sections |
| 68 | LDFLAGS_FINAL += --gc-sections |
| 69 | |
Joel Peshkin | 4e9bce1 | 2021-04-11 11:21:58 +0200 | [diff] [blame] | 70 | ifeq ($(CONFIG_$(SPL_TPL_)STACKPROTECTOR),y) |
| 71 | KBUILD_CFLAGS += -fstack-protector-strong |
| 72 | else |
| 73 | KBUILD_CFLAGS += -fno-stack-protector |
| 74 | endif |
| 75 | |
Masahiro Yamada | 5fe6301 | 2014-02-04 17:24:33 +0900 | [diff] [blame] | 76 | # FIX ME |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 77 | cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \ |
| 78 | $(NOSTDINC_FLAGS) |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 79 | c_flags := $(KBUILD_CFLAGS) $(cpp_flags) |
Masahiro Yamada | 5fe6301 | 2014-02-04 17:24:33 +0900 | [diff] [blame] | 80 | |
Masahiro Yamada | 0128632 | 2014-03-11 11:05:20 +0900 | [diff] [blame] | 81 | HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 82 | |
Masahiro Yamada | bf69d66 | 2014-04-25 21:54:31 +0900 | [diff] [blame] | 83 | libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/) |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 84 | libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 85 | |
Heiko Stuebner | 22b7b86 | 2019-07-16 10:12:02 +0200 | [diff] [blame] | 86 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 87 | libs-$(CONFIG_TPL_FRAMEWORK) += common/spl/ |
| 88 | else |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 89 | libs-$(CONFIG_SPL_FRAMEWORK) += common/spl/ |
Heiko Stuebner | 22b7b86 | 2019-07-16 10:12:02 +0200 | [diff] [blame] | 90 | endif |
Simon Glass | af6bbd4 | 2015-10-19 06:49:56 -0600 | [diff] [blame] | 91 | libs-y += common/init/ |
Simon Glass | 76f1f38 | 2016-09-12 23:18:25 -0600 | [diff] [blame] | 92 | |
| 93 | # Special handling for a few options which support SPL/TPL |
| 94 | ifeq ($(CONFIG_TPL_BUILD),y) |
Simon Glass | 0649cd0 | 2017-08-03 12:21:49 -0600 | [diff] [blame] | 95 | libs-$(CONFIG_TPL_LIBCOMMON_SUPPORT) += common/ cmd/ env/ |
Simon Glass | 76f1f38 | 2016-09-12 23:18:25 -0600 | [diff] [blame] | 96 | libs-$(CONFIG_TPL_LIBGENERIC_SUPPORT) += lib/ |
| 97 | else |
Simon Glass | 0649cd0 | 2017-08-03 12:21:49 -0600 | [diff] [blame] | 98 | libs-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ cmd/ env/ |
Simon Glass | 76f1f38 | 2016-09-12 23:18:25 -0600 | [diff] [blame] | 99 | libs-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/ |
Tom Rini | 91ff686 | 2018-12-05 08:23:38 -0500 | [diff] [blame] | 100 | ifdef CONFIG_SPL_FRAMEWORK |
| 101 | libs-$(CONFIG_PARTITIONS) += disk/ |
| 102 | endif |
Simon Glass | 76f1f38 | 2016-09-12 23:18:25 -0600 | [diff] [blame] | 103 | endif |
| 104 | |
Masahiro Yamada | d6c2ac5 | 2015-08-12 07:31:44 +0900 | [diff] [blame] | 105 | libs-y += drivers/ |
Jean-Jacques Hiblot | f811e97 | 2019-01-10 15:44:13 +0100 | [diff] [blame] | 106 | libs-$(CONFIG_SPL_USB_GADGET) += drivers/usb/dwc3/ |
Vignesh Raghavendra | 7e91f6c | 2019-10-01 17:26:33 +0530 | [diff] [blame] | 107 | libs-$(CONFIG_SPL_USB_GADGET) += drivers/usb/cdns3/ |
Michal Simek | 8d7a2b8 | 2015-11-09 10:45:07 +0100 | [diff] [blame] | 108 | libs-y += dts/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 109 | libs-y += fs/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 110 | libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/ |
| 111 | libs-$(CONFIG_SPL_NET_SUPPORT) += net/ |
Simon Glass | ba96be4 | 2020-10-25 20:38:26 -0600 | [diff] [blame] | 112 | libs-$(CONFIG_SPL_UNIT_TEST) += test/ |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 113 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 114 | head-y := $(addprefix $(obj)/,$(head-y)) |
| 115 | libs-y := $(addprefix $(obj)/,$(libs-y)) |
| 116 | u-boot-spl-dirs := $(patsubst %/,%,$(filter %/, $(libs-y))) |
| 117 | |
| 118 | libs-y := $(patsubst %/, %/built-in.o, $(libs-y)) |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 119 | |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 120 | # Add GCC lib |
Masahiro Yamada | cd2e46c | 2014-03-05 16:59:38 +0900 | [diff] [blame] | 121 | ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y) |
Masahiro Yamada | a86cf89 | 2014-02-27 22:40:34 +0900 | [diff] [blame] | 122 | PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a |
Masahiro Yamada | 6445262 | 2014-02-24 20:44:14 +0900 | [diff] [blame] | 123 | PLATFORM_LIBS := $(filter-out %/lib.a, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC) |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 124 | endif |
| 125 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 126 | u-boot-spl-init := $(head-y) |
| 127 | u-boot-spl-main := $(libs-y) |
Philipp Tomsich | f291ce1 | 2017-06-29 11:11:21 +0200 | [diff] [blame] | 128 | ifdef CONFIG_$(SPL_TPL_)OF_PLATDATA |
Simon Glass | 56b313d | 2021-03-25 06:40:52 +1300 | [diff] [blame] | 129 | platdata-hdr := include/generated/dt-structs-gen.h include/generated/dt-decl.h |
Simon Glass | 354d232 | 2021-03-25 06:40:53 +1300 | [diff] [blame] | 130 | platdata-inst := $(obj)/dts/dt-uclass.o $(obj)/dts/dt-device.o |
| 131 | platdata-noinst := $(obj)/dts/dt-plat.o |
| 132 | |
Simon Glass | 13d7115 | 2021-03-25 06:40:50 +1300 | [diff] [blame] | 133 | ifdef CONFIG_$(SPL_TPL_)OF_PLATDATA_INST |
Simon Glass | 354d232 | 2021-03-25 06:40:53 +1300 | [diff] [blame] | 134 | u-boot-spl-platdata := $(platdata-inst) |
| 135 | u-boot-spl-old-platdata := $(platdata-noinst) |
Simon Glass | 13d7115 | 2021-03-25 06:40:50 +1300 | [diff] [blame] | 136 | else |
Simon Glass | 354d232 | 2021-03-25 06:40:53 +1300 | [diff] [blame] | 137 | u-boot-spl-platdata := $(platdata-noinst) |
| 138 | u-boot-spl-old-platdata := $(platdata-inst) |
Simon Glass | 13d7115 | 2021-03-25 06:40:50 +1300 | [diff] [blame] | 139 | endif |
Simon Glass | 354d232 | 2021-03-25 06:40:53 +1300 | [diff] [blame] | 140 | |
| 141 | # Files we need to generate |
Simon Glass | be3bd3b | 2020-12-28 20:34:53 -0700 | [diff] [blame] | 142 | u-boot-spl-platdata_c := $(patsubst %.o,%.c,$(u-boot-spl-platdata)) |
Simon Glass | 354d232 | 2021-03-25 06:40:53 +1300 | [diff] [blame] | 143 | |
| 144 | # Files we won't generate and should remove |
| 145 | u-boot-spl-old-platdata_c := $(patsubst %.o,%.c,$(u-boot-spl-old-platdata)) |
Simon Glass | 56b313d | 2021-03-25 06:40:52 +1300 | [diff] [blame] | 146 | endif # OF_PLATDATA |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 147 | |
| 148 | # Linker Script |
Philipp Tomsich | dd6fbcb | 2017-07-28 19:20:49 +0200 | [diff] [blame] | 149 | # First test whether there's a linker-script for the specific stage defined... |
| 150 | ifneq ($(CONFIG_$(SPL_TPL_)LDSCRIPT),) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 151 | # need to strip off double quotes |
Philipp Tomsich | 1749858 | 2017-07-04 14:47:46 +0200 | [diff] [blame] | 152 | LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_$(SPL_TPL_)LDSCRIPT:"%"=%)) |
Philipp Tomsich | dd6fbcb | 2017-07-28 19:20:49 +0200 | [diff] [blame] | 153 | else |
| 154 | # ...then fall back to the generic SPL linker-script |
| 155 | ifneq ($(CONFIG_SPL_LDSCRIPT),) |
| 156 | # need to strip off double quotes |
| 157 | LDSCRIPT := $(addprefix $(srctree)/,$(CONFIG_SPL_LDSCRIPT:"%"=%)) |
| 158 | endif |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 159 | endif |
| 160 | |
| 161 | ifeq ($(wildcard $(LDSCRIPT)),) |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 162 | LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot-spl.lds |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 163 | endif |
| 164 | ifeq ($(wildcard $(LDSCRIPT)),) |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 165 | LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot-spl.lds |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 166 | endif |
| 167 | ifeq ($(wildcard $(LDSCRIPT)),) |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 168 | LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot-spl.lds |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 169 | endif |
| 170 | ifeq ($(wildcard $(LDSCRIPT)),) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 171 | $(error could not find linker script) |
| 172 | endif |
| 173 | |
| 174 | # Special flags for CPP when processing the linker script. |
| 175 | # Pass the version down so we can handle backwards compatibility |
| 176 | # on the fly. |
| 177 | LDPPFLAGS += \ |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 178 | -include $(srctree)/include/u-boot/u-boot.lds.h \ |
Masahiro Yamada | 5ee828c | 2014-03-11 11:05:21 +0900 | [diff] [blame] | 179 | -include $(objtree)/include/config.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 180 | -DCPUDIR=$(CPUDIR) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 181 | $(shell $(LD) --version | \ |
| 182 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 183 | |
Tom Rini | 2f41ade | 2019-01-22 17:09:26 -0500 | [diff] [blame] | 184 | # Turn various CONFIG symbols into IMAGE symbols for easy reuse of |
| 185 | # the scripts between SPL and TPL. |
| 186 | ifneq ($(CONFIG_$(SPL_TPL_)MAX_SIZE),) |
| 187 | LDPPFLAGS += -DIMAGE_MAX_SIZE=$(CONFIG_$(SPL_TPL_)MAX_SIZE) |
| 188 | endif |
| 189 | ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),) |
| 190 | LDPPFLAGS += -DIMAGE_TEXT_BASE=$(CONFIG_$(SPL_TPL_)TEXT_BASE) |
| 191 | endif |
| 192 | |
Sven Ebenfeld | 1f6a664 | 2016-11-06 16:37:58 +0100 | [diff] [blame] | 193 | MKIMAGEOUTPUT ?= /dev/null |
| 194 | |
Marek Vasut | b97241b | 2014-03-14 05:00:14 +0100 | [diff] [blame] | 195 | quiet_cmd_mkimage = MKIMAGE $@ |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 196 | cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \ |
Rasmus Villemoes | 0658761 | 2018-03-23 12:08:02 +0100 | [diff] [blame] | 197 | >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT)) |
Tom Rini | 79b9ebb | 2012-10-16 13:06:06 +0000 | [diff] [blame] | 198 | |
Lokesh Vutla | 82f29fd | 2018-08-27 15:57:15 +0530 | [diff] [blame] | 199 | quiet_cmd_mkfitimage = MKIMAGE $@ |
| 200 | cmd_mkfitimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -f $(SPL_ITS) -E $@ \ |
| 201 | $(if $(KBUILD_VERBOSE:1=), MKIMAGEOUTPUT) |
| 202 | |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 203 | MKIMAGEFLAGS_MLO = -T omapimage -a $(CONFIG_SPL_TEXT_BASE) |
| 204 | |
| 205 | MKIMAGEFLAGS_MLO.byteswap = -T omapimage -n byteswap -a $(CONFIG_SPL_TEXT_BASE) |
| 206 | |
Masahiro Yamada | 514ec43 | 2016-02-05 17:55:13 +0900 | [diff] [blame] | 207 | MLO MLO.byteswap: $(obj)/u-boot-spl.bin FORCE |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 208 | $(call if_changed,mkimage) |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 209 | |
Nathan Rossi | 08598d6 | 2015-11-17 22:56:57 +1000 | [diff] [blame] | 210 | ifeq ($(CONFIG_SYS_SOC),"at91") |
Andreas Bießmann | 5c390a5 | 2014-05-19 14:23:40 +0200 | [diff] [blame] | 211 | MKIMAGEFLAGS_boot.bin = -T atmelimage |
| 212 | |
| 213 | ifeq ($(CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER),y) |
| 214 | MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params) |
| 215 | |
Stefan Roese | 581e711 | 2019-04-02 10:57:23 +0200 | [diff] [blame] | 216 | $(obj)/boot.bin: $(obj)/../tools/atmel_pmecc_params |
Andreas Bießmann | 5c390a5 | 2014-05-19 14:23:40 +0200 | [diff] [blame] | 217 | endif |
| 218 | |
Stefan Roese | 581e711 | 2019-04-02 10:57:23 +0200 | [diff] [blame] | 219 | $(obj)/boot.bin: $(obj)/u-boot-spl.bin FORCE |
Andreas Bießmann | 5c390a5 | 2014-05-19 14:23:40 +0200 | [diff] [blame] | 220 | $(call if_changed,mkimage) |
Nathan Rossi | 08598d6 | 2015-11-17 22:56:57 +1000 | [diff] [blame] | 221 | else |
Michal Simek | d9b58b3 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 222 | ifdef CONFIG_ARCH_ZYNQ |
Mike Looijmans | 3b64608 | 2016-09-20 11:37:24 +0200 | [diff] [blame] | 223 | MKIMAGEFLAGS_boot.bin = -T zynqimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE) |
Michal Simek | d9b58b3 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 224 | endif |
| 225 | ifdef CONFIG_ARCH_ZYNQMP |
Luca Ceresoli | c7df098 | 2018-06-04 12:21:01 +0200 | [diff] [blame] | 226 | ifneq ($(CONFIG_PMUFW_INIT_FILE),"") |
| 227 | spl/boot.bin: zynqmp-check-pmufw |
| 228 | zynqmp-check-pmufw: FORCE |
| 229 | ( cd $(srctree) && test -r $(CONFIG_PMUFW_INIT_FILE) ) \ |
| 230 | || ( echo "Cannot read $(CONFIG_PMUFW_INIT_FILE)" && false ) |
| 231 | endif |
Michal Simek | c85a6b7 | 2016-10-21 12:58:17 +0200 | [diff] [blame] | 232 | MKIMAGEFLAGS_boot.bin = -T zynqmpimage -R $(srctree)/$(CONFIG_BOOT_INIT_FILE) \ |
Luca Ceresoli | c7df098 | 2018-06-04 12:21:01 +0200 | [diff] [blame] | 233 | -n "$(shell cd $(srctree); readlink -f $(CONFIG_PMUFW_INIT_FILE))" |
Michal Simek | d9b58b3 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 234 | endif |
Nathan Rossi | 08598d6 | 2015-11-17 22:56:57 +1000 | [diff] [blame] | 235 | |
Michal Simek | a903dcf | 2019-01-16 12:14:00 +0100 | [diff] [blame] | 236 | $(obj)/$(SPL_BIN)-align.bin: $(obj)/$(SPL_BIN).bin |
| 237 | @dd if=$< of=$@ conv=block,sync bs=4 2>/dev/null; |
| 238 | |
| 239 | spl/boot.bin: $(obj)/$(SPL_BIN)-align.bin FORCE |
Nathan Rossi | 08598d6 | 2015-11-17 22:56:57 +1000 | [diff] [blame] | 240 | $(call if_changed,mkimage) |
| 241 | endif |
Andreas Bießmann | 5c390a5 | 2014-05-19 14:23:40 +0200 | [diff] [blame] | 242 | |
Simon Glass | 60251b1 | 2020-10-25 20:38:30 -0600 | [diff] [blame] | 243 | INPUTS-y += $(obj)/$(SPL_BIN).bin $(obj)/$(SPL_BIN).sym |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 244 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 245 | ifdef CONFIG_SAMSUNG |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 246 | INPUTS-y += $(obj)/$(BOARD)-spl.bin |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 247 | endif |
| 248 | |
Dalon Westergreen | e3ada91 | 2019-03-20 13:15:21 -0700 | [diff] [blame] | 249 | ifneq ($(CONFIG_TARGET_SOCFPGA_GEN5)$(CONFIG_TARGET_SOCFPGA_ARRIA10),) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 250 | INPUTS-y += $(obj)/$(SPL_BIN).sfp |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 251 | endif |
| 252 | |
Dalon Westergreen | 9773ebc | 2021-03-01 20:04:16 +0800 | [diff] [blame] | 253 | INPUTS-$(CONFIG_TARGET_SOCFPGA_SOC64) += $(obj)/u-boot-spl-dtb.hex |
| 254 | |
Jagan Teki | aec9a0f | 2016-10-13 14:19:35 +0530 | [diff] [blame] | 255 | ifdef CONFIG_ARCH_SUNXI |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 256 | INPUTS-y += $(obj)/sunxi-spl.bin |
Maxime Ripard | d2fdcc7 | 2017-02-27 18:22:13 +0100 | [diff] [blame] | 257 | |
| 258 | ifdef CONFIG_NAND_SUNXI |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 259 | INPUTS-y += $(obj)/sunxi-spl-with-ecc.bin |
Maxime Ripard | d2fdcc7 | 2017-02-27 18:22:13 +0100 | [diff] [blame] | 260 | endif |
Ian Campbell | 50827a5 | 2014-05-05 11:52:30 +0100 | [diff] [blame] | 261 | endif |
Ian Campbell | 50827a5 | 2014-05-05 11:52:30 +0100 | [diff] [blame] | 262 | |
Heiko Schocher | c001486 | 2014-10-30 09:59:59 +0100 | [diff] [blame] | 263 | ifeq ($(CONFIG_SYS_SOC),"at91") |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 264 | INPUTS-y += $(obj)/boot.bin |
Heiko Schocher | c001486 | 2014-10-30 09:59:59 +0100 | [diff] [blame] | 265 | endif |
| 266 | |
Simon Glass | d68574a | 2019-04-25 21:58:53 -0600 | [diff] [blame] | 267 | ifdef CONFIG_TPL_BUILD |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 268 | INPUTS-$(CONFIG_TPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-start16-tpl.bin \ |
Simon Glass | 5e23918 | 2019-08-24 07:22:49 -0600 | [diff] [blame] | 269 | $(obj)/u-boot-x86-reset16-tpl.bin |
Simon Glass | d68574a | 2019-04-25 21:58:53 -0600 | [diff] [blame] | 270 | else |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 271 | INPUTS-$(CONFIG_SPL_X86_16BIT_INIT) += $(obj)/u-boot-x86-start16-spl.bin \ |
Simon Glass | 5e23918 | 2019-08-24 07:22:49 -0600 | [diff] [blame] | 272 | $(obj)/u-boot-x86-reset16-spl.bin |
Simon Glass | d68574a | 2019-04-25 21:58:53 -0600 | [diff] [blame] | 273 | endif |
Simon Glass | 84547b4 | 2017-01-16 07:04:03 -0700 | [diff] [blame] | 274 | |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 275 | INPUTS-$(CONFIG_ARCH_ZYNQ) += $(obj)/boot.bin |
| 276 | INPUTS-$(CONFIG_ARCH_ZYNQMP) += $(obj)/boot.bin |
Michal Simek | d9b58b3 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 277 | |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 278 | INPUTS-$(CONFIG_ARCH_MEDIATEK) += $(obj)/u-boot-spl-mtk.bin |
Ryder Lee | 3b975a1 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 279 | |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 280 | all: $(INPUTS-y) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 281 | |
Simon Glass | fa78e0a | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 282 | quiet_cmd_cat = CAT $@ |
| 283 | cmd_cat = cat $(filter-out $(PHONY), $^) > $@ |
| 284 | |
Simon Glass | 03c25bc | 2016-01-31 18:10:51 -0700 | [diff] [blame] | 285 | quiet_cmd_copy = COPY $@ |
| 286 | cmd_copy = cp $< $@ |
| 287 | |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 288 | ifneq ($(CONFIG_SPL_MULTI_DTB_FIT),y) |
| 289 | FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).dtb |
| 290 | else ifeq ($(CONFIG_SPL_MULTI_DTB_FIT_LZO),y) |
| 291 | FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).multidtb.fit.lzo |
| 292 | else ifeq ($(CONFIG_SPL_MULTI_DTB_FIT_GZIP),y) |
| 293 | FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).multidtb.fit.gz |
| 294 | else |
| 295 | FINAL_DTB_CONTAINER = $(obj)/$(SPL_BIN).multidtb.fit |
| 296 | endif |
| 297 | |
Simon Glass | 4fc2365 | 2019-04-25 21:58:38 -0600 | [diff] [blame] | 298 | # Build the .dtb file if: |
| 299 | # - we are not using OF_PLATDATA |
| 300 | # - we are using OF_CONTROL |
| 301 | # - we have either OF_SEPARATE or OF_HOSTFILE |
| 302 | build_dtb := |
| 303 | ifeq ($(CONFIG_$(SPL_TPL_)OF_PLATDATA),) |
| 304 | ifneq ($(CONFIG_$(SPL_TPL_)OF_CONTROL),) |
| 305 | ifeq ($(CONFIG_OF_SEPARATE)$(CONFIG_OF_HOSTFILE),y) |
| 306 | build_dtb := y |
| 307 | endif |
| 308 | endif |
| 309 | endif |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 310 | |
Simon Glass | 4fc2365 | 2019-04-25 21:58:38 -0600 | [diff] [blame] | 311 | ifneq ($(build_dtb),) |
Simon Glass | 0ec28e0 | 2017-01-16 07:03:34 -0700 | [diff] [blame] | 312 | $(obj)/$(SPL_BIN)-dtb.bin: $(obj)/$(SPL_BIN)-nodtb.bin \ |
| 313 | $(if $(CONFIG_SPL_SEPARATE_BSS),,$(obj)/$(SPL_BIN)-pad.bin) \ |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 314 | $(FINAL_DTB_CONTAINER) FORCE |
Simon Glass | fa78e0a | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 315 | $(call if_changed,cat) |
| 316 | |
Simon Glass | 03c25bc | 2016-01-31 18:10:51 -0700 | [diff] [blame] | 317 | $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-dtb.bin FORCE |
| 318 | $(call if_changed,copy) |
| 319 | else |
| 320 | $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN)-nodtb.bin FORCE |
| 321 | $(call if_changed,copy) |
| 322 | endif |
| 323 | |
| 324 | # Create a file that pads from the end of u-boot-spl-nodtb.bin to bss_end |
Simon Glass | fa78e0a | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 325 | $(obj)/$(SPL_BIN)-pad.bin: $(obj)/$(SPL_BIN) |
| 326 | @bss_size_str=$(shell $(NM) $< | awk 'BEGIN {size = 0} /__bss_size/ {size = $$1} END {print "ibase=16; " toupper(size)}' | bc); \ |
| 327 | dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null; |
| 328 | |
Simon Glass | de3e372 | 2020-12-22 19:30:14 -0700 | [diff] [blame] | 329 | $(obj)/$(SPL_BIN).dtb: $(obj)/dts/dt-$(SPL_NAME).dtb FORCE |
Goldschmidt Simon | 9bd76b8 | 2017-11-21 12:29:56 +0000 | [diff] [blame] | 330 | $(call if_changed,copy) |
Simon Glass | fa78e0a | 2015-06-23 15:38:29 -0600 | [diff] [blame] | 331 | |
Masahiro Yamada | 15b97f5 | 2017-10-17 13:42:43 +0900 | [diff] [blame] | 332 | pythonpath = PYTHONPATH=scripts/dtc/pylibfdt |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 333 | |
Simon Glass | aa88ac8 | 2020-12-22 19:30:16 -0700 | [diff] [blame] | 334 | DTOC_ARGS := $(pythonpath) $(srctree)/tools/dtoc/dtoc \ |
Simon Glass | 67c0533 | 2021-02-03 06:01:03 -0700 | [diff] [blame] | 335 | -d $(obj)/$(SPL_BIN).dtb -p $(SPL_NAME) |
Simon Glass | aa88ac8 | 2020-12-22 19:30:16 -0700 | [diff] [blame] | 336 | |
Simon Glass | 5a1b25c | 2021-02-03 06:01:13 -0700 | [diff] [blame] | 337 | ifneq ($(CONFIG_$(SPL_TPL_)OF_PLATDATA_INST),) |
| 338 | DTOC_ARGS += -i |
| 339 | endif |
| 340 | |
Simon Glass | be3bd3b | 2020-12-28 20:34:53 -0700 | [diff] [blame] | 341 | quiet_cmd_dtoc = DTOC $@ |
| 342 | cmd_dtoc = $(DTOC_ARGS) -c $(obj)/dts -C include/generated all |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 343 | |
| 344 | quiet_cmd_plat = PLAT $@ |
Masahiro Yamada | c3da3f5 | 2020-04-17 16:21:35 +0900 | [diff] [blame] | 345 | cmd_plat = $(CC) $(c_flags) -c $< -o $(filter-out $(PHONY),$@) |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 346 | |
Simon Glass | 56b313d | 2021-03-25 06:40:52 +1300 | [diff] [blame] | 347 | $(obj)/dts/dt-%.o: $(obj)/dts/dt-%.c $(platdata-hdr) |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 348 | $(call if_changed,plat) |
| 349 | |
Simon Glass | 6519da4 | 2021-03-25 06:40:49 +1300 | [diff] [blame] | 350 | # Don't use dts_dir here, since it forces running this expensive rule every time |
Simon Glass | 56b313d | 2021-03-25 06:40:52 +1300 | [diff] [blame] | 351 | $(platdata-hdr) $(u-boot-spl-platdata_c) &: $(obj)/$(SPL_BIN).dtb |
Simon Glass | 6519da4 | 2021-03-25 06:40:49 +1300 | [diff] [blame] | 352 | @[ -d $(obj)/dts ] || mkdir -p $(obj)/dts |
Simon Glass | 354d232 | 2021-03-25 06:40:53 +1300 | [diff] [blame] | 353 | @# Remove old files since which ones we generate depends on the setting |
| 354 | @# of OF_PLATDATA_INST and this might change between builds. Leaving old |
| 355 | @# ones around is confusing and it is possible that switching the |
| 356 | @# setting again will use the old one instead of regenerating it. |
| 357 | @rm -f $(u-boot-spl-all-platdata_c) $(u-boot-spl-all-platdata) |
Simon Glass | be3bd3b | 2020-12-28 20:34:53 -0700 | [diff] [blame] | 358 | $(call if_changed,dtoc) |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 359 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 360 | ifdef CONFIG_SAMSUNG |
Rajeshwari Birje | 0fcac1a | 2013-12-26 09:44:27 +0530 | [diff] [blame] | 361 | ifdef CONFIG_VAR_SIZE_SPL |
| 362 | VAR_SIZE_PARAM = --vs |
| 363 | else |
| 364 | VAR_SIZE_PARAM = |
| 365 | endif |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 366 | $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin |
Masahiro Yamada | 5ee828c | 2014-03-11 11:05:21 +0900 | [diff] [blame] | 367 | $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\ |
| 368 | $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\ |
| 369 | $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@ |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 370 | endif |
| 371 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 372 | quiet_cmd_objcopy = OBJCOPY $@ |
| 373 | cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@ |
| 374 | |
Simon Glass | 84547b4 | 2017-01-16 07:04:03 -0700 | [diff] [blame] | 375 | OBJCOPYFLAGS_$(SPL_BIN)-nodtb.bin = $(SPL_OBJCFLAGS) -O binary \ |
Simon Glass | d68574a | 2019-04-25 21:58:53 -0600 | [diff] [blame] | 376 | $(if $(CONFIG_$(SPL_TPL_)X86_16BIT_INIT),-R .start16 -R .resetvec) |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 377 | |
Simon Glass | 03c25bc | 2016-01-31 18:10:51 -0700 | [diff] [blame] | 378 | $(obj)/$(SPL_BIN)-nodtb.bin: $(obj)/$(SPL_BIN) FORCE |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 379 | $(call if_changed,objcopy) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 380 | |
Simon Glass | 5e23918 | 2019-08-24 07:22:49 -0600 | [diff] [blame] | 381 | OBJCOPYFLAGS_u-boot-x86-start16-spl.bin := -O binary -j .start16 |
| 382 | $(obj)/u-boot-x86-start16-spl.bin: $(obj)/u-boot-spl FORCE |
Simon Glass | 84547b4 | 2017-01-16 07:04:03 -0700 | [diff] [blame] | 383 | $(call if_changed,objcopy) |
| 384 | |
Simon Glass | 5e23918 | 2019-08-24 07:22:49 -0600 | [diff] [blame] | 385 | OBJCOPYFLAGS_u-boot-x86-start16-tpl.bin := -O binary -j .start16 |
| 386 | $(obj)/u-boot-x86-start16-tpl.bin: $(obj)/u-boot-tpl FORCE |
| 387 | $(call if_changed,objcopy) |
| 388 | |
| 389 | OBJCOPYFLAGS_u-boot-x86-reset16-spl.bin := -O binary -j .resetvec |
| 390 | $(obj)/u-boot-x86-reset16-spl.bin: $(obj)/u-boot-spl FORCE |
| 391 | $(call if_changed,objcopy) |
| 392 | |
| 393 | OBJCOPYFLAGS_u-boot-x86-reset16-tpl.bin := -O binary -j .resetvec |
| 394 | $(obj)/u-boot-x86-reset16-tpl.bin: $(obj)/u-boot-tpl FORCE |
Simon Glass | d68574a | 2019-04-25 21:58:53 -0600 | [diff] [blame] | 395 | $(call if_changed,objcopy) |
| 396 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 397 | LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL) |
Joel Stanley | e391b1e | 2017-04-09 20:33:58 +0200 | [diff] [blame] | 398 | |
| 399 | # Avoid 'Not enough room for program headers' error on binutils 2.28 onwards. |
| 400 | LDFLAGS_$(SPL_BIN) += $(call ld-option, --no-dynamic-linker) |
| 401 | |
Marek Behún | da48bd9 | 2021-05-20 13:24:04 +0200 | [diff] [blame] | 402 | LDFLAGS_$(SPL_BIN) += --build-id=none |
| 403 | |
Tom Rini | a6d6812 | 2019-01-22 17:09:24 -0500 | [diff] [blame] | 404 | # Pick the best-match (i.e. SPL_TEXT_BASE for SPL, TPL_TEXT_BASE for TPL) |
Philipp Tomsich | 1749858 | 2017-07-04 14:47:46 +0200 | [diff] [blame] | 405 | ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),) |
| 406 | LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_$(SPL_TPL_)TEXT_BASE) |
Philipp Tomsich | 1749858 | 2017-07-04 14:47:46 +0200 | [diff] [blame] | 407 | endif |
Masahiro Yamada | e0d5d9f | 2014-02-04 17:24:22 +0900 | [diff] [blame] | 408 | |
Marek Vasut | 792557d | 2018-04-15 15:21:09 +0200 | [diff] [blame] | 409 | ifdef CONFIG_TARGET_SOCFPGA_ARRIA10 |
| 410 | MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage_v1 |
| 411 | else |
Simon Glass | bd7dc38 | 2016-01-31 18:10:53 -0700 | [diff] [blame] | 412 | MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage |
Marek Vasut | 792557d | 2018-04-15 15:21:09 +0200 | [diff] [blame] | 413 | endif |
Simon Glass | bd7dc38 | 2016-01-31 18:10:53 -0700 | [diff] [blame] | 414 | $(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 415 | $(call if_changed,mkimage) |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 416 | |
Andre Przywara | acd832c | 2018-12-20 15:41:34 +0000 | [diff] [blame] | 417 | MKIMAGEFLAGS_sunxi-spl.bin = -T sunxi_egon \ |
| 418 | -n $(CONFIG_DEFAULT_DEVICE_TREE) |
| 419 | |
Dalon Westergreen | 9773ebc | 2021-03-01 20:04:16 +0800 | [diff] [blame] | 420 | OBJCOPYFLAGS_u-boot-spl-dtb.hex := -I binary -O ihex --change-address=$(CONFIG_SPL_TEXT_BASE) |
| 421 | |
| 422 | $(obj)/u-boot-spl-dtb.hex: $(obj)/u-boot-spl-dtb.bin FORCE |
| 423 | $(call if_changed,objcopy) |
| 424 | |
Masahiro Yamada | 514ec43 | 2016-02-05 17:55:13 +0900 | [diff] [blame] | 425 | $(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin FORCE |
Andre Przywara | acd832c | 2018-12-20 15:41:34 +0000 | [diff] [blame] | 426 | $(call if_changed,mkimage) |
Ian Campbell | 50827a5 | 2014-05-05 11:52:30 +0100 | [diff] [blame] | 427 | |
Maxime Ripard | d2fdcc7 | 2017-02-27 18:22:13 +0100 | [diff] [blame] | 428 | quiet_cmd_sunxi_spl_image_builder = SUNXI_SPL_IMAGE_BUILDER $@ |
| 429 | cmd_sunxi_spl_image_builder = $(objtree)/tools/sunxi-spl-image-builder \ |
| 430 | -c $(CONFIG_NAND_SUNXI_SPL_ECC_STRENGTH)/$(CONFIG_NAND_SUNXI_SPL_ECC_SIZE) \ |
| 431 | -p $(CONFIG_SYS_NAND_PAGE_SIZE) \ |
| 432 | -o $(CONFIG_SYS_NAND_OOBSIZE) \ |
| 433 | -u $(CONFIG_NAND_SUNXI_SPL_USABLE_PAGE_SIZE) \ |
| 434 | -e $(CONFIG_SYS_NAND_BLOCK_SIZE) \ |
| 435 | -s -b $< $@ |
| 436 | $(obj)/sunxi-spl-with-ecc.bin: $(obj)/sunxi-spl.bin |
| 437 | $(call if_changed,sunxi_spl_image_builder) |
| 438 | |
Ryder Lee | 3b975a1 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 439 | |
| 440 | # MediaTek's specific SPL build |
| 441 | MKIMAGEFLAGS_u-boot-spl-mtk.bin = -T mtk_image \ |
| 442 | -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) \ |
| 443 | -n "$(patsubst "%",%,$(CONFIG_MTK_BROM_HEADER_INFO))" |
| 444 | |
| 445 | $(obj)/u-boot-spl-mtk.bin: $(obj)/u-boot-spl.bin FORCE |
| 446 | $(call if_changed,mkimage) |
| 447 | |
Simon Glass | 60251b1 | 2020-10-25 20:38:30 -0600 | [diff] [blame] | 448 | quiet_cmd_sym ?= SYM $@ |
| 449 | cmd_sym ?= $(OBJDUMP) -t $< > $@ |
| 450 | $(obj)/$(SPL_BIN).sym: $(obj)/$(SPL_BIN) FORCE |
| 451 | $(call if_changed,sym) |
| 452 | |
Marek Behún | c109498 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 453 | # Generate linker list symbols references to force compiler to not optimize |
| 454 | # them away when compiling with LTO |
| 455 | ifdef CONFIG_LTO |
| 456 | u-boot-spl-keep-syms-lto := $(obj)/keep-syms-lto.o |
| 457 | u-boot-spl-keep-syms-lto_c := \ |
| 458 | $(patsubst $(obj)/%.o,$(obj)/%.c,$(u-boot-spl-keep-syms-lto)) |
| 459 | |
| 460 | quiet_cmd_keep_syms_lto = KSL $@ |
| 461 | cmd_keep_syms_lto = \ |
Patrick Delaunay | ff7852d | 2021-07-21 09:56:07 +0200 | [diff] [blame] | 462 | $(srctree)/scripts/gen_ll_addressable_symbols.sh $(NM) $^ > $@ |
Marek Behún | c109498 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 463 | |
| 464 | quiet_cmd_keep_syms_lto_cc = KSLCC $@ |
| 465 | cmd_keep_syms_lto_cc = \ |
| 466 | $(CC) $(filter-out $(LTO_CFLAGS),$(c_flags)) -c -o $@ $< |
| 467 | |
| 468 | $(u-boot-spl-keep-syms-lto_c): $(u-boot-spl-main) $(u-boot-spl-platdata) |
| 469 | $(call if_changed,keep_syms_lto) |
| 470 | $(u-boot-spl-keep-syms-lto): $(u-boot-spl-keep-syms-lto_c) |
| 471 | $(call if_changed,keep_syms_lto_cc) |
| 472 | else |
| 473 | u-boot-spl-keep-syms-lto := |
| 474 | endif |
| 475 | |
Simon Glass | 72a7e07 | 2016-07-04 11:57:44 -0600 | [diff] [blame] | 476 | # Rule to link u-boot-spl |
| 477 | # May be overridden by arch/$(ARCH)/config.mk |
Marek Behún | c109498 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 478 | ifdef CONFIG_LTO |
| 479 | quiet_cmd_u-boot-spl ?= LTO $@ |
| 480 | cmd_u-boot-spl ?= \ |
| 481 | ( \ |
| 482 | cd $(obj) && \ |
| 483 | $(CC) -nostdlib -nostartfiles $(LTO_FINAL_LDFLAGS) $(c_flags) \ |
| 484 | $(KBUILD_LDFLAGS:%=-Wl,%) $(LDFLAGS_$(@F):%=-Wl,%) \ |
| 485 | $(patsubst $(obj)/%,%,$(u-boot-spl-init)) \ |
| 486 | -Wl,--whole-archive \ |
| 487 | $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \ |
| 488 | $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) \ |
| 489 | $(patsubst $(obj)/%,%,$(u-boot-spl-keep-syms-lto)) \ |
| 490 | $(PLATFORM_LIBS) \ |
| 491 | -Wl,--no-whole-archive \ |
| 492 | -Wl,-Map,$(SPL_BIN).map -o $(SPL_BIN) \ |
| 493 | ) |
| 494 | else |
Simon Glass | 72a7e07 | 2016-07-04 11:57:44 -0600 | [diff] [blame] | 495 | quiet_cmd_u-boot-spl ?= LD $@ |
Marek Behún | 1445836 | 2021-05-20 13:24:01 +0200 | [diff] [blame] | 496 | cmd_u-boot-spl ?= \ |
| 497 | ( \ |
| 498 | cd $(obj) && \ |
| 499 | $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_$(@F)) \ |
| 500 | $(patsubst $(obj)/%,%,$(u-boot-spl-init)) \ |
Marek Behún | 958f2e5 | 2021-05-20 13:24:02 +0200 | [diff] [blame] | 501 | --whole-archive \ |
Marek Behún | 1445836 | 2021-05-20 13:24:01 +0200 | [diff] [blame] | 502 | $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \ |
| 503 | $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) \ |
Marek Behún | 958f2e5 | 2021-05-20 13:24:02 +0200 | [diff] [blame] | 504 | --no-whole-archive \ |
Marek Behún | 1445836 | 2021-05-20 13:24:01 +0200 | [diff] [blame] | 505 | $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN) \ |
| 506 | ) |
Marek Behún | c109498 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 507 | endif |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 508 | |
Simon Glass | dbbe2e6 | 2016-07-04 11:58:10 -0600 | [diff] [blame] | 509 | $(obj)/$(SPL_BIN): $(u-boot-spl-platdata) $(u-boot-spl-init) \ |
Marek Behún | c109498 | 2021-05-20 13:24:03 +0200 | [diff] [blame] | 510 | $(u-boot-spl-main) $(u-boot-spl-keep-syms-lto) \ |
| 511 | $(obj)/u-boot-spl.lds FORCE |
Masahiro Yamada | 9adb6d2 | 2014-10-24 01:30:44 +0900 | [diff] [blame] | 512 | $(call if_changed,u-boot-spl) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 513 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 514 | $(sort $(u-boot-spl-init) $(u-boot-spl-main)): $(u-boot-spl-dirs) ; |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 515 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 516 | PHONY += $(u-boot-spl-dirs) |
Masahiro Yamada | f34d0ad | 2020-04-17 16:21:37 +0900 | [diff] [blame] | 517 | $(u-boot-spl-dirs): $(u-boot-spl-platdata) prepare |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 518 | $(Q)$(MAKE) $(build)=$@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 519 | |
Masahiro Yamada | f34d0ad | 2020-04-17 16:21:37 +0900 | [diff] [blame] | 520 | PHONY += prepare |
| 521 | prepare: |
| 522 | $(Q)$(MAKE) $(build)=$(obj)/. |
| 523 | |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 524 | quiet_cmd_cpp_lds = LDS $@ |
Masahiro Yamada | 395e60c | 2014-04-09 20:10:43 +0900 | [diff] [blame] | 525 | cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \ |
Simon Glass | 44093a1 | 2018-10-01 12:22:43 -0600 | [diff] [blame] | 526 | -D__ASSEMBLY__ -x assembler-with-cpp -std=c99 -P -o $@ $< |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 527 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 528 | $(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE |
Masahiro Yamada | 395e60c | 2014-04-09 20:10:43 +0900 | [diff] [blame] | 529 | $(call if_changed_dep,cpp_lds) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 530 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 531 | # read all saved command lines |
| 532 | |
| 533 | targets := $(wildcard $(sort $(targets))) |
| 534 | cmd_files := $(wildcard $(obj)/.*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) |
| 535 | |
| 536 | ifneq ($(cmd_files),) |
| 537 | $(cmd_files): ; # Do not try to update included dependency files |
| 538 | include $(cmd_files) |
| 539 | endif |
| 540 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 541 | PHONY += FORCE |
| 542 | FORCE: |
| 543 | |
Simon Glass | c7674fc | 2020-12-22 19:30:15 -0700 | [diff] [blame] | 544 | $(obj)/dts/dt-$(SPL_NAME).dtb: dts/dt.dtb |
| 545 | $(Q)$(MAKE) $(build)=$(obj)/dts spl_dtbs |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 546 | |
Simon Glass | 6519da4 | 2021-03-25 06:40:49 +1300 | [diff] [blame] | 547 | PHONY += dts_dir |
| 548 | dts_dir: |
| 549 | $(shell [ -d $(obj)/dts ] || mkdir -p $(obj)/dts) |
| 550 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 551 | # Declare the contents of the .PHONY variable as phony. We keep that |
| 552 | # information in a variable so we can use it in if_changed and friends. |
| 553 | .PHONY: $(PHONY) |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 554 | |
Jan Kiszka | 5f09f9a | 2020-05-04 14:38:31 +0200 | [diff] [blame] | 555 | SPL_OF_LIST_TARGETS = $(patsubst %,dts/%.dtb,$(subst ",,$(CONFIG_SPL_OF_LIST))) |
| 556 | SHRUNK_ARCH_DTB = $(addprefix $(obj)/,$(SPL_OF_LIST_TARGETS)) |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 557 | .SECONDEXPANSION: |
Jan Kiszka | 5d3534d | 2020-05-04 14:38:30 +0200 | [diff] [blame] | 558 | $(SHRUNK_ARCH_DTB): $$(patsubst $(obj)/dts/%, arch/$(ARCH)/dts/%, $$@) dts_dir |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 559 | $(call if_changed,fdtgrep) |
| 560 | |
Jan Kiszka | 5f09f9a | 2020-05-04 14:38:31 +0200 | [diff] [blame] | 561 | targets += $(SPL_OF_LIST_TARGETS) |
| 562 | |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 563 | MKIMAGEFLAGS_$(SPL_BIN).multidtb.fit = -f auto -A $(ARCH) -T firmware -C none -O u-boot \ |
| 564 | -n "Multi DTB fit image for $(SPL_BIN)" -E \ |
| 565 | $(patsubst %,-b %,$(SHRUNK_ARCH_DTB)) |
| 566 | |
| 567 | $(obj)/$(SPL_BIN).multidtb.fit: /dev/null $(SHRUNK_ARCH_DTB) FORCE |
| 568 | $(call if_changed,mkimage) |
Vagrant Cascadian | 8664ab7 | 2018-06-03 12:26:57 -0700 | [diff] [blame] | 569 | ifneq ($(SOURCE_DATE_EPOCH),) |
| 570 | touch -d @$(SOURCE_DATE_EPOCH) $(obj)/$(SPL_BIN).multidtb.fit |
| 571 | chmod 0600 $(obj)/$(SPL_BIN).multidtb.fit |
| 572 | endif |
Jean-Jacques Hiblot | 2f57c95 | 2017-09-15 12:57:32 +0200 | [diff] [blame] | 573 | |
| 574 | $(obj)/$(SPL_BIN).multidtb.fit.gz: $(obj)/$(SPL_BIN).multidtb.fit |
| 575 | @gzip -kf9 $< > $@ |
| 576 | |
| 577 | $(obj)/$(SPL_BIN).multidtb.fit.lzo: $(obj)/$(SPL_BIN).multidtb.fit |
| 578 | @lzop -f9 $< > $@ |
Lokesh Vutla | 82f29fd | 2018-08-27 15:57:15 +0530 | [diff] [blame] | 579 | |
| 580 | ifdef CONFIG_ARCH_K3 |
| 581 | tispl.bin: $(obj)/u-boot-spl-nodtb.bin $(SHRUNK_ARCH_DTB) $(SPL_ITS) FORCE |
| 582 | $(call if_changed,mkfitimage) |
| 583 | endif |