wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | eca3aeb | 2013-06-21 10:22:36 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2013 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | eca3aeb | 2013-06-21 10:22:36 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 6 | # |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 7 | ######################################################################### |
| 8 | |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 9 | # This file is included from ./Makefile and spl/Makefile. |
| 10 | # Clean the state to avoid the same flags added twice. |
| 11 | # |
| 12 | # (Tegra needs different flags for SPL. |
| 13 | # That's the reason why this file must be included from spl/Makefile too. |
| 14 | # If we did not have Tegra SoCs, build system would be much simpler...) |
| 15 | PLATFORM_RELFLAGS := |
| 16 | PLATFORM_CPPFLAGS := |
| 17 | PLATFORM_LDFLAGS := |
| 18 | LDFLAGS := |
| 19 | LDFLAGS_FINAL := |
| 20 | OBJCOPYFLAGS := |
Masahiro Yamada | 5b3ee38 | 2014-10-21 13:18:32 +0900 | [diff] [blame] | 21 | # clear VENDOR for tcsh |
| 22 | VENDOR := |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 23 | ######################################################################### |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 24 | |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 25 | ARCH := $(CONFIG_SYS_ARCH:"%"=%) |
| 26 | CPU := $(CONFIG_SYS_CPU:"%"=%) |
| 27 | BOARD := $(CONFIG_SYS_BOARD:"%"=%) |
| 28 | ifneq ($(CONFIG_SYS_VENDOR),) |
| 29 | VENDOR := $(CONFIG_SYS_VENDOR:"%"=%) |
| 30 | endif |
| 31 | ifneq ($(CONFIG_SYS_SOC),) |
| 32 | SOC := $(CONFIG_SYS_SOC:"%"=%) |
| 33 | endif |
| 34 | |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 35 | # Some architecture config.mk files need to know what CPUDIR is set to, |
| 36 | # so calculate CPUDIR before including ARCH/SOC/CPU config.mk files. |
Peter Tyser | 8d1f268 | 2010-04-12 22:28:09 -0500 | [diff] [blame] | 37 | # Check if arch/$ARCH/cpu/$CPU exists, otherwise assume arch/$ARCH/cpu contains |
| 38 | # CPU-specific code. |
Masahiro Yamada | a8b0f9b | 2014-06-24 22:10:52 +0900 | [diff] [blame] | 39 | CPUDIR=arch/$(ARCH)/cpu$(if $(CPU),/$(CPU),) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 40 | |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 41 | sinclude $(srctree)/arch/$(ARCH)/config.mk # include architecture dependend rules |
| 42 | sinclude $(srctree)/$(CPUDIR)/config.mk # include CPU specific rules |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 43 | |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 44 | ifdef SOC |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 45 | sinclude $(srctree)/$(CPUDIR)/$(SOC)/config.mk # include SoC specific rules |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 46 | endif |
Masahiro Yamada | 33a02da | 2014-03-03 19:03:17 +0900 | [diff] [blame] | 47 | ifneq ($(BOARD),) |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 48 | ifdef VENDOR |
| 49 | BOARDDIR = $(VENDOR)/$(BOARD) |
| 50 | else |
| 51 | BOARDDIR = $(BOARD) |
| 52 | endif |
Masahiro Yamada | 33a02da | 2014-03-03 19:03:17 +0900 | [diff] [blame] | 53 | endif |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 54 | ifdef BOARD |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 55 | sinclude $(srctree)/board/$(BOARDDIR)/config.mk # include board specific rules |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 56 | endif |
| 57 | |
Simon Glass | b845052 | 2014-09-14 12:40:14 -0600 | [diff] [blame] | 58 | ifdef FTRACE |
| 59 | PLATFORM_CPPFLAGS += -finstrument-functions -DFTRACE |
| 60 | endif |
| 61 | |
Gabe Black | 0d296cc | 2014-10-15 04:38:30 -0600 | [diff] [blame] | 62 | # Allow use of stdint.h if available |
| 63 | ifneq ($(USE_STDINT),) |
| 64 | PLATFORM_CPPFLAGS += -DCONFIG_USE_STDINT |
| 65 | endif |
| 66 | |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 67 | ######################################################################### |
| 68 | |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 69 | RELFLAGS := $(PLATFORM_RELFLAGS) |
Scott Wood | 83b7e2a | 2011-04-06 13:31:37 +0000 | [diff] [blame] | 70 | |
Masahiro Yamada | 95ddcd6 | 2014-02-24 11:12:12 +0900 | [diff] [blame] | 71 | OBJCOPYFLAGS += --gap-fill=0xff |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 72 | |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 73 | PLATFORM_CPPFLAGS += $(RELFLAGS) |
| 74 | PLATFORM_CPPFLAGS += -pipe |
Tom Rini | 4a30f1e | 2012-02-20 13:50:10 +0000 | [diff] [blame] | 75 | |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 76 | LDFLAGS += $(PLATFORM_LDFLAGS) |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 77 | LDFLAGS_FINAL += -Bstatic |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 78 | |
| 79 | export PLATFORM_CPPFLAGS |
| 80 | export RELFLAGS |
| 81 | export LDFLAGS_FINAL |
| 82 | export CONFIG_STANDALONE_LOAD_ADDR |