blob: 37cf636fba552f2657262db9a37c8b7debdf892c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# $Id: Makefile,v 1.35 2004/04/15 03:39:20 sugioka Exp $
2#
3# This file is subject to the terms and conditions of the GNU General Public
4# License. See the file "COPYING" in the main directory of this archive
5# for more details.
6#
7# Copyright (C) 1999 Kaz Kojima
8# Copyright (C) 2002, 2003, 2004 Paul Mundt
9# Copyright (C) 2002 M. R. Brown
10#
11# This file is included by the global makefile so that you can add your own
12# architecture-specific flags and dependencies. Remember to do have actions
13# for "archclean" and "archdep" for cleaning up and making dependencies for
14# this architecture
15#
Paul Mundtcad82442006-01-16 22:14:19 -080016isa-y := any
Paul Mundte5723e02006-09-27 17:38:11 +090017isa-$(CONFIG_SH_DSP) := sh
Paul Mundtcad82442006-01-16 22:14:19 -080018isa-$(CONFIG_CPU_SH2) := sh2
Paul Mundte5723e02006-09-27 17:38:11 +090019isa-$(CONFIG_CPU_SH2A) := sh2a
Paul Mundtcad82442006-01-16 22:14:19 -080020isa-$(CONFIG_CPU_SH3) := sh3
21isa-$(CONFIG_CPU_SH4) := sh4
22isa-$(CONFIG_CPU_SH4A) := sh4a
Paul Mundte5723e02006-09-27 17:38:11 +090023isa-$(CONFIG_CPU_SH4AL_DSP) := sh4al
Paul Mundtcad82442006-01-16 22:14:19 -080024
25isa-$(CONFIG_SH_DSP) := $(isa-y)-dsp
26
27ifndef CONFIG_MMU
28isa-y := $(isa-y)-nommu
29endif
30
Paul Mundte5723e02006-09-27 17:38:11 +090031ifndef CONFIG_SH_DSP
Paul Mundtcad82442006-01-16 22:14:19 -080032ifndef CONFIG_SH_FPU
33isa-y := $(isa-y)-nofpu
34endif
Paul Mundte5723e02006-09-27 17:38:11 +090035endif
Paul Mundtcad82442006-01-16 22:14:19 -080036
Paul Mundtda2f5f72007-08-21 16:56:56 +090037isa-y := $(isa-y)-up
38
Paul Mundt6240d922007-06-01 17:25:42 +090039cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,)
Paul Mundtaab1b162007-07-12 09:48:54 +090040cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \
Paul Mundt6240d922007-06-01 17:25:42 +090041 $(call cc-option,-m2a-nofpu,)
42cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,)
43cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 $(call cc-option,-mno-implicit-fp,-m4-nofpu)
Paul Mundtaab1b162007-07-12 09:48:54 +090045cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \
Paul Mundt6240d922007-06-01 17:25:42 +090046 $(call cc-option,-m4a-nofpu,)
Paul Mundt53644082006-11-21 11:12:19 +090047
48cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mb
49cflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -ml
50
Paul Mundtda2f5f72007-08-21 16:56:56 +090051#
52# -Wa,-isa= tuning implies -Wa,-dsp for the versions of binutils that
53# support it, while -Wa,-dsp by itself limits the range of usable opcodes
54# on certain CPU subtypes. Try the ISA variant first, and if that fails,
55# fall back on -Wa,-dsp for the old binutils versions. Even without DSP
56# opcodes, we always want the best ISA tuning the version of binutils
57# will provide.
58#
59isaflags-y := $(call as-option,-Wa$(comma)-isa=$(isa-y),)
60
61isaflags-$(CONFIG_SH_DSP) := \
62 $(call as-option,-Wa$(comma)-isa=$(isa-y),-Wa$(comma)-dsp)
63
64cflags-y += $(isaflags-y) -ffreestanding
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066cflags-$(CONFIG_MORE_COMPILE_OPTIONS) += \
67 $(shell echo $(CONFIG_COMPILE_OPTIONS) | sed -e 's/"//g')
68
69OBJCOPYFLAGS := -O binary -R .note -R .comment -R .stab -R .stabstr -S
70
71#
72# arch/sh/defconfig doesn't reflect any real hardware, and as such should
73# never be used by anyone. Use a board-specific defconfig that has a
74# reasonable chance of being current instead.
75#
Paul Mundtf36af732006-12-06 11:08:49 +090076KBUILD_DEFCONFIG := r7780rp_defconfig
77
78KBUILD_IMAGE := arch/sh/boot/zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#
81# Choosing incompatible machines durings configuration will result in
82# error messages during linking.
83#
84LDFLAGS_vmlinux += -e _stext
85
86ifdef CONFIG_CPU_LITTLE_ENDIAN
87LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64'
88LDFLAGS += -EL
89else
90LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64+4'
91LDFLAGS += -EB
92endif
93
94CFLAGS += -pipe $(cflags-y)
95AFLAGS += $(cflags-y)
96
97head-y := arch/sh/kernel/head.o arch/sh/kernel/init_task.o
98
99LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
100
101core-y += arch/sh/kernel/ arch/sh/mm/
Takashi YOSHII4b565682006-09-27 17:15:32 +0900102core-$(CONFIG_SH_FPU_EMU) += arch/sh/math-emu/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104# Boards
Paul Mundt25f81512007-05-14 19:12:37 +0900105machdir-$(CONFIG_SH_SOLUTION_ENGINE) += se/770x
106machdir-$(CONFIG_SH_7722_SOLUTION_ENGINE) += se/7722
107machdir-$(CONFIG_SH_7751_SOLUTION_ENGINE) += se/7751
108machdir-$(CONFIG_SH_7780_SOLUTION_ENGINE) += se/7780
Paul Mundt25f81512007-05-14 19:12:37 +0900109machdir-$(CONFIG_SH_7343_SOLUTION_ENGINE) += se/7343
Paul Mundt25f81512007-05-14 19:12:37 +0900110machdir-$(CONFIG_SH_HP6XX) += hp6xx
Paul Mundt25f81512007-05-14 19:12:37 +0900111machdir-$(CONFIG_SH_DREAMCAST) += dreamcast
112machdir-$(CONFIG_SH_MPC1211) += mpc1211
113machdir-$(CONFIG_SH_SH03) += sh03
114machdir-$(CONFIG_SH_SECUREEDGE5410) += snapgear
115machdir-$(CONFIG_SH_HS7751RVOIP) += renesas/hs7751rvoip
116machdir-$(CONFIG_SH_RTS7751R2D) += renesas/rts7751r2d
117machdir-$(CONFIG_SH_7751_SYSTEMH) += renesas/systemh
118machdir-$(CONFIG_SH_EDOSK7705) += renesas/edosk7705
119machdir-$(CONFIG_SH_HIGHLANDER) += renesas/r7780rp
120machdir-$(CONFIG_SH_7710VOIPGW) += renesas/sh7710voipgw
Paul Mundt94807a32007-08-08 15:22:04 +0900121machdir-$(CONFIG_SH_X3PROTO) += renesas/x3proto
Paul Mundt25f81512007-05-14 19:12:37 +0900122machdir-$(CONFIG_SH_SH4202_MICRODEV) += superh/microdev
123machdir-$(CONFIG_SH_LANDISK) += landisk
124machdir-$(CONFIG_SH_TITAN) += titan
125machdir-$(CONFIG_SH_SHMIN) += shmin
126machdir-$(CONFIG_SH_7206_SOLUTION_ENGINE) += se/7206
127machdir-$(CONFIG_SH_7619_SOLUTION_ENGINE) += se/7619
128machdir-$(CONFIG_SH_LBOX_RE2) += lboxre2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Paul Mundt25f81512007-05-14 19:12:37 +0900130incdir-y := $(notdir $(machdir-y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132ifneq ($(machdir-y),)
Paul Mundt25f81512007-05-14 19:12:37 +0900133core-y += $(addprefix arch/sh/boards/, \
134 $(filter-out ., $(patsubst %,%/,$(machdir-y))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135endif
136
137# Companion chips
Kristoffer Ericson4aafae272007-07-17 13:52:38 +0900138core-$(CONFIG_HD6446X_SERIES) += arch/sh/cchips/hd6446x/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139core-$(CONFIG_VOYAGERGX) += arch/sh/cchips/voyagergx/
140
141cpuincdir-$(CONFIG_CPU_SH2) := cpu-sh2
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900142cpuincdir-$(CONFIG_CPU_SH2A) := cpu-sh2a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143cpuincdir-$(CONFIG_CPU_SH3) := cpu-sh3
144cpuincdir-$(CONFIG_CPU_SH4) := cpu-sh4
145
146libs-y := arch/sh/lib/ $(libs-y) $(LIBGCC)
147
148drivers-y += arch/sh/drivers/
149drivers-$(CONFIG_OPROFILE) += arch/sh/oprofile/
150
151boot := arch/sh/boot
152
153CPPFLAGS_vmlinux.lds := -traditional
154
Paul Mundtcad82442006-01-16 22:14:19 -0800155incdir-prefix := $(srctree)/include/asm-sh/
Paul Mundtcad82442006-01-16 22:14:19 -0800156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157# Update machine arch and proc symlinks if something which affects
158# them changed. We use .arch and .mach to indicate when they were
159# updated last, otherwise make uses the target directory mtime.
160
Paul Mundtae318252006-09-27 16:08:24 +0900161include/asm-sh/.cpu: $(wildcard include/config/cpu/*.h) \
162 include/config/auto.conf FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 @echo ' SYMLINK include/asm-sh/cpu -> include/asm-sh/$(cpuincdir-y)'
Paul Mundtcad82442006-01-16 22:14:19 -0800164 $(Q)if [ ! -d include/asm-sh ]; then mkdir -p include/asm-sh; fi
165 $(Q)ln -fsn $(incdir-prefix)$(cpuincdir-y) include/asm-sh/cpu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 @touch $@
167
Paul Mundtcad82442006-01-16 22:14:19 -0800168# Most boards have their own mach directories. For the ones that
169# don't, just reference the parent directory so the semantics are
170# kept roughly the same.
Paul Mundt25f81512007-05-14 19:12:37 +0900171#
172# When multiple boards are compiled in at the same time, preference
173# for the mach link is given to whichever has a directory for its
174# headers. However, this is only a workaround until platforms that
175# can live in the same kernel image back away from relying on the
176# mach link.
Paul Mundtcad82442006-01-16 22:14:19 -0800177
Paul Mundtae318252006-09-27 16:08:24 +0900178include/asm-sh/.mach: $(wildcard include/config/sh/*.h) \
179 include/config/auto.conf FORCE
Paul Mundtcad82442006-01-16 22:14:19 -0800180 $(Q)if [ ! -d include/asm-sh ]; then mkdir -p include/asm-sh; fi
Paul Mundt25f81512007-05-14 19:12:37 +0900181 $(Q)rm -f include/asm-sh/mach
182 $(Q)for i in $(incdir-y); do \
183 if [ -d $(incdir-prefix)$$i ]; then \
184 echo -n ' SYMLINK include/asm-sh/mach -> '; \
185 echo -e "include/asm-sh/$$i"; \
186 ln -fsn $(incdir-prefix)$$i \
Paul Mundtcad82442006-01-16 22:14:19 -0800187 include/asm-sh/mach; \
188 else \
Paul Mundt25f81512007-05-14 19:12:37 +0900189 if [ ! -d include/asm-sh/mach ]; then \
190 echo -n ' SYMLINK include/asm-sh/mach -> '; \
191 echo -e 'include/asm-sh'; \
192 ln -fsn $(incdir-prefix) include/asm-sh/mach; \
193 fi; \
194 fi; \
195 done
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 @touch $@
197
Paul Mundtae318252006-09-27 16:08:24 +0900198archprepare: include/asm-sh/.cpu include/asm-sh/.mach maketools
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Paul Smith4f193362006-03-05 17:14:10 -0500200PHONY += maketools FORCE
Sam Ravnborgcca6e6f2005-09-09 20:28:49 +0200201maketools: include/linux/version.h FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 $(Q)$(MAKE) $(build)=arch/sh/tools include/asm-sh/machtypes.h
203
204all: zImage
205
Paul Mundtcf00e202006-12-07 17:00:32 +0900206zImage uImage uImage.srec vmlinux.srec: vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
208
209compressed: zImage
210
211archclean:
212 $(Q)$(MAKE) $(clean)=$(boot)
213
Paul Mundt880dec12007-07-06 10:22:59 +0900214CLEAN_FILES += include/asm-sh/machtypes.h \
215 include/asm-sh/cpu include/asm-sh/.cpu \
216 include/asm-sh/mach include/asm-sh/.mach
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218define archhelp
Paul Mundtcf00e202006-12-07 17:00:32 +0900219 @echo '* zImage - Compressed kernel image'
220 @echo ' vmlinux.srec - Create an ELF S-record'
221 @echo ' uImage - Create a bootable image for U-Boot'
222 @echo ' uImage.srec - Create an S-record for U-Boot'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223endef