Makefile 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. #
  2. # arch/arm/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License. See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. # Copyright (C) 1995-2001 by Russell King
  9. LDFLAGS_vmlinux :=-p --no-undefined -X
  10. CPPFLAGS_vmlinux.lds = -DTEXT_OFFSET=$(TEXT_OFFSET)
  11. OBJCOPYFLAGS :=-O binary -R .note -R .comment -S
  12. GZFLAGS :=-9
  13. #CFLAGS +=-pipe
  14. # Do not use arch/arm/defconfig - it's always outdated.
  15. # Select a platform tht is kept up-to-date
  16. KBUILD_DEFCONFIG := versatile_defconfig
  17. ifeq ($(CONFIG_FRAME_POINTER),y)
  18. CFLAGS +=-fno-omit-frame-pointer -mapcs -mno-sched-prolog
  19. endif
  20. ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
  21. CPPFLAGS += -mbig-endian
  22. AS += -EB
  23. LD += -EB
  24. else
  25. CPPFLAGS += -mlittle-endian
  26. AS += -EL
  27. LD += -EL
  28. endif
  29. comma = ,
  30. # This selects which instruction set is used.
  31. # Note that GCC does not numerically define an architecture version
  32. # macro, but instead defines a whole series of macros which makes
  33. # testing for a specific architecture or later rather impossible.
  34. arch-$(CONFIG_CPU_32v6) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6)
  35. arch-$(CONFIG_CPU_32v6K) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(comma)-march=armv6k)
  36. arch-$(CONFIG_CPU_32v5) :=-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4)
  37. arch-$(CONFIG_CPU_32v4) :=-D__LINUX_ARM_ARCH__=4 -march=armv4
  38. arch-$(CONFIG_CPU_32v3) :=-D__LINUX_ARM_ARCH__=3 -march=armv3
  39. # This selects how we optimise for the processor.
  40. tune-$(CONFIG_CPU_ARM610) :=-mtune=arm610
  41. tune-$(CONFIG_CPU_ARM710) :=-mtune=arm710
  42. tune-$(CONFIG_CPU_ARM720T) :=-mtune=arm7tdmi
  43. tune-$(CONFIG_CPU_ARM920T) :=-mtune=arm9tdmi
  44. tune-$(CONFIG_CPU_ARM922T) :=-mtune=arm9tdmi
  45. tune-$(CONFIG_CPU_ARM925T) :=-mtune=arm9tdmi
  46. tune-$(CONFIG_CPU_ARM926T) :=-mtune=arm9tdmi
  47. tune-$(CONFIG_CPU_SA110) :=-mtune=strongarm110
  48. tune-$(CONFIG_CPU_SA1100) :=-mtune=strongarm1100
  49. tune-$(CONFIG_CPU_XSCALE) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
  50. tune-$(CONFIG_CPU_V6) :=$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm)
  51. ifeq ($(CONFIG_AEABI),y)
  52. CFLAGS_ABI :=-mabi=aapcs -mno-thumb-interwork
  53. else
  54. CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,)
  55. endif
  56. # Need -Uarm for gcc < 3.x
  57. CFLAGS +=$(CFLAGS_ABI) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm
  58. AFLAGS +=$(CFLAGS_ABI) $(arch-y) $(tune-y) -msoft-float
  59. CHECKFLAGS += -D__arm__
  60. #Default value
  61. head-y := arch/arm/kernel/head.o arch/arm/kernel/init_task.o
  62. textofs-y := 0x00008000
  63. machine-$(CONFIG_ARCH_RPC) := rpc
  64. machine-$(CONFIG_ARCH_EBSA110) := ebsa110
  65. machine-$(CONFIG_ARCH_CLPS7500) := clps7500
  66. incdir-$(CONFIG_ARCH_CLPS7500) := cl7500
  67. machine-$(CONFIG_FOOTBRIDGE) := footbridge
  68. incdir-$(CONFIG_FOOTBRIDGE) := ebsa285
  69. machine-$(CONFIG_ARCH_CO285) := footbridge
  70. incdir-$(CONFIG_ARCH_CO285) := ebsa285
  71. machine-$(CONFIG_ARCH_SHARK) := shark
  72. machine-$(CONFIG_ARCH_SA1100) := sa1100
  73. ifeq ($(CONFIG_ARCH_SA1100),y)
  74. # SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory
  75. textofs-$(CONFIG_SA1111) := 0x00208000
  76. endif
  77. machine-$(CONFIG_ARCH_PXA) := pxa
  78. machine-$(CONFIG_ARCH_L7200) := l7200
  79. machine-$(CONFIG_ARCH_INTEGRATOR) := integrator
  80. textofs-$(CONFIG_ARCH_CLPS711X) := 0x00028000
  81. machine-$(CONFIG_ARCH_CLPS711X) := clps711x
  82. machine-$(CONFIG_ARCH_IOP3XX) := iop3xx
  83. machine-$(CONFIG_ARCH_IXP4XX) := ixp4xx
  84. machine-$(CONFIG_ARCH_IXP2000) := ixp2000
  85. machine-$(CONFIG_ARCH_OMAP1) := omap1
  86. machine-$(CONFIG_ARCH_OMAP2) := omap2
  87. incdir-$(CONFIG_ARCH_OMAP) := omap
  88. machine-$(CONFIG_ARCH_S3C2410) := s3c2410
  89. machine-$(CONFIG_ARCH_LH7A40X) := lh7a40x
  90. machine-$(CONFIG_ARCH_VERSATILE) := versatile
  91. machine-$(CONFIG_ARCH_IMX) := imx
  92. machine-$(CONFIG_ARCH_H720X) := h720x
  93. machine-$(CONFIG_ARCH_AAEC2000) := aaec2000
  94. machine-$(CONFIG_ARCH_REALVIEW) := realview
  95. machine-$(CONFIG_ARCH_AT91RM9200) := at91rm9200
  96. ifeq ($(CONFIG_ARCH_EBSA110),y)
  97. # This is what happens if you forget the IOCS16 line.
  98. # PCMCIA cards stop working.
  99. CFLAGS_3c589_cs.o :=-DISA_SIXTEEN_BIT_PERIPHERAL
  100. export CFLAGS_3c589_cs.o
  101. endif
  102. # The byte offset of the kernel image in RAM from the start of RAM.
  103. TEXT_OFFSET := $(textofs-y)
  104. ifeq ($(incdir-y),)
  105. incdir-y := $(machine-y)
  106. endif
  107. INCDIR := arch-$(incdir-y)
  108. ifneq ($(machine-y),)
  109. MACHINE := arch/arm/mach-$(machine-y)/
  110. else
  111. MACHINE :=
  112. endif
  113. export TEXT_OFFSET GZFLAGS
  114. # Do we have FASTFPE?
  115. FASTFPE :=arch/arm/fastfpe
  116. ifeq ($(FASTFPE),$(wildcard $(FASTFPE)))
  117. FASTFPE_OBJ :=$(FASTFPE)/
  118. endif
  119. # If we have a machine-specific directory, then include it in the build.
  120. core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/
  121. core-y += $(MACHINE)
  122. core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/
  123. core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ)
  124. core-$(CONFIG_VFP) += arch/arm/vfp/
  125. # If we have a common platform directory, then include it in the build.
  126. core-$(CONFIG_ARCH_OMAP) += arch/arm/plat-omap/
  127. drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/
  128. drivers-$(CONFIG_ARCH_CLPS7500) += drivers/acorn/char/
  129. drivers-$(CONFIG_ARCH_L7200) += drivers/acorn/char/
  130. libs-y := arch/arm/lib/ $(libs-y)
  131. # Default target when executing plain make
  132. ifeq ($(CONFIG_XIP_KERNEL),y)
  133. all: xipImage
  134. else
  135. all: zImage
  136. endif
  137. boot := arch/arm/boot
  138. # Update machine arch and proc symlinks if something which affects
  139. # them changed. We use .arch to indicate when they were updated
  140. # last, otherwise make uses the target directory mtime.
  141. include/asm-arm/.arch: $(wildcard include/config/arch/*.h) include/config/MARKER
  142. @echo ' SYMLINK include/asm-arm/arch -> include/asm-arm/$(INCDIR)'
  143. ifneq ($(KBUILD_SRC),)
  144. $(Q)mkdir -p include/asm-arm
  145. $(Q)ln -fsn $(srctree)/include/asm-arm/$(INCDIR) include/asm-arm/arch
  146. else
  147. $(Q)ln -fsn $(INCDIR) include/asm-arm/arch
  148. endif
  149. @touch $@
  150. archprepare: maketools
  151. .PHONY: maketools FORCE
  152. maketools: include/linux/version.h include/asm-arm/.arch FORCE
  153. $(Q)$(MAKE) $(build)=arch/arm/tools include/asm-arm/mach-types.h
  154. # Convert bzImage to zImage
  155. bzImage: zImage
  156. zImage Image xipImage bootpImage uImage: vmlinux
  157. $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
  158. zinstall install: vmlinux
  159. $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
  160. CLEAN_FILES += include/asm-arm/mach-types.h \
  161. include/asm-arm/arch include/asm-arm/.arch
  162. # We use MRPROPER_FILES and CLEAN_FILES now
  163. archclean:
  164. $(Q)$(MAKE) $(clean)=$(boot)
  165. # My testing targets (bypasses dependencies)
  166. bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage
  167. i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
  168. define archhelp
  169. echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
  170. echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
  171. echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)'
  172. echo ' bootpImage - Combined zImage and initial RAM disk'
  173. echo ' (supply initrd image via make variable INITRD=<path>)'
  174. echo ' install - Install uncompressed kernel'
  175. echo ' zinstall - Install compressed kernel'
  176. echo ' Install using (your) ~/bin/installkernel or'
  177. echo ' (distribution) /sbin/installkernel or'
  178. echo ' install to $$(INSTALL_PATH) and run lilo'
  179. endef