Enable publishing of board ID where supported
[coreboot.git] / Makefile.inc
blobbf1b95a1dff8e37c5368966ca53f179ecad8d80d
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2011 secunet Security Networks AG
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.
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
17 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 GIT:=$(shell [ -d "$(top)/.git" ] && command -v git)
22 #######################################################################
23 # misleadingly named, this is the coreboot version
24 export KERNELVERSION := $(strip $(if $(GIT),\
25         $(shell git describe --dirty --always || git describe),\
26         4.0$(KERNELREVISION)))
28 #######################################################################
29 # Test for coreboot toolchain (except when explicitely not requested)
30 ifneq ($(NOCOMPILE),1)
31 # only run if we're doing a build (not for tests, kconfig, ...), using gcc
32 # rationale: gcc versions by Linux distributions tend to be quite messed up
33 ifeq ($(CONFIG_COMPILER_GCC),y)
34 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
35 _toolchain=$(shell $(CC_x86_32) -v 2>&1 |grep -q "gcc version .*coreboot toolchain" && echo coreboot)
36 ifneq ($(_toolchain),coreboot)
37 $(error Please use the coreboot toolchain (or prove that your toolchain works))
38 endif
39 endif
40 endif
41 endif
43 #######################################################################
44 # Basic component discovery
45 MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
46 export MAINBOARDDIR
48 ## Final build results, which CBFSTOOL uses to create the final
49 ## rom image file, are placed under $(objcbfs).
50 ## These typically have suffixes .debug .elf .bin and .map
51 export objcbfs := $(obj)/cbfs/$(call strip_quotes,$(CONFIG_CBFS_PREFIX))
53 ## Based on the active configuration, Makefile conditionally collects
54 ## the required assembly includes and saves them in a file.
55 ## Such files that do not have a clear one-to-one relation to a source
56 ## file under src/ are placed and built under $(objgenerated)
57 export objgenerated := $(obj)/generated
59 #######################################################################
60 # root rule to resolve if in build mode (ie. configuration exists)
61 real-target: $(obj)/config.h coreboot
62 coreboot: build-dirs $(obj)/coreboot.rom $(obj)/cbfstool $(obj)/rmodtool
64 #######################################################################
65 # our phony targets
66 PHONY+= clean-abuild coreboot lint lint-stable build-dirs
68 #######################################################################
69 # root source directories of coreboot
70 subdirs-y := src/lib src/console src/device src/ec src/southbridge src/soc
71 subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode
72 subdirs-y += util/cbfstool util/sconfig util/nvramtool
73 subdirs-y += src/arch/arm src/arch/arm64 src/arch/mips src/arch/riscv
74 subdirs-y += src/arch/x86
75 subdirs-y += src/mainboard/$(MAINBOARDDIR)
77 subdirs-y += site-local
79 #######################################################################
80 # Add source classes and their build options
81 classes-y := ramstage romstage bootblock smm smmstub cpu_microcode verstage
83 # Add dynamic classes for rmodules
84 $(foreach supported_arch,$(ARCH_SUPPORTED), \
85             $(eval $(call define_class,rmodules_$(supported_arch),$(supported_arch))))
87 #######################################################################
88 # Helper functions for various file placement matters
90 # int-add: adds an arbitrary number of space-separated integers in
91 #          all formats understood by printf(1)
92 # int-align: align $1 to $2 units
93 # file-size: returns the filesize of the given file
94 _toint=$(shell printf "%d" $1)
95 _int-add2=$(shell expr $(call _toint,$1) + $(call _toint,$2))
96 int-add=$(if $(filter 1,$(words $1)),$(strip $1),$(call int-add,$(call _int-add2,$(word 1,$1),$(word 2,$1)) $(wordlist 3,$(words $1),$1)))
97 int-align=$(shell A=$(call _toint,$1) B=$(call _toint,$2); expr $$A + \( \( $$B - \( $$A % $$B \) \) % $$B \) )
98 file-size=$(shell cat $1 | wc -c)
100 #######################################################################
101 # Helper functions for ramstage postprocess
102 spc :=
103 spc +=
104 $(spc) :=
105 $(spc) +=
107 # files-in-dir-recursive,dir,files
108 files-in-dir-recursive=$(filter $(1)%,$(2))
110 # parent-dir,dir/
111 parent-dir=$(dir $(if $(patsubst /%,,$(1)),,/)$(subst $( ),/,$(strip $(subst /, ,$(1)))))
113 # filters out exactly the directory specified
114 # filter-out-dir,dir_to_keep,dirs
115 filter-out-dir=$(filter-out $(1),$(2))
117 # filters out dir_to_keep and all its parents
118 # filter-out-dirs,dir_to_keep,dirs
119 filter-out-dirs=$(if $(filter-out ./ /,$(1)),$(call filter-out-dirs,$(call parent-dir,$(1)),$(call filter-out-dir,$(1),$(2))),$(call filter-out-dir,$(1),$(2)))
121 # dir-wildcards,dirs
122 dir-wildcards=$(addsuffix %,$(1))
124 # files-in-dir,dir,files
125 files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(sort $(dir $(2))))),$(call files-in-dir-recursive,$(1),$(2)))
127 #######################################################################
128 # reduce command line length by linking the objects of each
129 # directory into an intermediate file
130 ramstage-postprocess=$(foreach d,$(sort $(dir $(1))), \
131         $(eval $(d)ramstage.o: $(call files-in-dir,$(d),$(1)); $$(LD_ramstage) -o $$@ -r $$^ ) \
132         $(eval ramstage-objs:=$(d)ramstage.o $(filter-out $(call files-in-dir,$(d),$(1)),$(ramstage-objs))))
134 verstage-c-ccopts:=-D__PRE_RAM__ -D__VER_STAGE__
135 verstage-S-ccopts:=-D__PRE_RAM__ -D__VER_STAGE__
136 romstage-c-ccopts:=-D__PRE_RAM__
137 romstage-S-ccopts:=-D__PRE_RAM__
138 ifeq ($(CONFIG_TRACE),y)
139 ramstage-c-ccopts:= -finstrument-functions
140 endif
141 ifeq ($(CONFIG_COVERAGE),y)
142 ramstage-c-ccopts+=-fprofile-arcs -ftest-coverage
143 endif
145 # try to fetch non-optional submodules if the source is under git
146 forgetthis:=$(if $(GIT),$(shell git submodule update --init))
147 ifeq ($(CONFIG_USE_BLOBS),y)
148 # this is necessary because 3rdparty is update=none, and so is ignored
149 # unless explicitly requested and enabled through --checkout
150 forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty))
151 endif
153 bootblock-c-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
154 bootblock-S-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
156 smmstub-c-ccopts:=-D__SMM__
157 smmstub-S-ccopts:=-D__SMM__
158 smm-c-ccopts:=-D__SMM__
159 smm-S-ccopts:=-D__SMM__
161 # SMM TSEG base is dynamic
162 ifneq ($(CONFIG_SMM_MODULES),y)
163 ifeq ($(CONFIG_SMM_TSEG),y)
164 smm-c-ccopts += -fpic
165 endif
166 endif
168 ramstage-c-deps:=$$(OPTION_TABLE_H)
169 romstage-c-deps:=$$(OPTION_TABLE_H)
170 verstage-c-deps:=$$(OPTION_TABLE_H)
171 bootblock-c-deps:=$$(OPTION_TABLE_H)
172 smm-c-deps:=$$(OPTION_TABLE_H)
174 #######################################################################
175 # Add handler to compile ACPI's ASL
176 define ramstage-objs_asl_template
177 $(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
178         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
179         $(CC_ramstage) -x assembler-with-cpp -E -MMD -MT $$(@) -D__ACPI__ -P -include $(src)/include/kconfig.h -I$(obj) -I$(src) -I$(src)/include -I$(src)/arch/$(ARCHDIR-$(ARCH-ramstage-y))/include -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
180         cd $$(dir $$@); $(IASL) -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl
181         mv $$(basename $$@).hex $$(basename $$@).c
182         $(CC_ramstage) $$(CFLAGS_ramstage) $$(CPPFLAGS_ramstage) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
183         # keep %.o: %.c rule from catching the temporary .c file after a make clean
184         mv $$(basename $$@).c $$(basename $$@).hex
185 endef
187 #######################################################################
188 # Parse plaintext cmos defaults into binary format
189 # arg1: source file
190 # arg2: binary file name
191 cbfs-files-processor-nvramtool= \
192         $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
193                 printf "    CREATE     $(2) (from $(1))\n"; $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && mv $(2).tmp $(2))
195 #######################################################################
196 # Link VSA binary to ELF-ish stage
197 # arg1: source file
198 # arg2: binary file name
199 cbfs-files-processor-vsa= \
200         $(eval $(2): $(1) ; \
201                 printf "    CREATE     $(2) (from $(1))\n";  $(OBJCOPY_ramstage) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && $(LD_ramstage) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2))
203 #######################################################################
204 # Add handler for arbitrary files in CBFS
205 $(call add-special-class,cbfs-files)
206 cbfs-files-handler= \
207                 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
208                 $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
209                 $(if $(wildcard $(1)$($(2)-file)), \
210                         $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
211                         $(eval tmp-cbfs-file:= $($(2)-file))) \
212                 $(if $(strip $($(2)-required)), \
213                         $(if $(wildcard $(tmp-cbfs-file)),, \
214                                 $(info This build configuration requires $($(2)-required)) \
215                                 $(eval FAILBUILD:=1) \
216                         )) \
217                 $(if $(strip $($(2)-align)), \
218                         $(if $(strip $($(2)-position)), \
219                                 $(info ERROR: It is not allowed to specify both alignment and position for $($(2)-file)) \
220                                 $(eval FAILBUILD:=1) \
221                         )) \
222                 $(if $(tmp-cbfs-method), \
223                         $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
224                         $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
225                         $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
226                 $(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$(strip $($(2)-position))|$($(2)-align))\
227                 $(eval $(2)-name:=) \
228                 $(eval $(2)-type:=) \
229                 $(eval $(2)-compression:=) \
230                 $(eval $(2)-position:=) \
231                 $(eval $(2)-required:=) \
232                 $(eval $(2)-align:=)
234 #######################################################################
235 # a variety of flags for our build
236 CBFS_COMPRESS_FLAG:=none
237 ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
238 CBFS_COMPRESS_FLAG:=LZMA
239 endif
241 CBFS_PAYLOAD_COMPRESS_FLAG:=none
242 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
243 CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
244 endif
246 ifneq ($(CONFIG_LOCALVERSION),"")
247 export COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
248 endif
250 CPPFLAGS_common := -Isrc -Isrc/include -I$(obj)
251 CPPFLAGS_common += -Isrc/device/oprom/include
252 CPPFLAGS_common += -include $(src)/include/kconfig.h
254 CFLAGS_common += -pipe -g -nostdinc
255 CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
256 CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
257 CFLAGS_common += -Wstrict-aliasing -Wshadow -Wno-unused-but-set-variable
258 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
259 CFLAGS_common += -Werror
260 endif
261 CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
262 ifneq ($(GDB_DEBUG),)
263 CFLAGS_common += -Og
264 else
265 CFLAGS_common += -Os
266 endif
268 additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool \
269                    $(objutil)/ifdfake $(objutil)/options $(objutil)/fletcher \
270                    $(objutil)/cbootimage $(objutil)/bimgtool
272 #######################################################################
273 # generate build support files
274 $(obj)/build.h: .xcompile
275         @printf "    GEN        build.h\n"
276         rm -f $(obj)/build.h
277         util/genbuild_h/genbuild_h.sh > $(obj)/build.ht
278         mv $(obj)/build.ht $(obj)/build.h
280 $(obj)/ldoptions: $(obj)/config.h
281         awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@
283 build-dirs:
284         mkdir -p $(objcbfs) $(objgenerated)
286 #######################################################################
287 # Build the tools
288 CBFSTOOL:=$(objutil)/cbfstool/cbfstool
289 RMODTOOL:=$(objutil)/cbfstool/rmodtool
291 $(obj)/cbfstool: $(CBFSTOOL)
292         cp $< $@
294 $(obj)/rmodtool: $(RMODTOOL)
295         cp $< $@
297 _WINCHECK=$(shell uname -o 2> /dev/null)
298 STACK=
299 ifeq ($(_WINCHECK),Msys)
300         STACK=-Wl,--stack,16384000
301 endif
302 ifeq ($(_WINCHECK),Cygwin)
303         STACK=-Wl,--stack,16384000
304 endif
306 # this allows ccache to prepend itself
307 # (ccache handling happens first)
308 ROMCC_BIN= $(objutil)/romcc/romcc
309 ROMCC?=$(ROMCC_BIN)
310 $(ROMCC_BIN): $(top)/util/romcc/romcc.c
311         @printf "    HOSTCC     $(subst $(obj)/,,$(@)) (this may take a while)\n"
312         @# Note: Adding -O2 here might cause problems. For details see:
313         @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
314         $(HOSTCC) -g $(STACK) -Wall -o $@ $<
316 IFDTOOL:=$(objutil)/ifdtool/ifdtool
317 $(IFDTOOL): $(top)/util/ifdtool/ifdtool.c
318         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
319         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
321 IFDFAKE:=$(objutil)/ifdfake/ifdfake
322 $(IFDFAKE): $(top)/util/ifdfake/ifdfake.c
323         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
324         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
326 FLETCHER:=$(objutil)/fletcher/fletcher
327 $(FLETCHER): $(top)/util/fletcher/fletcher.c
328         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
329         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
331 CBOOTIMAGE:=$(objutil)/cbootimage/cbootimage
333 subdirs-y += util/nvidia
335 BIMGTOOL:=$(objutil)/bimgtool/bimgtool
336 $(BIMGTOOL): $(top)/util/bimgtool/bimgtool.c
337         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
338         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
340 #######################################################################
341 # needed objects that every mainboard uses
342 # Creation of these is architecture and mainboard independent
343 $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb  $(objutil)/sconfig/sconfig
344         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
345         mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
346         $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
348 ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
349 romstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
351 $(objutil)/%.o: $(objutil)/%.c
352         @printf "    HOSTCC     $(subst $(objutil)/,,$(@))\n"
353         $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
355 $(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
356         @printf "    CC         $(subst $(obj)/,,$(@))\n"
357         $(CC_ramstage) -MMD $(CFLAGS_ramstage) $(CPPFLAGS_ramstage) $(ramstage-c-ccopts) -c -o $@ $<
359 $(obj)/%.romstage.o $(abspath $(obj))/%.romstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
360         @printf "    CC         $(subst $(obj)/,,$(@))\n"
361         $(CC_romstage) -MMD $(CFLAGS_romstage) $(CPPFLAGS_romstage) $(romstage-c-ccopts) -c -o $@ $<
363 $(obj)/%.verstage.o $(abspath $(obj))/%.verstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
364         @printf "    CC         $(subst $(obj)/,,$(@))\n"
365         $(CC_verstage) -MMD $(CFLAGS_verstage) $(verstage-c-ccopts) -c -o $@ $<
367 $(obj)/%.bootblock.o $(abspath $(obj))/%.bootblock.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
368         @printf "    CC         $(subst $(obj)/,,$(@))\n"
369         $(CC_bootblock) -MMD $(CFLAGS_bootblock) $(CPPFLAGS_bootblock) $(bootblock-c-ccopts) -c -o $@ $<
371 #######################################################################
372 # Clean up rules
373 clean-abuild:
374         rm -rf coreboot-builds
376 clean-for-update-target:
377         rm -f $(obj)/ramstage* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
378         rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
379         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
380         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
381         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
382         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
383         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
384         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
385         $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC_x86_32)" LD="$(LD_x86_32)"
387 clean-target:
388         rm -f $(obj)/coreboot*
390 #######################################################################
391 # Development utilities
392 printcrt0s:
393         @echo crt0s=$(crt0s)
394         @echo ldscripts=$(ldscripts)
396 update:
397         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
399 lint lint-stable:
400         FAILED=0; LINTLOG=`mktemp .tmpconfig.lintXXXXX`; \
401         for script in util/lint/$@-*; do \
402                 echo; echo `basename $$script`; \
403                 grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
404                 echo ========; \
405                 $$script > $$LINTLOG; \
406                 if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \
407                         printf "success\n\n"; \
408                 else \
409                         echo test failed: ; \
410                         cat $$LINTLOG; \
411                         rm -f $$LINTLOG; \
412                         FAILED=$$(( $$FAILED + 1 )); \
413                 fi; \
414                 echo ========; \
415         done; \
416         test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed."; rm -f $$LINTLOG && exit 1; }; \
417         rm -f $$LINTLOG
419 gitconfig:
420         [ -d .git ]
421         mkdir -p .git/hooks
422         for hook in commit-msg pre-commit ; do                       \
423                 if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o  \
424                 ! -x .git/hooks/$$hook ]; then                       \
425                         cp util/gitconfig/$$hook .git/hooks/$$hook;  \
426                         chmod +x .git/hooks/$$hook;                  \
427                 fi;                                                  \
428         done
429         git config remote.origin.push HEAD:refs/for/master
430         (git config --global user.name >/dev/null && git config --global user.email >/dev/null) || (printf 'Please configure your name and email in git:\n\n git config --global user.name "Your Name Comes Here"\n git config --global user.email your.email@example.com\n'; exit 1)
432 crossgcc: crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv
434 .PHONY: crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv
435 crossgcc-i386: clean-for-update
436         $(MAKE) -C util/crossgcc build-i386-without-gdb
438 crossgcc-x64: clean-for-update
439         $(MAKE) -C util/crossgcc build-x64-without-gdb
441 crossgcc-arm: clean-for-update
442         $(MAKE) -C util/crossgcc build-armv7a-without-gdb
444 crossgcc-aarch64: clean-for-update
445         $(MAKE) -C util/crossgcc build-aarch64-without-gdb
447 crossgcc-mips: clean-for-update
448         $(MAKE) -C util/crossgcc build-mips-without-gdb
450 crossgcc-riscv: clean-for-update
451         $(MAKE) -C util/crossgcc build-riscv-without-gdb
453 crosstools: crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv
455 .PHONY: crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv
456 crosstools-i386: clean-for-update
457         $(MAKE) -C util/crossgcc build-i386
459 crosstools-x64: clean-for-update
460         $(MAKE) -C util/crossgcc build-x64
462 crosstools-arm: clean-for-update
463         $(MAKE) -C util/crossgcc build-armv7a
465 crosstools-aarch64: clean-for-update
466         $(MAKE) -C util/crossgcc build-aarch64
468 crosstools-mips: clean-for-update
469         $(MAKE) -C util/crossgcc build-mips
471 crosstools-riscv: clean-for-update
472         $(MAKE) -C util/crossgcc build-riscv
474 crossgcc-clean: clean-for-update
475         $(MAKE) -C util/crossgcc clean
477 tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/cbfstool/rmodtool $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE)
479 ###########################################################################
480 # Common recipes for all stages
481 ###########################################################################
483 # find-substr is required for stages like romstage_null and romstage_xip to
484 # eliminate the _* part of the string
485 find-substr = $(word 1,$(subst _, ,$(1)))
487 # find-class is used to identify the class from the name of the stage
488 # The input to this macro can be something like romstage.x or romstage.x.y
489 # find-class recursively strips off the suffixes to extract the exact class name
490 # e.g.: if romstage.x is provided to find-class, it will remove .x and return romstage
491 # if romstage.x.y is provided, it will first remove .y, call find-class with romstage.x
492 # and remove .x the next time and finally return romstage
493 find-class = $(if $(filter $(1),$(basename $(1))),$(if $(CC_$(1)), $(1), $(call find-substr,$(1))),$(call find-class,$(basename $(1))))
495 $(objcbfs)/%.bin: $(objcbfs)/%.elf
496         $(eval class := $(call find-class,$(@F)))
497         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
498         $(OBJCOPY_$(class)) -O binary $< $@
500 $(objcbfs)/%.elf: $(objcbfs)/%.debug
501         $(eval class := $(call find-class,$(@F)))
502         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
503         cp $< $@.tmp
504         $(NM_$(class)) -n $@.tmp | sort > $(basename $@).map
505         $(OBJCOPY_$(class)) --strip-debug $@.tmp
506         $(OBJCOPY_$(class)) --add-gnu-debuglink=$< $@.tmp
507         mv $@.tmp $@
509 ###########################################################################
510 # Build the final rom image
511 ###########################################################################
513 COREBOOT_ROM_DEPENDENCIES:=
514 ifeq ($(CONFIG_PAYLOAD_ELF),y)
515 COREBOOT_ROM_DEPENDENCIES+=$(CONFIG_PAYLOAD_FILE)
516 endif
517 ifeq ($(CONFIG_PAYLOAD_SEABIOS),y)
518 COREBOOT_ROM_DEPENDENCIES+=seabios
519 endif
520 ifeq ($(CONFIG_PAYLOAD_FILO),y)
521 COREBOOT_ROM_DEPENDENCIES+=filo
522 endif
523 ifeq ($(CONFIG_PAYLOAD_GRUB2),y)
524 COREBOOT_ROM_DEPENDENCIES+=grub2
525 endif
527 extract_nth=$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-)))
529 cbfs-add-cmd = \
530                $(CBFSTOOL) $@.tmp \
531                add$(if $(filter stage,$(call extract_nth,3,$(file))),-stage)$(if $(filter payload,$(call extract_nth,3,$(file))),-payload) \
532                -f $(call extract_nth,1,$(file)) \
533                -n $(call extract_nth,2,$(file)) $(if $(filter-out stage,$(call extract_nth,3,$(file))),-t $(call extract_nth,3,$(file)))
535 ifneq ($(CONFIG_UPDATE_IMAGE),y)
536 prebuild-files = \
537                $(foreach file,$(cbfs-files), \
538                $(if $(call extract_nth,6,$(file)),$(CBFSTOOL) $@.tmp locate -f $(call extract_nth,1,$(file)) -n $(call extract_nth,2,$(file)) -a $(call extract_nth,6,$(file))|xargs -i \
539                $(cbfs-add-cmd) -b {} &&,\
540                $(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
541 prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
543 $(obj)/coreboot.pre1: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(CBFSTOOL) $$(cpu_ucode_cbfs_file)
544         $(CBFSTOOL) $@.tmp create -s $(CONFIG_COREBOOT_ROMSIZE_KB)K \
545         -B $(objcbfs)/bootblock.bin -a 64 \
546         $(CBFSTOOL_PRE1_OPTS)
547         $(prebuild-files) true
548         $(call add-cpu-microcode-to-cbfs,$@.tmp)
549         mv $@.tmp $@
550 else
551 .PHONY: $(obj)/coreboot.pre1
552 $(obj)/coreboot.pre1: $(CBFSTOOL)
553         mv $(obj)/coreboot.rom $@
554 endif
556 ifeq ($(CONFIG_PAYLOAD_LINUX),y)
557 ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_COMMAND_LINE))),)
558       ADDITIONAL_PAYLOAD_CONFIG+=-C $(CONFIG_LINUX_COMMAND_LINE)
559 endif
560 ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_INITRD))),)
561       ADDITIONAL_PAYLOAD_CONFIG+=-I $(CONFIG_LINUX_INITRD)
562 endif
563 endif
565 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
566 REFCODE_BLOB=$(obj)/refcode.rmod
567 $(REFCODE_BLOB): $(RMODTOOL)
568         $(RMODTOOL) -i $(CONFIG_REFCODE_BLOB_FILE) -o $@
569 endif
571 $(obj)/coreboot.rom: $(obj)/coreboot.pre $(objcbfs)/ramstage.elf $(CBFSTOOL) $(call strip_quotes,$(COREBOOT_ROM_DEPENDENCIES)) $$(INTERMEDIATE) $$(VBOOT_STUB) $(REFCODE_BLOB)
572         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
573         cp $(obj)/coreboot.pre $@.tmp
574         $(CBFSTOOL) $@.tmp add-stage -f $(objcbfs)/ramstage.elf -n $(CONFIG_CBFS_PREFIX)/ramstage -c $(CBFS_COMPRESS_FLAG)
575 ifeq ($(CONFIG_PAYLOAD_NONE),y)
576         @printf "    PAYLOAD    none (as specified by user)\n"
577 endif
578 ifneq ($(CONFIG_PAYLOAD_FILE),)
579         @printf "    PAYLOAD    $(CONFIG_PAYLOAD_FILE) (compression: $(CBFS_PAYLOAD_COMPRESS_FLAG))\n"
580         $(CBFSTOOL) $@.tmp add-payload -f $(CONFIG_PAYLOAD_FILE) -n $(CONFIG_CBFS_PREFIX)/payload -c $(CBFS_PAYLOAD_COMPRESS_FLAG) $(ADDITIONAL_PAYLOAD_CONFIG)
581 endif
582 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),)
583 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
584         @printf "    SeaBIOS    Wait up to $(CONFIG_SEABIOS_PS2_TIMEOUT) ms for PS/2 keyboard controller initialization\n"
585         $(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_PS2_TIMEOUT) -n etc/ps2-keyboard-spinup
586 endif
587 endif
588 ifeq ($(CONFIG_SEABIOS_VGA_COREBOOT),y)
589         @printf "    SeaBIOS    Adding generated legacy VGA option rom.\n"
590         $(CBFSTOOL) $@.tmp add -f $(CONFIG_PAYLOAD_VGABIOS_FILE) -n vgaroms/seavgabios.bin -t raw
591 endif
592 ifeq ($(CONFIG_INCLUDE_CONFIG_FILE),y)
593         @printf "    CONFIG     $(DOTCONFIG)\n"
594         if [ -f $(DOTCONFIG) ]; then \
595         echo "# This image was built using git revision" `git rev-parse HEAD` > $(obj)/config.tmp ; \
596         sed -e '/^#/d' -e '/^ *$$/d' $(DOTCONFIG) >> $(obj)/config.tmp ; \
597         $(CBFSTOOL) $@.tmp add -f $(obj)/config.tmp -n config -t raw; rm -f $(obj)/config.tmp ; fi
598         @printf "    REVISION   build.h\n"
599         if [ -f $(obj)/build.h ]; then $(CBFSTOOL) $@.tmp add -f $(obj)/build.h -n revision -t raw; fi
600 endif
601 ifeq ($(CONFIG_VBOOT_VERIFY_FIRMWARE),y)
602         $(CBFSTOOL) $@.tmp add-stage -f $(VBOOT_STUB) -n $(CONFIG_CBFS_PREFIX)/vboot -c $(CBFS_COMPRESS_FLAG)
603 endif
604 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
605         $(CBFSTOOL) $@.tmp add-stage -f $(REFCODE_BLOB) -n $(CONFIG_CBFS_PREFIX)/refcode -c $(CBFS_COMPRESS_FLAG)
606 endif
607 ifeq ($(CONFIG_PXE_ROM),y)
608         $(CBFSTOOL) $@.tmp add -f $(CONFIG_PXE_ROM_FILE) -n pci$(CONFIG_PXE_ROM_ID).rom -t raw
609 endif
610 ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
611 ifeq ($(CONFIG_CPU_MICROCODE_ADDED_DURING_BUILD),y)
612         @printf "    UPDATE-FIT \n"
613         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
614 endif
615 endif
616         mv $@.tmp $@
617         @printf "    CBFSPRINT  $(subst $(obj)/,,$(@))\n\n"
618         $(CBFSTOOL) $@ print
620 cbfs-files-$(CONFIG_BOOTSPLASH) += bootsplash.jpg
621 bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
622 bootsplash.jpg-type := bootsplash
624 $(obj)/coreboot.pre: $(objcbfs)/romstage.elf $(obj)/coreboot.pre1 $(CBFSTOOL)
625         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
626         cp $(obj)/coreboot.pre1 $@.tmp
627         $(CBFSTOOL) $@.tmp add-stage \
628                 -f $(objcbfs)/romstage.elf \
629                 -n $(CONFIG_CBFS_PREFIX)/romstage -c none \
630                 $(CBFSTOOL_PRE_OPTS)
631         mv $@.tmp $@
633 JENKINS_PAYLOAD=none
634 what-jenkins-does:
635         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c 4 -z -p $(JENKINS_PAYLOAD)
636         (cd payloads/libpayload; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
637         $(MAKE) V=$(V) Q=$(Q) -C util/cbmem junit.xml