Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 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 | # |
| 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 Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 14 | # (Use VAR=<xtensa_config> to use another default compiler.) |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 15 | |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 16 | variant-$(CONFIG_XTENSA_VARIANT_FSF) := fsf |
Chris Zankel | 0025427 | 2008-10-21 09:11:43 -0700 | [diff] [blame] | 17 | variant-$(CONFIG_XTENSA_VARIANT_DC232B) := dc232b |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 18 | variant-$(CONFIG_XTENSA_VARIANT_LINUX_CUSTOM) := custom |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 19 | |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 20 | VARIANT = $(variant-y) |
| 21 | export VARIANT |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 22 | |
| 23 | # Platform configuration |
| 24 | |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 25 | platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000 |
| 26 | platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss |
| 27 | |
| 28 | PLATFORM = $(platform-y) |
| 29 | export PLATFORM |
| 30 | |
Chris Zankel | b2444d3 | 2007-08-04 09:23:54 -0700 | [diff] [blame] | 31 | # temporarily until string.h is fixed |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 32 | KBUILD_CFLAGS += -ffreestanding |
Chris Zankel | b2444d3 | 2007-08-04 09:23:54 -0700 | [diff] [blame] | 33 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 34 | KBUILD_CFLAGS += -pipe -mlongcalls |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 35 | |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 36 | KBUILD_DEFCONFIG := iss_defconfig |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 37 | |
| 38 | # ramdisk/initrd support |
| 39 | # You need a compressed ramdisk image, named ramdisk.gz in |
| 40 | # arch/xtensa/boot/ramdisk |
| 41 | |
| 42 | core-$(CONFIG_EMBEDDED_RAMDISK) += arch/xtensa/boot/ramdisk/ |
| 43 | |
| 44 | # Test for cross compiling |
| 45 | |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 46 | ifneq ($(VARIANT),) |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 47 | COMPILE_ARCH = $(shell uname -m) |
| 48 | |
| 49 | ifneq ($(COMPILE_ARCH), xtensa) |
| 50 | ifndef CROSS_COMPILE |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 51 | CROSS_COMPILE = xtensa_$(VARIANT)- |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 52 | endif |
| 53 | endif |
| 54 | endif |
| 55 | |
| 56 | # |
| 57 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 58 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 59 | |
| 60 | head-y := arch/xtensa/kernel/head.o |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 61 | core-y += arch/xtensa/kernel/ arch/xtensa/mm/ |
| 62 | ifneq ($(PLATFORM),) |
Chris Zankel | b26d0ab | 2007-09-13 13:44:07 -0700 | [diff] [blame] | 63 | core-y += arch/xtensa/platforms/$(PLATFORM)/ |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 64 | endif |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 65 | libs-y += arch/xtensa/lib/ $(LIBGCC) |
| 66 | |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 67 | boot := arch/xtensa/boot |
| 68 | |
| 69 | archinc := include/asm-xtensa |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 70 | |
Sam Ravnborg | 5bb7826 | 2005-09-11 22:30:22 +0200 | [diff] [blame] | 71 | archprepare: $(archinc)/.platform |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 72 | |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 73 | # Update processor variant and platform symlinks if something which affects |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 74 | # them changed. |
| 75 | |
Roman Zippel | 2e3646e | 2006-06-08 22:12:42 -0700 | [diff] [blame] | 76 | $(archinc)/.platform: $(wildcard include/config/arch/*.h) include/config/auto.conf |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 77 | @echo ' SYMLINK $(archinc)/variant -> $(archinc)/variant-$(VARIANT)' |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 78 | $(Q)mkdir -p $(archinc) |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 79 | $(Q)ln -fsn $(srctree)/$(archinc)/variant-$(VARIANT) $(archinc)/variant |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 80 | @echo ' SYMLINK $(archinc)/platform -> $(archinc)/platform-$(PLATFORM)' |
| 81 | $(Q)ln -fsn $(srctree)/$(archinc)/platform-$(PLATFORM) $(archinc)/platform |
| 82 | @touch $@ |
| 83 | |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 84 | |
| 85 | all: zImage |
| 86 | |
| 87 | bzImage : zImage |
| 88 | |
| 89 | zImage zImage.initrd: vmlinux |
| 90 | $(Q)$(MAKE) $(build)=$(boot) $@ |
| 91 | |
Sam Ravnborg | 0013a85 | 2005-09-09 20:57:26 +0200 | [diff] [blame] | 92 | CLEAN_FILES += arch/xtensa/vmlinux.lds \ |
Chris Zankel | 173d668 | 2006-12-10 02:18:48 -0800 | [diff] [blame] | 93 | $(archinc)/platform $(archinc)/variant \ |
Chris Zankel | e7d163f | 2005-06-30 02:58:59 -0700 | [diff] [blame] | 94 | $(archinc)/.platform |
Chris Zankel | 8e1a6dd | 2005-06-23 22:01:10 -0700 | [diff] [blame] | 95 | |
| 96 | define archhelp |
| 97 | @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)' |
| 98 | endef |
| 99 | |