blob: ab117ca5ad5227314b4619dc310d7d47413a5847 [file] [log] [blame]
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01001#
2# (C) Copyright 2000-2002
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -040024CROSS_COMPILE ?= bfin-uclinux-
25
Mike Frysingerb874ed12010-02-10 01:20:44 -050026STANDALONE_LOAD_ADDR = 0x1000 -m elf32bfin
Mike Frysinger262ae0a2009-09-03 23:12:47 -040027
Mike Frysinger9171fc82008-03-30 15:46:13 -040028CONFIG_BFIN_BOOT_MODE := $(strip $(subst ",,$(CONFIG_BFIN_BOOT_MODE)))
29
Robin Getzc4db3352009-08-17 15:23:02 +000030PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic
Mike Frysinger00036132008-02-04 19:26:55 -050031PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN
Mike Frysinger0858b832008-02-04 19:26:55 -050032
Mike Frysingerb874ed12010-02-10 01:20:44 -050033LDFLAGS += --gc-sections -m elf32bfin
Mike Frysinger6957a622008-10-24 18:18:16 -040034PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
35
Mike Frysinger821ad162010-08-09 17:57:47 -040036PLATFORM_CPPFLAGS += -DBFIN_CPU='"$(CONFIG_BFIN_CPU)"'
Mike Frysingerf7ce12c2008-02-18 05:26:48 -050037PLATFORM_RELFLAGS += -mcpu=$(CONFIG_BFIN_CPU)
Mike Frysingerf7ce12c2008-02-18 05:26:48 -050038
Mike Frysinger3e883372009-06-15 00:25:19 -040039ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
40ALL += $(obj)u-boot.ldr
41endif
Mike Frysinger76d82182009-07-21 22:17:36 -040042ifeq ($(CONFIG_ENV_IS_EMBEDDED_IN_LDR),y)
43CREATE_LDR_ENV = $(obj)tools/envcrc --binary > $(obj)env-ldr.o
Mike Frysinger48c00fe2010-09-26 07:00:38 +000044HOSTCFLAGS_NOPED += \
45 $(shell $(CPP) -dD - -mcpu=$(CONFIG_BFIN_CPU) </dev/null \
46 | awk '$$2 ~ /ADSP/ { print "-D" $$2 }')
Mike Frysinger76d82182009-07-21 22:17:36 -040047else
48CREATE_LDR_ENV =
49endif
Mike Frysinger3e883372009-06-15 00:25:19 -040050
Mike Frysinger0858b832008-02-04 19:26:55 -050051SYM_PREFIX = _
Mike Frysinger94a91e22008-02-04 19:26:57 -050052
Mike Frysinger02778f22009-04-24 23:39:41 -040053LDR_FLAGS-y :=
54LDR_FLAGS-$(CONFIG_BFIN_BOOTROM_USES_EVT1) += -J
55
Mike Frysinger746290d2008-08-07 18:55:30 -040056LDR_FLAGS += --bmode $(subst BFIN_BOOT_,,$(CONFIG_BFIN_BOOT_MODE))
Mike Frysinger94a91e22008-02-04 19:26:57 -050057LDR_FLAGS += --use-vmas
Peter Tyser03b70042010-04-12 22:28:02 -050058LDR_FLAGS += --initcode $(obj)$(CPUDIR)/initcode.o
Mike Frysinger67c28292008-10-06 04:42:33 -040059ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_UART)
Mike Frysinger76d82182009-07-21 22:17:36 -040060LDR_FLAGS-$(CONFIG_ENV_IS_EMBEDDED_IN_LDR) += \
61 --punchit $$(($(CONFIG_ENV_OFFSET))):$$(($(CONFIG_ENV_SIZE))):$(obj)env-ldr.o
Mike Frysinger67c28292008-10-06 04:42:33 -040062endif
Mike Frysingerf7ce12c2008-02-18 05:26:48 -050063ifneq (,$(findstring s,$(MAKEFLAGS)))
Mike Frysinger94a91e22008-02-04 19:26:57 -050064LDR_FLAGS += --quiet
65endif
Mike Frysinger02778f22009-04-24 23:39:41 -040066
67LDR_FLAGS += $(LDR_FLAGS-y)
Mike Frysinger9ff67e52009-06-14 06:29:07 -040068
69ifeq ($(wildcard $(TOPDIR)/board/$(BOARD)/u-boot.lds*),)
Peter Tyserea0364f2010-04-12 22:28:04 -050070LDSCRIPT = $(obj)arch/$(ARCH)/lib/u-boot.lds.S
Mike Frysinger9ff67e52009-06-14 06:29:07 -040071endif