device/pciexp: Add support for PCIe CLK power management
[coreboot.git] / Makefile.inc
blob656d9886682b267a0ebe49ceb83f6071a0b04652
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/x86 src/arch/riscv
74 subdirs-y += src/mainboard/$(MAINBOARDDIR)
76 subdirs-y += site-local
78 #######################################################################
79 # Add source classes and their build options
80 classes-y := ramstage romstage bootblock smm smmstub cpu_microcode verstage
82 # Add dynamic classes for rmodules
83 $(foreach supported_arch,$(ARCH_SUPPORTED), \
84             $(eval $(call define_class,rmodules_$(supported_arch),$(supported_arch))))
86 #######################################################################
87 # Helper functions for various file placement matters
89 # int-add: adds an arbitrary number of space-separated integers in
90 #          all formats understood by printf(1)
91 # int-align: align $1 to $2 units
92 # file-size: returns the filesize of the given file
93 _toint=$(shell printf "%d" $1)
94 _int-add2=$(shell expr $(call _toint,$1) + $(call _toint,$2))
95 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)))
96 int-align=$(shell A=$(call _toint,$1) B=$(call _toint,$2); expr $$A + \( \( $$B - \( $$A % $$B \) \) % $$B \) )
97 file-size=$(shell cat $1 | wc -c)
99 #######################################################################
100 # Helper functions for ramstage postprocess
101 spc :=
102 spc +=
103 $(spc) :=
104 $(spc) +=
106 # files-in-dir-recursive,dir,files
107 files-in-dir-recursive=$(filter $(1)%,$(2))
109 # parent-dir,dir/
110 parent-dir=$(dir $(if $(patsubst /%,,$(1)),,/)$(subst $( ),/,$(strip $(subst /, ,$(1)))))
112 # filters out exactly the directory specified
113 # filter-out-dir,dir_to_keep,dirs
114 filter-out-dir=$(filter-out $(1),$(2))
116 # filters out dir_to_keep and all its parents
117 # filter-out-dirs,dir_to_keep,dirs
118 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)))
120 # dir-wildcards,dirs
121 dir-wildcards=$(addsuffix %,$(1))
123 # files-in-dir,dir,files
124 files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(sort $(dir $(2))))),$(call files-in-dir-recursive,$(1),$(2)))
126 #######################################################################
127 # reduce command line length by linking the objects of each
128 # directory into an intermediate file
129 ramstage-postprocess=$(foreach d,$(sort $(dir $(1))), \
130         $(eval $(d)ramstage.o: $(call files-in-dir,$(d),$(1)); $$(LD_ramstage) -o $$@ -r $$^ ) \
131         $(eval ramstage-objs:=$(d)ramstage.o $(filter-out $(call files-in-dir,$(d),$(1)),$(ramstage-objs))))
133 verstage-c-ccopts:=-D__PRE_RAM__ -D__VER_STAGE__
134 verstage-S-ccopts:=-D__PRE_RAM__ -D__VER_STAGE__
135 romstage-c-ccopts:=-D__PRE_RAM__
136 romstage-S-ccopts:=-D__PRE_RAM__
137 ifeq ($(CONFIG_TRACE),y)
138 ramstage-c-ccopts:= -finstrument-functions
139 endif
140 ifeq ($(CONFIG_COVERAGE),y)
141 ramstage-c-ccopts+=-fprofile-arcs -ftest-coverage
142 endif
144 # try to fetch non-optional submodules if the source is under git
145 forgetthis:=$(if $(GIT),$(shell git submodule update --init))
146 ifeq ($(CONFIG_USE_BLOBS),y)
147 # this is necessary because 3rdparty is update=none, and so is ignored
148 # unless explicitly requested and enabled through --checkout
149 forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty))
150 endif
152 bootblock-c-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
153 bootblock-S-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
155 smmstub-c-ccopts:=-D__SMM__
156 smmstub-S-ccopts:=-D__SMM__
157 smm-c-ccopts:=-D__SMM__
158 smm-S-ccopts:=-D__SMM__
160 # SMM TSEG base is dynamic
161 ifneq ($(CONFIG_SMM_MODULES),y)
162 ifeq ($(CONFIG_SMM_TSEG),y)
163 smm-c-ccopts += -fpic
164 endif
165 endif
167 ramstage-c-deps:=$$(OPTION_TABLE_H)
168 romstage-c-deps:=$$(OPTION_TABLE_H)
169 verstage-c-deps:=$$(OPTION_TABLE_H)
170 bootblock-c-deps:=$$(OPTION_TABLE_H)
171 smm-c-deps:=$$(OPTION_TABLE_H)
173 #######################################################################
174 # Add handler to compile ACPI's ASL
175 define ramstage-objs_asl_template
176 $(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
177         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
178         $(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
179         cd $$(dir $$@); $(IASL) -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl
180         mv $$(basename $$@).hex $$(basename $$@).c
181         $(CC_ramstage) $$(CFLAGS_ramstage) $$(CPPFLAGS_ramstage) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
182         # keep %.o: %.c rule from catching the temporary .c file after a make clean
183         mv $$(basename $$@).c $$(basename $$@).hex
184 endef
186 #######################################################################
187 # Parse plaintext cmos defaults into binary format
188 # arg1: source file
189 # arg2: binary file name
190 cbfs-files-processor-nvramtool= \
191         $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
192                 printf "    CREATE     $(2) (from $(1))\n"; $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && mv $(2).tmp $(2))
194 #######################################################################
195 # Link VSA binary to ELF-ish stage
196 # arg1: source file
197 # arg2: binary file name
198 cbfs-files-processor-vsa= \
199         $(eval $(2): $(1) ; \
200                 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))
202 #######################################################################
203 # Add handler for arbitrary files in CBFS
204 $(call add-special-class,cbfs-files)
205 cbfs-files-handler= \
206                 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
207                 $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
208                 $(if $(wildcard $(1)$($(2)-file)), \
209                         $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
210                         $(eval tmp-cbfs-file:= $($(2)-file))) \
211                 $(if $(strip $($(2)-required)), \
212                         $(if $(wildcard $(tmp-cbfs-file)),, \
213                                 $(info This build configuration requires $($(2)-required)) \
214                                 $(eval FAILBUILD:=1) \
215                         )) \
216                 $(if $(strip $($(2)-align)), \
217                         $(if $(strip $($(2)-position)), \
218                                 $(info ERROR: It is not allowed to specify both alignment and position for $($(2)-file)) \
219                                 $(eval FAILBUILD:=1) \
220                         )) \
221                 $(if $(tmp-cbfs-method), \
222                         $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
223                         $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
224                         $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
225                 $(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$(strip $($(2)-position))|$($(2)-align))\
226                 $(eval $(2)-name:=) \
227                 $(eval $(2)-type:=) \
228                 $(eval $(2)-compression:=) \
229                 $(eval $(2)-position:=) \
230                 $(eval $(2)-required:=) \
231                 $(eval $(2)-align:=)
233 #######################################################################
234 # a variety of flags for our build
235 CBFS_COMPRESS_FLAG:=none
236 ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
237 CBFS_COMPRESS_FLAG:=LZMA
238 endif
240 CBFS_PAYLOAD_COMPRESS_FLAG:=none
241 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
242 CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
243 endif
245 ifneq ($(CONFIG_LOCALVERSION),"")
246 export COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
247 endif
249 CPPFLAGS_common := -Isrc -Isrc/include -I$(obj)
250 CPPFLAGS_common += -Isrc/device/oprom/include
251 CPPFLAGS_common += -include $(src)/include/kconfig.h
253 CFLAGS_common += -pipe -g -nostdinc
254 CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
255 CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
256 CFLAGS_common += -Wstrict-aliasing -Wshadow
257 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
258 CFLAGS_common += -Werror
259 endif
260 CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
261 ifneq ($(GDB_DEBUG),)
262 CFLAGS_common += -O0
263 else
264 CFLAGS_common += -Os
265 endif
268 additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool \
269                    $(objutil)/ifdfake $(objutil)/options $(objutil)/fletcher \
270                    $(objutil)/cbootimage
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 #######################################################################
336 # needed objects that every mainboard uses
337 # Creation of these is architecture and mainboard independent
338 $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb  $(objutil)/sconfig/sconfig
339         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
340         mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
341         $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
343 ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
344 romstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
346 $(objutil)/%.o: $(objutil)/%.c
347         @printf "    HOSTCC     $(subst $(objutil)/,,$(@))\n"
348         $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
350 $(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
351         @printf "    CC         $(subst $(obj)/,,$(@))\n"
352         $(CC_ramstage) -MMD $(CFLAGS_ramstage) $(CPPFLAGS_ramstage) $(ramstage-c-ccopts) -c -o $@ $<
354 $(obj)/%.romstage.o $(abspath $(obj))/%.romstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
355         @printf "    CC         $(subst $(obj)/,,$(@))\n"
356         $(CC_romstage) -MMD $(CFLAGS_romstage) $(CPPFLAGS_romstage) $(romstage-c-ccopts) -c -o $@ $<
358 $(obj)/%.verstage.o $(abspath $(obj))/%.verstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
359         @printf "    CC         $(subst $(obj)/,,$(@))\n"
360         $(CC_verstage) -MMD $(CFLAGS_verstage) $(verstage-c-ccopts) -c -o $@ $<
362 $(obj)/%.bootblock.o $(abspath $(obj))/%.bootblock.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
363         @printf "    CC         $(subst $(obj)/,,$(@))\n"
364         $(CC_bootblock) -MMD $(CFLAGS_bootblock) $(CPPFLAGS_bootblock) $(bootblock-c-ccopts) -c -o $@ $<
366 #######################################################################
367 # Clean up rules
368 clean-abuild:
369         rm -rf coreboot-builds
371 clean-for-update-target:
372         rm -f $(obj)/ramstage* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
373         rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
374         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
375         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
376         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
377         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
378         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
379         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
380         $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC_x86_32)" LD="$(LD_x86_32)"
382 clean-target:
383         rm -f $(obj)/coreboot*
385 #######################################################################
386 # Development utilities
387 printcrt0s:
388         @echo crt0s=$(crt0s)
389         @echo ldscripts=$(ldscripts)
391 update:
392         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
394 lint lint-stable:
395         FAILED=0; LINTLOG=`mktemp .tmpconfig.lintXXXXX`; \
396         for script in util/lint/$@-*; do \
397                 echo; echo `basename $$script`; \
398                 grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
399                 echo ========; \
400                 $$script > $$LINTLOG; \
401                 if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \
402                         printf "success\n\n"; \
403                 else \
404                         echo test failed: ; \
405                         cat $$LINTLOG; \
406                         rm -f $$LINTLOG; \
407                         FAILED=$$(( $$FAILED + 1 )); \
408                 fi; \
409                 echo ========; \
410         done; \
411         test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed."; rm -f $$LINTLOG && exit 1; }; \
412         rm -f $$LINTLOG
414 gitconfig:
415         [ -d .git ]
416         mkdir -p .git/hooks
417         for hook in commit-msg pre-commit ; do                       \
418                 if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o  \
419                 ! -x .git/hooks/$$hook ]; then                       \
420                         cp util/gitconfig/$$hook .git/hooks/$$hook;  \
421                         chmod +x .git/hooks/$$hook;                  \
422                 fi;                                                  \
423         done
424         git config remote.origin.push HEAD:refs/for/master
425         (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)
427 crossgcc: crossgcc-i386 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv
429 .PHONY: crossgcc-i386 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv
430 crossgcc-i386: clean-for-update
431         $(MAKE) -C util/crossgcc build-i386-without-gdb
433 crossgcc-arm: clean-for-update
434         $(MAKE) -C util/crossgcc build-armv7a-without-gdb
436 crossgcc-aarch64: clean-for-update
437         $(MAKE) -C util/crossgcc build-aarch64-without-gdb
439 crossgcc-mips: clean-for-update
440         $(MAKE) -C util/crossgcc build-mips-without-gdb
442 crossgcc-riscv: clean-for-update
443         $(MAKE) -C util/crossgcc build-riscv-without-gdb
445 crosstools: crosstools-i386 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv
447 .PHONY: crosstools-i386 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv
448 crosstools-i386: clean-for-update
449         $(MAKE) -C util/crossgcc build-i386
451 crosstools-arm: clean-for-update
452         $(MAKE) -C util/crossgcc build-armv7a
454 crosstools-aarch64: clean-for-update
455         $(MAKE) -C util/crossgcc build-aarch64
457 crosstools-mips: clean-for-update
458         $(MAKE) -C util/crossgcc build-mips
460 crosstools-riscv: clean-for-update
461         $(MAKE) -C util/crossgcc build-riscv
463 crossgcc-clean: clean-for-update
464         $(MAKE) -C util/crossgcc clean
466 tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/cbfstool/rmodtool $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE)
468 ###########################################################################
469 # Common recipes for all stages
470 ###########################################################################
472 # find-substr is required for stages like romstage_null and romstage_xip to
473 # eliminate the _* part of the string
474 find-substr = $(word 1,$(subst _, ,$(1)))
476 # find-class is used to identify the class from the name of the stage
477 # The input to this macro can be something like romstage.x or romstage.x.y
478 # find-class recursively strips off the suffixes to extract the exact class name
479 # e.g.: if romstage.x is provided to find-class, it will remove .x and return romstage
480 # if romstage.x.y is provided, it will first remove .y, call find-class with romstage.x
481 # and remove .x the next time and finally return romstage
482 find-class = $(if $(filter $(1),$(basename $(1))),$(if $(CC_$(1)), $(1), $(call find-substr,$(1))),$(call find-class,$(basename $(1))))
484 $(objcbfs)/%.bin: $(objcbfs)/%.elf
485         $(eval class := $(call find-class,$(@F)))
486         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
487         $(OBJCOPY_$(class)) -O binary $< $@
489 $(objcbfs)/%.elf: $(objcbfs)/%.debug
490         $(eval class := $(call find-class,$(@F)))
491         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
492         cp $< $@.tmp
493         $(NM_$(class)) -n $@.tmp | sort > $(basename $@).map
494         $(OBJCOPY_$(class)) --strip-debug $@.tmp
495         $(OBJCOPY_$(class)) --add-gnu-debuglink=$< $@.tmp
496         mv $@.tmp $@
498 ###########################################################################
499 # Build the final rom image
500 ###########################################################################
502 COREBOOT_ROM_DEPENDENCIES:=
503 ifeq ($(CONFIG_PAYLOAD_ELF),y)
504 COREBOOT_ROM_DEPENDENCIES+=$(CONFIG_PAYLOAD_FILE)
505 endif
506 ifeq ($(CONFIG_PAYLOAD_SEABIOS),y)
507 COREBOOT_ROM_DEPENDENCIES+=seabios
508 endif
509 ifeq ($(CONFIG_PAYLOAD_FILO),y)
510 COREBOOT_ROM_DEPENDENCIES+=filo
511 endif
512 ifeq ($(CONFIG_PAYLOAD_GRUB2),y)
513 COREBOOT_ROM_DEPENDENCIES+=grub2
514 endif
516 extract_nth=$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-)))
518 cbfs-add-cmd = \
519                $(CBFSTOOL) $@.tmp \
520                add$(if $(filter stage,$(call extract_nth,3,$(file))),-stage)$(if $(filter payload,$(call extract_nth,3,$(file))),-payload) \
521                -f $(call extract_nth,1,$(file)) \
522                -n $(call extract_nth,2,$(file)) $(if $(filter-out stage,$(call extract_nth,3,$(file))),-t $(call extract_nth,3,$(file)))
524 ifneq ($(CONFIG_UPDATE_IMAGE),y)
525 prebuild-files = \
526                $(foreach file,$(cbfs-files), \
527                $(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 \
528                $(cbfs-add-cmd) -b {} &&,\
529                $(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
530 prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
532 $(obj)/coreboot.pre1: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(CBFSTOOL) $$(cpu_ucode_cbfs_file)
533         $(CBFSTOOL) $@.tmp create -s $(CONFIG_COREBOOT_ROMSIZE_KB)K \
534         -B $(objcbfs)/bootblock.bin -a 64 \
535         $(CBFSTOOL_PRE1_OPTS)
536         $(prebuild-files) true
537         $(call add-cpu-microcode-to-cbfs,$@.tmp)
538         mv $@.tmp $@
539 else
540 .PHONY: $(obj)/coreboot.pre1
541 $(obj)/coreboot.pre1: $(CBFSTOOL)
542         mv $(obj)/coreboot.rom $@
543 endif
545 ifeq ($(CONFIG_PAYLOAD_LINUX),y)
546 ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_COMMAND_LINE))),)
547       ADDITIONAL_PAYLOAD_CONFIG+=-C $(CONFIG_LINUX_COMMAND_LINE)
548 endif
549 ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_INITRD))),)
550       ADDITIONAL_PAYLOAD_CONFIG+=-I $(CONFIG_LINUX_INITRD)
551 endif
552 endif
554 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
555 REFCODE_BLOB=$(obj)/refcode.rmod
556 $(REFCODE_BLOB): $(RMODTOOL)
557         $(RMODTOOL) -i $(CONFIG_REFCODE_BLOB_FILE) -o $@
558 endif
560 $(obj)/coreboot.rom: $(obj)/coreboot.pre $(objcbfs)/ramstage.elf $(CBFSTOOL) $(call strip_quotes,$(COREBOOT_ROM_DEPENDENCIES)) $$(INTERMEDIATE) $$(VBOOT_STUB) $(REFCODE_BLOB)
561         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
562         cp $(obj)/coreboot.pre $@.tmp
563         $(CBFSTOOL) $@.tmp add-stage -f $(objcbfs)/ramstage.elf -n $(CONFIG_CBFS_PREFIX)/ramstage -c $(CBFS_COMPRESS_FLAG)
564 ifeq ($(CONFIG_PAYLOAD_NONE),y)
565         @printf "    PAYLOAD    none (as specified by user)\n"
566 endif
567 ifneq ($(CONFIG_PAYLOAD_FILE),)
568         @printf "    PAYLOAD    $(CONFIG_PAYLOAD_FILE) (compression: $(CBFS_PAYLOAD_COMPRESS_FLAG))\n"
569         $(CBFSTOOL) $@.tmp add-payload -f $(CONFIG_PAYLOAD_FILE) -n $(CONFIG_CBFS_PREFIX)/payload -c $(CBFS_PAYLOAD_COMPRESS_FLAG) $(ADDITIONAL_PAYLOAD_CONFIG)
570 endif
571 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),)
572 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
573         @printf "    SeaBIOS    Wait up to $(CONFIG_SEABIOS_PS2_TIMEOUT) ms for PS/2 keyboard controller initialization\n"
574         $(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_PS2_TIMEOUT) -n etc/ps2-keyboard-spinup
575 endif
576 endif
577 ifeq ($(CONFIG_SEABIOS_VGA_COREBOOT),y)
578         @printf "    SeaBIOS    Adding generated legacy VGA option rom.\n"
579         $(CBFSTOOL) $@.tmp add -f $(CONFIG_PAYLOAD_VGABIOS_FILE) -n vgaroms/seavgabios.bin -t raw
580 endif
581 ifeq ($(CONFIG_INCLUDE_CONFIG_FILE),y)
582         @printf "    CONFIG     $(DOTCONFIG)\n"
583         if [ -f $(DOTCONFIG) ]; then \
584         echo "# This image was built using git revision" `git rev-parse HEAD` > $(obj)/config.tmp ; \
585         sed -e '/^#/d' -e '/^ *$$/d' $(DOTCONFIG) >> $(obj)/config.tmp ; \
586         $(CBFSTOOL) $@.tmp add -f $(obj)/config.tmp -n config -t raw; rm -f $(obj)/config.tmp ; fi
587         @printf "    REVISION   build.h\n"
588         if [ -f $(obj)/build.h ]; then $(CBFSTOOL) $@.tmp add -f $(obj)/build.h -n revision -t raw; fi
589 endif
590 ifeq ($(CONFIG_VBOOT_VERIFY_FIRMWARE),y)
591         $(CBFSTOOL) $@.tmp add-stage -f $(VBOOT_STUB) -n $(CONFIG_CBFS_PREFIX)/vboot -c $(CBFS_COMPRESS_FLAG)
592 endif
593 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
594         $(CBFSTOOL) $@.tmp add-stage -f $(REFCODE_BLOB) -n $(CONFIG_CBFS_PREFIX)/refcode -c $(CBFS_COMPRESS_FLAG)
595 endif
596 ifeq ($(CONFIG_PXE_ROM),y)
597         $(CBFSTOOL) $@.tmp add -f $(CONFIG_PXE_ROM_FILE) -n pci$(CONFIG_PXE_ROM_ID).rom -t raw
598 endif
599 ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
600 ifeq ($(CONFIG_CPU_MICROCODE_ADDED_DURING_BUILD),y)
601         @printf "    UPDATE-FIT \n"
602         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
603 endif
604 endif
605         mv $@.tmp $@
606         @printf "    CBFSPRINT  $(subst $(obj)/,,$(@))\n\n"
607         $(CBFSTOOL) $@ print
609 cbfs-files-$(CONFIG_BOOTSPLASH) += bootsplash.jpg
610 bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
611 bootsplash.jpg-type := bootsplash
613 $(obj)/coreboot.pre: $(objcbfs)/romstage.elf $(obj)/coreboot.pre1 $(CBFSTOOL)
614         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
615         cp $(obj)/coreboot.pre1 $@.tmp
616         $(CBFSTOOL) $@.tmp add-stage \
617                 -f $(objcbfs)/romstage.elf \
618                 -n $(CONFIG_CBFS_PREFIX)/romstage -c none \
619                 $(CBFSTOOL_PRE_OPTS)
620         mv $@.tmp $@
622 JENKINS_PAYLOAD=none
623 what-jenkins-does:
624         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c 4 -z -p $(JENKINS_PAYLOAD)
625         (cd payloads/libpayload; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
626         $(MAKE) V=$(V) Q=$(Q) -C util/cbmem junit.xml