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