Makefile 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #
  2. # arch/blackfin/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. ifeq ($(CROSS_COMPILE),)
  9. CROSS_COMPILE := bfin-uclinux-
  10. endif
  11. LDFLAGS_vmlinux := -X
  12. OBJCOPYFLAGS := -O binary -R .note -R .comment -S
  13. GZFLAGS := -9
  14. KBUILD_CFLAGS += $(call cc-option,-mno-fdpic)
  15. KBUILD_AFLAGS += $(call cc-option,-mno-fdpic)
  16. CFLAGS_MODULE += -mlong-calls
  17. KALLSYMS += --symbol-prefix=_
  18. KBUILD_DEFCONFIG := BF537-STAMP_defconfig
  19. # setup the machine name and the machine dependent settings
  20. machine-$(CONFIG_BF512) := bf518
  21. machine-$(CONFIG_BF514) := bf518
  22. machine-$(CONFIG_BF516) := bf518
  23. machine-$(CONFIG_BF518) := bf518
  24. machine-$(CONFIG_BF522) := bf527
  25. machine-$(CONFIG_BF523) := bf527
  26. machine-$(CONFIG_BF524) := bf527
  27. machine-$(CONFIG_BF525) := bf527
  28. machine-$(CONFIG_BF526) := bf527
  29. machine-$(CONFIG_BF527) := bf527
  30. machine-$(CONFIG_BF531) := bf533
  31. machine-$(CONFIG_BF532) := bf533
  32. machine-$(CONFIG_BF533) := bf533
  33. machine-$(CONFIG_BF534) := bf537
  34. machine-$(CONFIG_BF536) := bf537
  35. machine-$(CONFIG_BF537) := bf537
  36. machine-$(CONFIG_BF538) := bf538
  37. machine-$(CONFIG_BF539) := bf538
  38. machine-$(CONFIG_BF542) := bf548
  39. machine-$(CONFIG_BF544) := bf548
  40. machine-$(CONFIG_BF547) := bf548
  41. machine-$(CONFIG_BF548) := bf548
  42. machine-$(CONFIG_BF549) := bf548
  43. machine-$(CONFIG_BF561) := bf561
  44. MACHINE := $(machine-y)
  45. export MACHINE
  46. cpu-$(CONFIG_BF512) := bf512
  47. cpu-$(CONFIG_BF514) := bf514
  48. cpu-$(CONFIG_BF516) := bf516
  49. cpu-$(CONFIG_BF518) := bf518
  50. cpu-$(CONFIG_BF522) := bf522
  51. cpu-$(CONFIG_BF523) := bf523
  52. cpu-$(CONFIG_BF524) := bf524
  53. cpu-$(CONFIG_BF525) := bf525
  54. cpu-$(CONFIG_BF526) := bf526
  55. cpu-$(CONFIG_BF527) := bf527
  56. cpu-$(CONFIG_BF531) := bf531
  57. cpu-$(CONFIG_BF532) := bf532
  58. cpu-$(CONFIG_BF533) := bf533
  59. cpu-$(CONFIG_BF534) := bf534
  60. cpu-$(CONFIG_BF536) := bf536
  61. cpu-$(CONFIG_BF537) := bf537
  62. cpu-$(CONFIG_BF538) := bf538
  63. cpu-$(CONFIG_BF539) := bf539
  64. cpu-$(CONFIG_BF542) := bf542
  65. cpu-$(CONFIG_BF544) := bf544
  66. cpu-$(CONFIG_BF547) := bf547
  67. cpu-$(CONFIG_BF548) := bf548
  68. cpu-$(CONFIG_BF549) := bf549
  69. cpu-$(CONFIG_BF561) := bf561
  70. rev-$(CONFIG_BF_REV_0_0) := 0.0
  71. rev-$(CONFIG_BF_REV_0_1) := 0.1
  72. rev-$(CONFIG_BF_REV_0_2) := 0.2
  73. rev-$(CONFIG_BF_REV_0_3) := 0.3
  74. rev-$(CONFIG_BF_REV_0_4) := 0.4
  75. rev-$(CONFIG_BF_REV_0_5) := 0.5
  76. rev-$(CONFIG_BF_REV_0_6) := 0.6
  77. rev-$(CONFIG_BF_REV_NONE) := none
  78. rev-$(CONFIG_BF_REV_ANY) := any
  79. KBUILD_CFLAGS += -mcpu=$(cpu-y)-$(rev-y)
  80. KBUILD_AFLAGS += -mcpu=$(cpu-y)-$(rev-y)
  81. # - we utilize the silicon rev from the toolchain, so move it over to the checkflags
  82. # - the l1_text attribute is Blackfin specific, so fake it out as used to kill warnings
  83. CHECKFLAGS_SILICON = $(shell echo "" | $(CPP) $(KBUILD_CFLAGS) -dD - 2>/dev/null | awk '$$2 == "__SILICON_REVISION__" { print $$3 }')
  84. CHECKFLAGS += -D__SILICON_REVISION__=$(CHECKFLAGS_SILICON) -Dl1_text=__used__
  85. head-y := arch/$(ARCH)/kernel/init_task.o
  86. core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ arch/$(ARCH)/mach-common/
  87. # If we have a machine-specific directory, then include it in the build.
  88. ifneq ($(machine-y),)
  89. core-y += arch/$(ARCH)/mach-$(MACHINE)/
  90. core-y += arch/$(ARCH)/mach-$(MACHINE)/boards/
  91. endif
  92. ifeq ($(CONFIG_MPU),y)
  93. core-y += arch/$(ARCH)/kernel/cplb-mpu/
  94. else
  95. core-y += arch/$(ARCH)/kernel/cplb-nompu/
  96. endif
  97. libs-y += arch/$(ARCH)/lib/
  98. drivers-$(CONFIG_OPROFILE) += arch/$(ARCH)/oprofile/
  99. machdirs := $(patsubst %,arch/blackfin/mach-%/, $(machine-y))
  100. KBUILD_CFLAGS += -Iarch/$(ARCH)/include/
  101. KBUILD_CFLAGS += -Iarch/$(ARCH)/mach-$(MACHINE)/include
  102. KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
  103. CLEAN_FILES += \
  104. arch/$(ARCH)/include/asm/asm-offsets.h \
  105. arch/$(ARCH)/kernel/asm-offsets.s \
  106. archclean:
  107. $(Q)$(MAKE) $(clean)=$(boot)
  108. INSTALL_PATH ?= /tftpboot
  109. boot := arch/$(ARCH)/boot
  110. BOOT_TARGETS = vmImage
  111. PHONY += $(BOOT_TARGETS) install
  112. KBUILD_IMAGE := $(boot)/vmImage
  113. all: vmImage
  114. $(BOOT_TARGETS): vmlinux
  115. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  116. install:
  117. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
  118. define archhelp
  119. echo '* vmImage - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage)'
  120. echo ' install - Install kernel using'
  121. echo ' (your) ~/bin/$(CROSS_COMPILE)installkernel or'
  122. echo ' (distribution) PATH: $(CROSS_COMPILE)installkernel or'
  123. echo ' install to $$(INSTALL_PATH)'
  124. endef