Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 1 | # |
| 2 | # arch/arm64/Makefile |
| 3 | # |
| 4 | # This file is included by the global makefile so that you can add your own |
| 5 | # architecture-specific flags and dependencies. |
| 6 | # |
| 7 | # 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 | |
Greg Hackmann | 1a381d4 | 2018-06-27 12:46:14 -0700 | [diff] [blame] | 13 | LDFLAGS_vmlinux :=--no-undefined -X |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 14 | CPPFLAGS_vmlinux.lds = -DTEXT_OFFSET=$(TEXT_OFFSET) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 15 | GZFLAGS :=-9 |
| 16 | |
Nick Desaulniers | fd9dde6 | 2017-10-27 09:33:41 -0700 | [diff] [blame] | 17 | ifeq ($(CONFIG_RELOCATABLE), y) |
| 18 | # Pass --no-apply-dynamic-relocs to restore pre-binutils-2.27 behaviour |
| 19 | # for relative relocs, since this leads to better Image compression |
| 20 | # with the relocation offsets always being zero. |
| 21 | LDFLAGS_vmlinux += -pie -shared -Bsymbolic \ |
| 22 | $(call ld-option, --no-apply-dynamic-relocs) |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 23 | endif |
| 24 | |
Will Deacon | 6ffe992 | 2016-08-22 11:58:36 +0100 | [diff] [blame] | 25 | ifeq ($(CONFIG_ARM64_ERRATUM_843419),y) |
| 26 | ifeq ($(call ld-option, --fix-cortex-a53-843419),) |
| 27 | $(warning ld does not support --fix-cortex-a53-843419; kernel may be susceptible to erratum) |
| 28 | else |
| 29 | LDFLAGS_vmlinux += --fix-cortex-a53-843419 |
| 30 | endif |
| 31 | endif |
| 32 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 33 | KBUILD_DEFCONFIG := defconfig |
| 34 | |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 35 | # Check for binutils support for specific extensions |
| 36 | lseinstr := $(call as-instr,.arch_extension lse,-DCONFIG_AS_LSE=1) |
| 37 | |
| 38 | ifeq ($(CONFIG_ARM64_LSE_ATOMICS), y) |
| 39 | ifeq ($(lseinstr),) |
| 40 | $(warning LSE atomics not supported by binutils) |
| 41 | endif |
| 42 | endif |
| 43 | |
Marc Zyngier | d91750f | 2017-04-11 17:32:30 +0100 | [diff] [blame] | 44 | ifeq ($(CONFIG_ARM64), y) |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 45 | brokengasinst := $(call as-instr,1:\n.inst 0\n.rept . - 1b\n\nnop\n.endr\n,,-DCONFIG_BROKEN_GAS_INST=1) |
| 46 | |
Marc Zyngier | d91750f | 2017-04-11 17:32:30 +0100 | [diff] [blame] | 47 | ifneq ($(brokengasinst),) |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 48 | $(warning Detected assembler with broken .inst; disassembly will be unreliable) |
Marc Zyngier | d91750f | 2017-04-11 17:32:30 +0100 | [diff] [blame] | 49 | endif |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 50 | endif |
| 51 | |
Greg Hackmann | f3fda57 | 2016-11-29 12:59:14 -0800 | [diff] [blame] | 52 | ifeq ($(cc-name),clang) |
| 53 | KBUILD_CFLAGS += -mno-implicit-float |
| 54 | else |
| 55 | KBUILD_CFLAGS += -mgeneral-regs-only |
| 56 | endif |
| 57 | KBUILD_CFLAGS += $(lseinstr) $(brokengasinst) |
William Cohen | 728dabd | 2016-01-21 22:56:26 -0500 | [diff] [blame] | 58 | KBUILD_CFLAGS += -fno-asynchronous-unwind-tables |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 59 | KBUILD_AFLAGS += $(lseinstr) $(brokengasinst) |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 60 | |
Andrew Pinski | 3d6a7b9 | 2017-09-18 11:20:20 +0100 | [diff] [blame] | 61 | KBUILD_CFLAGS += $(call cc-option,-mabi=lp64) |
| 62 | KBUILD_AFLAGS += $(call cc-option,-mabi=lp64) |
| 63 | |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 64 | ifeq ($(CONFIG_CPU_BIG_ENDIAN), y) |
| 65 | KBUILD_CPPFLAGS += -mbig-endian |
Luc Van Oostenryck | bcde519 | 2017-06-24 17:42:11 +0200 | [diff] [blame] | 66 | CHECKFLAGS += -D__AARCH64EB__ |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 67 | AS += -EB |
Laura Abbott | 96f95a1 | 2018-07-09 13:09:56 -0700 | [diff] [blame] | 68 | # We must use the linux target here, since distributions don't tend to package |
| 69 | # the ELF linker scripts with binutils, and this results in a build failure. |
| 70 | LDFLAGS += -EB -maarch64linuxb |
Michal Marek | cfa88c7 | 2016-08-30 10:31:35 +0200 | [diff] [blame] | 71 | UTS_MACHINE := aarch64_be |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 72 | else |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 73 | KBUILD_CPPFLAGS += -mlittle-endian |
Luc Van Oostenryck | bcde519 | 2017-06-24 17:42:11 +0200 | [diff] [blame] | 74 | CHECKFLAGS += -D__AARCH64EL__ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 75 | AS += -EL |
Laura Abbott | 96f95a1 | 2018-07-09 13:09:56 -0700 | [diff] [blame] | 76 | LDFLAGS += -EL -maarch64linux # See comment above |
Michal Marek | cfa88c7 | 2016-08-30 10:31:35 +0200 | [diff] [blame] | 77 | UTS_MACHINE := aarch64 |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 78 | endif |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 79 | |
Luc Van Oostenryck | 1f2f01b | 2018-05-30 22:48:38 +0200 | [diff] [blame] | 80 | CHECKFLAGS += -D__aarch64__ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 81 | |
Ard Biesheuvel | fd045f6 | 2015-11-24 12:37:35 +0100 | [diff] [blame] | 82 | ifeq ($(CONFIG_ARM64_MODULE_PLTS),y) |
| 83 | KBUILD_LDFLAGS_MODULE += -T $(srctree)/arch/arm64/kernel/module.lds |
| 84 | endif |
| 85 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 86 | # Default value |
| 87 | head-y := arch/arm64/kernel/head.o |
| 88 | |
| 89 | # The byte offset of the kernel image in RAM from the start of RAM. |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 90 | ifeq ($(CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET), y) |
Mark Rutland | aed7eb8 | 2016-05-31 15:58:00 +0100 | [diff] [blame] | 91 | TEXT_OFFSET := $(shell awk "BEGIN {srand(); printf \"0x%06x\n\", \ |
| 92 | int(2 * 1024 * 1024 / (2 ^ $(CONFIG_ARM64_PAGE_SHIFT)) * \ |
| 93 | rand()) * (2 ^ $(CONFIG_ARM64_PAGE_SHIFT))}") |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 94 | else |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 95 | TEXT_OFFSET := 0x00080000 |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 96 | endif |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 97 | |
Andrey Konovalov | 9597e74 | 2018-03-01 18:07:12 +0100 | [diff] [blame] | 98 | # KASAN_SHADOW_OFFSET = VA_START + (1 << (VA_BITS - KASAN_SHADOW_SCALE_SHIFT)) |
| 99 | # - (1 << (64 - KASAN_SHADOW_SCALE_SHIFT)) |
Andrey Ryabinin | 39d114d | 2015-10-12 18:52:58 +0300 | [diff] [blame] | 100 | # in 32-bit arithmetic |
Andrey Konovalov | 9597e74 | 2018-03-01 18:07:12 +0100 | [diff] [blame] | 101 | KASAN_SHADOW_SCALE_SHIFT := 3 |
Andrey Ryabinin | 39d114d | 2015-10-12 18:52:58 +0300 | [diff] [blame] | 102 | KASAN_SHADOW_OFFSET := $(shell printf "0x%08x00000000\n" $$(( \ |
Andrey Konovalov | 9597e74 | 2018-03-01 18:07:12 +0100 | [diff] [blame] | 103 | (0xffffffff & (-1 << ($(CONFIG_ARM64_VA_BITS) - 32))) \ |
| 104 | + (1 << ($(CONFIG_ARM64_VA_BITS) - 32 - $(KASAN_SHADOW_SCALE_SHIFT))) \ |
| 105 | - (1 << (64 - 32 - $(KASAN_SHADOW_SCALE_SHIFT))) )) ) |
Andrey Ryabinin | 39d114d | 2015-10-12 18:52:58 +0300 | [diff] [blame] | 106 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 107 | export TEXT_OFFSET GZFLAGS |
| 108 | |
| 109 | core-y += arch/arm64/kernel/ arch/arm64/mm/ |
Zi Shen Lim | e54bcde | 2014-08-26 21:15:30 -0700 | [diff] [blame] | 110 | core-$(CONFIG_NET) += arch/arm64/net/ |
Marc Zyngier | 6211753 | 2012-12-10 16:41:44 +0000 | [diff] [blame] | 111 | core-$(CONFIG_KVM) += arch/arm64/kvm/ |
Catalin Marinas | 63917f0 | 2013-06-12 16:48:38 +0100 | [diff] [blame] | 112 | core-$(CONFIG_XEN) += arch/arm64/xen/ |
Ard Biesheuvel | 2c98833 | 2014-03-06 16:23:33 +0800 | [diff] [blame] | 113 | core-$(CONFIG_CRYPTO) += arch/arm64/crypto/ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 114 | libs-y := arch/arm64/lib/ $(libs-y) |
Steve Capper | ad08fd4 | 2015-03-16 09:30:39 +0000 | [diff] [blame] | 115 | core-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 116 | |
| 117 | # Default target when executing plain make |
Michal Marek | 0699580 | 2016-11-22 22:34:29 +0100 | [diff] [blame] | 118 | boot := arch/arm64/boot |
Alex Ray | 04df94f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 119 | |
| 120 | ifeq ($(CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE),y) |
Dmitry Shmidt | aaa665c | 2017-03-28 13:30:18 -0700 | [diff] [blame] | 121 | KBUILD_IMAGE := $(boot)/$(subst $\",,$(CONFIG_BUILD_ARM64_APPENDED_KERNEL_IMAGE_NAME)) |
Alex Ray | 04df94f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 122 | else |
Dmitry Shmidt | aaa665c | 2017-03-28 13:30:18 -0700 | [diff] [blame] | 123 | KBUILD_IMAGE := $(boot)/Image.gz |
Alex Ray | 04df94f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 124 | endif |
| 125 | |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 126 | KBUILD_DTBS := dtbs |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 127 | |
Puja Gupta | 989a41a | 2017-03-17 13:27:09 -0700 | [diff] [blame] | 128 | ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y) |
| 129 | export DTC_FLAGS := -@ |
| 130 | endif |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 131 | |
Puja Gupta | 989a41a | 2017-03-17 13:27:09 -0700 | [diff] [blame] | 132 | all: $(KBUILD_DTBS) $(subst $\",,$(CONFIG_BUILD_ARM64_APPENDED_KERNEL_IMAGE_NAME)) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 133 | |
Olof Johansson | 0723c05 | 2015-07-16 21:26:16 +0100 | [diff] [blame] | 134 | Image: vmlinux |
| 135 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 136 | |
Masahiro Yamada | 9ca4e58 | 2016-06-21 10:44:00 +0900 | [diff] [blame] | 137 | Image.%: Image |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 138 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 139 | |
Masahiro Yamada | 8684fa3 | 2016-02-19 15:05:50 +0900 | [diff] [blame] | 140 | zinstall install: |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 141 | $(Q)$(MAKE) $(build)=$(boot) $@ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 142 | |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 143 | %.dtb: scripts |
| 144 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
| 145 | |
Robert Richter | 862f464 | 2014-08-29 14:17:02 +0200 | [diff] [blame] | 146 | PHONY += dtbs dtbs_install |
Robert Richter | 9fb5e53 | 2014-09-03 15:29:24 +0200 | [diff] [blame] | 147 | |
| 148 | dtbs: prepare scripts |
Robert Richter | d38726c | 2014-09-03 15:54:55 +0200 | [diff] [blame] | 149 | $(Q)$(MAKE) $(build)=$(boot)/dts |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 150 | |
Robert Richter | 9fb5e53 | 2014-09-03 15:29:24 +0200 | [diff] [blame] | 151 | dtbs_install: |
| 152 | $(Q)$(MAKE) $(dtbinst)=$(boot)/dts |
| 153 | |
Alex Ray | 04df94f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 154 | Image.gz-dtb: vmlinux scripts dtbs |
| 155 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 156 | |
Kyle McMartin | 3c01742 | 2013-06-16 20:32:44 +0100 | [diff] [blame] | 157 | PHONY += vdso_install |
| 158 | vdso_install: |
| 159 | $(Q)$(MAKE) $(build)=arch/arm64/kernel/vdso $@ |
| 160 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 161 | # We use MRPROPER_FILES and CLEAN_FILES now |
| 162 | archclean: |
| 163 | $(Q)$(MAKE) $(clean)=$(boot) |
Jungseok Lee | c7c52e4 | 2015-01-19 14:57:00 +0000 | [diff] [blame] | 164 | $(Q)$(MAKE) $(clean)=$(boot)/dts |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 165 | |
Kevin Brodsky | a66649d | 2016-05-12 17:39:15 +0100 | [diff] [blame] | 166 | # We need to generate vdso-offsets.h before compiling certain files in kernel/. |
| 167 | # In order to do that, we should use the archprepare target, but we can't since |
| 168 | # asm-offsets.h is included in some files used to generate vdso-offsets.h, and |
| 169 | # asm-offsets.h is built in prepare0, for which archprepare is a dependency. |
| 170 | # Therefore we need to generate the header after prepare0 has been made, hence |
| 171 | # this hack. |
| 172 | prepare: vdso_prepare |
| 173 | vdso_prepare: prepare0 |
| 174 | $(Q)$(MAKE) $(build)=arch/arm64/kernel/vdso include/generated/vdso-offsets.h |
| 175 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 176 | define archhelp |
| 177 | echo '* Image.gz - Compressed kernel image (arch/$(ARCH)/boot/Image.gz)' |
| 178 | echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 179 | echo '* dtbs - Build device tree blobs for enabled boards' |
Robert Richter | 862f464 | 2014-08-29 14:17:02 +0200 | [diff] [blame] | 180 | echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)' |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 181 | echo ' install - Install uncompressed kernel' |
| 182 | echo ' zinstall - Install compressed kernel' |
| 183 | echo ' Install using (your) ~/bin/installkernel or' |
| 184 | echo ' (distribution) /sbin/installkernel or' |
| 185 | echo ' install to $$(INSTALL_PATH) and run lilo' |
| 186 | endef |