blob: 8a107ed18b0dc71b7804203540078044cddd1976 [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
53KBUILD_CFLAGS += -march=$(subst fd,,$(riscv-march-y))
54KBUILD_AFLAGS += -march=$(riscv-march-y)
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070055
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070056KBUILD_CFLAGS += -mno-save-restore
57KBUILD_CFLAGS += -DCONFIG_PAGE_OFFSET=$(CONFIG_PAGE_OFFSET)
58
59ifeq ($(CONFIG_CMODEL_MEDLOW),y)
60 KBUILD_CFLAGS += -mcmodel=medlow
61endif
62ifeq ($(CONFIG_CMODEL_MEDANY),y)
63 KBUILD_CFLAGS += -mcmodel=medany
64endif
Mao Handbeb90b2019-08-29 14:57:00 +080065ifeq ($(CONFIG_PERF_EVENTS),y)
66 KBUILD_CFLAGS += -fno-omit-frame-pointer
67endif
Zong Liab1ef682018-03-15 16:50:41 +080068
69KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax)
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070070
71# GCC versions that support the "-mstrict-align" option default to allowing
72# unaligned accesses. While unaligned accesses are explicitly allowed in the
73# RISC-V ISA, they're emulated by machine mode traps on all extant
74# architectures. It's faster to have GCC emit only aligned accesses.
75KBUILD_CFLAGS += $(call cc-option,-mstrict-align)
76
Guo Renfea2fed2020-12-17 16:29:18 +000077ifeq ($(CONFIG_STACKPROTECTOR_PER_TASK),y)
78prepare: stack_protector_prepare
79stack_protector_prepare: prepare0
80 $(eval KBUILD_CFLAGS += -mstack-protector-guard=tls \
81 -mstack-protector-guard-reg=tp \
82 -mstack-protector-guard-offset=$(shell \
83 awk '{if ($$2 == "TSK_STACK_CANARY") print $$3;}' \
84 include/generated/asm-offsets.h))
85endif
86
Luc Van Oostenryck889d7462018-05-31 17:42:01 +020087# arch specific predefines for sparse
88CHECKFLAGS += -D__riscv -D__riscv_xlen=$(BITS)
89
Anup Patelc0fbcd92018-11-12 11:25:15 +053090# Default target when executing plain make
91boot := arch/riscv/boot
Vitaly Wool44c92252021-04-13 02:35:14 -040092ifeq ($(CONFIG_XIP_KERNEL),y)
93KBUILD_IMAGE := $(boot)/xipImage
94else
Anup Patelc0fbcd92018-11-12 11:25:15 +053095KBUILD_IMAGE := $(boot)/Image.gz
Vitaly Wool44c92252021-04-13 02:35:14 -040096endif
Anup Patelc0fbcd92018-11-12 11:25:15 +053097
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070098head-y := arch/riscv/kernel/head.o
99
Vincent Chen6f4eea92021-03-22 22:26:03 +0800100core-$(CONFIG_RISCV_ERRATA_ALTERNATIVE) += arch/riscv/errata/
Anup Patel99cdc6c2021-09-27 17:10:01 +0530101core-$(CONFIG_KVM) += arch/riscv/kvm/
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700102
103libs-y += arch/riscv/lib/
Atish Patrad7071742020-09-17 15:37:14 -0700104libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700105
David Abdurachmanovf157d412018-11-05 15:35:37 +0100106PHONY += vdso_install
107vdso_install:
108 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@
109
Andreas Schwab5a19c7e2021-11-02 16:51:43 +0100110ifeq ($(KBUILD_EXTMOD),)
Palmer Dabbelta290f512021-08-25 22:52:45 -0700111ifeq ($(CONFIG_MMU),y)
Saleem Abdulrasoolfde9c592021-08-04 17:32:14 +0000112prepare: vdso_prepare
113vdso_prepare: prepare0
114 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso include/generated/vdso-offsets.h
Palmer Dabbelta290f512021-08-25 22:52:45 -0700115endif
Andreas Schwab5a19c7e2021-11-02 16:51:43 +0100116endif
Saleem Abdulrasoolfde9c592021-08-04 17:32:14 +0000117
Vitaly Wool44c92252021-04-13 02:35:14 -0400118ifneq ($(CONFIG_XIP_KERNEL),y)
Damien Le Moal08734e02020-12-13 22:50:38 +0900119ifeq ($(CONFIG_RISCV_M_MODE)$(CONFIG_SOC_CANAAN),yy)
Christoph Hellwig37809df2020-03-16 09:47:43 +0900120KBUILD_IMAGE := $(boot)/loader.bin
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100121else
122KBUILD_IMAGE := $(boot)/Image.gz
123endif
Vitaly Wool44c92252021-04-13 02:35:14 -0400124endif
125BOOT_TARGETS := Image Image.gz loader loader.bin xipImage
Anup Patelc0fbcd92018-11-12 11:25:15 +0530126
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100127all: $(notdir $(KBUILD_IMAGE))
Anup Patelc0fbcd92018-11-12 11:25:15 +0530128
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100129$(BOOT_TARGETS): vmlinux
Anup Patelc0fbcd92018-11-12 11:25:15 +0530130 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100131 @$(kecho) ' Kernel: $(boot)/$@ is ready'
Anup Patelc0fbcd92018-11-12 11:25:15 +0530132
Kefeng Wangc18d7c12020-11-04 14:14:59 +0800133Image.%: Image
134 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
135
Masahiro Yamada399c1ec2021-07-29 23:21:47 +0900136install: install-image = Image
137zinstall: install-image = Image.gz
138install zinstall:
139 $(CONFIG_SHELL) $(srctree)/$(boot)/install.sh $(KERNELRELEASE) \
140 $(boot)/$(install-image) System.map "$(INSTALL_PATH)"
Kefeng Wang2c42bcb2020-11-04 14:15:00 +0800141
Randy Dunlap5d4595d2021-09-11 20:45:38 -0700142PHONY += rv32_randconfig
143rv32_randconfig:
144 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/32-bit.config \
145 -f $(srctree)/Makefile randconfig
146
147PHONY += rv64_randconfig
148rv64_randconfig:
149 $(Q)$(MAKE) KCONFIG_ALLCONFIG=$(srctree)/arch/riscv/configs/64-bit.config \
150 -f $(srctree)/Makefile randconfig