drm/amdgpu: fix ras err_data null pointer issue in amdgpu_ras.c
[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
129ab0d2 17ifeq ($(CONFIG_ARC_TUNE_MCPU),)
0bdd6e74
EP
18cflags-y += $(tune-mcpu-def-y)
19else
129ab0d2 20tune-mcpu := $(CONFIG_ARC_TUNE_MCPU)
43e6b58f 21ifneq ($(call cc-option,$(tune-mcpu)),)
0bdd6e74
EP
22cflags-y += $(tune-mcpu)
23else
24# The flag provided by 'CONFIG_ARC_TUNE_MCPU' option isn't known by this compiler
25# (probably the compiler is too old). Use ISA default mcpu flag instead as a safe option.
26$(warning ** WARNING ** CONFIG_ARC_TUNE_MCPU flag '$(tune-mcpu)' is unknown, fallback to '$(tune-mcpu-def-y)')
27cflags-y += $(tune-mcpu-def-y)
28endif
29endif
30
080c3747 31ifdef CONFIG_ARC_CURR_IN_REG
f79f7a2d 32# For a global register definition, make sure it gets passed to every file
080c3747 33# We had a customer reported bug where some code built in kernel was NOT using
cfca4b5a 34# any kernel headers, and missing the global register
8235703e 35# Can't do unconditionally because of recursive include issues
080c3747 36# due to <linux/thread_info.h>
75dd4747 37LINUXINCLUDE += -include $(srctree)/arch/arc/include/asm/current.h
cfca4b5a 38cflags-y += -ffixed-gp
080c3747
VG
39endif
40
2b52e2a6 41cflags-y += -fsection-anchors
cfdbc2e1 42
76a08404
VG
43cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock
44cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape
45
d05a76ab
AB
46ifdef CONFIG_ISA_ARCV2
47
76551468
EP
48ifdef CONFIG_ARC_USE_UNALIGNED_MEM_ACCESS
49cflags-y += -munaligned-access
50else
51cflags-y += -mno-unaligned-access
52endif
53
1f6ccfff 54ifndef CONFIG_ARC_HAS_LL64
d05a76ab
AB
55cflags-y += -mno-ll64
56endif
57
58ifndef CONFIG_ARC_HAS_DIV_REM
59cflags-y += -mno-div-rem
60endif
61
1f6ccfff
VG
62endif
63
5a205a32
VG
64cfi := $(call as-instr,.cfi_startproc\n.cfi_endproc,-DARC_DW2_UNWIND_AS_CFI)
65cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables $(cfi)
6716dbbd 66
cfdbc2e1
VG
67# small data is default for elf32 tool-chain. If not usable, disable it
68# This also allows repurposing GP as scratch reg to gcc reg allocator
69disable_small_data := y
cfca4b5a 70cflags-$(disable_small_data) += -mno-sdata
cfdbc2e1
VG
71
72cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian
73ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB
74
40660f1f 75LIBGCC = $(shell $(CC) $(cflags-y) --print-libgcc-file-name)
cfdbc2e1
VG
76
77# Modules with short calls might break for calls into builtin-kernel
07fd7d4b 78KBUILD_CFLAGS_MODULE += -mlong-calls -mno-millicode
cfdbc2e1
VG
79
80# Finally dump eveything into kernel build system
81KBUILD_CFLAGS += $(cflags-y)
82KBUILD_AFLAGS += $(KBUILD_CFLAGS)
d503ac53 83KBUILD_LDFLAGS += $(ldflags-y)
cfdbc2e1 84
999159a5
VG
85# w/o this dtb won't embed into kernel binary
86core-y += arch/arc/boot/dts/
87
33460f86 88core-y += arch/arc/plat-sim/
fd155792 89core-$(CONFIG_ARC_PLAT_TB10X) += arch/arc/plat-tb10x/
556cc1c5 90core-$(CONFIG_ARC_PLAT_AXS10X) += arch/arc/plat-axs10x/
a518d637 91core-$(CONFIG_ARC_SOC_HSDK) += arch/arc/plat-hsdk/
96665789 92
cfdbc2e1
VG
93libs-y += arch/arc/lib/ $(LIBGCC)
94
fb0990bb
VG
95boot := arch/arc/boot
96
c5e6ae56 97boot_targets := uImage.bin uImage.gz uImage.lzma
104058ed 98
0cfccb3c 99PHONY += $(boot_targets)
104058ed 100$(boot_targets): vmlinux
cfdbc2e1
VG
101 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
102
c5e6ae56
MY
103uimage-default-y := uImage.bin
104uimage-default-$(CONFIG_KERNEL_GZIP) := uImage.gz
105uimage-default-$(CONFIG_KERNEL_LZMA) := uImage.lzma
106
107PHONY += uImage
108uImage: $(uimage-default-y)
109 @ln -sf $< $(boot)/uImage
110 @$(kecho) ' Image $(boot)/uImage is ready'
111
112CLEAN_FILES += $(boot)/uImage