blob: 865227b3a7063948cd4af04ced5d7a7fce882eea [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##
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070015
Patrick Georgie47477e2014-05-17 18:38:10 +020016# ccache integration
17ifeq ($(CONFIG_CCACHE),y)
18
19CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
20ifeq ($(CCACHE),)
21$(error ccache selected, but not found in PATH)
22endif
23
24export CCACHE_COMPILERCHECK=content
25export CCACHE_BASEDIR=$(top)
26
27$(foreach arch,$(ARCH_SUPPORTED), \
28 $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
29
30HOSTCC:=$(CCACHE) $(HOSTCC)
31HOSTCXX:=$(CCACHE) $(HOSTCXX)
Patrick Georgie47477e2014-05-17 18:38:10 +020032endif
Patrick Georgifadbe5f2014-05-17 18:26:38 +020033
34# scan-build integration
35ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
36
37ifeq ($(CCC_ANALYZER_ANALYSIS),)
38export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
39endif
40
41$(foreach arch,$(ARCH_SUPPORTED), \
Patrick Georgie47477e2014-05-17 18:38:10 +020042 $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
Patrick Georgifadbe5f2014-05-17 18:26:38 +020043
44HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
45HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
Patrick Georgifadbe5f2014-05-17 18:26:38 +020046endif
47
Julius Werner99f46832018-05-16 14:14:04 -070048COREBOOT_STANDARD_STAGES := decompressor bootblock verstage romstage ramstage
49MAP-decompressor := bootblock
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070050
Patrick Georgi8688def2015-03-28 16:27:42 +010051ARCHDIR-i386 := x86
52ARCHDIR-x86_32 := x86
Martin Rothcf0f6b82016-01-11 10:30:24 -070053ARCHDIR-x86_64 := x86
Patrick Georgi8688def2015-03-28 16:27:42 +010054ARCHDIR-arm := arm
55ARCHDIR-arm64 := arm64
56ARCHDIR-riscv := riscv
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010057ARCHDIR-ppc64 := ppc64
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070058
Martin Rothcf0f6b82016-01-11 10:30:24 -070059CFLAGS_arm +=
60CFLAGS_arm64 += -mgeneral-regs-only
Stefan Reinauerd146ac62015-07-31 13:50:03 -070061CFLAGS_riscv +=
62CFLAGS_x86_32 +=
Martin Rothcf0f6b82016-01-11 10:30:24 -070063CFLAGS_x86_64 += -mcmodel=large -mno-red-zone
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010064CFLAGS_ppc64 +=
Stefan Reinauer46591132015-03-15 04:19:58 +010065
Julius Werner8d8799a2014-12-19 16:11:14 -080066# Some boards only provide 2K stacks, so storing lots of data there leads to
67# problems. Since C rules don't allow us to statically determine the maximum
68# stack use, we use 1.5K as heuristic, assuming that we typically have lots
69# of tiny stack frames and the odd large one.
70#
Kyösti Mälkki75396f62019-11-21 08:09:34 +020071# Store larger buffers in BSS, use MAYBE_STATIC_BSS to share data in cache-as-ram
Julius Werner8d8799a2014-12-19 16:11:14 -080072# on x86.
73# Since GCCs detection of dynamic array bounds unfortunately seems to be
74# very basic, you'll sometimes have to use a static upper bound for the
75# size and an assert() to make sure it's honored (see gpio_base3_value()
76# for an example).
77# (If you absolutely need a larger stack frame and are 100% sure it cannot
78# cause problems, you can whitelist it with #pragma diagnostic.)
Patrick Georgieef1e982017-05-10 22:02:55 +020079ifeq ($(CONFIG_COMPILER_GCC),y)
Julius Werner8d8799a2014-12-19 16:11:14 -080080CFLAGS_arm += -Wstack-usage=1536
81CFLAGS_arm64 += -Wstack-usage=1536
Julius Werner8d8799a2014-12-19 16:11:14 -080082CFLAGS_riscv += -Wstack-usage=1536
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010083CFLAGS_ppc64 += -Wstack-usage=1536
Patrick Georgieef1e982017-05-10 22:02:55 +020084endif
Julius Werner8d8799a2014-12-19 16:11:14 -080085
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070086toolchain_to_dir = \
87 $(foreach arch,$(ARCH_SUPPORTED),\
Patrick Georgib145b832014-05-17 15:08:47 +020088 $(eval CPPFLAGS_$(arch) += \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020089 -Isrc/arch/$(ARCHDIR-$(arch))/include))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070090
91# set_stage_toolchain: Decides the toolchain to be used by every stage
92# E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
93# ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
94# decide the compiler toolchain for bootblock stage
95# This step is essential for initializing the toolchain for coreboot standard
96# stages i.e. bootblock, romstage and ramstage, since it acts as the second
97# parameter to create_class_compiler below in init_standard_toolchain
Patrick Georgi27ef6022015-04-30 14:25:14 +020098map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070099set_stage_toolchain= \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700100 $(foreach arch,$(ARCH_SUPPORTED), \
101 $(eval ARCH-$(1)-$($(shell \
102 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
103 tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700104
Nico Huberbe5492a2015-09-29 16:41:19 +0200105# standard-archs: Tell which architectures are used by the standard stages.
106standard-archs = $(sort $(foreach stagearch, \
107 $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \
108 $($(stagearch))))
109
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700110# create_class_compiler: Used to create compiler tool set for
111# special classes
112# @1: special class
113# @2: compiler set to be used
114# e.g.: smm special class uses i386 as compiler set
115define create_class_compiler
Martin Roth9a162d72016-08-01 19:57:02 -0600116$(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \
117 $(error Check your .config file for CONFIG_ARCH_$(1)_* settings))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700118CC_$(1) := $(CC_$(2))
Nico Huber1850aa62017-09-03 23:42:58 +0200119GCC_$(1) := $(GCC_CC_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700120LD_$(1) := $(LD_$(2))
121NM_$(1) := $(NM_$(2))
Daisuke Nojiri9b1cb582014-06-19 19:01:34 -0700122AR_$(1) := $(AR_$(2))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100123GNATBIND_$(1) := $(GNATBIND_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700124OBJCOPY_$(1) := $(OBJCOPY_$(2))
125OBJDUMP_$(1) := $(OBJDUMP_$(2))
126STRIP_$(1) := $(STRIP_$(2))
127READELF_$(1) := $(READELF_$(2))
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700128CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
Nico Huber6d7564c2019-06-18 16:38:29 +0200129ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(GCC_ADAFLAGS_$(2))
Julius Wernerd3634c12015-11-13 13:28:41 -0800130CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
Patrick Georgi527f3922015-06-04 13:31:38 +0200131COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
132COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
Aaron Durbind4dd44c2015-09-06 10:15:17 -0500133LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700134endef
135
Furquan Shaikh133096b2014-07-31 09:28:55 -0700136# define_class: Allows defining any program as dynamic class and compiler tool
137# set for the same based on the architecture for which the program is to be
138# compiled
139# @1: program (class name)
140# @2: architecture for which the program needs to be compiled
141# IMP: Ensure that define_class is called before any .c or .S files are added to
142# the class of the program. Check subdirs-y for order of subdirectory inclusions
143define define_class
144classes-y += $(1)
145$(eval $(call create_class_compiler,$(1),$(2)))
146endef
147
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700148# initialize standard toolchain (CC,AS and others) for give stage
149# @1 : stage for which the toolchain is to be initialized
150init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200151 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200152 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700153
154init_stages = \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700155 $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
156 $(eval $(call init_standard_toolchain,$(stage))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700157
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700158$(eval $(call toolchain_to_dir))
159
160$(call init_stages)
Patrick Georgi1053f652015-03-26 21:39:12 +0100161
Martin Roth3fb73c22015-12-07 14:04:27 -0700162# Test for coreboot toolchain (except when explicitly not requested)
Patrick Georgi1053f652015-03-26 21:39:12 +0100163ifneq ($(NOCOMPILE),1)
Martin Rotha6563622016-01-15 14:56:06 -0700164# Only run if we're doing a build (not for tests, kconfig, ...)
Patrick Georgi1053f652015-03-26 21:39:12 +0100165# rationale: gcc versions by Linux distributions tend to be quite messed up
Martin Rotha23e2ce2015-12-07 14:07:10 -0700166# llvm/clang also needs patches supplied by the coreboot build
Patrick Georgi1053f652015-03-26 21:39:12 +0100167COMPILERFAIL:=0
Martin Rothd9c193d2015-11-26 22:34:42 -0700168IASLFAIL:=0
Martin Rotha23e2ce2015-12-07 14:07:10 -0700169
Patrick Georgi1053f652015-03-26 21:39:12 +0100170ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rotha6563622016-01-15 14:56:06 -0700171# Verify that the coreboot toolchain is being used.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700172$(foreach arch,$(sort $(foreach stage,\
173 $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
174 $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
175 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
176 echo not-coreboot; else echo not-coreboot; fi), \
177 $(eval COMPILERFAIL:=1)\
178 $(warning The coreboot toolchain for '$(arch)'\
179 architecture was not found.)))
Martin Rotha6563622016-01-15 14:56:06 -0700180# If iasl doesn't match the current coreboot version, fail the test
181# TODO: Figure out if iasl is even needed for the build.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700182$(if $(shell if [ -n "$(IASL)" ]; then \
Martin Rothab8f9232016-01-05 16:14:12 -0700183 $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700184 echo not-coreboot; else echo not-coreboot; fi), \
185 $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
186 $(warning The coreboot toolchain version of iasl \
187 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
Martin Rothaf91b8b2015-12-07 14:33:44 -0700188else #$(CONFIG_ANY_TOOLCHAIN)
Martin Rotha6563622016-01-15 14:56:06 -0700189# If the coreboot toolchain isn't being used, verify that there is A toolchain
Martin Rothcf0f6b82016-01-11 10:30:24 -0700190$(foreach arch,$(sort \
191 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
Martin Rothaf91b8b2015-12-07 14:33:44 -0700192 $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700193 $(warning No compiler found for '$(arch)' architecture. \
194 Install one or use the coreboot toolchain?)) )
Martin Rotha6563622016-01-15 14:56:06 -0700195# If iasl isn't present, fail
196# TODO: Figure out if iasl is even needed for the build.
Martin Rothaf91b8b2015-12-07 14:33:44 -0700197$(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700198 $(warning iasl not found. \
199 Please install it or use the coreboot toolchain.))
Patrick Georgi1053f652015-03-26 21:39:12 +0100200endif
Martin Rotha6563622016-01-15 14:56:06 -0700201
202# If the compiler check failed, print out warnings
Patrick Georgi1053f652015-03-26 21:39:12 +0100203ifeq ($(COMPILERFAIL),1)
Martin Roth019cdbf2015-12-07 14:13:40 -0700204ifneq ($(XGCCPATH),)
205$(warning )
206$(warning Path to your toolchain is currently set to '$(XGCCPATH)')
207endif
Martin Roth335a9b62015-11-25 12:44:15 -0700208$(warning )
Martin Rothada36d42015-12-07 14:27:34 -0700209$(warning To build the entire coreboot toolchain: run 'make crossgcc')
Martin Rothd9c193d2015-11-26 22:34:42 -0700210ifeq ($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700211$(warning To build just IASL: run 'make iasl')
Martin Roth73b79972015-12-07 14:20:55 -0700212endif #($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700213$(warning For more toolchain build targets: run 'make help_toolchain')
Martin Roth335a9b62015-11-25 12:44:15 -0700214$(warning )
Martin Roth5981a632015-12-07 14:24:57 -0700215ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700216$(warning To try to use any toolchain in your path, \
217 run 'make menuconfig', then select)
218$(warning the config option: 'General setup', \
219 and 'Allow building with any toolchain')
220$(warning Note that this is NOT supported. \
221 Using it means you're on your own.)
Martin Roth5981a632015-12-07 14:24:57 -0700222$(warning )
223endif #($(CONFIG_ANY_TOOLCHAIN),y)
224$(error Halting the build)
Martin Roth73b79972015-12-07 14:20:55 -0700225endif #($(COMPILERFAIL),1)
226
227endif #($(NOCOMPILE),1)
Martin Rothaede3fc2016-01-05 16:07:42 -0700228
Martin Rotha6563622016-01-15 14:56:06 -0700229# Run the toolchain version checks if the requested target is 'test-toolchain'
230# Checks the versions of GCC, binutils, clang, and IASL
Martin Rothaede3fc2016-01-05 16:07:42 -0700231ifneq ($(MAKECMDGOALS),)
232ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
233$(foreach arch, $(ARCH_SUPPORTED), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700234 $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
235 $(GCC_CC_$(arch)) -v 2>&1 | \
236 grep -q "$(shell util/crossgcc/buildgcc -s gcc)" || \
237 echo not-current; fi), \
238 $(eval COMPILER_OUT_OF_DATE:=1) \
239 $(warning The coreboot toolchain version of gcc for '$(arch)' \
240 architecture is not the current version.)) \
241 $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
242 $(CLANG_CC_$(arch)) -v 2>&1 | \
243 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
244 echo not-current; fi), \
245 $(eval COMPILER_OUT_OF_DATE:=1)\
246 $(warning The coreboot toolchain version of clang for \
247 '$(arch)' architecture is not the current version.)) \
248 $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
249 $(OBJDUMP_$(arch)) -v 2>&1 | \
250 grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
251 echo not-current; fi), \
252 $(eval COMPILER_OUT_OF_DATE:=1)\
253 $(warning The coreboot toolchain version of binutils for \
254 '$(arch)' architecture is not the current version.)) \
Martin Rothaede3fc2016-01-05 16:07:42 -0700255)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700256$(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
257 grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
258 echo not-coreboot; fi), \
259 $(eval COMPILER_OUT_OF_DATE:=1)\
260 $(warning The coreboot toolchain version of iasl \
261 is not the current version))
Martin Rotha6563622016-01-15 14:56:06 -0700262endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
263endif #($(MAKECMDGOALS),)