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 | |
| 17 | CONFIG_SPL_BUILD := y |
| 18 | export CONFIG_SPL_BUILD |
| 19 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 20 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 21 | export CONFIG_TPL_BUILD |
| 22 | SPL_BIN := u-boot-tpl |
| 23 | else |
| 24 | SPL_BIN := u-boot-spl |
| 25 | endif |
| 26 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 27 | include $(TOPDIR)/config.mk |
| 28 | |
| 29 | # We want the final binaries in this directory |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 30 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 31 | obj := $(OBJTREE)/tpl/ |
| 32 | SPLTREE := $(TPLTREE) |
| 33 | else |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 34 | obj := $(OBJTREE)/spl/ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 35 | endif |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 36 | |
Scott Wood | e66443f | 2012-08-14 01:44:29 +0000 | [diff] [blame] | 37 | 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] | 38 | |
Marek Vasut | 08e4f70 | 2011-09-11 17:56:19 +0000 | [diff] [blame] | 39 | ifdef CONFIG_SPL_START_S_PATH |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 40 | START_PATH := $(CONFIG_SPL_START_S_PATH:"%"=%) |
Marek Vasut | 08e4f70 | 2011-09-11 17:56:19 +0000 | [diff] [blame] | 41 | else |
| 42 | START_PATH := $(CPUDIR) |
| 43 | endif |
| 44 | |
Masahiro Yamada | e8a8b82 | 2013-11-28 12:09:59 +0900 | [diff] [blame] | 45 | head-y := $(START_PATH)/start.o |
| 46 | head-$(CONFIG_X86) += $(START_PATH)/start16.o $(START_PATH)/resetvec.o |
| 47 | head-$(CONFIG_4xx) += $(START_PATH)/resetvec.o |
| 48 | head-$(CONFIG_MPC85xx) += $(START_PATH)/resetvec.o |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 49 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 50 | LIBS-y += arch/$(ARCH)/lib/ |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 51 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 52 | LIBS-y += $(CPUDIR)/ |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 53 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 54 | ifdef SOC |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 55 | LIBS-y += $(CPUDIR)/$(SOC)/ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 56 | endif |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 57 | LIBS-y += board/$(BOARDDIR)/ |
| 58 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 59 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 60 | LIBS-$(CONFIG_SPL_FRAMEWORK) += common/spl/ |
| 61 | LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/ |
| 62 | LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/ |
| 63 | LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/ |
| 64 | LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/ |
| 65 | LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/ |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 66 | LIBS-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += drivers/ddr/fsl/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 67 | LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/ |
| 68 | LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/ |
| 69 | LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/ |
Masahiro Yamada | 57c3e5f | 2013-11-11 14:36:09 +0900 | [diff] [blame] | 70 | LIBS-y += fs/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 71 | LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/ |
| 72 | LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/ \ |
| 73 | drivers/power/pmic/ |
Masahiro Yamada | 392ba52 | 2013-11-28 12:22:17 +0900 | [diff] [blame] | 74 | LIBS-$(if $(CONFIG_CMD_NAND),$(CONFIG_SPL_NAND_SUPPORT)) += drivers/mtd/nand/ |
Po Liu | 6609916 | 2014-01-10 10:10:58 +0800 | [diff] [blame^] | 75 | LIBS-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += drivers/misc/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 76 | LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/ |
| 77 | LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/ |
| 78 | LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/ |
| 79 | LIBS-$(CONFIG_SPL_NET_SUPPORT) += net/ |
| 80 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/ |
| 81 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/ |
| 82 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/net/phy/ |
| 83 | LIBS-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += drivers/usb/musb-new/ |
| 84 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/ |
| 85 | LIBS-$(CONFIG_SPL_WATCHDOG_SUPPORT) += drivers/watchdog/ |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 86 | |
Masahiro Yamada | ba93125 | 2013-12-11 10:00:08 +0900 | [diff] [blame] | 87 | 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] | 88 | LIBS-y += arch/$(ARCH)/imx-common/ |
Marek Vasut | cfb8e87 | 2013-04-21 05:52:25 +0000 | [diff] [blame] | 89 | endif |
| 90 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 91 | LIBS-$(CONFIG_ARM) += arch/arm/cpu/ |
| 92 | LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/ |
Allen Martin | d9e73a8 | 2012-08-31 08:30:01 +0000 | [diff] [blame] | 93 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 94 | LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y)) |
| 95 | |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 96 | # Add GCC lib |
| 97 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
| 98 | PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o |
| 99 | PLATFORM_LIBS := $(filter-out %/libgcc.o, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC) |
| 100 | endif |
| 101 | |
Masahiro Yamada | e8a8b82 | 2013-11-28 12:09:59 +0900 | [diff] [blame] | 102 | START := $(addprefix $(SPLTREE)/,$(head-y)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 103 | LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y))) |
| 104 | |
| 105 | __START := $(subst $(obj),,$(START)) |
| 106 | __LIBS := $(subst $(obj),,$(LIBS)) |
| 107 | |
| 108 | # Linker Script |
| 109 | ifdef CONFIG_SPL_LDSCRIPT |
| 110 | # need to strip off double quotes |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 111 | LDSCRIPT := $(addprefix $(SRCTREE)/,$(CONFIG_SPL_LDSCRIPT:"%"=%)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 112 | endif |
| 113 | |
| 114 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 115 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds |
| 116 | endif |
| 117 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 118 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds |
| 119 | endif |
| 120 | ifeq ($(wildcard $(LDSCRIPT)),) |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 121 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot-spl.lds |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 122 | endif |
| 123 | ifeq ($(wildcard $(LDSCRIPT)),) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 124 | $(error could not find linker script) |
| 125 | endif |
| 126 | |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 127 | build := -f $(TOPDIR)/scripts/Makefile.build -C |
| 128 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 129 | # Special flags for CPP when processing the linker script. |
| 130 | # Pass the version down so we can handle backwards compatibility |
| 131 | # on the fly. |
| 132 | LDPPFLAGS += \ |
| 133 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
| 134 | -include $(OBJTREE)/include/config.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 135 | -DCPUDIR=$(CPUDIR) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 136 | $(shell $(LD) --version | \ |
| 137 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 138 | |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 139 | $(OBJTREE)/MLO: $(obj)u-boot-spl.bin |
| 140 | $(OBJTREE)/tools/mkimage -T omapimage \ |
| 141 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ |
Tom Rini | 79b9ebb | 2012-10-16 13:06:06 +0000 | [diff] [blame] | 142 | |
| 143 | $(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin |
| 144 | $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \ |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 145 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 146 | |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 147 | $(OBJTREE)/SPL : $(obj)u-boot-spl.bin depend |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 148 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common $@ |
Stefano Babic | a80834c | 2012-10-10 21:11:44 +0000 | [diff] [blame] | 149 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 150 | ALL-y += $(obj)$(SPL_BIN).bin |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 151 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 152 | ifdef CONFIG_SAMSUNG |
| 153 | ALL-y += $(obj)$(BOARD)-spl.bin |
| 154 | endif |
| 155 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 156 | all: $(ALL-y) |
| 157 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 158 | ifdef CONFIG_SAMSUNG |
Rajeshwari Birje | 0fcac1a | 2013-12-26 09:44:27 +0530 | [diff] [blame] | 159 | ifdef CONFIG_VAR_SIZE_SPL |
| 160 | VAR_SIZE_PARAM = --vs |
| 161 | else |
| 162 | VAR_SIZE_PARAM = |
| 163 | endif |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 164 | $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin |
Rajeshwari Birje | 0fcac1a | 2013-12-26 09:44:27 +0530 | [diff] [blame] | 165 | $(OBJTREE)/tools/mk$(BOARD)spl $(VAR_SIZE_PARAM) $< $@ |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 166 | endif |
| 167 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 168 | $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN) |
Albert ARIBAUD | b02bfc4 | 2014-01-13 14:57:05 +0100 | [diff] [blame] | 169 | $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 170 | |
| 171 | GEN_UBOOT = \ |
Tyler Olmstead | be7e41e | 2012-08-08 16:24:13 +0000 | [diff] [blame] | 172 | cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 173 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 174 | -Map $(SPL_BIN).map -o $(SPL_BIN) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 175 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 176 | $(obj)$(SPL_BIN): depend $(START) $(LIBS) $(obj)u-boot-spl.lds |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 177 | $(GEN_UBOOT) |
| 178 | |
Masahiro Yamada | 3bddafa | 2013-10-21 11:53:41 +0900 | [diff] [blame] | 179 | $(START): |
| 180 | @: |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 181 | |
| 182 | $(LIBS): depend |
Masahiro Yamada | 3bddafa | 2013-10-21 11:53:41 +0900 | [diff] [blame] | 183 | $(MAKE) $(build) $(SRCTREE)$(dir $(subst $(SPLTREE),,$@)) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 184 | |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 185 | $(obj)u-boot-spl.lds: $(LDSCRIPT) depend |
Marek Vasut | 97b24d3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 186 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(obj). -ansi -D__ASSEMBLY__ -P - < $< > $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 187 | |
| 188 | depend: $(obj).depend |
| 189 | .PHONY: depend |
| 190 | |
| 191 | # defines $(obj).depend target |
| 192 | include $(SRCTREE)/rules.mk |