blob: 9a36c04e4306ca3f3fd38b4d5bbdb8cc7d60d508 [file] [log] [blame]
Vineet Guptacfdbc2e2013-01-18 15:12:20 +05301#
2# Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License version 2 as
6# published by the Free Software Foundation.
7#
8
9UTS_MACHINE := arc
10
11KBUILD_DEFCONFIG := fpga_defconfig
12
13# For ARC FPGA Platforms
14platform-$(CONFIG_ARC_PLAT_FPGA_LEGACY) := arcfpga
15#New platform adds here
16
17PLATFORM := $(platform-y)
18export PLATFORM
19
20cflags-y += -Iarch/arc/plat-$(PLATFORM)/include
21cflags-y += -mA7 -fno-common -pipe -fno-builtin -D__linux__
22
Vineet Guptaaf617422013-01-18 15:12:24 +053023LINUXINCLUDE += -include ${src}/arch/arc/include/asm/defines.h
24
Vineet Gupta080c3742013-02-11 19:52:57 +053025ifdef CONFIG_ARC_CURR_IN_REG
26# For a global register defintion, make sure it gets passed to every file
27# We had a customer reported bug where some code built in kernel was NOT using
28# any kernel headers, and missing the r25 global register
29# Can't do unconditionally (like above) because of recursive include issues
30# due to <linux/thread_info.h>
31LINUXINCLUDE += -include ${src}/arch/arc/include/asm/current.h
32endif
33
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053034atleast_gcc44 := $(call cc-ifversion, -gt, 0402, y)
35cflags-$(atleast_gcc44) += -fsection-anchors
36
37cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock
38cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape
39cflags-$(CONFIG_ARC_HAS_RTSC) += -mrtsc
40cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables
41
42ifndef CONFIG_CC_OPTIMIZE_FOR_SIZE
43# Generic build system uses -O2, we want -O3
44cflags-y += -O3
45endif
46
47# small data is default for elf32 tool-chain. If not usable, disable it
48# This also allows repurposing GP as scratch reg to gcc reg allocator
49disable_small_data := y
50cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp
51
52cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian
53ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB
54
55# STAR 9000518362:
56# arc-linux-uclibc-ld (buildroot) or arceb-elf32-ld (EZChip) don't accept
57# --build-id w/o "-marclinux".
58# Default arc-elf32-ld is OK
59ldflags-y += -marclinux
60
61ARC_LIBGCC := -mA7
62cflags-$(CONFIG_ARC_HAS_HW_MPY) += -multcost=16
63
64ifndef CONFIG_ARC_HAS_HW_MPY
65 cflags-y += -mno-mpy
66
67# newlib for ARC700 assumes MPY to be always present, which is generally true
68# However, if someone really doesn't want MPY, we need to use the 600 ver
69# which coupled with -mno-mpy will use mpy emulation
70# With gcc 4.4.7, -mno-mpy is enough to make any other related adjustments,
71# e.g. increased cost of MPY. With gcc 4.2.1 this had to be explicitly hinted
72
73 ARC_LIBGCC := -marc600
74 ifneq ($(atleast_gcc44),y)
75 cflags-y += -multcost=30
76 endif
77endif
78
79LIBGCC := $(shell $(CC) $(ARC_LIBGCC) $(cflags-y) --print-libgcc-file-name)
80
81# Modules with short calls might break for calls into builtin-kernel
82KBUILD_CFLAGS_MODULE += -mlong-calls
83
84# Finally dump eveything into kernel build system
85KBUILD_CFLAGS += $(cflags-y)
86KBUILD_AFLAGS += $(KBUILD_CFLAGS)
87LDFLAGS += $(ldflags-y)
88
89# Needed for Linker script preprocessing
90KBUILD_CPPFLAGS += -Iarch/arc/plat-$(PLATFORM)/include
91
92head-y := arch/arc/kernel/head.o
93
94# See arch/arc/Kbuild for content of core part of the kernel
95core-y += arch/arc/
96
Vineet Gupta999159a2013-01-22 17:00:52 +053097# w/o this dtb won't embed into kernel binary
98core-y += arch/arc/boot/dts/
99
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530100# w/o this ifneq, make ARCH=arc clean was crapping out
101ifneq ($(platform-y),)
102core-y += arch/arc/plat-$(PLATFORM)/
103endif
104
Vineet Gupta769bc1f2013-01-22 17:02:38 +0530105drivers-$(CONFIG_OPROFILE) += arch/arc/oprofile/
106
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530107libs-y += arch/arc/lib/ $(LIBGCC)
108
109#default target for make without any arguements.
110KBUILD_IMAGE := bootpImage
111
112all: $(KBUILD_IMAGE)
113boot := arch/arc/boot
114
115bootpImage: vmlinux
116
117uImage: vmlinux
118 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
119
Vineet Gupta999159a2013-01-22 17:00:52 +0530120%.dtb %.dtb.S %.dtb.o: scripts
121 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
122
123dtbs: scripts
124 $(Q)$(MAKE) $(build)=$(boot)/dts dtbs
125
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530126archclean:
127 $(Q)$(MAKE) $(clean)=$(boot)
128
129# Hacks to enable final link due to absence of link-time branch relexation
130# and gcc choosing optimal(shorter) branches at -O3
131#
132# vineetg Feb 2010: -mlong-calls switched off for overall kernel build
133# However lib/decompress_inflate.o (.init.text) calls
134# zlib_inflate_workspacesize (.text) causing relocation errors.
135# Thus forcing all exten calls in this file to be long calls
136export CFLAGS_decompress_inflate.o = -mmedium-calls
137export CFLAGS_initramfs.o = -mmedium-calls
Vineet Gupta41195d22013-01-18 15:12:23 +0530138ifdef CONFIG_SMP
139export CFLAGS_core.o = -mmedium-calls
140endif