blob: 5c98fc19d99d44a2466ef3df848b8cb3368d0d21 [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 Gupta080c3742013-02-11 19:52:57 +053023ifdef CONFIG_ARC_CURR_IN_REG
24# For a global register defintion, make sure it gets passed to every file
25# We had a customer reported bug where some code built in kernel was NOT using
26# any kernel headers, and missing the r25 global register
27# Can't do unconditionally (like above) because of recursive include issues
28# due to <linux/thread_info.h>
29LINUXINCLUDE += -include ${src}/arch/arc/include/asm/current.h
30endif
31
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053032atleast_gcc44 := $(call cc-ifversion, -gt, 0402, y)
33cflags-$(atleast_gcc44) += -fsection-anchors
34
35cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock
36cflags-$(CONFIG_ARC_HAS_SWAPE) += -mswape
37cflags-$(CONFIG_ARC_HAS_RTSC) += -mrtsc
38cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables
39
40ifndef CONFIG_CC_OPTIMIZE_FOR_SIZE
41# Generic build system uses -O2, we want -O3
42cflags-y += -O3
43endif
44
45# small data is default for elf32 tool-chain. If not usable, disable it
46# This also allows repurposing GP as scratch reg to gcc reg allocator
47disable_small_data := y
48cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp
49
50cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mbig-endian
51ldflags-$(CONFIG_CPU_BIG_ENDIAN) += -EB
52
53# STAR 9000518362:
54# arc-linux-uclibc-ld (buildroot) or arceb-elf32-ld (EZChip) don't accept
55# --build-id w/o "-marclinux".
56# Default arc-elf32-ld is OK
57ldflags-y += -marclinux
58
59ARC_LIBGCC := -mA7
60cflags-$(CONFIG_ARC_HAS_HW_MPY) += -multcost=16
61
62ifndef CONFIG_ARC_HAS_HW_MPY
63 cflags-y += -mno-mpy
64
65# newlib for ARC700 assumes MPY to be always present, which is generally true
66# However, if someone really doesn't want MPY, we need to use the 600 ver
67# which coupled with -mno-mpy will use mpy emulation
68# With gcc 4.4.7, -mno-mpy is enough to make any other related adjustments,
69# e.g. increased cost of MPY. With gcc 4.2.1 this had to be explicitly hinted
70
71 ARC_LIBGCC := -marc600
72 ifneq ($(atleast_gcc44),y)
73 cflags-y += -multcost=30
74 endif
75endif
76
77LIBGCC := $(shell $(CC) $(ARC_LIBGCC) $(cflags-y) --print-libgcc-file-name)
78
79# Modules with short calls might break for calls into builtin-kernel
80KBUILD_CFLAGS_MODULE += -mlong-calls
81
82# Finally dump eveything into kernel build system
83KBUILD_CFLAGS += $(cflags-y)
84KBUILD_AFLAGS += $(KBUILD_CFLAGS)
85LDFLAGS += $(ldflags-y)
86
87# Needed for Linker script preprocessing
88KBUILD_CPPFLAGS += -Iarch/arc/plat-$(PLATFORM)/include
89
90head-y := arch/arc/kernel/head.o
91
92# See arch/arc/Kbuild for content of core part of the kernel
93core-y += arch/arc/
94
Vineet Gupta999159a2013-01-22 17:00:52 +053095# w/o this dtb won't embed into kernel binary
96core-y += arch/arc/boot/dts/
97
Vineet Guptacfdbc2e2013-01-18 15:12:20 +053098# w/o this ifneq, make ARCH=arc clean was crapping out
99ifneq ($(platform-y),)
100core-y += arch/arc/plat-$(PLATFORM)/
101endif
102
103libs-y += arch/arc/lib/ $(LIBGCC)
104
105#default target for make without any arguements.
106KBUILD_IMAGE := bootpImage
107
108all: $(KBUILD_IMAGE)
109boot := arch/arc/boot
110
111bootpImage: vmlinux
112
113uImage: vmlinux
114 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
115
Vineet Gupta999159a2013-01-22 17:00:52 +0530116%.dtb %.dtb.S %.dtb.o: scripts
117 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
118
119dtbs: scripts
120 $(Q)$(MAKE) $(build)=$(boot)/dts dtbs
121
Vineet Guptacfdbc2e2013-01-18 15:12:20 +0530122archclean:
123 $(Q)$(MAKE) $(clean)=$(boot)
124
125# Hacks to enable final link due to absence of link-time branch relexation
126# and gcc choosing optimal(shorter) branches at -O3
127#
128# vineetg Feb 2010: -mlong-calls switched off for overall kernel build
129# However lib/decompress_inflate.o (.init.text) calls
130# zlib_inflate_workspacesize (.text) causing relocation errors.
131# Thus forcing all exten calls in this file to be long calls
132export CFLAGS_decompress_inflate.o = -mmedium-calls
133export CFLAGS_initramfs.o = -mmedium-calls