blob: acf05be2492911ae50b270d788f0a10c69087742 [file] [log] [blame]
Chris Zankel8e1a6dd2005-06-23 22:01:10 -07001#
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#
8# This file is included by the global makefile so that you can add your own
9# architecture-specific flags and dependencies. Remember to do have actions
10# for "archclean" and "archdep" for cleaning up and making dependencies for
11# this architecture
12
13# Core configuration.
Chris Zankel173d66812006-12-10 02:18:48 -080014# (Use VAR=<xtensa_config> to use another default compiler.)
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070015
Chris Zankel173d66812006-12-10 02:18:48 -080016variant-$(CONFIG_XTENSA_VARIANT_FSF) := fsf
17variant-$(CONFIG_XTENSA_VARIANT_LINUX_CUSTOM) := custom
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070018
Chris Zankel173d66812006-12-10 02:18:48 -080019VARIANT = $(variant-y)
20export VARIANT
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070021
22# Platform configuration
23
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070024platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
25platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
26
27PLATFORM = $(platform-y)
28export PLATFORM
29
Chris Zankelb2444d32007-08-04 09:23:54 -070030# temporarily until string.h is fixed
31cflags-y += -ffreestanding
32
33cflags-y += -pipe -mlongcalls
34
35CFLAGS += $(cflags-y)
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070036
Chris Zankele7d163f2005-06-30 02:58:59 -070037KBUILD_DEFCONFIG := iss_defconfig
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070038
39# ramdisk/initrd support
40# You need a compressed ramdisk image, named ramdisk.gz in
41# arch/xtensa/boot/ramdisk
42
43core-$(CONFIG_EMBEDDED_RAMDISK) += arch/xtensa/boot/ramdisk/
44
45# Test for cross compiling
46
Chris Zankel173d66812006-12-10 02:18:48 -080047ifneq ($(VARIANT),)
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070048 COMPILE_ARCH = $(shell uname -m)
49
50 ifneq ($(COMPILE_ARCH), xtensa)
51 ifndef CROSS_COMPILE
Chris Zankel173d66812006-12-10 02:18:48 -080052 CROSS_COMPILE = xtensa_$(VARIANT)-
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070053 endif
54 endif
55endif
56
57#
58
59LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
60
61head-y := arch/xtensa/kernel/head.o
Chris Zankele7d163f2005-06-30 02:58:59 -070062core-y += arch/xtensa/kernel/ arch/xtensa/mm/
63ifneq ($(PLATFORM),)
64core-y += arch/xtensa/platform-$(PLATFORM)/
65endif
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070066libs-y += arch/xtensa/lib/ $(LIBGCC)
67
Chris Zankele7d163f2005-06-30 02:58:59 -070068boot := arch/xtensa/boot
69
70archinc := include/asm-xtensa
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070071
Sam Ravnborg5bb78262005-09-11 22:30:22 +020072archprepare: $(archinc)/.platform
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070073
Chris Zankel173d66812006-12-10 02:18:48 -080074# Update processor variant and platform symlinks if something which affects
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070075# them changed.
76
Roman Zippel2e3646e2006-06-08 22:12:42 -070077$(archinc)/.platform: $(wildcard include/config/arch/*.h) include/config/auto.conf
Chris Zankel173d66812006-12-10 02:18:48 -080078 @echo ' SYMLINK $(archinc)/variant -> $(archinc)/variant-$(VARIANT)'
Chris Zankele7d163f2005-06-30 02:58:59 -070079 $(Q)mkdir -p $(archinc)
Chris Zankel173d66812006-12-10 02:18:48 -080080 $(Q)ln -fsn $(srctree)/$(archinc)/variant-$(VARIANT) $(archinc)/variant
Chris Zankele7d163f2005-06-30 02:58:59 -070081 @echo ' SYMLINK $(archinc)/platform -> $(archinc)/platform-$(PLATFORM)'
82 $(Q)ln -fsn $(srctree)/$(archinc)/platform-$(PLATFORM) $(archinc)/platform
83 @touch $@
84
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070085
86all: zImage
87
88bzImage : zImage
89
90zImage zImage.initrd: vmlinux
91 $(Q)$(MAKE) $(build)=$(boot) $@
92
Sam Ravnborg0013a852005-09-09 20:57:26 +020093CLEAN_FILES += arch/xtensa/vmlinux.lds \
Chris Zankel173d66812006-12-10 02:18:48 -080094 $(archinc)/platform $(archinc)/variant \
Chris Zankele7d163f2005-06-30 02:58:59 -070095 $(archinc)/.platform
Chris Zankel8e1a6dd2005-06-23 22:01:10 -070096
97define archhelp
98 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
99endef
100