Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / arc / Makefile
blob0c6bf0d1df7ad1ea1028f649559829cf6cca0793
1 # SPDX-License-Identifier: GPL-2.0-only
3 # Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
6 KBUILD_DEFCONFIG := haps_hs_smp_defconfig
8 ifeq ($(CROSS_COMPILE),)
9 CROSS_COMPILE := $(call cc-cross-prefix, arc-linux- arceb-linux-)
10 endif
12 cflags-y += -fno-common -pipe -fno-builtin -mmedium-calls -D__linux__
14 tune-mcpu-def-$(CONFIG_ISA_ARCOMPACT) := -mcpu=arc700
15 tune-mcpu-def-$(CONFIG_ISA_ARCV2) := -mcpu=hs38
17 ifeq ($(CONFIG_ARC_TUNE_MCPU),"")
18 cflags-y += $(tune-mcpu-def-y)
19 else
20 tune-mcpu := $(shell echo $(CONFIG_ARC_TUNE_MCPU))
21 tune-mcpu-ok := $(call cc-option-yn, $(tune-mcpu))
22 ifeq ($(tune-mcpu-ok),y)
23 cflags-y += $(tune-mcpu)
24 else
25 # The flag provided by 'CONFIG_ARC_TUNE_MCPU' option isn't known by this compiler
26 # (probably the compiler is too old). Use ISA default mcpu flag instead as a safe option.
27 $(warning ** WARNING ** CONFIG_ARC_TUNE_MCPU flag '$(tune-mcpu)' is unknown, fallback to '$(tune-mcpu-def-y)')
28 cflags-y += $(tune-mcpu-def-y)
29 endif
30 endif
33 ifdef CONFIG_ARC_CURR_IN_REG
34 # For a global register defintion, make sure it gets passed to every file
35 # We had a customer reported bug where some code built in kernel was NOT using
36 # any kernel headers, and missing the r25 global register
37 # Can't do unconditionally because of recursive include issues
38 # due to <linux/thread_info.h>
39 LINUXINCLUDE += -include $(srctree)/arch/arc/include/asm/current.h
40 endif
42 cflags-y += -fsection-anchors
44 cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock
45 cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape
47 ifdef CONFIG_ISA_ARCV2
49 ifdef CONFIG_ARC_USE_UNALIGNED_MEM_ACCESS
50 cflags-y += -munaligned-access
51 else
52 cflags-y += -mno-unaligned-access
53 endif
55 ifndef CONFIG_ARC_HAS_LL64
56 cflags-y += -mno-ll64
57 endif
59 ifndef CONFIG_ARC_HAS_DIV_REM
60 cflags-y += -mno-div-rem
61 endif
63 endif
65 cfi := $(call as-instr,.cfi_startproc\n.cfi_endproc,-DARC_DW2_UNWIND_AS_CFI)
66 cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables $(cfi)
68 # small data is default for elf32 tool-chain. If not usable, disable it
69 # This also allows repurposing GP as scratch reg to gcc reg allocator
70 disable_small_data := y
71 cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp
73 cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian
74 ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB
76 LIBGCC = $(shell $(CC) $(cflags-y) --print-libgcc-file-name)
78 # Modules with short calls might break for calls into builtin-kernel
79 KBUILD_CFLAGS_MODULE += -mlong-calls -mno-millicode
81 # Finally dump eveything into kernel build system
82 KBUILD_CFLAGS += $(cflags-y)
83 KBUILD_AFLAGS += $(KBUILD_CFLAGS)
84 KBUILD_LDFLAGS += $(ldflags-y)
86 head-y := arch/arc/kernel/head.o
88 # See arch/arc/Kbuild for content of core part of the kernel
89 core-y += arch/arc/
91 # w/o this dtb won't embed into kernel binary
92 core-y += arch/arc/boot/dts/
94 core-y += arch/arc/plat-sim/
95 core-$(CONFIG_ARC_PLAT_TB10X) += arch/arc/plat-tb10x/
96 core-$(CONFIG_ARC_PLAT_AXS10X) += arch/arc/plat-axs10x/
97 core-$(CONFIG_ARC_SOC_HSDK) += arch/arc/plat-hsdk/
99 drivers-$(CONFIG_OPROFILE) += arch/arc/oprofile/
101 libs-y += arch/arc/lib/ $(LIBGCC)
103 boot := arch/arc/boot
105 #default target for make without any arguments.
106 KBUILD_IMAGE := $(boot)/bootpImage
108 all: bootpImage
109 bootpImage: vmlinux
111 boot_targets += uImage uImage.bin uImage.gz
113 $(boot_targets): vmlinux
114 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
116 archclean:
117 $(Q)$(MAKE) $(clean)=$(boot)