blob: 0eb4568fbd290c79e121a5c6f0f803c9fc8597df [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
2# architecture-specific flags and dependencies. Remember to do have actions
3# for "archclean" and "archdep" for cleaning up and making dependencies for
4# this architecture
5#
6# This file is subject to the terms and conditions of the GNU General Public
7# License. See the file "COPYING" in the main directory of this archive
8# for more details.
9#
10
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070011OBJCOPYFLAGS := -O binary
12LDFLAGS_vmlinux :=
Alan Kaoa1d2a6b2018-02-13 13:13:16 +080013ifeq ($(CONFIG_DYNAMIC_FTRACE),y)
14 LDFLAGS_vmlinux := --no-relax
Guo Renafc76b82020-12-17 16:01:41 +000015 KBUILD_CPPFLAGS += -DCC_USING_PATCHABLE_FUNCTION_ENTRY
16 CC_FLAGS_FTRACE := -fpatchable-function-entry=8
Alan Kaoa1d2a6b2018-02-13 13:13:16 +080017endif
Vincent Chenaad15bc2020-02-21 10:47:55 +080018
Khem Raj5d2388d2021-06-06 15:09:40 -070019ifeq ($(CONFIG_CMODEL_MEDLOW),y)
Vincent Chenaad15bc2020-02-21 10:47:55 +080020KBUILD_CFLAGS_MODULE += -mcmodel=medany
21endif
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070022
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070023export BITS
24ifeq ($(CONFIG_ARCH_RV64I),y)
25 BITS := 64
26 UTS_MACHINE := riscv64
27
28 KBUILD_CFLAGS += -mabi=lp64
29 KBUILD_AFLAGS += -mabi=lp64
Alex Guoa89757d2018-07-29 01:14:47 +000030
Masahiro Yamadad503ac52018-08-24 08:20:39 +090031 KBUILD_LDFLAGS += -melf64lriscv
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070032else
33 BITS := 32
34 UTS_MACHINE := riscv32
35
36 KBUILD_CFLAGS += -mabi=ilp32
37 KBUILD_AFLAGS += -mabi=ilp32
Masahiro Yamadad503ac52018-08-24 08:20:39 +090038 KBUILD_LDFLAGS += -melf32lriscv
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070039endif
40
Khem Rajec3a5cb2021-05-14 14:37:41 -070041ifeq ($(CONFIG_LD_IS_LLD),y)
42 KBUILD_CFLAGS += -mno-relax
43 KBUILD_AFLAGS += -mno-relax
Masahiro Yamada52cc02b2021-08-06 00:01:02 +090044ifndef CONFIG_AS_IS_LLVM
Khem Rajec3a5cb2021-05-14 14:37:41 -070045 KBUILD_CFLAGS += -Wa,-mno-relax
46 KBUILD_AFLAGS += -Wa,-mno-relax
47endif
48endif
49
Alan Kaoe8be5302018-10-09 10:18:32 +080050# ISA string setting
Christoph Hellwig09afac72019-04-15 11:14:35 +020051riscv-march-$(CONFIG_ARCH_RV32I) := rv32ima
52riscv-march-$(CONFIG_ARCH_RV64I) := rv64ima
Alan Kao9671f702018-10-09 10:18:33 +080053riscv-march-$(CONFIG_FPU) := $(riscv-march-y)fd
Alan Kaoe8be5302018-10-09 10:18:32 +080054riscv-march-$(CONFIG_RISCV_ISA_C) := $(riscv-march-y)c
55KBUILD_CFLAGS += -march=$(subst fd,,$(riscv-march-y))
56KBUILD_AFLAGS += -march=$(riscv-march-y)
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070057
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070058KBUILD_CFLAGS += -mno-save-restore
59KBUILD_CFLAGS += -DCONFIG_PAGE_OFFSET=$(CONFIG_PAGE_OFFSET)
60
61ifeq ($(CONFIG_CMODEL_MEDLOW),y)
62 KBUILD_CFLAGS += -mcmodel=medlow
63endif
64ifeq ($(CONFIG_CMODEL_MEDANY),y)
65 KBUILD_CFLAGS += -mcmodel=medany
66endif
Mao Handbeb90b2019-08-29 14:57:00 +080067ifeq ($(CONFIG_PERF_EVENTS),y)
68 KBUILD_CFLAGS += -fno-omit-frame-pointer
69endif
Zong Liab1ef682018-03-15 16:50:41 +080070
71KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-relax)
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070072
73# GCC versions that support the "-mstrict-align" option default to allowing
74# unaligned accesses. While unaligned accesses are explicitly allowed in the
75# RISC-V ISA, they're emulated by machine mode traps on all extant
76# architectures. It's faster to have GCC emit only aligned accesses.
77KBUILD_CFLAGS += $(call cc-option,-mstrict-align)
78
Guo Renfea2fed2020-12-17 16:29:18 +000079ifeq ($(CONFIG_STACKPROTECTOR_PER_TASK),y)
80prepare: stack_protector_prepare
81stack_protector_prepare: prepare0
82 $(eval KBUILD_CFLAGS += -mstack-protector-guard=tls \
83 -mstack-protector-guard-reg=tp \
84 -mstack-protector-guard-offset=$(shell \
85 awk '{if ($$2 == "TSK_STACK_CANARY") print $$3;}' \
86 include/generated/asm-offsets.h))
87endif
88
Luc Van Oostenryck889d7462018-05-31 17:42:01 +020089# arch specific predefines for sparse
90CHECKFLAGS += -D__riscv -D__riscv_xlen=$(BITS)
91
Anup Patelc0fbcd92018-11-12 11:25:15 +053092# Default target when executing plain make
93boot := arch/riscv/boot
Vitaly Wool44c92252021-04-13 02:35:14 -040094ifeq ($(CONFIG_XIP_KERNEL),y)
95KBUILD_IMAGE := $(boot)/xipImage
96else
Anup Patelc0fbcd92018-11-12 11:25:15 +053097KBUILD_IMAGE := $(boot)/Image.gz
Vitaly Wool44c92252021-04-13 02:35:14 -040098endif
Anup Patelc0fbcd92018-11-12 11:25:15 +053099
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700100head-y := arch/riscv/kernel/head.o
101
Vincent Chen6f4eea92021-03-22 22:26:03 +0800102core-$(CONFIG_RISCV_ERRATA_ALTERNATIVE) += arch/riscv/errata/
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700103
104libs-y += arch/riscv/lib/
Atish Patrad7071742020-09-17 15:37:14 -0700105libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700106
David Abdurachmanovf157d412018-11-05 15:35:37 +0100107PHONY += vdso_install
108vdso_install:
109 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@
110
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
Saleem Abdulrasoolfde9c592021-08-04 17:32:14 +0000116
Vitaly Wool44c92252021-04-13 02:35:14 -0400117ifneq ($(CONFIG_XIP_KERNEL),y)
Damien Le Moal08734e02020-12-13 22:50:38 +0900118ifeq ($(CONFIG_RISCV_M_MODE)$(CONFIG_SOC_CANAAN),yy)
Christoph Hellwig37809df2020-03-16 09:47:43 +0900119KBUILD_IMAGE := $(boot)/loader.bin
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100120else
121KBUILD_IMAGE := $(boot)/Image.gz
122endif
Vitaly Wool44c92252021-04-13 02:35:14 -0400123endif
124BOOT_TARGETS := Image Image.gz loader loader.bin xipImage
Anup Patelc0fbcd92018-11-12 11:25:15 +0530125
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100126all: $(notdir $(KBUILD_IMAGE))
Anup Patelc0fbcd92018-11-12 11:25:15 +0530127
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100128$(BOOT_TARGETS): vmlinux
Anup Patelc0fbcd92018-11-12 11:25:15 +0530129 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
Christoph Hellwig405fe7a2019-10-28 13:10:42 +0100130 @$(kecho) ' Kernel: $(boot)/$@ is ready'
Anup Patelc0fbcd92018-11-12 11:25:15 +0530131
Kefeng Wangc18d7c12020-11-04 14:14:59 +0800132Image.%: Image
133 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
134
Masahiro Yamada399c1ec2021-07-29 23:21:47 +0900135install: install-image = Image
136zinstall: install-image = Image.gz
137install zinstall:
138 $(CONFIG_SHELL) $(srctree)/$(boot)/install.sh $(KERNELRELEASE) \
139 $(boot)/$(install-image) System.map "$(INSTALL_PATH)"
Kefeng Wang2c42bcb2020-11-04 14:15:00 +0800140
141archclean:
142 $(Q)$(MAKE) $(clean)=$(boot)