2006-03-12 02:12:27 +01:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2002
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2009-06-14 23:33:14 -04:00
|
|
|
CROSS_COMPILE ?= bfin-uclinux-
|
|
|
|
|
2009-09-03 23:12:47 -04:00
|
|
|
STANDALONE_LOAD_ADDR = 0x1000
|
|
|
|
|
2008-03-30 15:46:13 -04:00
|
|
|
CONFIG_BFIN_CPU := $(strip $(subst ",,$(CONFIG_BFIN_CPU)))
|
|
|
|
CONFIG_BFIN_BOOT_MODE := $(strip $(subst ",,$(CONFIG_BFIN_BOOT_MODE)))
|
2008-10-06 04:42:33 -04:00
|
|
|
CONFIG_ENV_OFFSET := $(strip $(subst ",,$(CONFIG_ENV_OFFSET)))
|
|
|
|
CONFIG_ENV_SIZE := $(strip $(subst ",,$(CONFIG_ENV_SIZE)))
|
2008-03-30 15:46:13 -04:00
|
|
|
|
2009-08-17 15:23:02 +00:00
|
|
|
PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic
|
2008-02-04 19:26:55 -05:00
|
|
|
PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN
|
2008-02-04 19:26:55 -05:00
|
|
|
|
2008-10-24 18:18:16 -04:00
|
|
|
LDFLAGS += --gc-sections
|
|
|
|
PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
|
|
|
|
|
2008-02-18 05:26:48 -05:00
|
|
|
ifneq (,$(CONFIG_BFIN_CPU))
|
|
|
|
PLATFORM_RELFLAGS += -mcpu=$(CONFIG_BFIN_CPU)
|
|
|
|
endif
|
|
|
|
|
2009-06-15 00:25:19 -04:00
|
|
|
ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
|
|
|
|
ALL += $(obj)u-boot.ldr
|
|
|
|
endif
|
|
|
|
|
2008-02-04 19:26:55 -05:00
|
|
|
SYM_PREFIX = _
|
2008-02-04 19:26:57 -05:00
|
|
|
|
2009-04-24 23:39:41 -04:00
|
|
|
LDR_FLAGS-y :=
|
|
|
|
LDR_FLAGS-$(CONFIG_BFIN_BOOTROM_USES_EVT1) += -J
|
|
|
|
|
2008-08-07 18:55:30 -04:00
|
|
|
LDR_FLAGS += --bmode $(subst BFIN_BOOT_,,$(CONFIG_BFIN_BOOT_MODE))
|
2008-02-04 19:26:57 -05:00
|
|
|
LDR_FLAGS += --use-vmas
|
2008-08-07 18:55:30 -04:00
|
|
|
LDR_FLAGS += --initcode $(obj)cpu/$(CPU)/initcode.o
|
2008-10-06 04:42:33 -04:00
|
|
|
ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_UART)
|
|
|
|
ifneq ($(ENV_IS_EMBEDDED_CUSTOM),ENV_IS_EMBEDDED_CUSTOM)
|
|
|
|
LDR_FLAGS += --punchit $$(($(CONFIG_ENV_OFFSET))):$$(($(CONFIG_ENV_SIZE))):$(obj)env-ldr.o
|
|
|
|
endif
|
|
|
|
endif
|
2008-02-18 05:26:48 -05:00
|
|
|
ifneq (,$(findstring s,$(MAKEFLAGS)))
|
2008-02-04 19:26:57 -05:00
|
|
|
LDR_FLAGS += --quiet
|
|
|
|
endif
|
2009-04-24 23:39:41 -04:00
|
|
|
|
|
|
|
LDR_FLAGS += $(LDR_FLAGS-y)
|
2009-06-14 06:29:07 -04:00
|
|
|
|
|
|
|
ifeq ($(wildcard $(TOPDIR)/board/$(BOARD)/u-boot.lds*),)
|
2009-08-22 19:50:22 -04:00
|
|
|
LDSCRIPT = $(obj)lib_$(ARCH)/u-boot.lds.S
|
2009-06-14 06:29:07 -04:00
|
|
|
endif
|