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