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