Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 1 | # |
| 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 Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 24 | CROSS_COMPILE ?= bfin-uclinux- |
| 25 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 26 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x1000 -m elf32bfin |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 27 | |
Mike Frysinger | fbcf8e8 | 2010-12-23 14:58:37 -0500 | [diff] [blame] | 28 | ifeq ($(CONFIG_BFIN_CPU),) |
| 29 | CONFIG_BFIN_CPU := \ |
| 30 | $(shell awk '$$2 == "CONFIG_BFIN_CPU" { print $$3 }' \ |
| 31 | $(src)include/configs/$(BOARD).h) |
| 32 | else |
| 33 | CONFIG_BFIN_CPU := $(strip $(subst ",,$(CONFIG_BFIN_CPU))) |
| 34 | endif |
Mike Frysinger | 9171fc8 | 2008-03-30 15:46:13 -0400 | [diff] [blame] | 35 | CONFIG_BFIN_BOOT_MODE := $(strip $(subst ",,$(CONFIG_BFIN_BOOT_MODE))) |
| 36 | |
Robin Getz | c4db335 | 2009-08-17 15:23:02 +0000 | [diff] [blame] | 37 | PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic |
Mike Frysinger | 0003613 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 38 | PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN |
Mike Frysinger | 0858b83 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 39 | |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 40 | LDFLAGS_FINAL += --gc-sections |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 41 | LDFLAGS += -m elf32bfin |
Mike Frysinger | 6957a62 | 2008-10-24 18:18:16 -0400 | [diff] [blame] | 42 | PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections |
| 43 | |
Mike Frysinger | f7ce12c | 2008-02-18 05:26:48 -0500 | [diff] [blame] | 44 | PLATFORM_RELFLAGS += -mcpu=$(CONFIG_BFIN_CPU) |
Mike Frysinger | f7ce12c | 2008-02-18 05:26:48 -0500 | [diff] [blame] | 45 | |
Mike Frysinger | 3e88337 | 2009-06-15 00:25:19 -0400 | [diff] [blame] | 46 | ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS) |
| 47 | ALL += $(obj)u-boot.ldr |
| 48 | endif |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 49 | ifeq ($(CONFIG_ENV_IS_EMBEDDED_IN_LDR),y) |
| 50 | CREATE_LDR_ENV = $(obj)tools/envcrc --binary > $(obj)env-ldr.o |
Mike Frysinger | 48c00fe | 2010-09-26 07:00:38 +0000 | [diff] [blame] | 51 | HOSTCFLAGS_NOPED += \ |
| 52 | $(shell $(CPP) -dD - -mcpu=$(CONFIG_BFIN_CPU) </dev/null \ |
| 53 | | awk '$$2 ~ /ADSP/ { print "-D" $$2 }') |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 54 | else |
| 55 | CREATE_LDR_ENV = |
| 56 | endif |
Mike Frysinger | 3e88337 | 2009-06-15 00:25:19 -0400 | [diff] [blame] | 57 | |
Mike Frysinger | 0858b83 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 58 | SYM_PREFIX = _ |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 59 | |
Mike Frysinger | 02778f2 | 2009-04-24 23:39:41 -0400 | [diff] [blame] | 60 | LDR_FLAGS-y := |
| 61 | LDR_FLAGS-$(CONFIG_BFIN_BOOTROM_USES_EVT1) += -J |
| 62 | |
Mike Frysinger | 746290d | 2008-08-07 18:55:30 -0400 | [diff] [blame] | 63 | LDR_FLAGS += --bmode $(subst BFIN_BOOT_,,$(CONFIG_BFIN_BOOT_MODE)) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 64 | LDR_FLAGS += --use-vmas |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 65 | LDR_FLAGS += --initcode $(obj)$(CPUDIR)/initcode.o |
Mike Frysinger | 67c2829 | 2008-10-06 04:42:33 -0400 | [diff] [blame] | 66 | ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_UART) |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 67 | LDR_FLAGS-$(CONFIG_ENV_IS_EMBEDDED_IN_LDR) += \ |
| 68 | --punchit $$(($(CONFIG_ENV_OFFSET))):$$(($(CONFIG_ENV_SIZE))):$(obj)env-ldr.o |
Mike Frysinger | 67c2829 | 2008-10-06 04:42:33 -0400 | [diff] [blame] | 69 | endif |
Mike Frysinger | f7ce12c | 2008-02-18 05:26:48 -0500 | [diff] [blame] | 70 | ifneq (,$(findstring s,$(MAKEFLAGS))) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 71 | LDR_FLAGS += --quiet |
| 72 | endif |
Mike Frysinger | 02778f2 | 2009-04-24 23:39:41 -0400 | [diff] [blame] | 73 | |
| 74 | LDR_FLAGS += $(LDR_FLAGS-y) |
Mike Frysinger | 9ff67e5 | 2009-06-14 06:29:07 -0400 | [diff] [blame] | 75 | |
Mike Frysinger | ec4c693 | 2010-12-23 14:19:23 -0500 | [diff] [blame] | 76 | # Set some default LDR flags based on boot mode. |
| 77 | LDR_FLAGS += $(LDR_FLAGS-$(CONFIG_BFIN_BOOT_MODE)) |
| 78 | |
Mike Frysinger | fbb21ff | 2010-12-23 14:13:41 -0500 | [diff] [blame] | 79 | ifneq ($(CONFIG_SYS_TEXT_BASE),) |
| 80 | $(error do not set CONFIG_SYS_TEXT_BASE for Blackfin boards) |
| 81 | endif |