Makefile 4.1 KB

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