blob: f7cac7c51e7e5303848ea847370f6f93e5c7354a [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
9
10CROSS_COMPILE ?= bfin-uclinux-
11LDFLAGS_vmlinux := -X
12OBJCOPYFLAGS := -O binary -R .note -R .comment -S
13GZFLAGS := -9
14
Bryan Wu38f668e2007-10-22 10:46:21 +080015KBUILD_CFLAGS += $(call cc-option,-mno-fdpic)
16KBUILD_AFLAGS += $(call cc-option,-mno-fdpic)
Bryan Wu1394f032007-05-06 14:50:22 -070017CFLAGS_MODULE += -mlong-calls
18KALLSYMS += --symbol-prefix=_
19
Mike Frysingerca9cb6f2007-05-21 18:09:35 +080020KBUILD_DEFCONFIG := BF537-STAMP_defconfig
Bryan Wu1394f032007-05-06 14:50:22 -070021
22# setup the machine name and the machine dependent settings
Michael Hennerich59003142007-10-21 16:54:27 +080023machine-$(CONFIG_BF522) := bf527
24machine-$(CONFIG_BF525) := bf527
25machine-$(CONFIG_BF527) := bf527
Bryan Wu1394f032007-05-06 14:50:22 -070026machine-$(CONFIG_BF531) := bf533
27machine-$(CONFIG_BF532) := bf533
28machine-$(CONFIG_BF533) := bf533
29machine-$(CONFIG_BF534) := bf537
30machine-$(CONFIG_BF536) := bf537
31machine-$(CONFIG_BF537) := bf537
Mike Frysingere2dd3f12007-07-24 18:20:18 +080032machine-$(CONFIG_BF542) := bf548
33machine-$(CONFIG_BF544) := bf548
Roy Huang24a07a12007-07-12 22:41:45 +080034machine-$(CONFIG_BF548) := bf548
35machine-$(CONFIG_BF549) := bf548
Bryan Wu1394f032007-05-06 14:50:22 -070036machine-$(CONFIG_BF561) := bf561
37MACHINE := $(machine-y)
38export MACHINE
39
Michael Hennerich59003142007-10-21 16:54:27 +080040cpu-$(CONFIG_BF522) := bf522
41cpu-$(CONFIG_BF525) := bf525
42cpu-$(CONFIG_BF527) := bf527
Jie Zhangde3025f2007-06-25 18:04:12 +080043cpu-$(CONFIG_BF531) := bf531
44cpu-$(CONFIG_BF532) := bf532
45cpu-$(CONFIG_BF533) := bf533
46cpu-$(CONFIG_BF534) := bf534
47cpu-$(CONFIG_BF536) := bf536
48cpu-$(CONFIG_BF537) := bf537
Mike Frysingere2dd3f12007-07-24 18:20:18 +080049cpu-$(CONFIG_BF542) := bf542
50cpu-$(CONFIG_BF544) := bf544
Jie Zhangde3025f2007-06-25 18:04:12 +080051cpu-$(CONFIG_BF548) := bf548
52cpu-$(CONFIG_BF549) := bf549
53cpu-$(CONFIG_BF561) := bf561
54
55rev-$(CONFIG_BF_REV_0_0) := 0.0
56rev-$(CONFIG_BF_REV_0_1) := 0.1
57rev-$(CONFIG_BF_REV_0_2) := 0.2
58rev-$(CONFIG_BF_REV_0_3) := 0.3
59rev-$(CONFIG_BF_REV_0_4) := 0.4
60rev-$(CONFIG_BF_REV_0_5) := 0.5
61rev-$(CONFIG_BF_REV_NONE) := none
62rev-$(CONFIG_BF_REV_ANY) := any
63
Sam Ravnborga0f97e02007-10-14 22:21:35 +020064KBUILD_CFLAGS += -mcpu=$(cpu-y)-$(rev-y)
Sam Ravnborg222d3942007-10-15 21:59:31 +020065KBUILD_AFLAGS += -mcpu=$(cpu-y)-$(rev-y)
Bryan Wu1394f032007-05-06 14:50:22 -070066
67head-y := arch/$(ARCH)/mach-$(MACHINE)/head.o arch/$(ARCH)/kernel/init_task.o
68
69core-y += arch/$(ARCH)/kernel/ arch/$(ARCH)/mm/ arch/$(ARCH)/mach-common/
70
71# If we have a machine-specific directory, then include it in the build.
72ifneq ($(machine-y),)
73core-y += arch/$(ARCH)/mach-$(MACHINE)/
74core-y += arch/$(ARCH)/mach-$(MACHINE)/boards/
75endif
76
77libs-y += arch/$(ARCH)/lib/
78
79drivers-$(CONFIG_OPROFILE) += arch/$(ARCH)/oprofile/
80
81
82
83# Update machine arch symlinks if something which affects
84# them changed. We use .mach to indicate when they were updated
85# last, otherwise make uses the target directory mtime.
86
87include/asm-blackfin/.mach: $(wildcard include/config/arch/*.h) include/config/auto.conf
88 @echo ' SYMLINK include/asm-$(ARCH)/mach-$(MACHINE) -> include/asm-$(ARCH)/mach'
89ifneq ($(KBUILD_SRC),)
90 $(Q)mkdir -p include/asm-$(ARCH)
91 $(Q)ln -fsn $(srctree)/include/asm-$(ARCH)/mach-$(MACHINE) include/asm-$(ARCH)/mach
92else
93 $(Q)ln -fsn mach-$(MACHINE) include/asm-$(ARCH)/mach
94endif
95 @touch $@
96
97CLEAN_FILES += \
98 include/asm-$(ARCH)/asm-offsets.h \
99 arch/$(ARCH)/kernel/asm-offsets.s \
100 include/asm-$(ARCH)/mach \
101 include/asm-$(ARCH)/.mach
102
103archprepare: include/asm-blackfin/.mach
104archclean:
105 $(Q)$(MAKE) $(clean)=$(boot)
106
107
Bryan Wu1394f032007-05-06 14:50:22 -0700108boot := arch/$(ARCH)/boot
109BOOT_TARGETS = vmImage
Mike Frysinger780431e2007-10-21 23:37:54 +0800110PHONY += $(BOOT_TARGETS) install
111KBUILD_IMAGE := $(boot)/vmImage
112
113all: vmImage
114
Bryan Wu1394f032007-05-06 14:50:22 -0700115$(BOOT_TARGETS): vmlinux
116 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
Mike Frysinger780431e2007-10-21 23:37:54 +0800117
118install:
119 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
120
Bryan Wu1394f032007-05-06 14:50:22 -0700121define archhelp
122 echo '* vmImage - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage)'
Mike Frysinger780431e2007-10-21 23:37:54 +0800123 echo ' install - Install kernel using'
124 echo ' (your) ~/bin/$(CROSS_COMPILE)installkernel or'
125 echo ' (distribution) PATH: $(CROSS_COMPILE)installkernel or'
126 echo ' install to $$(INSTALL_PATH)'
Bryan Wu1394f032007-05-06 14:50:22 -0700127endef