blob: 9564731ad3a8788c7690a23fd0a6ca36cfa50cd6 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001#
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
Mike Frysingerc71b4782008-07-14 17:10:50 +08009ifeq ($(CROSS_COMPILE),)
10CROSS_COMPILE := bfin-uclinux-
11endif
Bryan Wu1394f032007-05-06 14:50:22 -070012LDFLAGS_vmlinux := -X
13OBJCOPYFLAGS := -O binary -R .note -R .comment -S
14GZFLAGS := -9
15
Bryan Wu38f668e2007-10-22 10:46:21 +080016KBUILD_CFLAGS += $(call cc-option,-mno-fdpic)
17KBUILD_AFLAGS += $(call cc-option,-mno-fdpic)
Bryan Wu1394f032007-05-06 14:50:22 -070018CFLAGS_MODULE += -mlong-calls
19KALLSYMS += --symbol-prefix=_
20
Mike Frysingerca9cb6f2007-05-21 18:09:35 +080021KBUILD_DEFCONFIG := BF537-STAMP_defconfig
Bryan Wu1394f032007-05-06 14:50:22 -070022
23# setup the machine name and the machine dependent settings
Michael Hennerich59003142007-10-21 16:54:27 +080024machine-$(CONFIG_BF522) := bf527
Mike Frysinger1545a112007-12-24 16:54:48 +080025machine-$(CONFIG_BF523) := bf527
26machine-$(CONFIG_BF524) := bf527
Michael Hennerich59003142007-10-21 16:54:27 +080027machine-$(CONFIG_BF525) := bf527
Mike Frysinger1545a112007-12-24 16:54:48 +080028machine-$(CONFIG_BF526) := bf527
Michael Hennerich59003142007-10-21 16:54:27 +080029machine-$(CONFIG_BF527) := bf527
Bryan Wu1394f032007-05-06 14:50:22 -070030machine-$(CONFIG_BF531) := bf533
31machine-$(CONFIG_BF532) := bf533
32machine-$(CONFIG_BF533) := bf533
33machine-$(CONFIG_BF534) := bf537
34machine-$(CONFIG_BF536) := bf537
35machine-$(CONFIG_BF537) := bf537
Mike Frysingere2dd3f12007-07-24 18:20:18 +080036machine-$(CONFIG_BF542) := bf548
37machine-$(CONFIG_BF544) := bf548
Mike Frysinger7c7fd172007-11-15 21:10:21 +080038machine-$(CONFIG_BF547) := bf548
Roy Huang24a07a12007-07-12 22:41:45 +080039machine-$(CONFIG_BF548) := bf548
40machine-$(CONFIG_BF549) := bf548
Bryan Wu1394f032007-05-06 14:50:22 -070041machine-$(CONFIG_BF561) := bf561
42MACHINE := $(machine-y)
43export MACHINE
44
Michael Hennerich59003142007-10-21 16:54:27 +080045cpu-$(CONFIG_BF522) := bf522
Mike Frysinger1545a112007-12-24 16:54:48 +080046cpu-$(CONFIG_BF523) := bf523
47cpu-$(CONFIG_BF524) := bf524
Michael Hennerich59003142007-10-21 16:54:27 +080048cpu-$(CONFIG_BF525) := bf525
Mike Frysinger1545a112007-12-24 16:54:48 +080049cpu-$(CONFIG_BF526) := bf526
Michael Hennerich59003142007-10-21 16:54:27 +080050cpu-$(CONFIG_BF527) := bf527
Jie Zhangde3025f2007-06-25 18:04:12 +080051cpu-$(CONFIG_BF531) := bf531
52cpu-$(CONFIG_BF532) := bf532
53cpu-$(CONFIG_BF533) := bf533
54cpu-$(CONFIG_BF534) := bf534
55cpu-$(CONFIG_BF536) := bf536
56cpu-$(CONFIG_BF537) := bf537
Mike Frysingere2dd3f12007-07-24 18:20:18 +080057cpu-$(CONFIG_BF542) := bf542
58cpu-$(CONFIG_BF544) := bf544
Mike Frysinger7c7fd172007-11-15 21:10:21 +080059cpu-$(CONFIG_BF547) := bf547
Jie Zhangde3025f2007-06-25 18:04:12 +080060cpu-$(CONFIG_BF548) := bf548
61cpu-$(CONFIG_BF549) := bf549
62cpu-$(CONFIG_BF561) := bf561
63
64rev-$(CONFIG_BF_REV_0_0) := 0.0
65rev-$(CONFIG_BF_REV_0_1) := 0.1
66rev-$(CONFIG_BF_REV_0_2) := 0.2
67rev-$(CONFIG_BF_REV_0_3) := 0.3
68rev-$(CONFIG_BF_REV_0_4) := 0.4
69rev-$(CONFIG_BF_REV_0_5) := 0.5
70rev-$(CONFIG_BF_REV_NONE) := none
71rev-$(CONFIG_BF_REV_ANY) := any
72
Sam Ravnborga0f97e02007-10-14 22:21:35 +020073KBUILD_CFLAGS += -mcpu=$(cpu-y)-$(rev-y)
Sam Ravnborg222d3942007-10-15 21:59:31 +020074KBUILD_AFLAGS += -mcpu=$(cpu-y)-$(rev-y)
Bryan Wu1394f032007-05-06 14:50:22 -070075
Mike Frysingerf6929402008-03-07 02:43:48 +080076# - we utilize the silicon rev from the toolchain, so move it over to the checkflags
77# - the l1_text attribute is Blackfin specific, so fake it out as used to kill warnings
78CHECKFLAGS_SILICON = $(shell echo "" | $(CPP) $(KBUILD_CFLAGS) -dD - 2>/dev/null | awk '$$2 == "__SILICON_REVISION__" { print $$3 }')
79CHECKFLAGS += -D__SILICON_REVISION__=$(CHECKFLAGS_SILICON) -Dl1_text=__used__
80
Bryan Wu1394f032007-05-06 14:50:22 -070081head-y := arch/$(ARCH)/mach-$(MACHINE)/head.o arch/$(ARCH)/kernel/init_task.o
82
83core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ arch/$(ARCH)/mach-common/
84
85# If we have a machine-specific directory, then include it in the build.
86ifneq ($(machine-y),)
87core-y += arch/$(ARCH)/mach-$(MACHINE)/
88core-y += arch/$(ARCH)/mach-$(MACHINE)/boards/
89endif
90
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080091ifeq ($(CONFIG_MPU),y)
92core-y += arch/$(ARCH)/kernel/cplb-mpu/
93else
94core-y += arch/$(ARCH)/kernel/cplb-nompu/
95endif
Bernd Schmidt7a1a6d02008-01-11 16:58:44 +080096
Bryan Wu1394f032007-05-06 14:50:22 -070097libs-y += arch/$(ARCH)/lib/
98
99drivers-$(CONFIG_OPROFILE) += arch/$(ARCH)/oprofile/
100
101
102
103# Update machine arch symlinks if something which affects
104# them changed. We use .mach to indicate when they were updated
105# last, otherwise make uses the target directory mtime.
106
Mike Frysingerc63d4e62008-02-22 16:12:01 +0800107 show_mach_symlink = :
Mike Frysinger4d94bf62008-02-22 16:03:54 +0800108 quiet_show_mach_symlink = echo ' SYMLINK include/asm-$(ARCH)/mach-$(MACHINE) -> include/asm-$(ARCH)/mach'
109silent_show_mach_symlink = :
Bryan Wu1394f032007-05-06 14:50:22 -0700110include/asm-blackfin/.mach: $(wildcard include/config/arch/*.h) include/config/auto.conf
Mike Frysinger4d94bf62008-02-22 16:03:54 +0800111 @$($(quiet)show_mach_symlink)
Bryan Wu1394f032007-05-06 14:50:22 -0700112ifneq ($(KBUILD_SRC),)
113 $(Q)mkdir -p include/asm-$(ARCH)
114 $(Q)ln -fsn $(srctree)/include/asm-$(ARCH)/mach-$(MACHINE) include/asm-$(ARCH)/mach
115else
116 $(Q)ln -fsn mach-$(MACHINE) include/asm-$(ARCH)/mach
117endif
118 @touch $@
119
120CLEAN_FILES += \
121 include/asm-$(ARCH)/asm-offsets.h \
122 arch/$(ARCH)/kernel/asm-offsets.s \
123 include/asm-$(ARCH)/mach \
124 include/asm-$(ARCH)/.mach
125
126archprepare: include/asm-blackfin/.mach
127archclean:
128 $(Q)$(MAKE) $(clean)=$(boot)
129
130
Mike Frysinger16e6da42008-02-07 14:15:37 +0800131INSTALL_PATH ?= /tftpboot
Bryan Wu1394f032007-05-06 14:50:22 -0700132boot := arch/$(ARCH)/boot
133BOOT_TARGETS = vmImage
Mike Frysinger780431e2007-10-21 23:37:54 +0800134PHONY += $(BOOT_TARGETS) install
135KBUILD_IMAGE := $(boot)/vmImage
136
137all: vmImage
138
Bryan Wu1394f032007-05-06 14:50:22 -0700139$(BOOT_TARGETS): vmlinux
140 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
Mike Frysinger780431e2007-10-21 23:37:54 +0800141
142install:
143 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
144
Bryan Wu1394f032007-05-06 14:50:22 -0700145define archhelp
146 echo '* vmImage - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage)'
Mike Frysinger780431e2007-10-21 23:37:54 +0800147 echo ' install - Install kernel using'
148 echo ' (your) ~/bin/$(CROSS_COMPILE)installkernel or'
149 echo ' (distribution) PATH: $(CROSS_COMPILE)installkernel or'
150 echo ' install to $$(INSTALL_PATH)'
Bryan Wu1394f032007-05-06 14:50:22 -0700151endef