1# SPDX-License-Identifier: GPL-2.0 2# 3# Author: Huacai Chen <chenhuacai@loongson.cn> 4# Copyright (C) 2020-2022 Loongson Technology Corporation Limited 5 6boot := arch/loongarch/boot 7 8KBUILD_DEFCONFIG := loongson3_defconfig 9KBUILD_DTBS := dtbs 10 11image-name-y := vmlinux 12image-name-$(CONFIG_EFI_ZBOOT) := vmlinuz 13 14ifndef CONFIG_EFI_STUB 15KBUILD_IMAGE := $(boot)/vmlinux.elf 16else 17KBUILD_IMAGE := $(boot)/$(image-name-y).efi 18endif 19 20# 21# Select the object file format to substitute into the linker script. 22# 2364bit-tool-archpref = loongarch64 2432bit-bfd = elf32-loongarch 2564bit-bfd = elf64-loongarch 2632bit-emul = elf32loongarch 2764bit-emul = elf64loongarch 28 29ifdef CONFIG_DYNAMIC_FTRACE 30KBUILD_CPPFLAGS += -DCC_USING_PATCHABLE_FUNCTION_ENTRY 31CC_FLAGS_FTRACE := -fpatchable-function-entry=2 32endif 33 34ifdef CONFIG_64BIT 35tool-archpref = $(64bit-tool-archpref) 36UTS_MACHINE := loongarch64 37endif 38 39ifneq ($(SUBARCH),$(ARCH)) 40 ifeq ($(CROSS_COMPILE),) 41 CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(tool-archpref)-unknown-linux-gnu-) 42 endif 43endif 44 45ifdef CONFIG_64BIT 46ld-emul = $(64bit-emul) 47cflags-y += -mabi=lp64s 48endif 49 50cflags-y += -pipe -msoft-float 51LDFLAGS_vmlinux += -static -n -nostdlib 52 53# When the assembler supports explicit relocation hint, we must use it. 54# GCC may have -mexplicit-relocs off by default if it was built with an old 55# assembler, so we force it via an option. 56# 57# When the assembler does not supports explicit relocation hint, we can't use 58# it. Disable it if the compiler supports it. 59# 60# The combination of a "new" assembler and "old" GCC is not supported, given 61# the rarity of this combo and the extra complexity needed to make it work. 62# Either upgrade the compiler or downgrade the assembler; the build will error 63# out if it is the case (by probing for the model attribute; all supported 64# compilers in this case would have support). 65# 66# Also, -mdirect-extern-access is useful in case of building with explicit 67# relocs, for avoiding unnecessary GOT accesses. It is harmless to not have 68# support though. 69ifdef CONFIG_AS_HAS_EXPLICIT_RELOCS 70cflags-y += $(call cc-option,-mexplicit-relocs) 71KBUILD_CFLAGS_KERNEL += $(call cc-option,-mdirect-extern-access) 72KBUILD_CFLAGS_KERNEL += $(call cc-option,-fdirect-access-external-data) 73KBUILD_AFLAGS_MODULE += $(call cc-option,-fno-direct-access-external-data) 74KBUILD_CFLAGS_MODULE += $(call cc-option,-fno-direct-access-external-data) 75KBUILD_AFLAGS_MODULE += $(call cc-option,-mno-relax) $(call cc-option,-Wa$(comma)-mno-relax) 76KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax) $(call cc-option,-Wa$(comma)-mno-relax) 77else 78cflags-y += $(call cc-option,-mno-explicit-relocs) 79KBUILD_AFLAGS_KERNEL += -Wa,-mla-global-with-pcrel 80KBUILD_CFLAGS_KERNEL += -Wa,-mla-global-with-pcrel 81KBUILD_AFLAGS_MODULE += -Wa,-mla-global-with-abs 82KBUILD_CFLAGS_MODULE += -fplt -Wa,-mla-global-with-abs,-mla-local-with-abs 83endif 84 85KBUILD_RUSTFLAGS_MODULE += -Crelocation-model=pic 86 87ifeq ($(CONFIG_RELOCATABLE),y) 88KBUILD_CFLAGS_KERNEL += -fPIE 89KBUILD_RUSTFLAGS_KERNEL += -Crelocation-model=pie 90LDFLAGS_vmlinux += -static -pie --no-dynamic-linker -z notext $(call ld-option, --apply-dynamic-relocs) 91endif 92 93cflags-y += $(call cc-option, -mno-check-zero-division) 94 95ifndef CONFIG_KASAN 96cflags-y += -fno-builtin-memcpy -fno-builtin-memmove -fno-builtin-memset 97endif 98 99load-y = 0x9000000000200000 100bootvars-y = VMLINUX_LOAD_ADDRESS=$(load-y) 101 102drivers-$(CONFIG_PCI) += arch/loongarch/pci/ 103 104KBUILD_AFLAGS += $(cflags-y) 105KBUILD_CFLAGS += $(cflags-y) 106KBUILD_CPPFLAGS += -DVMLINUX_LOAD_ADDRESS=$(load-y) 107 108# This is required to get dwarf unwinding tables into .debug_frame 109# instead of .eh_frame so we don't discard them. 110KBUILD_CFLAGS += -fno-asynchronous-unwind-tables 111 112ifdef CONFIG_ARCH_STRICT_ALIGN 113# Don't emit unaligned accesses. 114# Not all LoongArch cores support unaligned access, and as kernel we can't 115# rely on others to provide emulation for these accesses. 116KBUILD_CFLAGS += $(call cc-option,-mstrict-align) 117else 118# Optimise for performance on hardware supports unaligned access. 119KBUILD_CFLAGS += $(call cc-option,-mno-strict-align) 120endif 121 122KBUILD_CFLAGS += -isystem $(shell $(CC) -print-file-name=include) 123 124KBUILD_LDFLAGS += -m $(ld-emul) 125 126ifdef need-compiler 127CHECKFLAGS += $(shell $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ 128 grep -E -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \ 129 sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g') 130endif 131 132libs-y += arch/loongarch/lib/ 133libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a 134 135drivers-y += arch/loongarch/crypto/ 136 137# suspend and hibernation support 138drivers-$(CONFIG_PM) += arch/loongarch/power/ 139 140ifeq ($(KBUILD_EXTMOD),) 141prepare: vdso_prepare 142vdso_prepare: prepare0 143 $(Q)$(MAKE) $(build)=arch/loongarch/vdso include/generated/vdso-offsets.h 144endif 145 146vdso-install-y += arch/loongarch/vdso/vdso.so.dbg 147 148all: $(notdir $(KBUILD_IMAGE)) $(KBUILD_DTBS) 149 150vmlinuz.efi: vmlinux.efi 151 152vmlinux.elf vmlinux.efi vmlinuz.efi: vmlinux 153 $(Q)$(MAKE) $(build)=$(boot) $(bootvars-y) $(boot)/$@ 154 155install: 156 $(Q)install -D -m 755 $(KBUILD_IMAGE) $(INSTALL_PATH)/$(image-name-y)-$(KERNELRELEASE) 157 $(Q)install -D -m 644 .config $(INSTALL_PATH)/config-$(KERNELRELEASE) 158 $(Q)install -D -m 644 System.map $(INSTALL_PATH)/System.map-$(KERNELRELEASE) 159 160define archhelp 161 echo ' install - install kernel into $(INSTALL_PATH)' 162 echo 163endef 164