1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 # 2 # 3 # Author: Huacai Chen <chenhuacai@loongson.cn> !! 3 # sparc/Makefile 4 # Copyright (C) 2020-2022 Loongson Technology << 5 << 6 boot := arch/loongarch/boot << 7 << 8 KBUILD_DEFCONFIG := loongson3_defconfig << 9 KBUILD_DTBS := dtbs << 10 << 11 image-name-y := vmlinux << 12 image-name-$(CONFIG_EFI_ZBOOT) := vmlinuz << 13 << 14 ifndef CONFIG_EFI_STUB << 15 KBUILD_IMAGE := $(boot)/vmlinux.elf << 16 else << 17 KBUILD_IMAGE := $(boot)/$(image-name-y).efi << 18 endif << 19 << 20 # 4 # 21 # Select the object file format to substitute !! 5 # Makefile for the architecture dependent flags and dependencies on the >> 6 # Sparc and sparc64. 22 # 7 # 23 64bit-tool-archpref = loongarch64 !! 8 # Copyright (C) 1994,1996,1998 David S. Miller (davem@caip.rutgers.edu) 24 32bit-bfd = elf32-loongarch !! 9 # Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) 25 64bit-bfd = elf64-loongarch << 26 32bit-emul = elf32loongarch << 27 64bit-emul = elf64loongarch << 28 << 29 CC_FLAGS_FPU := -mfpu=64 << 30 CC_FLAGS_NO_FPU := -msoft-float << 31 << 32 ifdef CONFIG_UNWINDER_ORC << 33 orc_hash_h := arch/$(SRCARCH)/include/generate << 34 orc_hash_sh := $(srctree)/scripts/orc_hash.sh << 35 targets += $(orc_hash_h) << 36 quiet_cmd_orc_hash = GEN $@ << 37 cmd_orc_hash = mkdir -p $(dir $@); \ << 38 $(CONFIG_SHELL) $(orc_has << 39 $(orc_hash_h): $(srctree)/arch/loongarch/inclu << 40 $(call if_changed,orc_hash) << 41 archprepare: $(orc_hash_h) << 42 endif << 43 10 44 ifdef CONFIG_DYNAMIC_FTRACE !! 11 # We are not yet configured - so test on arch 45 KBUILD_CPPFLAGS += -DCC_USING_PATCHABLE_FUNCTI !! 12 ifeq ($(ARCH),sparc64) 46 CC_FLAGS_FTRACE := -fpatchable-function-entry= !! 13 KBUILD_DEFCONFIG := sparc64_defconfig 47 endif !! 14 else 48 !! 15 KBUILD_DEFCONFIG := sparc32_defconfig 49 ifdef CONFIG_64BIT << 50 tool-archpref = $(64bit-tool-archpre << 51 UTS_MACHINE := loongarch64 << 52 endif 16 endif 53 17 54 ifneq ($(SUBARCH),$(ARCH)) !! 18 ifeq ($(CONFIG_SPARC32),y) 55 ifeq ($(CROSS_COMPILE),) !! 19 ##### 56 CROSS_COMPILE := $(call cc-cross-prefix, $ !! 20 # sparc32 57 endif !! 21 # 58 endif << 59 22 60 ifdef CONFIG_64BIT !! 23 CHECKFLAGS += -D__sparc__ 61 ld-emul = $(64bit-emul) !! 24 KBUILD_LDFLAGS := -m elf32_sparc 62 cflags-y += -mabi=lp64s !! 25 export BITS := 32 63 endif !! 26 UTS_MACHINE := sparc >> 27 >> 28 # We are adding -Wa,-Av8 to KBUILD_CFLAGS to deal with a specs bug in some >> 29 # versions of gcc. Some gcc versions won't pass -Av8 to binutils when you >> 30 # give -mcpu=v8. This silently worked with older bintutils versions but >> 31 # does not any more. >> 32 KBUILD_CFLAGS += -m32 -mcpu=v8 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 >> 33 KBUILD_CFLAGS += -Wa,-Av8 64 34 65 cflags-y += -pipe $(CC_ !! 35 KBUILD_AFLAGS += -m32 -Wa,-Av8 66 LDFLAGS_vmlinux += -static -n << 67 36 68 # When the assembler supports explicit relocat << 69 # GCC may have -mexplicit-relocs off by defaul << 70 # assembler, so we force it via an option. << 71 # << 72 # When the assembler does not supports explici << 73 # it. Disable it if the compiler supports it. << 74 # << 75 # The combination of a "new" assembler and "ol << 76 # the rarity of this combo and the extra compl << 77 # Either upgrade the compiler or downgrade the << 78 # out if it is the case (by probing for the mo << 79 # compilers in this case would have support). << 80 # << 81 # Also, -mdirect-extern-access is useful in ca << 82 # relocs, for avoiding unnecessary GOT accesse << 83 # support though. << 84 ifdef CONFIG_AS_HAS_EXPLICIT_RELOCS << 85 cflags-y += $(call cc-o << 86 KBUILD_CFLAGS_KERNEL += $(call cc-o << 87 KBUILD_CFLAGS_KERNEL += $(call cc-o << 88 KBUILD_AFLAGS_MODULE += $(call cc-o << 89 KBUILD_CFLAGS_MODULE += $(call cc-o << 90 else 37 else 91 cflags-y += $(call cc-o !! 38 ##### 92 KBUILD_AFLAGS_KERNEL += -Wa,-mla-gl !! 39 # sparc64 93 KBUILD_CFLAGS_KERNEL += -Wa,-mla-gl !! 40 # 94 KBUILD_AFLAGS_MODULE += -Wa,-mla-gl << 95 KBUILD_CFLAGS_MODULE += -fplt -Wa,- << 96 endif << 97 41 98 KBUILD_AFLAGS += $(call cc-o !! 42 CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -D__arch64__ 99 KBUILD_CFLAGS += $(call cc-o !! 43 KBUILD_LDFLAGS := -m elf64_sparc 100 KBUILD_AFLAGS += $(call cc-o !! 44 export BITS := 64 101 KBUILD_CFLAGS += $(call cc-o !! 45 UTS_MACHINE := sparc64 102 46 103 ifdef CONFIG_OBJTOOL !! 47 KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow 104 KBUILD_CFLAGS += -fno-jump-t !! 48 KBUILD_CFLAGS += -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare 105 endif !! 49 KBUILD_CFLAGS += -Wa,--undeclared-regs >> 50 KBUILD_CFLAGS += $(call cc-option,-mtune=ultrasparc3) >> 51 KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs 106 52 107 KBUILD_RUSTFLAGS += --target=lo !! 53 ifeq ($(CONFIG_MCOUNT),y) 108 KBUILD_RUSTFLAGS_KERNEL += -Zdirect-ac !! 54 KBUILD_CFLAGS += -pg 109 KBUILD_RUSTFLAGS_MODULE += -Zdirect-ac << 110 << 111 ifeq ($(CONFIG_RELOCATABLE),y) << 112 KBUILD_CFLAGS_KERNEL += -fPIE << 113 KBUILD_RUSTFLAGS_KERNEL += -Crelocatio << 114 LDFLAGS_vmlinux += -static -pi << 115 endif 55 endif 116 56 117 cflags-y += $(call cc-option, -mno-check-zero- << 118 << 119 ifndef CONFIG_KASAN << 120 cflags-y += -fno-builtin-memcpy -fno-builtin-m << 121 endif 57 endif 122 58 123 load-y = 0x9000000000200000 !! 59 head-y := arch/sparc/kernel/head_$(BITS).o 124 bootvars-y = VMLINUX_LOAD_ADDRESS=$(load- << 125 60 126 drivers-$(CONFIG_PCI) += arch/loonga !! 61 # See arch/sparc/Kbuild for the core part of the kernel >> 62 core-y += arch/sparc/ 127 63 128 KBUILD_AFLAGS += $(cflags-y) !! 64 libs-y += arch/sparc/prom/ 129 KBUILD_CFLAGS += $(cflags-y) !! 65 libs-y += arch/sparc/lib/ 130 KBUILD_CPPFLAGS += -DVMLINUX_LOAD_ADDRESS=$(lo << 131 << 132 # This is required to get dwarf unwinding tabl << 133 # instead of .eh_frame so we don't discard the << 134 KBUILD_CFLAGS += -fno-asynchronous-unwind-tabl << 135 << 136 ifdef CONFIG_ARCH_STRICT_ALIGN << 137 # Don't emit unaligned accesses. << 138 # Not all LoongArch cores support unaligned ac << 139 # rely on others to provide emulation for thes << 140 KBUILD_CFLAGS += $(call cc-option,-mstrict-ali << 141 else << 142 # Optimise for performance on hardware support << 143 KBUILD_CFLAGS += $(call cc-option,-mno-strict- << 144 endif << 145 << 146 KBUILD_CFLAGS += -isystem $(shell $(CC) -print << 147 66 148 KBUILD_LDFLAGS += -m $(ld-emul) !! 67 drivers-$(CONFIG_PM) += arch/sparc/power/ 149 !! 68 drivers-$(CONFIG_OPROFILE) += arch/sparc/oprofile/ 150 ifdef need-compiler << 151 CHECKFLAGS += $(shell $(CC) $(KBUILD_CPPFLAGS) << 152 grep -E -vw '__GNUC_(MINOR_|PATCHLEVEL << 153 sed -e "s/^\#define /-D'/" -e "s/ /'=' << 154 endif << 155 69 156 libs-y += arch/loongarch/lib/ !! 70 boot := arch/sparc/boot 157 libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/ << 158 71 159 drivers-y += arch/loongarch/cryp !! 72 # Default target >> 73 all: zImage 160 74 161 # suspend and hibernation support !! 75 image zImage uImage tftpboot.img vmlinux.aout: vmlinux 162 drivers-$(CONFIG_PM) += arch/loongarch/powe !! 76 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 163 77 164 ifeq ($(KBUILD_EXTMOD),) !! 78 install: 165 prepare: vdso_prepare !! 79 $(Q)$(MAKE) $(build)=$(boot) $@ 166 vdso_prepare: prepare0 << 167 $(Q)$(MAKE) $(build)=arch/loongarch/vd << 168 endif << 169 << 170 vdso-install-y += arch/loongarch/vdso/vdso.so. << 171 80 172 all: $(notdir $(KBUILD_IMAGE)) $(KBUILD_DTB !! 81 archclean: >> 82 $(Q)$(MAKE) $(clean)=$(boot) 173 83 174 vmlinuz.efi: vmlinux.efi !! 84 archheaders: >> 85 $(Q)$(MAKE) $(build)=arch/sparc/kernel/syscalls all 175 86 176 vmlinux.elf vmlinux.efi vmlinuz.efi: vmlinux !! 87 PHONY += vdso_install 177 $(Q)$(MAKE) $(build)=$(boot) $(bootvar !! 88 vdso_install: >> 89 $(Q)$(MAKE) $(build)=arch/sparc/vdso $@ 178 90 179 install: !! 91 # This is the image used for packaging 180 $(Q)install -D -m 755 $(KBUILD_IMAGE) !! 92 KBUILD_IMAGE := $(boot)/zImage 181 $(Q)install -D -m 644 .config $(INSTAL << 182 $(Q)install -D -m 644 System.map $(INS << 183 93 >> 94 # Don't use tabs in echo arguments. >> 95 ifeq ($(ARCH),sparc) 184 define archhelp 96 define archhelp 185 echo ' install - install !! 97 echo '* image - kernel image ($(boot)/image)' 186 echo !! 98 echo '* zImage - stripped kernel image ($(boot)/zImage)' >> 99 echo ' uImage - U-Boot SPARC32 Image (only for LEON)' >> 100 echo ' tftpboot.img - image prepared for tftp' 187 endef 101 endef >> 102 else >> 103 define archhelp >> 104 echo '* vmlinux - standard sparc64 kernel' >> 105 echo '* zImage - stripped and compressed sparc64 kernel ($(boot)/zImage)' >> 106 echo ' vmlinux.aout - a.out kernel for sparc64' >> 107 echo ' tftpboot.img - image prepared for tftp' >> 108 endef >> 109 endif
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.