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 |
| 40 | START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH)) |
| 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 | |
| 57 | LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 58 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 59 | LIBS-y += $(CPUDIR)/lib$(CPU).o |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 60 | ifeq ($(CPU),mpc83xx) |
| 61 | LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
| 62 | endif |
| 63 | ifeq ($(CPU),mpc85xx) |
| 64 | LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
Ying Zhang | bb0dc10 | 2013-08-16 15:16:11 +0800 | [diff] [blame] | 65 | ifdef CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT |
| 66 | LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o |
| 67 | endif |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 68 | endif |
| 69 | ifeq ($(CPU),mpc86xx) |
| 70 | LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
| 71 | endif |
| 72 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 73 | ifdef SOC |
| 74 | LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o |
| 75 | endif |
| 76 | LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o |
| 77 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o |
| 78 | |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 79 | LIBS-$(CONFIG_SPL_FRAMEWORK) += common/spl/libspl.o |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 80 | LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o |
| 81 | LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o |
| 82 | LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o |
| 83 | LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o |
| 84 | LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o |
| 85 | LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o |
| 86 | LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o |
| 87 | LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o |
| 88 | LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o |
| 89 | LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o |
Tom Rini | fd070d8 | 2013-08-30 16:28:41 -0400 | [diff] [blame] | 90 | LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o \ |
| 91 | drivers/power/pmic/libpmic.o |
Simon Schwarz | 12c2f1e | 2011-09-14 15:30:16 -0400 | [diff] [blame] | 92 | LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o |
Marek Vasut | 54cd51b | 2011-10-31 14:14:15 +0100 | [diff] [blame] | 93 | LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o |
Simon Schwarz | 3a0d60c | 2011-09-28 05:00:27 +0000 | [diff] [blame] | 94 | LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o |
Heiko Schocher | 18e8ff1 | 2011-11-01 20:00:28 +0000 | [diff] [blame] | 95 | LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/memory.o |
Ilya Yanok | 7ac2fe2 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 96 | LIBS-$(CONFIG_SPL_NET_SUPPORT) += net/libnet.o |
| 97 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/libnet.o |
| 98 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/libphy.o |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 99 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/net/phy/libphy.o |
Ilya Yanok | 62a8143 | 2013-02-05 11:36:24 +0000 | [diff] [blame] | 100 | LIBS-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += drivers/usb/musb-new/libusb_musb-new.o |
| 101 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/libusb_gadget.o |
Heiko Schocher | a09f964 | 2013-08-19 16:38:58 +0200 | [diff] [blame] | 102 | LIBS-$(CONFIG_SPL_WATCHDOG_SUPPORT) += drivers/watchdog/libwatchdog.o |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 103 | |
Benoît Thébaudeau | 89a9fd5 | 2013-05-06 01:15:48 +0000 | [diff] [blame] | 104 | ifneq (,$(CONFIG_MX23)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35)) |
Marek Vasut | cfb8e87 | 2013-04-21 05:52:25 +0000 | [diff] [blame] | 105 | LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o |
| 106 | endif |
| 107 | |
Masahiro Yamada | 37d82be | 2013-10-17 20:38:54 +0900 | [diff] [blame] | 108 | LIBS-$(CONFIG_ARM) += arch/arm/cpu/libcpu.o |
Allen Martin | d9e73a8 | 2012-08-31 08:30:01 +0000 | [diff] [blame] | 109 | |
Benoît Thébaudeau | 52b9d3c | 2013-05-03 10:32:19 +0000 | [diff] [blame] | 110 | ifneq ($(CONFIG_MX23)$(CONFIG_MX35),) |
Stefan Roese | 8870e45 | 2013-04-09 21:06:08 +0000 | [diff] [blame] | 111 | LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o |
| 112 | endif |
| 113 | |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 114 | # Add GCC lib |
| 115 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
| 116 | PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o |
| 117 | PLATFORM_LIBS := $(filter-out %/libgcc.o, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC) |
| 118 | endif |
| 119 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 120 | START := $(addprefix $(SPLTREE)/,$(START)) |
| 121 | LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y))) |
| 122 | |
| 123 | __START := $(subst $(obj),,$(START)) |
| 124 | __LIBS := $(subst $(obj),,$(LIBS)) |
| 125 | |
| 126 | # Linker Script |
| 127 | ifdef CONFIG_SPL_LDSCRIPT |
| 128 | # need to strip off double quotes |
| 129 | LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT))) |
| 130 | endif |
| 131 | |
| 132 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 133 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds |
| 134 | endif |
| 135 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 136 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds |
| 137 | endif |
| 138 | ifeq ($(wildcard $(LDSCRIPT)),) |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 139 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot-spl.lds |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 140 | endif |
| 141 | ifeq ($(wildcard $(LDSCRIPT)),) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 142 | $(error could not find linker script) |
| 143 | endif |
| 144 | |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 145 | build := -f $(TOPDIR)/scripts/Makefile.build -C |
| 146 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 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 | |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 157 | $(OBJTREE)/MLO: $(obj)u-boot-spl.bin |
| 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 | |
| 161 | $(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin |
| 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 | |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 165 | $(OBJTREE)/SPL : $(obj)u-boot-spl.bin depend |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 166 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common $@ |
Stefano Babic | a80834c | 2012-10-10 21:11:44 +0000 | [diff] [blame] | 167 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [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 |
| 171 | ALL-y += $(obj)$(BOARD)-spl.bin |
| 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 |
| 177 | $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin |
Angus Ainslie | a2ee7f0 | 2011-09-12 10:11:58 +0000 | [diff] [blame] | 178 | $(OBJTREE)/tools/mk$(BOARD)spl \ |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 179 | $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin |
| 180 | endif |
| 181 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 182 | $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 183 | $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@ |
| 184 | |
| 185 | GEN_UBOOT = \ |
Tyler Olmstead | be7e41e | 2012-08-08 16:24:13 +0000 | [diff] [blame] | 186 | cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 187 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 188 | -Map $(SPL_BIN).map -o $(SPL_BIN) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 189 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 190 | $(obj)$(SPL_BIN): depend $(START) $(LIBS) $(obj)u-boot-spl.lds |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 191 | $(GEN_UBOOT) |
| 192 | |
Masahiro Yamada | ce28d7a | 2013-10-17 17:34:47 +0900 | [diff] [blame] | 193 | # Tentative step for Kbuild-style makefiles coexist with conventional U-Boot style makefiles |
| 194 | # U-Boot conventional sub makefiles always include some other makefiles. |
| 195 | # So, the build system searches a line beginning with "include" before entering into the sub makefile |
| 196 | # in order to distinguish which style it is. |
| 197 | # If the Makefile include a "include" line, we assume it is an U-Boot style makefile. |
| 198 | # Otherwise, it is treated as a Kbuild-style makefile. |
| 199 | select_makefile = \ |
| 200 | if grep -q "^include" $1/Makefile; then \ |
| 201 | $(MAKE) -C $1; \ |
| 202 | else \ |
| 203 | $(MAKE) -C $1 -f $(TOPDIR)/scripts/Makefile.build; \ |
| 204 | mv $(dir $@)built-in.o $@; \ |
| 205 | fi |
| 206 | |
| 207 | # We do not need to build $(START) explicitly. |
| 208 | # It is built while we are at $(CPUDIR)/lib$(CPU).o build. |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 209 | $(START): depend |
Masahiro Yamada | ce28d7a | 2013-10-17 17:34:47 +0900 | [diff] [blame] | 210 | if grep -q "^include" $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))Makefile; then \ |
| 211 | $(MAKE) -C $(SRCTREE)/$(START_PATH) $@; \ |
| 212 | fi |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 213 | |
| 214 | $(LIBS): depend |
Masahiro Yamada | ce28d7a | 2013-10-17 17:34:47 +0900 | [diff] [blame] | 215 | +$(call select_makefile, $(SRCTREE)$(dir $(subst $(SPLTREE),,$@))) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 216 | |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 217 | $(obj)u-boot-spl.lds: $(LDSCRIPT) depend |
Marek Vasut | 97b24d3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 218 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(obj). -ansi -D__ASSEMBLY__ -P - < $< > $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 219 | |
| 220 | depend: $(obj).depend |
| 221 | .PHONY: depend |
| 222 | |
| 223 | # defines $(obj).depend target |
| 224 | include $(SRCTREE)/rules.mk |