Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma
[linux-2.6-block.git] / arch / xtensa / Makefile
CommitLineData
8e1a6dd2
CZ
1#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6# Copyright (C) 2001 - 2005 Tensilica Inc.
420ae951 7# Copyright (C) 2014 Cadence Design Systems Inc.
8e1a6dd2
CZ
8#
9# This file is included by the global makefile so that you can add your own
10# architecture-specific flags and dependencies. Remember to do have actions
11# for "archclean" and "archdep" for cleaning up and making dependencies for
12# this architecture
13
14# Core configuration.
173d6681 15# (Use VAR=<xtensa_config> to use another default compiler.)
8e1a6dd2 16
420ae951 17variant-y := $(patsubst "%",%,$(CONFIG_XTENSA_VARIANT_NAME))
8e1a6dd2 18
173d6681
CZ
19VARIANT = $(variant-y)
20export VARIANT
8e1a6dd2 21
70cefe76
GU
22# Test for cross compiling
23
24ifneq ($(VARIANT),)
25 COMPILE_ARCH = $(shell uname -m)
26
27 ifneq ($(COMPILE_ARCH), xtensa)
28 ifndef CROSS_COMPILE
29 CROSS_COMPILE = xtensa_$(VARIANT)-
30 endif
31 endif
32endif
33
8e1a6dd2
CZ
34# Platform configuration
35
8e1a6dd2
CZ
36platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
37platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
0d456bad 38platform-$(CONFIG_XTENSA_PLATFORM_XTFPGA) := xtfpga
8e1a6dd2
CZ
39
40PLATFORM = $(platform-y)
41export PLATFORM
42
b2444d34 43# temporarily until string.h is fixed
a753cd9a 44KBUILD_CFLAGS += -ffreestanding -D__linux__
f8f02ca7 45KBUILD_CFLAGS += -pipe -mlongcalls -mtext-section-literals
cf1c0aaf 46KBUILD_CFLAGS += $(call cc-option,-mforce-no-pic,)
7bf5234d 47KBUILD_CFLAGS += $(call cc-option,-mno-serialize-volatile,)
cf1c0aaf 48
f8f02ca7
MF
49KBUILD_AFLAGS += -mlongcalls -mtext-section-literals
50
65501622 51ifneq ($(CONFIG_LD_NO_RELAX),)
d503ac53 52KBUILD_LDFLAGS := --no-relax
65501622
CZ
53endif
54
123f15e6 55ifeq ($(shell echo __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1)
72100ed7 56CHECKFLAGS += -D__XTENSA_EB__
4611bf7e 57KBUILD_CPPFLAGS += -DCONFIG_CPU_BIG_ENDIAN
72100ed7 58endif
123f15e6 59ifeq ($(shell echo __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1)
72100ed7 60CHECKFLAGS += -D__XTENSA_EL__
4611bf7e 61KBUILD_CPPFLAGS += -DCONFIG_CPU_LITTLE_ENDIAN
72100ed7
MF
62endif
63
367b8112
CZ
64vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
65plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
66
367b8112 67KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(vardirs) $(plfdirs))
367b8112 68
e7d163f7 69KBUILD_DEFCONFIG := iss_defconfig
8e1a6dd2 70
f1933189
CZ
71# Only build variant and/or platform if it includes a Makefile
72
0eff08b5
GU
73buildvar := $(shell test -e $(srctree)/arch/xtensa/variants/$(VARIANT)/Makefile && echo arch/xtensa/variants/$(VARIANT)/)
74buildplf := $(shell test -e $(srctree)/arch/xtensa/platforms/$(PLATFORM)/Makefile && echo arch/xtensa/platforms/$(PLATFORM)/)
f1933189
CZ
75
76# Find libgcc.a
8e1a6dd2 77
a0f97e06 78LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
8e1a6dd2
CZ
79
80head-y := arch/xtensa/kernel/head.o
e7d163f7 81core-y += arch/xtensa/kernel/ arch/xtensa/mm/
f1933189
CZ
82core-y += $(buildvar) $(buildplf)
83
8e1a6dd2 84libs-y += arch/xtensa/lib/ $(LIBGCC)
e6ffe17e 85drivers-$(CONFIG_OPROFILE) += arch/xtensa/oprofile/
8e1a6dd2 86
da844a81 87ifneq ($(CONFIG_BUILTIN_DTB),"")
2a02bc16 88core-$(CONFIG_OF) += arch/xtensa/boot/dts/
da844a81
MF
89endif
90
e7d163f7
CZ
91boot := arch/xtensa/boot
92
9a736fcb 93all Image zImage uImage: vmlinux
8e1a6dd2
CZ
94 $(Q)$(MAKE) $(build)=$(boot) $@
95
da844a81 96%.dtb:
2a02bc16 97 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
da844a81 98
99085704
RH
99dtbs: scripts
100 $(Q)$(MAKE) $(build)=$(boot)/dts
101
8e1a6dd2 102define archhelp
9a736fcb 103 @echo '* Image - Kernel ELF image with reset vector'
8e1a6dd2 104 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
9a736fcb 105 @echo '* uImage - U-Boot wrapped image'
99085704 106 @echo ' dtbs - Build device tree blobs for enabled boards'
8e1a6dd2 107endef