2005-06-24 09:01:10 +04: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 07:25:06 +04:00
|
|
|
# Copyright (C) 2014 Cadence Design Systems Inc.
|
2005-06-24 09:01:10 +04:00
|
|
|
#
|
|
|
|
# This file is included by the global makefile so that you can add your own
|
2021-10-13 09:36:22 +03:00
|
|
|
# architecture-specific flags and dependencies.
|
2005-06-24 09:01:10 +04:00
|
|
|
|
|
|
|
# Core configuration.
|
2006-12-10 13:18:48 +03:00
|
|
|
# (Use VAR=<xtensa_config> to use another default compiler.)
|
2005-06-24 09:01:10 +04:00
|
|
|
|
2014-06-16 07:25:06 +04:00
|
|
|
variant-y := $(patsubst "%",%,$(CONFIG_XTENSA_VARIANT_NAME))
|
2005-06-24 09:01:10 +04:00
|
|
|
|
2006-12-10 13:18:48 +03:00
|
|
|
VARIANT = $(variant-y)
|
2005-06-24 09:01:10 +04:00
|
|
|
|
2012-05-13 00:39:08 +04:00
|
|
|
ifneq ($(VARIANT),)
|
2021-05-01 20:24:36 +03:00
|
|
|
ifdef cross_compiling
|
2012-05-13 00:39:08 +04:00
|
|
|
ifndef CROSS_COMPILE
|
|
|
|
CROSS_COMPILE = xtensa_$(VARIANT)-
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2005-06-24 09:01:10 +04:00
|
|
|
# Platform configuration
|
|
|
|
|
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
|
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
|
2012-11-05 07:37:14 +04:00
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_XTFPGA) := xtfpga
|
2005-06-24 09:01:10 +04:00
|
|
|
|
2007-08-04 20:23:54 +04:00
|
|
|
# temporarily until string.h is fixed
|
2012-09-17 05:44:51 +04:00
|
|
|
KBUILD_CFLAGS += -ffreestanding -D__linux__
|
2017-12-04 07:55:35 +03:00
|
|
|
KBUILD_CFLAGS += -pipe -mlongcalls -mtext-section-literals
|
2010-05-02 12:00:22 +04:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-mforce-no-pic,)
|
2017-04-28 19:40:00 +03:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-mno-serialize-volatile,)
|
2010-05-02 12:00:22 +04:00
|
|
|
|
2017-12-04 07:55:35 +03:00
|
|
|
KBUILD_AFLAGS += -mlongcalls -mtext-section-literals
|
|
|
|
|
2012-11-14 03:16:36 +04:00
|
|
|
ifneq ($(CONFIG_LD_NO_RELAX),)
|
2018-08-24 02:20:39 +03:00
|
|
|
KBUILD_LDFLAGS := --no-relax
|
2012-11-14 03:16:36 +04:00
|
|
|
endif
|
|
|
|
|
2021-03-13 15:23:41 +03:00
|
|
|
CHECKFLAGS += -D$(if $(CONFIG_CPU_BIG_ENDIAN),__XTENSA_EB__,__XTENSA_EL__)
|
2012-12-11 01:26:25 +04:00
|
|
|
|
2008-11-06 17:40:46 +03:00
|
|
|
vardirs := $(patsubst %,arch/xtensa/variants/%/,$(variant-y))
|
|
|
|
plfdirs := $(patsubst %,arch/xtensa/platforms/%/,$(platform-y))
|
|
|
|
|
|
|
|
KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(vardirs) $(plfdirs))
|
|
|
|
|
2005-06-30 13:58:59 +04:00
|
|
|
KBUILD_DEFCONFIG := iss_defconfig
|
2005-06-24 09:01:10 +04:00
|
|
|
|
2009-04-03 03:58:53 +04:00
|
|
|
# Find libgcc.a
|
2005-06-24 09:01:10 +04:00
|
|
|
|
2007-10-15 00:21:35 +04:00
|
|
|
LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
|
2005-06-24 09:01:10 +04:00
|
|
|
|
|
|
|
head-y := arch/xtensa/kernel/head.o
|
2009-04-03 03:58:53 +04:00
|
|
|
|
2005-06-24 09:01:10 +04:00
|
|
|
libs-y += arch/xtensa/lib/ $(LIBGCC)
|
|
|
|
|
2005-06-30 13:58:59 +04:00
|
|
|
boot := arch/xtensa/boot
|
|
|
|
|
2017-01-04 04:57:51 +03:00
|
|
|
all Image zImage uImage xipImage: vmlinux
|
2005-06-24 09:01:10 +04:00
|
|
|
$(Q)$(MAKE) $(build)=$(boot) $@
|
|
|
|
|
2018-11-13 13:19:30 +03:00
|
|
|
archheaders:
|
|
|
|
$(Q)$(MAKE) $(build)=arch/xtensa/kernel/syscalls all
|
|
|
|
|
2005-06-24 09:01:10 +04:00
|
|
|
define archhelp
|
2016-12-25 15:58:57 +03:00
|
|
|
@echo '* Image - Kernel ELF image with reset vector'
|
2005-06-24 09:01:10 +04:00
|
|
|
@echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
|
2016-12-25 15:58:57 +03:00
|
|
|
@echo '* uImage - U-Boot wrapped image'
|
2017-01-04 04:57:51 +03:00
|
|
|
@echo ' xipImage - XIP image'
|
2005-06-24 09:01:10 +04:00
|
|
|
endef
|