Merge tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-2.6-block.git] / arch / arc / Makefile
CommitLineData
d2912cb1 1# SPDX-License-Identifier: GPL-2.0-only
cfdbc2e1
VG
2#
3# Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4#
cfdbc2e1 5
1681baa7 6KBUILD_DEFCONFIG := haps_hs_smp_defconfig
cfdbc2e1 7
2bc42bfb
AB
8ifeq ($(CROSS_COMPILE),)
9CROSS_COMPILE := $(call cc-cross-prefix, arc-linux- arceb-linux-)
10endif
11
74c11e30 12cflags-y += -fno-common -pipe -fno-builtin -mmedium-calls -D__linux__
0bdd6e74 13
040ece2a 14tune-mcpu-def-$(CONFIG_ISA_ARCOMPACT) := -mcpu=arc700
0bdd6e74
EP
15tune-mcpu-def-$(CONFIG_ISA_ARCV2) := -mcpu=hs38
16
17ifeq ($(CONFIG_ARC_TUNE_MCPU),"")
18cflags-y += $(tune-mcpu-def-y)
19else
20tune-mcpu := $(shell echo $(CONFIG_ARC_TUNE_MCPU))
21tune-mcpu-ok := $(call cc-option-yn, $(tune-mcpu))
22ifeq ($(tune-mcpu-ok),y)
23cflags-y += $(tune-mcpu)
24else
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)')
28cflags-y += $(tune-mcpu-def-y)
29endif
30endif
31
cfdbc2e1 32
080c3747
VG
33ifdef 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
8235703e 37# Can't do unconditionally because of recursive include issues
080c3747 38# due to <linux/thread_info.h>
75dd4747 39LINUXINCLUDE += -include $(srctree)/arch/arc/include/asm/current.h
080c3747
VG
40endif
41
2b52e2a6 42cflags-y += -fsection-anchors
cfdbc2e1 43
76a08404
VG
44cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock
45cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape
46
d05a76ab
AB
47ifdef CONFIG_ISA_ARCV2
48
76551468
EP
49ifdef CONFIG_ARC_USE_UNALIGNED_MEM_ACCESS
50cflags-y += -munaligned-access
51else
52cflags-y += -mno-unaligned-access
53endif
54
1f6ccfff 55ifndef CONFIG_ARC_HAS_LL64
d05a76ab
AB
56cflags-y += -mno-ll64
57endif
58
59ifndef CONFIG_ARC_HAS_DIV_REM
60cflags-y += -mno-div-rem
61endif
62
1f6ccfff
VG
63endif
64
5a205a32
VG
65cfi := $(call as-instr,.cfi_startproc\n.cfi_endproc,-DARC_DW2_UNWIND_AS_CFI)
66cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables $(cfi)
6716dbbd 67
cfdbc2e1
VG
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
70disable_small_data := y
71cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp
72
73cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian
74ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB
75
40660f1f 76LIBGCC = $(shell $(CC) $(cflags-y) --print-libgcc-file-name)
cfdbc2e1
VG
77
78# Modules with short calls might break for calls into builtin-kernel
07fd7d4b 79KBUILD_CFLAGS_MODULE += -mlong-calls -mno-millicode
cfdbc2e1
VG
80
81# Finally dump eveything into kernel build system
82KBUILD_CFLAGS += $(cflags-y)
83KBUILD_AFLAGS += $(KBUILD_CFLAGS)
d503ac53 84KBUILD_LDFLAGS += $(ldflags-y)
cfdbc2e1 85
cfdbc2e1
VG
86head-y := arch/arc/kernel/head.o
87
88# See arch/arc/Kbuild for content of core part of the kernel
89core-y += arch/arc/
90
999159a5
VG
91# w/o this dtb won't embed into kernel binary
92core-y += arch/arc/boot/dts/
93
33460f86 94core-y += arch/arc/plat-sim/
fd155792 95core-$(CONFIG_ARC_PLAT_TB10X) += arch/arc/plat-tb10x/
556cc1c5 96core-$(CONFIG_ARC_PLAT_AXS10X) += arch/arc/plat-axs10x/
a518d637 97core-$(CONFIG_ARC_SOC_HSDK) += arch/arc/plat-hsdk/
96665789 98
769bc1fd
VG
99drivers-$(CONFIG_OPROFILE) += arch/arc/oprofile/
100
cfdbc2e1
VG
101libs-y += arch/arc/lib/ $(LIBGCC)
102
fb0990bb
VG
103boot := arch/arc/boot
104
2547476a 105#default target for make without any arguments.
5e40f0fd 106KBUILD_IMAGE := $(boot)/bootpImage
cfdbc2e1 107
5e40f0fd 108all: bootpImage
cfdbc2e1
VG
109bootpImage: vmlinux
110
104058ed
VG
111boot_targets += uImage uImage.bin uImage.gz
112
113$(boot_targets): vmlinux
cfdbc2e1
VG
114 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
115
116archclean:
117 $(Q)$(MAKE) $(clean)=$(boot)