blob: b5b4fe0f41bbfaa3f92c66bb02a2845014789e96 [file] [log] [blame]
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2014 Google Inc
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020020ARCH_SUPPORTED := armv7 x86_32
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070021
Patrick Georgie47477e2014-05-17 18:38:10 +020022# ccache integration
23ifeq ($(CONFIG_CCACHE),y)
24
25CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
26ifeq ($(CCACHE),)
27$(error ccache selected, but not found in PATH)
28endif
29
30export CCACHE_COMPILERCHECK=content
31export CCACHE_BASEDIR=$(top)
32
33$(foreach arch,$(ARCH_SUPPORTED), \
34 $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
35
36HOSTCC:=$(CCACHE) $(HOSTCC)
37HOSTCXX:=$(CCACHE) $(HOSTCXX)
38ROMCC=$(CCACHE) $(ROMCC_BIN)
39endif
Patrick Georgifadbe5f2014-05-17 18:26:38 +020040
41# scan-build integration
42ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
43
44ifeq ($(CCC_ANALYZER_ANALYSIS),)
45export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
46endif
47
48$(foreach arch,$(ARCH_SUPPORTED), \
Patrick Georgie47477e2014-05-17 18:38:10 +020049 $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
Patrick Georgifadbe5f2014-05-17 18:26:38 +020050
51HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
52HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
53ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC)
54endif
55
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070056COREBOOT_STANDARD_STAGES := bootblock romstage ramstage
57
58ARCHDIR-i386 := x86
59ARCHDIR-x86_32 := x86
60ARCHDIR-armv7 := armv7
61
Patrick Georgib145b832014-05-17 15:08:47 +020062CFLAGS_armv7 += \
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070063 -ffixed-r8\
64 -march=armv7-a\
65 -marm\
66 -mno-unaligned-access\
67 -mthumb\
68 -mthumb-interwork
69
70toolchain_to_dir = \
71 $(foreach arch,$(ARCH_SUPPORTED),\
Patrick Georgib145b832014-05-17 15:08:47 +020072 $(eval CPPFLAGS_$(arch) += \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020073 -Isrc/arch/$(ARCHDIR-$(arch))/include))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070074
75# set_stage_toolchain: Decides the toolchain to be used by every stage
76# E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
77# ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
78# decide the compiler toolchain for bootblock stage
79# This step is essential for initializing the toolchain for coreboot standard
80# stages i.e. bootblock, romstage and ramstage, since it acts as the second
81# parameter to create_class_compiler below in init_standard_toolchain
82set_stage_toolchain= \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020083 $(foreach arch,$(ARCH_SUPPORTED),$(eval ARCH-$(1)-$($(shell echo CONFIG_ARCH_$(1)_$(arch) | tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070084
85# create_class_compiler: Used to create compiler tool set for
86# special classes
87# @1: special class
88# @2: compiler set to be used
89# e.g.: smm special class uses i386 as compiler set
90define create_class_compiler
91CC_$(1) := $(CC_$(2))
92LD_$(1) := $(LD_$(2))
93NM_$(1) := $(NM_$(2))
94OBJCOPY_$(1) := $(OBJCOPY_$(2))
95OBJDUMP_$(1) := $(OBJDUMP_$(2))
96STRIP_$(1) := $(STRIP_$(2))
97READELF_$(1) := $(READELF_$(2))
Patrick Georgi25b56c32014-05-25 00:11:35 +020098CFLAGS_$(1) += $$(CFLAGS_common) $$(CFLAGS_$(2))
99CPPFLAGS_$(1) += $$(CPPFLAGS_common) $$(CPPFLAGS_$(2))
Patrick Georgi59307742014-05-19 09:23:57 +0200100LIBGCC_FILE_NAME_$(1) = $(wildcard $(shell $(CC_$(2)) $(CFLAGS_$(2)) -print-libgcc-file-name))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700101endef
102
103# initialize standard toolchain (CC,AS and others) for give stage
104# @1 : stage for which the toolchain is to be initialized
105init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200106 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200107 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700108
109init_stages = \
110 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage))))
111
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700112$(eval $(call toolchain_to_dir))
113
114$(call init_stages)