blob: f985e8843a018c175f516890dbda721311b97521 [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
Nico Huberb37c51d2023-07-16 16:25:23 +020011export CCACHE_COMPILERCHECK=mtime
Patrick Georgie47477e2014-05-17 18:38:10 +020012export CCACHE_BASEDIR=$(top)
Kyösti Mälkkicad92ec2022-12-14 17:26:35 +020013export CCACHE_STATSLOG=$(obj)/ccache.stats
Patrick Georgie47477e2014-05-17 18:38:10 +020014
15$(foreach arch,$(ARCH_SUPPORTED), \
16 $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
17
18HOSTCC:=$(CCACHE) $(HOSTCC)
19HOSTCXX:=$(CCACHE) $(HOSTCXX)
Patrick Georgie47477e2014-05-17 18:38:10 +020020endif
Patrick Georgifadbe5f2014-05-17 18:26:38 +020021
22# scan-build integration
23ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
24
25ifeq ($(CCC_ANALYZER_ANALYSIS),)
26export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
27endif
28
29$(foreach arch,$(ARCH_SUPPORTED), \
Patrick Georgie47477e2014-05-17 18:38:10 +020030 $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
Patrick Georgifadbe5f2014-05-17 18:26:38 +020031
32HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
33HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
Patrick Georgifadbe5f2014-05-17 18:26:38 +020034endif
35
Martin Roth461c33b2022-09-27 18:13:48 -060036# include-what-you-use integration
37ifeq ($(CONFIG_IWYU),y)
38
39IWYU:=$(word 1,$(wildcard $(addsuffix /iwyu,$(subst :, ,$(PATH)))))
40ifeq ($(IWYU),)
41$(error include-what-you-use selected, but not found in PATH)
42endif
43
44$(foreach arch,$(ARCH_SUPPORTED), \
45 $(eval CC_$(arch):=$(IWYU) ))
46
47CFLAGS_common := -Xiwyu --prefix_header_includes=remove -Xiwyu --no_comments -Xiwyu --no_fwd_decls $(CFLAGS_common)
48NOCOMPILE := 1
49endif
50
Julius Werner99f46832018-05-16 14:14:04 -070051COREBOOT_STANDARD_STAGES := decompressor bootblock verstage romstage ramstage
52MAP-decompressor := bootblock
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070053
Patrick Georgi8688def2015-03-28 16:27:42 +010054ARCHDIR-i386 := x86
55ARCHDIR-x86_32 := x86
Martin Rothcf0f6b82016-01-11 10:30:24 -070056ARCHDIR-x86_64 := x86
Patrick Georgi8688def2015-03-28 16:27:42 +010057ARCHDIR-arm := arm
58ARCHDIR-arm64 := arm64
59ARCHDIR-riscv := riscv
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010060ARCHDIR-ppc64 := ppc64
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070061
Martin Rothcf0f6b82016-01-11 10:30:24 -070062CFLAGS_arm +=
63CFLAGS_arm64 += -mgeneral-regs-only
Stefan Reinauerd146ac62015-07-31 13:50:03 -070064CFLAGS_riscv +=
65CFLAGS_x86_32 +=
Martin Rothcf0f6b82016-01-11 10:30:24 -070066CFLAGS_x86_64 += -mcmodel=large -mno-red-zone
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010067CFLAGS_ppc64 +=
Stefan Reinauer46591132015-03-15 04:19:58 +010068
Iru Cai3ab408c2021-06-16 11:29:36 +080069GCC_ADAFLAGS_arm +=
70GCC_ADAFLAGS_arm64 += -mgeneral-regs-only
71GCC_ADAFLAGS_riscv +=
72GCC_ADAFLAGS_x86_32 +=
73GCC_ADAFLAGS_x86_64 += -mcmodel=large -mno-red-zone
74GCC_ADAFLAGS_ppc64 +=
75
Julius Werner8d8799a2014-12-19 16:11:14 -080076# Some boards only provide 2K stacks, so storing lots of data there leads to
77# problems. Since C rules don't allow us to statically determine the maximum
78# stack use, we use 1.5K as heuristic, assuming that we typically have lots
79# of tiny stack frames and the odd large one.
80#
Kyösti Mälkkifcbbb912020-04-20 10:21:39 +030081# Store larger buffers in BSS, use static to share data in cache-as-ram
Julius Werner8d8799a2014-12-19 16:11:14 -080082# on x86.
83# Since GCCs detection of dynamic array bounds unfortunately seems to be
84# very basic, you'll sometimes have to use a static upper bound for the
85# size and an assert() to make sure it's honored (see gpio_base3_value()
86# for an example).
87# (If you absolutely need a larger stack frame and are 100% sure it cannot
88# cause problems, you can whitelist it with #pragma diagnostic.)
Patrick Georgieef1e982017-05-10 22:02:55 +020089ifeq ($(CONFIG_COMPILER_GCC),y)
Julius Werner8d8799a2014-12-19 16:11:14 -080090CFLAGS_arm += -Wstack-usage=1536
91CFLAGS_arm64 += -Wstack-usage=1536
Julius Werner8d8799a2014-12-19 16:11:14 -080092CFLAGS_riscv += -Wstack-usage=1536
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010093CFLAGS_ppc64 += -Wstack-usage=1536
Patrick Georgieef1e982017-05-10 22:02:55 +020094endif
Julius Werner8d8799a2014-12-19 16:11:14 -080095
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070096toolchain_to_dir = \
97 $(foreach arch,$(ARCH_SUPPORTED),\
Patrick Georgib145b832014-05-17 15:08:47 +020098 $(eval CPPFLAGS_$(arch) += \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020099 -Isrc/arch/$(ARCHDIR-$(arch))/include))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700100
101# set_stage_toolchain: Decides the toolchain to be used by every stage
102# E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
103# ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
104# decide the compiler toolchain for bootblock stage
105# This step is essential for initializing the toolchain for coreboot standard
106# stages i.e. bootblock, romstage and ramstage, since it acts as the second
107# parameter to create_class_compiler below in init_standard_toolchain
Patrick Georgi27ef6022015-04-30 14:25:14 +0200108map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700109set_stage_toolchain= \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700110 $(foreach arch,$(ARCH_SUPPORTED), \
111 $(eval ARCH-$(1)-$($(shell \
112 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
113 tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700114
Nico Huberbe5492a2015-09-29 16:41:19 +0200115# standard-archs: Tell which architectures are used by the standard stages.
116standard-archs = $(sort $(foreach stagearch, \
117 $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \
118 $($(stagearch))))
119
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700120# create_class_compiler: Used to create compiler tool set for
121# special classes
122# @1: special class
123# @2: compiler set to be used
124# e.g.: smm special class uses i386 as compiler set
125define create_class_compiler
Martin Roth9a162d72016-08-01 19:57:02 -0600126$(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \
Patrick Georgi1e1078d2021-09-08 23:03:56 +0200127 $(warning CONFIG_ARCH_$(1)_* settings in $(DOTCONFIG):) \
128 $(error $(shell grep CONFIG_ARCH_$(1)_ $(DOTCONFIG))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700129CC_$(1) := $(CC_$(2))
Nico Huber1850aa62017-09-03 23:42:58 +0200130GCC_$(1) := $(GCC_CC_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700131LD_$(1) := $(LD_$(2))
132NM_$(1) := $(NM_$(2))
Daisuke Nojiri9b1cb582014-06-19 19:01:34 -0700133AR_$(1) := $(AR_$(2))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100134GNATBIND_$(1) := $(GNATBIND_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700135OBJCOPY_$(1) := $(OBJCOPY_$(2))
136OBJDUMP_$(1) := $(OBJDUMP_$(2))
137STRIP_$(1) := $(STRIP_$(2))
138READELF_$(1) := $(READELF_$(2))
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700139CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
Nico Huber6d7564c2019-06-18 16:38:29 +0200140ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(GCC_ADAFLAGS_$(2))
Julius Wernerd3634c12015-11-13 13:28:41 -0800141CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
Patrick Georgi527f3922015-06-04 13:31:38 +0200142COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
143COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
Aaron Durbind4dd44c2015-09-06 10:15:17 -0500144LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700145endef
146
Furquan Shaikh133096b2014-07-31 09:28:55 -0700147# define_class: Allows defining any program as dynamic class and compiler tool
148# set for the same based on the architecture for which the program is to be
149# compiled
150# @1: program (class name)
151# @2: architecture for which the program needs to be compiled
152# IMP: Ensure that define_class is called before any .c or .S files are added to
153# the class of the program. Check subdirs-y for order of subdirectory inclusions
154define define_class
155classes-y += $(1)
156$(eval $(call create_class_compiler,$(1),$(2)))
157endef
158
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700159# initialize standard toolchain (CC,AS and others) for give stage
160# @1 : stage for which the toolchain is to be initialized
161init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200162 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200163 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700164
165init_stages = \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700166 $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
167 $(eval $(call init_standard_toolchain,$(stage))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700168
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700169$(eval $(call toolchain_to_dir))
170
171$(call init_stages)
Patrick Georgi1053f652015-03-26 21:39:12 +0100172
Martin Roth3fb73c22015-12-07 14:04:27 -0700173# Test for coreboot toolchain (except when explicitly not requested)
Patrick Georgi1053f652015-03-26 21:39:12 +0100174ifneq ($(NOCOMPILE),1)
Martin Rotha6563622016-01-15 14:56:06 -0700175# Only run if we're doing a build (not for tests, kconfig, ...)
Patrick Georgi1053f652015-03-26 21:39:12 +0100176# rationale: gcc versions by Linux distributions tend to be quite messed up
Martin Rotha23e2ce2015-12-07 14:07:10 -0700177# llvm/clang also needs patches supplied by the coreboot build
Patrick Georgi1053f652015-03-26 21:39:12 +0100178COMPILERFAIL:=0
Martin Rothd9c193d2015-11-26 22:34:42 -0700179IASLFAIL:=0
Martin Rotha23e2ce2015-12-07 14:07:10 -0700180
Patrick Georgi1053f652015-03-26 21:39:12 +0100181ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rotha6563622016-01-15 14:56:06 -0700182# Verify that the coreboot toolchain is being used.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700183$(foreach arch,$(sort $(foreach stage,\
184 $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
185 $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
186 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
187 echo not-coreboot; else echo not-coreboot; fi), \
188 $(eval COMPILERFAIL:=1)\
189 $(warning The coreboot toolchain for '$(arch)'\
190 architecture was not found.)))
Martin Rotha6563622016-01-15 14:56:06 -0700191# If iasl doesn't match the current coreboot version, fail the test
192# TODO: Figure out if iasl is even needed for the build.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700193$(if $(shell if [ -n "$(IASL)" ]; then \
Martin Rothab8f9232016-01-05 16:14:12 -0700194 $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700195 echo not-coreboot; else echo not-coreboot; fi), \
196 $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
197 $(warning The coreboot toolchain version of iasl \
198 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
Martin Rothaf91b8b2015-12-07 14:33:44 -0700199else #$(CONFIG_ANY_TOOLCHAIN)
Martin Rotha6563622016-01-15 14:56:06 -0700200# If the coreboot toolchain isn't being used, verify that there is A toolchain
Martin Rothcf0f6b82016-01-11 10:30:24 -0700201$(foreach arch,$(sort \
202 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
Martin Rothaf91b8b2015-12-07 14:33:44 -0700203 $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700204 $(warning No compiler found for '$(arch)' architecture. \
205 Install one or use the coreboot toolchain?)) )
Martin Rotha6563622016-01-15 14:56:06 -0700206# If iasl isn't present, fail
207# TODO: Figure out if iasl is even needed for the build.
Martin Rothaf91b8b2015-12-07 14:33:44 -0700208$(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700209 $(warning iasl not found. \
210 Please install it or use the coreboot toolchain.))
Patrick Georgi1053f652015-03-26 21:39:12 +0100211endif
Martin Rotha6563622016-01-15 14:56:06 -0700212
213# If the compiler check failed, print out warnings
Patrick Georgi1053f652015-03-26 21:39:12 +0100214ifeq ($(COMPILERFAIL),1)
Martin Roth019cdbf2015-12-07 14:13:40 -0700215ifneq ($(XGCCPATH),)
216$(warning )
217$(warning Path to your toolchain is currently set to '$(XGCCPATH)')
218endif
Martin Roth335a9b62015-11-25 12:44:15 -0700219$(warning )
Martin Rothada36d42015-12-07 14:27:34 -0700220$(warning To build the entire coreboot toolchain: run 'make crossgcc')
Martin Rothd9c193d2015-11-26 22:34:42 -0700221ifeq ($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700222$(warning To build just IASL: run 'make iasl')
Martin Roth73b79972015-12-07 14:20:55 -0700223endif #($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700224$(warning For more toolchain build targets: run 'make help_toolchain')
Martin Roth335a9b62015-11-25 12:44:15 -0700225$(warning )
Martin Roth5981a632015-12-07 14:24:57 -0700226ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700227$(warning To try to use any toolchain in your path, \
228 run 'make menuconfig', then select)
229$(warning the config option: 'General setup', \
230 and 'Allow building with any toolchain')
231$(warning Note that this is NOT supported. \
232 Using it means you're on your own.)
Martin Roth5981a632015-12-07 14:24:57 -0700233$(warning )
234endif #($(CONFIG_ANY_TOOLCHAIN),y)
235$(error Halting the build)
Martin Roth73b79972015-12-07 14:20:55 -0700236endif #($(COMPILERFAIL),1)
237
238endif #($(NOCOMPILE),1)
Martin Rothaede3fc2016-01-05 16:07:42 -0700239
Martin Rotha6563622016-01-15 14:56:06 -0700240# Run the toolchain version checks if the requested target is 'test-toolchain'
241# Checks the versions of GCC, binutils, clang, and IASL
Martin Rothaede3fc2016-01-05 16:07:42 -0700242ifneq ($(MAKECMDGOALS),)
243ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
244$(foreach arch, $(ARCH_SUPPORTED), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700245 $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700246 $(GCC_CC_$(arch)) --version 2>&1 | head -n1 | rev | \
247 cut -d ' ' -f 1 | rev | \
248 grep -q "$$(util/crossgcc/buildgcc -s gcc)" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700249 echo not-current; fi), \
250 $(eval COMPILER_OUT_OF_DATE:=1) \
251 $(warning The coreboot toolchain version of gcc for '$(arch)' \
Martin Roth8be01462020-12-24 09:42:39 -0700252 architecture is not the current version.) \
253 $(warning $(arch) gcc version from buildgcc: \
254 $(shell util/crossgcc/buildgcc -s gcc)) \
255 $(warning $(arch) version of gcc executable: \
256 $(shell $(GCC_CC_$(arch)) --version | head -n1 | \
257 rev | cut -d ' ' -f 1 | rev))) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700258 $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700259 $(CLANG_CC_$(arch)) --version 2>&1 | \
260 sed 's/.*clang version/clang version/' | \
261 head -n1 | cut -d ' ' -f 3 | \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700262 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
263 echo not-current; fi), \
Martin Roth8be01462020-12-24 09:42:39 -0700264 $(eval COMPILER_OUT_OF_DATE:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700265 $(warning The coreboot toolchain version of clang for \
Martin Roth8be01462020-12-24 09:42:39 -0700266 '$(arch)' architecture is not the current version.) \
267 $(warning $(arch) clang version from buildgcc: \
268 $(shell util/crossgcc/buildgcc -s clang)) \
269 $(warning $(arch) version of clang executable: \
270 $(shell $(CLANG_CC_$(arch)) --version 2>&1 | \
271 sed 's/.*clang version/clang version/' | \
272 head -n1 | cut -d ' ' -f 3))) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700273 $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700274 $(OBJDUMP_$(arch)) -v 2>&1 | \
275 grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
276 echo not-current; fi), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700277 $(eval COMPILER_OUT_OF_DATE:=1)\
278 $(warning The coreboot toolchain version of binutils for \
279 '$(arch)' architecture is not the current version.)) \
Martin Rothaede3fc2016-01-05 16:07:42 -0700280)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700281$(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
282 grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
283 echo not-coreboot; fi), \
284 $(eval COMPILER_OUT_OF_DATE:=1)\
285 $(warning The coreboot toolchain version of iasl \
Martin Roth8be01462020-12-24 09:42:39 -0700286 is not the current version) \
287 $(warning $(arch) iasl version from buildgcc: \
288 $(shell util/crossgcc/buildgcc -s iasl)) \
289 $(warning $(arch) version of iasl executable: \
290 $(shell $(IASL) -v 2>&1 | \
291 grep ASL+ | rev | cut -f 1 -d ' ' | rev)))
292$(eval UPDATED_SUBMODULES:=1)
Martin Rotha6563622016-01-15 14:56:06 -0700293endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
294endif #($(MAKECMDGOALS),)