blob: 77172d555c7e722fce05a04022cde085a7aecb42 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# arch/arm/Makefile
3#
Paul Smith4f193362006-03-05 17:14:10 -05004# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
Linus Torvalds1da177e2005-04-16 15:20:36 -07007# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive
9# for more details.
10#
11# Copyright (C) 1995-2001 by Russell King
12
Nathan Chancellor0cda9bc2020-12-08 01:34:16 +010013LDFLAGS_vmlinux := --no-undefined -X --pic-veneer -z norelro
Catalin Marinas26584852009-05-30 14:00:18 +010014ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
15LDFLAGS_vmlinux += --be8
Cao jin336303a2017-10-09 15:11:45 +080016KBUILD_LDFLAGS_MODULE += --be8
Catalin Marinas26584852009-05-30 14:00:18 +010017endif
Sam Ravnborg51b563f2009-09-20 12:28:22 +020018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019GZFLAGS :=-9
Sam Ravnborga0f97e02007-10-14 22:21:35 +020020#KBUILD_CFLAGS +=-pipe
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Michal Marekbd365592010-08-14 23:56:21 +010022# Never generate .eh_frame
23KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
24
Arnd Bergmann32872c02015-12-18 23:44:23 +010025# This should work on most of the modern platforms
26KBUILD_DEFCONFIG := multi_v7_defconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +020028# defines filename extension depending memory management type.
Hyok S. Choif8c07de2006-03-27 15:14:19 +010029ifeq ($(CONFIG_MMU),)
30MMUEXT := -nommu
Will Deacone91b36e2012-12-04 12:56:44 +010031KBUILD_CFLAGS += $(call cc-option,-mno-unaligned-access)
Hyok S. Choif8c07de2006-03-27 15:14:19 +010032endif
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034ifeq ($(CONFIG_FRAME_POINTER),y)
Nathan Huckleberry6dc5fd92019-08-22 21:26:53 +010035KBUILD_CFLAGS +=-fno-omit-frame-pointer
36ifeq ($(CONFIG_CC_IS_GCC),y)
37KBUILD_CFLAGS += -mapcs -mno-sched-prolog
38endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039endif
40
41ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
Sam Ravnborg06c50402007-10-15 22:17:25 +020042KBUILD_CPPFLAGS += -mbig-endian
Luc Van Oostenryckff0c6ee2017-10-31 18:19:15 +010043CHECKFLAGS += -D__ARMEB__
Masahiro Yamadad503ac52018-08-24 08:20:39 +090044KBUILD_LDFLAGS += -EB
Linus Torvalds1da177e2005-04-16 15:20:36 -070045else
Sam Ravnborg06c50402007-10-15 22:17:25 +020046KBUILD_CPPFLAGS += -mlittle-endian
Luc Van Oostenryckff0c6ee2017-10-31 18:19:15 +010047CHECKFLAGS += -D__ARMEL__
Masahiro Yamadad503ac52018-08-24 08:20:39 +090048KBUILD_LDFLAGS += -EL
Linus Torvalds1da177e2005-04-16 15:20:36 -070049endif
50
Ard Biesheuvela0772242015-09-03 13:24:40 +010051#
52# The Scalar Replacement of Aggregates (SRA) optimization pass in GCC 4.9 and
53# later may result in code being generated that handles signed short and signed
54# char struct members incorrectly. So disable it.
55# (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65932)
56#
57KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059# This selects which instruction set is used.
60# Note that GCC does not numerically define an architecture version
61# macro, but instead defines a whole series of macros which makes
62# testing for a specific architecture or later rather impossible.
Arnd Bergmann418ace92021-11-06 19:42:29 +010063arch-$(CONFIG_CPU_32v7M) =-D__LINUX_ARM_ARCH__=7 -march=armv7-m
64arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 -march=armv7-a
65arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 -march=armv6
Catalin Marinas23688e992007-05-08 22:45:26 +010066# Only override the compiler option if ARMv6. The ARMv6K extensions are
67# always available in ARMv7
68ifeq ($(CONFIG_CPU_32v6),y)
Arnd Bergmann418ace92021-11-06 19:42:29 +010069arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 -march=armv6k
Catalin Marinas23688e992007-05-08 22:45:26 +010070endif
Arnd Bergmann418ace92021-11-06 19:42:29 +010071arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 -march=armv5te
Douglas Anderson1b213762013-06-27 04:32:06 +010072arch-$(CONFIG_CPU_32v4T) =-D__LINUX_ARM_ARCH__=4 -march=armv4t
73arch-$(CONFIG_CPU_32v4) =-D__LINUX_ARM_ARCH__=4 -march=armv4
Jason A. Donenfeld8403bcb2018-10-02 15:01:24 +010074arch-$(CONFIG_CPU_32v3) =-D__LINUX_ARM_ARCH__=3 -march=armv3m
Douglas Anderson1b213762013-06-27 04:32:06 +010075
76# Evaluate arch cc-option calls now
77arch-y := $(arch-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79# This selects how we optimise for the processor.
Douglas Anderson1b213762013-06-27 04:32:06 +010080tune-$(CONFIG_CPU_ARM7TDMI) =-mtune=arm7tdmi
81tune-$(CONFIG_CPU_ARM720T) =-mtune=arm7tdmi
82tune-$(CONFIG_CPU_ARM740T) =-mtune=arm7tdmi
83tune-$(CONFIG_CPU_ARM9TDMI) =-mtune=arm9tdmi
84tune-$(CONFIG_CPU_ARM940T) =-mtune=arm9tdmi
Arnd Bergmann418ace92021-11-06 19:42:29 +010085tune-$(CONFIG_CPU_ARM946E) =-mtune=arm9e
Douglas Anderson1b213762013-06-27 04:32:06 +010086tune-$(CONFIG_CPU_ARM920T) =-mtune=arm9tdmi
87tune-$(CONFIG_CPU_ARM922T) =-mtune=arm9tdmi
88tune-$(CONFIG_CPU_ARM925T) =-mtune=arm9tdmi
89tune-$(CONFIG_CPU_ARM926T) =-mtune=arm9tdmi
90tune-$(CONFIG_CPU_FA526) =-mtune=arm9tdmi
91tune-$(CONFIG_CPU_SA110) =-mtune=strongarm110
92tune-$(CONFIG_CPU_SA1100) =-mtune=strongarm1100
Arnd Bergmann418ace92021-11-06 19:42:29 +010093tune-$(CONFIG_CPU_XSCALE) =-mtune=xscale
94tune-$(CONFIG_CPU_XSC3) =-mtune=xscale
95tune-$(CONFIG_CPU_FEROCEON) =-mtune=xscale
96tune-$(CONFIG_CPU_V6) =-mtune=arm1136j-s
97tune-$(CONFIG_CPU_V6K) =-mtune=arm1136j-s
Douglas Anderson1b213762013-06-27 04:32:06 +010098
99# Evaluate tune cc-option calls now
100tune-y := $(tune-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Nicolas Pitre704bdda2006-01-14 16:33:50 +0000102ifeq ($(CONFIG_AEABI),y)
Stefan Agner22905a22018-05-08 22:49:49 +0100103CFLAGS_ABI :=-mabi=aapcs-linux -mfpu=vfp
Nicolas Pitre704bdda2006-01-14 16:33:50 +0000104else
Catalin Marinasc28a8142005-06-30 17:04:14 +0100105CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,)
Nicolas Pitre704bdda2006-01-14 16:33:50 +0000106endif
107
Catalin Marinasadf8b372009-02-12 13:56:34 +0100108ifeq ($(CONFIG_ARM_UNWIND),y)
109CFLAGS_ABI +=-funwind-tables
110endif
111
Nathan Chancellorb0fe66c2019-09-04 01:13:15 +0100112ifeq ($(CONFIG_CC_IS_CLANG),y)
113CFLAGS_ABI += -meabi gnu
114endif
115
Ard Biesheuvel50596b72021-09-18 10:44:37 +0200116ifeq ($(CONFIG_CURRENT_POINTER_IN_TPIDRURO),y)
117CFLAGS_ABI += -mtp=cp15
118endif
119
Nicolas Pitre75fea302017-11-29 07:52:52 +0100120# Accept old syntax despite ".syntax unified"
121AFLAGS_NOWARN :=$(call as-option,-Wa$(comma)-mno-warn-deprecated,-Wa$(comma)-W)
122
Catalin Marinas16c79652009-07-24 12:33:02 +0100123ifeq ($(CONFIG_THUMB2_KERNEL),y)
Russell Kingb752bb42019-05-15 23:17:17 +0100124CFLAGS_ISA :=-mthumb -Wa,-mimplicit-it=always $(AFLAGS_NOWARN)
Arnd Bergmann91802a82012-08-10 11:12:20 +0000125AFLAGS_ISA :=$(CFLAGS_ISA) -Wa$(comma)-mthumb
Arnd Bergmann91802a82012-08-10 11:12:20 +0000126else
Nicolas Pitre75fea302017-11-29 07:52:52 +0100127CFLAGS_ISA :=$(call cc-option,-marm,) $(AFLAGS_NOWARN)
Arnd Bergmann91802a82012-08-10 11:12:20 +0000128AFLAGS_ISA :=$(CFLAGS_ISA)
Catalin Marinas16c79652009-07-24 12:33:02 +0100129endif
130
Nicolas Pitre704bdda2006-01-14 16:33:50 +0000131# Need -Uarm for gcc < 3.x
Arnd Bergmann91802a82012-08-10 11:12:20 +0000132KBUILD_CFLAGS +=$(CFLAGS_ABI) $(CFLAGS_ISA) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm
133KBUILD_AFLAGS +=$(CFLAGS_ABI) $(AFLAGS_ISA) $(arch-y) $(tune-y) -include asm/unified.h -msoft-float
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Luc Van Oostenryck1f2f01b2018-05-30 22:48:38 +0200135CHECKFLAGS += -D__arm__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#Default value
Thomas Gleixner5290dc22012-05-03 09:02:50 +0000138head-y := arch/arm/kernel/head$(MMUEXT).o
Daniel Thompson10508b22014-07-08 13:50:50 +0100139
140# Text offset. This list is sorted numerically by address in order to
141# provide a means to avoid/resolve conflicts in multi-arch kernels.
Russell King83dfeed2018-04-03 12:02:28 +0100142# Note: the 32kB below this value is reserved for use by the kernel
143# during boot, and this offset is critical to the functioning of
144# kexec-tools.
Russell King9d4f13e2006-01-03 17:28:33 +0000145textofs-y := 0x00008000
Vasily Khoruzhickc4761b62010-05-11 09:55:09 +0300146# We don't want the htc bootloader to corrupt kernel during resume
147textofs-$(CONFIG_PM_H1940) := 0x00108000
Andreas Färber86aeee42017-10-05 03:59:15 +0200148# RTD1195 has Boot ROM at start of address space
149textofs-$(CONFIG_ARCH_REALTEK) := 0x00108000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150# SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory
Russell Kingb4175b82009-04-26 14:22:29 +0100151ifeq ($(CONFIG_ARCH_SA1100),y)
152textofs-$(CONFIG_SA1111) := 0x00208000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153endif
Christian Lamparterf125e2d2020-01-06 14:57:15 +0100154textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
Stephen Boyd9e775ad2011-08-12 00:14:28 +0100155textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
156textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
Martin Blumenstingld850f3e2017-09-17 18:45:21 +0200157textofs-$(CONFIG_ARCH_MESON) := 0x00208000
Anders Berg1d22924e2014-05-23 11:08:35 +0200158textofs-$(CONFIG_ARCH_AXXIA) := 0x00308000
Russell Kingb4175b82009-04-26 14:22:29 +0100159
160# Machine directory name. This list is sorted alphanumerically
161# by CONFIG_* macro name.
Andreas Färber6bb85362017-02-15 11:03:22 +0100162machine-$(CONFIG_ARCH_ACTIONS) += actions
Tsahee Zidenberg445d9b32015-03-12 13:53:00 +0200163machine-$(CONFIG_ARCH_ALPINE) += alpine
Lars Persson590b4602016-02-11 17:06:19 +0100164machine-$(CONFIG_ARCH_ARTPEC) += artpec
Joel Stanley87dfe492019-08-21 15:25:27 +0930165machine-$(CONFIG_ARCH_ASPEED) += aspeed
Rob Herring387798b2012-09-06 13:41:12 -0500166machine-$(CONFIG_ARCH_AT91) += at91
Anders Berg1d22924e2014-05-23 11:08:35 +0200167machine-$(CONFIG_ARCH_AXXIA) += axxia
Christian Daudt8ac49e02012-11-19 09:46:10 -0800168machine-$(CONFIG_ARCH_BCM) += bcm
Sebastian Hesselbarth1c37fa12013-09-09 14:36:19 +0200169machine-$(CONFIG_ARCH_BERLIN) += berlin
Rob Herring387798b2012-09-06 13:41:12 -0500170machine-$(CONFIG_ARCH_CLPS711X) += clps711x
171machine-$(CONFIG_ARCH_CNS3XXX) += cns3xxx
172machine-$(CONFIG_ARCH_DAVINCI) += davinci
Baruch Siach16083d42015-03-09 11:05:14 +0200173machine-$(CONFIG_ARCH_DIGICOLOR) += digicolor
Rob Herring387798b2012-09-06 13:41:12 -0500174machine-$(CONFIG_ARCH_DOVE) += dove
Rob Herring387798b2012-09-06 13:41:12 -0500175machine-$(CONFIG_ARCH_EP93XX) += ep93xx
Russell King6eddaca2013-07-27 00:45:45 +0100176machine-$(CONFIG_ARCH_EXYNOS) += exynos
Uwe Kleine-Königc3c963e2014-09-24 09:01:19 +0100177machine-$(CONFIG_ARCH_FOOTBRIDGE) += footbridge
Rob Herring387798b2012-09-06 13:41:12 -0500178machine-$(CONFIG_ARCH_GEMINI) += gemini
Rob Herring387798b2012-09-06 13:41:12 -0500179machine-$(CONFIG_ARCH_HIGHBANK) += highbank
Haojian Zhuang7685b122014-04-01 11:01:09 +0800180machine-$(CONFIG_ARCH_HISI) += hisi
Rob Herring387798b2012-09-06 13:41:12 -0500181machine-$(CONFIG_ARCH_INTEGRATOR) += integrator
Rob Herring387798b2012-09-06 13:41:12 -0500182machine-$(CONFIG_ARCH_IOP32X) += iop32x
Rob Herring387798b2012-09-06 13:41:12 -0500183machine-$(CONFIG_ARCH_IXP4XX) += ixp4xx
Russell King6eddaca2013-07-27 00:45:45 +0100184machine-$(CONFIG_ARCH_KEYSTONE) += keystone
Joachim Eastwoode8d235d2015-05-12 00:00:47 +0200185machine-$(CONFIG_ARCH_LPC18XX) += lpc18xx
Rob Herring387798b2012-09-06 13:41:12 -0500186machine-$(CONFIG_ARCH_LPC32XX) += lpc32xx
Carlo Caione3b8f5032014-09-10 22:16:59 +0200187machine-$(CONFIG_ARCH_MESON) += meson
Rob Herring387798b2012-09-06 13:41:12 -0500188machine-$(CONFIG_ARCH_MMP) += mmp
Vladimir Murzin18471192016-04-25 09:49:13 +0100189machine-$(CONFIG_ARCH_MPS2) += vexpress
Jonas Jensen17723fd32013-12-18 13:58:45 +0100190machine-$(CONFIG_ARCH_MOXART) += moxart
Rob Herring387798b2012-09-06 13:41:12 -0500191machine-$(CONFIG_ARCH_MV78XX0) += mv78xx0
Russell King6eddaca2013-07-27 00:45:45 +0100192machine-$(CONFIG_ARCH_MVEBU) += mvebu
Rob Herring387798b2012-09-06 13:41:12 -0500193machine-$(CONFIG_ARCH_MXC) += imx
Matthias Bruggerf682a212014-05-13 01:06:13 +0200194machine-$(CONFIG_ARCH_MEDIATEK) += mediatek
Sugaya Taichi9fb29c72019-02-27 13:52:33 +0900195machine-$(CONFIG_ARCH_MILBEAUT) += milbeaut
Rob Herring387798b2012-09-06 13:41:12 -0500196machine-$(CONFIG_ARCH_MXS) += mxs
Daniel Palmer312b62b2020-07-10 18:45:38 +0900197machine-$(CONFIG_ARCH_MSTARV7) += mstar
Rob Herring387798b2012-09-06 13:41:12 -0500198machine-$(CONFIG_ARCH_NOMADIK) += nomadik
Brendan Higgins7bffa142017-08-16 12:18:39 -0700199machine-$(CONFIG_ARCH_NPCM) += npcm
Daniel Tang9851ca52013-06-11 18:40:17 +1000200machine-$(CONFIG_ARCH_NSPIRE) += nspire
Neil Armstronge330ea52016-09-09 12:23:45 +0200201machine-$(CONFIG_ARCH_OXNAS) += oxnas
Rob Herring387798b2012-09-06 13:41:12 -0500202machine-$(CONFIG_ARCH_OMAP1) += omap1
203machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2
204machine-$(CONFIG_ARCH_ORION5X) += orion5x
Rob Herring387798b2012-09-06 13:41:12 -0500205machine-$(CONFIG_ARCH_PXA) += pxa
Kumar Gala8fc1b0f2014-01-21 17:14:10 -0600206machine-$(CONFIG_ARCH_QCOM) += qcom
Andreas Färber78e3dbc12018-12-18 20:32:30 +0530207machine-$(CONFIG_ARCH_RDA) += rda
Andreas Färber86aeee42017-10-05 03:59:15 +0200208machine-$(CONFIG_ARCH_REALTEK) += realtek
Rob Herring387798b2012-09-06 13:41:12 -0500209machine-$(CONFIG_ARCH_REALVIEW) += realview
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +0200210machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
Rob Herring387798b2012-09-06 13:41:12 -0500211machine-$(CONFIG_ARCH_RPC) += rpc
Arnd Bergmann71b91142019-09-02 17:47:55 +0200212machine-$(CONFIG_PLAT_SAMSUNG) += s3c
Rob Herring387798b2012-09-06 13:41:12 -0500213machine-$(CONFIG_ARCH_S5PV210) += s5pv210
Rob Herring387798b2012-09-06 13:41:12 -0500214machine-$(CONFIG_ARCH_SA1100) += sa1100
Geert Uytterhoevend9be9ce2018-04-20 15:28:27 +0200215machine-$(CONFIG_ARCH_RENESAS) += shmobile
Krzysztof Kozlowski910499e2021-03-11 16:25:32 +0100216machine-$(CONFIG_ARCH_INTEL_SOCFPGA) += socfpga
Russell King6eddaca2013-07-27 00:45:45 +0100217machine-$(CONFIG_ARCH_STI) += sti
Maxime Coquelin9b799b72015-05-09 09:53:54 +0200218machine-$(CONFIG_ARCH_STM32) += stm32
Russell King6eddaca2013-07-27 00:45:45 +0100219machine-$(CONFIG_ARCH_SUNXI) += sunxi
Rob Herring387798b2012-09-06 13:41:12 -0500220machine-$(CONFIG_ARCH_TEGRA) += tegra
Rob Herring387798b2012-09-06 13:41:12 -0500221machine-$(CONFIG_ARCH_U8500) += ux500
222machine-$(CONFIG_ARCH_VERSATILE) += versatile
223machine-$(CONFIG_ARCH_VEXPRESS) += vexpress
224machine-$(CONFIG_ARCH_VT8500) += vt8500
Rob Herring387798b2012-09-06 13:41:12 -0500225machine-$(CONFIG_ARCH_ZYNQ) += zynq
Russell King6eddaca2013-07-27 00:45:45 +0100226machine-$(CONFIG_PLAT_SPEAR) += spear
Russell Kingb4175b82009-04-26 14:22:29 +0100227
228# Platform directory name. This list is sorted alphanumerically
229# by CONFIG_* macro name.
Rob Herring387798b2012-09-06 13:41:12 -0500230plat-$(CONFIG_ARCH_OMAP) += omap
Rob Herring387798b2012-09-06 13:41:12 -0500231plat-$(CONFIG_PLAT_ORION) += orion
232plat-$(CONFIG_PLAT_PXA) += pxa
Rob Herring387798b2012-09-06 13:41:12 -0500233plat-$(CONFIG_PLAT_VERSATILE) += versatile
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Russell King9d4f13e2006-01-03 17:28:33 +0000235# The byte offset of the kernel image in RAM from the start of RAM.
236TEXT_OFFSET := $(textofs-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Russell Kingf44f82e2008-08-02 19:36:14 +0100238# The first directory contains additional information for the boot setup code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239ifneq ($(machine-y),)
Russell Kingf44f82e2008-08-02 19:36:14 +0100240MACHINE := arch/arm/mach-$(word 1,$(machine-y))/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241else
242MACHINE :=
243endif
Rob Herring387798b2012-09-06 13:41:12 -0500244ifeq ($(CONFIG_ARCH_MULTIPLATFORM),y)
245MACHINE :=
246endif
Ben Dooksa21765a2007-02-11 18:31:01 +0100247
Russell Kingf44f82e2008-08-02 19:36:14 +0100248machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
Tomasz Figaaa425872014-07-03 13:17:12 +0200249platdirs := $(patsubst %,arch/arm/plat-%/,$(sort $(plat-y)))
Russell Kingf44f82e2008-08-02 19:36:14 +0100250
Rob Herring387798b2012-09-06 13:41:12 -0500251ifneq ($(CONFIG_ARCH_MULTIPLATFORM),y)
Arnd Bergmannde8a06f2016-06-09 09:50:28 +0200252ifneq ($(CONFIG_ARM_SINGLE_ARMV7M),y)
Russell Kingf44f82e2008-08-02 19:36:14 +0100253KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs) $(platdirs))
254endif
Rob Herring387798b2012-09-06 13:41:12 -0500255endif
Russell Kingf44f82e2008-08-02 19:36:14 +0100256
Hyok S. Choif8c07de2006-03-27 15:14:19 +0100257export TEXT_OFFSET GZFLAGS MMUEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Nicolas Pitrec62d0f22010-09-01 09:37:05 -0400259# If we have a machine-specific directory, then include it in the build.
Nicolas Pitrec62d0f22010-09-01 09:37:05 -0400260core-y += $(machdirs) $(platdirs)
261
Masahiro Yamada2a58e142019-07-18 17:35:23 +0100262# For cleaning
263core- += $(patsubst %,arch/arm/mach-%/, $(machine-))
264core- += $(patsubst %,arch/arm/plat-%/, $(plat-))
265
Nicolas Pitre30c2f90b2005-11-04 17:17:30 +0000266libs-y := arch/arm/lib/ $(libs-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268# Default target when executing plain make
Michal Marek152e6742016-11-22 22:34:30 +0100269boot := arch/arm/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270ifeq ($(CONFIG_XIP_KERNEL),y)
Michal Marek152e6742016-11-22 22:34:30 +0100271KBUILD_IMAGE := $(boot)/xipImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272else
Michal Marek152e6742016-11-22 22:34:30 +0100273KBUILD_IMAGE := $(boot)/zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274endif
275
Ard Biesheuvel189af462018-12-06 09:32:57 +0100276ifeq ($(CONFIG_STACKPROTECTOR_PER_TASK),y)
277prepare: stack_protector_prepare
278stack_protector_prepare: prepare0
Ard Biesheuvel89604522020-02-18 09:15:34 +0100279 $(eval SSP_PLUGIN_CFLAGS := \
Ard Biesheuvel189af462018-12-06 09:32:57 +0100280 -fplugin-arg-arm_ssp_per_task_plugin-offset=$(shell \
Ard Biesheuveldfbdcda2021-09-18 10:44:34 +0200281 awk '{if ($$2 == "TSK_STACK_CANARY") print $$3;}'\
Ard Biesheuvel189af462018-12-06 09:32:57 +0100282 include/generated/asm-offsets.h))
Ard Biesheuvel89604522020-02-18 09:15:34 +0100283 $(eval KBUILD_CFLAGS += $(SSP_PLUGIN_CFLAGS))
284 $(eval GCC_PLUGINS_CFLAGS += $(SSP_PLUGIN_CFLAGS))
Ard Biesheuvel189af462018-12-06 09:32:57 +0100285endif
286
Rob Herring37c8a5f2018-01-10 15:19:37 -0600287all: $(notdir $(KBUILD_IMAGE))
Russell King51342d72006-10-29 12:51:05 +0000288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Russell King96a8fae2016-10-18 19:57:01 +0100290archheaders:
291 $(Q)$(MAKE) $(build)=arch/arm/tools uapi
292
Sam Ravnborg66206532009-04-20 19:59:58 +0200293archprepare:
Russell King4e2648db2016-10-18 20:11:23 +0100294 $(Q)$(MAKE) $(build)=arch/arm/tools kapi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296# Convert bzImage to zImage
297bzImage: zImage
298
Robert Richter19514fc2013-07-17 18:05:06 +0200299BOOT_TARGETS = zImage Image xipImage bootpImage uImage
300INSTALL_TARGETS = zinstall uinstall install
301
302PHONY += bzImage $(BOOT_TARGETS) $(INSTALL_TARGETS)
303
Masahiro Yamada3939f332015-08-17 04:03:33 +0100304bootpImage uImage: zImage
305zImage: Image
306
Robert Richter19514fc2013-07-17 18:05:06 +0200307$(BOOT_TARGETS): vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
Masahiro Yamadac6bbfbb72016-05-30 03:01:23 +0100309 @$(kecho) ' Kernel: $(boot)/$@ is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Robert Richter19514fc2013-07-17 18:05:06 +0200311$(INSTALL_TARGETS):
Masahiro Yamadad7bcc5e2021-07-29 15:03:51 +0100312 $(CONFIG_SHELL) $(srctree)/$(boot)/install.sh "$(KERNELRELEASE)" \
313 $(boot)/$(patsubst %install,%Image,$@) System.map "$(INSTALL_PATH)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Nathan Lynche5b61de2015-03-25 19:16:05 +0100315PHONY += vdso_install
316vdso_install:
317ifeq ($(CONFIG_VDSO),y)
318 $(Q)$(MAKE) $(build)=arch/arm/vdso $@
319endif
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321# My testing targets (bypasses dependencies)
322bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325define archhelp
326 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
327 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
328 echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)'
Uwe Kleine-Königa4f14ba2008-03-06 16:22:17 +0100329 echo ' uImage - U-Boot wrapped zImage'
Daniel Tangc01c5a52013-05-03 08:13:55 +0100330 echo ' bootpImage - Combined zImage and initial RAM disk'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 echo ' (supply initrd image via make variable INITRD=<path>)'
332 echo ' install - Install uncompressed kernel'
333 echo ' zinstall - Install compressed kernel'
Russell Kinga65d2922011-01-08 16:18:51 +0000334 echo ' uinstall - Install U-Boot wrapped compressed kernel'
Sam Ravnborgcaa27b62009-07-20 21:37:11 +0200335 echo ' Install using (your) ~/bin/$(INSTALLKERNEL) or'
336 echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 echo ' install to $$(INSTALL_PATH) and run lilo'
Nathan Lynche5b61de2015-03-25 19:16:05 +0100338 echo ' vdso_install - Install unstripped vdso.so to $$(INSTALL_MOD_PATH)/vdso'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339endef