blob: 7d81102cffd48e38e7c16c4782655d4653dc127b [file] [log] [blame]
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07001# This file is included by the global makefile so that you can add your own
Masahiro Yamada8212f892021-10-13 15:36:22 +09002# architecture-specific flags and dependencies.
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07003#
4# This file is subject to the terms and conditions of the GNU General Public
5# License. See the file "COPYING" in the main directory of this archive
6# for more details.
7#
8
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07009OBJCOPYFLAGS := -O binary
10LDFLAGS_vmlinux :=
Alan Kaoa1d2a6b2018-02-13 13:13:16 +080011ifeq ($(CONFIG_DYNAMIC_FTRACE),y)
12 LDFLAGS_vmlinux := --no-relax
Guo Renafc76b82020-12-17 16:01:41 +000013 KBUILD_CPPFLAGS += -DCC_USING_PATCHABLE_FUNCTION_ENTRY
14 CC_FLAGS_FTRACE := -fpatchable-function-entry=8
Alan Kaoa1d2a6b2018-02-13 13:13:16 +080015endif
Vincent Chenaad15bc2020-02-21 10:47:55 +080016
Khem Raj5d2388d2021-06-06 15:09:40 -070017ifeq ($(CONFIG_CMODEL_MEDLOW),y)
Vincent Chenaad15bc2020-02-21 10:47:55 +080018KBUILD_CFLAGS_MODULE += -mcmodel=medany
19endif
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070020
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070021export BITS
22ifeq ($(CONFIG_ARCH_RV64I),y)
23 BITS := 64
24 UTS_MACHINE := riscv64
25
26 KBUILD_CFLAGS += -mabi=lp64
27 KBUILD_AFLAGS += -mabi=lp64
Alex Guoa89757d2018-07-29 01:14:47 +000028
Masahiro Yamadad503ac52018-08-24 08:20:39 +090029 KBUILD_LDFLAGS += -melf64lriscv
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070030else
31 BITS := 32
32 UTS_MACHINE := riscv32
33
34 KBUILD_CFLAGS += -mabi=ilp32
35 KBUILD_AFLAGS += -mabi=ilp32
Masahiro Yamadad503ac52018-08-24 08:20:39 +090036 KBUILD_LDFLAGS += -melf32lriscv
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070037endif
38
Khem Rajec3a5cb2021-05-14 14:37:41 -070039ifeq ($(CONFIG_LD_IS_LLD),y)
40 KBUILD_CFLAGS += -mno-relax
41 KBUILD_AFLAGS += -mno-relax
Masahiro Yamada52cc02b2021-08-06 00:01:02 +090042ifndef CONFIG_AS_IS_LLVM
Khem Rajec3a5cb2021-05-14 14:37:41 -070043 KBUILD_CFLAGS += -Wa,-mno-relax
44 KBUILD_AFLAGS += -Wa,-mno-relax
45endif
46endif
47
Alan Kaoe8be5302018-10-09 10:18:32 +080048# ISA string setting
Christoph Hellwig09afac72019-04-15 11:14:35 +020049riscv-march-$(CONFIG_ARCH_RV32I) := rv32ima
50riscv-march-$(CONFIG_ARCH_RV64I) := rv64ima
Alan Kao9671f702018-10-09 10:18:33 +080051riscv-march-$(CONFIG_FPU) := $(riscv-march-y)fd
Alan Kaoe8be5302018-10-09 10:18:32 +080052riscv-march-$(CONFIG_RISCV_ISA_C) := $(riscv-march-y)c
Aurelien Jarno6df2a012022-01-26 18:14:42 +010053
54# Newer binutils versions default to ISA spec version 20191213 which moves some
55# instructions from the I extension to the Zicsr and Zifencei extensions.
56toolchain-need-zicsr-zifencei := $(call cc-option-yn, -march=$(riscv-march-y)_zicsr_zifencei)
57riscv-march-$(toolchain-need-zicsr-zifencei) := $(riscv-march-y)_zicsr_zifencei
58
Alan Kaoe8be5302018-10-09 10:18:32 +080059KBUILD_CFLAGS += -march=$(subst fd,,$(riscv-march-y))
60KBUILD_AFLAGS += -march=$(riscv-march-y)
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070061
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070062KBUILD_CFLAGS += -mno-save-restore
63KBUILD_CFLAGS += -DCONFIG_PAGE_OFFSET=$(CONFIG_PAGE_OFFSET)
64
65ifeq ($(CONFIG_CMODEL_MEDLOW),y)
66 KBUILD_CFLAGS += -mcmodel=medlow
67endif
68ifeq ($(CONFIG_CMODEL_MEDANY),y)
69 KBUILD_CFLAGS += -mcmodel=medany
70endif
Mao Handbeb90b2019-08-29 14:57:00 +080071ifeq ($(CONFIG_PERF_EVENTS),y)
72 KBUILD_CFLAGS += -fno-omit-frame-pointer
73endif
Zong Liab1ef682018-03-15 16:50:41 +080074
75KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax)
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070076
77# GCC versions that support the "-mstrict-align" option default to allowing
78# unaligned accesses. While unaligned accesses are explicitly allowed in the
79# RISC-V ISA, they're emulated by machine mode traps on all extant
80# architectures. It's faster to have GCC emit only aligned accesses.
81KBUILD_CFLAGS += $(call cc-option,-mstrict-align)
82
Guo Renfea2fed2020-12-17 16:29:18 +000083ifeq ($(CONFIG_STACKPROTECTOR_PER_TASK),y)
84prepare: stack_protector_prepare
85stack_protector_prepare: prepare0
86 $(eval KBUILD_CFLAGS += -mstack-protector-guard=tls \
87 -mstack-protector-guard-reg=tp \
88 -mstack-protector-guard-offset=$(shell \
89 awk '{if ($$2 == "TSK_STACK_CANARY") print $$3;}' \
90 include/generated/asm-offsets.h))
91endif
92
Luc Van Oostenryck889d7462018-05-31 17:42:01 +020093# arch specific predefines for sparse
94CHECKFLAGS += -D__riscv -D__riscv_xlen=$(BITS)
95
Anup Patelc0fbcd92018-11-12 11:25:15 +053096# Default target when executing plain make
97boot := arch/riscv/boot
Vitaly Wool44c92252021-04-13 02:35:14 -040098ifeq ($(CONFIG_XIP_KERNEL),y)
99KBUILD_IMAGE := $(boot)/xipImage
100else
Anup Patelc0fbcd92018-11-12 11:25:15 +0530101KBUILD_IMAGE := $(boot)/Image.gz
Vitaly Wool44c92252021-04-13 02:35:14 -0400102endif
Anup Patelc0fbcd92018-11-12 11:25:15 +0530103
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700104head-y := arch/riscv/kernel/head.o
105
Vincent Chen6f4eea92021-03-22 22:26:03 +0800106core-$(CONFIG_RISCV_ERRATA_ALTERNATIVE) += arch/riscv/errata/
Anup Patel99cdc6c2021-09-27 17:10:01 +0530107core-$(CONFIG_KVM) += arch/riscv/kvm/
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700108
109libs-y += arch/riscv/lib/
Atish Patrad7071742020-09-17 15:37:14 -0700110libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700111
David Abdurachmanovf157d412018-11-05 15:35:37 +0100112PHONY += vdso_install
113vdso_install:
114 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@
115
Andreas Schwab5a19c7e2021-11-02 16:51:43 +0100116ifeq ($(KBUILD_EXTMOD),)
Palmer Dabbelta290f512021-08-25 22:52:45 -0700117ifeq ($(CONFIG_MMU),y)
Saleem Abdulrasoolfde9c592021-08-04 17:32:14 +0000118prepare: vdso_prepare
119vdso_prepare: prepare0
120 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso include/generated/vdso-offsets.h
Palmer Dabbelta290f512021-08-25 22:52:45 -0700121endif
Andreas Schwab5a19c7e2021-11-02 16:51:43 +0100122endif
Saleem Abdulrasoolfde9c592021-08-04 17:32:14 +0000123
Vitaly Wool44c92252021-04-13 02:35:14 -0400124ifneq ($(CONFIG_XIP_KERNEL),y)
Damien Le Moal08734e02020-12-13 22:50:38 +0900125ifeq ($(CONFIG_RISCV_M_MODE)$(CONFIG_SOC_CANAAN),yy)
Christoph Hellwig37809df2020-03-16 09:47:43 +0900126KBUILD_IMAGE := $(boot)/loader.bin
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100127else
128KBUILD_IMAGE := $(boot)/Image.gz
129endif
Vitaly Wool44c92252021-04-13 02:35:14 -0400130endif
131BOOT_TARGETS := Image Image.gz loader loader.bin xipImage
Anup Patelc0fbcd92018-11-12 11:25:15 +0530132
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100133all: $(notdir $(KBUILD_IMAGE))
Anup Patelc0fbcd92018-11-12 11:25:15 +0530134
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100135$(BOOT_TARGETS): vmlinux
Anup Patelc0fbcd92018-11-12 11:25:15 +0530136 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100137 @$(kecho) ' Kernel: $(boot)/$@ is ready'
Anup Patelc0fbcd92018-11-12 11:25:15 +0530138
Kefeng Wangc18d7c12020-11-04 14:14:59 +0800139Image.%: Image
140 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
141
Masahiro Yamada399c1ec2021-07-29 23:21:47 +0900142install: install-image = Image
143zinstall: install-image = Image.gz
144install zinstall:
145 $(CONFIG_SHELL) $(srctree)/$(boot)/install.sh $(KERNELRELEASE) \
146 $(boot)/$(install-image) System.map "$(INSTALL_PATH)"
Kefeng Wang2c42bcb2020-11-04 14:15:00 +0800147
Randy Dunlap5d4595d2021-09-11 20:45:38 -0700148PHONY += rv32_randconfig
149rv32_randconfig:
150 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
151 -f $(srctree)/Makefile randconfig
152
153PHONY += rv64_randconfig
154rv64_randconfig:
155 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
156 -f $(srctree)/Makefile randconfig