imgtec/pistachio: Use SYS PLL in integer mode
[coreboot.git] / Makefile.inc
blob06dea87354890ecf7b04e11f9fac5b132d48e4f1
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.
16 GIT:=$(shell [ -d "$(top)/.git" ] && command -v git)
18 #######################################################################
19 # normalize Kconfig variables in a central place
20 CONFIG_CBFS_PREFIX:=$(call strip_quotes,$(CONFIG_CBFS_PREFIX))
21 CONFIG_FMDFILE:=$(call strip_quotes,$(CONFIG_FMDFILE))
23 #######################################################################
24 # misleadingly named, this is the coreboot version
25 export KERNELVERSION := $(strip $(if $(GIT),\
26         $(shell git describe --dirty --always || git describe),\
27         $(if $(wildcard $(top)/.coreboot-version),\
28                 $(shell cat $(top)/.coreboot-version),\
29                 coreboot-unknown$(KERNELREVISION))))
31 #######################################################################
32 # Basic component discovery
33 MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
34 export MAINBOARDDIR
36 ## Final build results, which CBFSTOOL uses to create the final
37 ## rom image file, are placed under $(objcbfs).
38 ## These typically have suffixes .debug .elf .bin and .map
39 export objcbfs := $(obj)/cbfs/$(CONFIG_CBFS_PREFIX)
41 ## Based on the active configuration, Makefile conditionally collects
42 ## the required assembly includes and saves them in a file.
43 ## Such files that do not have a clear one-to-one relation to a source
44 ## file under src/ are placed and built under $(objgenerated)
45 export objgenerated := $(obj)/generated
47 #######################################################################
48 # root rule to resolve if in build mode (ie. configuration exists)
49 real-target: $(obj)/config.h coreboot
50 coreboot: build-dirs $(obj)/coreboot.rom $(obj)/cbfstool $(obj)/rmodtool
52 #######################################################################
53 # our phony targets
54 PHONY+= clean-abuild coreboot lint lint-stable build-dirs
56 #######################################################################
57 # root source directories of coreboot
58 subdirs-y := src/lib src/commonlib/ src/console src/device src/acpi
59 subdirs-y += src/ec/acpi $(wildcard src/ec/*/*) $(wildcard src/southbridge/*/*)
60 subdirs-y += $(wildcard src/soc/*/*) $(wildcard src/northbridge/*/*)
61 subdirs-y += src/superio $(wildcard src/drivers/*) src/cpu src/vendorcode
62 subdirs-y += util/cbfstool util/sconfig util/nvramtool util/broadcom
63 subdirs-y += $(wildcard src/arch/*)
64 subdirs-y += src/mainboard/$(MAINBOARDDIR)
65 subdirs-y += payloads/external
67 subdirs-y += site-local
69 #######################################################################
70 # Add source classes and their build options
71 classes-y := ramstage romstage bootblock smm smmstub cpu_microcode libverstage verstage
73 # Add dynamic classes for rmodules
74 $(foreach supported_arch,$(ARCH_SUPPORTED), \
75             $(eval $(call define_class,rmodules_$(supported_arch),$(supported_arch))))
76 # Provide a macro to determine environment for free standing rmodules.
77 $(foreach supported_arch,$(ARCH_SUPPORTED), \
78         $(eval rmodules_$(supported_arch)-generic-ccopts += -D__RMODULE__))
80 #######################################################################
81 # Helper functions for math and various file placement matters.
82 # macros work on all formats understood by printf(1)
83 # values are space separated if using more than one value
85 # int-add:       adds an arbitrary length list of integers
86 # int-subtract:  subtracts the the second of two integers from the first
87 # int-multiply:  multiplies an arbitrary length list of integers
88 # int-divide:    divides the first integer by the second
89 # int-remainder: arithmetic remainder of the first number divided by the second
90 # int-lt:        1 if the first value is less than the second.  0 otherwise
91 # int-gt:        1 if the first values is greater than the second.  0 otherwise
92 # int-eq:        1 if the two values are equal.  0 otherwise
93 # int-align:     align $1 to $2 units
94 # file-size:     returns the filesize of the given file
95 _toint=$(shell printf "%d" $1)
96 _int-add2=$(shell expr $(call _toint,$1) + $(call _toint,$2))
97 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)))
98 int-subtract=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) - $(call _toint,$(word 2,$1))))
99 _int-multiply2=$(shell expr $(call _toint,$1) \* $(call _toint,$2))
100 int-multiply=$(if $(filter 1,$(words $1)),$(strip $1),$(call int-multiply,$(call _int-multiply2,$(word 1,$1),$(word 2,$1)) $(wordlist 3,$(words $1),$1)))
101 int-divide=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) / $(call _toint,$(word 2,$1))))
102 int-remainder=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) % $(call _toint,$(word 2,$1))))
103 int-lt=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) \< $(call _toint,$(word 2,$1))))
104 int-gt=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) \> $(call _toint,$(word 2,$1))))
105 int-eq=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) = $(call _toint,$(word 2,$1))))
106 int-align=$(shell A=$(call _toint,$1) B=$(call _toint,$2); expr $$A + \( \( $$B - \( $$A % $$B \) \) % $$B \) )
107 file-size=$(shell cat $1 | wc -c)
109 #######################################################################
110 # Helper functions for ramstage postprocess
111 spc :=
112 spc +=
113 $(spc) :=
114 $(spc) +=
116 # files-in-dir-recursive,dir,files
117 files-in-dir-recursive=$(filter $(1)%,$(2))
119 # parent-dir,dir/
120 parent-dir=$(dir $(if $(patsubst /%,,$(1)),,/)$(subst $( ),/,$(strip $(subst /, ,$(1)))))
122 # filters out exactly the directory specified
123 # filter-out-dir,dir_to_keep,dirs
124 filter-out-dir=$(filter-out $(1),$(2))
126 # filters out dir_to_keep and all its parents
127 # filter-out-dirs,dir_to_keep,dirs
128 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)))
130 # dir-wildcards,dirs
131 dir-wildcards=$(addsuffix %,$(1))
133 # files-in-dir,dir,files
134 files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(sort $(dir $(2))))),$(call files-in-dir-recursive,$(1),$(2)))
136 #######################################################################
137 # reduce command line length by linking the objects of each
138 # directory into an intermediate file
139 ramstage-postprocess=$$(eval DEPENDENCIES+=$$(addsuffix .d,$$(basename $(1)))) \
140         $(foreach d,$(sort $(dir $(filter-out %.ld,$(1)))), \
141         $(eval $(d)ramstage.a: $(call files-in-dir,$(d),$(filter-out %.ld,$(1))); rm -f $$@ && $(AR_ramstage) rcsT $$@ $$^ ) \
142         $(eval ramstage-objs:=$(d)ramstage.a $(filter-out $(filter-out %.ld, $(call files-in-dir,$(d),$(1))),$(ramstage-objs))))
144 bootblock-generic-ccopts += -D__PRE_RAM__ -D__BOOTBLOCK__
145 romstage-generic-ccopts += -D__PRE_RAM__ -D__ROMSTAGE__
146 ramstage-generic-ccopts += -D__RAMSTAGE__
147 ifeq ($(CONFIG_TRACE),y)
148 ramstage-c-ccopts += -finstrument-functions
149 endif
150 ifeq ($(CONFIG_COVERAGE),y)
151 ramstage-c-ccopts += -fprofile-arcs -ftest-coverage
152 endif
154 # try to fetch non-optional submodules if the source is under git
155 forgetthis:=$(if $(GIT),$(shell git submodule update --init))
156 ifeq ($(CONFIG_USE_BLOBS),y)
157 # this is necessary because 3rdparty/blobs is update=none, and so is ignored
158 # unless explicitly requested and enabled through --checkout
159 forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/blobs))
160 endif
162 ramstage-c-deps:=$$(OPTION_TABLE_H)
163 romstage-c-deps:=$$(OPTION_TABLE_H)
164 libverstage-c-deps:=$$(OPTION_TABLE_H)
165 verstage-c-deps:=$$(OPTION_TABLE_H)
166 bootblock-c-deps:=$$(OPTION_TABLE_H)
168 # Add handler to copy linker scripts
169 define generic-objs_ld_template_gen
170 de$(EMPTY)fine $(1)-objs_ld_template
171 $$(call src-to-obj,$1,$$(1).ld): $$(1).ld $(obj)/config.h
172         @printf "    CP         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
173         $$(CC_$(1)) -MMD $$(CPPFLAGS_$(1)) $$($(1)-ld-ccopts) $(PREPROCESS_ONLY) -include $(obj)/config.h -MT $$$$@ -o $$$$@ $$$$<
174 en$(EMPTY)def
175 endef
177 # Add handler to deal with archives
178 define generic-objs_a_template_gen
179 de$(EMPTY)fine $(1)-objs_a_template
180 $$(call src-to-obj,$1,$$(1).a): $$(1).a
181         @printf "    CP         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
182         cp $$$$< $$$$@.tmp
183         mv $$$$@.tmp $$$$@
184 en$(EMPTY)def
185 endef
187 # Add handler to add no rules for manual files
188 define generic-objs_manual_template_gen
189 # do nothing
190 endef
192 #######################################################################
193 # Add handler to compile ACPI's ASL
194 # arg1: base file name
195 # arg2: y or n for including in cbfs. defaults to y
196 define asl_template
197 $(CONFIG_CBFS_PREFIX)/$(1).aml-file = $(obj)/$(1).aml
198 $(CONFIG_CBFS_PREFIX)/$(1).aml-type = raw
199 $(CONFIG_CBFS_PREFIX)/$(1).aml-compression = none
200 cbfs-files-$(if $(2),$(2),y) += $(CONFIG_CBFS_PREFIX)/$(1).aml
201 -include $(obj)/$(1).d
202 $(obj)/$(1).aml: $(src)/mainboard/$(MAINBOARDDIR)/$(1).asl $(obj)/config.h
203         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
204         $(CC_ramstage) -x assembler-with-cpp -E -MMD -MT $$(@) $$(CPPFLAGS_ramstage) -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 $$@
205 ifeq ($(CONFIG_IASL_WARNINGS_ARE_ERRORS),y)
206         cd $$(dir $$@); $(IASL) -we -p $$(notdir $$@) $$(notdir $$@)
207 else
208         cd $$(dir $$@); $(IASL) -p $$(notdir $$@) $$(notdir $$@)
209 endif
210 endef
212 #######################################################################
213 # Parse plaintext cmos defaults into binary format
214 # arg1: source file
215 # arg2: binary file name
216 cbfs-files-processor-nvramtool= \
217         $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
218                 printf "    CREATE     $(2) (from $(1))\n"; \
219                 $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && \
220                 mv $(2).tmp $(2))
222 #######################################################################
223 # Link VSA binary to ELF-ish stage
224 # arg1: source file
225 # arg2: binary file name
226 cbfs-files-processor-vsa= \
227         $(eval $(2): $(1) ; \
228                 printf "    CREATE     $(2) (from $(1))\n"; \
229                 $(OBJCOPY_ramstage) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && \
230                 $(LD_ramstage) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2))
232 #######################################################################
233 # Reduce a .config file to its minimal representation
234 # arg1: input
235 # arg2: output
236 cbfs-files-processor-defconfig= \
237         $(eval $(2): $(1) $(obj)/build.h; \
238                 printf "    CREATE     $(2) (from $(1))\n"; \
239                 printf "\# This image was built using coreboot " > $(2).tmp && \
240                 grep "\<COREBOOT_VERSION\>" $(obj)/build.h |cut -d\" -f2 >> $(2).tmp && \
241                 $(MAKE) DOTCONFIG=$(1) DEFCONFIG=$(2).tmp2 savedefconfig && \
242                 cat $(2).tmp2 >> $(2).tmp && \
243                 rm -f $(2).tmp2 && \
244                 \mv -f $(2).tmp $(2))
246 #######################################################################
247 # Add handler for arbitrary files in CBFS
248 $(call add-special-class,cbfs-files)
249 cbfs-files-handler= \
250                 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
251                 $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
252                 $(eval tmp-cbfs-file:= ) \
253                 $(if $($(2)-file), \
254                         $(if $(wildcard $(1)$($(2)-file)), \
255                                 $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
256                                 $(eval tmp-cbfs-file:= $($(2)-file)))) \
257                 $(if $(strip $($(2)-required)), \
258                         $(if $(wildcard $(tmp-cbfs-file)),, \
259                                 $(info This build configuration requires $($(2)-required)) \
260                                 $(eval FAILBUILD:=1) \
261                         )) \
262                 $(if $(strip $($(2)-align)), \
263                         $(if $(strip $($(2)-position)), \
264                                 $(info ERROR: It is not allowed to specify both alignment and position for $($(2)-file)) \
265                                 $(eval FAILBUILD:=1) \
266                         )) \
267                 $(eval _cbfs-bucket:=regular ) \
268                 $(if $(strip $($(2)-position)), \
269                         $(eval _cbfs-bucket:=fixed)) \
270                 $(if $(strip $($(2)-align)), \
271                         $(eval _cbfs-bucket:=aligned)) \
272                 $(if $(tmp-cbfs-method), \
273                         $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
274                         $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
275                         $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
276                 $(if $(tmp-cbfs-file), \
277                         $(eval cbfs-files-$(_cbfs-bucket) += $(subst $(spc),*,$(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$(strip $($(2)-position))|$($(2)-align)|$($(2)-options)))) \
278                 $(eval $(2)-name:=) \
279                 $(eval $(2)-type:=) \
280                 $(eval $(2)-compression:=) \
281                 $(eval $(2)-position:=) \
282                 $(eval $(2)-required:=) \
283                 $(eval $(2)-options:=) \
284                 $(eval $(2)-align:=)
286 #######################################################################
287 # a variety of flags for our build
288 CBFS_COMPRESS_FLAG:=none
289 ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
290 CBFS_COMPRESS_FLAG:=LZMA
291 endif
293 CBFS_PAYLOAD_COMPRESS_FLAG:=none
294 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
295 CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
296 endif
298 ifneq ($(CONFIG_LOCALVERSION),"")
299 export COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
300 endif
302 CPPFLAGS_common := -Isrc -Isrc/include -Isrc/commonlib/include -I$(obj)
303 CPPFLAGS_common += -Isrc/device/oprom/include
304 CPPFLAGS_common += -include $(src)/include/kconfig.h
306 CFLAGS_common += -pipe -g -nostdinc
307 CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
308 CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
309 CFLAGS_common += -Wstrict-aliasing -Wshadow
310 CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
311 CFLAGS_common += -ffunction-sections -fdata-sections
313 LDFLAGS_common := --gc-sections -nostdlib -nostartfiles -static --emit-relocs
315 ifeq ($(CONFIG_COMPILER_GCC),y)
316 # cf. commit f69a99db (coreboot: x86: enable gc-sections)
317 CFLAGS_common += -Wno-unused-but-set-variable
318 endif
320 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
321 CFLAGS_common += -Werror
322 endif
323 ifneq ($(GDB_DEBUG),)
324 CFLAGS_common += -Og
325 else
326 CFLAGS_common += -Os
327 endif
329 additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool \
330                    $(objutil)/ifdfake $(objutil)/options $(objutil)/amdfwtool \
331                    $(objutil)/cbootimage $(objutil)/bimgtool
333 #######################################################################
334 # generate build support files
335 $(obj)/build.h: .xcompile
336         @printf "    GEN        build.h\n"
337         rm -f $(obj)/build.h
338         util/genbuild_h/genbuild_h.sh > $(obj)/build.ht
339         mv $(obj)/build.ht $(obj)/build.h
341 build-dirs:
342         mkdir -p $(objcbfs) $(objgenerated)
344 #######################################################################
345 # Build the tools
346 CBFSTOOL:=$(objutil)/cbfstool/cbfstool
347 FMAPTOOL:=$(objutil)/cbfstool/fmaptool
348 RMODTOOL:=$(objutil)/cbfstool/rmodtool
350 $(obj)/cbfstool: $(CBFSTOOL)
351         cp $< $@
353 $(obj)/fmaptool: $(FMAPTOOL)
354         cp $< $@
356 $(obj)/rmodtool: $(RMODTOOL)
357         cp $< $@
359 _WINCHECK=$(shell uname -o 2> /dev/null)
360 STACK=
361 ifeq ($(_WINCHECK),Msys)
362         STACK=-Wl,--stack,16384000
363 endif
364 ifeq ($(_WINCHECK),Cygwin)
365         STACK=-Wl,--stack,16384000
366 endif
368 # this allows ccache to prepend itself
369 # (ccache handling happens first)
370 ROMCC_BIN= $(objutil)/romcc/romcc
371 ROMCC?=$(ROMCC_BIN)
372 $(ROMCC_BIN): $(top)/util/romcc/romcc.c
373         @printf "    HOSTCC     $(subst $(obj)/,,$(@)) (this may take a while)\n"
374         @# Note: Adding -O2 here might cause problems. For details see:
375         @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
376         $(HOSTCC) -g $(STACK) -Wall -o $@ $<
378 IFDTOOL:=$(objutil)/ifdtool/ifdtool
379 $(IFDTOOL): $(top)/util/ifdtool/ifdtool.c
380         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
381         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
383 IFDFAKE:=$(objutil)/ifdfake/ifdfake
384 $(IFDFAKE): $(top)/util/ifdfake/ifdfake.c
385         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
386         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
388 AMDFWTOOL:=$(objutil)/amdfwtool/amdfwtool
389 $(AMDFWTOOL): $(top)/util/amdfwtool/amdfwtool.c
390         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
391         $(HOSTCC) $(HOSTCFLAGS) -DCONFIG_ROM_SIZE=$(CONFIG_ROM_SIZE) -o $@ $<
393 CBOOTIMAGE:=$(objutil)/cbootimage/cbootimage
395 subdirs-y += util/nvidia
397 BIMGTOOL:=$(objutil)/bimgtool/bimgtool
398 $(BIMGTOOL): $(top)/util/bimgtool/bimgtool.c
399         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
400         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
402 #######################################################################
403 # needed objects that every mainboard uses
404 # Creation of these is architecture and mainboard independent
405 $(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb  $(objutil)/sconfig/sconfig
406         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
407         mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
408         $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
410 ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
411 romstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
412 verstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
414 $(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
415         @printf "    CC         $(subst $(obj)/,,$(@))\n"
416         $(CC_ramstage) -MMD $(CFLAGS_ramstage) $(CPPFLAGS_ramstage) $(ramstage-c-ccopts) -c -o $@ $<
418 $(obj)/%.romstage.o $(abspath $(obj))/%.romstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
419         @printf "    CC         $(subst $(obj)/,,$(@))\n"
420         $(CC_romstage) -MMD $(CFLAGS_romstage) $(CPPFLAGS_romstage) $(romstage-c-ccopts) -c -o $@ $<
422 $(obj)/%.bootblock.o $(abspath $(obj))/%.bootblock.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
423         @printf "    CC         $(subst $(obj)/,,$(@))\n"
424         $(CC_bootblock) -MMD $(CFLAGS_bootblock) $(CPPFLAGS_bootblock) $(bootblock-c-ccopts) -c -o $@ $<
426 $(objgenerated)/libverstage.a: $$(libverstage-objs)
427         rm -f $@
428         $(AR_libverstage) rcsT $@ $^
430 #######################################################################
431 # Clean up rules
432 clean-abuild:
433         rm -rf coreboot-builds
435 clean-for-update-target:
436         rm -f $(obj)/ramstage* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
437         rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
438         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
439         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
440         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
441         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
442         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
443         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
444         $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean
446 clean-target:
447         rm -f $(obj)/coreboot*
449 #######################################################################
450 # Development utilities
451 printcrt0s:
452         @echo crt0s=$(crt0s)
453         @echo ldscripts=$(ldscripts)
455 update:
456         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
458 lint lint-stable:
459         util/lint/lint $@
461 gitconfig:
462         [ -d .git ]
463         mkdir -p .git/hooks
464         for hook in commit-msg pre-commit ; do                       \
465                 if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o  \
466                 ! -x .git/hooks/$$hook ]; then                       \
467                         sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/$$hook > .git/hooks/$$hook;  \
468                         chmod +x .git/hooks/$$hook;                  \
469                 fi;                                                  \
470         done
471         # Now set up thehooks for 3rdparty/blobs
472         if [ -d .git/modules/3rdparty -a \
473         \( util/gitconfig/commit-msg -nt .git/modules/3rdparty/hooks/commit-msg -o \
474         ! -x .git/modules/3rdparty/hooks/commit-msg \) ]; then \
475                 sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/commit-msg > .git/modules/3rdparty/hooks/commit-msg; \
476                 chmod +x .git/modules/3rdparty/hooks/commit-msg; \
477         fi
478         [ -d 3rdparty/blobs ] && cd 3rdparty/blobs && git config remote.origin.push HEAD:refs/for/master
479         git config remote.origin.push HEAD:refs/for/master
480         (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)
482 help_toolchain help::
483         @echo  '*** Toolchain targets ***'
484         @echo  '  crossgcc        - Build coreboot cross-compilers for all platforms'
485         @echo  '  crosstools      - Build coreboot cross-compiler and GDB for all platforms'
486         @echo  '  crossgcc-clean  - Remove all built coreboot cross-compilers'
487         @echo  '  iasl            - Build coreboot IASL compiler (built by all cross targets)'
488         @echo  '  clang           - Build coreboot clang compiler'
489         @echo  '  crossgcc-ARCH   - Build cross-compiler for specific architecture'
490         @echo  '  crosstools-ARCH - Build cross-compiler with GDB for specific architecture'
491         @echo  '  ARCH can be "i386", "x64", "arm", "aarch64", "mips", or "riscv"'
492         @echo  '  Use "make [target] CPUS=#" to build toolchain using multiple cores'
493         @echo
495 # For the toolchain builds, use CPUS=x to use multiple processors to build
496 # use BUILDGCC_OPTIONS= to set any crossgcc command line options
497 # Example: BUILDGCC_OPTIONS='-t' will keep temporary files after build
498 crossgcc: clean-for-update
499         $(MAKE) -C util/crossgcc all_without_gdb SKIP_CLANG=1
501 .PHONY: crossgcc crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 \
502         crossgcc-mips crossgcc-riscv crossgcc-clean iasl clang tools \
503         crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 \
504         crosstools-mips crosstools-riscv
506 crossgcc-i386: clean-for-update
507         $(MAKE) -C util/crossgcc build-i386 SKIP_GDB=1
509 crossgcc-x64: clean-for-update
510         $(MAKE) -C util/crossgcc build-x64 SKIP_GDB=1
512 crossgcc-arm: clean-for-update
513         $(MAKE) -C util/crossgcc build-armv7a SKIP_GDB=1
515 crossgcc-aarch64: clean-for-update
516         $(MAKE) -C util/crossgcc build-aarch64 SKIP_GDB=1
518 crossgcc-mips: clean-for-update
519         $(MAKE) -C util/crossgcc build-mips SKIP_GDB=1
521 crossgcc-riscv: clean-for-update
522         $(MAKE) -C util/crossgcc build-riscv SKIP_GDB=1
524 crosstools: clean-for-update
525         $(MAKE) -C util/crossgcc all_with_gdb SKIP_CLANG=1
527 iasl: clean-for-update
528         $(MAKE) -C util/crossgcc build_iasl
530 clang: clean-for-update
531         $(MAKE) -C util/crossgcc build_clang
533 crosstools-i386: clean-for-update
534         $(MAKE) -C util/crossgcc build-i386
536 crosstools-x64: clean-for-update
537         $(MAKE) -C util/crossgcc build-x64
539 crosstools-arm: clean-for-update
540         $(MAKE) -C util/crossgcc build-armv7a
542 crosstools-aarch64: clean-for-update
543         $(MAKE) -C util/crossgcc build-aarch64
545 crosstools-mips: clean-for-update
546         $(MAKE) -C util/crossgcc build-mips
548 crosstools-riscv: clean-for-update
549         $(MAKE) -C util/crossgcc build-riscv
551 crossgcc-clean: clean-for-update
552         $(MAKE) -C util/crossgcc clean
554 tools: $(objutil)/kconfig/conf $(CBFSTOOL) $(FMAPTOOL) $(RMODTOOL) $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE) $(AMDFWTOOL)
556 ###########################################################################
557 # Common recipes for all stages
558 ###########################################################################
560 # loadaddr can determine the load address of a stage, which may be needed for
561 # platform-specific image headers (only works *after* the stage has been built)
562 loadaddr = $(shell $(OBJDUMP_$(1)) -p $(objcbfs)/$(1).debug | \
563              sed -ne '/LOAD/s/^.*vaddr 0x\([0-9a-fA-F]\{8\}\).*$$/0x\1/p')
565 # find-substr is required for stages like romstage_null and romstage_xip to
566 # eliminate the _* part of the string
567 find-substr = $(word 1,$(subst _, ,$(1)))
569 # find-class is used to identify the class from the name of the stage
570 # The input to this macro can be something like romstage.x or romstage.x.y
571 # find-class recursively strips off the suffixes to extract the exact class name
572 # e.g.: if romstage.x is provided to find-class, it will remove .x and return romstage
573 # if romstage.x.y is provided, it will first remove .y, call find-class with romstage.x
574 # and remove .x the next time and finally return romstage
575 find-class = $(if $(filter $(1),$(basename $(1))),$(if $(CC_$(1)), $(1), $(call find-substr,$(1))),$(call find-class,$(basename $(1))))
577 # Bootblocks are not CBFS stages. coreboot is currently expecting the bss to
578 # be cleared by the loader of the stage. For ARM SoCs that means one needs to
579 # include the bss section in the binary so the BootROM clears the bss on
580 # loading of the bootblock stage. Achieve this by marking the bss section
581 # loadable,allocatable, and data. Do the same for the .data section in case
582 # it's marked as NOBITS.
583 $(objcbfs)/bootblock.raw.bin: $(objcbfs)/bootblock.elf
584         @printf "    OBJCOPY    $(notdir $(@))\n"
585         $(OBJCOPY_bootblock) --set-section-flags .bss=load,alloc,data --set-section-flags .data=load,alloc,data $< $<.tmp
586         $(OBJCOPY_bootblock) -O binary $<.tmp $@
588 $(objcbfs)/%.bin: $(objcbfs)/%.raw.bin
589         cp $< $@
591 $(objcbfs)/%.elf: $(objcbfs)/%.debug
592         $(eval class := $(call find-class,$(@F)))
593         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
594         cp $< $@.tmp
595         $(NM_$(class)) -n $@.tmp | sort > $(basename $@).map
596         $(OBJCOPY_$(class)) --strip-debug $@.tmp
597         $(OBJCOPY_$(class)) --add-gnu-debuglink=$< $@.tmp
598         mv $@.tmp $@
600 ###########################################################################
601 # Build the final rom image
602 ###########################################################################
604 # extract_nth - Return a subsection of the $file string
606 # the input string looks like this:
607 # ./build/cbfs/fallback/romstage.elf|fallback/romstage|stage|none||64|--xip*-S*.car.data*-P*0x10000
609 # Sections:
610 # 1 - Path and name of file [FILENAME: Added to cbfs-files-y list variable]
611 # 2 - Name of file in cbfs  [$(FILENAME)-file]
612 # 3 - File type:            [$(FILENAME)-type]
613 #                bootblock, cbfs header, stage, payload, optionrom, bootsplash, raw, vsa,
614 #                mbi, microcode, fsp, mrc, cmos_default, cmos_layout, spd, mrc_cache,
615 #                mma, efi, deleted, null
616 # 4 - Compression type      [$(FILENAME)-compression]
617 #                      none, LZMA
618 # 5 - Base address          [$(FILANAME)-position]
619 # 6 - Alignment             [$(FILENAME)-align]
620 # 7 - cbfstool flags        [$(FILENAME)-options]
622 # Input:
623 #  $(1) = Section to extract
624 #  $(2) = Input string
626 # Steps:
627 # 1) replace all '|' characters with the sequence '- -' within the full string, prepended and appended with the character '-'
628 # 2) extract the specified section from the string - this gets us the section surrounded by '-' characters
629 # 3) remove the leading and trailing '-' characters
630 # 4) replace all '*' characters with spaces
631 extract_nth=$(subst *,$(spc),$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-))))
633 cbfs-add-cmd = \
634                printf "    CBFS       $(call extract_nth,2,$(file))\n"; \
635                $(CBFSTOOL) $@.tmp \
636                add$(if $(filter stage,$(call extract_nth,3,$(file))),-stage)$(if $(filter payload,$(call extract_nth,3,$(file))),-payload) \
637                -f $(call extract_nth,1,$(file)) \
638                -n $(call extract_nth,2,$(file)) \
639                $(if $(filter-out stage,$(call extract_nth,3,$(file))),-t $(call extract_nth,3,$(file))) \
640                $(if $(call extract_nth,4,$(file)),-c $(call extract_nth,4,$(file))) \
641                $(call extract_nth,7,$(file))
643 cbfs-files=$(cbfs-files-fixed) $(cbfs-files-aligned) $(cbfs-files-regular)
644 ifneq ($(CONFIG_UPDATE_IMAGE),y)
645 prebuild-files = \
646                $(foreach file,$(cbfs-files), \
647                $(if $(call extract_nth,6,$(file)),$(cbfs-add-cmd) -a $(call extract_nth,6,$(file)) &&, \
648                $(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
649 prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
651 ifeq ($(CONFIG_FMDFILE),)
652 # For a description of the flash layout described by these variables, check
653 # the $(DEFAULT_FLASHMAP) .fmd files.
654 ifeq ($(CONFIG_ARCH_X86),y)
655 DEFAULT_FLASHMAP:=$(top)/util/cbfstool/default-x86.fmd
656 # entire flash
657 FMAP_ROM_ADDR := $(call int-subtract, 0x100000000 $(CONFIG_ROM_SIZE))
658 FMAP_ROM_SIZE := $(CONFIG_ROM_SIZE)
659 # entire "BIOS" region (everything directly of concern to the host system)
660 # relative to ROM_BASE
661 FMAP_BIOS_BASE := $(call int-subtract, $(CONFIG_ROM_SIZE) $(CONFIG_CBFS_SIZE))
662 FMAP_BIOS_SIZE := $(shell echo $(CONFIG_CBFS_SIZE) | tr A-F a-f)
663 # position and size of flashmap, relative to BIOS_BASE
664 FMAP_FMAP_BASE := 0
665 FMAP_FMAP_SIZE := 0x100
666 # position and size of CBFS, relative to BIOS_BASE
667 FMAP_CBFS_BASE := $(FMAP_FMAP_SIZE)
668 FMAP_CBFS_SIZE := $(call int-subtract, $(FMAP_BIOS_SIZE) $(FMAP_FMAP_SIZE))
669 else
670 DEFAULT_FLASHMAP:=$(top)/util/cbfstool/default.fmd
671 # entire flash
672 FMAP_ROM_ADDR := 0
673 FMAP_ROM_SIZE := $(CONFIG_ROM_SIZE)
674 # entire "BIOS" region (everything directly of concern to the host system)
675 # relative to ROM_BASE
676 FMAP_BIOS_BASE := 0
677 FMAP_BIOS_SIZE := $(CONFIG_CBFS_SIZE)
678 # position and size of flashmap, relative to BIOS_BASE
679 FMAP_FMAP_BASE := 0x20000
680 FMAP_FMAP_SIZE := 0x100
681 # position and size of CBFS, relative to BIOS_BASE
682 FMAP_CBFS_BASE := $(call int-add,$(FMAP_FMAP_BASE) $(FMAP_FMAP_SIZE))
683 FMAP_CBFS_SIZE := $(call int-subtract,$(FMAP_BIOS_SIZE) $(FMAP_CBFS_BASE))
684 endif
686 $(obj)/fmap.fmd: $(top)/Makefile.inc $(DEFAULT_FLASHMAP) $(obj)/config.h
687         sed -e "s,##ROM_BASE##,$(FMAP_ROM_ADDR)," \
688             -e "s,##ROM_SIZE##,$(FMAP_ROM_SIZE)," \
689             -e "s,##BIOS_BASE##,$(FMAP_BIOS_BASE)," \
690             -e "s,##BIOS_SIZE##,$(FMAP_BIOS_SIZE)," \
691             -e "s,##FMAP_BASE##,$(FMAP_FMAP_BASE)," \
692             -e "s,##FMAP_SIZE##,$(FMAP_FMAP_SIZE)," \
693             -e "s,##CBFS_BASE##,$(FMAP_CBFS_BASE)," \
694             -e "s,##CBFS_SIZE##,$(FMAP_CBFS_SIZE)," \
695                 $(DEFAULT_FLASHMAP) > $@.tmp
696         mv $@.tmp $@
697 else
698 $(obj)/fmap.fmd: $(CONFIG_FMDFILE) $(obj)/config.h
699         cp $< $@
700 endif
702 # generated at the same time as fmap.fmap
703 $(obj)/fmap.h: $(obj)/fmap.fmap
705 $(obj)/fmap.fmap: $(obj)/fmap.fmd $(FMAPTOOL)
706         echo "    FMAP       $(FMAPTOOL) -h $(obj)/fmap.h $< $@"
707         $(FMAPTOOL) -h $(obj)/fmap.h $< $@
709 $(obj)/coreboot.pre: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(CBFSTOOL) $$(cpu_ucode_cbfs_file) $(obj)/fmap.fmap
710         $(CBFSTOOL) $@.tmp create -M $(obj)/fmap.fmap
711 ifeq ($(CONFIG_ARCH_X86),y)
712         $(CBFSTOOL) $@.tmp add \
713                 -f $(objcbfs)/bootblock.bin \
714                 -n bootblock \
715                 -t bootblock \
716                 -b -$(call file-size,$(objcbfs)/bootblock.bin)
717 else
718         # don't add bootblock to cbfs yet, it's just a waste of space
719         true $(CBFSTOOL) $@.tmp add \
720                 -f $(objcbfs)/bootblock.bin \
721                 -n bootblock \
722                 -t bootblock \
723                 -b 0
724         $(CBFSTOOL) $@.tmp write -u \
725                 -r BOOTBLOCK \
726                 -f $(objcbfs)/bootblock.bin
727         # make space for the CBFS master header pointer. "ptr_" is just
728         # arbitrary 4 bytes that will be overwritten by add-master-header.
729         printf "ptr_" > $@.tmp.2
730         $(CBFSTOOL) $@.tmp add \
731                 -f $@.tmp.2 \
732                 -n "header pointer" \
733                 -t "cbfs header" \
734                 -b -4
735         rm -f $@.tmp.2
736 endif
737         $(CBFSTOOL) $@.tmp add-master-header
738         $(prebuild-files) true
739         mv $@.tmp $@
740 else
741 prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
742 # Add all cbfs files to image of the form: CONFIG_CBFS_PREFIX/<filename>
743 prebuild-files = \
744         $(foreach file,$(cbfs-files), \
745         $(CBFSTOOL) $@.tmp remove -n $(call extract_nth,2,$(file)) 2>/dev/null ; \
746                $(if $(call extract_nth,6,$(file)),$(cbfs-add-cmd) -a $(call extract_nth,6,$(file)) &&,\
747                $(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
749 .PHONY: $(obj)/coreboot.pre
750 $(obj)/coreboot.pre: $$(prebuilt-files) $(CBFSTOOL)
751         mv $(obj)/coreboot.rom $@.tmp
752         $(prebuild-files) true
753         mv $@.tmp $@
754 endif
756 ifeq ($(CONFIG_PAYLOAD_LINUX),y)
757 ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_COMMAND_LINE))),)
758       ADDITIONAL_PAYLOAD_CONFIG+=-C $(CONFIG_LINUX_COMMAND_LINE)
759 endif
760 ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_INITRD))),)
761       ADDITIONAL_PAYLOAD_CONFIG+=-I $(CONFIG_LINUX_INITRD)
762 endif
763 endif
765 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
766 REFCODE_BLOB=$(obj)/refcode.rmod
767 $(REFCODE_BLOB): $(RMODTOOL)
768         $(RMODTOOL) -i $(CONFIG_REFCODE_BLOB_FILE) -o $@
769 endif
771 $(obj)/coreboot.rom: $(obj)/coreboot.pre $(objcbfs)/ramstage.elf $(CBFSTOOL) $$(INTERMEDIATE)
772         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
773 # The full ROM may be larger than the CBFS part, so create an empty
774 # file (filled with \377 = 0xff) and copy the CBFS image over it.
775         dd if=/dev/zero bs=$(call _toint,$(CONFIG_ROM_SIZE)) count=1 2> /dev/null | tr '\000' '\377' > $@.tmp
776         dd if=$(obj)/coreboot.pre of=$@.tmp bs=8192 conv=notrunc 2> /dev/null
777 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),)
778 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
779         @printf "    SeaBIOS    Wait up to $(CONFIG_SEABIOS_PS2_TIMEOUT) ms for PS/2 keyboard controller initialization\n"
780         $(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_PS2_TIMEOUT) -n etc/ps2-keyboard-spinup
781 endif
782 endif
783 ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
784 ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE),y)
785         @printf "    UPDATE-FIT \n"
786         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
787 endif
788 endif
789         mv $@.tmp $@
790         @printf "    CBFSPRINT  $(subst $(obj)/,,$(@))\n\n"
791         $(CBFSTOOL) $@ print
792 ifeq ($(CONFIG_IASL_WARNINGS_ARE_ERRORS),)
793         @printf "\n***** WARNING: IASL warnings as errors is disabled!  *****\n"
794         @printf "*****          Please fix the ASL for this platform. *****\n\n"
795 endif
797 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/romstage
798 $(CONFIG_CBFS_PREFIX)/romstage-file := $(objcbfs)/romstage.elf
799 $(CONFIG_CBFS_PREFIX)/romstage-type := stage
800 $(CONFIG_CBFS_PREFIX)/romstage-compression := none
801 ifeq ($(CONFIG_ARCH_ROMSTAGE_ARM),y)
802 $(CONFIG_CBFS_PREFIX)/romstage-options := -b 0
803 endif
804 ifeq ($(CONFIG_ARCH_ROMSTAGE_X86_32)$(CONFIG_ARCH_ROMSTAGE_X86_64),y)
805 # Use a 64 byte alignment to provide a minimum alignment
806 # requirement for the overall romstage. While the first object within
807 # romstage could have a 4 byte minimum alignment that doesn't mean the linker
808 # won't decide the entire section should be aligned to a larger value. In the
809 # future cbfstool should add XIP files proper and honor the alignment
810 # requirements of the program segment.
812 # Make sure that segment for .car.data is ignored while adding romstage.
813 $(CONFIG_CBFS_PREFIX)/romstage-align := 64
814 $(CONFIG_CBFS_PREFIX)/romstage-options := --xip -S .car.data -P $(CONFIG_XIP_ROM_SIZE)
815 endif
817 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/ramstage
818 $(CONFIG_CBFS_PREFIX)/ramstage-file := $(objcbfs)/ramstage.elf
819 $(CONFIG_CBFS_PREFIX)/ramstage-type := stage
820 $(CONFIG_CBFS_PREFIX)/ramstage-compression := $(CBFS_COMPRESS_FLAG)
822 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/payload
823 $(CONFIG_CBFS_PREFIX)/payload-file := $(CONFIG_PAYLOAD_FILE)
824 $(CONFIG_CBFS_PREFIX)/payload-type := payload
825 $(CONFIG_CBFS_PREFIX)/payload-compression := $(CBFS_PAYLOAD_COMPRESS_FLAG)
826 $(CONFIG_CBFS_PREFIX)/payload-options := $(ADDITIONAL_PAYLOAD_CONFIG)
828 cbfs-files-$(CONFIG_HAVE_REFCODE_BLOB) += $(CONFIG_CBFS_PREFIX)/refcode
829 $(CONFIG_CBFS_PREFIX)/refcode-file := $(REFCODE_BLOB)
830 $(CONFIG_CBFS_PREFIX)/refcode-type := stage
831 $(CONFIG_CBFS_PREFIX)/refcode-compression := $(CBFS_COMPRESS_FLAG)
833 cbfs-files-$(CONFIG_SEABIOS_VGA_COREBOOT) += vgaroms/seavgabios.bin
834 vgaroms/seavgabios.bin-file := $(CONFIG_PAYLOAD_VGABIOS_FILE)
835 vgaroms/seavgabios.bin-type := raw
837 cbfs-files-$(CONFIG_PXE_ROM) += pci$(CONFIG_PXE_ROM_ID).rom
838 pci$(CONFIG_PXE_ROM_ID).rom-file := $(CONFIG_PXE_ROM_FILE)
839 pci$(CONFIG_PXE_ROM_ID).rom-type := raw
841 cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += config
842 config-file := $(DOTCONFIG):defconfig
843 config-type := raw
845 cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += revision
846 revision-file := $(obj)/build.h
847 revision-type := raw
849 cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash.jpg
850 bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
851 bootsplash.jpg-type := bootsplash
853 cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
854 board_id-file := $(obj)/board_id
855 board_id-type := raw
857 $(obj)/board_id:
858         printf $(CONFIG_BOARD_ID_STRING) > $@
860 junit.xml:
861         echo "Building $(UTIL)"
862         echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp
863         echo "<testcase classname='$(UTIL)' name='$(UTIL)'>" >> $@.tmp
864         -$(MAKE) -j $(CPUS) -C "util/$(UTIL)" clean distclean > $@.tmp.2 2>&1
865         $(MAKE) -j $(CPUS) -C "util/$(UTIL)" >> $@.tmp.2 2>&1 && type="system-out" || type="failure"; \
866         cat $@.tmp.2; \
867         if [ "$$type" = "failure" ]; then \
868                 echo "<failure type='buildFailed'>" >> $@.tmp; \
869                 echo "Building $(UTIL) Failed"; \
870         else \
871                 echo "<$$type>" >> $@.tmp; \
872                 echo "Building $(UTIL) Succeeded"; \
873         fi; \
874         echo '<![CDATA[' >> $@.tmp; \
875         cat $@.tmp.2 >> $@.tmp; \
876         echo "]]></$$type>" >>$@.tmp
877         rm -f $@.tmp.2
878         echo "</testcase>" >> $@.tmp
879         echo "</testsuite>" >> $@.tmp
880         mv $@.tmp "util/$(UTIL)/$@"
881         echo
883 TOOLLIST= \
884         cbmem \
885         ectool \
886         inteltool \
887         intelvbttool \
888         nvramtool \
889         superiotool \
890         viatool
891 JENKINS_PAYLOAD?=none
892 CPUS?=4
893 what-jenkins-does:
894         util/lint/lint lint-stable --junit
895         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c $(CPUS) -z -p $(JENKINS_PAYLOAD) -x -X $(top)/abuild-chromeos.xml
896         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c $(CPUS) -z -p $(JENKINS_PAYLOAD)
897         (cd payloads/libpayload; unset COREBOOT_BUILD_DIR; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_LP_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
898         $(foreach tool, $(TOOLLIST), $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) UTIL="$(tool)" MFLAGS= MAKEFLAGS= junit.xml; )