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 | # |
| 12 | # This file is released under the terms of GPL v2 and any later version. |
| 13 | # See the file COPYING in the root directory of the source tree for details. |
| 14 | # |
| 15 | # Based on top-level Makefile. |
| 16 | # |
| 17 | |
| 18 | CONFIG_SPL_BUILD := y |
| 19 | export CONFIG_SPL_BUILD |
| 20 | |
| 21 | include $(TOPDIR)/config.mk |
| 22 | |
| 23 | # We want the final binaries in this directory |
| 24 | obj := $(OBJTREE)/spl/ |
| 25 | |
Scott Wood | e66443f | 2012-08-14 01:44:29 +0000 | [diff] [blame] | 26 | 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] | 27 | |
Marek Vasut | 08e4f70 | 2011-09-11 17:56:19 +0000 | [diff] [blame] | 28 | ifdef CONFIG_SPL_START_S_PATH |
| 29 | START_PATH := $(subst ",,$(CONFIG_SPL_START_S_PATH)) |
| 30 | else |
| 31 | START_PATH := $(CPUDIR) |
| 32 | endif |
| 33 | |
| 34 | START := $(START_PATH)/start.o |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 35 | ifeq ($(CPU),x86) |
| 36 | START += $(START_PATH)/start16.o |
| 37 | START += $(START_PATH)/resetvec.o |
| 38 | endif |
| 39 | ifeq ($(CPU),ppc4xx) |
| 40 | START += $(START_PATH)/resetvec.o |
| 41 | endif |
| 42 | ifeq ($(CPU),mpc85xx) |
| 43 | START += $(START_PATH)/resetvec.o |
| 44 | endif |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 45 | |
| 46 | LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 47 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 48 | LIBS-y += $(CPUDIR)/lib$(CPU).o |
Scott Wood | 510ed3b | 2012-09-19 17:56:39 -0500 | [diff] [blame] | 49 | ifeq ($(CPU),mpc83xx) |
| 50 | LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
| 51 | endif |
| 52 | ifeq ($(CPU),mpc85xx) |
| 53 | LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
| 54 | endif |
| 55 | ifeq ($(CPU),mpc86xx) |
| 56 | LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
| 57 | endif |
| 58 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 59 | ifdef SOC |
| 60 | LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o |
| 61 | endif |
| 62 | LIBS-y += board/$(BOARDDIR)/lib$(BOARD).o |
| 63 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o |
| 64 | |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 65 | LIBS-$(CONFIG_SPL_FRAMEWORK) += common/spl/libspl.o |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 66 | LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o |
| 67 | LIBS-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/libdisk.o |
| 68 | LIBS-$(CONFIG_SPL_I2C_SUPPORT) += drivers/i2c/libi2c.o |
| 69 | LIBS-$(CONFIG_SPL_GPIO_SUPPORT) += drivers/gpio/libgpio.o |
| 70 | LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/libmmc.o |
| 71 | LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/libserial.o |
| 72 | LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o |
| 73 | LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o |
| 74 | LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o |
| 75 | LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o |
Simon Schwarz | 682b3a8 | 2011-09-14 15:30:54 -0400 | [diff] [blame] | 76 | LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o |
Simon Schwarz | 12c2f1e | 2011-09-14 15:30:16 -0400 | [diff] [blame] | 77 | LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o |
Marek Vasut | 54cd51b | 2011-10-31 14:14:15 +0100 | [diff] [blame] | 78 | LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o |
Simon Schwarz | 3a0d60c | 2011-09-28 05:00:27 +0000 | [diff] [blame] | 79 | LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o |
Heiko Schocher | 18e8ff1 | 2011-11-01 20:00:28 +0000 | [diff] [blame] | 80 | LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/memory.o |
Ilya Yanok | 7ac2fe2 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 81 | LIBS-$(CONFIG_SPL_NET_SUPPORT) += net/libnet.o |
| 82 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/libnet.o |
| 83 | LIBS-$(CONFIG_SPL_ETH_SUPPORT) += drivers/net/phy/libphy.o |
Ilya Yanok | 62a8143 | 2013-02-05 11:36:24 +0000 | [diff] [blame] | 84 | LIBS-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += drivers/usb/musb-new/libusb_musb-new.o |
| 85 | LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/libusb_gadget.o |
Daniel Schwierzeck | efcc609 | 2011-07-13 05:11:08 +0000 | [diff] [blame] | 86 | |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 87 | ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 88 | LIBS-y += $(CPUDIR)/omap-common/libomap-common.o |
| 89 | endif |
Daniel Schwierzeck | 525728b | 2011-07-13 05:11:09 +0000 | [diff] [blame] | 90 | |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 91 | ifneq ($(CONFIG_TEGRA),) |
Allen Martin | d9e73a8 | 2012-08-31 08:30:01 +0000 | [diff] [blame] | 92 | LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o |
Tom Warren | 3064f32 | 2012-09-19 14:08:52 -0700 | [diff] [blame] | 93 | LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o |
| 94 | LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o |
Allen Martin | d9e73a8 | 2012-08-31 08:30:01 +0000 | [diff] [blame] | 95 | endif |
| 96 | |
Allen Martin | 660e98f | 2012-08-31 08:30:14 +0000 | [diff] [blame] | 97 | # Add GCC lib |
| 98 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
| 99 | PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o |
| 100 | PLATFORM_LIBS := $(filter-out %/libgcc.o, $(filter-out -lgcc, $(PLATFORM_LIBS))) $(PLATFORM_LIBGCC) |
| 101 | endif |
| 102 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 103 | START := $(addprefix $(SPLTREE)/,$(START)) |
| 104 | LIBS := $(addprefix $(SPLTREE)/,$(sort $(LIBS-y))) |
| 105 | |
| 106 | __START := $(subst $(obj),,$(START)) |
| 107 | __LIBS := $(subst $(obj),,$(LIBS)) |
| 108 | |
| 109 | # Linker Script |
| 110 | ifdef CONFIG_SPL_LDSCRIPT |
| 111 | # need to strip off double quotes |
| 112 | LDSCRIPT := $(addprefix $(SRCTREE)/,$(subst ",,$(CONFIG_SPL_LDSCRIPT))) |
| 113 | endif |
| 114 | |
| 115 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 116 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-spl.lds |
| 117 | endif |
| 118 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 119 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-spl.lds |
| 120 | endif |
| 121 | ifeq ($(wildcard $(LDSCRIPT)),) |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 122 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot-spl.lds |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 123 | endif |
| 124 | ifeq ($(wildcard $(LDSCRIPT)),) |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 125 | $(error could not find linker script) |
| 126 | endif |
| 127 | |
| 128 | # Special flags for CPP when processing the linker script. |
| 129 | # Pass the version down so we can handle backwards compatibility |
| 130 | # on the fly. |
| 131 | LDPPFLAGS += \ |
| 132 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
| 133 | -include $(OBJTREE)/include/config.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 134 | -DCPUDIR=$(CPUDIR) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 135 | $(shell $(LD) --version | \ |
| 136 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 137 | |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 138 | $(OBJTREE)/MLO: $(obj)u-boot-spl.bin |
| 139 | $(OBJTREE)/tools/mkimage -T omapimage \ |
| 140 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ |
Tom Rini | 79b9ebb | 2012-10-16 13:06:06 +0000 | [diff] [blame] | 141 | |
| 142 | $(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin |
| 143 | $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \ |
Chandan Nath | 8a8f084 | 2012-01-09 20:38:59 +0000 | [diff] [blame] | 144 | -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 145 | |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 146 | $(OBJTREE)/SPL : $(obj)u-boot-spl.bin depend |
| 147 | $(MAKE) -C $(SRCTREE)/arch/arm/imx-common $@ |
Stefano Babic | a80834c | 2012-10-10 21:11:44 +0000 | [diff] [blame] | 148 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 149 | ALL-y += $(obj)u-boot-spl.bin |
| 150 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 151 | ifdef CONFIG_SAMSUNG |
| 152 | ALL-y += $(obj)$(BOARD)-spl.bin |
| 153 | endif |
| 154 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 155 | all: $(ALL-y) |
| 156 | |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 157 | ifdef CONFIG_SAMSUNG |
| 158 | $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin |
Angus Ainslie | a2ee7f0 | 2011-09-12 10:11:58 +0000 | [diff] [blame] | 159 | $(OBJTREE)/tools/mk$(BOARD)spl \ |
Chander Kashyap | 98a48c5 | 2011-08-18 22:37:20 +0000 | [diff] [blame] | 160 | $(obj)u-boot-spl.bin $(obj)$(BOARD)-spl.bin |
| 161 | endif |
| 162 | |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 163 | $(obj)u-boot-spl.bin: $(obj)u-boot-spl |
| 164 | $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@ |
| 165 | |
| 166 | GEN_UBOOT = \ |
Tyler Olmstead | be7e41e | 2012-08-08 16:24:13 +0000 | [diff] [blame] | 167 | cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 168 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
| 169 | -Map u-boot-spl.map -o u-boot-spl |
| 170 | |
| 171 | $(obj)u-boot-spl: depend $(START) $(LIBS) $(obj)u-boot-spl.lds |
| 172 | $(GEN_UBOOT) |
| 173 | |
| 174 | $(START): depend |
Marek Vasut | 08e4f70 | 2011-09-11 17:56:19 +0000 | [diff] [blame] | 175 | $(MAKE) -C $(SRCTREE)/$(START_PATH) $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 176 | |
| 177 | $(LIBS): depend |
| 178 | $(MAKE) -C $(SRCTREE)$(dir $(subst $(SPLTREE),,$@)) |
| 179 | |
Albert ARIBAUD | 65cdd64 | 2013-02-25 00:58:58 +0000 | [diff] [blame] | 180 | $(obj)u-boot-spl.lds: $(LDSCRIPT) depend |
Marek Vasut | 97b24d3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 181 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -I$(obj). -ansi -D__ASSEMBLY__ -P - < $< > $@ |
Daniel Schwierzeck | 6a11cf4 | 2011-07-18 07:48:07 +0000 | [diff] [blame] | 182 | |
| 183 | depend: $(obj).depend |
| 184 | .PHONY: depend |
| 185 | |
| 186 | # defines $(obj).depend target |
| 187 | include $(SRCTREE)/rules.mk |