blob: eea0560328cc110010084edc103ba334d0c591ec [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
Patrick Georgib890a122015-03-26 15:17:45 +010017## Foundation, Inc.
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070018##
19
Patrick Georgie47477e2014-05-17 18:38:10 +020020# ccache integration
21ifeq ($(CONFIG_CCACHE),y)
22
23CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
24ifeq ($(CCACHE),)
25$(error ccache selected, but not found in PATH)
26endif
27
28export CCACHE_COMPILERCHECK=content
29export CCACHE_BASEDIR=$(top)
30
31$(foreach arch,$(ARCH_SUPPORTED), \
32 $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
33
34HOSTCC:=$(CCACHE) $(HOSTCC)
35HOSTCXX:=$(CCACHE) $(HOSTCXX)
36ROMCC=$(CCACHE) $(ROMCC_BIN)
37endif
Patrick Georgifadbe5f2014-05-17 18:26:38 +020038
39# scan-build integration
40ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
41
42ifeq ($(CCC_ANALYZER_ANALYSIS),)
43export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
44endif
45
46$(foreach arch,$(ARCH_SUPPORTED), \
Patrick Georgie47477e2014-05-17 18:38:10 +020047 $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
Patrick Georgifadbe5f2014-05-17 18:26:38 +020048
49HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
50HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
51ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC)
52endif
53
Patrick Georgi27ef6022015-04-30 14:25:14 +020054COREBOOT_STANDARD_STAGES := bootblock libverstage verstage romstage ramstage
55MAP-libverstage := verstage
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070056
Patrick Georgi8688def2015-03-28 16:27:42 +010057ARCHDIR-i386 := x86
58ARCHDIR-x86_32 := x86
Stefan Reinauer46591132015-03-15 04:19:58 +010059ARCHDIR-x86_64 := x86
Patrick Georgi8688def2015-03-28 16:27:42 +010060ARCHDIR-arm := arm
61ARCHDIR-arm64 := arm64
62ARCHDIR-riscv := riscv
63ARCHDIR-mips := mips
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070064
Stefan Reinauer2941b282015-07-07 23:37:11 +020065CFLAGS_arm += -ffunction-sections -fdata-sections
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070066
Furquan Shaikh5668e262015-07-14 12:03:11 -070067CFLAGS_arm64 += -ffunction-sections -fdata-sections -mgeneral-regs-only
Furquan Shaikh2af76f42014-04-28 16:39:40 -070068
Stefan Reinauer2941b282015-07-07 23:37:11 +020069CFLAGS_mips += -mips32r2 -G 0 -ffunction-sections -fdata-sections
Patrick Georgi8688def2015-03-28 16:27:42 +010070CFLAGS_mips += -mno-abicalls -fno-pic
Paul Burton6529c332014-05-27 15:18:42 +010071
Gerd Hoffmanndc27ca92015-03-26 17:38:03 +010072CFLAGS_x86_32 += -ffunction-sections -fdata-sections
Stefan Reinauer2941b282015-07-07 23:37:11 +020073CFLAGS_riscv += -ffunction-sections -fdata-sections
Aaron Durbinf69a99d2015-03-10 11:45:25 -050074
Patrick Georgi66821092015-07-08 18:12:49 +020075CFLAGS_x86_64 += -mcmodel=large -mno-red-zone
Stefan Reinauer46591132015-03-15 04:19:58 +010076
Julius Werner8d8799a2014-12-19 16:11:14 -080077# Some boards only provide 2K stacks, so storing lots of data there leads to
78# problems. Since C rules don't allow us to statically determine the maximum
79# stack use, we use 1.5K as heuristic, assuming that we typically have lots
80# of tiny stack frames and the odd large one.
81#
82# Store larger buffers in BSS, use MAYBE_STATIC to share code with __PRE_RAM__
83# on x86.
84# Since GCCs detection of dynamic array bounds unfortunately seems to be
85# very basic, you'll sometimes have to use a static upper bound for the
86# size and an assert() to make sure it's honored (see gpio_base3_value()
87# for an example).
88# (If you absolutely need a larger stack frame and are 100% sure it cannot
89# cause problems, you can whitelist it with #pragma diagnostic.)
90CFLAGS_arm += -Wstack-usage=1536
91CFLAGS_arm64 += -Wstack-usage=1536
92CFLAGS_mips += -Wstack-usage=1536
93CFLAGS_riscv += -Wstack-usage=1536
94
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070095toolchain_to_dir = \
96 $(foreach arch,$(ARCH_SUPPORTED),\
Patrick Georgib145b832014-05-17 15:08:47 +020097 $(eval CPPFLAGS_$(arch) += \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020098 -Isrc/arch/$(ARCHDIR-$(arch))/include))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070099
100# set_stage_toolchain: Decides the toolchain to be used by every stage
101# E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
102# ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
103# decide the compiler toolchain for bootblock stage
104# This step is essential for initializing the toolchain for coreboot standard
105# stages i.e. bootblock, romstage and ramstage, since it acts as the second
106# parameter to create_class_compiler below in init_standard_toolchain
Patrick Georgi27ef6022015-04-30 14:25:14 +0200107map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700108set_stage_toolchain= \
Patrick Georgi27ef6022015-04-30 14:25:14 +0200109 $(foreach arch,$(ARCH_SUPPORTED),$(eval ARCH-$(1)-$($(shell echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700110
111# create_class_compiler: Used to create compiler tool set for
112# special classes
113# @1: special class
114# @2: compiler set to be used
115# e.g.: smm special class uses i386 as compiler set
116define create_class_compiler
Marc Jonesd1f840b2015-01-22 16:18:49 +0800117$(if $(2),,$(error building $(1) without the required toolchain))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700118CC_$(1) := $(CC_$(2))
119LD_$(1) := $(LD_$(2))
120NM_$(1) := $(NM_$(2))
Daisuke Nojiri9b1cb582014-06-19 19:01:34 -0700121AR_$(1) := $(AR_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700122OBJCOPY_$(1) := $(OBJCOPY_$(2))
123OBJDUMP_$(1) := $(OBJDUMP_$(2))
124STRIP_$(1) := $(STRIP_$(2))
125READELF_$(1) := $(READELF_$(2))
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700126CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
127CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2))
Patrick Georgi527f3922015-06-04 13:31:38 +0200128COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
129COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700130endef
131
Furquan Shaikh133096b2014-07-31 09:28:55 -0700132# define_class: Allows defining any program as dynamic class and compiler tool
133# set for the same based on the architecture for which the program is to be
134# compiled
135# @1: program (class name)
136# @2: architecture for which the program needs to be compiled
137# IMP: Ensure that define_class is called before any .c or .S files are added to
138# the class of the program. Check subdirs-y for order of subdirectory inclusions
139define define_class
140classes-y += $(1)
141$(eval $(call create_class_compiler,$(1),$(2)))
142endef
143
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700144# initialize standard toolchain (CC,AS and others) for give stage
145# @1 : stage for which the toolchain is to be initialized
146init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200147 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200148 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700149
150init_stages = \
151 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage))))
152
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700153$(eval $(call toolchain_to_dir))
154
155$(call init_stages)
Patrick Georgi1053f652015-03-26 21:39:12 +0100156
157# Test for coreboot toolchain (except when explicitely not requested)
158ifneq ($(NOCOMPILE),1)
159# only run if we're doing a build (not for tests, kconfig, ...), using gcc
160# rationale: gcc versions by Linux distributions tend to be quite messed up
161COMPILERFAIL:=0
162ifeq ($(CONFIG_COMPILER_GCC),y)
163ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
164$(foreach arch,$(sort $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
165 $(if $(shell $(CC_$(arch)) -v 2>&1 |grep -q "gcc version .*coreboot toolchain" || echo not-coreboot), \
166 $(eval COMPILERFAIL:=1)$(warning Please use the coreboot toolchain for '$(arch)' (or prove that your toolchain works))))
167endif
168endif
169endif
170ifeq ($(COMPILERFAIL),1)
171$(error consider building our compilers: make crossgcc)
172endif