2005-06-24 07:01:10 +02:00
|
|
|
#
|
|
|
|
# This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
# License. See the file "COPYING" in the main directory of this archive
|
|
|
|
# for more details.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2001 - 2005 Tensilica Inc.
|
2014-06-16 05:25:06 +02:00
|
|
|
# Copyright (C) 2014 Cadence Design Systems Inc.
|
2005-06-24 07:01:10 +02:00
|
|
|
#
|
|
|
|
# This file is included by the global makefile so that you can add your own
|
|
|
|
# architecture-specific flags and dependencies. Remember to do have actions
|
|
|
|
# for "archclean" and "archdep" for cleaning up and making dependencies for
|
|
|
|
# this architecture
|
|
|
|
|
|
|
|
# Core configuration.
|
2006-12-10 11:18:48 +01:00
|
|
|
# (Use VAR=<xtensa_config> to use another default compiler.)
|
2005-06-24 07:01:10 +02:00
|
|
|
|
2014-06-16 05:25:06 +02:00
|
|
|
variant-y := $(patsubst "%",%,$(CONFIG_XTENSA_VARIANT_NAME))
|
2005-06-24 07:01:10 +02:00
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
VARIANT = $(variant-y)
|
|
|
|
export VARIANT
|
2005-06-24 07:01:10 +02:00
|
|
|
|
2012-05-12 22:39:08 +02:00
|
|
|
# Test for cross compiling
|
|
|
|
|
|
|
|
ifneq ($(VARIANT),)
|
|
|
|
COMPILE_ARCH = $(shell uname -m)
|
|
|
|
|
|
|
|
ifneq ($(COMPILE_ARCH), xtensa)
|
|
|
|
ifndef CROSS_COMPILE
|
|
|
|
CROSS_COMPILE = xtensa_$(VARIANT)-
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2005-06-24 07:01:10 +02:00
|
|
|
# Platform configuration
|
|
|
|
|
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
|
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
|
2012-11-05 04:37:14 +01:00
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_XTFPGA) := xtfpga
|
2005-06-24 07:01:10 +02:00
|
|
|
|
|
|
|
PLATFORM = $(platform-y)
|
|
|
|
export PLATFORM
|
|
|
|
|
2007-08-04 18:23:54 +02:00
|
|
|
# temporarily until string.h is fixed
|
2012-09-17 03:44:51 +02:00
|
|
|
KBUILD_CFLAGS += -ffreestanding -D__linux__
|
2017-12-04 05:55:35 +01:00
|
|
|
KBUILD_CFLAGS += -pipe -mlongcalls -mtext-section-literals
|
2010-05-02 10:00:22 +02:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-mforce-no-pic,)
|
2017-04-28 18:40:00 +02:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-mno-serialize-volatile,)
|
2010-05-02 10:00:22 +02:00
|
|
|
|
2017-12-04 05:55:35 +01:00
|
|
|
KBUILD_AFLAGS += -mlongcalls -mtext-section-literals
|
|
|
|
|
2012-11-14 00:16:36 +01:00
|
|
|
ifneq ($(CONFIG_LD_NO_RELAX),)
|
|
|
|
LDFLAGS := --no-relax
|
|
|
|
endif
|
|
|
|
|
2013-08-22 16:09:47 +02:00
|
|
|
ifeq ($(shell echo __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1)
|
2012-12-10 22:26:25 +01:00
|
|
|
CHECKFLAGS += -D__XTENSA_EB__
|
2016-03-01 00:00:59 +01:00
|
|
|
KBUILD_CPPFLAGS += -DCONFIG_CPU_BIG_ENDIAN
|
2012-12-10 22:26:25 +01:00
|
|
|
endif
|
2013-08-22 16:09:47 +02:00
|
|
|
ifeq ($(shell echo __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1)
|
2012-12-10 22:26:25 +01:00
|
|
|
CHECKFLAGS += -D__XTENSA_EL__
|
2016-03-01 00:00:59 +01:00
|
|
|
KBUILD_CPPFLAGS += -DCONFIG_CPU_LITTLE_ENDIAN
|
2012-12-10 22:26:25 +01:00
|
|
|
endif
|
|
|
|
|
2008-11-06 15:40:46 +01:00
|
|
|
vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
|
|
|
|
plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
|
|
|
|
|
|
|
|
ifeq ($(KBUILD_SRC),)
|
|
|
|
KBUILD_CPPFLAGS += $(patsubst %,-I%include,$(vardirs) $(plfdirs))
|
|
|
|
else
|
|
|
|
KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(vardirs) $(plfdirs))
|
|
|
|
endif
|
|
|
|
|
2005-06-30 11:58:59 +02:00
|
|
|
KBUILD_DEFCONFIG := iss_defconfig
|
2005-06-24 07:01:10 +02:00
|
|
|
|
2009-04-03 01:58:53 +02:00
|
|
|
# Only build variant and/or platform if it includes a Makefile
|
|
|
|
|
2012-06-20 21:52:59 +02:00
|
|
|
buildvar := $(shell test -e $(srctree)/arch/xtensa/variants/$(VARIANT)/Makefile && echo arch/xtensa/variants/$(VARIANT)/)
|
|
|
|
buildplf := $(shell test -e $(srctree)/arch/xtensa/platforms/$(PLATFORM)/Makefile && echo arch/xtensa/platforms/$(PLATFORM)/)
|
2009-04-03 01:58:53 +02:00
|
|
|
|
|
|
|
# Find libgcc.a
|
2005-06-24 07:01:10 +02:00
|
|
|
|
2007-10-14 22:21:35 +02:00
|
|
|
LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
|
2005-06-24 07:01:10 +02:00
|
|
|
|
|
|
|
head-y := arch/xtensa/kernel/head.o
|
2005-06-30 11:58:59 +02:00
|
|
|
core-y += arch/xtensa/kernel/ arch/xtensa/mm/
|
2009-04-03 01:58:53 +02:00
|
|
|
core-y += $(buildvar) $(buildplf)
|
|
|
|
|
2005-06-24 07:01:10 +02:00
|
|
|
libs-y += arch/xtensa/lib/ $(LIBGCC)
|
2008-05-22 02:43:50 +02:00
|
|
|
drivers-$(CONFIG_OPROFILE) += arch/xtensa/oprofile/
|
2005-06-24 07:01:10 +02:00
|
|
|
|
2012-11-03 21:30:13 +01:00
|
|
|
ifneq ($(CONFIG_BUILTIN_DTB),"")
|
2013-01-02 19:27:14 +01:00
|
|
|
core-$(CONFIG_OF) += arch/xtensa/boot/dts/
|
2012-11-03 21:30:13 +01:00
|
|
|
endif
|
|
|
|
|
2005-06-30 11:58:59 +02:00
|
|
|
boot := arch/xtensa/boot
|
|
|
|
|
2016-12-25 13:58:57 +01:00
|
|
|
all Image zImage uImage: vmlinux
|
2005-06-24 07:01:10 +02:00
|
|
|
$(Q)$(MAKE) $(build)=$(boot) $@
|
|
|
|
|
2012-11-03 21:30:13 +01:00
|
|
|
%.dtb:
|
2013-01-02 19:27:14 +01:00
|
|
|
$(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@
|
2012-11-03 21:30:13 +01:00
|
|
|
|
2015-10-07 00:51:21 +02:00
|
|
|
dtbs: scripts
|
|
|
|
$(Q)$(MAKE) $(build)=$(boot)/dts
|
|
|
|
|
2005-06-24 07:01:10 +02:00
|
|
|
define archhelp
|
2016-12-25 13:58:57 +01:00
|
|
|
@echo '* Image - Kernel ELF image with reset vector'
|
2005-06-24 07:01:10 +02:00
|
|
|
@echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
|
2016-12-25 13:58:57 +01:00
|
|
|
@echo '* uImage - U-Boot wrapped image'
|
2015-10-07 00:51:21 +02:00
|
|
|
@echo ' dtbs - Build device tree blobs for enabled boards'
|
2005-06-24 07:01:10 +02:00
|
|
|
endef
|