intel/quark: Fix assert check
[coreboot.git] / Makefile.inc
blobff77747a5b73e5aa13b36a2b4452a880a96c9e50
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 [ -e "$(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))
22 CONFIG_DEVICETREE:=$(call strip_quotes, $(CONFIG_DEVICETREE))
24 #######################################################################
25 # misleadingly named, this is the coreboot version
26 ifeq ($(KERNELVERSION),)
27 ifeq ($(BUILD_TIMELESS),1)
28 export KERNELVERSION := TIMELESS
29 else
30 export KERNELVERSION := $(strip $(if $(GIT),\
31         $(shell git describe --dirty --always || git describe),\
32         $(if $(wildcard $(top)/.coreboot-version),\
33                 $(shell cat $(top)/.coreboot-version),\
34                 coreboot-unknown$(KERNELREVISION))))
35 endif
36 endif
38 #######################################################################
39 # Basic component discovery
40 MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
41 export MAINBOARDDIR
43 ## Final build results, which CBFSTOOL uses to create the final
44 ## rom image file, are placed under $(objcbfs).
45 ## These typically have suffixes .debug .elf .bin and .map
46 export objcbfs := $(obj)/cbfs/$(CONFIG_CBFS_PREFIX)
48 ## Based on the active configuration, Makefile conditionally collects
49 ## the required assembly includes and saves them in a file.
50 ## Such files that do not have a clear one-to-one relation to a source
51 ## file under src/ are placed and built under $(objgenerated)
52 export objgenerated := $(obj)/generated
54 #######################################################################
55 # root rule to resolve if in build mode (ie. configuration exists)
56 real-target: $(obj)/config.h coreboot files_added
57 coreboot: build-dirs $(obj)/coreboot.rom $(obj)/cbfstool $(obj)/rmodtool $(obj)/ifwitool
59 # This target can be used in site local to run scripts or additional
60 # targets after the build completes by creating a Makefile.inc in the
61 # site-local directory with a target named 'build_complete::'
62 build_complete:: coreboot
63         printf "\nBuilt %s (%s)\n" $(MAINBOARD_DIR) \
64                 $(CONFIG_MAINBOARD_PART_NUMBER)
66 # This target can be used to run rules after all files were added to CBFS,
67 # for example to process FMAP regions or the entire image.
68 files_added:: build_complete
70 #######################################################################
71 # our phony targets
72 PHONY+= clean-abuild coreboot lint lint-stable build-dirs build_complete
74 #######################################################################
75 # root source directories of coreboot
76 subdirs-y := src/lib src/commonlib/ src/console src/device src/acpi
77 subdirs-y += src/ec/acpi $(wildcard src/ec/*/*) $(wildcard src/southbridge/*/*)
78 subdirs-y += $(wildcard src/soc/*/*) $(wildcard src/northbridge/*/*)
79 subdirs-y += src/superio
80 subdirs-y += $(wildcard src/drivers/*) $(wildcard src/drivers/*/*)
81 subdirs-y += src/cpu src/vendorcode
82 subdirs-y += util/cbfstool util/sconfig util/nvramtool util/broadcom
83 subdirs-y += util/futility util/marvell
84 subdirs-y += $(wildcard src/arch/*)
85 subdirs-y += src/mainboard/$(MAINBOARDDIR)
86 subdirs-y += src/vboot
87 subdirs-y += payloads payloads/external
89 subdirs-y += site-local
90 subdirs-y += util/checklist
92 #######################################################################
93 # Add source classes and their build options
94 classes-y := ramstage romstage bootblock postcar smm smmstub cpu_microcode libverstage verstage
96 # Add dynamic classes for rmodules
97 $(foreach supported_arch,$(ARCH_SUPPORTED), \
98             $(eval $(call define_class,rmodules_$(supported_arch),$(supported_arch))))
99 # Provide a macro to determine environment for free standing rmodules.
100 $(foreach supported_arch,$(ARCH_SUPPORTED), \
101         $(eval rmodules_$(supported_arch)-generic-ccopts += -D__RMODULE__))
103 #######################################################################
104 # Helper functions for math, strings, and various file placement matters.
105 # macros work on all formats understood by printf(1)
106 # values are space separated if using more than one value
108 # int-add:       adds an arbitrary length list of integers
109 # int-subtract:  subtracts the the second of two integers from the first
110 # int-multiply:  multiplies an arbitrary length list of integers
111 # int-divide:    divides the first integer by the second
112 # int-remainder: arithmetic remainder of the first number divided by the second
113 # int-lt:        1 if the first value is less than the second.  0 otherwise
114 # int-gt:        1 if the first values is greater than the second.  0 otherwise
115 # int-eq:        1 if the two values are equal.  0 otherwise
116 # int-align:     align $1 to $2 units
117 # file-size:     returns the filesize of the given file
118 # tolower:       returns the value in all lowercase
119 # toupper:       returns the value in all uppercase
120 # ws_to_under:   returns the value with any whitespace changed to underscores
121 _toint=$(shell printf "%d" $1)
122 _int-add2=$(shell expr $(call _toint,$1) + $(call _toint,$2))
123 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)))
124 int-subtract=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) - $(call _toint,$(word 2,$1))))
125 _int-multiply2=$(shell expr $(call _toint,$1) \* $(call _toint,$2))
126 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)))
127 int-divide=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) / $(call _toint,$(word 2,$1))))
128 int-remainder=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) % $(call _toint,$(word 2,$1))))
129 int-lt=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) \< $(call _toint,$(word 2,$1))))
130 int-gt=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) \> $(call _toint,$(word 2,$1))))
131 int-eq=$(if $(filter 1,$(words $1)),$(strip $1),$(shell expr $(call _toint,$(word 1,$1)) = $(call _toint,$(word 2,$1))))
132 int-align=$(shell A=$(call _toint,$1) B=$(call _toint,$2); expr $$A + \( \( $$B - \( $$A % $$B \) \) % $$B \) )
133 file-size=$(strip $(shell cat $1 | wc -c))
134 tolower=$(shell echo '$1' | tr '[:upper:]' '[:lower:]')
135 toupper=$(shell echo '$1' | tr '[:lower:]' '[:upper:]')
136 ws_to_under=$(shell echo '$1' | tr ' \t' '_')
138 #######################################################################
139 # Helper functions for ramstage postprocess
140 spc :=
141 spc +=
142 $(spc) :=
143 $(spc) +=
144 comma := ,
146 # files-in-dir-recursive,dir,files
147 files-in-dir-recursive=$(filter $(1)%,$(2))
149 # parent-dir,dir/
150 parent-dir=$(dir $(if $(patsubst /%,,$(1)),,/)$(subst $( ),/,$(strip $(subst /, ,$(1)))))
152 # filters out exactly the directory specified
153 # filter-out-dir,dir_to_keep,dirs
154 filter-out-dir=$(filter-out $(1),$(2))
156 # filters out dir_to_keep and all its parents
157 # filter-out-dirs,dir_to_keep,dirs
158 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)))
160 # dir-wildcards,dirs
161 dir-wildcards=$(addsuffix %,$(1))
163 # files-in-dir,dir,files
164 files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(sort $(dir $(2))))),$(call files-in-dir-recursive,$(1),$(2)))
166 #######################################################################
167 # reduce command line length by linking the objects of each
168 # directory into an intermediate file
169 ramstage-postprocess=$$(eval DEPENDENCIES+=$$(addsuffix .d,$$(basename $(1)))) \
170         $(foreach d,$(sort $(dir $(filter-out %.ld,$(1)))), \
171         $(eval $(d)ramstage.a: $(call files-in-dir,$(d),$(filter-out %.ld,$(1))); rm -f $$@ && $(AR_ramstage) rcsT $$@ $$^ ) \
172         $(eval ramstage-objs:=$(d)ramstage.a $(filter-out $(filter-out %.ld, $(call files-in-dir,$(d),$(1))),$(ramstage-objs))))
174 bootblock-generic-ccopts += -D__PRE_RAM__ -D__BOOTBLOCK__
175 romstage-generic-ccopts += -D__PRE_RAM__ -D__ROMSTAGE__
176 ramstage-generic-ccopts += -D__RAMSTAGE__
177 ifeq ($(CONFIG_TRACE),y)
178 ramstage-c-ccopts += -finstrument-functions
179 endif
180 ifeq ($(CONFIG_COVERAGE),y)
181 ramstage-c-ccopts += -fprofile-arcs -ftest-coverage
182 endif
184 ifneq ($(UPDATED_SUBMODULES),1)
185 # try to fetch non-optional submodules if the source is under git
186 forgetthis:=$(if $(GIT),$(shell git submodule update --init))
187 ifeq ($(CONFIG_USE_BLOBS),y)
188 # this is necessary because 3rdparty/blobs is update=none, and so is ignored
189 # unless explicitly requested and enabled through --checkout
190 forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty/blobs))
191 endif
192 export UPDATED_SUBMODULES:=1
193 endif
195 ramstage-c-deps:=$$(OPTION_TABLE_H)
196 romstage-c-deps:=$$(OPTION_TABLE_H)
197 libverstage-c-deps:=$$(OPTION_TABLE_H)
198 verstage-c-deps:=$$(OPTION_TABLE_H)
199 bootblock-c-deps:=$$(OPTION_TABLE_H)
201 # Add handler to copy linker scripts
202 define generic-objs_ld_template_gen
203 de$(EMPTY)fine $(1)-objs_ld_template
204 $$(call src-to-obj,$1,$$(1).ld): $$(1).ld $(obj)/config.h
205         @printf "    CP         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
206         $$(CC_$(1)) -MMD $$(CPPFLAGS_$(1)) $$($(1)-ld-ccopts) $(PREPROCESS_ONLY) -include $(obj)/config.h -MT $$$$@ -o $$$$@ $$$$<
207 en$(EMPTY)def
208 endef
210 # Add handler to deal with archives
211 define generic-objs_a_template_gen
212 de$(EMPTY)fine $(1)-objs_a_template
213 $$(call src-to-obj,$1,$$(1).a): $$(1).a
214         @printf "    AR         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
215         $$$$(AR_$(1)) rcsT $$$$@.tmp $$$$<
216         mv $$$$@.tmp $$$$@
217 en$(EMPTY)def
218 endef
220 # Add handler to add no rules for manual files
221 define generic-objs_manual_template_gen
222 # do nothing
223 endef
225 #######################################################################
226 # Add handler to compile ACPI's ASL
227 # arg1: base file name
228 # arg2: y or n for including in cbfs. defaults to y
229 define asl_template
230 $(CONFIG_CBFS_PREFIX)/$(1).aml-file = $(obj)/$(1).aml
231 $(CONFIG_CBFS_PREFIX)/$(1).aml-type = raw
232 $(CONFIG_CBFS_PREFIX)/$(1).aml-compression = none
233 cbfs-files-$(if $(2),$(2),y) += $(CONFIG_CBFS_PREFIX)/$(1).aml
234 -include $(obj)/$(1).d
235 $(obj)/$(1).aml: $(src)/mainboard/$(MAINBOARDDIR)/$(1).asl $(obj)/config.h
236         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
237         $(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 $$@
238 ifeq ($(CONFIG_IASL_WARNINGS_ARE_ERRORS),y)
239         cd $$(dir $$@); $(IASL) -we -p $$(notdir $$@) $$(notdir $$@)
240 else
241         cd $$(dir $$@); $(IASL) -p $$(notdir $$@) $$(notdir $$@)
242 endif
243         if [ -z "$$$$($(IASL) -d $$@ 2>&1 | grep 'ACPI Warning')" ]; then echo "    IASL       $$@ disassembled correctly."; true; else echo "Error: Could not correctly disassemble $$@"; $(IASL) -d $$@; false; fi
244 endef
246 #######################################################################
247 # Parse plaintext cmos defaults into binary format
248 # arg1: source file
249 # arg2: binary file name
250 cbfs-files-processor-nvramtool= \
251         $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
252                 printf "    CREATE     $(2) (from $(1))\n"; \
253                 $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && \
254                 mv $(2).tmp $(2))
256 #######################################################################
257 # Link VSA binary to ELF-ish stage
258 # arg1: source file
259 # arg2: binary file name
260 cbfs-files-processor-vsa= \
261         $(eval $(2): $(1) ; \
262                 printf "    CREATE     $(2) (from $(1))\n"; \
263                 $(OBJCOPY_ramstage) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && \
264                 $(LD_ramstage) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2))
266 #######################################################################
267 # Reduce a .config file to its minimal representation
268 # arg1: input
269 # arg2: output
270 cbfs-files-processor-defconfig= \
271         $(eval $(2): $(1) $(obj)/build.h; \
272                 printf "    CREATE     $(2) (from $(1))\n"; \
273                 printf "\# This image was built using coreboot " > $(2).tmp && \
274                 grep "\<COREBOOT_VERSION\>" $(obj)/build.h |cut -d\" -f2 >> $(2).tmp && \
275                 $(MAKE) DOTCONFIG=$(1) DEFCONFIG=$(2).tmp2 savedefconfig && \
276                 cat $(2).tmp2 >> $(2).tmp && \
277                 rm -f $(2).tmp2 && \
278                 \mv -f $(2).tmp $(2))
280 #######################################################################
281 # Add handler for arbitrary files in CBFS
282 $(call add-special-class,cbfs-files)
283 cbfs-files-handler= \
284                 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
285                 $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
286                 $(eval tmp-cbfs-file:= ) \
287                 $(if $($(2)-file), \
288                         $(if $(wildcard $(1)$($(2)-file)), \
289                                 $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
290                                 $(eval tmp-cbfs-file:= $($(2)-file)))) \
291                 $(if $(strip $($(2)-required)), \
292                         $(if $(wildcard $(tmp-cbfs-file)),, \
293                                 $(info This build configuration requires $($(2)-required)) \
294                                 $(eval FAILBUILD:=1) \
295                         )) \
296                 $(if $(strip $($(2)-align)), \
297                         $(if $(strip $($(2)-position)), \
298                                 $(info ERROR: It is not allowed to specify both alignment and position for $($(2)-file)) \
299                                 $(eval FAILBUILD:=1) \
300                         )) \
301                 $(if $(tmp-cbfs-method), \
302                         $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
303                         $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
304                         $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
305                 $(if $(tmp-cbfs-file), \
306                         $(eval cbfs-files += $(subst $(spc),*,$(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$(strip $($(2)-position))|$($(2)-align)|$($(2)-options)))) \
307                 $(eval $(2)-name:=) \
308                 $(eval $(2)-type:=) \
309                 $(eval $(2)-compression:=) \
310                 $(eval $(2)-position:=) \
311                 $(eval $(2)-required:=) \
312                 $(eval $(2)-options:=) \
313                 $(eval $(2)-align:=)
315 #######################################################################
316 # a variety of flags for our build
317 CBFS_COMPRESS_FLAG:=none
318 ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
319 CBFS_COMPRESS_FLAG:=LZMA
320 endif
322 CBFS_PAYLOAD_COMPRESS_FLAG:=none
323 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
324 CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
325 endif
327 CBFS_PRERAM_COMPRESS_FLAG:=none
328 ifeq ($(CONFIG_COMPRESS_PRERAM_STAGES),y)
329 CBFS_PRERAM_COMPRESS_FLAG:=LZ4
330 endif
332 ifneq ($(CONFIG_LOCALVERSION),"")
333 export COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
334 endif
336 CPPFLAGS_common := -Isrc -Isrc/include -Isrc/commonlib/include -I$(obj)
337 CPPFLAGS_common += -Isrc/device/oprom/include
338 VBOOT_SOURCE ?= 3rdparty/vboot
339 CPPFLAGS_common += -I$(VBOOT_SOURCE)/firmware/include
340 CPPFLAGS_common += -include $(src)/include/kconfig.h
341 CPPFLAGS_common += -I3rdparty
343 CFLAGS_common += -pipe -g -nostdinc
344 CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
345 CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
346 CFLAGS_common += -Wstrict-aliasing -Wshadow -Wdate-time
347 CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
348 CFLAGS_common += -ffunction-sections -fdata-sections
350 LDFLAGS_common := --gc-sections -nostdlib -nostartfiles -static --emit-relocs
352 ifeq ($(CONFIG_COMPILER_GCC),y)
353 # cf. commit f69a99db (coreboot: x86: enable gc-sections)
354 CFLAGS_common += -Wno-unused-but-set-variable
355 endif
357 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
358 CFLAGS_common += -Werror
359 endif
360 ifneq ($(GDB_DEBUG),)
361 CFLAGS_common += -Og
362 else
363 CFLAGS_common += -Os
364 endif
366 additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool \
367                    $(objutil)/ifdfake $(objutil)/options $(objutil)/amdfwtool \
368                    $(objutil)/cbootimage $(objutil)/bimgtool
370 #######################################################################
371 # generate build support files
372 $(obj)/build.h: .xcompile
373         @printf "    GEN        build.h\n"
374         rm -f $(obj)/build.h
375         util/genbuild_h/genbuild_h.sh > $(obj)/build.ht
376         mv $(obj)/build.ht $(obj)/build.h
378 build-dirs:
379         mkdir -p $(objcbfs) $(objgenerated)
381 #######################################################################
382 # Build the tools
383 CBFSTOOL:=$(objutil)/cbfstool/cbfstool
384 FMAPTOOL:=$(objutil)/cbfstool/fmaptool
385 RMODTOOL:=$(objutil)/cbfstool/rmodtool
386 IFWITOOL:=$(objutil)/cbfstool/ifwitool
388 $(obj)/cbfstool: $(CBFSTOOL)
389         cp $< $@
391 $(obj)/fmaptool: $(FMAPTOOL)
392         cp $< $@
394 $(obj)/rmodtool: $(RMODTOOL)
395         cp $< $@
397 $(obj)/ifwitool: $(IFWITOOL)
398         cp $< $@
400 _WINCHECK=$(shell uname -o 2> /dev/null)
401 STACK=
402 ifeq ($(_WINCHECK),Msys)
403         STACK=-Wl,--stack,16384000
404 endif
405 ifeq ($(_WINCHECK),Cygwin)
406         STACK=-Wl,--stack,16384000
407 endif
409 # this allows ccache to prepend itself
410 # (ccache handling happens first)
411 ROMCC_BIN= $(objutil)/romcc/romcc
412 ROMCC?=$(ROMCC_BIN)
413 $(ROMCC_BIN): $(top)/util/romcc/romcc.c
414         @printf "    HOSTCC     $(subst $(obj)/,,$(@)) (this may take a while)\n"
415         @# Note: Adding -O2 here might cause problems. For details see:
416         @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
417         $(HOSTCC) -g $(STACK) -Wall -o $@ $<
419 IFDTOOL:=$(objutil)/ifdtool/ifdtool
420 $(IFDTOOL): $(top)/util/ifdtool/ifdtool.c
421         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
422         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
424 IFDFAKE:=$(objutil)/ifdfake/ifdfake
425 $(IFDFAKE): $(top)/util/ifdfake/ifdfake.c
426         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
427         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
429 AMDFWTOOL:=$(objutil)/amdfwtool/amdfwtool
430 $(AMDFWTOOL): $(top)/util/amdfwtool/amdfwtool.c
431         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
432         $(HOSTCC) $(HOSTCFLAGS) -DCONFIG_ROM_SIZE=$(CONFIG_ROM_SIZE) -o $@ $<
434 CBOOTIMAGE:=$(objutil)/cbootimage/cbootimage
436 FUTILITY?=$(objutil)/futility/futility
438 subdirs-y += util/nvidia
440 BIMGTOOL:=$(objutil)/bimgtool/bimgtool
441 $(BIMGTOOL): $(top)/util/bimgtool/bimgtool.c
442         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
443         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
445 $(obj)/config.h: $(objutil)/kconfig/conf
447 #######################################################################
448 # needed objects that every mainboard uses
449 # Creation of these is architecture and mainboard independent
450 DEVICETREE_FILE := $(src)/mainboard/$(MAINBOARDDIR)/$(CONFIG_DEVICETREE)
451 DEVICETREE_STATIC_C := $(obj)/mainboard/$(MAINBOARDDIR)/static.c
453 $(DEVICETREE_STATIC_C): $(DEVICETREE_FILE) $(objutil)/sconfig/sconfig
454         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
455         mkdir -p $(dir $(DEVICETREE_STATIC_C))
456         $(objutil)/sconfig/sconfig $(DEVICETREE_FILE) $(DEVICETREE_STATIC_C)
458 ramstage-y+=$(DEVICETREE_STATIC_C)
459 romstage-y+=$(DEVICETREE_STATIC_C)
460 verstage-y+=$(DEVICETREE_STATIC_C)
461 bootblock-y+=$(DEVICETREE_STATIC_C)
463 $(objgenerated)/libverstage.a: $$(libverstage-objs)
464         rm -f $@
465         $(AR_libverstage) rcsT $@ $^
467 #######################################################################
468 # Clean up rules
469 clean-abuild:
470         rm -rf coreboot-builds
472 clean-for-update-target: clean-payloads
473         rm -f $(obj)/ramstage?* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
474         rm -rf $(obj)/bootblock?* $(obj)/romstage?* $(obj)/location.*
475         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
476         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
477         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
478         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
479         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/dsdt.*
480         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
482 clean-target:
483         rm -f $(obj)/coreboot*
485 #######################################################################
486 # Development utilities
487 printcrt0s:
488         @echo crt0s=$(crt0s)
489         @echo ldscripts=$(ldscripts)
491 update:
492         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
494 lint lint-stable:
495         util/lint/lint $@
497 gitconfig:
498         [ -d .git ]
499         mkdir -p .git/hooks
500         for hook in commit-msg pre-commit ; do                       \
501                 if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o  \
502                 ! -x .git/hooks/$$hook ]; then                       \
503                         sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/$$hook > .git/hooks/$$hook;  \
504                         chmod +x .git/hooks/$$hook;                  \
505                 fi;                                                  \
506         done
507         # Now set up thehooks for 3rdparty/blobs
508         if [ -d .git/modules/3rdparty/hooks -a \
509         \( util/gitconfig/commit-msg -nt .git/modules/3rdparty/hooks/commit-msg -o \
510         ! -x .git/modules/3rdparty/hooks/commit-msg \) ]; then \
511                 sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/commit-msg > .git/modules/3rdparty/hooks/commit-msg; \
512                 chmod +x .git/modules/3rdparty/hooks/commit-msg; \
513         fi
514         [ -d 3rdparty/blobs ] && cd 3rdparty/blobs && git config remote.origin.push HEAD:refs/for/master
515         git config remote.origin.push HEAD:refs/for/master
516         (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)
518 include util/crossgcc/Makefile.inc
520 .PHONY: tools
521 tools: $(objutil)/kconfig/conf $(CBFSTOOL) $(FMAPTOOL) $(RMODTOOL) $(IFWITOOL) $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE) $(AMDFWTOOL) $(FUTILITY)
523 ###########################################################################
524 # Common recipes for all stages
525 ###########################################################################
527 # loadaddr can determine the load address of a stage, which may be needed for
528 # platform-specific image headers (only works *after* the stage has been built)
529 loadaddr = $(shell $(OBJDUMP_$(1)) -p $(objcbfs)/$(1).debug | \
530              sed -ne '/LOAD/s/^.*vaddr 0x\([0-9a-fA-F]\{8\}\).*$$/0x\1/p')
532 # find-substr is required for stages like romstage_null and romstage_xip to
533 # eliminate the _* part of the string
534 find-substr = $(word 1,$(subst _, ,$(1)))
536 # find-class is used to identify the class from the name of the stage
537 # The input to this macro can be something like romstage.x or romstage.x.y
538 # find-class recursively strips off the suffixes to extract the exact class name
539 # e.g.: if romstage.x is provided to find-class, it will remove .x and return romstage
540 # if romstage.x.y is provided, it will first remove .y, call find-class with romstage.x
541 # and remove .x the next time and finally return romstage
542 find-class = $(if $(filter $(1),$(basename $(1))),$(if $(CC_$(1)), $(1), $(call find-substr,$(1))),$(call find-class,$(basename $(1))))
544 # Bootblocks are not CBFS stages. coreboot is currently expecting the bss to
545 # be cleared by the loader of the stage. For ARM SoCs that means one needs to
546 # include the bss section in the binary so the BootROM clears the bss on
547 # loading of the bootblock stage. Achieve this by marking the bss section
548 # loadable,allocatable, and data. Do the same for the .data section in case
549 # it's marked as NOBITS.
550 $(objcbfs)/bootblock.raw.bin: $(objcbfs)/bootblock.elf
551         @printf "    OBJCOPY    $(notdir $(@))\n"
552         $(OBJCOPY_bootblock) --set-section-flags .bss=load,alloc,data --set-section-flags .data=load,alloc,data $< $<.tmp
553         $(OBJCOPY_bootblock) -O binary $<.tmp $@
555 $(objcbfs)/%.bin: $(objcbfs)/%.raw.bin
556         cp $< $@
558 $(objcbfs)/%.elf: $(objcbfs)/%.debug
559         $(eval class := $(call find-class,$(@F)))
560         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
561         cp $< $@.tmp
562         $(NM_$(class)) -n $@.tmp | sort > $(basename $@).map
563         $(OBJCOPY_$(class)) --strip-debug $@.tmp
564         $(OBJCOPY_$(class)) --add-gnu-debuglink=$< $@.tmp
565         mv $@.tmp $@
567 ###########################################################################
568 # Build the final rom image
569 ###########################################################################
571 # extract_nth - Return a subsection of the $file string
573 # the input string looks like this:
574 # ./build/cbfs/fallback/romstage.elf|fallback/romstage|stage|none||64|--xip*-S*.car.data*-P*0x10000
576 # Sections:
577 # 1 - Path and name of file [FILENAME: Added to cbfs-files-y list variable]
578 # 2 - Name of file in cbfs  [$(FILENAME)-file]
579 # 3 - File type:            [$(FILENAME)-type]
580 #                bootblock, cbfs header, stage, payload, optionrom, bootsplash, raw, vsa,
581 #                mbi, microcode, fsp, mrc, cmos_default, cmos_layout, spd, mrc_cache,
582 #                mma, efi, deleted, null
583 # 4 - Compression type      [$(FILENAME)-compression]
584 #                      none, LZMA
585 # 5 - Base address          [$(FILANAME)-position]
586 # 6 - Alignment             [$(FILENAME)-align]
587 # 7 - cbfstool flags        [$(FILENAME)-options]
589 # Input:
590 #  $(1) = Section to extract
591 #  $(2) = Input string
593 # Steps:
594 # 1) replace all '|' characters with the sequence '- -' within the full string, prepended and appended with the character '-'
595 # 2) extract the specified section from the string - this gets us the section surrounded by '-' characters
596 # 3) remove the leading and trailing '-' characters
597 # 4) replace all '*' characters with spaces
598 extract_nth=$(subst *,$(spc),$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-))))
600 # regions-for-file - Returns a cbfstool regions parameter
601 # $(call regions-for-file,$(filename))
602 # returns "REGION1,REGION2,..."
604 # This is the default implementation. When using a boot strategy employing
605 # multiple CBFSes in fmap regions, override it.
606 regions-for-file ?= COREBOOT
608 ifeq ($(CONFIG_CBFS_AUTOGEN_ATTRIBUTES),y)
609         cbfs-autogen-attributes=-g
610 endif
612 # cbfs-add-cmd-for-region
613 # $(call cbfs-add-cmd-for-region,file in extract_nth format,region name)
614 define cbfs-add-cmd-for-region
615         $(CBFSTOOL) $@.tmp \
616         add$(if $(filter stage,$(call extract_nth,3,$(1))),-stage)$(if \
617                 $(filter payload,$(call extract_nth,3,$(1))),-payload)$(if \
618                 $(filter flat-binary,$(call extract_nth,3,$(1))),-flat-binary) \
619         -f $(call extract_nth,1,$(1)) \
620         -n $(call extract_nth,2,$(1)) \
621         $(if $(filter-out flat-binary,$(filter-out stage,$(call \
622                 extract_nth,3,$(1)))),-t $(call extract_nth,3,$(1))) \
623         $(if $(call extract_nth,4,$(1)),-c $(call extract_nth,4,$(1))) \
624         $(cbfs-autogen-attributes) \
625         -r $(2) \
626         $(if $(call extract_nth,6,$(1)),-a $(call extract_nth,6,$(file)), \
627                 $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file)))) \
628                 $(call extract_nth,7,$(1))
631 endef
632 # Empty line before endef is necessary so cbfs-add-cmd-for-region ends in a
633 # newline
635 # cbfs-add-cmd
636 # $(call cbfs-add-cmd,
637 #          file in extract_nth format,
638 #          region name,
639 #          non-empty if file removal requested)
640 define cbfs-add-cmd
641         printf "    CBFS       $(call extract_nth,2,$(1))\n"
642         $(if $(3),-$(CBFSTOOL) $@.tmp remove -n $(call extract_nth,2,$(file)) 2>/dev/null)
643         $(call cbfs-add-cmd-for-region,$(1),$(2))
644 endef
646 # list of files to add (using their file system names, not CBFS names),
647 # for dependencies etc.
648 prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
650 # $(all-regions)
651 # returns full list of fmap regions that we add files to
652 all-regions = $(sort $(subst $(comma),$(spc), \
653         $(foreach file,$(cbfs-files), \
654                 $(call regions-for-file,$(call extract_nth,2,$(file))))))
656 # $(call all-files-in-region,region name)
657 # returns elements in $(cbfs-files) that end up in that region, in the order
658 # they appear in $(cbfs-files)
659 all-files-in-region = $(foreach file,$(cbfs-files), \
660         $(if $(filter $(1), \
661                 $(subst $(comma),$(spc),$(call regions-for-file,$(call extract_nth,2,$(file))))), \
662                 $(file)))
664 # $(call update-file-for-region,file string from $(cbfs-files),region name)
665 # Update position and alignment according to overrides for region
666 # Doesn't check for invalid configurations (eg. resetting neither or both
667 # position and align)
668 # Returns the updated file string
669 update-file-for-region = \
670         $(subst $(spc),*,$(call extract_nth,1,$(1))|$(call extract_nth,2,$(1))|$(call extract_nth,3,$(1))|$(call extract_nth,4,$(1))|$($(call extract_nth,2,$(1))-$(2)-position)|$($(call extract_nth,2,$(1))-$(2)-align)|$(call extract_nth,7,$(1)))
672 # $(call placed-files-in-region,region name)
673 # like all-files-in-region, but updates the files to contain region overrides
674 # to position or alignment.
675 placed-files-in-region = $(foreach file,$(call all-files-in-region,$(1)), \
676         $(if $($(call extract_nth,2,$(file))-$(1)-position), \
677                 $(if $($(call extract_nth,2,$(file))-$(1)-align), \
678                         $(error It is not allowed to specify both alignment and position for $(call extract_nth,2,$(file))-$(1))) \
679                 $(call update-file-for-region,$(file),$(1)), \
680                 $(if $($(call extract_nth,2,$(file))-$(1)-align), \
681                         $(call update-file-for-region,$(file),$(1)), \
682                         $(file))))
684 # $(call sort-files,subset of $(cbfs-files))
685 # reorders the files in the given set to list files at fixed positions first,
686 # followed by aligned files and finally those with no constraints.
687 sort-files = \
688         $(eval _tmp_fixed:=) \
689         $(eval _tmp_aligned:=) \
690         $(eval _tmp_regular:=) \
691         $(foreach file,$(1), \
692                 $(if $(call extract_nth,5,$(file)),\
693                         $(eval _tmp_fixed += $(file)), \
694                 $(if $(call extract_nth,6,$(file)), \
695                         $(eval _tmp_aligned += $(file)), \
696                         $(eval _tmp_regular += $(file))))) \
697         $(_tmp_fixed) $(_tmp_aligned) $(_tmp_regular)
699 # command list to add files to CBFS
700 prebuild-files = $(foreach region,$(all-regions), \
701         $(foreach file, \
702                 $(call sort-files,$(call placed-files-in-region,$(region))), \
703                 $(call cbfs-add-cmd,$(file),$(region),$(CONFIG_UPDATE_IMAGE))))
705 ifeq ($(CONFIG_FMDFILE),)
706 # For a description of the flash layout described by these variables, check
707 # the $(DEFAULT_FLASHMAP) .fmd files.
708 ifeq ($(CONFIG_ARCH_X86),y)
709 DEFAULT_FLASHMAP:=$(top)/util/cbfstool/default-x86.fmd
710 # entire flash
711 FMAP_ROM_ADDR := $(call int-subtract, 0x100000000 $(CONFIG_ROM_SIZE))
712 FMAP_ROM_SIZE := $(CONFIG_ROM_SIZE)
713 # entire "BIOS" region (everything directly of concern to the host system)
714 # relative to ROM_BASE
715 FMAP_BIOS_BASE := $(call int-subtract, $(CONFIG_ROM_SIZE) $(CONFIG_CBFS_SIZE))
716 FMAP_BIOS_SIZE := $(shell echo $(CONFIG_CBFS_SIZE) | tr A-F a-f)
717 # position and size of flashmap, relative to BIOS_BASE
718 FMAP_FMAP_BASE := 0
719 FMAP_FMAP_SIZE := 0x100
720 # position and size of CBFS, relative to BIOS_BASE
721 FMAP_CBFS_BASE := $(FMAP_FMAP_SIZE)
722 FMAP_CBFS_SIZE := $(call int-subtract, $(FMAP_BIOS_SIZE) $(FMAP_FMAP_SIZE))
723 else # ifeq ($(CONFIG_ARCH_X86),y)
724 DEFAULT_FLASHMAP:=$(top)/util/cbfstool/default.fmd
725 # entire flash
726 FMAP_ROM_ADDR := 0
727 FMAP_ROM_SIZE := $(CONFIG_ROM_SIZE)
728 # entire "BIOS" region (everything directly of concern to the host system)
729 # relative to ROM_BASE
730 FMAP_BIOS_BASE := 0
731 FMAP_BIOS_SIZE := $(CONFIG_CBFS_SIZE)
732 # position and size of flashmap, relative to BIOS_BASE
733 FMAP_FMAP_BASE := 0x20000
734 FMAP_FMAP_SIZE := 0x100
735 # position and size of CBFS, relative to BIOS_BASE
736 FMAP_CBFS_BASE := $(call int-add,$(FMAP_FMAP_BASE) $(FMAP_FMAP_SIZE))
737 FMAP_CBFS_SIZE := $(call int-subtract,$(FMAP_BIOS_SIZE) $(FMAP_CBFS_BASE))
738 endif # ifeq ($(CONFIG_ARCH_X86),y)
740 $(obj)/fmap.fmd: $(top)/Makefile.inc $(DEFAULT_FLASHMAP) $(obj)/config.h
741         sed -e "s,##ROM_BASE##,$(FMAP_ROM_ADDR)," \
742             -e "s,##ROM_SIZE##,$(FMAP_ROM_SIZE)," \
743             -e "s,##BIOS_BASE##,$(FMAP_BIOS_BASE)," \
744             -e "s,##BIOS_SIZE##,$(FMAP_BIOS_SIZE)," \
745             -e "s,##FMAP_BASE##,$(FMAP_FMAP_BASE)," \
746             -e "s,##FMAP_SIZE##,$(FMAP_FMAP_SIZE)," \
747             -e "s,##CBFS_BASE##,$(FMAP_CBFS_BASE)," \
748             -e "s,##CBFS_SIZE##,$(FMAP_CBFS_SIZE)," \
749                 $(DEFAULT_FLASHMAP) > $@.tmp
750         mv $@.tmp $@
751 else # ifeq ($(CONFIG_FMDFILE),)
752 $(obj)/fmap.fmd: $(CONFIG_FMDFILE) $(obj)/config.h
753         $(HOSTCC) $(PREPROCESS_ONLY) -include $(obj)/config.h $< -o $@.pre
754         mv $@.pre $@
755 endif # ifeq ($(CONFIG_FMDFILE),)
757 # generated at the same time as fmap.fmap
758 $(obj)/fmap_config.h: $(obj)/fmap.fmap
759 $(obj)/fmap.desc: $(obj)/fmap.fmap
761 $(obj)/fmap.fmap: $(obj)/fmap.fmd $(FMAPTOOL)
762         echo "    FMAP       $(FMAPTOOL) -h $(obj)/fmap_config.h $< $@"
763         $(FMAPTOOL) -h $(obj)/fmap_config.h -R $(obj)/fmap.desc $< $@
765 ifneq ($(CONFIG_UPDATE_IMAGE),y)
766 $(obj)/coreboot.pre: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(CBFSTOOL) $$(cpu_ucode_cbfs_file) $(obj)/fmap.fmap $(obj)/fmap.desc
767         $(CBFSTOOL) $@.tmp create -M $(obj)/fmap.fmap -r $(shell cat $(obj)/fmap.desc)
768 ifeq ($(CONFIG_ARCH_X86),y)
769         $(CBFSTOOL) $@.tmp add \
770                 -f $(objcbfs)/bootblock.bin \
771                 -n bootblock \
772                 -t bootblock \
773                 -b -$(call file-size,$(objcbfs)/bootblock.bin) $(cbfs-autogen-attributes)
774 else # ifeq ($(CONFIG_ARCH_X86),y)
775         $(CBFSTOOL) $@.tmp write -u \
776                 -r BOOTBLOCK \
777                 -f $(objcbfs)/bootblock.bin
778         # make space for the CBFS master header pointer. "ptr_" is just
779         # arbitrary 4 bytes that will be overwritten by add-master-header.
780         printf "ptr_" > $@.tmp.2
781         $(CBFSTOOL) $@.tmp add \
782                 -f $@.tmp.2 \
783                 -n "header pointer" \
784                 -t "cbfs header" \
785                 -b -4
786         rm -f $@.tmp.2
787 endif # ifeq ($(CONFIG_ARCH_X86),y)
788         $(CBFSTOOL) $@.tmp add-master-header
789         $(prebuild-files) true
790         mv $@.tmp $@
791 else # ifneq ($(CONFIG_UPDATE_IMAGE),y)
792 .PHONY: $(obj)/coreboot.pre
793 $(obj)/coreboot.pre: $$(prebuilt-files) $(CBFSTOOL)
794         mv $(obj)/coreboot.rom $@.tmp || \
795         (echo "Error: You have UPDATE_IMAGE set in Kconfig, but have no existing image to update." && \
796         echo "Exiting." && \
797         false)
798         $(prebuild-files) true
799         mv $@.tmp $@
800 endif # ifneq ($(CONFIG_UPDATE_IMAGE),y)
802 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
803 REFCODE_BLOB=$(obj)/refcode.rmod
804 $(REFCODE_BLOB): $(RMODTOOL)
805         $(RMODTOOL) -i $(CONFIG_REFCODE_BLOB_FILE) -o $@
806 endif
808 $(obj)/coreboot.rom: $(obj)/coreboot.pre $(objcbfs)/ramstage.elf $(CBFSTOOL) $$(INTERMEDIATE)
809         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
810 # The full ROM may be larger than the CBFS part, so create an empty
811 # file (filled with \377 = 0xff) and copy the CBFS image over it.
812         dd if=/dev/zero bs=$(call _toint,$(CONFIG_ROM_SIZE)) count=1 2> /dev/null | tr '\000' '\377' > $@.tmp
813         dd if=$(obj)/coreboot.pre of=$@.tmp bs=8192 conv=notrunc 2> /dev/null
814 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),)
815 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
816         @printf "    SeaBIOS    Wait up to $(CONFIG_SEABIOS_PS2_TIMEOUT) ms for PS/2 keyboard controller initialization\n"
817         $(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_PS2_TIMEOUT) -n etc/ps2-keyboard-spinup
818 endif
819 endif
820 ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
821 ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
822         @printf "    UPDATE-FIT\n"
823         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
824 endif
826 ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE),y)
827         @printf "    UPDATE-FIT\n"
828         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
829 endif
830 endif
831         mv $@.tmp $@
832         @printf "    CBFSPRINT  $(subst $(obj)/,,$(@))\n\n"
833         $(CBFSTOOL) $@ print -r $(subst $(spc),$(comma),$(all-regions))
834 ifeq ($(CONFIG_IASL_WARNINGS_ARE_ERRORS),)
835         @printf "\n***** WARNING: IASL warnings as errors is disabled!  *****\n"
836         @printf "*****          Please fix the ASL for this platform. *****\n\n"
837 endif
839 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/romstage
840 $(CONFIG_CBFS_PREFIX)/romstage-file := $(objcbfs)/romstage.elf
841 $(CONFIG_CBFS_PREFIX)/romstage-type := stage
842 $(CONFIG_CBFS_PREFIX)/romstage-compression := $(CBFS_PRERAM_COMPRESS_FLAG)
843 ifeq ($(CONFIG_ARCH_ROMSTAGE_ARM),y)
844 $(CONFIG_CBFS_PREFIX)/romstage-options := -b 0
845 endif
846 ifeq ($(CONFIG_ARCH_ROMSTAGE_X86_32)$(CONFIG_ARCH_ROMSTAGE_X86_64),y)
847 # Use a 64 byte alignment to provide a minimum alignment
848 # requirement for the overall romstage. While the first object within
849 # romstage could have a 4 byte minimum alignment that doesn't mean the linker
850 # won't decide the entire section should be aligned to a larger value. In the
851 # future cbfstool should add XIP files proper and honor the alignment
852 # requirements of the program segment.
854 # Make sure that segment for .car.data is ignored while adding romstage.
855 $(CONFIG_CBFS_PREFIX)/romstage-align := 64
856 $(CONFIG_CBFS_PREFIX)/romstage-options := -S ".car.data"
858 # If CAR does not support execution of code, romstage on x86 is expected to be
859 # xip.
860 ifneq ($(CONFIG_NO_XIP_EARLY_STAGES),y)
861 $(CONFIG_CBFS_PREFIX)/romstage-options += --xip
863 # If XIP_ROM_SIZE isn't being used don't overly constrain romstage by passing
864 # -P with a default value.
865 ifneq ($(CONFIG_NO_FIXED_XIP_ROM_SIZE),y)
866 $(CONFIG_CBFS_PREFIX)/romstage-options += -P $(CONFIG_XIP_ROM_SIZE)
867 endif    # CONFIG_NO_FIXED_XIP_ROM_SIZE
869 endif   # CONFIG_NO_XIP_EARLY_STAGES
870 endif   # CONFIG_ARCH_ROMSTAGE_X86_32 / CONFIG_ARCH_ROMSTAGE_X86_64
872 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/ramstage
873 $(CONFIG_CBFS_PREFIX)/ramstage-file := $(objcbfs)/ramstage.elf
874 $(CONFIG_CBFS_PREFIX)/ramstage-type := stage
875 $(CONFIG_CBFS_PREFIX)/ramstage-compression := $(CBFS_COMPRESS_FLAG)
877 cbfs-files-$(CONFIG_HAVE_REFCODE_BLOB) += $(CONFIG_CBFS_PREFIX)/refcode
878 $(CONFIG_CBFS_PREFIX)/refcode-file := $(REFCODE_BLOB)
879 $(CONFIG_CBFS_PREFIX)/refcode-type := stage
880 $(CONFIG_CBFS_PREFIX)/refcode-compression := $(CBFS_COMPRESS_FLAG)
882 cbfs-files-$(CONFIG_SEABIOS_VGA_COREBOOT) += vgaroms/seavgabios.bin
883 vgaroms/seavgabios.bin-file := $(CONFIG_PAYLOAD_VGABIOS_FILE)
884 vgaroms/seavgabios.bin-type := raw
886 cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += config
887 config-file := $(DOTCONFIG):defconfig
888 config-type := raw
890 cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += revision
891 revision-file := $(obj)/build.h
892 revision-type := raw
894 BOOTSPLASH_SUFFIX=$(suffix $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE)))
895 cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash$(BOOTSPLASH_SUFFIX)
896 bootsplash$(BOOTSPLASH_SUFFIX)-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
897 bootsplash$(BOOTSPLASH_SUFFIX)-type := bootsplash
899 cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
900 board_id-file := $(obj)/board_id
901 board_id-type := raw
903 $(obj)/board_id:
904         printf $(CONFIG_BOARD_ID_STRING) > $@
906 # Ensure that no payload segment overlaps with memory regions used by ramstage
907 # (not for x86 since it can relocate itself in that case)
908 ifneq ($(CONFIG_ARCH_X86),y)
909 check-ramstage-overlap-regions := ramstage
910 check-ramstage-overlap-files :=
911 ifneq ($(CONFIG_PAYLOAD_NONE),y)
912 check-ramstage-overlap-files += $(CONFIG_CBFS_PREFIX)/payload
913 endif
915 # will output one or more lines of "<load address in hex> <memlen in decimal>"
916 cbfs-get-segments-cmd = $(CBFSTOOL) $(obj)/coreboot.pre print -v | sed -n \
917         '\%$(1)%,\%^[^ ]\{4\}%s%    .*load: \(0x[0-9a-fA-F]*\),.*length: [0-9]*/\([0-9]*\).*%\1 \2%p'
919 ramstage-symbol-addr-cmd = $(OBJDUMP_ramstage) -t $(objcbfs)/ramstage.elf | \
920         sed -n '/ $(1)$$/s/^\([0-9a-fA-F]*\) .*/0x\1/p'
922 check-ramstage-overlaps: $(obj)/coreboot.pre
923         programs=$$($(foreach file,$(check-ramstage-overlap-files), \
924                 $(call cbfs-get-segments-cmd,$(file)) ; )) ; \
925         regions=$$($(foreach region,$(check-ramstage-overlap-regions), \
926                 echo $(region) ; \
927                 $(call ramstage-symbol-addr-cmd,_$(region)) ; \
928                 $(call ramstage-symbol-addr-cmd,_e$(region)) ; )) ; \
929         pstart= ; pend= ; \
930         for x in $$programs; do \
931             if [ -z $$pstart ]; then pstart=$$(($$x)) ; continue ; fi ; \
932             pend=$$(($$pstart + $$x)) ; \
933             rname= ; rstart= ; rend= ; \
934             for y in $$regions ; do \
935                 if [ -z $$rname ]; then rname=$$y ; continue ; fi ; \
936                 if [ -z $$rstart ]; then rstart=$$(($$y)) ; continue ; fi ; \
937                 rend=$$(($$y)) ; \
938                 if [ $$pstart -lt $$rend -a $$rstart -lt $$pend ]; then \
939                     echo "ERROR: Ramstage region _$$rname overlapped by:" \
940                          $(check-ramstage-overlap-files) ; \
941                     exit 1 ; \
942                 fi ; \
943                 rname= ; rstart= ; rend= ; \
944             done ; \
945             pstart= ; pend= ; \
946         done
948 INTERMEDIATE+=check-ramstage-overlaps
949 PHONY+=check-ramstage-overlaps
950 endif
952 junit.xml:
953         echo "Building $(UTIL)"
954         echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp
955         echo "<testcase classname='$(UTIL)' name='$(UTIL)'>" >> $@.tmp
956         -$(MAKE) -j $(CPUS) -C "util/$(UTIL)" clean distclean > $@.tmp.2 2>&1
957         $(MAKE) -j $(CPUS) -C "util/$(UTIL)" $(MAKETARGET) >> $@.tmp.2 2>&1 && type="system-out" || type="failure"; \
958         cat $@.tmp.2; \
959         if [ "$$type" = "failure" ]; then \
960                 echo "<failure type='buildFailed'>" >> $@.tmp; \
961                 echo "Building $(UTIL) Failed"; \
962         else \
963                 echo "<$$type>" >> $@.tmp; \
964                 echo "Building $(UTIL) Succeeded"; \
965         fi; \
966         echo '<![CDATA[' >> $@.tmp; \
967         cat $@.tmp.2 >> $@.tmp; \
968         echo "]]></$$type>" >>$@.tmp
969         rm -f $@.tmp.2
970         echo "</testcase>" >> $@.tmp
971         echo "</testsuite>" >> $@.tmp
972         mv $@.tmp "util/$(UTIL)/$@"
973         echo
975 TOOLLIST= \
976         cbmem \
977         ectool \
978         futility \
979         inteltool \
980         intelvbttool \
981         nvramtool \
982         superiotool \
983         viatool
984 JENKINS_PAYLOAD?=none
985 CPUS?=4
986 what-jenkins-does:
987         util/lint/lint lint-stable --junit
988         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c $(CPUS) -z -p $(JENKINS_PAYLOAD) -x -X $(top)/abuild-chromeos.xml
989         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c $(CPUS) -z -p $(JENKINS_PAYLOAD)
990         (cd payloads/libpayload; unset COREBOOT_BUILD_DIR; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_LP_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
991         $(foreach tool, $(TOOLLIST), $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) UTIL="$(tool)" MFLAGS= MAKEFLAGS= MAKETARGET= junit.xml; )
992         $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) UTIL="romcc" MFLAGS= MAKEFLAGS= MAKETARGET=test junit.xml