xref: /linux/arch/arm/boot/compressed/Makefile (revision b24413180f5600bcb3bb70fbed5cf186b60864bd)
1*b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds#
31da177e4SLinus Torvalds# linux/arch/arm/boot/compressed/Makefile
41da177e4SLinus Torvalds#
51da177e4SLinus Torvalds# create a compressed vmlinuz image from the original vmlinux
61da177e4SLinus Torvalds#
71da177e4SLinus Torvalds
8f45b1149SSimon HormanOBJS		=
9f45b1149SSimon Horman
10e69edc79SEric MiaoAFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
111da177e4SLinus TorvaldsHEAD	= head.o
12f45b1149SSimon HormanOBJS	+= misc.o decompress.o
133b4af9bcSShawn Guoifeq ($(CONFIG_DEBUG_UNCOMPRESS),y)
143b4af9bcSShawn GuoOBJS	+= debug.o
153b4af9bcSShawn Guoendif
16ee89bd6bSGeert UytterhoevenFONTC	= $(srctree)/lib/fonts/font_acorn_8x8.c
171da177e4SLinus Torvalds
18df4879faSNicolas Pitre# string library code (-Os is enforced to keep it much smaller)
19df4879faSNicolas PitreOBJS		+= string.o
20df4879faSNicolas PitreCFLAGS_string.o	:= -Os
21df4879faSNicolas Pitre
22424e5994SDave Martinifeq ($(CONFIG_ARM_VIRT_EXT),y)
23424e5994SDave MartinOBJS		+= hyp-stub.o
24424e5994SDave Martinendif
25424e5994SDave Martin
2675c34906SVincent SandersGCOV_PROFILE		:= n
2775c34906SVincent Sanders
281da177e4SLinus Torvalds#
291da177e4SLinus Torvalds# Architecture dependencies
301da177e4SLinus Torvalds#
311da177e4SLinus Torvaldsifeq ($(CONFIG_ARCH_ACORN),y)
324486b863SRussell KingOBJS		+= ll_char_wr.o font.o
331da177e4SLinus Torvaldsendif
341da177e4SLinus Torvalds
351da177e4SLinus Torvaldsifeq ($(CONFIG_ARCH_SA1100),y)
361da177e4SLinus TorvaldsOBJS		+= head-sa1100.o
371da177e4SLinus Torvaldsendif
381da177e4SLinus Torvalds
391da177e4SLinus Torvaldsifeq ($(CONFIG_CPU_XSCALE),y)
401da177e4SLinus TorvaldsOBJS		+= head-xscale.o
411da177e4SLinus Torvaldsendif
421da177e4SLinus Torvalds
439c3fca2eSEric Miaoifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
441da177e4SLinus TorvaldsOBJS		+= head-sharpsl.o
451da177e4SLinus Torvaldsendif
461da177e4SLinus Torvalds
4726584853SCatalin Marinasifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
48f12d0d7cSHyok S. Choiifeq ($(CONFIG_CPU_CP15),y)
491da177e4SLinus TorvaldsOBJS		+= big-endian.o
50f12d0d7cSHyok S. Choielse
51f12d0d7cSHyok S. Choi# The endian should be set by h/w design.
52f12d0d7cSHyok S. Choiendif
531da177e4SLinus Torvaldsendif
541da177e4SLinus Torvalds
551da177e4SLinus Torvalds#
561da177e4SLinus Torvalds# We now have a PIC decompressor implementation.  Decompressors running
571da177e4SLinus Torvalds# from RAM should not define ZTEXTADDR.  Decompressors running directly
581da177e4SLinus Torvalds# from ROM or Flash must define ZTEXTADDR (preferably via the config)
591da177e4SLinus Torvalds# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
601da177e4SLinus Torvaldsifeq ($(CONFIG_ZBOOT_ROM),y)
611da177e4SLinus TorvaldsZTEXTADDR	:= $(CONFIG_ZBOOT_ROM_TEXT)
621da177e4SLinus TorvaldsZBSSADDR	:= $(CONFIG_ZBOOT_ROM_BSS)
631da177e4SLinus Torvaldselse
641da177e4SLinus TorvaldsZTEXTADDR	:= 0
653bd2cbb9SNicolas PitreZBSSADDR	:= ALIGN(8)
661da177e4SLinus Torvaldsendif
671da177e4SLinus Torvalds
68c79bf928SRussell KingCPPFLAGS_vmlinux.lds := -DTEXT_START="$(ZTEXTADDR)" -DBSS_START="$(ZBSSADDR)"
691da177e4SLinus Torvalds
70f57deb0bSMasahiro Yamadacompress-$(CONFIG_KERNEL_GZIP) = gzip
71f57deb0bSMasahiro Yamadacompress-$(CONFIG_KERNEL_LZO)  = lzo
72f57deb0bSMasahiro Yamadacompress-$(CONFIG_KERNEL_LZMA) = lzma
73f57deb0bSMasahiro Yamadacompress-$(CONFIG_KERNEL_XZ)   = xzkern
74f57deb0bSMasahiro Yamadacompress-$(CONFIG_KERNEL_LZ4)  = lz4
75e7db7b42SAlbin Tonnerre
76b90b9a38SNicolas Pitre# Borrowed libfdt files for the ATAG compatibility mode
77b90b9a38SNicolas Pitre
78b90b9a38SNicolas Pitrelibfdt		:= fdt_rw.c fdt_ro.c fdt_wip.c fdt.c
79b90b9a38SNicolas Pitrelibfdt_hdrs	:= fdt.h libfdt.h libfdt_internal.h
80b90b9a38SNicolas Pitre
81b90b9a38SNicolas Pitrelibfdt_objs	:= $(addsuffix .o, $(basename $(libfdt)))
82b90b9a38SNicolas Pitre
83b90b9a38SNicolas Pitre$(addprefix $(obj)/,$(libfdt) $(libfdt_hdrs)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/%
84b90b9a38SNicolas Pitre	$(call cmd,shipped)
85b90b9a38SNicolas Pitre
86b90b9a38SNicolas Pitre$(addprefix $(obj)/,$(libfdt_objs) atags_to_fdt.o): \
87b90b9a38SNicolas Pitre	$(addprefix $(obj)/,$(libfdt_hdrs))
88b90b9a38SNicolas Pitre
89b90b9a38SNicolas Pitreifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y)
90b90b9a38SNicolas PitreOBJS	+= $(libfdt_objs) atags_to_fdt.o
91b90b9a38SNicolas Pitreendif
92b90b9a38SNicolas Pitre
9353f67545SMasahiro Yamadatargets       := vmlinux vmlinux.lds piggy_data piggy.o \
94b44c72deSMasahiro Yamada		 lib1funcs.o ashldi3.o bswapsdi2.o \
95684c1201SMasahiro Yamada		 head.o $(OBJS)
96014c257cSAbhishek Sagar
9753f67545SMasahiro Yamadaclean-files += piggy_data lib1funcs.S ashldi3.S bswapsdi2.S \
9853f67545SMasahiro Yamada		$(libfdt) $(libfdt_hdrs) hyp-stub.S
99f1b957d3SMagnus Damm
1008c36a757SArnd BergmannKBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
1018c36a757SArnd Bergmann
102606576ceSSteven Rostedtifeq ($(CONFIG_FUNCTION_TRACER),y)
103014c257cSAbhishek SagarORIG_CFLAGS := $(KBUILD_CFLAGS)
104014c257cSAbhishek SagarKBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
105014c257cSAbhishek Sagarendif
106014c257cSAbhishek Sagar
1077f66cd3fSKees Cook# -fstack-protector-strong triggers protection checks in this code,
1087f66cd3fSKees Cook# but it is being used too early to link to meaningful stack_chk logic.
1097f66cd3fSKees Cooknossp_flags := $(call cc-option, -fno-stack-protector)
1107f66cd3fSKees CookCFLAGS_atags_to_fdt.o := $(nossp_flags)
1117f66cd3fSKees CookCFLAGS_fdt.o := $(nossp_flags)
1127f66cd3fSKees CookCFLAGS_fdt_ro.o := $(nossp_flags)
1137f66cd3fSKees CookCFLAGS_fdt_rw.o := $(nossp_flags)
1147f66cd3fSKees CookCFLAGS_fdt_wip.o := $(nossp_flags)
1157f66cd3fSKees Cook
116b8083f86SJonathan Austinccflags-y := -fpic -mno-single-pic-base -fno-builtin -I$(obj)
117da94a829SArnd Bergmannasflags-y := -DZIMAGE
1181da177e4SLinus Torvalds
1195ffb04f6SNicolas Pitre# Supply kernel BSS size to the decompressor via a linker symbol.
1201ec332a3SJanusz KrzysztofikKBSS_SZ = $(shell $(CROSS_COMPILE)size $(obj)/../../../../vmlinux | \
1211ec332a3SJanusz Krzysztofik		awk 'END{print $$3}')
1225ffb04f6SNicolas PitreLDFLAGS_vmlinux = --defsym _kernel_bss_size=$(KBSS_SZ)
1239e84ed63SRussell King# Supply ZRELADDR to the decompressor via a linker symbol.
1249e84ed63SRussell Kingifneq ($(CONFIG_AUTO_ZRELADDR),y)
125d239b1dcSNicolas PitreLDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR)
1269e84ed63SRussell Kingendif
12726584853SCatalin Marinasifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
12826584853SCatalin MarinasLDFLAGS_vmlinux += --be8
12926584853SCatalin Marinasendif
130e7db7b42SAlbin Tonnerre# ?
131e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += -p
132e7db7b42SAlbin Tonnerre# Report unresolved symbol references
133e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += --no-undefined
134e7db7b42SAlbin Tonnerre# Delete all temporary local symbols
135e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += -X
136e7db7b42SAlbin Tonnerre# Next argument is a linker script
137e7db7b42SAlbin TonnerreLDFLAGS_vmlinux += -T
138e7db7b42SAlbin Tonnerre
139e7db7b42SAlbin Tonnerre# For __aeabi_uidivmod
140e7db7b42SAlbin Tonnerrelib1funcs = $(obj)/lib1funcs.o
141e7db7b42SAlbin Tonnerre
14263d15148SNicolas Pitre$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S
143e7db7b42SAlbin Tonnerre	$(call cmd,shipped)
1441da177e4SLinus Torvalds
145a7f464f3SImre Kaloz# For __aeabi_llsl
146a7f464f3SImre Kalozashldi3 = $(obj)/ashldi3.o
147a7f464f3SImre Kaloz
148a7f464f3SImre Kaloz$(obj)/ashldi3.S: $(srctree)/arch/$(SRCARCH)/lib/ashldi3.S
149a7f464f3SImre Kaloz	$(call cmd,shipped)
150a7f464f3SImre Kaloz
151017f161aSKim Phillips# For __bswapsi2, __bswapdi2
152017f161aSKim Phillipsbswapsdi2 = $(obj)/bswapsdi2.o
153017f161aSKim Phillips
154017f161aSKim Phillips$(obj)/bswapsdi2.S: $(srctree)/arch/$(SRCARCH)/lib/bswapsdi2.S
155017f161aSKim Phillips	$(call cmd,shipped)
156017f161aSKim Phillips
1578d7e4cc2SNicolas Pitre# We need to prevent any GOTOFF relocs being used with references
1588d7e4cc2SNicolas Pitre# to symbols in the .bss section since we cannot relocate them
1598d7e4cc2SNicolas Pitre# independently from the rest at run time.  This can be achieved by
1608d7e4cc2SNicolas Pitre# ensuring that no private .bss symbols exist, as global symbols
1618d7e4cc2SNicolas Pitre# always have a GOT entry which is what we need.
1628d7e4cc2SNicolas Pitre# The .data section is already discarded by the linker script so no need
1638d7e4cc2SNicolas Pitre# to bother about it here.
1648d7e4cc2SNicolas Pitrecheck_for_bad_syms = \
1658d7e4cc2SNicolas Pitrebad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \
1668d7e4cc2SNicolas Pitre[ -z "$$bad_syms" ] || \
1678d7e4cc2SNicolas Pitre  ( echo "following symbols must have non local/private scope:" >&2; \
1688d7e4cc2SNicolas Pitre    echo "$$bad_syms" >&2; rm -f $@; false )
1698d7e4cc2SNicolas Pitre
17060aac932SSascha Hauercheck_for_multiple_zreladdr = \
1714bdad983SRabin Vincentif [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" = "" ]; then \
17260aac932SSascha Hauer	echo 'multiple zreladdrs: $(ZRELADDR)'; \
17360aac932SSascha Hauer	echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \
17460aac932SSascha Hauer	false; \
17560aac932SSascha Hauerfi
17660aac932SSascha Hauer
17781a0bc39SRoy Franzefi-obj-$(CONFIG_EFI_STUB) := $(objtree)/drivers/firmware/efi/libstub/lib.a
17881a0bc39SRoy Franz
17953f67545SMasahiro Yamada$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \
180017f161aSKim Phillips		$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) $(ashldi3) \
18181a0bc39SRoy Franz		$(bswapsdi2) $(efi-obj-y) FORCE
18260aac932SSascha Hauer	@$(check_for_multiple_zreladdr)
1831da177e4SLinus Torvalds	$(call if_changed,ld)
1848d7e4cc2SNicolas Pitre	@$(check_for_bad_syms)
1851da177e4SLinus Torvalds
18653f67545SMasahiro Yamada$(obj)/piggy_data: $(obj)/../Image FORCE
187f57deb0bSMasahiro Yamada	$(call if_changed,$(compress-y))
1881da177e4SLinus Torvalds
18953f67545SMasahiro Yamada$(obj)/piggy.o: $(obj)/piggy_data
1901da177e4SLinus Torvalds
1914486b863SRussell KingCFLAGS_font.o := -Dstatic=
1924486b863SRussell King
1934486b863SRussell King$(obj)/font.c: $(FONTC)
1944486b863SRussell King	$(call cmd,shipped)
1951da177e4SLinus Torvalds
196c7edd7f9SJean-Philippe BruckerAFLAGS_hyp-stub.o := -Wa,-march=armv7-a
197c7edd7f9SJean-Philippe Brucker
198424e5994SDave Martin$(obj)/hyp-stub.S: $(srctree)/arch/$(SRCARCH)/kernel/hyp-stub.S
199424e5994SDave Martin	$(call cmd,shipped)
200