b1688caa6f
Add a new utility named bimgtool, a simple tool which generates boot images in the BIMG format. This is the format the Danube boot ROM expects the user supplied code to be wrapped in, it is described by struct bimg_header in the code. This utility will be used to wrap the coreboot bootblock when building Danube targets. BUG=chrome-os-partner:31438 TEST=none yet Change-Id: I08ddb1b70d0b1feb1ffb3d62c4e5e6f07f4acdb7 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 7fe6a9f383b79120f9ae231453d4b3a0f85b4fa7 Original-Change-Id: I63b9f5e09cd1f12765317b38e2a0dd033cdd6d39 Original-Signed-off-by: Paul Burton <paul.burton@imgtec.com> Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/207975 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/8768 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
637 lines
26 KiB
Makefile
637 lines
26 KiB
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright (C) 2011 secunet Security Networks AG
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; version 2 of the License.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program; if not, write to the Free Software
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
##
|
|
|
|
GIT:=$(shell [ -d "$(top)/.git" ] && command -v git)
|
|
|
|
#######################################################################
|
|
# misleadingly named, this is the coreboot version
|
|
export KERNELVERSION := $(strip $(if $(GIT),\
|
|
$(shell git describe --dirty --always || git describe),\
|
|
4.0$(KERNELREVISION)))
|
|
|
|
#######################################################################
|
|
# Test for coreboot toolchain (except when explicitely not requested)
|
|
ifneq ($(NOCOMPILE),1)
|
|
# only run if we're doing a build (not for tests, kconfig, ...), using gcc
|
|
# rationale: gcc versions by Linux distributions tend to be quite messed up
|
|
ifeq ($(CONFIG_COMPILER_GCC),y)
|
|
ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
|
|
_toolchain=$(shell $(CC_x86_32) -v 2>&1 |grep -q "gcc version .*coreboot toolchain" && echo coreboot)
|
|
ifneq ($(_toolchain),coreboot)
|
|
$(error Please use the coreboot toolchain (or prove that your toolchain works))
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
#######################################################################
|
|
# Basic component discovery
|
|
MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
|
|
export MAINBOARDDIR
|
|
|
|
## Final build results, which CBFSTOOL uses to create the final
|
|
## rom image file, are placed under $(objcbfs).
|
|
## These typically have suffixes .debug .elf .bin and .map
|
|
export objcbfs := $(obj)/cbfs/$(call strip_quotes,$(CONFIG_CBFS_PREFIX))
|
|
|
|
## Based on the active configuration, Makefile conditionally collects
|
|
## the required assembly includes and saves them in a file.
|
|
## Such files that do not have a clear one-to-one relation to a source
|
|
## file under src/ are placed and built under $(objgenerated)
|
|
export objgenerated := $(obj)/generated
|
|
|
|
#######################################################################
|
|
# root rule to resolve if in build mode (ie. configuration exists)
|
|
real-target: $(obj)/config.h coreboot
|
|
coreboot: build-dirs $(obj)/coreboot.rom $(obj)/cbfstool $(obj)/rmodtool
|
|
|
|
#######################################################################
|
|
# our phony targets
|
|
PHONY+= clean-abuild coreboot lint lint-stable build-dirs
|
|
|
|
#######################################################################
|
|
# root source directories of coreboot
|
|
subdirs-y := src/lib src/console src/device src/ec src/southbridge src/soc
|
|
subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode
|
|
subdirs-y += util/cbfstool util/sconfig util/nvramtool
|
|
subdirs-y += src/arch/arm src/arch/arm64 src/arch/mips src/arch/riscv
|
|
subdirs-y += src/arch/x86
|
|
subdirs-y += src/mainboard/$(MAINBOARDDIR)
|
|
|
|
subdirs-y += site-local
|
|
|
|
#######################################################################
|
|
# Add source classes and their build options
|
|
classes-y := ramstage romstage bootblock smm smmstub cpu_microcode verstage
|
|
|
|
# Add dynamic classes for rmodules
|
|
$(foreach supported_arch,$(ARCH_SUPPORTED), \
|
|
$(eval $(call define_class,rmodules_$(supported_arch),$(supported_arch))))
|
|
|
|
#######################################################################
|
|
# Helper functions for various file placement matters
|
|
#
|
|
# int-add: adds an arbitrary number of space-separated integers in
|
|
# all formats understood by printf(1)
|
|
# int-align: align $1 to $2 units
|
|
# file-size: returns the filesize of the given file
|
|
_toint=$(shell printf "%d" $1)
|
|
_int-add2=$(shell expr $(call _toint,$1) + $(call _toint,$2))
|
|
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)))
|
|
int-align=$(shell A=$(call _toint,$1) B=$(call _toint,$2); expr $$A + \( \( $$B - \( $$A % $$B \) \) % $$B \) )
|
|
file-size=$(shell cat $1 | wc -c)
|
|
|
|
#######################################################################
|
|
# Helper functions for ramstage postprocess
|
|
spc :=
|
|
spc +=
|
|
$(spc) :=
|
|
$(spc) +=
|
|
|
|
# files-in-dir-recursive,dir,files
|
|
files-in-dir-recursive=$(filter $(1)%,$(2))
|
|
|
|
# parent-dir,dir/
|
|
parent-dir=$(dir $(if $(patsubst /%,,$(1)),,/)$(subst $( ),/,$(strip $(subst /, ,$(1)))))
|
|
|
|
# filters out exactly the directory specified
|
|
# filter-out-dir,dir_to_keep,dirs
|
|
filter-out-dir=$(filter-out $(1),$(2))
|
|
|
|
# filters out dir_to_keep and all its parents
|
|
# filter-out-dirs,dir_to_keep,dirs
|
|
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)))
|
|
|
|
# dir-wildcards,dirs
|
|
dir-wildcards=$(addsuffix %,$(1))
|
|
|
|
# files-in-dir,dir,files
|
|
files-in-dir=$(filter-out $(call dir-wildcards,$(call filter-out-dirs,$(1),$(sort $(dir $(2))))),$(call files-in-dir-recursive,$(1),$(2)))
|
|
|
|
#######################################################################
|
|
# reduce command line length by linking the objects of each
|
|
# directory into an intermediate file
|
|
ramstage-postprocess=$(foreach d,$(sort $(dir $(1))), \
|
|
$(eval $(d)ramstage.o: $(call files-in-dir,$(d),$(1)); $$(LD_ramstage) -o $$@ -r $$^ ) \
|
|
$(eval ramstage-objs:=$(d)ramstage.o $(filter-out $(call files-in-dir,$(d),$(1)),$(ramstage-objs))))
|
|
|
|
verstage-c-ccopts:=-D__PRE_RAM__ -D__VER_STAGE__
|
|
verstage-S-ccopts:=-D__PRE_RAM__ -D__VER_STAGE__
|
|
romstage-c-ccopts:=-D__PRE_RAM__
|
|
romstage-S-ccopts:=-D__PRE_RAM__
|
|
ifeq ($(CONFIG_TRACE),y)
|
|
ramstage-c-ccopts:= -finstrument-functions
|
|
endif
|
|
ifeq ($(CONFIG_COVERAGE),y)
|
|
ramstage-c-ccopts+=-fprofile-arcs -ftest-coverage
|
|
endif
|
|
|
|
# try to fetch non-optional submodules if the source is under git
|
|
forgetthis:=$(if $(GIT),$(shell git submodule update --init))
|
|
ifeq ($(CONFIG_USE_BLOBS),y)
|
|
# this is necessary because 3rdparty is update=none, and so is ignored
|
|
# unless explicitly requested and enabled through --checkout
|
|
forgetthis:=$(if $(GIT),$(shell git submodule update --init --checkout 3rdparty))
|
|
endif
|
|
|
|
bootblock-c-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
|
|
bootblock-S-ccopts:=-D__BOOT_BLOCK__ -D__PRE_RAM__
|
|
|
|
smmstub-c-ccopts:=-D__SMM__
|
|
smmstub-S-ccopts:=-D__SMM__
|
|
smm-c-ccopts:=-D__SMM__
|
|
smm-S-ccopts:=-D__SMM__
|
|
|
|
# SMM TSEG base is dynamic
|
|
ifneq ($(CONFIG_SMM_MODULES),y)
|
|
ifeq ($(CONFIG_SMM_TSEG),y)
|
|
smm-c-ccopts += -fpic
|
|
endif
|
|
endif
|
|
|
|
ramstage-c-deps:=$$(OPTION_TABLE_H)
|
|
romstage-c-deps:=$$(OPTION_TABLE_H)
|
|
verstage-c-deps:=$$(OPTION_TABLE_H)
|
|
bootblock-c-deps:=$$(OPTION_TABLE_H)
|
|
smm-c-deps:=$$(OPTION_TABLE_H)
|
|
|
|
#######################################################################
|
|
# Add handler to compile ACPI's ASL
|
|
define ramstage-objs_asl_template
|
|
$(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
|
|
@printf " IASL $$(subst $(top)/,,$$(@))\n"
|
|
$(CC_ramstage) -x assembler-with-cpp -E -MMD -MT $$(@) -D__ACPI__ -P -include $(src)/include/kconfig.h -I$(obj) -I$(src) -I$(src)/include -I$(src)/arch/$(ARCHDIR-$(ARCH-ramstage-y))/include -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
|
|
cd $$(dir $$@); $(IASL) -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl
|
|
mv $$(basename $$@).hex $$(basename $$@).c
|
|
$(CC_ramstage) $$(CFLAGS_ramstage) $$(CPPFLAGS_ramstage) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
|
|
# keep %.o: %.c rule from catching the temporary .c file after a make clean
|
|
mv $$(basename $$@).c $$(basename $$@).hex
|
|
endef
|
|
|
|
#######################################################################
|
|
# Parse plaintext cmos defaults into binary format
|
|
# arg1: source file
|
|
# arg2: binary file name
|
|
cbfs-files-processor-nvramtool= \
|
|
$(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
|
|
printf " CREATE $(2) (from $(1))\n"; $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && mv $(2).tmp $(2))
|
|
|
|
#######################################################################
|
|
# Link VSA binary to ELF-ish stage
|
|
# arg1: source file
|
|
# arg2: binary file name
|
|
cbfs-files-processor-vsa= \
|
|
$(eval $(2): $(1) ; \
|
|
printf " CREATE $(2) (from $(1))\n"; $(OBJCOPY_ramstage) --set-start 0x20 --adjust-vma 0x60000 -I binary -O elf32-i386 -B i386 $(1) $(2).tmp && $(LD_ramstage) -m elf_i386 -e 0x60020 --section-start .data=0x60000 $(2).tmp -o $(2))
|
|
|
|
#######################################################################
|
|
# Add handler for arbitrary files in CBFS
|
|
$(call add-special-class,cbfs-files)
|
|
cbfs-files-handler= \
|
|
$(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
|
|
$(eval $(2)-file:=$(call strip_quotes,$(word 1, $(subst :, ,$($(2)-file))))) \
|
|
$(if $(wildcard $(1)$($(2)-file)), \
|
|
$(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
|
|
$(eval tmp-cbfs-file:= $($(2)-file))) \
|
|
$(if $(strip $($(2)-required)), \
|
|
$(if $(wildcard $(tmp-cbfs-file)),, \
|
|
$(info This build configuration requires $($(2)-required)) \
|
|
$(eval FAILBUILD:=1) \
|
|
)) \
|
|
$(if $(strip $($(2)-align)), \
|
|
$(if $(strip $($(2)-position)), \
|
|
$(info ERROR: It is not allowed to specify both alignment and position for $($(2)-file)) \
|
|
$(eval FAILBUILD:=1) \
|
|
)) \
|
|
$(if $(tmp-cbfs-method), \
|
|
$(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
|
|
$(eval tmp-cbfs-file:=$(shell mkdir -p $(obj)/mainboard/$(MAINBOARDDIR); mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
|
|
$(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
|
|
$(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-compression)|$(strip $($(2)-position))|$($(2)-align))\
|
|
$(eval $(2)-name:=) \
|
|
$(eval $(2)-type:=) \
|
|
$(eval $(2)-compression:=) \
|
|
$(eval $(2)-position:=) \
|
|
$(eval $(2)-required:=) \
|
|
$(eval $(2)-align:=)
|
|
|
|
#######################################################################
|
|
# a variety of flags for our build
|
|
CBFS_COMPRESS_FLAG:=none
|
|
ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
|
|
CBFS_COMPRESS_FLAG:=LZMA
|
|
endif
|
|
|
|
CBFS_PAYLOAD_COMPRESS_FLAG:=none
|
|
ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
|
|
CBFS_PAYLOAD_COMPRESS_FLAG:=LZMA
|
|
endif
|
|
|
|
ifneq ($(CONFIG_LOCALVERSION),"")
|
|
export COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
|
|
endif
|
|
|
|
CPPFLAGS_common := -Isrc -Isrc/include -I$(obj)
|
|
CPPFLAGS_common += -Isrc/device/oprom/include
|
|
CPPFLAGS_common += -include $(src)/include/kconfig.h
|
|
|
|
CFLAGS_common += -pipe -g -nostdinc
|
|
CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
|
|
CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
|
|
CFLAGS_common += -Wstrict-aliasing -Wshadow -Wno-unused-but-set-variable
|
|
ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
|
|
CFLAGS_common += -Werror
|
|
endif
|
|
CFLAGS_common += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
|
|
ifneq ($(GDB_DEBUG),)
|
|
CFLAGS_common += -Og
|
|
else
|
|
CFLAGS_common += -Os
|
|
endif
|
|
|
|
additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/ifdtool \
|
|
$(objutil)/ifdfake $(objutil)/options $(objutil)/fletcher \
|
|
$(objutil)/cbootimage $(objutil)/bimgtool
|
|
|
|
#######################################################################
|
|
# generate build support files
|
|
$(obj)/build.h: .xcompile
|
|
@printf " GEN build.h\n"
|
|
rm -f $(obj)/build.h
|
|
util/genbuild_h/genbuild_h.sh > $(obj)/build.ht
|
|
mv $(obj)/build.ht $(obj)/build.h
|
|
|
|
$(obj)/ldoptions: $(obj)/config.h
|
|
awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@
|
|
|
|
build-dirs:
|
|
mkdir -p $(objcbfs) $(objgenerated)
|
|
|
|
#######################################################################
|
|
# Build the tools
|
|
CBFSTOOL:=$(objutil)/cbfstool/cbfstool
|
|
RMODTOOL:=$(objutil)/cbfstool/rmodtool
|
|
|
|
$(obj)/cbfstool: $(CBFSTOOL)
|
|
cp $< $@
|
|
|
|
$(obj)/rmodtool: $(RMODTOOL)
|
|
cp $< $@
|
|
|
|
_WINCHECK=$(shell uname -o 2> /dev/null)
|
|
STACK=
|
|
ifeq ($(_WINCHECK),Msys)
|
|
STACK=-Wl,--stack,16384000
|
|
endif
|
|
ifeq ($(_WINCHECK),Cygwin)
|
|
STACK=-Wl,--stack,16384000
|
|
endif
|
|
|
|
# this allows ccache to prepend itself
|
|
# (ccache handling happens first)
|
|
ROMCC_BIN= $(objutil)/romcc/romcc
|
|
ROMCC?=$(ROMCC_BIN)
|
|
$(ROMCC_BIN): $(top)/util/romcc/romcc.c
|
|
@printf " HOSTCC $(subst $(obj)/,,$(@)) (this may take a while)\n"
|
|
@# Note: Adding -O2 here might cause problems. For details see:
|
|
@# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
|
|
$(HOSTCC) -g $(STACK) -Wall -o $@ $<
|
|
|
|
IFDTOOL:=$(objutil)/ifdtool/ifdtool
|
|
$(IFDTOOL): $(top)/util/ifdtool/ifdtool.c
|
|
@printf " HOSTCC $(subst $(obj)/,,$(@))\n"
|
|
$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
|
|
|
|
IFDFAKE:=$(objutil)/ifdfake/ifdfake
|
|
$(IFDFAKE): $(top)/util/ifdfake/ifdfake.c
|
|
@printf " HOSTCC $(subst $(obj)/,,$(@))\n"
|
|
$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
|
|
|
|
FLETCHER:=$(objutil)/fletcher/fletcher
|
|
$(FLETCHER): $(top)/util/fletcher/fletcher.c
|
|
@printf " HOSTCC $(subst $(obj)/,,$(@))\n"
|
|
$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
|
|
|
|
CBOOTIMAGE:=$(objutil)/cbootimage/cbootimage
|
|
|
|
subdirs-y += util/nvidia
|
|
|
|
BIMGTOOL:=$(objutil)/bimgtool/bimgtool
|
|
$(BIMGTOOL): $(top)/util/bimgtool/bimgtool.c
|
|
@printf " HOSTCC $(subst $(obj)/,,$(@))\n"
|
|
$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
|
|
|
|
#######################################################################
|
|
# needed objects that every mainboard uses
|
|
# Creation of these is architecture and mainboard independent
|
|
$(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb $(objutil)/sconfig/sconfig
|
|
@printf " SCONFIG $(subst $(src)/,,$(<))\n"
|
|
mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
|
|
$(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
|
|
|
|
ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
|
|
romstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
|
|
|
|
$(objutil)/%.o: $(objutil)/%.c
|
|
@printf " HOSTCC $(subst $(objutil)/,,$(@))\n"
|
|
$(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
|
|
|
|
$(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
|
|
@printf " CC $(subst $(obj)/,,$(@))\n"
|
|
$(CC_ramstage) -MMD $(CFLAGS_ramstage) $(CPPFLAGS_ramstage) $(ramstage-c-ccopts) -c -o $@ $<
|
|
|
|
$(obj)/%.romstage.o $(abspath $(obj))/%.romstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
|
|
@printf " CC $(subst $(obj)/,,$(@))\n"
|
|
$(CC_romstage) -MMD $(CFLAGS_romstage) $(CPPFLAGS_romstage) $(romstage-c-ccopts) -c -o $@ $<
|
|
|
|
$(obj)/%.verstage.o $(abspath $(obj))/%.verstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
|
|
@printf " CC $(subst $(obj)/,,$(@))\n"
|
|
$(CC_verstage) -MMD $(CFLAGS_verstage) $(verstage-c-ccopts) -c -o $@ $<
|
|
|
|
$(obj)/%.bootblock.o $(abspath $(obj))/%.bootblock.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
|
|
@printf " CC $(subst $(obj)/,,$(@))\n"
|
|
$(CC_bootblock) -MMD $(CFLAGS_bootblock) $(CPPFLAGS_bootblock) $(bootblock-c-ccopts) -c -o $@ $<
|
|
|
|
#######################################################################
|
|
# Clean up rules
|
|
clean-abuild:
|
|
rm -rf coreboot-builds
|
|
|
|
clean-for-update-target:
|
|
rm -f $(obj)/ramstage* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
|
|
rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
|
|
rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
|
|
rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
|
|
rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
|
|
rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
|
|
rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
|
|
rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
|
|
$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC_x86_32)" LD="$(LD_x86_32)"
|
|
|
|
clean-target:
|
|
rm -f $(obj)/coreboot*
|
|
|
|
#######################################################################
|
|
# Development utilities
|
|
printcrt0s:
|
|
@echo crt0s=$(crt0s)
|
|
@echo ldscripts=$(ldscripts)
|
|
|
|
update:
|
|
dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
|
|
|
|
lint lint-stable:
|
|
FAILED=0; LINTLOG=`mktemp .tmpconfig.lintXXXXX`; \
|
|
for script in util/lint/$@-*; do \
|
|
echo; echo `basename $$script`; \
|
|
grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
|
|
echo ========; \
|
|
$$script > $$LINTLOG; \
|
|
if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \
|
|
printf "success\n\n"; \
|
|
else \
|
|
echo test failed: ; \
|
|
cat $$LINTLOG; \
|
|
rm -f $$LINTLOG; \
|
|
FAILED=$$(( $$FAILED + 1 )); \
|
|
fi; \
|
|
echo ========; \
|
|
done; \
|
|
test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed."; rm -f $$LINTLOG && exit 1; }; \
|
|
rm -f $$LINTLOG
|
|
|
|
gitconfig:
|
|
[ -d .git ]
|
|
mkdir -p .git/hooks
|
|
for hook in commit-msg pre-commit ; do \
|
|
if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o \
|
|
! -x .git/hooks/$$hook ]; then \
|
|
cp util/gitconfig/$$hook .git/hooks/$$hook; \
|
|
chmod +x .git/hooks/$$hook; \
|
|
fi; \
|
|
done
|
|
git config remote.origin.push HEAD:refs/for/master
|
|
(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)
|
|
|
|
crossgcc: crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv
|
|
|
|
.PHONY: crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 crossgcc-mips crossgcc-riscv
|
|
crossgcc-i386: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-i386-without-gdb
|
|
|
|
crossgcc-x64: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-x64-without-gdb
|
|
|
|
crossgcc-arm: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-armv7a-without-gdb
|
|
|
|
crossgcc-aarch64: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-aarch64-without-gdb
|
|
|
|
crossgcc-mips: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-mips-without-gdb
|
|
|
|
crossgcc-riscv: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-riscv-without-gdb
|
|
|
|
crosstools: crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv
|
|
|
|
.PHONY: crosstools-i386 crosstools-x64 crosstools-arm crosstools-aarch64 crosstools-mips crosstools-riscv
|
|
crosstools-i386: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-i386
|
|
|
|
crosstools-x64: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-x64
|
|
|
|
crosstools-arm: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-armv7a
|
|
|
|
crosstools-aarch64: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-aarch64
|
|
|
|
crosstools-mips: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-mips
|
|
|
|
crosstools-riscv: clean-for-update
|
|
$(MAKE) -C util/crossgcc build-riscv
|
|
|
|
crossgcc-clean: clean-for-update
|
|
$(MAKE) -C util/crossgcc clean
|
|
|
|
tools: $(objutil)/kconfig/conf $(objutil)/cbfstool/cbfstool $(objutil)/cbfstool/rmodtool $(objutil)/nvramtool/nvramtool $(ROMCC_BIN) $(objutil)/sconfig/sconfig $(IFDTOOL) $(IFDFAKE) $(CBOOTIMAGE)
|
|
|
|
###########################################################################
|
|
# Common recipes for all stages
|
|
###########################################################################
|
|
|
|
# find-substr is required for stages like romstage_null and romstage_xip to
|
|
# eliminate the _* part of the string
|
|
find-substr = $(word 1,$(subst _, ,$(1)))
|
|
|
|
# find-class is used to identify the class from the name of the stage
|
|
# The input to this macro can be something like romstage.x or romstage.x.y
|
|
# find-class recursively strips off the suffixes to extract the exact class name
|
|
# e.g.: if romstage.x is provided to find-class, it will remove .x and return romstage
|
|
# if romstage.x.y is provided, it will first remove .y, call find-class with romstage.x
|
|
# and remove .x the next time and finally return romstage
|
|
find-class = $(if $(filter $(1),$(basename $(1))),$(if $(CC_$(1)), $(1), $(call find-substr,$(1))),$(call find-class,$(basename $(1))))
|
|
|
|
$(objcbfs)/%.bin: $(objcbfs)/%.elf
|
|
$(eval class := $(call find-class,$(@F)))
|
|
@printf " OBJCOPY $(subst $(obj)/,,$(@))\n"
|
|
$(OBJCOPY_$(class)) -O binary $< $@
|
|
|
|
$(objcbfs)/%.elf: $(objcbfs)/%.debug
|
|
$(eval class := $(call find-class,$(@F)))
|
|
@printf " OBJCOPY $(subst $(obj)/,,$(@))\n"
|
|
cp $< $@.tmp
|
|
$(NM_$(class)) -n $@.tmp | sort > $(basename $@).map
|
|
$(OBJCOPY_$(class)) --strip-debug $@.tmp
|
|
$(OBJCOPY_$(class)) --add-gnu-debuglink=$< $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
###########################################################################
|
|
# Build the final rom image
|
|
###########################################################################
|
|
|
|
COREBOOT_ROM_DEPENDENCIES:=
|
|
ifeq ($(CONFIG_PAYLOAD_ELF),y)
|
|
COREBOOT_ROM_DEPENDENCIES+=$(CONFIG_PAYLOAD_FILE)
|
|
endif
|
|
ifeq ($(CONFIG_PAYLOAD_SEABIOS),y)
|
|
COREBOOT_ROM_DEPENDENCIES+=seabios
|
|
endif
|
|
ifeq ($(CONFIG_PAYLOAD_FILO),y)
|
|
COREBOOT_ROM_DEPENDENCIES+=filo
|
|
endif
|
|
ifeq ($(CONFIG_PAYLOAD_GRUB2),y)
|
|
COREBOOT_ROM_DEPENDENCIES+=grub2
|
|
endif
|
|
|
|
extract_nth=$(patsubst -%-,%,$(word $(1), $(subst |,- -,-$(2)-)))
|
|
|
|
cbfs-add-cmd = \
|
|
$(CBFSTOOL) $@.tmp \
|
|
add$(if $(filter stage,$(call extract_nth,3,$(file))),-stage)$(if $(filter payload,$(call extract_nth,3,$(file))),-payload) \
|
|
-f $(call extract_nth,1,$(file)) \
|
|
-n $(call extract_nth,2,$(file)) $(if $(filter-out stage,$(call extract_nth,3,$(file))),-t $(call extract_nth,3,$(file)))
|
|
|
|
ifneq ($(CONFIG_UPDATE_IMAGE),y)
|
|
prebuild-files = \
|
|
$(foreach file,$(cbfs-files), \
|
|
$(if $(call extract_nth,6,$(file)),$(CBFSTOOL) $@.tmp locate -f $(call extract_nth,1,$(file)) -n $(call extract_nth,2,$(file)) -a $(call extract_nth,6,$(file))|xargs -i \
|
|
$(cbfs-add-cmd) -b {} &&,\
|
|
$(cbfs-add-cmd) $(if $(call extract_nth,5,$(file)),-b $(call extract_nth,5,$(file))) &&))
|
|
prebuilt-files = $(foreach file,$(cbfs-files), $(call extract_nth,1,$(file)))
|
|
|
|
$(obj)/coreboot.pre1: $(objcbfs)/bootblock.bin $$(prebuilt-files) $(CBFSTOOL) $$(cpu_ucode_cbfs_file)
|
|
$(CBFSTOOL) $@.tmp create -s $(CONFIG_COREBOOT_ROMSIZE_KB)K \
|
|
-B $(objcbfs)/bootblock.bin -a 64 \
|
|
$(CBFSTOOL_PRE1_OPTS)
|
|
$(prebuild-files) true
|
|
$(call add-cpu-microcode-to-cbfs,$@.tmp)
|
|
mv $@.tmp $@
|
|
else
|
|
.PHONY: $(obj)/coreboot.pre1
|
|
$(obj)/coreboot.pre1: $(CBFSTOOL)
|
|
mv $(obj)/coreboot.rom $@
|
|
endif
|
|
|
|
ifeq ($(CONFIG_PAYLOAD_LINUX),y)
|
|
ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_COMMAND_LINE))),)
|
|
ADDITIONAL_PAYLOAD_CONFIG+=-C $(CONFIG_LINUX_COMMAND_LINE)
|
|
endif
|
|
ifneq ($(strip $(call strip_quotes,$(CONFIG_LINUX_INITRD))),)
|
|
ADDITIONAL_PAYLOAD_CONFIG+=-I $(CONFIG_LINUX_INITRD)
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
|
|
REFCODE_BLOB=$(obj)/refcode.rmod
|
|
$(REFCODE_BLOB): $(RMODTOOL)
|
|
$(RMODTOOL) -i $(CONFIG_REFCODE_BLOB_FILE) -o $@
|
|
endif
|
|
|
|
$(obj)/coreboot.rom: $(obj)/coreboot.pre $(objcbfs)/ramstage.elf $(CBFSTOOL) $(call strip_quotes,$(COREBOOT_ROM_DEPENDENCIES)) $$(INTERMEDIATE) $$(VBOOT_STUB) $(REFCODE_BLOB)
|
|
@printf " CBFS $(subst $(obj)/,,$(@))\n"
|
|
cp $(obj)/coreboot.pre $@.tmp
|
|
$(CBFSTOOL) $@.tmp add-stage -f $(objcbfs)/ramstage.elf -n $(CONFIG_CBFS_PREFIX)/ramstage -c $(CBFS_COMPRESS_FLAG)
|
|
ifeq ($(CONFIG_PAYLOAD_NONE),y)
|
|
@printf " PAYLOAD none (as specified by user)\n"
|
|
endif
|
|
ifneq ($(CONFIG_PAYLOAD_FILE),)
|
|
@printf " PAYLOAD $(CONFIG_PAYLOAD_FILE) (compression: $(CBFS_PAYLOAD_COMPRESS_FLAG))\n"
|
|
$(CBFSTOOL) $@.tmp add-payload -f $(CONFIG_PAYLOAD_FILE) -n $(CONFIG_CBFS_PREFIX)/payload -c $(CBFS_PAYLOAD_COMPRESS_FLAG) $(ADDITIONAL_PAYLOAD_CONFIG)
|
|
endif
|
|
ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),)
|
|
ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
|
|
@printf " SeaBIOS Wait up to $(CONFIG_SEABIOS_PS2_TIMEOUT) ms for PS/2 keyboard controller initialization\n"
|
|
$(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_PS2_TIMEOUT) -n etc/ps2-keyboard-spinup
|
|
endif
|
|
endif
|
|
ifeq ($(CONFIG_SEABIOS_VGA_COREBOOT),y)
|
|
@printf " SeaBIOS Adding generated legacy VGA option rom.\n"
|
|
$(CBFSTOOL) $@.tmp add -f $(CONFIG_PAYLOAD_VGABIOS_FILE) -n vgaroms/seavgabios.bin -t raw
|
|
endif
|
|
ifeq ($(CONFIG_INCLUDE_CONFIG_FILE),y)
|
|
@printf " CONFIG $(DOTCONFIG)\n"
|
|
if [ -f $(DOTCONFIG) ]; then \
|
|
echo "# This image was built using git revision" `git rev-parse HEAD` > $(obj)/config.tmp ; \
|
|
sed -e '/^#/d' -e '/^ *$$/d' $(DOTCONFIG) >> $(obj)/config.tmp ; \
|
|
$(CBFSTOOL) $@.tmp add -f $(obj)/config.tmp -n config -t raw; rm -f $(obj)/config.tmp ; fi
|
|
@printf " REVISION build.h\n"
|
|
if [ -f $(obj)/build.h ]; then $(CBFSTOOL) $@.tmp add -f $(obj)/build.h -n revision -t raw; fi
|
|
endif
|
|
ifeq ($(CONFIG_VBOOT_VERIFY_FIRMWARE),y)
|
|
$(CBFSTOOL) $@.tmp add-stage -f $(VBOOT_STUB) -n $(CONFIG_CBFS_PREFIX)/vboot -c $(CBFS_COMPRESS_FLAG)
|
|
endif
|
|
ifeq ($(CONFIG_HAVE_REFCODE_BLOB),y)
|
|
$(CBFSTOOL) $@.tmp add-stage -f $(REFCODE_BLOB) -n $(CONFIG_CBFS_PREFIX)/refcode -c $(CBFS_COMPRESS_FLAG)
|
|
endif
|
|
ifeq ($(CONFIG_PXE_ROM),y)
|
|
$(CBFSTOOL) $@.tmp add -f $(CONFIG_PXE_ROM_FILE) -n pci$(CONFIG_PXE_ROM_ID).rom -t raw
|
|
endif
|
|
ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
|
|
ifeq ($(CONFIG_CPU_MICROCODE_ADDED_DURING_BUILD),y)
|
|
@printf " UPDATE-FIT \n"
|
|
$(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
|
|
endif
|
|
endif
|
|
mv $@.tmp $@
|
|
@printf " CBFSPRINT $(subst $(obj)/,,$(@))\n\n"
|
|
$(CBFSTOOL) $@ print
|
|
|
|
cbfs-files-$(CONFIG_BOOTSPLASH) += bootsplash.jpg
|
|
bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
|
|
bootsplash.jpg-type := bootsplash
|
|
|
|
$(obj)/coreboot.pre: $(objcbfs)/romstage.elf $(obj)/coreboot.pre1 $(CBFSTOOL)
|
|
@printf " CBFS $(subst $(obj)/,,$(@))\n"
|
|
cp $(obj)/coreboot.pre1 $@.tmp
|
|
$(CBFSTOOL) $@.tmp add-stage \
|
|
-f $(objcbfs)/romstage.elf \
|
|
-n $(CONFIG_CBFS_PREFIX)/romstage -c none \
|
|
$(CBFSTOOL_PRE_OPTS)
|
|
mv $@.tmp $@
|
|
|
|
JENKINS_PAYLOAD=none
|
|
what-jenkins-does:
|
|
util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c 4 -z -p $(JENKINS_PAYLOAD)
|
|
(cd payloads/libpayload; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
|
|
$(MAKE) V=$(V) Q=$(Q) -C util/cbmem junit.xml
|