blob: 80dab78d633702d500ce074aeb86a0ef049fab71 [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
Julius Werner99f46832018-05-16 14:14:04 -070035COREBOOT_STANDARD_STAGES := decompressor bootblock verstage romstage ramstage
36MAP-decompressor := bootblock
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070037
Patrick Georgi8688def2015-03-28 16:27:42 +010038ARCHDIR-i386 := x86
39ARCHDIR-x86_32 := x86
Martin Rothcf0f6b82016-01-11 10:30:24 -070040ARCHDIR-x86_64 := x86
Patrick Georgi8688def2015-03-28 16:27:42 +010041ARCHDIR-arm := arm
42ARCHDIR-arm64 := arm64
43ARCHDIR-riscv := riscv
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010044ARCHDIR-ppc64 := ppc64
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070045
Martin Rothcf0f6b82016-01-11 10:30:24 -070046CFLAGS_arm +=
47CFLAGS_arm64 += -mgeneral-regs-only
Stefan Reinauerd146ac62015-07-31 13:50:03 -070048CFLAGS_riscv +=
49CFLAGS_x86_32 +=
Martin Rothcf0f6b82016-01-11 10:30:24 -070050CFLAGS_x86_64 += -mcmodel=large -mno-red-zone
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010051CFLAGS_ppc64 +=
Stefan Reinauer46591132015-03-15 04:19:58 +010052
Iru Cai3ab408c2021-06-16 11:29:36 +080053GCC_ADAFLAGS_arm +=
54GCC_ADAFLAGS_arm64 += -mgeneral-regs-only
55GCC_ADAFLAGS_riscv +=
56GCC_ADAFLAGS_x86_32 +=
57GCC_ADAFLAGS_x86_64 += -mcmodel=large -mno-red-zone
58GCC_ADAFLAGS_ppc64 +=
59
Julius Werner8d8799a2014-12-19 16:11:14 -080060# Some boards only provide 2K stacks, so storing lots of data there leads to
61# problems. Since C rules don't allow us to statically determine the maximum
62# stack use, we use 1.5K as heuristic, assuming that we typically have lots
63# of tiny stack frames and the odd large one.
64#
Kyösti Mälkkifcbbb912020-04-20 10:21:39 +030065# Store larger buffers in BSS, use static to share data in cache-as-ram
Julius Werner8d8799a2014-12-19 16:11:14 -080066# on x86.
67# Since GCCs detection of dynamic array bounds unfortunately seems to be
68# very basic, you'll sometimes have to use a static upper bound for the
69# size and an assert() to make sure it's honored (see gpio_base3_value()
70# for an example).
71# (If you absolutely need a larger stack frame and are 100% sure it cannot
72# cause problems, you can whitelist it with #pragma diagnostic.)
Patrick Georgieef1e982017-05-10 22:02:55 +020073ifeq ($(CONFIG_COMPILER_GCC),y)
Julius Werner8d8799a2014-12-19 16:11:14 -080074CFLAGS_arm += -Wstack-usage=1536
75CFLAGS_arm64 += -Wstack-usage=1536
Julius Werner8d8799a2014-12-19 16:11:14 -080076CFLAGS_riscv += -Wstack-usage=1536
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +010077CFLAGS_ppc64 += -Wstack-usage=1536
Patrick Georgieef1e982017-05-10 22:02:55 +020078endif
Julius Werner8d8799a2014-12-19 16:11:14 -080079
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070080toolchain_to_dir = \
81 $(foreach arch,$(ARCH_SUPPORTED),\
Patrick Georgib145b832014-05-17 15:08:47 +020082 $(eval CPPFLAGS_$(arch) += \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020083 -Isrc/arch/$(ARCHDIR-$(arch))/include))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070084
85# set_stage_toolchain: Decides the toolchain to be used by every stage
86# E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
87# ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
88# decide the compiler toolchain for bootblock stage
89# This step is essential for initializing the toolchain for coreboot standard
90# stages i.e. bootblock, romstage and ramstage, since it acts as the second
91# parameter to create_class_compiler below in init_standard_toolchain
Patrick Georgi27ef6022015-04-30 14:25:14 +020092map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070093set_stage_toolchain= \
Martin Rothcf0f6b82016-01-11 10:30:24 -070094 $(foreach arch,$(ARCH_SUPPORTED), \
95 $(eval ARCH-$(1)-$($(shell \
96 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
97 tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070098
Nico Huberbe5492a2015-09-29 16:41:19 +020099# standard-archs: Tell which architectures are used by the standard stages.
100standard-archs = $(sort $(foreach stagearch, \
101 $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \
102 $($(stagearch))))
103
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700104# create_class_compiler: Used to create compiler tool set for
105# special classes
106# @1: special class
107# @2: compiler set to be used
108# e.g.: smm special class uses i386 as compiler set
109define create_class_compiler
Martin Roth9a162d72016-08-01 19:57:02 -0600110$(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \
111 $(error Check your .config file for CONFIG_ARCH_$(1)_* settings))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700112CC_$(1) := $(CC_$(2))
Nico Huber1850aa62017-09-03 23:42:58 +0200113GCC_$(1) := $(GCC_CC_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700114LD_$(1) := $(LD_$(2))
115NM_$(1) := $(NM_$(2))
Daisuke Nojiri9b1cb582014-06-19 19:01:34 -0700116AR_$(1) := $(AR_$(2))
Nico Huber2e09d2b2016-01-14 01:13:33 +0100117GNATBIND_$(1) := $(GNATBIND_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700118OBJCOPY_$(1) := $(OBJCOPY_$(2))
119OBJDUMP_$(1) := $(OBJDUMP_$(2))
120STRIP_$(1) := $(STRIP_$(2))
121READELF_$(1) := $(READELF_$(2))
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700122CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
Nico Huber6d7564c2019-06-18 16:38:29 +0200123ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(GCC_ADAFLAGS_$(2))
Julius Wernerd3634c12015-11-13 13:28:41 -0800124CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
Patrick Georgi527f3922015-06-04 13:31:38 +0200125COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
126COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
Aaron Durbind4dd44c2015-09-06 10:15:17 -0500127LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700128endef
129
Furquan Shaikh133096b2014-07-31 09:28:55 -0700130# define_class: Allows defining any program as dynamic class and compiler tool
131# set for the same based on the architecture for which the program is to be
132# compiled
133# @1: program (class name)
134# @2: architecture for which the program needs to be compiled
135# IMP: Ensure that define_class is called before any .c or .S files are added to
136# the class of the program. Check subdirs-y for order of subdirectory inclusions
137define define_class
138classes-y += $(1)
139$(eval $(call create_class_compiler,$(1),$(2)))
140endef
141
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700142# initialize standard toolchain (CC,AS and others) for give stage
143# @1 : stage for which the toolchain is to be initialized
144init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200145 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200146 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700147
148init_stages = \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700149 $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
150 $(eval $(call init_standard_toolchain,$(stage))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700151
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700152$(eval $(call toolchain_to_dir))
153
154$(call init_stages)
Patrick Georgi1053f652015-03-26 21:39:12 +0100155
Martin Roth3fb73c22015-12-07 14:04:27 -0700156# Test for coreboot toolchain (except when explicitly not requested)
Patrick Georgi1053f652015-03-26 21:39:12 +0100157ifneq ($(NOCOMPILE),1)
Martin Rotha6563622016-01-15 14:56:06 -0700158# Only run if we're doing a build (not for tests, kconfig, ...)
Patrick Georgi1053f652015-03-26 21:39:12 +0100159# rationale: gcc versions by Linux distributions tend to be quite messed up
Martin Rotha23e2ce2015-12-07 14:07:10 -0700160# llvm/clang also needs patches supplied by the coreboot build
Patrick Georgi1053f652015-03-26 21:39:12 +0100161COMPILERFAIL:=0
Martin Rothd9c193d2015-11-26 22:34:42 -0700162IASLFAIL:=0
Martin Rotha23e2ce2015-12-07 14:07:10 -0700163
Patrick Georgi1053f652015-03-26 21:39:12 +0100164ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rotha6563622016-01-15 14:56:06 -0700165# Verify that the coreboot toolchain is being used.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700166$(foreach arch,$(sort $(foreach stage,\
167 $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
168 $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
169 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
170 echo not-coreboot; else echo not-coreboot; fi), \
171 $(eval COMPILERFAIL:=1)\
172 $(warning The coreboot toolchain for '$(arch)'\
173 architecture was not found.)))
Martin Rotha6563622016-01-15 14:56:06 -0700174# If iasl doesn't match the current coreboot version, fail the test
175# TODO: Figure out if iasl is even needed for the build.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700176$(if $(shell if [ -n "$(IASL)" ]; then \
Martin Rothab8f9232016-01-05 16:14:12 -0700177 $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700178 echo not-coreboot; else echo not-coreboot; fi), \
179 $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
180 $(warning The coreboot toolchain version of iasl \
181 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
Martin Rothaf91b8b2015-12-07 14:33:44 -0700182else #$(CONFIG_ANY_TOOLCHAIN)
Martin Rotha6563622016-01-15 14:56:06 -0700183# If the coreboot toolchain isn't being used, verify that there is A toolchain
Martin Rothcf0f6b82016-01-11 10:30:24 -0700184$(foreach arch,$(sort \
185 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
Martin Rothaf91b8b2015-12-07 14:33:44 -0700186 $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700187 $(warning No compiler found for '$(arch)' architecture. \
188 Install one or use the coreboot toolchain?)) )
Martin Rotha6563622016-01-15 14:56:06 -0700189# If iasl isn't present, fail
190# TODO: Figure out if iasl is even needed for the build.
Martin Rothaf91b8b2015-12-07 14:33:44 -0700191$(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700192 $(warning iasl not found. \
193 Please install it or use the coreboot toolchain.))
Patrick Georgi1053f652015-03-26 21:39:12 +0100194endif
Martin Rotha6563622016-01-15 14:56:06 -0700195
196# If the compiler check failed, print out warnings
Patrick Georgi1053f652015-03-26 21:39:12 +0100197ifeq ($(COMPILERFAIL),1)
Martin Roth019cdbf2015-12-07 14:13:40 -0700198ifneq ($(XGCCPATH),)
199$(warning )
200$(warning Path to your toolchain is currently set to '$(XGCCPATH)')
201endif
Martin Roth335a9b62015-11-25 12:44:15 -0700202$(warning )
Martin Rothada36d42015-12-07 14:27:34 -0700203$(warning To build the entire coreboot toolchain: run 'make crossgcc')
Martin Rothd9c193d2015-11-26 22:34:42 -0700204ifeq ($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700205$(warning To build just IASL: run 'make iasl')
Martin Roth73b79972015-12-07 14:20:55 -0700206endif #($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700207$(warning For more toolchain build targets: run 'make help_toolchain')
Martin Roth335a9b62015-11-25 12:44:15 -0700208$(warning )
Martin Roth5981a632015-12-07 14:24:57 -0700209ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700210$(warning To try to use any toolchain in your path, \
211 run 'make menuconfig', then select)
212$(warning the config option: 'General setup', \
213 and 'Allow building with any toolchain')
214$(warning Note that this is NOT supported. \
215 Using it means you're on your own.)
Martin Roth5981a632015-12-07 14:24:57 -0700216$(warning )
217endif #($(CONFIG_ANY_TOOLCHAIN),y)
218$(error Halting the build)
Martin Roth73b79972015-12-07 14:20:55 -0700219endif #($(COMPILERFAIL),1)
220
221endif #($(NOCOMPILE),1)
Martin Rothaede3fc2016-01-05 16:07:42 -0700222
Martin Rotha6563622016-01-15 14:56:06 -0700223# Run the toolchain version checks if the requested target is 'test-toolchain'
224# Checks the versions of GCC, binutils, clang, and IASL
Martin Rothaede3fc2016-01-05 16:07:42 -0700225ifneq ($(MAKECMDGOALS),)
226ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
227$(foreach arch, $(ARCH_SUPPORTED), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700228 $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700229 $(GCC_CC_$(arch)) --version 2>&1 | head -n1 | rev | \
230 cut -d ' ' -f 1 | rev | \
231 grep -q "$$(util/crossgcc/buildgcc -s gcc)" || \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700232 echo not-current; fi), \
233 $(eval COMPILER_OUT_OF_DATE:=1) \
234 $(warning The coreboot toolchain version of gcc for '$(arch)' \
Martin Roth8be01462020-12-24 09:42:39 -0700235 architecture is not the current version.) \
236 $(warning $(arch) gcc version from buildgcc: \
237 $(shell util/crossgcc/buildgcc -s gcc)) \
238 $(warning $(arch) version of gcc executable: \
239 $(shell $(GCC_CC_$(arch)) --version | head -n1 | \
240 rev | cut -d ' ' -f 1 | rev))) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700241 $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700242 $(CLANG_CC_$(arch)) --version 2>&1 | \
243 sed 's/.*clang version/clang version/' | \
244 head -n1 | cut -d ' ' -f 3 | \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700245 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
246 echo not-current; fi), \
Martin Roth8be01462020-12-24 09:42:39 -0700247 $(eval COMPILER_OUT_OF_DATE:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700248 $(warning The coreboot toolchain version of clang for \
Martin Roth8be01462020-12-24 09:42:39 -0700249 '$(arch)' architecture is not the current version.) \
250 $(warning $(arch) clang version from buildgcc: \
251 $(shell util/crossgcc/buildgcc -s clang)) \
252 $(warning $(arch) version of clang executable: \
253 $(shell $(CLANG_CC_$(arch)) --version 2>&1 | \
254 sed 's/.*clang version/clang version/' | \
255 head -n1 | cut -d ' ' -f 3))) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700256 $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
Martin Roth8be01462020-12-24 09:42:39 -0700257 $(OBJDUMP_$(arch)) -v 2>&1 | \
258 grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
259 echo not-current; fi), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700260 $(eval COMPILER_OUT_OF_DATE:=1)\
261 $(warning The coreboot toolchain version of binutils for \
262 '$(arch)' architecture is not the current version.)) \
Martin Rothaede3fc2016-01-05 16:07:42 -0700263)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700264$(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
265 grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
266 echo not-coreboot; fi), \
267 $(eval COMPILER_OUT_OF_DATE:=1)\
268 $(warning The coreboot toolchain version of iasl \
Martin Roth8be01462020-12-24 09:42:39 -0700269 is not the current version) \
270 $(warning $(arch) iasl version from buildgcc: \
271 $(shell util/crossgcc/buildgcc -s iasl)) \
272 $(warning $(arch) version of iasl executable: \
273 $(shell $(IASL) -v 2>&1 | \
274 grep ASL+ | rev | cut -f 1 -d ' ' | rev)))
275$(eval UPDATED_SUBMODULES:=1)
Martin Rotha6563622016-01-15 14:56:06 -0700276endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
277endif #($(MAKECMDGOALS),)