summaryrefslogtreecommitdiff
path: root/arch/m68k/cpu/mcf5445x/config.mk
diff options
context:
space:
mode:
authorAlison Wang <b18965@freescale.com>2012-10-18 19:25:51 +0000
committerjason <jason@jason-ThinkPad-T61.(none)>2012-10-24 22:27:46 +0800
commit45370e1836dc0a7ac8e1d4828924e971d01fd92a (patch)
tree08ea830b2548a56c2bc60e0b0fdf332fa45df08a /arch/m68k/cpu/mcf5445x/config.mk
parent7adbd11e78518c21b4ea363b8a74b224c8ae8967 (diff)
downloadu-boot-imx-45370e1836dc0a7ac8e1d4828924e971d01fd92a.zip
u-boot-imx-45370e1836dc0a7ac8e1d4828924e971d01fd92a.tar.gz
u-boot-imx-45370e1836dc0a7ac8e1d4828924e971d01fd92a.tar.bz2
ColdFire: Add MCF5441x CPU support
Add MCF5441x CPU support. The MCF5441x devices are a family of highly-integrated 32-bit microprocessors based on the Version 4m ColdFire microarchitecture, comprising of the V4 integer core, memory management unit(MMU) and enchanced multiply-accumulate unit(EMAC). Signed-off-by: TsiChung Liew <tsicliew@gmail.com> Signed-off-by: Jason Jin <Jason.jin@freescale.com> Signed-off-by: Alison Wang <b18965@freescale.com>
Diffstat (limited to 'arch/m68k/cpu/mcf5445x/config.mk')
-rw-r--r--arch/m68k/cpu/mcf5445x/config.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/m68k/cpu/mcf5445x/config.mk b/arch/m68k/cpu/mcf5445x/config.mk
index 61a731e..0c48783 100644
--- a/arch/m68k/cpu/mcf5445x/config.mk
+++ b/arch/m68k/cpu/mcf5445x/config.mk
@@ -4,6 +4,8 @@
# (C) Copyright 2000-2004
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
+# Copyright 2011-2012 Freescale Semiconductor, Inc.
+#
# See file CREDITS for list of people who contributed to this
# project.
#
@@ -24,7 +26,15 @@
#
PLATFORM_RELFLAGS += -ffixed-d7 -msep-data
+
+cfg=$(shell grep configs $(OBJTREE)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
+is5441x:=$(shell grep CONFIG_MCF5441x $(TOPDIR)/include/$(cfg))
+
+ifneq (,$(findstring CONFIG_MCF5441x,$(is5441x)))
+PLATFORM_CPPFLAGS += -mcpu=54418 -fPIC
+else
PLATFORM_CPPFLAGS += -mcpu=54455 -fPIC
+endif
ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
ifneq (,$(findstring GOT,$(shell $(LD) --help)))