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