xref: /openbmc/linux/arch/xtensa/Makefile (revision 2a02bc16)
18e1a6dd2SChris Zankel#
28e1a6dd2SChris Zankel# This file is subject to the terms and conditions of the GNU General Public
38e1a6dd2SChris Zankel# License.  See the file "COPYING" in the main directory of this archive
48e1a6dd2SChris Zankel# for more details.
58e1a6dd2SChris Zankel#
68e1a6dd2SChris Zankel# Copyright (C) 2001 - 2005  Tensilica Inc.
78e1a6dd2SChris Zankel#
88e1a6dd2SChris Zankel# This file is included by the global makefile so that you can add your own
98e1a6dd2SChris Zankel# architecture-specific flags and dependencies. Remember to do have actions
108e1a6dd2SChris Zankel# for "archclean" and "archdep" for cleaning up and making dependencies for
118e1a6dd2SChris Zankel# this architecture
128e1a6dd2SChris Zankel
138e1a6dd2SChris Zankel# Core configuration.
14173d6681SChris Zankel# (Use VAR=<xtensa_config> to use another default compiler.)
158e1a6dd2SChris Zankel
16173d6681SChris Zankelvariant-$(CONFIG_XTENSA_VARIANT_FSF)		:= fsf
170025427eSChris Zankelvariant-$(CONFIG_XTENSA_VARIANT_DC232B)		:= dc232b
18000af2c5SJohannes Weinervariant-$(CONFIG_XTENSA_VARIANT_S6000)		:= s6000
19173d6681SChris Zankelvariant-$(CONFIG_XTENSA_VARIANT_LINUX_CUSTOM)	:= custom
208e1a6dd2SChris Zankel
21173d6681SChris ZankelVARIANT = $(variant-y)
22173d6681SChris Zankelexport VARIANT
238e1a6dd2SChris Zankel
2470cefe76SGeert Uytterhoeven# Test for cross compiling
2570cefe76SGeert Uytterhoeven
2670cefe76SGeert Uytterhoevenifneq ($(VARIANT),)
2770cefe76SGeert Uytterhoeven  COMPILE_ARCH = $(shell uname -m)
2870cefe76SGeert Uytterhoeven
2970cefe76SGeert Uytterhoeven  ifneq ($(COMPILE_ARCH), xtensa)
3070cefe76SGeert Uytterhoeven    ifndef CROSS_COMPILE
3170cefe76SGeert Uytterhoeven      CROSS_COMPILE = xtensa_$(VARIANT)-
3270cefe76SGeert Uytterhoeven    endif
3370cefe76SGeert Uytterhoeven  endif
3470cefe76SGeert Uytterhoevenendif
3570cefe76SGeert Uytterhoeven
368e1a6dd2SChris Zankel# Platform configuration
378e1a6dd2SChris Zankel
388e1a6dd2SChris Zankelplatform-$(CONFIG_XTENSA_PLATFORM_XT2000)	:= xt2000
398e1a6dd2SChris Zankelplatform-$(CONFIG_XTENSA_PLATFORM_ISS)		:= iss
40f82e939fSJohannes Weinerplatform-$(CONFIG_XTENSA_PLATFORM_S6105)	:= s6105
410d456badSMax Filippovplatform-$(CONFIG_XTENSA_PLATFORM_XTFPGA)	:= xtfpga
428e1a6dd2SChris Zankel
438e1a6dd2SChris ZankelPLATFORM = $(platform-y)
448e1a6dd2SChris Zankelexport PLATFORM
458e1a6dd2SChris Zankel
46b2444d34SChris Zankel# temporarily until string.h is fixed
47a753cd9aSMax FilippovKBUILD_CFLAGS += -ffreestanding -D__linux__
48b2444d34SChris Zankel
49a0f97e06SSam RavnborgKBUILD_CFLAGS += -pipe -mlongcalls
508e1a6dd2SChris Zankel
51cf1c0aafSChris ZankelKBUILD_CFLAGS += $(call cc-option,-mforce-no-pic,)
52cf1c0aafSChris Zankel
5365501622SChris Zankelifneq ($(CONFIG_LD_NO_RELAX),)
5465501622SChris ZankelLDFLAGS := --no-relax
5565501622SChris Zankelendif
5665501622SChris Zankel
5772100ed7SMax Filippovifeq ($(shell echo -e __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1)
5872100ed7SMax FilippovCHECKFLAGS += -D__XTENSA_EB__
5972100ed7SMax Filippovendif
6072100ed7SMax Filippovifeq ($(shell echo -e __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1)
6172100ed7SMax FilippovCHECKFLAGS += -D__XTENSA_EL__
6272100ed7SMax Filippovendif
6372100ed7SMax Filippov
64367b8112SChris Zankelvardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
65367b8112SChris Zankelplfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
66367b8112SChris Zankel
67367b8112SChris Zankelifeq ($(KBUILD_SRC),)
68367b8112SChris ZankelKBUILD_CPPFLAGS += $(patsubst %,-I%include,$(vardirs) $(plfdirs))
69367b8112SChris Zankelelse
70367b8112SChris ZankelKBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(vardirs) $(plfdirs))
71367b8112SChris Zankelendif
72367b8112SChris Zankel
73e7d163f7SChris ZankelKBUILD_DEFCONFIG := iss_defconfig
748e1a6dd2SChris Zankel
75f1933189SChris Zankel# Only build variant and/or platform if it includes a Makefile
76f1933189SChris Zankel
770eff08b5SGeert Uytterhoevenbuildvar := $(shell test -e $(srctree)/arch/xtensa/variants/$(VARIANT)/Makefile && echo arch/xtensa/variants/$(VARIANT)/)
780eff08b5SGeert Uytterhoevenbuildplf := $(shell test -e $(srctree)/arch/xtensa/platforms/$(PLATFORM)/Makefile && echo arch/xtensa/platforms/$(PLATFORM)/)
79f1933189SChris Zankel
80f1933189SChris Zankel# Find libgcc.a
818e1a6dd2SChris Zankel
82a0f97e06SSam RavnborgLIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
838e1a6dd2SChris Zankel
848e1a6dd2SChris Zankelhead-y		:= arch/xtensa/kernel/head.o
85e7d163f7SChris Zankelcore-y		+= arch/xtensa/kernel/ arch/xtensa/mm/
86f1933189SChris Zankelcore-y		+= $(buildvar) $(buildplf)
87f1933189SChris Zankel
888e1a6dd2SChris Zankellibs-y		+= arch/xtensa/lib/ $(LIBGCC)
898e1a6dd2SChris Zankel
90da844a81SMax Filippovifneq ($(CONFIG_BUILTIN_DTB),"")
912a02bc16SStephen Warrencore-$(CONFIG_OF) += arch/xtensa/boot/dts/
92da844a81SMax Filippovendif
93da844a81SMax Filippov
948e1a6dd2SChris Zankelboot		:= arch/xtensa/boot
958e1a6dd2SChris Zankel
968e1a6dd2SChris Zankelall: zImage
978e1a6dd2SChris Zankel
988e1a6dd2SChris ZankelbzImage : zImage
998e1a6dd2SChris Zankel
1009ad79b58SMax FilippovzImage: vmlinux
1018e1a6dd2SChris Zankel	$(Q)$(MAKE) $(build)=$(boot) $@
1028e1a6dd2SChris Zankel
103da844a81SMax Filippov%.dtb:
1042a02bc16SStephen Warren	$(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
105da844a81SMax Filippov
1068e1a6dd2SChris Zankeldefine archhelp
1078e1a6dd2SChris Zankel  @echo '* zImage      - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
1088e1a6dd2SChris Zankelendef
109