Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[linux-2.6-microblaze.git] / arch / loongarch / Makefile
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
6 boot    := arch/loongarch/boot
7
8 KBUILD_DEFCONFIG := loongson3_defconfig
9
10 image-name-y                    := vmlinux
11 image-name-$(CONFIG_EFI_ZBOOT)  := vmlinuz
12
13 ifndef CONFIG_EFI_STUB
14 KBUILD_IMAGE    := $(boot)/vmlinux.elf
15 else
16 KBUILD_IMAGE    := $(boot)/$(image-name-y).efi
17 endif
18
19 #
20 # Select the object file format to substitute into the linker script.
21 #
22 64bit-tool-archpref     = loongarch64
23 32bit-bfd               = elf32-loongarch
24 64bit-bfd               = elf64-loongarch
25 32bit-emul              = elf32loongarch
26 64bit-emul              = elf64loongarch
27
28 ifdef CONFIG_64BIT
29 tool-archpref           = $(64bit-tool-archpref)
30 UTS_MACHINE             := loongarch64
31 endif
32
33 ifneq ($(SUBARCH),$(ARCH))
34   ifeq ($(CROSS_COMPILE),)
35     CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux-  $(tool-archpref)-linux-gnu-  $(tool-archpref)-unknown-linux-gnu-)
36   endif
37 endif
38
39 ifdef CONFIG_64BIT
40 ld-emul                 = $(64bit-emul)
41 cflags-y                += -mabi=lp64s
42 endif
43
44 cflags-y                        += -G0 -pipe -msoft-float
45 LDFLAGS_vmlinux                 += -G0 -static -n -nostdlib
46
47 # When the assembler supports explicit relocation hint, we must use it.
48 # GCC may have -mexplicit-relocs off by default if it was built with an old
49 # assembler, so we force it via an option.
50 #
51 # When the assembler does not supports explicit relocation hint, we can't use
52 # it.  Disable it if the compiler supports it.
53 #
54 # If you've seen "unknown reloc hint" message building the kernel and you are
55 # now wondering why "-mexplicit-relocs" is not wrapped with cc-option: the
56 # combination of a "new" assembler and "old" compiler is not supported.  Either
57 # upgrade the compiler or downgrade the assembler.
58 ifdef CONFIG_AS_HAS_EXPLICIT_RELOCS
59 cflags-y                        += -mexplicit-relocs
60 KBUILD_CFLAGS_KERNEL            += -mdirect-extern-access
61 else
62 cflags-y                        += $(call cc-option,-mno-explicit-relocs)
63 KBUILD_AFLAGS_KERNEL            += -Wa,-mla-global-with-pcrel
64 KBUILD_CFLAGS_KERNEL            += -Wa,-mla-global-with-pcrel
65 KBUILD_AFLAGS_MODULE            += -Wa,-mla-global-with-abs
66 KBUILD_CFLAGS_MODULE            += -fplt -Wa,-mla-global-with-abs,-mla-local-with-abs
67 endif
68
69 cflags-y += -ffreestanding
70 cflags-y += $(call cc-option, -mno-check-zero-division)
71
72 ifndef CONFIG_PHYSICAL_START
73 load-y          = 0x9000000000200000
74 else
75 load-y          = $(CONFIG_PHYSICAL_START)
76 endif
77 bootvars-y      = VMLINUX_LOAD_ADDRESS=$(load-y)
78
79 drivers-$(CONFIG_PCI)           += arch/loongarch/pci/
80
81 KBUILD_AFLAGS   += $(cflags-y)
82 KBUILD_CFLAGS   += $(cflags-y)
83 KBUILD_CPPFLAGS += -DVMLINUX_LOAD_ADDRESS=$(load-y)
84
85 # This is required to get dwarf unwinding tables into .debug_frame
86 # instead of .eh_frame so we don't discard them.
87 KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
88
89 # Don't emit unaligned accesses.
90 # Not all LoongArch cores support unaligned access, and as kernel we can't
91 # rely on others to provide emulation for these accesses.
92 KBUILD_CFLAGS += $(call cc-option,-mstrict-align)
93
94 KBUILD_CFLAGS += -isystem $(shell $(CC) -print-file-name=include)
95
96 KBUILD_LDFLAGS  += -m $(ld-emul)
97
98 ifdef CONFIG_LOONGARCH
99 CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \
100         egrep -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \
101         sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g')
102 endif
103
104 libs-y += arch/loongarch/lib/
105 libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
106
107 ifeq ($(KBUILD_EXTMOD),)
108 prepare: vdso_prepare
109 vdso_prepare: prepare0
110         $(Q)$(MAKE) $(build)=arch/loongarch/vdso include/generated/vdso-offsets.h
111 endif
112
113 PHONY += vdso_install
114 vdso_install:
115         $(Q)$(MAKE) $(build)=arch/loongarch/vdso $@
116
117 all:    $(notdir $(KBUILD_IMAGE))
118
119 vmlinux.elf vmlinux.efi vmlinuz.efi: vmlinux
120         $(Q)$(MAKE) $(build)=$(boot) $(bootvars-y) $(boot)/$@
121
122 install:
123         $(Q)install -D -m 755 $(KBUILD_IMAGE) $(INSTALL_PATH)/$(image-name-y)-$(KERNELRELEASE)
124         $(Q)install -D -m 644 .config $(INSTALL_PATH)/config-$(KERNELRELEASE)
125         $(Q)install -D -m 644 System.map $(INSTALL_PATH)/System.map-$(KERNELRELEASE)
126
127 define archhelp
128         echo '  install              - install kernel into $(INSTALL_PATH)'
129         echo
130 endef