Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2000-2011 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # (C) Copyright 2011 |
| 6 | # Daniel Schwierzeck, daniel.schwierzeck@googlemail.com. |
| 7 | # |
| 8 | # (C) Copyright 2011 |
| 9 | # Texas Instruments Incorporated - http://www.ti.com/ |
| 10 | # Aneesh V <aneesh@ti.com> |
| 11 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 12 | # SPDX-License-Identifier: GPL-2.0+ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 13 | # |
| 14 | # Based on top-level Makefile. |
| 15 | # |
| 16 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 17 | src := $(obj) |
| 18 | |
| 19 | # Create output directory if not already present |
| 20 | _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj)) |
| 21 | |
Masahiro Yamada | bf4b3de | 2014-02-04 17:24:18 +0900 | [diff] [blame] | 22 | include $(srctree)/scripts/Kbuild.include |
| 23 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 24 | CONFIG_SPL_BUILD := y |
| 25 | export CONFIG_SPL_BUILD |
| 26 | |
Masahiro Yamada | e0d5d9f | 2014-02-04 17:24:22 +0900 | [diff] [blame] | 27 | KBUILD_CPPFLAGS += -DCONFIG_SPL_BUILD |
| 28 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 29 | KBUILD_CPPFLAGS += -DCONFIG_TPL_BUILD |
| 30 | endif |
| 31 | |
| 32 | # Enable garbage collection of un-used sections for SPL |
| 33 | KBUILD_CFLAGS += -ffunction-sections -fdata-sections |
| 34 | LDFLAGS_FINAL += --gc-sections |
| 35 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 36 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 37 | export CONFIG_TPL_BUILD |
| 38 | SPL_BIN := u-boot-tpl |
| 39 | else |
| 40 | SPL_BIN := u-boot-spl |
| 41 | endif |
| 42 | |
Masahiro Yamada | 01072b4 | 2014-02-04 17:24:32 +0900 | [diff] [blame^] | 43 | include include/config.mk |
| 44 | |
| 45 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 46 | -include include/tpl-autoconf.mk |
| 47 | else |
| 48 | -include include/spl-autoconf.mk |
| 49 | endif |
| 50 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 51 | include $(TOPDIR)/config.mk |
| 52 | |
Scott Wood | e66443f | 2012-08-14 01:44:29 +0000 | [diff] [blame] | 53 | 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] | 54 | |
Marek Vasut | 08e4f70 | 2011-09-11 17:56:19 +0000 | [diff] [blame] | 55 | ifdef CONFIG_SPL_START_S_PATH |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 56 | START_PATH := $(CONFIG_SPL_START_S_PATH:"%"=%) |
Marek Vasut | 08e4f70 | 2011-09-11 17:56:19 +0000 | [diff] [blame] | 57 | else |
| 58 | START_PATH := $(CPUDIR) |
| 59 | endif |
| 60 | |
Masahiro Yamada | e8a8b82 | 2013-11-28 12:09:59 +0900 | [diff] [blame] | 61 | head-y := $(START_PATH)/start.o |
| 62 | head-$(CONFIG_X86) += $(START_PATH)/start16.o $(START_PATH)/resetvec.o |
| 63 | head-$(CONFIG_4xx) += $(START_PATH)/resetvec.o |
| 64 | head-$(CONFIG_MPC85xx) += $(START_PATH)/resetvec.o |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 65 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 66 | LIBS-y += arch/$(ARCH)/lib/ |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 67 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 68 | LIBS-y += $(CPUDIR)/ |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 69 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 70 | ifdef SOC |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 71 | LIBS-y += $(CPUDIR)/$(SOC)/ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 72 | endif |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 73 | LIBS-y += board/$(BOARDDIR)/ |
| 74 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 75 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 76 | LIBS-$(CONFIG_SPL_FRAMEWORK) += common/spl/ |
| 77 | LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ |
| 78 | LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/ |
| 79 | LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/ |
| 80 | LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/ |
| 81 | LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/ |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 82 | LIBS-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += drivers/ddr/fsl/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 83 | LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/ |
| 84 | LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/ |
| 85 | LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/ |
Masahiro Yamada | 57c3e5f | 2013-11-11 14:36:09 +0900 | [diff] [blame] | 86 | LIBS-y += fs/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 87 | LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/ |
| 88 | LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/ \ |
| 89 | drivers/power/pmic/ |
Masahiro Yamada | 392ba52 | 2013-11-28 12:22:17 +0900 | [diff] [blame] | 90 | LIBS-$(if $(CONFIG_CMD_NAND),$(CONFIG_SPL_NAND_SUPPORT)) += drivers/mtd/nand/ |
Po Liu | 6609916 | 2014-01-10 10:10:58 +0800 | [diff] [blame] | 91 | LIBS-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += drivers/misc/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 92 | LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/ |
| 93 | LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/ |
| 94 | LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/ |
| 95 | LIBS-$(CONFIG_SPL_NET_SUPPORT) += net/ |
| 96 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/ |
| 97 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/ |
| 98 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/net/phy/ |
| 99 | LIBS-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += drivers/usb/musb-new/ |
| 100 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/ |
| 101 | LIBS-$(CONFIG_SPL_WATCHDOG_SUPPORT) += drivers/watchdog/ |
Dan Murphy | 8cffe5b | 2014-01-16 11:23:30 -0600 | [diff] [blame] | 102 | LIBS-$(CONFIG_SPL_USB_HOST_SUPPORT) += drivers/usb/host/ |
| 103 | LIBS-$(CONFIG_OMAP_USB_PHY) += drivers/usb/phy/ |
Dan Murphy | fff40a7 | 2014-02-03 06:59:01 -0600 | [diff] [blame] | 104 | LIBS-$(CONFIG_SPL_SATA_SUPPORT) += drivers/block/ |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 105 | |
Masahiro Yamada | ba93125 | 2013-12-11 10:00:08 +0900 | [diff] [blame] | 106 | ifneq (,$(CONFIG_MX23)$(CONFIG_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35)) |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 107 | LIBS-y += arch/$(ARCH)/imx-common/ |
Marek Vasut | cfb8e87 | 2013-04-21 05:52:25 +0000 | [diff] [blame] | 108 | endif |
| 109 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 110 | LIBS-$(CONFIG_ARM) += arch/arm/cpu/ |
| 111 | LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/ |
Allen Martin | d9e73a8 | 2012-08-31 08:30:01 +0000 | [diff] [blame] | 112 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 113 | LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y)) |
| 114 | |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 115 | # Add GCC lib |
| 116 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 117 | PLATFORM_LIBS := $(SPLTREE)/arch/$(ARCH)/lib/lib.a |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 118 | endif |
| 119 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 120 | LIBS-y := $(sort $(LIBS-y)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 121 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 122 | __START := $(head-y) |
| 123 | __LIBS := $(LIBS-y) |
| 124 | |
| 125 | START := $(addprefix $(obj)/,$(head-y)) |
| 126 | LIBS := $(addprefix $(obj)/,$(LIBS-y)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 127 | |
| 128 | # Linker Script |
| 129 | ifdef CONFIG_SPL_LDSCRIPT |
| 130 | # need to strip off double quotes |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 131 | LDSCRIPT := $(addprefix $(SRCTREE)/,$(CONFIG_SPL_LDSCRIPT:"%"=%)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 132 | endif |
| 133 | |
| 134 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 135 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds |
| 136 | endif |
| 137 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 138 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds |
| 139 | endif |
| 140 | ifeq ($(wildcard $(LDSCRIPT)),) |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 141 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot-spl.lds |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 142 | endif |
| 143 | ifeq ($(wildcard $(LDSCRIPT)),) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 144 | $(error could not find linker script) |
| 145 | endif |
| 146 | |
| 147 | # Special flags for CPP when processing the linker script. |
| 148 | # Pass the version down so we can handle backwards compatibility |
| 149 | # on the fly. |
| 150 | LDPPFLAGS += \ |
| 151 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
| 152 | -include $(OBJTREE)/include/config.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 153 | -DCPUDIR=$(CPUDIR) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 154 | $(shell $(LD) --version | \ |
| 155 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 156 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 157 | $(OBJTREE)/MLO: $(obj)/u-boot-spl.bin |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 158 | $(OBJTREE)/tools/mkimage -T omapimage \ |
| 159 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ |
Tom Rini | 79b9ebb | 2012-10-16 13:06:06 +0000 | [diff] [blame] | 160 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 161 | $(OBJTREE)/MLO.byteswap: $(obj)/u-boot-spl.bin |
Tom Rini | 79b9ebb | 2012-10-16 13:06:06 +0000 | [diff] [blame] | 162 | $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \ |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 163 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 164 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 165 | $(objtree)/SPL : $(obj)/u-boot-spl.bin |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 166 | $(MAKE) $(build)=spl/arch/arm/imx-common $@ |
Stefano Babic | a80834c | 2012-10-10 21:11:44 +0000 | [diff] [blame] | 167 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 168 | ALL-y += $(obj)/$(SPL_BIN).bin |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 169 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 170 | ifdef CONFIG_SAMSUNG |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 171 | ALL-y += $(obj)/$(BOARD)-spl.bin |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 172 | endif |
| 173 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 174 | all: $(ALL-y) |
| 175 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 176 | ifdef CONFIG_SAMSUNG |
Rajeshwari Birje | 0fcac1a | 2013-12-26 09:44:27 +0530 | [diff] [blame] | 177 | ifdef CONFIG_VAR_SIZE_SPL |
| 178 | VAR_SIZE_PARAM = --vs |
| 179 | else |
| 180 | VAR_SIZE_PARAM = |
| 181 | endif |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 182 | $(obj)/$(BOARD)-spl.bin: $(obj)/u-boot-spl.bin |
Masahiro Yamada | e183a17 | 2014-02-04 17:24:11 +0900 | [diff] [blame] | 183 | $(if $(wildcard $(OBJTREE)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\ |
| 184 | $(OBJTREE)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\ |
Masahiro Yamada | 940db16 | 2014-02-04 17:24:10 +0900 | [diff] [blame] | 185 | $(OBJTREE)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@ |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 186 | endif |
| 187 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 188 | $(obj)/$(SPL_BIN).bin: $(obj)/$(SPL_BIN) |
Albert ARIBAUD | b02bfc4 | 2014-01-13 14:57:05 +0100 | [diff] [blame] | 189 | $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 190 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 191 | LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL) |
Masahiro Yamada | e0d5d9f | 2014-02-04 17:24:22 +0900 | [diff] [blame] | 192 | ifneq ($(CONFIG_SPL_TEXT_BASE),) |
| 193 | LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE) |
| 194 | endif |
| 195 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 196 | GEN_UBOOT = \ |
Tyler Olmstead | be7e41e | 2012-08-08 16:24:13 +0000 | [diff] [blame] | 197 | cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 198 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 199 | -Map $(SPL_BIN).map -o $(SPL_BIN) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 200 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 201 | $(obj)/$(SPL_BIN): $(START) $(LIBS) $(obj)/u-boot-spl.lds |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 202 | $(GEN_UBOOT) |
| 203 | |
Masahiro Yamada | 3bddafa | 2013-10-21 11:53:41 +0900 | [diff] [blame] | 204 | $(START): |
| 205 | @: |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 206 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 207 | $(LIBS): |
| 208 | $(Q)$(MAKE) $(build)=$(patsubst %/,%,$(dir $@)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 209 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 210 | # FIX ME |
| 211 | cpp_flags := $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(UBOOTINCLUDE) $(NOSTDINC_FLAGS) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 212 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 213 | $(obj)/u-boot-spl.lds: $(LDSCRIPT) FORCE |
| 214 | $(CPP) $(cpp_flags) $(LDPPFLAGS) -I$(obj). -ansi -D__ASSEMBLY__ -P - < $< > $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 215 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 216 | PHONY += FORCE |
| 217 | FORCE: |
| 218 | |
| 219 | # Declare the contents of the .PHONY variable as phony. We keep that |
| 220 | # information in a variable so we can use it in if_changed and friends. |
| 221 | .PHONY: $(PHONY) |