xref: /linux/arch/arm/boot/compressed/Makefile (revision a7f464f3db93ae5492bee6f6e48939fd8a45fa99)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# linux/arch/arm/boot/compressed/Makefile
31da177e4SLinus Torvalds#
41da177e4SLinus Torvalds# create a compressed vmlinuz image from the original vmlinux
51da177e4SLinus Torvalds#
61da177e4SLinus Torvalds
7f45b1149SSimon HormanOBJS		=
8f45b1149SSimon Horman
9090ab3ffSSimon Horman# Ensure that MMCIF loader code appears early in the image
10f45b1149SSimon Horman# to minimise that number of bocks that have to be read in
11f45b1149SSimon Horman# order to load it.
12f45b1149SSimon Hormanifeq ($(CONFIG_ZBOOT_ROM_MMCIF),y)
13f45b1149SSimon HormanOBJS		+= mmcif-sh7372.o
14f45b1149SSimon Hormanendif
15090ab3ffSSimon Horman
16090ab3ffSSimon Horman# Ensure that SDHI loader code appears early in the image
17090ab3ffSSimon Horman# to minimise that number of bocks that have to be read in
18090ab3ffSSimon Horman# order to load it.
19090ab3ffSSimon Hormanifeq ($(CONFIG_ZBOOT_ROM_SH_MOBILE_SDHI),y)
20090ab3ffSSimon HormanOBJS		+= sdhi-shmobile.o
21090ab3ffSSimon HormanOBJS		+= sdhi-sh7372.o
22f45b1149SSimon Hormanendif
23f45b1149SSimon Horman
24e69edc79SEric MiaoAFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
251da177e4SLinus TorvaldsHEAD	= head.o
26f45b1149SSimon HormanOBJS	+= misc.o decompress.o
274486b863SRussell KingFONTC	= $(srctree)/drivers/video/console/font_acorn_8x8.c
281da177e4SLinus Torvalds
29df4879faSNicolas Pitre# string library code (-Os is enforced to keep it much smaller)
30df4879faSNicolas PitreOBJS		+= string.o
31df4879faSNicolas PitreCFLAGS_string.o	:= -Os
32df4879faSNicolas Pitre
331da177e4SLinus Torvalds#
341da177e4SLinus Torvalds# Architecture dependencies
351da177e4SLinus Torvalds#
361da177e4SLinus Torvaldsifeq ($(CONFIG_ARCH_ACORN),y)
374486b863SRussell KingOBJS		+= ll_char_wr.o font.o
381da177e4SLinus Torvaldsendif
391da177e4SLinus Torvalds
401da177e4SLinus Torvaldsifeq ($(CONFIG_ARCH_SHARK),y)
411da177e4SLinus TorvaldsOBJS		+= head-shark.o ofw-shark.o
421da177e4SLinus Torvaldsendif
431da177e4SLinus Torvalds
441da177e4SLinus Torvaldsifeq ($(CONFIG_ARCH_P720T),y)
451da177e4SLinus Torvalds# Borrow this code from SA1100
461da177e4SLinus TorvaldsOBJS		+= head-sa1100.o
471da177e4SLinus Torvaldsendif
481da177e4SLinus Torvalds
491da177e4SLinus Torvaldsifeq ($(CONFIG_ARCH_SA1100),y)
501da177e4SLinus TorvaldsOBJS		+= head-sa1100.o
511da177e4SLinus Torvaldsendif
521da177e4SLinus Torvalds
5321f47fbcSAlexey Charkovifeq ($(CONFIG_ARCH_VT8500),y)
5421f47fbcSAlexey CharkovOBJS		+= head-vt8500.o
5521f47fbcSAlexey Charkovendif
5621f47fbcSAlexey Charkov
571da177e4SLinus Torvaldsifeq ($(CONFIG_CPU_XSCALE),y)
581da177e4SLinus TorvaldsOBJS		+= head-xscale.o
591da177e4SLinus Torvaldsendif
601da177e4SLinus Torvalds
619c3fca2eSEric Miaoifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
621da177e4SLinus TorvaldsOBJS		+= head-sharpsl.o
631da177e4SLinus Torvaldsendif
641da177e4SLinus Torvalds
6526584853SCatalin Marinasifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
66f12d0d7cSHyok S. Choiifeq ($(CONFIG_CPU_CP15),y)
671da177e4SLinus TorvaldsOBJS		+= big-endian.o
68f12d0d7cSHyok S. Choielse
69f12d0d7cSHyok S. Choi# The endian should be set by h/w design.
70f12d0d7cSHyok S. Choiendif
711da177e4SLinus Torvaldsendif
721da177e4SLinus Torvalds
739a4af112SKuninori Morimotoifeq ($(CONFIG_ARCH_SHMOBILE),y)
749a4af112SKuninori MorimotoOBJS		+= head-shmobile.o
759a4af112SKuninori Morimotoendif
769a4af112SKuninori Morimoto
771da177e4SLinus Torvalds#
781da177e4SLinus Torvalds# We now have a PIC decompressor implementation.  Decompressors running
791da177e4SLinus Torvalds# from RAM should not define ZTEXTADDR.  Decompressors running directly
801da177e4SLinus Torvalds# from ROM or Flash must define ZTEXTADDR (preferably via the config)
811da177e4SLinus Torvalds# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
821da177e4SLinus Torvaldsifeq ($(CONFIG_ZBOOT_ROM),y)
831da177e4SLinus TorvaldsZTEXTADDR	:= $(CONFIG_ZBOOT_ROM_TEXT)
841da177e4SLinus TorvaldsZBSSADDR	:= $(CONFIG_ZBOOT_ROM_BSS)
851da177e4SLinus Torvaldselse
861da177e4SLinus TorvaldsZTEXTADDR	:= 0
873bd2cbb9SNicolas PitreZBSSADDR	:= ALIGN(8)
881da177e4SLinus Torvaldsendif
891da177e4SLinus Torvalds
901da177e4SLinus TorvaldsSEDFLAGS	= s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/
911da177e4SLinus Torvalds
92e7db7b42SAlbin Tonnerresuffix_$(CONFIG_KERNEL_GZIP) = gzip
93e7db7b42SAlbin Tonnerresuffix_$(CONFIG_KERNEL_LZO)  = lzo
946e8699f7SAlbin Tonnerresuffix_$(CONFIG_KERNEL_LZMA) = lzma
95*a7f464f3SImre Kalozsuffix_$(CONFIG_KERNEL_XZ)   = xzkern
96e7db7b42SAlbin Tonnerre
97b90b9a38SNicolas Pitre# Borrowed libfdt files for the ATAG compatibility mode
98b90b9a38SNicolas Pitre
99b90b9a38SNicolas Pitrelibfdt		:= fdt_rw.c fdt_ro.c fdt_wip.c fdt.c
100b90b9a38SNicolas Pitrelibfdt_hdrs	:= fdt.h libfdt.h libfdt_internal.h
101b90b9a38SNicolas Pitre
102b90b9a38SNicolas Pitrelibfdt_objs	:= $(addsuffix .o, $(basename $(libfdt)))
103b90b9a38SNicolas Pitre
104b90b9a38SNicolas Pitre$(addprefix $(obj)/,$(libfdt) $(libfdt_hdrs)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/%
105b90b9a38SNicolas Pitre	$(call cmd,shipped)
106b90b9a38SNicolas Pitre
107b90b9a38SNicolas Pitre$(addprefix $(obj)/,$(libfdt_objs) atags_to_fdt.o): \
108b90b9a38SNicolas Pitre	$(addprefix $(obj)/,$(libfdt_hdrs))
109b90b9a38SNicolas Pitre
110b90b9a38SNicolas Pitreifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y)
111b90b9a38SNicolas PitreOBJS	+= $(libfdt_objs) atags_to_fdt.o
112b90b9a38SNicolas Pitreendif
113b90b9a38SNicolas Pitre
114e7db7b42SAlbin Tonnerretargets       := vmlinux vmlinux.lds \
115e7db7b42SAlbin Tonnerre		 piggy.$(suffix_y) piggy.$(suffix_y).o \
116*a7f464f3SImre Kaloz		 lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S \
117*a7f464f3SImre Kaloz		 font.o font.c head.o misc.o $(OBJS)
118014c257cSAbhishek Sagar
119f1b957d3SMagnus Damm# Make sure files are removed during clean
120*a7f464f3SImre Kalozextra-y       += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern \
121*a7f464f3SImre Kaloz		 lib1funcs.S ashldi3.S $(libfdt) $(libfdt_hdrs)
122f1b957d3SMagnus Damm
123606576ceSSteven Rostedtifeq ($(CONFIG_FUNCTION_TRACER),y)
124014c257cSAbhishek SagarORIG_CFLAGS := $(KBUILD_CFLAGS)
125014c257cSAbhishek SagarKBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
126014c257cSAbhishek Sagarendif
127014c257cSAbhishek Sagar
128b90b9a38SNicolas Pitreccflags-y := -fpic -fno-builtin -I$(obj)
12921f0b311Smatt mooneyasflags-y := -Wa,-march=all
1301da177e4SLinus Torvalds
1315ffb04f6SNicolas Pitre# Supply kernel BSS size to the decompressor via a linker symbol.
1321ec332a3SJanusz KrzysztofikKBSS_SZ = $(shell $(CROSS_COMPILE)size $(obj)/../../../../vmlinux | \
1331ec332a3SJanusz Krzysztofik		awk 'END{print $$3}')
1345ffb04f6SNicolas PitreLDFLAGS_vmlinux = --defsym _kernel_bss_size=$(KBSS_SZ)
1359e84ed63SRussell King# Supply ZRELADDR to the decompressor via a linker symbol.
1369e84ed63SRussell Kingifneq ($(CONFIG_AUTO_ZRELADDR),y)
137d239b1dcSNicolas PitreLDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR)
1389e84ed63SRussell Kingendif
13926584853SCatalin Marinasifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
14026584853SCatalin MarinasLDFLAGS_vmlinux += --be8
14126584853SCatalin Marinasendif
142e7db7b42SAlbin Tonnerre# ?
143e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += -p
144e7db7b42SAlbin Tonnerre# Report unresolved symbol references
145e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += --no-undefined
146e7db7b42SAlbin Tonnerre# Delete all temporary local symbols
147e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += -X
148e7db7b42SAlbin Tonnerre# Next argument is a linker script
149e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += -T
150e7db7b42SAlbin Tonnerre
151e7db7b42SAlbin Tonnerre# For __aeabi_uidivmod
152e7db7b42SAlbin Tonnerrelib1funcs = $(obj)/lib1funcs.o
153e7db7b42SAlbin Tonnerre
15463d15148SNicolas Pitre$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S
155e7db7b42SAlbin Tonnerre	$(call cmd,shipped)
1561da177e4SLinus Torvalds
157*a7f464f3SImre Kaloz# For __aeabi_llsl
158*a7f464f3SImre Kalozashldi3 = $(obj)/ashldi3.o
159*a7f464f3SImre Kaloz
160*a7f464f3SImre Kaloz$(obj)/ashldi3.S: $(srctree)/arch/$(SRCARCH)/lib/ashldi3.S
161*a7f464f3SImre Kaloz	$(call cmd,shipped)
162*a7f464f3SImre Kaloz
1638d7e4cc2SNicolas Pitre# We need to prevent any GOTOFF relocs being used with references
1648d7e4cc2SNicolas Pitre# to symbols in the .bss section since we cannot relocate them
1658d7e4cc2SNicolas Pitre# independently from the rest at run time.  This can be achieved by
1668d7e4cc2SNicolas Pitre# ensuring that no private .bss symbols exist, as global symbols
1678d7e4cc2SNicolas Pitre# always have a GOT entry which is what we need.
1688d7e4cc2SNicolas Pitre# The .data section is already discarded by the linker script so no need
1698d7e4cc2SNicolas Pitre# to bother about it here.
1708d7e4cc2SNicolas Pitrecheck_for_bad_syms = \
1718d7e4cc2SNicolas Pitrebad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \
1728d7e4cc2SNicolas Pitre[ -z "$$bad_syms" ] || \
1738d7e4cc2SNicolas Pitre  ( echo "following symbols must have non local/private scope:" >&2; \
1748d7e4cc2SNicolas Pitre    echo "$$bad_syms" >&2; rm -f $@; false )
1758d7e4cc2SNicolas Pitre
17660aac932SSascha Hauercheck_for_multiple_zreladdr = \
1774bdad983SRabin Vincentif [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" = "" ]; then \
17860aac932SSascha Hauer	echo 'multiple zreladdrs: $(ZRELADDR)'; \
17960aac932SSascha Hauer	echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \
18060aac932SSascha Hauer	false; \
18160aac932SSascha Hauerfi
18260aac932SSascha Hauer
183e7db7b42SAlbin Tonnerre$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
184*a7f464f3SImre Kaloz		$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) $(ashldi3) FORCE
18560aac932SSascha Hauer	@$(check_for_multiple_zreladdr)
1861da177e4SLinus Torvalds	$(call if_changed,ld)
1878d7e4cc2SNicolas Pitre	@$(check_for_bad_syms)
1881da177e4SLinus Torvalds
189e7db7b42SAlbin Tonnerre$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
190e7db7b42SAlbin Tonnerre	$(call if_changed,$(suffix_y))
1911da177e4SLinus Torvalds
192e7db7b42SAlbin Tonnerre$(obj)/piggy.$(suffix_y).o:  $(obj)/piggy.$(suffix_y) FORCE
1931da177e4SLinus Torvalds
1944486b863SRussell KingCFLAGS_font.o := -Dstatic=
1954486b863SRussell King
1964486b863SRussell King$(obj)/font.c: $(FONTC)
1974486b863SRussell King	$(call cmd,shipped)
1981da177e4SLinus Torvalds
199d93c333dSRussell King$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile $(KCONFIG_CONFIG)
2001da177e4SLinus Torvalds	@sed "$(SEDFLAGS)" < $< > $@
201