Makefile 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 = -DTEXTADDR=$(TEXTADDR) -DDATAADDR=$(DATAADDR)
  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_32v5) :=-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4)
  36. arch-$(CONFIG_CPU_32v4) :=-D__LINUX_ARM_ARCH__=4 -march=armv4
  37. arch-$(CONFIG_CPU_32v3) :=-D__LINUX_ARM_ARCH__=3 -march=armv3
  38. # This selects how we optimise for the processor.
  39. tune-$(CONFIG_CPU_ARM610) :=-mtune=arm610
  40. tune-$(CONFIG_CPU_ARM710) :=-mtune=arm710
  41. tune-$(CONFIG_CPU_ARM720T) :=-mtune=arm7tdmi
  42. tune-$(CONFIG_CPU_ARM920T) :=-mtune=arm9tdmi
  43. tune-$(CONFIG_CPU_ARM922T) :=-mtune=arm9tdmi
  44. tune-$(CONFIG_CPU_ARM925T) :=-mtune=arm9tdmi
  45. tune-$(CONFIG_CPU_ARM926T) :=-mtune=arm9tdmi
  46. tune-$(CONFIG_CPU_SA110) :=-mtune=strongarm110
  47. tune-$(CONFIG_CPU_SA1100) :=-mtune=strongarm1100
  48. tune-$(CONFIG_CPU_XSCALE) :=$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
  49. tune-$(CONFIG_CPU_V6) :=-mtune=strongarm
  50. # Need -Uarm for gcc < 3.x
  51. CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,)
  52. CFLAGS +=$(CFLAGS_ABI) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm
  53. AFLAGS +=$(CFLAGS_ABI) $(arch-y) $(tune-y) -msoft-float
  54. CHECKFLAGS += -D__arm__
  55. #Default value
  56. head-y := arch/arm/kernel/head.o arch/arm/kernel/init_task.o
  57. textaddr-y := 0xC0008000
  58. machine-$(CONFIG_ARCH_RPC) := rpc
  59. machine-$(CONFIG_ARCH_EBSA110) := ebsa110
  60. machine-$(CONFIG_ARCH_CLPS7500) := clps7500
  61. incdir-$(CONFIG_ARCH_CLPS7500) := cl7500
  62. machine-$(CONFIG_FOOTBRIDGE) := footbridge
  63. incdir-$(CONFIG_FOOTBRIDGE) := ebsa285
  64. textaddr-$(CONFIG_ARCH_CO285) := 0x60008000
  65. machine-$(CONFIG_ARCH_CO285) := footbridge
  66. incdir-$(CONFIG_ARCH_CO285) := ebsa285
  67. machine-$(CONFIG_ARCH_SHARK) := shark
  68. machine-$(CONFIG_ARCH_SA1100) := sa1100
  69. ifeq ($(CONFIG_ARCH_SA1100),y)
  70. # SA1111 DMA bug: we don't want the kernel to live in precious DMA-able memory
  71. textaddr-$(CONFIG_SA1111) := 0xc0208000
  72. endif
  73. machine-$(CONFIG_ARCH_PXA) := pxa
  74. machine-$(CONFIG_ARCH_L7200) := l7200
  75. machine-$(CONFIG_ARCH_INTEGRATOR) := integrator
  76. machine-$(CONFIG_ARCH_CAMELOT) := epxa10db
  77. textaddr-$(CONFIG_ARCH_CLPS711X) := 0xc0028000
  78. machine-$(CONFIG_ARCH_CLPS711X) := clps711x
  79. textaddr-$(CONFIG_ARCH_FORTUNET) := 0xc0008000
  80. machine-$(CONFIG_ARCH_IOP3XX) := iop3xx
  81. machine-$(CONFIG_ARCH_IXP4XX) := ixp4xx
  82. machine-$(CONFIG_ARCH_IXP2000) := ixp2000
  83. machine-$(CONFIG_ARCH_OMAP1) := omap1
  84. incdir-$(CONFIG_ARCH_OMAP) := omap
  85. machine-$(CONFIG_ARCH_S3C2410) := s3c2410
  86. machine-$(CONFIG_ARCH_LH7A40X) := lh7a40x
  87. machine-$(CONFIG_ARCH_VERSATILE) := versatile
  88. machine-$(CONFIG_ARCH_IMX) := imx
  89. machine-$(CONFIG_ARCH_H720X) := h720x
  90. machine-$(CONFIG_ARCH_AAEC2000) := aaec2000
  91. ifeq ($(CONFIG_ARCH_EBSA110),y)
  92. # This is what happens if you forget the IOCS16 line.
  93. # PCMCIA cards stop working.
  94. CFLAGS_3c589_cs.o :=-DISA_SIXTEEN_BIT_PERIPHERAL
  95. export CFLAGS_3c589_cs.o
  96. endif
  97. TEXTADDR := $(textaddr-y)
  98. ifeq ($(CONFIG_XIP_KERNEL),y)
  99. DATAADDR := $(TEXTADDR)
  100. xipaddr-$(CONFIG_ARCH_CO285) := 0x5f000000
  101. xipaddr-y ?= 0xbf000000
  102. # Replace phys addr with virt addr while keeping offset from base.
  103. TEXTADDR := $(shell echo $(CONFIG_XIP_PHYS_ADDR) $(xipaddr-y) | \
  104. awk --non-decimal-data '/[:xdigit:]/ \
  105. { printf("0x%x\n", and($$1, 0x000fffff) + $$2) }' )
  106. endif
  107. ifeq ($(incdir-y),)
  108. incdir-y := $(machine-y)
  109. endif
  110. INCDIR := arch-$(incdir-y)
  111. ifneq ($(machine-y),)
  112. MACHINE := arch/arm/mach-$(machine-y)/
  113. else
  114. MACHINE :=
  115. endif
  116. export TEXTADDR DATAADDR GZFLAGS
  117. # Do we have FASTFPE?
  118. FASTFPE :=arch/arm/fastfpe
  119. ifeq ($(FASTFPE),$(wildcard $(FASTFPE)))
  120. FASTFPE_OBJ :=$(FASTFPE)/
  121. endif
  122. # If we have a machine-specific directory, then include it in the build.
  123. core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/
  124. core-y += $(MACHINE)
  125. core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/
  126. core-$(CONFIG_FPE_FASTFPE) += $(FASTFPE_OBJ)
  127. core-$(CONFIG_VFP) += arch/arm/vfp/
  128. # If we have a common platform directory, then include it in the build.
  129. core-$(CONFIG_ARCH_OMAP) += arch/arm/plat-omap/
  130. drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/
  131. drivers-$(CONFIG_ARCH_CLPS7500) += drivers/acorn/char/
  132. drivers-$(CONFIG_ARCH_L7200) += drivers/acorn/char/
  133. libs-y += arch/arm/lib/
  134. # Default target when executing plain make
  135. ifeq ($(CONFIG_XIP_KERNEL),y)
  136. all: xipImage
  137. else
  138. all: zImage
  139. endif
  140. boot := arch/arm/boot
  141. # Update machine arch and proc symlinks if something which affects
  142. # them changed. We use .arch to indicate when they were updated
  143. # last, otherwise make uses the target directory mtime.
  144. include/asm-arm/.arch: $(wildcard include/config/arch/*.h) include/config/MARKER
  145. @echo ' SYMLINK include/asm-arm/arch -> include/asm-arm/$(INCDIR)'
  146. ifneq ($(KBUILD_SRC),)
  147. $(Q)mkdir -p include/asm-arm
  148. $(Q)ln -fsn $(srctree)/include/asm-arm/$(INCDIR) include/asm-arm/arch
  149. else
  150. $(Q)ln -fsn $(INCDIR) include/asm-arm/arch
  151. endif
  152. @touch $@
  153. prepare: maketools include/asm-arm/.arch
  154. .PHONY: maketools FORCE
  155. maketools: include/asm-arm/constants.h include/linux/version.h FORCE
  156. $(Q)$(MAKE) $(build)=arch/arm/tools include/asm-arm/mach-types.h
  157. # Convert bzImage to zImage
  158. bzImage: zImage
  159. zImage Image xipImage bootpImage uImage: vmlinux
  160. $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
  161. zinstall install: vmlinux
  162. $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
  163. CLEAN_FILES += include/asm-arm/constants.h* include/asm-arm/mach-types.h \
  164. include/asm-arm/arch include/asm-arm/.arch
  165. # We use MRPROPER_FILES and CLEAN_FILES now
  166. archclean:
  167. $(Q)$(MAKE) $(clean)=$(boot)
  168. # My testing targets (bypasses dependencies)
  169. bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage
  170. i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
  171. arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \
  172. include/asm-arm/.arch
  173. include/asm-$(ARCH)/constants.h: arch/$(ARCH)/kernel/asm-offsets.s
  174. $(call filechk,gen-asm-offsets)
  175. define archhelp
  176. echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
  177. echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
  178. echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)'
  179. echo ' bootpImage - Combined zImage and initial RAM disk'
  180. echo ' (supply initrd image via make variable INITRD=<path>)'
  181. echo ' install - Install uncompressed kernel'
  182. echo ' zinstall - Install compressed kernel'
  183. echo ' Install using (your) ~/bin/installkernel or'
  184. echo ' (distribution) /sbin/installkernel or'
  185. echo ' install to $$(INSTALL_PATH) and run lilo'
  186. endef