OSDN Git Service

9a36c04e4306ca3f3fd38b4d5bbdb8cc7d60d508
[android-x86/kernel.git] / arch / arc / Makefile
1 #
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
9 UTS_MACHINE := arc
10
11 KBUILD_DEFCONFIG := fpga_defconfig
12
13 # For ARC FPGA Platforms
14 platform-$(CONFIG_ARC_PLAT_FPGA_LEGACY) := arcfpga
15 #New platform adds here
16
17 PLATFORM := $(platform-y)
18 export PLATFORM
19
20 cflags-y        += -Iarch/arc/plat-$(PLATFORM)/include
21 cflags-y        += -mA7 -fno-common -pipe -fno-builtin -D__linux__
22
23 LINUXINCLUDE    +=  -include ${src}/arch/arc/include/asm/defines.h
24
25 ifdef 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>
31 LINUXINCLUDE    +=  -include ${src}/arch/arc/include/asm/current.h
32 endif
33
34 atleast_gcc44 :=  $(call cc-ifversion, -gt, 0402, y)
35 cflags-$(atleast_gcc44)                 += -fsection-anchors
36
37 cflags-$(CONFIG_ARC_HAS_LLSC)           += -mlock
38 cflags-$(CONFIG_ARC_HAS_SWAPE)          += -mswape
39 cflags-$(CONFIG_ARC_HAS_RTSC)           += -mrtsc
40 cflags-$(CONFIG_ARC_DW2_UNWIND)         += -fasynchronous-unwind-tables
41
42 ifndef CONFIG_CC_OPTIMIZE_FOR_SIZE
43 # Generic build system uses -O2, we want -O3
44 cflags-y  += -O3
45 endif
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
49 disable_small_data := y
50 cflags-$(disable_small_data)            += -mno-sdata -fcall-used-gp
51
52 cflags-$(CONFIG_CPU_BIG_ENDIAN)         += -mbig-endian
53 ldflags-$(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
59 ldflags-y                               += -marclinux
60
61 ARC_LIBGCC                              := -mA7
62 cflags-$(CONFIG_ARC_HAS_HW_MPY)         += -multcost=16
63
64 ifndef 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
77 endif
78
79 LIBGCC  := $(shell $(CC) $(ARC_LIBGCC) $(cflags-y) --print-libgcc-file-name)
80
81 # Modules with short calls might break for calls into builtin-kernel
82 KBUILD_CFLAGS_MODULE    += -mlong-calls
83
84 # Finally dump eveything into kernel build system
85 KBUILD_CFLAGS   += $(cflags-y)
86 KBUILD_AFLAGS   += $(KBUILD_CFLAGS)
87 LDFLAGS         += $(ldflags-y)
88
89 # Needed for Linker script preprocessing
90 KBUILD_CPPFLAGS += -Iarch/arc/plat-$(PLATFORM)/include
91
92 head-y          := arch/arc/kernel/head.o
93
94 # See arch/arc/Kbuild for content of core part of the kernel
95 core-y          += arch/arc/
96
97 # w/o this dtb won't embed into kernel binary
98 core-y          += arch/arc/boot/dts/
99
100 # w/o this ifneq, make ARCH=arc clean was crapping out
101 ifneq ($(platform-y),)
102 core-y          += arch/arc/plat-$(PLATFORM)/
103 endif
104
105 drivers-$(CONFIG_OPROFILE)      += arch/arc/oprofile/
106
107 libs-y          += arch/arc/lib/ $(LIBGCC)
108
109 #default target for make without any arguements.
110 KBUILD_IMAGE := bootpImage
111
112 all:    $(KBUILD_IMAGE)
113 boot    := arch/arc/boot
114
115 bootpImage: vmlinux
116
117 uImage: vmlinux
118         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
119
120 %.dtb %.dtb.S %.dtb.o: scripts
121         $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
122
123 dtbs: scripts
124         $(Q)$(MAKE) $(build)=$(boot)/dts dtbs
125
126 archclean:
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
136 export CFLAGS_decompress_inflate.o = -mmedium-calls
137 export CFLAGS_initramfs.o = -mmedium-calls
138 ifdef CONFIG_SMP
139 export CFLAGS_core.o = -mmedium-calls
140 endif