blob: 47c5fe9b85113c0af6893be864cf9dc48732d65f [file] [log] [blame]
Patrick Georgi2faeb112020-05-08 18:32:38 +02001# SPDX-License-Identifier: GPL-2.0-only
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07002
Patrick Georgie47477e2014-05-17 18:38:10 +02003# ccache integration
4ifeq ($(CONFIG_CCACHE),y)
5
6CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
7ifeq ($(CCACHE),)
8$(error ccache selected, but not found in PATH)
9endif
10
11export CCACHE_COMPILERCHECK=content
12export CCACHE_BASEDIR=$(top)
13
14$(foreach arch,$(ARCH_SUPPORTED), \
15 $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
16
17HOSTCC:=$(CCACHE) $(HOSTCC)
18HOSTCXX:=$(CCACHE) $(HOSTCXX)
Patrick Georgie47477e2014-05-17 18:38:10 +020019endif
Patrick Georgifadbe5f2014-05-17 18:26:38 +020020
21# scan-build integration
22ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
23
24ifeq ($(CCC_ANALYZER_ANALYSIS),)
25export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
26endif
27
28$(foreach arch,$(ARCH_SUPPORTED), \
Patrick Georgie47477e2014-05-17 18:38:10 +020029 $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
Patrick Georgifadbe5f2014-05-17 18:26:38 +020030
31HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
32HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
Patrick Georgifadbe5f2014-05-17 18:26:38 +020033endif
34
Martin Roth461c33b2022-09-27 18:13:48 -060035# include-what-you-use integration
36ifeq ($(CONFIG_IWYU),y)
37
38IWYU:=$(word 1,$(wildcard $(addsuffix /iwyu,$(subst :, ,$(PATH)))))
39ifeq ($(IWYU),)
40$(error include-what-you-use selected, but not found in PATH)
41endif
42
43$(foreach arch,$(ARCH_SUPPORTED), \
44 $(eval CC_$(arch):=$(IWYU) ))
45
46CFLAGS_common := -Xiwyu --prefix_header_includes=remove -Xiwyu --no_comments -Xiwyu --no_fwd_decls $(CFLAGS_common)
47NOCOMPILE := 1
48endif
49
Julius Werner99f46832018-05-16 14:14:04 -070050COREBOOT_STANDARD_STAGES := decompressor bootblock verstage romstage ramstage
51MAP-decompressor := bootblock
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070052
Patrick Georgi8688def2015-03-28 16:27:42 +010053ARCHDIR-i386 := x86
54ARCHDIR-x86_32 := x86
Martin Rothcf0f6b82016-01-11 10:30:24 -070055ARCHDIR-x86_64 := x86
Patrick Georgi8688def2015-03-28 16:27:42 +010056ARCHDIR-arm := arm
57ARCHDIR-arm64 := arm64
58ARCHDIR-riscv := riscv
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010059ARCHDIR-ppc64 := ppc64
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070060
Martin Rothcf0f6b82016-01-11 10:30:24 -070061CFLAGS_arm +=
62CFLAGS_arm64 += -mgeneral-regs-only
Stefan Reinauerd146ac62015-07-31 13:50:03 -070063CFLAGS_riscv +=
64CFLAGS_x86_32 +=
Martin Rothcf0f6b82016-01-11 10:30:24 -070065CFLAGS_x86_64 += -mcmodel=large -mno-red-zone
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010066CFLAGS_ppc64 +=
Stefan Reinauer46591132015-03-15 04:19:58 +010067
Iru Cai3ab408c2021-06-16 11:29:36 +080068GCC_ADAFLAGS_arm +=
69GCC_ADAFLAGS_arm64 += -mgeneral-regs-only
70GCC_ADAFLAGS_riscv +=
71GCC_ADAFLAGS_x86_32 +=
72GCC_ADAFLAGS_x86_64 += -mcmodel=large -mno-red-zone
73GCC_ADAFLAGS_ppc64 +=
74
Julius Werner8d8799a2014-12-19 16:11:14 -080075# Some boards only provide 2K stacks, so storing lots of data there leads to
76# problems. Since C rules don't allow us to statically determine the maximum
77# stack use, we use 1.5K as heuristic, assuming that we typically have lots
78# of tiny stack frames and the odd large one.
79#
Kyösti Mälkkifcbbb912020-04-20 10:21:39 +030080# Store larger buffers in BSS, use static to share data in cache-as-ram
Julius Werner8d8799a2014-12-19 16:11:14 -080081# on x86.
82# Since GCCs detection of dynamic array bounds unfortunately seems to be
83# very basic, you'll sometimes have to use a static upper bound for the
84# size and an assert() to make sure it's honored (see gpio_base3_value()
85# for an example).
86# (If you absolutely need a larger stack frame and are 100% sure it cannot
87# cause problems, you can whitelist it with #pragma diagnostic.)
Patrick Georgieef1e982017-05-10 22:02:55 +020088ifeq ($(CONFIG_COMPILER_GCC),y)
Julius Werner8d8799a2014-12-19 16:11:14 -080089CFLAGS_arm += -Wstack-usage=1536
90CFLAGS_arm64 += -Wstack-usage=1536
Julius Werner8d8799a2014-12-19 16:11:14 -080091CFLAGS_riscv += -Wstack-usage=1536
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010092CFLAGS_ppc64 += -Wstack-usage=1536
Patrick Georgieef1e982017-05-10 22:02:55 +020093endif
Julius Werner8d8799a2014-12-19 16:11:14 -080094
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= \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700109 $(foreach arch,$(ARCH_SUPPORTED), \
110 $(eval ARCH-$(1)-$($(shell \
111 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
112 tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700113
Nico Huberbe5492a2015-09-29 16:41:19 +0200114# standard-archs: Tell which architectures are used by the standard stages.
115standard-archs = $(sort $(foreach stagearch, \
116 $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \
117 $($(stagearch))))
118
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700119# create_class_compiler: Used to create compiler tool set for
120# special classes
121# @1: special class
122# @2: compiler set to be used
123# e.g.: smm special class uses i386 as compiler set
124define create_class_compiler
Martin Roth9a162d72016-08-01 19:57:02 -0600125$(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \
Patrick Georgi1e1078d2021-09-08 23:03:56 +0200126 $(warning CONFIG_ARCH_$(1)_* settings in $(DOTCONFIG):) \
127 $(error $(shell grep CONFIG_ARCH_$(1)_ $(DOTCONFIG))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700128CC_$(1) := $(CC_$(2))
Nico Huber1850aa62017-09-03 23:42:58 +0200129GCC_$(1) := $(GCC_CC_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700130LD_$(1) := $(LD_$(2))
131NM_$(1) := $(NM_$(2))
Daisuke Nojiri9b1cb582014-06-19 19:01:34 -0700132AR_$(1) := $(AR_$(2))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100133GNATBIND_$(1) := $(GNATBIND_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700134OBJCOPY_$(1) := $(OBJCOPY_$(2))
135OBJDUMP_$(1) := $(OBJDUMP_$(2))
136STRIP_$(1) := $(STRIP_$(2))
137READELF_$(1) := $(READELF_$(2))
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700138CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
Nico Huber6d7564c2019-06-18 16:38:29 +0200139ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(GCC_ADAFLAGS_$(2))
Julius Wernerd3634c12015-11-13 13:28:41 -0800140CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
Patrick Georgi527f3922015-06-04 13:31:38 +0200141COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
142COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
Aaron Durbind4dd44c2015-09-06 10:15:17 -0500143LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700144endef
145
Furquan Shaikh133096b2014-07-31 09:28:55 -0700146# define_class: Allows defining any program as dynamic class and compiler tool
147# set for the same based on the architecture for which the program is to be
148# compiled
149# @1: program (class name)
150# @2: architecture for which the program needs to be compiled
151# IMP: Ensure that define_class is called before any .c or .S files are added to
152# the class of the program. Check subdirs-y for order of subdirectory inclusions
153define define_class
154classes-y += $(1)
155$(eval $(call create_class_compiler,$(1),$(2)))
156endef
157
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700158# initialize standard toolchain (CC,AS and others) for give stage
159# @1 : stage for which the toolchain is to be initialized
160init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200161 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200162 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700163
164init_stages = \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700165 $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
166 $(eval $(call init_standard_toolchain,$(stage))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700167
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700168$(eval $(call toolchain_to_dir))
169
170$(call init_stages)
Patrick Georgi1053f652015-03-26 21:39:12 +0100171
Martin Roth3fb73c22015-12-07 14:04:27 -0700172# Test for coreboot toolchain (except when explicitly not requested)
Patrick Georgi1053f652015-03-26 21:39:12 +0100173ifneq ($(NOCOMPILE),1)
Martin Rotha6563622016-01-15 14:56:06 -0700174# Only run if we're doing a build (not for tests, kconfig, ...)
Patrick Georgi1053f652015-03-26 21:39:12 +0100175# rationale: gcc versions by Linux distributions tend to be quite messed up
Martin Rotha23e2ce2015-12-07 14:07:10 -0700176# llvm/clang also needs patches supplied by the coreboot build
Patrick Georgi1053f652015-03-26 21:39:12 +0100177COMPILERFAIL:=0
Martin Rothd9c193d2015-11-26 22:34:42 -0700178IASLFAIL:=0
Martin Rotha23e2ce2015-12-07 14:07:10 -0700179
Patrick Georgi1053f652015-03-26 21:39:12 +0100180ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rotha6563622016-01-15 14:56:06 -0700181# Verify that the coreboot toolchain is being used.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700182$(foreach arch,$(sort $(foreach stage,\
183 $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
184 $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
185 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
186 echo not-coreboot; else echo not-coreboot; fi), \
187 $(eval COMPILERFAIL:=1)\
188 $(warning The coreboot toolchain for '$(arch)'\
189 architecture was not found.)))
Martin Rotha6563622016-01-15 14:56:06 -0700190# If iasl doesn't match the current coreboot version, fail the test
191# TODO: Figure out if iasl is even needed for the build.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700192$(if $(shell if [ -n "$(IASL)" ]; then \
Martin Rothab8f9232016-01-05 16:14:12 -0700193 $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700194 echo not-coreboot; else echo not-coreboot; fi), \
195 $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
196 $(warning The coreboot toolchain version of iasl \
197 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
Martin Rothaf91b8b2015-12-07 14:33:44 -0700198else #$(CONFIG_ANY_TOOLCHAIN)
Martin Rotha6563622016-01-15 14:56:06 -0700199# If the coreboot toolchain isn't being used, verify that there is A toolchain
Martin Rothcf0f6b82016-01-11 10:30:24 -0700200$(foreach arch,$(sort \
201 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
Martin Rothaf91b8b2015-12-07 14:33:44 -0700202 $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700203 $(warning No compiler found for '$(arch)' architecture. \
204 Install one or use the coreboot toolchain?)) )
Martin Rotha6563622016-01-15 14:56:06 -0700205# If iasl isn't present, fail
206# TODO: Figure out if iasl is even needed for the build.
Martin Rothaf91b8b2015-12-07 14:33:44 -0700207$(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700208 $(warning iasl not found. \
209 Please install it or use the coreboot toolchain.))
Patrick Georgi1053f652015-03-26 21:39:12 +0100210endif
Martin Rotha6563622016-01-15 14:56:06 -0700211
212# If the compiler check failed, print out warnings
Patrick Georgi1053f652015-03-26 21:39:12 +0100213ifeq ($(COMPILERFAIL),1)
Martin Roth019cdbf2015-12-07 14:13:40 -0700214ifneq ($(XGCCPATH),)
215$(warning )
216$(warning Path to your toolchain is currently set to '$(XGCCPATH)')
217endif
Martin Roth335a9b62015-11-25 12:44:15 -0700218$(warning )
Martin Rothada36d42015-12-07 14:27:34 -0700219$(warning To build the entire coreboot toolchain: run 'make crossgcc')
Martin Rothd9c193d2015-11-26 22:34:42 -0700220ifeq ($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700221$(warning To build just IASL: run 'make iasl')
Martin Roth73b79972015-12-07 14:20:55 -0700222endif #($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700223$(warning For more toolchain build targets: run 'make help_toolchain')
Martin Roth335a9b62015-11-25 12:44:15 -0700224$(warning )
Martin Roth5981a632015-12-07 14:24:57 -0700225ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700226$(warning To try to use any toolchain in your path, \
227 run 'make menuconfig', then select)
228$(warning the config option: 'General setup', \
229 and 'Allow building with any toolchain')
230$(warning Note that this is NOT supported. \
231 Using it means you're on your own.)
Martin Roth5981a632015-12-07 14:24:57 -0700232$(warning )
233endif #($(CONFIG_ANY_TOOLCHAIN),y)
234$(error Halting the build)
Martin Roth73b79972015-12-07 14:20:55 -0700235endif #($(COMPILERFAIL),1)
236
237endif #($(NOCOMPILE),1)
Martin Rothaede3fc2016-01-05 16:07:42 -0700238
Martin Rotha6563622016-01-15 14:56:06 -0700239# Run the toolchain version checks if the requested target is 'test-toolchain'
240# Checks the versions of GCC, binutils, clang, and IASL
Martin Rothaede3fc2016-01-05 16:07:42 -0700241ifneq ($(MAKECMDGOALS),)
242ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
243$(foreach arch, $(ARCH_SUPPORTED), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700244 $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700245 $(GCC_CC_$(arch)) --version 2>&1 | head -n1 | rev | \
246 cut -d ' ' -f 1 | rev | \
247 grep -q "$$(util/crossgcc/buildgcc -s gcc)" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700248 echo not-current; fi), \
249 $(eval COMPILER_OUT_OF_DATE:=1) \
250 $(warning The coreboot toolchain version of gcc for '$(arch)' \
Martin Roth8be01462020-12-24 09:42:39 -0700251 architecture is not the current version.) \
252 $(warning $(arch) gcc version from buildgcc: \
253 $(shell util/crossgcc/buildgcc -s gcc)) \
254 $(warning $(arch) version of gcc executable: \
255 $(shell $(GCC_CC_$(arch)) --version | head -n1 | \
256 rev | cut -d ' ' -f 1 | rev))) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700257 $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700258 $(CLANG_CC_$(arch)) --version 2>&1 | \
259 sed 's/.*clang version/clang version/' | \
260 head -n1 | cut -d ' ' -f 3 | \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700261 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
262 echo not-current; fi), \
Martin Roth8be01462020-12-24 09:42:39 -0700263 $(eval COMPILER_OUT_OF_DATE:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700264 $(warning The coreboot toolchain version of clang for \
Martin Roth8be01462020-12-24 09:42:39 -0700265 '$(arch)' architecture is not the current version.) \
266 $(warning $(arch) clang version from buildgcc: \
267 $(shell util/crossgcc/buildgcc -s clang)) \
268 $(warning $(arch) version of clang executable: \
269 $(shell $(CLANG_CC_$(arch)) --version 2>&1 | \
270 sed 's/.*clang version/clang version/' | \
271 head -n1 | cut -d ' ' -f 3))) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700272 $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700273 $(OBJDUMP_$(arch)) -v 2>&1 | \
274 grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
275 echo not-current; fi), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700276 $(eval COMPILER_OUT_OF_DATE:=1)\
277 $(warning The coreboot toolchain version of binutils for \
278 '$(arch)' architecture is not the current version.)) \
Martin Rothaede3fc2016-01-05 16:07:42 -0700279)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700280$(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
281 grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
282 echo not-coreboot; fi), \
283 $(eval COMPILER_OUT_OF_DATE:=1)\
284 $(warning The coreboot toolchain version of iasl \
Martin Roth8be01462020-12-24 09:42:39 -0700285 is not the current version) \
286 $(warning $(arch) iasl version from buildgcc: \
287 $(shell util/crossgcc/buildgcc -s iasl)) \
288 $(warning $(arch) version of iasl executable: \
289 $(shell $(IASL) -v 2>&1 | \
290 grep ASL+ | rev | cut -f 1 -d ' ' | rev)))
291$(eval UPDATED_SUBMODULES:=1)
Martin Rotha6563622016-01-15 14:56:06 -0700292endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
293endif #($(MAKECMDGOALS),)