MIPS: SEAD3: Nuke PIC32 I2C driver.
[sfrench/cifs-2.6.git] / arch / xtensa / Makefile
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.
7 # Copyright (C) 2014 Cadence Design Systems Inc.
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.
15 # (Use VAR=<xtensa_config> to use another default compiler.)
16
17 variant-y := $(patsubst "%",%,$(CONFIG_XTENSA_VARIANT_NAME))
18
19 VARIANT = $(variant-y)
20 export VARIANT
21
22 # Test for cross compiling
23
24 ifneq ($(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
32 endif
33
34 # Platform configuration
35
36 platform-$(CONFIG_XTENSA_PLATFORM_XT2000)       := xt2000
37 platform-$(CONFIG_XTENSA_PLATFORM_ISS)          := iss
38 platform-$(CONFIG_XTENSA_PLATFORM_S6105)        := s6105
39 platform-$(CONFIG_XTENSA_PLATFORM_XTFPGA)       := xtfpga
40
41 PLATFORM = $(platform-y)
42 export PLATFORM
43
44 # temporarily until string.h is fixed
45 KBUILD_CFLAGS += -ffreestanding -D__linux__
46
47 KBUILD_CFLAGS += -pipe -mlongcalls
48
49 KBUILD_CFLAGS += $(call cc-option,-mforce-no-pic,)
50
51 ifneq ($(CONFIG_LD_NO_RELAX),)
52 LDFLAGS := --no-relax
53 endif
54
55 ifeq ($(shell echo __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1)
56 CHECKFLAGS += -D__XTENSA_EB__
57 endif
58 ifeq ($(shell echo __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1)
59 CHECKFLAGS += -D__XTENSA_EL__
60 endif
61
62 vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
63 plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
64
65 ifeq ($(KBUILD_SRC),)
66 KBUILD_CPPFLAGS += $(patsubst %,-I%include,$(vardirs) $(plfdirs))
67 else
68 KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(vardirs) $(plfdirs))
69 endif
70
71 KBUILD_DEFCONFIG := iss_defconfig
72
73 # Only build variant and/or platform if it includes a Makefile
74
75 buildvar := $(shell test -e $(srctree)/arch/xtensa/variants/$(VARIANT)/Makefile && echo arch/xtensa/variants/$(VARIANT)/)
76 buildplf := $(shell test -e $(srctree)/arch/xtensa/platforms/$(PLATFORM)/Makefile && echo arch/xtensa/platforms/$(PLATFORM)/)
77
78 # Find libgcc.a
79
80 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
81
82 head-y          := arch/xtensa/kernel/head.o
83 core-y          += arch/xtensa/kernel/ arch/xtensa/mm/
84 core-y          += $(buildvar) $(buildplf)
85
86 libs-y          += arch/xtensa/lib/ $(LIBGCC)
87 drivers-$(CONFIG_OPROFILE)      += arch/xtensa/oprofile/
88
89 ifneq ($(CONFIG_BUILTIN_DTB),"")
90 core-$(CONFIG_OF) += arch/xtensa/boot/dts/
91 endif
92
93 boot            := arch/xtensa/boot
94
95 all: zImage
96
97 bzImage : zImage
98
99 zImage: vmlinux
100         $(Q)$(MAKE) $(build)=$(boot) $@
101
102 %.dtb:
103         $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
104
105 define archhelp
106   @echo '* zImage      - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
107 endef