mainboard/tyan/s8226: transition away from device_t
[coreboot.git] / Makefile.inc
blobcb0b21cbb29feb71a3f26cd85096ffec911a9491
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" $(MAINBOARDDIR) \
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)
200 $(foreach type,ads adb, \
201   $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
202     $(eval $(stage)-$(type)-deps := $(obj)/libgnat-$(ARCH-$(stage)-y)/libgnat.a)))
204 # Add handler to copy linker scripts
205 define generic-objs_ld_template_gen
206 de$(EMPTY)fine $(1)-objs_ld_template
207 $$(call src-to-obj,$1,$$(1).ld): $$(1).ld $(obj)/config.h
208         @printf "    CP         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
209         $$(CC_$(1)) -MMD $$(CPPFLAGS_$(1)) $$($(1)-ld-ccopts) $(PREPROCESS_ONLY) -include $(obj)/config.h -MT $$$$@ -o $$$$@ $$$$<
210 en$(EMPTY)def
211 endef
213 # Add handler to deal with archives
214 define generic-objs_a_template_gen
215 de$(EMPTY)fine $(1)-objs_a_template
216 $$(call src-to-obj,$1,$$(1).a): $$(1).a
217         @printf "    AR         $$$$(subst $$$$(obj)/,,$$$$(@))\n"
218         $$$$(AR_$(1)) rcsT $$$$@.tmp $$$$<
219         mv $$$$@.tmp $$$$@
220 en$(EMPTY)def
221 endef
223 # Add handler to add no rules for manual files
224 define generic-objs_manual_template_gen
225 # do nothing
226 endef
228 #######################################################################
229 # Add handler to compile ACPI's ASL
230 # arg1: base file name
231 # arg2: y or n for including in cbfs. defaults to y
232 define asl_template
233 $(CONFIG_CBFS_PREFIX)/$(1).aml-file = $(obj)/$(1).aml
234 $(CONFIG_CBFS_PREFIX)/$(1).aml-type = raw
235 $(CONFIG_CBFS_PREFIX)/$(1).aml-compression = none
236 cbfs-files-$(if $(2),$(2),y) += $(CONFIG_CBFS_PREFIX)/$(1).aml
237 -include $(obj)/$(1).d
238 $(obj)/$(1).aml: $(src)/mainboard/$(MAINBOARDDIR)/$(1).asl $(obj)/config.h
239         @printf "    IASL       $$(subst $(top)/,,$$(@))\n"
240         $(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 $$@
241         cd $$(dir $$@); $(IASL) -we -p $$(notdir $$@) $$(notdir $$@)
242         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
243 endef
245 #######################################################################
246 # Parse plaintext cmos defaults into binary format
247 # arg1: source file
248 # arg2: binary file name
249 cbfs-files-processor-nvramtool= \
250         $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
251                 printf "    CREATE     $(2) (from $(1))\n"; \
252                 $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && \
253                 mv $(2).tmp $(2))
255 #######################################################################
256 # Link VSA binary to ELF-ish stage
257 # arg1: source file
258 # arg2: binary file name
259 cbfs-files-processor-vsa= \
260         $(eval $(2): $(1) ; \
261                 printf "    CREATE     $(2) (from $(1))\n"; \
262                 $(OBJCOPY_ramstage) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && \
263                 $(LD_ramstage) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2))
265 #######################################################################
266 # Reduce a .config file to its minimal representation
267 # arg1: input
268 # arg2: output
269 cbfs-files-processor-defconfig= \
270         $(eval $(2): $(1) $(obj)/build.h; \
271                 printf "    CREATE     $(2) (from $(1))\n"; \
272                 printf "\# This image was built using coreboot " > $(2).tmp && \
273                 grep "\<COREBOOT_VERSION\>" $(obj)/build.h |cut -d\" -f2 >> $(2).tmp && \
274                 $(MAKE) DOTCONFIG=$(1) DEFCONFIG=$(2).tmp2 savedefconfig && \
275                 cat $(2).tmp2 >> $(2).tmp && \
276                 rm -f $(2).tmp2 && \
277                 \mv -f $(2).tmp $(2))
279 #######################################################################
280 # Compile a C file with a bare struct definition into binary
281 # arg1: C source file
282 # arg2: binary file
283 cbfs-files-processor-struct= \
284         $(eval $(2): $(1) $(obj)/build.h $(KCONFIG_AUTOHEADER); \
285                 printf "    CC+STRIP   $(@)\n"; \
286                 $(CC_ramstage) -MMD $(CPPFLAGS_ramstage) $(CFLAGS_ramstage) $(ramstage-c-ccopts) -include $(KCONFIG_AUTOHEADER) -MT $(2) -o $(2).tmp -c $(1) && \
287                 $(OBJCOPY_ramstage) -O binary $(2).tmp $(2); \
288                 rm -f $(2).tmp) \
289         $(eval DEPENDENCIES += $(2).d)
291 #######################################################################
292 # Add handler for arbitrary files in CBFS
293 $(call add-special-class,cbfs-files)
294 cbfs-files-handler= \
295                 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
296                 $(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
297                 $(eval tmp-cbfs-file:= ) \
298                 $(if $($(2)-file), \
299                         $(if $(wildcard $(1)$($(2)-file)), \
300                                 $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
301                                 $(eval tmp-cbfs-file:= $($(2)-file)))) \
302                 $(if $(strip $($(2)-required)), \
303                         $(if $(wildcard $(tmp-cbfs-file)),, \
304                                 $(info This build configuration requires $($(2)-required)) \
305                                 $(eval FAILBUILD:=1) \
306                         )) \
307                 $(if $(strip $($(2)-align)), \
308                         $(if $(strip $($(2)-position)), \
309                                 $(info ERROR: It is not allowed to specify both alignment and position for $($(2)-file)) \
310                                 $(eval FAILBUILD:=1) \
311                         )) \
312                 $(if $(tmp-cbfs-method), \
313                         $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
314                         $(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
315                         $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
316                 $(if $(tmp-cbfs-file), \
317                         $(eval cbfs-files += $(subst $(spc),*,$(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$(strip $($(2)-position))|$($(2)-align)|$($(2)-options)))) \
318                 $(eval $(2)-name:=) \
319                 $(eval $(2)-type:=) \
320                 $(eval $(2)-compression:=) \
321                 $(eval $(2)-position:=) \
322                 $(eval $(2)-required:=) \
323                 $(eval $(2)-options:=) \
324                 $(eval $(2)-align:=)
326 #######################################################################
327 # a variety of flags for our build
328 CBFS_COMPRESS_FLAG:=none
329 ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
330 CBFS_COMPRESS_FLAG:=LZMA
331 endif
333 CBFS_PAYLOAD_COMPRESS_FLAG:=none
334 ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
335 CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
336 endif
338 CBFS_PRERAM_COMPRESS_FLAG:=none
339 ifeq ($(CONFIG_COMPRESS_PRERAM_STAGES),y)
340 CBFS_PRERAM_COMPRESS_FLAG:=LZ4
341 endif
343 ifneq ($(CONFIG_LOCALVERSION),"")
344 export COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
345 endif
347 CPPFLAGS_common := -Isrc -Isrc/include -Isrc/commonlib/include -I$(obj)
348 CPPFLAGS_common += -Isrc/device/oprom/include
349 VBOOT_SOURCE ?= 3rdparty/vboot
350 CPPFLAGS_common += -I$(VBOOT_SOURCE)/firmware/include
351 CPPFLAGS_common += -include $(src)/include/kconfig.h
352 CPPFLAGS_common += -I3rdparty
354 CFLAGS_common += -pipe -g -nostdinc
355 CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
356 CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
357 CFLAGS_common += -Wstrict-aliasing -Wshadow -Wdate-time
358 CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
359 CFLAGS_common += -ffunction-sections -fdata-sections -fno-pie
361 ADAFLAGS_common += -gnatg -gnatp
362 ADAFLAGS_common += -Wuninitialized -Wall -Werror
363 ADAFLAGS_common += -pipe -g -nostdinc
364 ADAFLAGS_common += -Wstrict-aliasing -Wshadow
365 ADAFLAGS_common += -fno-common -fomit-frame-pointer
366 ADAFLAGS_common += -ffunction-sections -fdata-sections
367 # Ada warning options:
369 #  a   Activate most optional warnings.
370 # .e   Activate every optional warnings.
371 #  e   Treat warnings and style checks as errors.
373 #  D   Suppress warnings on implicit dereferences:
374 #      As SPARK does not accept access types we have to map the
375 #      dynamically chosen register locations to a static SPARK
376 #      variable.
378 # .H   Suppress warnings on holes/gaps in records:
379 #      We are modelling hardware here!
381 #  H   Suppress warnings on hiding:
382 #      It's too annoying, you run out of ideas for identifiers fast.
384 #  T   Suppress warnings for tracking of deleted conditional code:
385 #      We use static options to select code paths at compile time.
387 #  U   Suppress warnings on unused entities:
388 #      Would have lots of warnings for unused register definitions,
389 #      `withs` for debugging etc.
391 # .U   Deactivate warnings on unordered enumeration types:
392 #      As SPARK doesn't support `pragma Ordered` by now, we don't
393 #      use that, yet.
395 # .W   Suppress warnings on unnecessary Warnings Off pragmas:
396 #      Things get really messy when you use different compiler
397 #      versions, otherwise.
398 # .Y   Disable information messages for why package spec needs body:
399 #      Those messages are annoying. But don't forget to enable those,
400 #      if you need the information.
401 ADAFLAGS_common += -gnatwa.eeD.HHTU.U.W.Y
402 # Disable style checks for now
403 ADAFLAGS_common += -gnatyN
405 LDFLAGS_common := --gc-sections -nostdlib -nostartfiles -static --emit-relocs
407 ifeq ($(CONFIG_COMPILER_GCC),y)
408 # cf. commit f69a99db (coreboot: x86: enable gc-sections)
409 CFLAGS_common += -Wno-unused-but-set-variable
410 endif
412 ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
413 CFLAGS_common += -Werror
414 endif
415 ifneq ($(GDB_DEBUG),)
416 CFLAGS_common += -Og
417 ADAFLAGS_common += -Og
418 else
419 CFLAGS_common += -Os
420 ADAFLAGS_common += -Os
421 endif
423 ifeq ($(CONFIG_DEBUG_ADA_CODE),y)
424 ADAFLAGS_common += -gnata
425 endif
427 additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool \
428                    $(objutil)/ifdfake $(objutil)/options $(objutil)/amdfwtool \
429                    $(objutil)/cbootimage $(objutil)/bimgtool
431 #######################################################################
432 # generate build support files
433 $(obj)/build.h: .xcompile
434         @printf "    GEN        build.h\n"
435         rm -f $(obj)/build.h
436         util/genbuild_h/genbuild_h.sh > $(obj)/build.ht
437         mv $(obj)/build.ht $(obj)/build.h
439 build-dirs:
440         mkdir -p $(objcbfs) $(objgenerated)
442 #######################################################################
443 # Build the tools
444 CBFSTOOL:=$(objutil)/cbfstool/cbfstool
445 FMAPTOOL:=$(objutil)/cbfstool/fmaptool
446 RMODTOOL:=$(objutil)/cbfstool/rmodtool
447 IFWITOOL:=$(objutil)/cbfstool/ifwitool
449 $(obj)/cbfstool: $(CBFSTOOL)
450         cp $< $@
452 $(obj)/fmaptool: $(FMAPTOOL)
453         cp $< $@
455 $(obj)/rmodtool: $(RMODTOOL)
456         cp $< $@
458 $(obj)/ifwitool: $(IFWITOOL)
459         cp $< $@
461 _WINCHECK=$(shell uname -o 2> /dev/null)
462 STACK=
463 ifeq ($(_WINCHECK),Msys)
464         STACK=-Wl,--stack,16384000
465 endif
466 ifeq ($(_WINCHECK),Cygwin)
467         STACK=-Wl,--stack,16384000
468 endif
470 # this allows ccache to prepend itself
471 # (ccache handling happens first)
472 ROMCC_BIN= $(objutil)/romcc/romcc
473 ROMCC?=$(ROMCC_BIN)
474 $(ROMCC_BIN): $(top)/util/romcc/romcc.c
475         @printf "    HOSTCC     $(subst $(obj)/,,$(@)) (this may take a while)\n"
476         @# Note: Adding -O2 here might cause problems. For details see:
477         @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
478         $(HOSTCC) -g $(STACK) -Wall -o $@ $<
480 IFDTOOL:=$(objutil)/ifdtool/ifdtool
481 $(IFDTOOL):
482         @printf "    Compile IFDTOOL\n"
483         $(MAKE) -C $(top)/util/ifdtool
484         cp -a $(top)/util/ifdtool/ifdtool $@
486 IFDFAKE:=$(objutil)/ifdfake/ifdfake
487 $(IFDFAKE): $(top)/util/ifdfake/ifdfake.c
488         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
489         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
491 AMDFWTOOL:=$(objutil)/amdfwtool/amdfwtool
492 $(AMDFWTOOL): $(top)/util/amdfwtool/amdfwtool.c
493         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
494         $(HOSTCC) $(HOSTCFLAGS) -DCONFIG_ROM_SIZE=$(CONFIG_ROM_SIZE) -o $@ $<
496 CBOOTIMAGE:=$(objutil)/cbootimage/cbootimage
498 FUTILITY?=$(objutil)/futility/futility
500 subdirs-y += util/nvidia
502 BIMGTOOL:=$(objutil)/bimgtool/bimgtool
503 $(BIMGTOOL): $(top)/util/bimgtool/bimgtool.c
504         @printf "    HOSTCC     $(subst $(obj)/,,$(@))\n"
505         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
507 $(obj)/config.h: $(objutil)/kconfig/conf
509 #######################################################################
510 # needed objects that every mainboard uses
511 # Creation of these is architecture and mainboard independent
512 DEVICETREE_FILE := $(src)/mainboard/$(MAINBOARDDIR)/$(CONFIG_DEVICETREE)
513 DEVICETREE_STATIC_C := $(obj)/mainboard/$(MAINBOARDDIR)/static.c
515 $(DEVICETREE_STATIC_C): $(DEVICETREE_FILE) $(objutil)/sconfig/sconfig
516         @printf "    SCONFIG    $(subst $(src)/,,$(<))\n"
517         mkdir -p $(dir $(DEVICETREE_STATIC_C))
518         $(objutil)/sconfig/sconfig $(DEVICETREE_FILE) $(DEVICETREE_STATIC_C)
520 ramstage-y+=$(DEVICETREE_STATIC_C)
521 romstage-y+=$(DEVICETREE_STATIC_C)
522 verstage-y+=$(DEVICETREE_STATIC_C)
523 bootblock-y+=$(DEVICETREE_STATIC_C)
525 $(objgenerated)/libverstage.a: $$(libverstage-objs)
526         rm -f $@
527         $(AR_libverstage) rcsT $@ $^
529 #######################################################################
530 # Clean up rules
531 clean-abuild:
532         rm -rf coreboot-builds
534 clean-for-update-target: clean-payloads
535         rm -f $(obj)/ramstage?* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
536         rm -rf $(obj)/bootblock?* $(obj)/romstage?* $(obj)/location.*
537         rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
538         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
539         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
540         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
541         rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/dsdt.*
542         rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
544 clean-target:
545         rm -f $(obj)/coreboot*
547 #######################################################################
548 # Development utilities
549 printcrt0s:
550         @echo crt0s=$(crt0s)
551         @echo ldscripts=$(ldscripts)
553 update:
554         dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
556 lint lint-stable:
557         util/lint/lint $@
559 gitconfig:
560         [ -d .git ]
561         mkdir -p .git/hooks
562         for hook in commit-msg pre-commit ; do                       \
563                 if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o  \
564                 ! -x .git/hooks/$$hook ]; then                       \
565                         sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/$$hook > .git/hooks/$$hook;  \
566                         chmod +x .git/hooks/$$hook;                  \
567                 fi;                                                  \
568         done
569         # Now set up thehooks for 3rdparty/
570         for hooks in .git/modules/{3rdparty/blobs,libhwbase,libgfxinit}/hooks; do                       \
571                 if [ -d $$hooks -a                                                                      \
572                 \( util/gitconfig/commit-msg -nt $$hooks/commit-msg -o                                  \
573                         ! -x $$hooks/commit-msg \) ]; then                                              \
574                         sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/commit-msg > $$hooks/commit-msg;     \
575                         chmod +x $$hooks/commit-msg;                                                    \
576                 fi                                                                                      \
577         done
578         for d in 3rdparty/{blobs,libhwbase,libgfxinit}; do                      \
579                 if [ -d $$d ]; then                                             \
580                         (cd $$d;                                                \
581                          git config remote.origin.push HEAD:refs/for/master);   \
582                 fi;                                                             \
583         done
584         git config remote.origin.push HEAD:refs/for/master
585         git config alias.sup '!git submodule update --remote --rebase && git submodule update --init --checkout'
586         git config alias.sup-destroy '!git submodule deinit --force "$$(git rev-parse --show-toplevel)"; git submodule init && git submodule update --checkout'
587         (git config --global --includes user.name >/dev/null && git config --global --includes 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)
589 include util/crossgcc/Makefile.inc
591 .PHONY: tools
592 tools: $(objutil)/kconfig/conf $(CBFSTOOL) $(FMAPTOOL) $(RMODTOOL) $(IFWITOOL) $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE) $(AMDFWTOOL) $(FUTILITY)
594 ###########################################################################
595 # Common recipes for all stages
596 ###########################################################################
598 # loadaddr can determine the load address of a stage, which may be needed for
599 # platform-specific image headers (only works *after* the stage has been built)
600 loadaddr = $(shell $(OBJDUMP_$(1)) -p $(objcbfs)/$(1).debug | \
601              sed -ne '/LOAD/s/^.*vaddr 0x\([0-9a-fA-F]\{8\}\).*$$/0x\1/p')
603 # find-substr is required for stages like romstage_null and romstage_xip to
604 # eliminate the _* part of the string
605 find-substr = $(word 1,$(subst _, ,$(1)))
607 # find-class is used to identify the class from the name of the stage
608 # The input to this macro can be something like romstage.x or romstage.x.y
609 # find-class recursively strips off the suffixes to extract the exact class name
610 # e.g.: if romstage.x is provided to find-class, it will remove .x and return romstage
611 # if romstage.x.y is provided, it will first remove .y, call find-class with romstage.x
612 # and remove .x the next time and finally return romstage
613 find-class = $(if $(filter $(1),$(basename $(1))),$(if $(CC_$(1)), $(1), $(call find-substr,$(1))),$(call find-class,$(basename $(1))))
615 # Bootblocks are not CBFS stages. coreboot is currently expecting the bss to
616 # be cleared by the loader of the stage. For ARM SoCs that means one needs to
617 # include the bss section in the binary so the BootROM clears the bss on
618 # loading of the bootblock stage. Achieve this by marking the bss section
619 # loadable,allocatable, and data. Do the same for the .data section in case
620 # it's marked as NOBITS.
621 $(objcbfs)/bootblock.raw.bin: $(objcbfs)/bootblock.elf
622         @printf "    OBJCOPY    $(notdir $(@))\n"
623         $(OBJCOPY_bootblock) --set-section-flags .bss=load,alloc,data --set-section-flags .data=load,alloc,data $< $<.tmp
624         $(OBJCOPY_bootblock) -O binary $<.tmp $@
626 $(objcbfs)/%.bin: $(objcbfs)/%.raw.bin
627         cp $< $@
629 $(objcbfs)/%.elf: $(objcbfs)/%.debug
630         $(eval class := $(call find-class,$(@F)))
631         @printf "    OBJCOPY    $(subst $(obj)/,,$(@))\n"
632         cp $< $@.tmp
633         $(NM_$(class)) -n $@.tmp | sort > $(basename $@).map
634         $(OBJCOPY_$(class)) --strip-debug $@.tmp
635         $(OBJCOPY_$(class)) --add-gnu-debuglink=$< $@.tmp
636         mv $@.tmp $@
638 ###########################################################################
639 # Build the final rom image
640 ###########################################################################
642 # extract_nth - Return a subsection of the $file string
644 # the input string looks like this:
645 # ./build/cbfs/fallback/romstage.elf|fallback/romstage|stage|none||64|--xip*-S*.car.data*-P*0x10000
647 # Sections:
648 # 1 - Path and name of file [FILENAME: Added to cbfs-files-y list variable]
649 # 2 - Name of file in cbfs  [$(FILENAME)-file]
650 # 3 - File type:            [$(FILENAME)-type]
651 #                bootblock, cbfs header, stage, payload, optionrom, bootsplash, raw, vsa,
652 #                mbi, microcode, fsp, mrc, cmos_default, cmos_layout, spd, mrc_cache,
653 #                mma, efi, deleted, null
654 # 4 - Compression type      [$(FILENAME)-compression]
655 #                      none, LZMA
656 # 5 - Base address          [$(FILANAME)-position]
657 # 6 - Alignment             [$(FILENAME)-align]
658 # 7 - cbfstool flags        [$(FILENAME)-options]
660 # Input:
661 #  $(1) = Section to extract
662 #  $(2) = Input string
664 # Steps:
665 # 1) replace all '|' characters with the sequence '- -' within the full string, prepended and appended with the character '-'
666 # 2) extract the specified section from the string - this gets us the section surrounded by '-' characters
667 # 3) remove the leading and trailing '-' characters
668 # 4) replace all '*' characters with spaces
669 extract_nth=$(subst *,$(spc),$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-))))
671 # regions-for-file - Returns a cbfstool regions parameter
672 # $(call regions-for-file,$(filename))
673 # returns "REGION1,REGION2,..."
675 # This is the default implementation. When using a boot strategy employing
676 # multiple CBFSes in fmap regions, override it.
677 regions-for-file ?= COREBOOT
679 ifeq ($(CONFIG_CBFS_AUTOGEN_ATTRIBUTES),y)
680         cbfs-autogen-attributes=-g
681 endif
683 # cbfs-add-cmd-for-region
684 # $(call cbfs-add-cmd-for-region,file in extract_nth format,region name)
685 define cbfs-add-cmd-for-region
686         $(CBFSTOOL) $@.tmp \
687         add$(if $(filter stage,$(call extract_nth,3,$(1))),-stage)$(if \
688                 $(filter payload,$(call extract_nth,3,$(1))),-payload)$(if \
689                 $(filter flat-binary,$(call extract_nth,3,$(1))),-flat-binary) \
690         -f $(call extract_nth,1,$(1)) \
691         -n $(call extract_nth,2,$(1)) \
692         $(if $(filter-out flat-binary,$(filter-out stage,$(call \
693                 extract_nth,3,$(1)))),-t $(call extract_nth,3,$(1))) \
694         $(if $(call extract_nth,4,$(1)),-c $(call extract_nth,4,$(1))) \
695         $(cbfs-autogen-attributes) \
696         -r $(2) \
697         $(if $(call extract_nth,6,$(1)),-a $(call extract_nth,6,$(file)), \
698                 $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file)))) \
699                 $(call extract_nth,7,$(1))
702 endef
703 # Empty line before endef is necessary so cbfs-add-cmd-for-region ends in a
704 # newline
706 # cbfs-add-cmd
707 # $(call cbfs-add-cmd,
708 #          file in extract_nth format,
709 #          region name,
710 #          non-empty if file removal requested)
711 define cbfs-add-cmd
712         printf "    CBFS       $(call extract_nth,2,$(1))\n"
713         $(if $(3),-$(CBFSTOOL) $@.tmp remove -n $(call extract_nth,2,$(file)) 2>/dev/null)
714         $(call cbfs-add-cmd-for-region,$(1),$(2))
715 endef
717 # list of files to add (using their file system names, not CBFS names),
718 # for dependencies etc.
719 prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
721 # $(all-regions)
722 # returns full list of fmap regions that we add files to
723 all-regions = $(sort $(subst $(comma),$(spc), \
724         $(foreach file,$(cbfs-files), \
725                 $(call regions-for-file,$(call extract_nth,2,$(file))))))
727 # $(call all-files-in-region,region name)
728 # returns elements in $(cbfs-files) that end up in that region, in the order
729 # they appear in $(cbfs-files)
730 all-files-in-region = $(foreach file,$(cbfs-files), \
731         $(if $(filter $(1), \
732                 $(subst $(comma),$(spc),$(call regions-for-file,$(call extract_nth,2,$(file))))), \
733                 $(file)))
735 # $(call update-file-for-region,file string from $(cbfs-files),region name)
736 # Update position and alignment according to overrides for region
737 # Doesn't check for invalid configurations (eg. resetting neither or both
738 # position and align)
739 # Returns the updated file string
740 update-file-for-region = \
741         $(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)))
743 # $(call placed-files-in-region,region name)
744 # like all-files-in-region, but updates the files to contain region overrides
745 # to position or alignment.
746 placed-files-in-region = $(foreach file,$(call all-files-in-region,$(1)), \
747         $(if $($(call extract_nth,2,$(file))-$(1)-position), \
748                 $(if $($(call extract_nth,2,$(file))-$(1)-align), \
749                         $(error It is not allowed to specify both alignment and position for $(call extract_nth,2,$(file))-$(1))) \
750                 $(call update-file-for-region,$(file),$(1)), \
751                 $(if $($(call extract_nth,2,$(file))-$(1)-align), \
752                         $(call update-file-for-region,$(file),$(1)), \
753                         $(file))))
755 # $(call sort-files,subset of $(cbfs-files))
756 # reorders the files in the given set to list files at fixed positions first,
757 # followed by aligned files and finally those with no constraints.
758 sort-files = \
759         $(eval _tmp_fixed:=) \
760         $(eval _tmp_aligned:=) \
761         $(eval _tmp_regular:=) \
762         $(foreach file,$(1), \
763                 $(if $(call extract_nth,5,$(file)),\
764                         $(eval _tmp_fixed += $(file)), \
765                 $(if $(call extract_nth,6,$(file)), \
766                         $(eval _tmp_aligned += $(file)), \
767                         $(eval _tmp_regular += $(file))))) \
768         $(_tmp_fixed) $(_tmp_aligned) $(_tmp_regular)
770 # command list to add files to CBFS
771 prebuild-files = $(foreach region,$(all-regions), \
772         $(foreach file, \
773                 $(call sort-files,$(call placed-files-in-region,$(region))), \
774                 $(call cbfs-add-cmd,$(file),$(region),$(CONFIG_UPDATE_IMAGE))))
776 ifeq ($(CONFIG_FMDFILE),)
777 # For a description of the flash layout described by these variables, check
778 # the $(DEFAULT_FLASHMAP) .fmd files.
779 ifeq ($(CONFIG_ARCH_X86),y)
780 DEFAULT_FLASHMAP:=$(top)/util/cbfstool/default-x86.fmd
781 # entire flash
782 FMAP_ROM_ADDR := $(call int-subtract, 0x100000000 $(CONFIG_ROM_SIZE))
783 FMAP_ROM_SIZE := $(CONFIG_ROM_SIZE)
784 # entire "BIOS" region (everything directly of concern to the host system)
785 # relative to ROM_BASE
786 FMAP_BIOS_BASE := $(call int-subtract, $(CONFIG_ROM_SIZE) $(CONFIG_CBFS_SIZE))
787 FMAP_BIOS_SIZE := $(shell echo $(CONFIG_CBFS_SIZE) | tr A-F a-f)
788 # position and size of flashmap, relative to BIOS_BASE
789 FMAP_FMAP_BASE := 0
790 FMAP_FMAP_SIZE := 0x100
791 # position and size of CBFS, relative to BIOS_BASE
792 FMAP_CBFS_BASE := $(FMAP_FMAP_SIZE)
793 FMAP_CBFS_SIZE := $(call int-subtract, $(FMAP_BIOS_SIZE) $(FMAP_FMAP_SIZE))
794 else # ifeq ($(CONFIG_ARCH_X86),y)
795 DEFAULT_FLASHMAP:=$(top)/util/cbfstool/default.fmd
796 # entire flash
797 FMAP_ROM_ADDR := 0
798 FMAP_ROM_SIZE := $(CONFIG_ROM_SIZE)
799 # entire "BIOS" region (everything directly of concern to the host system)
800 # relative to ROM_BASE
801 FMAP_BIOS_BASE := 0
802 FMAP_BIOS_SIZE := $(CONFIG_CBFS_SIZE)
803 # position and size of flashmap, relative to BIOS_BASE
804 FMAP_FMAP_BASE := 0x20000
805 FMAP_FMAP_SIZE := 0x100
806 # position and size of CBFS, relative to BIOS_BASE
807 FMAP_CBFS_BASE := $(call int-add,$(FMAP_FMAP_BASE) $(FMAP_FMAP_SIZE))
808 FMAP_CBFS_SIZE := $(call int-subtract,$(FMAP_BIOS_SIZE) $(FMAP_CBFS_BASE))
809 endif # ifeq ($(CONFIG_ARCH_X86),y)
811 $(obj)/fmap.fmd: $(top)/Makefile.inc $(DEFAULT_FLASHMAP) $(obj)/config.h
812         sed -e "s,##ROM_BASE##,$(FMAP_ROM_ADDR)," \
813             -e "s,##ROM_SIZE##,$(FMAP_ROM_SIZE)," \
814             -e "s,##BIOS_BASE##,$(FMAP_BIOS_BASE)," \
815             -e "s,##BIOS_SIZE##,$(FMAP_BIOS_SIZE)," \
816             -e "s,##FMAP_BASE##,$(FMAP_FMAP_BASE)," \
817             -e "s,##FMAP_SIZE##,$(FMAP_FMAP_SIZE)," \
818             -e "s,##CBFS_BASE##,$(FMAP_CBFS_BASE)," \
819             -e "s,##CBFS_SIZE##,$(FMAP_CBFS_SIZE)," \
820                 $(DEFAULT_FLASHMAP) > $@.tmp
821         mv $@.tmp $@
822 else # ifeq ($(CONFIG_FMDFILE),)
823 $(obj)/fmap.fmd: $(CONFIG_FMDFILE) $(obj)/config.h
824         $(HOSTCC) $(PREPROCESS_ONLY) -include $(obj)/config.h $< -o $@.pre
825         mv $@.pre $@
826 endif # ifeq ($(CONFIG_FMDFILE),)
828 # generated at the same time as fmap.fmap
829 $(obj)/fmap_config.h: $(obj)/fmap.fmap
830 $(obj)/fmap.desc: $(obj)/fmap.fmap
832 $(obj)/fmap.fmap: $(obj)/fmap.fmd $(FMAPTOOL)
833         echo "    FMAP       $(FMAPTOOL) -h $(obj)/fmap_config.h $< $@"
834         $(FMAPTOOL) -h $(obj)/fmap_config.h -R $(obj)/fmap.desc $< $@
836 ifneq ($(CONFIG_UPDATE_IMAGE),y)
837 $(obj)/coreboot.pre: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(CBFSTOOL) $$(cpu_ucode_cbfs_file) $(obj)/fmap.fmap $(obj)/fmap.desc
838         $(CBFSTOOL) $@.tmp create -M $(obj)/fmap.fmap -r $(shell cat $(obj)/fmap.desc)
839 ifeq ($(CONFIG_ARCH_X86),y)
840         $(CBFSTOOL) $@.tmp add \
841                 -f $(objcbfs)/bootblock.bin \
842                 -n bootblock \
843                 -t bootblock \
844                 -b -$(call file-size,$(objcbfs)/bootblock.bin) $(cbfs-autogen-attributes)
845 else # ifeq ($(CONFIG_ARCH_X86),y)
846         $(CBFSTOOL) $@.tmp write -u \
847                 -r BOOTBLOCK \
848                 -f $(objcbfs)/bootblock.bin
849         # make space for the CBFS master header pointer. "ptr_" is just
850         # arbitrary 4 bytes that will be overwritten by add-master-header.
851         printf "ptr_" > $@.tmp.2
852         $(CBFSTOOL) $@.tmp add \
853                 -f $@.tmp.2 \
854                 -n "header pointer" \
855                 -t "cbfs header" \
856                 -b -4
857         rm -f $@.tmp.2
858 endif # ifeq ($(CONFIG_ARCH_X86),y)
859         $(CBFSTOOL) $@.tmp add-master-header
860         $(prebuild-files) true
861         mv $@.tmp $@
862 else # ifneq ($(CONFIG_UPDATE_IMAGE),y)
863 .PHONY: $(obj)/coreboot.pre
864 $(obj)/coreboot.pre: $$(prebuilt-files) $(CBFSTOOL)
865         mv $(obj)/coreboot.rom $@.tmp || \
866         (echo "Error: You have UPDATE_IMAGE set in Kconfig, but have no existing image to update." && \
867         echo "Exiting." && \
868         false)
869         $(prebuild-files) true
870         mv $@.tmp $@
871 endif # ifneq ($(CONFIG_UPDATE_IMAGE),y)
873 ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
874 REFCODE_BLOB=$(obj)/refcode.rmod
875 $(REFCODE_BLOB): $(RMODTOOL)
876         $(RMODTOOL) -i $(CONFIG_REFCODE_BLOB_FILE) -o $@
877 endif
879 $(obj)/coreboot.rom: $(obj)/coreboot.pre $(objcbfs)/ramstage.elf $(CBFSTOOL) $$(INTERMEDIATE)
880         @printf "    CBFS       $(subst $(obj)/,,$(@))\n"
881 # The full ROM may be larger than the CBFS part, so create an empty
882 # file (filled with \377 = 0xff) and copy the CBFS image over it.
883         dd if=/dev/zero bs=$(call _toint,$(CONFIG_ROM_SIZE)) count=1 2> /dev/null | tr '\000' '\377' > $@.tmp
884         dd if=$(obj)/coreboot.pre of=$@.tmp bs=8192 conv=notrunc 2> /dev/null
885 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),)
886 ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
887         @printf "    SeaBIOS    Wait up to $(CONFIG_SEABIOS_PS2_TIMEOUT) ms for PS/2 keyboard controller initialization\n"
888         $(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_PS2_TIMEOUT) -n etc/ps2-keyboard-spinup
889 endif
890 endif
891 ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
892 ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
893         @printf "    UPDATE-FIT\n"
894         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
895 endif
897 ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE),y)
898         @printf "    UPDATE-FIT\n"
899         $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
900 endif
901 endif
902         mv $@.tmp $@
903         @printf "    CBFSPRINT  $(subst $(obj)/,,$(@))\n\n"
904         $(CBFSTOOL) $@ print -r $(subst $(spc),$(comma),$(all-regions))
906 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/romstage
907 $(CONFIG_CBFS_PREFIX)/romstage-file := $(objcbfs)/romstage.elf
908 $(CONFIG_CBFS_PREFIX)/romstage-type := stage
909 $(CONFIG_CBFS_PREFIX)/romstage-compression := $(CBFS_PRERAM_COMPRESS_FLAG)
910 ifeq ($(CONFIG_ARCH_ROMSTAGE_ARM),y)
911 $(CONFIG_CBFS_PREFIX)/romstage-options := -b 0
912 endif
913 ifeq ($(CONFIG_ARCH_ROMSTAGE_X86_32)$(CONFIG_ARCH_ROMSTAGE_X86_64),y)
914 # Use a 64 byte alignment to provide a minimum alignment
915 # requirement for the overall romstage. While the first object within
916 # romstage could have a 4 byte minimum alignment that doesn't mean the linker
917 # won't decide the entire section should be aligned to a larger value. In the
918 # future cbfstool should add XIP files proper and honor the alignment
919 # requirements of the program segment.
921 # Make sure that segment for .car.data is ignored while adding romstage.
922 $(CONFIG_CBFS_PREFIX)/romstage-align := 64
923 $(CONFIG_CBFS_PREFIX)/romstage-options := -S ".car.data"
925 # If CAR does not support execution of code, romstage on x86 is expected to be
926 # xip.
927 ifneq ($(CONFIG_NO_XIP_EARLY_STAGES),y)
928 $(CONFIG_CBFS_PREFIX)/romstage-options += --xip
930 # If XIP_ROM_SIZE isn't being used don't overly constrain romstage by passing
931 # -P with a default value.
932 ifneq ($(CONFIG_NO_FIXED_XIP_ROM_SIZE),y)
933 $(CONFIG_CBFS_PREFIX)/romstage-options += -P $(CONFIG_XIP_ROM_SIZE)
934 endif    # CONFIG_NO_FIXED_XIP_ROM_SIZE
936 endif   # CONFIG_NO_XIP_EARLY_STAGES
937 endif   # CONFIG_ARCH_ROMSTAGE_X86_32 / CONFIG_ARCH_ROMSTAGE_X86_64
939 cbfs-files-y += $(CONFIG_CBFS_PREFIX)/ramstage
940 $(CONFIG_CBFS_PREFIX)/ramstage-file := $(objcbfs)/ramstage.elf
941 $(CONFIG_CBFS_PREFIX)/ramstage-type := stage
942 $(CONFIG_CBFS_PREFIX)/ramstage-compression := $(CBFS_COMPRESS_FLAG)
944 cbfs-files-$(CONFIG_HAVE_REFCODE_BLOB) += $(CONFIG_CBFS_PREFIX)/refcode
945 $(CONFIG_CBFS_PREFIX)/refcode-file := $(REFCODE_BLOB)
946 $(CONFIG_CBFS_PREFIX)/refcode-type := stage
947 $(CONFIG_CBFS_PREFIX)/refcode-compression := $(CBFS_COMPRESS_FLAG)
949 cbfs-files-$(CONFIG_SEABIOS_VGA_COREBOOT) += vgaroms/seavgabios.bin
950 vgaroms/seavgabios.bin-file := $(CONFIG_PAYLOAD_VGABIOS_FILE)
951 vgaroms/seavgabios.bin-type := raw
953 cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += config
954 config-file := $(DOTCONFIG):defconfig
955 config-type := raw
957 cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += revision
958 revision-file := $(obj)/build.h
959 revision-type := raw
961 BOOTSPLASH_SUFFIX=$(suffix $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE)))
962 cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash$(BOOTSPLASH_SUFFIX)
963 bootsplash$(BOOTSPLASH_SUFFIX)-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
964 bootsplash$(BOOTSPLASH_SUFFIX)-type := bootsplash
966 cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
967 board_id-file := $(obj)/board_id
968 board_id-type := raw
970 $(obj)/board_id:
971         printf $(CONFIG_BOARD_ID_STRING) > $@
973 # Ensure that no payload segment overlaps with memory regions used by ramstage
974 # (not for x86 since it can relocate itself in that case)
975 ifneq ($(CONFIG_ARCH_X86),y)
976 check-ramstage-overlap-regions := ramstage
977 check-ramstage-overlap-files :=
978 ifneq ($(CONFIG_PAYLOAD_NONE),y)
979 check-ramstage-overlap-files += $(CONFIG_CBFS_PREFIX)/payload
980 endif
982 # will output one or more lines of "<load address in hex> <memlen in decimal>"
983 cbfs-get-segments-cmd = $(CBFSTOOL) $(obj)/coreboot.pre print -v | sed -n \
984         '\%$(1)%,\%^[^ ]\{4\}%s%    .*load: \(0x[0-9a-fA-F]*\),.*length: [0-9]*/\([0-9]*\).*%\1 \2%p'
986 ramstage-symbol-addr-cmd = $(OBJDUMP_ramstage) -t $(objcbfs)/ramstage.elf | \
987         sed -n '/ $(1)$$/s/^\([0-9a-fA-F]*\) .*/0x\1/p'
989 check-ramstage-overlaps: $(obj)/coreboot.pre
990         programs=$$($(foreach file,$(check-ramstage-overlap-files), \
991                 $(call cbfs-get-segments-cmd,$(file)) ; )) ; \
992         regions=$$($(foreach region,$(check-ramstage-overlap-regions), \
993                 echo $(region) ; \
994                 $(call ramstage-symbol-addr-cmd,_$(region)) ; \
995                 $(call ramstage-symbol-addr-cmd,_e$(region)) ; )) ; \
996         pstart= ; pend= ; \
997         for x in $$programs; do \
998             if [ -z $$pstart ]; then pstart=$$(($$x)) ; continue ; fi ; \
999             pend=$$(($$pstart + $$x)) ; \
1000             rname= ; rstart= ; rend= ; \
1001             for y in $$regions ; do \
1002                 if [ -z $$rname ]; then rname=$$y ; continue ; fi ; \
1003                 if [ -z $$rstart ]; then rstart=$$(($$y)) ; continue ; fi ; \
1004                 rend=$$(($$y)) ; \
1005                 if [ $$pstart -lt $$rend -a $$rstart -lt $$pend ]; then \
1006                     echo "ERROR: Ramstage region _$$rname overlapped by:" \
1007                          $(check-ramstage-overlap-files) ; \
1008                     exit 1 ; \
1009                 fi ; \
1010                 rname= ; rstart= ; rend= ; \
1011             done ; \
1012             pstart= ; pend= ; \
1013         done
1015 INTERMEDIATE+=check-ramstage-overlaps
1016 PHONY+=check-ramstage-overlaps
1017 endif
1019 junit.xml:
1020         echo "Building $(UTIL)"
1021         echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp
1022         echo "<testcase classname='$(UTIL)' name='$(UTIL)'>" >> $@.tmp
1023         -$(MAKE) -j $(CPUS) -C "util/$(UTIL)" clean distclean > $@.tmp.2 2>&1
1024         $(MAKE) -j $(CPUS) -C "util/$(UTIL)" $(MAKETARGET) >> $@.tmp.2 2>&1 && type="system-out" || type="failure"; \
1025         cat $@.tmp.2; \
1026         if [ "$$type" = "failure" ]; then \
1027                 echo "<failure type='buildFailed'>" >> $@.tmp; \
1028                 echo "Building $(UTIL) Failed"; \
1029         else \
1030                 echo "<$$type>" >> $@.tmp; \
1031                 echo "Building $(UTIL) Succeeded"; \
1032         fi; \
1033         echo '<![CDATA[' >> $@.tmp; \
1034         cat $@.tmp.2 >> $@.tmp; \
1035         echo "]]></$$type>" >>$@.tmp
1036         rm -f $@.tmp.2
1037         echo "</testcase>" >> $@.tmp
1038         echo "</testsuite>" >> $@.tmp
1039         mv $@.tmp "util/$(UTIL)/$@"
1040         echo
1042 TOOLLIST= \
1043         cbmem \
1044         ectool \
1045         futility \
1046         inteltool \
1047         intelvbttool \
1048         nvramtool \
1049         superiotool \
1050         viatool
1051 JENKINS_PAYLOAD?=none
1052 CPUS?=4
1053 what-jenkins-does:
1054         util/lint/lint lint-stable --junit
1055         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c $(CPUS) -z -p $(JENKINS_PAYLOAD) -x -X $(top)/abuild-chromeos.xml
1056         util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c $(CPUS) -z -p $(JENKINS_PAYLOAD)
1057         (cd payloads/libpayload; unset COREBOOT_BUILD_DIR; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_LP_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
1058         $(foreach tool, $(TOOLLIST), $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) UTIL="$(tool)" MFLAGS= MAKEFLAGS= MAKETARGET= junit.xml; )
1059         $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) UTIL="romcc" MFLAGS= MAKEFLAGS= MAKETARGET=test junit.xml