Makefile 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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 = -DKERNEL_RAM_ADDR=$(TEXTADDR)
  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. # Need -Uarm for gcc < 3.x
  52. CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,)
  53. CFLAGS +=$(CFLAGS_ABI) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm
  54. AFLAGS +=$(CFLAGS_ABI) $(arch-y) $(tune-y) -msoft-float
  55. CHECKFLAGS += -D__arm__
  56. #Default value
  57. head-y := arch/arm/kernel/head.o arch/arm/kernel/init_task.o
  58. textaddr-y := 0xC0008000
  59. machine-$(CONFIG_ARCH_RPC) := rpc
  60. machine-$(CONFIG_ARCH_EBSA110) := ebsa110
  61. machine-$(CONFIG_ARCH_CLPS7500) := clps7500
  62. incdir-$(CONFIG_ARCH_CLPS7500) := cl7500
  63. machine-$(CONFIG_FOOTBRIDGE) := footbridge
  64. incdir-$(CONFIG_FOOTBRIDGE) := ebsa285
  65. textaddr-$(CONFIG_ARCH_CO285) := 0x60008000
  66. machine-$(CONFIG_ARCH_CO285) := footbridge
  67. incdir-$(CONFIG_ARCH_CO285) := ebsa285
  68. machine-$(CONFIG_ARCH_SHARK) := shark
  69. machine-$(CONFIG_ARCH_SA1100) := sa1100
  70. ifeq ($(CONFIG_ARCH_SA1100),y)
  71. # SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory
  72. textaddr-$(CONFIG_SA1111) := 0xc0208000
  73. endif
  74. machine-$(CONFIG_ARCH_PXA) := pxa
  75. machine-$(CONFIG_ARCH_L7200) := l7200
  76. machine-$(CONFIG_ARCH_INTEGRATOR) := integrator
  77. machine-$(CONFIG_ARCH_CAMELOT) := epxa10db
  78. textaddr-$(CONFIG_ARCH_CLPS711X) := 0xc0028000
  79. machine-$(CONFIG_ARCH_CLPS711X) := clps711x
  80. textaddr-$(CONFIG_ARCH_FORTUNET) := 0xc0008000
  81. machine-$(CONFIG_ARCH_IOP3XX) := iop3xx
  82. machine-$(CONFIG_ARCH_IXP4XX) := ixp4xx
  83. machine-$(CONFIG_ARCH_IXP2000) := ixp2000
  84. machine-$(CONFIG_ARCH_OMAP1) := omap1
  85. machine-$(CONFIG_ARCH_OMAP2) := omap2
  86. incdir-$(CONFIG_ARCH_OMAP) := omap
  87. machine-$(CONFIG_ARCH_S3C2410) := s3c2410
  88. machine-$(CONFIG_ARCH_LH7A40X) := lh7a40x
  89. machine-$(CONFIG_ARCH_VERSATILE) := versatile
  90. machine-$(CONFIG_ARCH_IMX) := imx
  91. machine-$(CONFIG_ARCH_H720X) := h720x
  92. machine-$(CONFIG_ARCH_AAEC2000) := aaec2000
  93. machine-$(CONFIG_ARCH_REALVIEW) := realview
  94. ifeq ($(CONFIG_ARCH_EBSA110),y)
  95. # This is what happens if you forget the IOCS16 line.
  96. # PCMCIA cards stop working.
  97. CFLAGS_3c589_cs.o :=-DISA_SIXTEEN_BIT_PERIPHERAL
  98. export CFLAGS_3c589_cs.o
  99. endif
  100. TEXTADDR := $(textaddr-y)
  101. ifeq ($(incdir-y),)
  102. incdir-y := $(machine-y)
  103. endif
  104. INCDIR := arch-$(incdir-y)
  105. ifneq ($(machine-y),)
  106. MACHINE := arch/arm/mach-$(machine-y)/
  107. else
  108. MACHINE :=
  109. endif
  110. export TEXTADDR GZFLAGS
  111. # Do we have FASTFPE?
  112. FASTFPE :=arch/arm/fastfpe
  113. ifeq ($(FASTFPE),$(wildcard $(FASTFPE)))
  114. FASTFPE_OBJ :=$(FASTFPE)/
  115. endif
  116. # If we have a machine-specific directory, then include it in the build.
  117. core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/
  118. core-y += $(MACHINE)
  119. core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/
  120. core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ)
  121. core-$(CONFIG_VFP) += arch/arm/vfp/
  122. # If we have a common platform directory, then include it in the build.
  123. core-$(CONFIG_ARCH_OMAP) += arch/arm/plat-omap/
  124. drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/
  125. drivers-$(CONFIG_ARCH_CLPS7500) += drivers/acorn/char/
  126. drivers-$(CONFIG_ARCH_L7200) += drivers/acorn/char/
  127. libs-y := arch/arm/lib/ $(libs-y)
  128. # Default target when executing plain make
  129. ifeq ($(CONFIG_XIP_KERNEL),y)
  130. all: xipImage
  131. else
  132. all: zImage
  133. endif
  134. boot := arch/arm/boot
  135. # Update machine arch and proc symlinks if something which affects
  136. # them changed. We use .arch to indicate when they were updated
  137. # last, otherwise make uses the target directory mtime.
  138. include/asm-arm/.arch: $(wildcard include/config/arch/*.h) include/config/MARKER
  139. @echo ' SYMLINK include/asm-arm/arch -> include/asm-arm/$(INCDIR)'
  140. ifneq ($(KBUILD_SRC),)
  141. $(Q)mkdir -p include/asm-arm
  142. $(Q)ln -fsn $(srctree)/include/asm-arm/$(INCDIR) include/asm-arm/arch
  143. else
  144. $(Q)ln -fsn $(INCDIR) include/asm-arm/arch
  145. endif
  146. @touch $@
  147. archprepare: maketools
  148. .PHONY: maketools FORCE
  149. maketools: include/linux/version.h include/asm-arm/.arch FORCE
  150. $(Q)$(MAKE) $(build)=arch/arm/tools include/asm-arm/mach-types.h
  151. # Convert bzImage to zImage
  152. bzImage: zImage
  153. zImage Image xipImage bootpImage uImage: vmlinux
  154. $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
  155. zinstall install: vmlinux
  156. $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
  157. CLEAN_FILES += include/asm-arm/mach-types.h \
  158. include/asm-arm/arch include/asm-arm/.arch
  159. # We use MRPROPER_FILES and CLEAN_FILES now
  160. archclean:
  161. $(Q)$(MAKE) $(clean)=$(boot)
  162. # My testing targets (bypasses dependencies)
  163. bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage
  164. i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
  165. define archhelp
  166. echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
  167. echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
  168. echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)'
  169. echo ' bootpImage - Combined zImage and initial RAM disk'
  170. echo ' (supply initrd image via make variable INITRD=<path>)'
  171. echo ' install - Install uncompressed kernel'
  172. echo ' zinstall - Install compressed kernel'
  173. echo ' Install using (your) ~/bin/installkernel or'
  174. echo ' (distribution) /sbin/installkernel or'
  175. echo ' install to $$(INSTALL_PATH) and run lilo'
  176. endef