Makefile 8.1 KB
Newer Older
L
Linus Torvalds 已提交
1
#
P
Paul Mundt 已提交
2
# arch/sh/Makefile
L
Linus Torvalds 已提交
3 4
#
# Copyright (C) 1999  Kaz Kojima
5
# Copyright (C) 2002 - 2008  Paul Mundt
L
Linus Torvalds 已提交
6 7
# Copyright (C) 2002  M. R. Brown
#
P
Paul Mundt 已提交
8 9 10
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
L
Linus Torvalds 已提交
11
#
12 13 14 15 16 17
ifneq ($(SUBARCH),$(ARCH))
  ifeq ($(CROSS_COMPILE),)
    CROSS_COMPILE := $(call cc-cross-prefix, $(UTS_MACHINE)-linux-  $(UTS_MACHINE)-linux-gnu-  $(UTS_MACHINE)-unknown-linux-gnu-)
  endif
endif

18
isa-y					:= any
19
isa-$(CONFIG_SH_DSP)			:= sh
20
isa-$(CONFIG_CPU_SH2)			:= sh2
21
isa-$(CONFIG_CPU_SH2A)			:= sh2a
22 23 24
isa-$(CONFIG_CPU_SH3)			:= sh3
isa-$(CONFIG_CPU_SH4)			:= sh4
isa-$(CONFIG_CPU_SH4A)			:= sh4a
25
isa-$(CONFIG_CPU_SH4AL_DSP)		:= sh4al
26
isa-$(CONFIG_CPU_SH5)			:= shmedia
P
Paul Mundt 已提交
27 28

ifeq ($(CONFIG_SUPERH32),y)
29
isa-$(CONFIG_SH_DSP)			:= $(isa-y)-dsp
P
Paul Mundt 已提交
30 31
isa-y					:= $(isa-y)-up
endif
32

33
cflags-$(CONFIG_CPU_SH2)		:= $(call cc-option,-m2,)
34
cflags-$(CONFIG_CPU_J2)			+= $(call cc-option,-mj2,)
35
cflags-$(CONFIG_CPU_SH2A)		+= $(call cc-option,-m2a,) \
36 37
					   $(call cc-option,-m2a-nofpu,) \
					   $(call cc-option,-m4-nofpu,)
38 39
cflags-$(CONFIG_CPU_SH3)		:= $(call cc-option,-m3,)
cflags-$(CONFIG_CPU_SH4)		:= $(call cc-option,-m4,) \
L
Linus Torvalds 已提交
40
	$(call cc-option,-mno-implicit-fp,-m4-nofpu)
41
cflags-$(CONFIG_CPU_SH4A)		+= $(call cc-option,-m4a,) \
42
					   $(call cc-option,-m4a-nofpu,)
P
Paul Mundt 已提交
43
cflags-$(CONFIG_CPU_SH4AL_DSP)		+= $(call cc-option,-m4al,)
44
cflags-$(CONFIG_CPU_SH5)		:= $(call cc-option,-m5-32media-nofpu,)
45

46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
ifeq ($(cflags-y),)
#
# In the case where we are stuck with a compiler that has been uselessly
# restricted to a particular ISA, a favourite default of newer GCCs when
# extensive multilib targets are not provided, ensure we get the best fit
# regarding FP generation. This is intentionally stupid (albeit many
# orders of magnitude less than GCC's default behaviour), as anything
# with a large number of multilib targets better have been built
# correctly for the target in mind.
#
cflags-y	+= $(shell $(CC) $(KBUILD_CFLAGS) -print-multi-lib | \
		     grep nofpu | sed q | sed -e 's/^/-/;s/;.*$$//')
# At this point, anything goes.
isaflags-y	:= $(call as-option,-Wa$(comma)-isa=any,)
else
61 62 63 64 65 66 67 68 69 70 71 72
#
# -Wa,-isa= tuning implies -Wa,-dsp for the versions of binutils that
# support it, while -Wa,-dsp by itself limits the range of usable opcodes
# on certain CPU subtypes. Try the ISA variant first, and if that fails,
# fall back on -Wa,-dsp for the old binutils versions. Even without DSP
# opcodes, we always want the best ISA tuning the version of binutils
# will provide.
#
isaflags-y	:= $(call as-option,-Wa$(comma)-isa=$(isa-y),)

isaflags-$(CONFIG_SH_DSP)		:= \
	$(call as-option,-Wa$(comma)-isa=$(isa-y),-Wa$(comma)-dsp)
73 74 75 76
endif

cflags-$(CONFIG_CPU_BIG_ENDIAN)		+= -mb
cflags-$(CONFIG_CPU_LITTLE_ENDIAN)	+= -ml
77

78
cflags-y	+= $(call cc-option,-mno-fdpic)
79
cflags-y	+= $(isaflags-y) -ffreestanding
L
Linus Torvalds 已提交
80

P
Paul Mundt 已提交
81 82
OBJCOPYFLAGS	:= -O binary -R .note -R .note.gnu.build-id -R .comment \
		   -R .stab -R .stabstr -S
L
Linus Torvalds 已提交
83

P
Paul Mundt 已提交
84
# Give the various platforms the opportunity to set default image types
85 86
defaultimage-$(CONFIG_SUPERH32)			:= zImage
defaultimage-$(CONFIG_SH_SH7785LCR)		:= uImage
87
defaultimage-$(CONFIG_SH_RSK)			:= uImage
88
defaultimage-$(CONFIG_SH_URQUELL)		:= uImage
89 90
defaultimage-$(CONFIG_SH_MIGOR)			:= uImage
defaultimage-$(CONFIG_SH_AP325RXA)		:= uImage
91
defaultimage-$(CONFIG_SH_SH7757LCR)		:= uImage
92
defaultimage-$(CONFIG_SH_7724_SOLUTION_ENGINE)	:= uImage
93 94
defaultimage-$(CONFIG_SH_7206_SOLUTION_ENGINE)	:= vmlinux
defaultimage-$(CONFIG_SH_7619_SOLUTION_ENGINE)	:= vmlinux
95

P
Paul Mundt 已提交
96
# Set some sensible Kbuild defaults
97 98
boot := arch/sh/boot
KBUILD_IMAGE		:= $(boot)/$(defaultimage-y)
L
Linus Torvalds 已提交
99 100 101 102 103

#
# Choosing incompatible machines durings configuration will result in
# error messages during linking.
#
104
ifdef CONFIG_SUPERH32
105 106 107 108
UTS_MACHINE		:= sh
BITS			:= 32
LDFLAGS_vmlinux		+= -e _stext
KBUILD_DEFCONFIG	:= shx3_defconfig
109
else
110 111 112 113 114 115
UTS_MACHINE		:= sh64
BITS			:= 64
LDFLAGS_vmlinux		+= --defsym phys_stext=_stext-$(CONFIG_PAGE_OFFSET) \
			   --defsym phys_stext_shmedia=phys_stext+1 \
			   -e phys_stext_shmedia
KBUILD_DEFCONFIG	:= cayman_defconfig
116
endif
L
Linus Torvalds 已提交
117 118

ifdef CONFIG_CPU_LITTLE_ENDIAN
119
ld-bfd			:= elf32-$(UTS_MACHINE)-linux
120
LDFLAGS_vmlinux		+= --defsym jiffies=jiffies_64 --oformat $(ld-bfd)
L
Linus Torvalds 已提交
121 122
LDFLAGS			+= -EL
else
123
ld-bfd			:= elf32-$(UTS_MACHINE)big-linux
124
LDFLAGS_vmlinux		+= --defsym jiffies=jiffies_64+4 --oformat $(ld-bfd)
L
Linus Torvalds 已提交
125 126 127
LDFLAGS			+= -EB
endif

128
export ld-bfd BITS
129

T
Thomas Gleixner 已提交
130
head-y	:= arch/sh/kernel/head_$(BITS).o
L
Linus Torvalds 已提交
131

132
core-y				+= arch/sh/kernel/ arch/sh/mm/ arch/sh/boards/
T
Takashi YOSHII 已提交
133
core-$(CONFIG_SH_FPU_EMU)	+= arch/sh/math-emu/
L
Linus Torvalds 已提交
134

135 136
core-$(CONFIG_USE_BUILTIN_DTB)	+= arch/sh/boot/dts/

137
# Mach groups
138
machdir-$(CONFIG_SOLUTION_ENGINE)		+= mach-se
139 140 141 142 143 144
machdir-$(CONFIG_SH_HP6XX)			+= mach-hp6xx
machdir-$(CONFIG_SH_DREAMCAST)			+= mach-dreamcast
machdir-$(CONFIG_SH_SH03)			+= mach-sh03
machdir-$(CONFIG_SH_RTS7751R2D)			+= mach-r2d
machdir-$(CONFIG_SH_HIGHLANDER)			+= mach-highlander
machdir-$(CONFIG_SH_MIGOR)			+= mach-migor
145
machdir-$(CONFIG_SH_AP325RXA)			+= mach-ap325rxa
146
machdir-$(CONFIG_SH_KFR2R09)			+= mach-kfr2r09
147
machdir-$(CONFIG_SH_ECOVEC)			+= mach-ecovec24
148
machdir-$(CONFIG_SH_SDK7780)			+= mach-sdk7780
149
machdir-$(CONFIG_SH_SDK7786)			+= mach-sdk7786
150 151 152 153 154 155
machdir-$(CONFIG_SH_X3PROTO)			+= mach-x3proto
machdir-$(CONFIG_SH_SH7763RDP)			+= mach-sh7763rdp
machdir-$(CONFIG_SH_SH4202_MICRODEV)		+= mach-microdev
machdir-$(CONFIG_SH_LANDISK)			+= mach-landisk
machdir-$(CONFIG_SH_LBOX_RE2)			+= mach-lboxre2
machdir-$(CONFIG_SH_CAYMAN)			+= mach-cayman
156
machdir-$(CONFIG_SH_RSK)			+= mach-rsk
157

L
Linus Torvalds 已提交
158
ifneq ($(machdir-y),)
159 160
core-y	+= $(addprefix arch/sh/boards/, \
	     $(filter-out ., $(patsubst %,%/,$(machdir-y))))
L
Linus Torvalds 已提交
161 162
endif

163 164 165
# Common machine type headers. Not part of the arch/sh/boards/ hierarchy.
machdir-y	+= mach-common

L
Linus Torvalds 已提交
166
# Companion chips
K
Kristoffer Ericson 已提交
167
core-$(CONFIG_HD6446X_SERIES)	+= arch/sh/cchips/hd6446x/
L
Linus Torvalds 已提交
168

169 170 171 172 173 174 175 176 177 178 179 180 181
#
# CPU header paths
#
# These are ordered by optimization level. A CPU family that is a subset
# of another (ie, SH-2A / SH-2), is picked up first, with increasing
# levels of genericness if nothing more suitable is situated in the
# hierarchy.
#
# As an example, in order of preference, SH-2A > SH-2 > common definitions.
#
cpuincdir-$(CONFIG_CPU_SH2A)	+= cpu-sh2a
cpuincdir-$(CONFIG_CPU_SH2)	+= cpu-sh2
cpuincdir-$(CONFIG_CPU_SH3)	+= cpu-sh3
182
cpuincdir-$(CONFIG_CPU_SH4A)	+= cpu-sh4a
183 184 185
cpuincdir-$(CONFIG_CPU_SH4)	+= cpu-sh4
cpuincdir-$(CONFIG_CPU_SH5)	+= cpu-sh5
cpuincdir-y			+= cpu-common	# Must be last
L
Linus Torvalds 已提交
186 187 188 189

drivers-y			+= arch/sh/drivers/
drivers-$(CONFIG_OPROFILE)	+= arch/sh/oprofile/

190 191
cflags-y	+= $(foreach d, $(cpuincdir-y), -Iarch/sh/include/$(d)) \
		   $(foreach d, $(machdir-y), -Iarch/sh/include/$(d))
L
Linus Torvalds 已提交
192

P
Paul Mundt 已提交
193 194 195
KBUILD_CFLAGS		+= -pipe $(cflags-y)
KBUILD_CPPFLAGS		+= $(cflags-y)
KBUILD_AFLAGS		+= $(cflags-y)
L
Linus Torvalds 已提交
196

P
Paul Mundt 已提交
197 198 199 200
ifeq ($(CONFIG_MCOUNT),y)
  KBUILD_CFLAGS += -pg
endif

M
Matt Fleming 已提交
201 202 203 204
ifeq ($(CONFIG_DWARF_UNWINDER),y)
  KBUILD_CFLAGS += -fasynchronous-unwind-tables
endif

A
Adrian Bunk 已提交
205
libs-$(CONFIG_SUPERH32)		:= arch/sh/lib/	$(libs-y)
206
libs-$(CONFIG_SUPERH64)		:= arch/sh/lib64/ $(libs-y)
A
Adrian Bunk 已提交
207

P
Paul Mundt 已提交
208
BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.xz uImage.lzo \
P
Paul Mundt 已提交
209 210
	       uImage.srec uImage.bin zImage vmlinux.bin vmlinux.srec \
	       romImage
211
PHONY += $(BOOT_TARGETS)
L
Linus Torvalds 已提交
212

213
all: $(notdir $(KBUILD_IMAGE))
L
Linus Torvalds 已提交
214

P
Paul Mundt 已提交
215
$(BOOT_TARGETS): vmlinux
L
Linus Torvalds 已提交
216 217 218 219
	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

compressed: zImage

220 221
archprepare:
	$(Q)$(MAKE) $(build)=arch/sh/tools include/generated/machtypes.h
P
Paul Mundt 已提交
222

L
Linus Torvalds 已提交
223 224
archclean:
	$(Q)$(MAKE) $(clean)=$(boot)
225
	$(Q)$(MAKE) $(clean)=arch/sh/kernel/vsyscall
L
Linus Torvalds 已提交
226 227

define archhelp
P
Paul Mundt 已提交
228
	@echo '  zImage 	           - Compressed kernel image'
229
	@echo '  romImage	           - Compressed ROM image, if supported'
230
	@echo '  vmlinux.srec	           - Create an ELF S-record'
P
Paul Mundt 已提交
231
	@echo '  vmlinux.bin	           - Create an uncompressed binary image'
P
Paul Mundt 已提交
232 233
	@echo '* uImage  	           - Alias to bootable U-Boot image'
	@echo '  uImage.srec	           - Create an S-record for U-Boot'
234
	@echo '  uImage.bin	           - Kernel-only image for U-Boot (bin)'
P
Paul Mundt 已提交
235 236 237
	@echo '* uImage.gz	           - Kernel-only image for U-Boot (gzip)'
	@echo '  uImage.bz2	           - Kernel-only image for U-Boot (bzip2)'
	@echo '  uImage.lzma	           - Kernel-only image for U-Boot (lzma)'
P
Paul Mundt 已提交
238
	@echo '  uImage.xz	           - Kernel-only image for U-Boot (xz)'
239
	@echo '  uImage.lzo	           - Kernel-only image for U-Boot (lzo)'
L
Linus Torvalds 已提交
240
endef