Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # arch/arm/Makefile |
| 3 | # |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 4 | # This file is included by the global makefile so that you can add your own |
| 5 | # architecture-specific flags and dependencies. |
| 6 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | # This file is subject to the terms and conditions of the GNU General Public |
| 8 | # License. See the file "COPYING" in the main directory of this archive |
| 9 | # for more details. |
| 10 | # |
| 11 | # Copyright (C) 1995-2001 by Russell King |
| 12 | |
| 13 | LDFLAGS_vmlinux :=-p --no-undefined -X |
Catalin Marinas | 2658485 | 2009-05-30 14:00:18 +0100 | [diff] [blame] | 14 | ifeq ($(CONFIG_CPU_ENDIAN_BE8),y) |
| 15 | LDFLAGS_vmlinux += --be8 |
| 16 | endif |
Sam Ravnborg | 51b563f | 2009-09-20 12:28:22 +0200 | [diff] [blame] | 17 | |
Lennert Buytenhek | 1e621a8 | 2007-10-12 14:38:54 +0100 | [diff] [blame] | 18 | OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment -S |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | GZFLAGS :=-9 |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 20 | #KBUILD_CFLAGS +=-pipe |
George G. Davis | 5636810 | 2006-12-05 18:28:04 +0100 | [diff] [blame] | 21 | # Explicitly specifiy 32-bit ARM ISA since toolchain default can be -mthumb: |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 22 | KBUILD_CFLAGS +=$(call cc-option,-marm,) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Michal Marek | bd36559 | 2010-08-14 23:56:21 +0100 | [diff] [blame] | 24 | # Never generate .eh_frame |
| 25 | KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | # Do not use arch/arm/defconfig - it's always outdated. |
| 28 | # Select a platform tht is kept up-to-date |
| 29 | KBUILD_DEFCONFIG := versatile_defconfig |
| 30 | |
Uwe Kleine-Koenig | 3dbda77 | 2009-07-23 08:31:31 +0200 | [diff] [blame] | 31 | # defines filename extension depending memory management type. |
Hyok S. Choi | f8c07de | 2006-03-27 15:14:19 +0100 | [diff] [blame] | 32 | ifeq ($(CONFIG_MMU),) |
| 33 | MMUEXT := -nommu |
| 34 | endif |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | ifeq ($(CONFIG_FRAME_POINTER),y) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 37 | KBUILD_CFLAGS +=-fno-omit-frame-pointer -mapcs -mno-sched-prolog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | endif |
| 39 | |
Nicolas Pitre | c743f38 | 2010-05-24 23:55:42 -0400 | [diff] [blame] | 40 | ifeq ($(CONFIG_CC_STACKPROTECTOR),y) |
| 41 | KBUILD_CFLAGS +=-fstack-protector |
| 42 | endif |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | ifeq ($(CONFIG_CPU_BIG_ENDIAN),y) |
Sam Ravnborg | 06c5040 | 2007-10-15 22:17:25 +0200 | [diff] [blame] | 45 | KBUILD_CPPFLAGS += -mbig-endian |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | AS += -EB |
| 47 | LD += -EB |
| 48 | else |
Sam Ravnborg | 06c5040 | 2007-10-15 22:17:25 +0200 | [diff] [blame] | 49 | KBUILD_CPPFLAGS += -mlittle-endian |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | AS += -EL |
| 51 | LD += -EL |
| 52 | endif |
| 53 | |
| 54 | comma = , |
| 55 | |
| 56 | # This selects which instruction set is used. |
| 57 | # Note that GCC does not numerically define an architecture version |
| 58 | # macro, but instead defines a whole series of macros which makes |
| 59 | # testing for a specific architecture or later rather impossible. |
Catalin Marinas | 76ebc6a | 2008-09-29 11:06:09 +0100 | [diff] [blame] | 60 | arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$(comma)-march=armv7-a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | arch-$(CONFIG_CPU_32v6) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6) |
Catalin Marinas | 23688e9 | 2007-05-08 22:45:26 +0100 | [diff] [blame] | 62 | # Only override the compiler option if ARMv6. The ARMv6K extensions are |
| 63 | # always available in ARMv7 |
| 64 | ifeq ($(CONFIG_CPU_32v6),y) |
Russell King | 4a5f79e | 2005-11-03 15:48:21 +0000 | [diff] [blame] | 65 | arch-$(CONFIG_CPU_32v6K) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(comma)-march=armv6k) |
Catalin Marinas | 23688e9 | 2007-05-08 22:45:26 +0100 | [diff] [blame] | 66 | endif |
Lennert Buytenhek | 260e98e | 2006-08-28 12:51:20 +0100 | [diff] [blame] | 67 | arch-$(CONFIG_CPU_32v5) :=-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t) |
| 68 | arch-$(CONFIG_CPU_32v4T) :=-D__LINUX_ARM_ARCH__=4 -march=armv4t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | arch-$(CONFIG_CPU_32v4) :=-D__LINUX_ARM_ARCH__=4 -march=armv4 |
| 70 | arch-$(CONFIG_CPU_32v3) :=-D__LINUX_ARM_ARCH__=3 -march=armv3 |
| 71 | |
| 72 | # This selects how we optimise for the processor. |
| 73 | tune-$(CONFIG_CPU_ARM610) :=-mtune=arm610 |
| 74 | tune-$(CONFIG_CPU_ARM710) :=-mtune=arm710 |
Hyok S. Choi | 07e0da7 | 2006-09-26 17:37:36 +0900 | [diff] [blame] | 75 | tune-$(CONFIG_CPU_ARM7TDMI) :=-mtune=arm7tdmi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | tune-$(CONFIG_CPU_ARM720T) :=-mtune=arm7tdmi |
Hyok S. Choi | b731c31 | 2006-09-26 17:37:50 +0900 | [diff] [blame] | 77 | tune-$(CONFIG_CPU_ARM740T) :=-mtune=arm7tdmi |
Hyok S. Choi | 43f5f01 | 2006-09-26 17:38:05 +0900 | [diff] [blame] | 78 | tune-$(CONFIG_CPU_ARM9TDMI) :=-mtune=arm9tdmi |
Hyok S. Choi | d60674e | 2006-09-26 17:38:18 +0900 | [diff] [blame] | 79 | tune-$(CONFIG_CPU_ARM940T) :=-mtune=arm9tdmi |
Adrian Bunk | e6bb83f | 2008-07-19 17:52:59 +0100 | [diff] [blame] | 80 | tune-$(CONFIG_CPU_ARM946E) :=$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | tune-$(CONFIG_CPU_ARM920T) :=-mtune=arm9tdmi |
| 82 | tune-$(CONFIG_CPU_ARM922T) :=-mtune=arm9tdmi |
| 83 | tune-$(CONFIG_CPU_ARM925T) :=-mtune=arm9tdmi |
| 84 | tune-$(CONFIG_CPU_ARM926T) :=-mtune=arm9tdmi |
Paulius Zaleckas | 28853ac | 2009-03-25 13:10:01 +0200 | [diff] [blame] | 85 | tune-$(CONFIG_CPU_FA526) :=-mtune=arm9tdmi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | tune-$(CONFIG_CPU_SA110) :=-mtune=strongarm110 |
| 87 | tune-$(CONFIG_CPU_SA1100) :=-mtune=strongarm1100 |
| 88 | tune-$(CONFIG_CPU_XSCALE) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 89 | tune-$(CONFIG_CPU_XSC3) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale |
Nicolas Pitre | b71b9ef | 2008-12-04 01:03:57 -0500 | [diff] [blame] | 90 | tune-$(CONFIG_CPU_FEROCEON) :=$(call cc-option,-mtune=marvell-f,-mtune=xscale) |
George G. Davis | cd26f45 | 2005-10-12 19:58:09 +0100 | [diff] [blame] | 91 | tune-$(CONFIG_CPU_V6) :=$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Nicolas Pitre | 704bdda | 2006-01-14 16:33:50 +0000 | [diff] [blame] | 93 | ifeq ($(CONFIG_AEABI),y) |
Richard Purdie | c7fd844 | 2006-04-25 20:36:04 +0100 | [diff] [blame] | 94 | CFLAGS_ABI :=-mabi=aapcs-linux -mno-thumb-interwork |
Nicolas Pitre | 704bdda | 2006-01-14 16:33:50 +0000 | [diff] [blame] | 95 | else |
Catalin Marinas | c28a814 | 2005-06-30 17:04:14 +0100 | [diff] [blame] | 96 | CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,) |
Nicolas Pitre | 704bdda | 2006-01-14 16:33:50 +0000 | [diff] [blame] | 97 | endif |
| 98 | |
Catalin Marinas | adf8b37 | 2009-02-12 13:56:34 +0100 | [diff] [blame] | 99 | ifeq ($(CONFIG_ARM_UNWIND),y) |
| 100 | CFLAGS_ABI +=-funwind-tables |
| 101 | endif |
| 102 | |
Catalin Marinas | 16c7965 | 2009-07-24 12:33:02 +0100 | [diff] [blame] | 103 | ifeq ($(CONFIG_THUMB2_KERNEL),y) |
Catalin Marinas | c540b9f | 2010-01-26 19:09:48 +0100 | [diff] [blame] | 104 | AFLAGS_AUTOIT :=$(call as-option,-Wa$(comma)-mimplicit-it=always,-Wa$(comma)-mauto-it) |
Catalin Marinas | 16c7965 | 2009-07-24 12:33:02 +0100 | [diff] [blame] | 105 | AFLAGS_NOWARN :=$(call as-option,-Wa$(comma)-mno-warn-deprecated,-Wa$(comma)-W) |
| 106 | CFLAGS_THUMB2 :=-mthumb $(AFLAGS_AUTOIT) $(AFLAGS_NOWARN) |
| 107 | AFLAGS_THUMB2 :=$(CFLAGS_THUMB2) -Wa$(comma)-mthumb |
| 108 | endif |
| 109 | |
Nicolas Pitre | 704bdda | 2006-01-14 16:33:50 +0000 | [diff] [blame] | 110 | # Need -Uarm for gcc < 3.x |
Catalin Marinas | 16c7965 | 2009-07-24 12:33:02 +0100 | [diff] [blame] | 111 | KBUILD_CFLAGS +=$(CFLAGS_ABI) $(CFLAGS_THUMB2) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm |
| 112 | KBUILD_AFLAGS +=$(CFLAGS_ABI) $(AFLAGS_THUMB2) $(arch-y) $(tune-y) -include asm/unified.h -msoft-float |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | CHECKFLAGS += -D__arm__ |
| 115 | |
| 116 | #Default value |
Hyok S. Choi | 75d9083 | 2006-03-27 14:58:25 +0100 | [diff] [blame] | 117 | head-y := arch/arm/kernel/head$(MMUEXT).o arch/arm/kernel/init_task.o |
Russell King | 9d4f13e | 2006-01-03 17:28:33 +0000 | [diff] [blame] | 118 | textofs-y := 0x00008000 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 119 | textofs-$(CONFIG_ARCH_CLPS711X) := 0x00028000 |
Vasily Khoruzhick | c4761b6 | 2010-05-11 09:55:09 +0300 | [diff] [blame] | 120 | # We don't want the htc bootloader to corrupt kernel during resume |
| 121 | textofs-$(CONFIG_PM_H1940) := 0x00108000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | # SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 123 | ifeq ($(CONFIG_ARCH_SA1100),y) |
| 124 | textofs-$(CONFIG_SA1111) := 0x00208000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | endif |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 126 | |
| 127 | # Machine directory name. This list is sorted alphanumerically |
| 128 | # by CONFIG_* macro name. |
| 129 | machine-$(CONFIG_ARCH_AAEC2000) := aaec2000 |
| 130 | machine-$(CONFIG_ARCH_AT91) := at91 |
Leo Chen | 6288e28 | 2009-08-07 19:46:15 +0100 | [diff] [blame] | 131 | machine-$(CONFIG_ARCH_BCMRING) := bcmring |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 132 | machine-$(CONFIG_ARCH_CLPS711X) := clps711x |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 133 | machine-$(CONFIG_ARCH_CNS3XXX) := cns3xxx |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 134 | machine-$(CONFIG_ARCH_DAVINCI) := davinci |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 135 | machine-$(CONFIG_ARCH_DOVE) := dove |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 136 | machine-$(CONFIG_ARCH_EBSA110) := ebsa110 |
| 137 | machine-$(CONFIG_ARCH_EP93XX) := ep93xx |
| 138 | machine-$(CONFIG_ARCH_GEMINI) := gemini |
| 139 | machine-$(CONFIG_ARCH_H720X) := h720x |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 140 | machine-$(CONFIG_ARCH_INTEGRATOR) := integrator |
| 141 | machine-$(CONFIG_ARCH_IOP13XX) := iop13xx |
| 142 | machine-$(CONFIG_ARCH_IOP32X) := iop32x |
| 143 | machine-$(CONFIG_ARCH_IOP33X) := iop33x |
| 144 | machine-$(CONFIG_ARCH_IXP2000) := ixp2000 |
| 145 | machine-$(CONFIG_ARCH_IXP23XX) := ixp23xx |
| 146 | machine-$(CONFIG_ARCH_IXP4XX) := ixp4xx |
| 147 | machine-$(CONFIG_ARCH_KIRKWOOD) := kirkwood |
| 148 | machine-$(CONFIG_ARCH_KS8695) := ks8695 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 149 | machine-$(CONFIG_ARCH_LH7A40X) := lh7a40x |
| 150 | machine-$(CONFIG_ARCH_LOKI) := loki |
Kevin Wells | 4080594 | 2010-07-27 08:49:04 -0700 | [diff] [blame] | 151 | machine-$(CONFIG_ARCH_LPC32XX) := lpc32xx |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 152 | machine-$(CONFIG_ARCH_MMP) := mmp |
| 153 | machine-$(CONFIG_ARCH_MSM) := msm |
| 154 | machine-$(CONFIG_ARCH_MV78XX0) := mv78xx0 |
Uwe Kleine-König | 0746949 | 2010-06-14 15:56:58 +0200 | [diff] [blame] | 155 | machine-$(CONFIG_ARCH_MX1) := imx |
Uwe Kleine-König | d109167 | 2010-06-10 15:11:13 +0200 | [diff] [blame] | 156 | machine-$(CONFIG_ARCH_MX2) := imx |
Sascha Hauer | 8c25c36 | 2009-06-04 11:32:12 +0200 | [diff] [blame] | 157 | machine-$(CONFIG_ARCH_MX25) := mx25 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 158 | machine-$(CONFIG_ARCH_MX3) := mx3 |
Amit Kucheria | b996b58 | 2010-02-02 11:57:53 -0800 | [diff] [blame] | 159 | machine-$(CONFIG_ARCH_MX5) := mx5 |
Russell King | 95b8f20 | 2010-01-14 11:43:54 +0000 | [diff] [blame] | 160 | machine-$(CONFIG_ARCH_MXC91231) := mxc91231 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 161 | machine-$(CONFIG_ARCH_NETX) := netx |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 162 | machine-$(CONFIG_ARCH_NOMADIK) := nomadik |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 163 | machine-$(CONFIG_ARCH_NS9XXX) := ns9xxx |
| 164 | machine-$(CONFIG_ARCH_OMAP1) := omap1 |
| 165 | machine-$(CONFIG_ARCH_OMAP2) := omap2 |
| 166 | machine-$(CONFIG_ARCH_OMAP3) := omap2 |
Russell King | 949abd8 | 2009-05-29 20:03:43 +0100 | [diff] [blame] | 167 | machine-$(CONFIG_ARCH_OMAP4) := omap2 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 168 | machine-$(CONFIG_ARCH_ORION5X) := orion5x |
| 169 | machine-$(CONFIG_ARCH_PNX4008) := pnx4008 |
| 170 | machine-$(CONFIG_ARCH_PXA) := pxa |
| 171 | machine-$(CONFIG_ARCH_REALVIEW) := realview |
| 172 | machine-$(CONFIG_ARCH_RPC) := rpc |
Yauhen Kharuzhy | f1290a4 | 2010-04-28 18:09:01 +0900 | [diff] [blame] | 173 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2416 s3c2440 s3c2443 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 174 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 |
Ben Dooks | 431107e | 2010-01-26 10:11:04 +0900 | [diff] [blame] | 175 | machine-$(CONFIG_ARCH_S3C64XX) := s3c64xx |
Kukjin Kim | c4ffccd | 2010-01-14 08:19:36 +0900 | [diff] [blame] | 176 | machine-$(CONFIG_ARCH_S5P6440) := s5p6440 |
Kukjin Kim | 550db7f | 2010-01-29 10:19:26 +0900 | [diff] [blame] | 177 | machine-$(CONFIG_ARCH_S5P6442) := s5p6442 |
Marek Szyprowski | acc8470 | 2010-05-20 07:51:08 +0200 | [diff] [blame] | 178 | machine-$(CONFIG_ARCH_S5PC100) := s5pc100 |
Kukjin Kim | 170f4e4 | 2010-02-24 16:40:44 +0900 | [diff] [blame] | 179 | machine-$(CONFIG_ARCH_S5PV210) := s5pv210 |
Changhwan Youn | cc0e72b | 2010-07-16 12:15:38 +0900 | [diff] [blame] | 180 | machine-$(CONFIG_ARCH_S5PV310) := s5pv310 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 181 | machine-$(CONFIG_ARCH_SA1100) := sa1100 |
| 182 | machine-$(CONFIG_ARCH_SHARK) := shark |
Magnus Damm | c793c1b | 2010-02-05 11:14:49 +0000 | [diff] [blame] | 183 | machine-$(CONFIG_ARCH_SHMOBILE) := shmobile |
dmitry pervushin | 7bd0f2f | 2009-04-27 10:35:04 +0100 | [diff] [blame] | 184 | machine-$(CONFIG_ARCH_STMP378X) := stmp378x |
| 185 | machine-$(CONFIG_ARCH_STMP37XX) := stmp37xx |
Erik Gilling | c5f8006 | 2010-01-21 16:53:02 -0800 | [diff] [blame] | 186 | machine-$(CONFIG_ARCH_TEGRA) := tegra |
Linus Walleij | d98aac7 | 2009-04-27 10:21:46 +0100 | [diff] [blame] | 187 | machine-$(CONFIG_ARCH_U300) := u300 |
Srinidhi Kasagar | 850265e | 2009-11-28 08:24:47 +0100 | [diff] [blame] | 188 | machine-$(CONFIG_ARCH_U8500) := ux500 |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 189 | machine-$(CONFIG_ARCH_VERSATILE) := versatile |
Russell King | ceade89 | 2010-02-11 21:44:53 +0000 | [diff] [blame] | 190 | machine-$(CONFIG_ARCH_VEXPRESS) := vexpress |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 191 | machine-$(CONFIG_ARCH_W90X900) := w90x900 |
wanzongshun | a62e903 | 2009-12-31 15:06:05 +0100 | [diff] [blame] | 192 | machine-$(CONFIG_ARCH_NUC93X) := nuc93x |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 193 | machine-$(CONFIG_FOOTBRIDGE) := footbridge |
viresh kumar | cee37e5 | 2010-04-01 12:31:05 +0100 | [diff] [blame] | 194 | machine-$(CONFIG_MACH_SPEAR300) := spear3xx |
| 195 | machine-$(CONFIG_MACH_SPEAR310) := spear3xx |
| 196 | machine-$(CONFIG_MACH_SPEAR320) := spear3xx |
| 197 | machine-$(CONFIG_MACH_SPEAR600) := spear6xx |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 198 | |
| 199 | # Platform directory name. This list is sorted alphanumerically |
| 200 | # by CONFIG_* macro name. |
| 201 | plat-$(CONFIG_ARCH_MXC) := mxc |
| 202 | plat-$(CONFIG_ARCH_OMAP) := omap |
Russell King | 882d01f | 2010-03-02 23:40:15 +0000 | [diff] [blame] | 203 | plat-$(CONFIG_ARCH_S3C64XX) := samsung |
Russell King | 95b8f20 | 2010-01-14 11:43:54 +0000 | [diff] [blame] | 204 | plat-$(CONFIG_ARCH_STMP3XXX) := stmp3xxx |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 205 | plat-$(CONFIG_PLAT_IOP) := iop |
Srinidhi Kasagar | 59b559d | 2009-11-12 06:20:54 +0100 | [diff] [blame] | 206 | plat-$(CONFIG_PLAT_NOMADIK) := nomadik |
Russell King | b4175b8 | 2009-04-26 14:22:29 +0100 | [diff] [blame] | 207 | plat-$(CONFIG_PLAT_ORION) := orion |
| 208 | plat-$(CONFIG_PLAT_PXA) := pxa |
Ben Dooks | 7965b21 | 2010-02-23 00:18:36 +0000 | [diff] [blame] | 209 | plat-$(CONFIG_PLAT_S3C24XX) := s3c24xx samsung |
Ben Dooks | 7965b21 | 2010-02-23 00:18:36 +0000 | [diff] [blame] | 210 | plat-$(CONFIG_PLAT_S5P) := s5p samsung |
viresh kumar | cee37e5 | 2010-04-01 12:31:05 +0100 | [diff] [blame] | 211 | plat-$(CONFIG_PLAT_SPEAR) := spear |
Russell King | f4b8b31 | 2010-01-14 12:48:06 +0000 | [diff] [blame] | 212 | plat-$(CONFIG_PLAT_VERSATILE) := versatile |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | ifeq ($(CONFIG_ARCH_EBSA110),y) |
| 215 | # This is what happens if you forget the IOCS16 line. |
| 216 | # PCMCIA cards stop working. |
| 217 | CFLAGS_3c589_cs.o :=-DISA_SIXTEEN_BIT_PERIPHERAL |
| 218 | export CFLAGS_3c589_cs.o |
| 219 | endif |
| 220 | |
Russell King | 9d4f13e | 2006-01-03 17:28:33 +0000 | [diff] [blame] | 221 | # The byte offset of the kernel image in RAM from the start of RAM. |
| 222 | TEXT_OFFSET := $(textofs-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Russell King | f44f82e | 2008-08-02 19:36:14 +0100 | [diff] [blame] | 224 | # The first directory contains additional information for the boot setup code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | ifneq ($(machine-y),) |
Russell King | f44f82e | 2008-08-02 19:36:14 +0100 | [diff] [blame] | 226 | MACHINE := arch/arm/mach-$(word 1,$(machine-y))/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | else |
| 228 | MACHINE := |
| 229 | endif |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 230 | |
Russell King | f44f82e | 2008-08-02 19:36:14 +0100 | [diff] [blame] | 231 | machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y)) |
| 232 | platdirs := $(patsubst %,arch/arm/plat-%/,$(plat-y)) |
| 233 | |
| 234 | ifeq ($(KBUILD_SRC),) |
| 235 | KBUILD_CPPFLAGS += $(patsubst %,-I%include,$(machdirs) $(platdirs)) |
| 236 | else |
| 237 | KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs) $(platdirs)) |
| 238 | endif |
| 239 | |
Hyok S. Choi | f8c07de | 2006-03-27 15:14:19 +0100 | [diff] [blame] | 240 | export TEXT_OFFSET GZFLAGS MMUEXT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
| 242 | # Do we have FASTFPE? |
| 243 | FASTFPE :=arch/arm/fastfpe |
| 244 | ifeq ($(FASTFPE),$(wildcard $(FASTFPE))) |
| 245 | FASTFPE_OBJ :=$(FASTFPE)/ |
| 246 | endif |
| 247 | |
| 248 | # If we have a machine-specific directory, then include it in the build. |
| 249 | core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/ |
Russell King | f44f82e | 2008-08-02 19:36:14 +0100 | [diff] [blame] | 250 | core-y += $(machdirs) $(platdirs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/ |
| 252 | core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ) |
| 253 | core-$(CONFIG_VFP) += arch/arm/vfp/ |
| 254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Nicolas Pitre | 30c2f90 | 2005-11-04 17:17:30 +0000 | [diff] [blame] | 257 | libs-y := arch/arm/lib/ $(libs-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | # Default target when executing plain make |
| 260 | ifeq ($(CONFIG_XIP_KERNEL),y) |
Russell King | 51342d7 | 2006-10-29 12:51:05 +0000 | [diff] [blame] | 261 | KBUILD_IMAGE := xipImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | else |
Russell King | 51342d7 | 2006-10-29 12:51:05 +0000 | [diff] [blame] | 263 | KBUILD_IMAGE := zImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | endif |
| 265 | |
Russell King | 51342d7 | 2006-10-29 12:51:05 +0000 | [diff] [blame] | 266 | all: $(KBUILD_IMAGE) |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | boot := arch/arm/boot |
| 269 | |
Sam Ravnborg | 6620653 | 2009-04-20 19:59:58 +0200 | [diff] [blame] | 270 | archprepare: |
| 271 | $(Q)$(MAKE) $(build)=arch/arm/tools include/generated/mach-types.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | # Convert bzImage to zImage |
| 274 | bzImage: zImage |
| 275 | |
| 276 | zImage Image xipImage bootpImage uImage: vmlinux |
| 277 | $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ |
| 278 | |
| 279 | zinstall install: vmlinux |
| 280 | $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ |
| 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | # We use MRPROPER_FILES and CLEAN_FILES now |
| 283 | archclean: |
| 284 | $(Q)$(MAKE) $(clean)=$(boot) |
| 285 | |
| 286 | # My testing targets (bypasses dependencies) |
| 287 | bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage |
| 288 | i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ |
| 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
| 291 | define archhelp |
| 292 | echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)' |
| 293 | echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' |
| 294 | echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)' |
Uwe Kleine-König | a4f14ba | 2008-03-06 16:22:17 +0100 | [diff] [blame] | 295 | echo ' uImage - U-Boot wrapped zImage' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | echo ' bootpImage - Combined zImage and initial RAM disk' |
| 297 | echo ' (supply initrd image via make variable INITRD=<path>)' |
| 298 | echo ' install - Install uncompressed kernel' |
| 299 | echo ' zinstall - Install compressed kernel' |
Sam Ravnborg | caa27b6 | 2009-07-20 21:37:11 +0200 | [diff] [blame] | 300 | echo ' Install using (your) ~/bin/$(INSTALLKERNEL) or' |
| 301 | echo ' (distribution) /sbin/$(INSTALLKERNEL) or' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | echo ' install to $$(INSTALL_PATH) and run lilo' |
| 303 | endef |