2005-04-17 02:20:36 +04:00
#
2007-11-21 16:13:34 +03:00
# arch/sh/Makefile
2005-04-17 02:20:36 +04:00
#
# Copyright (C) 1999 Kaz Kojima
2008-10-28 13:37:05 +03:00
# Copyright (C) 2002 - 2008 Paul Mundt
2005-04-17 02:20:36 +04:00
# Copyright (C) 2002 M. R. Brown
#
2007-11-21 16:13:34 +03:00
# 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.
2005-04-17 02:20:36 +04:00
#
2006-01-17 09:14:19 +03:00
isa-y := any
2006-09-27 12:38:11 +04:00
isa-$(CONFIG_SH_DSP) := sh
2006-01-17 09:14:19 +03:00
isa-$(CONFIG_CPU_SH2) := sh2
2006-09-27 12:38:11 +04:00
isa-$(CONFIG_CPU_SH2A) := sh2a
2006-01-17 09:14:19 +03:00
isa-$(CONFIG_CPU_SH3) := sh3
isa-$(CONFIG_CPU_SH4) := sh4
isa-$(CONFIG_CPU_SH4A) := sh4a
2006-09-27 12:38:11 +04:00
isa-$(CONFIG_CPU_SH4AL_DSP) := sh4al
2007-11-08 12:52:35 +03:00
isa-$(CONFIG_CPU_SH5) := shmedia
2008-10-31 09:58:53 +03:00
i f e q ( $( CONFIG_SUPERH 32) , y )
2006-01-17 09:14:19 +03:00
isa-$(CONFIG_SH_DSP) := $( isa-y) -dsp
2008-10-31 09:58:53 +03:00
isa-y := $( isa-y) -up
e n d i f
2006-01-17 09:14:19 +03:00
2007-06-01 12:25:42 +04:00
cflags-$(CONFIG_CPU_SH2) := $( call cc-option,-m2,)
2007-07-12 04:48:54 +04:00
cflags-$(CONFIG_CPU_SH2A) += $( call cc-option,-m2a,) \
2007-06-01 12:25:42 +04:00
$( call cc-option,-m2a-nofpu,)
cflags-$(CONFIG_CPU_SH3) := $( call cc-option,-m3,)
cflags-$(CONFIG_CPU_SH4) := $( call cc-option,-m4,) \
2005-04-17 02:20:36 +04:00
$( call cc-option,-mno-implicit-fp,-m4-nofpu)
2007-07-12 04:48:54 +04:00
cflags-$(CONFIG_CPU_SH4A) += $( call cc-option,-m4a,) \
2007-06-01 12:25:42 +04:00
$( call cc-option,-m4a-nofpu,)
2008-11-20 09:28:47 +03:00
cflags-$(CONFIG_CPU_SH4AL_DSP) += $( call cc-option,-m4al,)
2007-11-08 12:52:35 +03:00
cflags-$(CONFIG_CPU_SH5) := $( call cc-option,-m5-32media-nofpu,)
2006-11-21 05:12:19 +03:00
2008-11-25 22:21:36 +03:00
i f e q ( $( 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,)
e l s e
2007-08-21 11:56:56 +04:00
#
# -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)
2008-11-25 22:21:36 +03:00
e n d i f
cflags-$(CONFIG_CPU_BIG_ENDIAN) += -mb
cflags-$(CONFIG_CPU_LITTLE_ENDIAN) += -ml
2007-08-21 11:56:56 +04:00
2008-11-25 22:21:36 +03:00
cflags-y += $( call cc-option,-mno-fdpic)
2007-08-21 11:56:56 +04:00
cflags-y += $( isaflags-y) -ffreestanding
2005-04-17 02:20:36 +04:00
2007-11-21 16:13:34 +03:00
OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment \
-R .stab -R .stabstr -S
2005-04-17 02:20:36 +04:00
2007-11-21 16:13:34 +03:00
# Give the various platforms the opportunity to set default image types
2008-10-28 12:50:00 +03:00
defaultimage-$(CONFIG_SUPERH32) := zImage
defaultimage-$(CONFIG_SH_SH7785LCR) := uImage
2008-12-21 21:26:26 +03:00
defaultimage-$(CONFIG_SH_RSK) := uImage
2009-03-10 11:00:48 +03:00
defaultimage-$(CONFIG_SH_URQUELL) := uImage
2009-12-04 07:57:40 +03:00
defaultimage-$(CONFIG_SH_MIGOR) := uImage
defaultimage-$(CONFIG_SH_AP325RXA) := uImage
2011-11-01 09:57:01 +04:00
defaultimage-$(CONFIG_SH_SH7757LCR) := uImage
2009-12-04 07:57:40 +03:00
defaultimage-$(CONFIG_SH_7724_SOLUTION_ENGINE) := uImage
2008-11-18 11:35:45 +03:00
defaultimage-$(CONFIG_SH_7206_SOLUTION_ENGINE) := vmlinux
defaultimage-$(CONFIG_SH_7619_SOLUTION_ENGINE) := vmlinux
2006-12-06 05:08:49 +03:00
2007-11-21 16:13:34 +03:00
# Set some sensible Kbuild defaults
KBUILD_IMAGE := $( defaultimage-y)
2005-04-17 02:20:36 +04:00
#
# Choosing incompatible machines durings configuration will result in
# error messages during linking.
#
2007-11-20 09:38:11 +03:00
i f d e f C O N F I G _ S U P E R H 3 2
2009-05-26 12:12:20 +04:00
UTS_MACHINE := sh
BITS := 32
LDFLAGS_vmlinux += -e _stext
KBUILD_DEFCONFIG := shx3_defconfig
2007-11-20 09:38:11 +03:00
e l s e
2009-05-26 12:12:20 +04:00
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
2007-11-20 09:38:11 +03:00
e n d i f
2005-04-17 02:20:36 +04:00
2009-05-09 20:28:01 +04:00
i f n e q ( $( SUBARCH ) , $( ARCH ) )
ifeq ( $( CROSS_COMPILE) ,)
CROSS_COMPILE := $( call cc-cross-prefix, $( UTS_MACHINE) -linux- $( UTS_MACHINE) -linux-gnu- $( UTS_MACHINE) -unknown-linux-gnu-)
endif
e n d i f
2005-04-17 02:20:36 +04:00
i f d e f C O N F I G _ C P U _ L I T T L E _ E N D I A N
2009-05-09 19:25:08 +04:00
ld-bfd := elf32-$( UTS_MACHINE) -linux
LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64' --oformat $( ld-bfd)
2005-04-17 02:20:36 +04:00
LDFLAGS += -EL
e l s e
2009-05-09 19:25:08 +04:00
ld-bfd := elf32-$( UTS_MACHINE) big-linux
LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64+4' --oformat $( ld-bfd)
2005-04-17 02:20:36 +04:00
LDFLAGS += -EB
e n d i f
2009-05-09 19:55:45 +04:00
export ld-bfd BITS
2009-05-09 19:25:08 +04:00
2009-05-09 19:55:45 +04:00
head-y := arch/sh/kernel/init_task.o arch/sh/kernel/head_$( BITS) .o
2005-04-17 02:20:36 +04:00
2008-07-29 19:13:39 +04:00
core-y += arch/sh/kernel/ arch/sh/mm/ arch/sh/boards/
2006-09-27 12:15:32 +04:00
core-$(CONFIG_SH_FPU_EMU) += arch/sh/math-emu/
2005-04-17 02:20:36 +04:00
2008-07-29 19:13:39 +04:00
# Mach groups
2008-07-29 16:41:37 +04:00
machdir-$(CONFIG_SOLUTION_ENGINE) += mach-se
2008-07-29 16:01:19 +04:00
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
2009-10-30 07:23:42 +03:00
machdir-$(CONFIG_SH_AP325RXA) += mach-ap325rxa
2009-07-22 20:20:54 +04:00
machdir-$(CONFIG_SH_KFR2R09) += mach-kfr2r09
2009-08-19 16:08:33 +04:00
machdir-$(CONFIG_SH_ECOVEC) += mach-ecovec24
2008-07-29 16:01:19 +04:00
machdir-$(CONFIG_SH_SDK7780) += mach-sdk7780
2010-01-14 14:58:58 +03:00
machdir-$(CONFIG_SH_SDK7786) += mach-sdk7786
2008-07-29 16:01:19 +04:00
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
2008-12-08 08:32:03 +03:00
machdir-$(CONFIG_SH_RSK) += mach-rsk
2007-05-14 14:12:37 +04:00
2005-04-17 02:20:36 +04:00
i f n e q ( $( machdir -y ) , )
2007-05-14 14:12:37 +04:00
core-y += $( addprefix arch/sh/boards/, \
$( filter-out ., $( patsubst %,%/,$( machdir-y) ) ) )
2005-04-17 02:20:36 +04:00
e n d i f
2008-10-20 08:02:48 +04:00
# Common machine type headers. Not part of the arch/sh/boards/ hierarchy.
machdir-y += mach-common
2005-04-17 02:20:36 +04:00
# Companion chips
2007-07-17 08:52:38 +04:00
core-$(CONFIG_HD6446X_SERIES) += arch/sh/cchips/hd6446x/
2005-04-17 02:20:36 +04:00
2008-07-29 17:46:55 +04:00
#
# 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
2011-06-14 07:40:19 +04:00
cpuincdir-$(CONFIG_CPU_SH4A) += cpu-sh4a
2008-07-29 17:46:55 +04:00
cpuincdir-$(CONFIG_CPU_SH4) += cpu-sh4
cpuincdir-$(CONFIG_CPU_SH5) += cpu-sh5
cpuincdir-y += cpu-common # Must be last
2005-04-17 02:20:36 +04:00
drivers-y += arch/sh/drivers/
drivers-$(CONFIG_OPROFILE) += arch/sh/oprofile/
boot := arch/sh/boot
2008-07-29 17:46:55 +04:00
cflags-y += $( foreach d, $( cpuincdir-y) , -Iarch/sh/include/$( d) ) \
$( foreach d, $( machdir-y) , -Iarch/sh/include/$( d) )
2005-04-17 02:20:36 +04:00
2008-07-29 03:09:44 +04:00
KBUILD_CFLAGS += -pipe $( cflags-y)
KBUILD_CPPFLAGS += $( cflags-y)
KBUILD_AFLAGS += $( cflags-y)
2005-04-17 02:20:36 +04:00
2009-07-11 14:56:58 +04:00
i f e q ( $( CONFIG_MCOUNT ) , y )
KBUILD_CFLAGS += -pg
e n d i f
2009-08-13 20:58:43 +04:00
i f e q ( $( CONFIG_DWARF_UNWINDER ) , y )
KBUILD_CFLAGS += -fasynchronous-unwind-tables
e n d i f
2008-08-02 02:13:44 +04:00
libs-$(CONFIG_SUPERH32) := arch/sh/lib/ $( libs-y)
2008-12-12 10:53:14 +03:00
libs-$(CONFIG_SUPERH64) := arch/sh/lib64/ $( libs-y)
2008-08-02 02:13:44 +04:00
2011-01-14 09:52:54 +03:00
BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.xz uImage.lzo \
2010-01-13 10:28:47 +03:00
uImage.srec uImage.bin zImage vmlinux.bin vmlinux.srec \
romImage
2009-10-18 00:20:22 +04:00
PHONY += $( BOOT_TARGETS)
2005-04-17 02:20:36 +04:00
2007-11-21 16:13:34 +03:00
all : $( KBUILD_IMAGE )
2005-04-17 02:20:36 +04:00
2009-07-21 12:24:36 +04:00
$(BOOT_TARGETS) : vmlinux
2005-04-17 02:20:36 +04:00
$( Q) $( MAKE) $( build) = $( boot) $( boot) /$@
compressed : zImage
2009-10-18 00:20:22 +04:00
archprepare :
$( Q) $( MAKE) $( build) = arch/sh/tools include/generated/machtypes.h
2007-11-21 16:28:28 +03:00
2005-04-17 02:20:36 +04:00
archclean :
$( Q) $( MAKE) $( clean) = $( boot)
2009-06-10 10:48:33 +04:00
$( Q) $( MAKE) $( clean) = arch/sh/kernel/vsyscall
2005-04-17 02:20:36 +04:00
d e f i n e a r c h h e l p
2009-07-21 12:24:36 +04:00
@echo ' zImage - Compressed kernel image'
2009-07-29 19:27:35 +04:00
@echo ' romImage - Compressed ROM image, if supported'
2006-12-07 11:00:32 +03:00
@echo ' vmlinux.srec - Create an ELF S-record'
2010-01-13 10:28:47 +03:00
@echo ' vmlinux.bin - Create an uncompressed binary image'
2009-07-21 12:24:36 +04:00
@echo '* uImage - Alias to bootable U-Boot image'
@echo ' uImage.srec - Create an S-record for U-Boot'
2009-10-27 01:17:12 +03:00
@echo ' uImage.bin - Kernel-only image for U-Boot (bin)'
2009-07-21 12:24:36 +04:00
@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)'
2011-01-14 09:52:54 +03:00
@echo ' uImage.xz - Kernel-only image for U-Boot (xz)'
2010-01-13 07:29:19 +03:00
@echo ' uImage.lzo - Kernel-only image for U-Boot (lzo)'
2005-04-17 02:20:36 +04:00
e n d e f