5ee8283250
Add early SuperIO initialization in bootblock to enable early console. Also, remove some southbridge-specific initialization that has been moved to southbridge bootblock initialization in previous patch. The board obtains few additional timestamps: start of bootblock, end of bootblock, starting to load romstage and finished loading romstage. TEST=boot apu2 and launch Debian with Linux kernel 4.14.50 Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Change-Id: If770eff467b9a71d21eeb0963b6c3ebe72a88ef3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/36915 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
31 lines
924 B
Makefile
31 lines
924 B
Makefile
#
|
|
# This file is part of the coreboot project.
|
|
#
|
|
# Copyright (C) 2012 Advanced Micro Devices, Inc.
|
|
# Copyright (C) 2016 Eltan B.V.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
bootblock-y += bootblock.c
|
|
|
|
romstage-y += BiosCallOuts.c
|
|
romstage-y += OemCustomize.c
|
|
romstage-y += gpio_ftns.c
|
|
|
|
ramstage-y += BiosCallOuts.c
|
|
ramstage-y += OemCustomize.c
|
|
ramstage-y += gpio_ftns.c
|
|
|
|
# Order of names in SPD_SOURCES is important!
|
|
SPD_SOURCES = HYNIX-2G-1333
|
|
SPD_SOURCES += HYNIX-4G-1333-ECC
|
|
|
|
subdirs-y += variants/$(VARIANT_DIR)
|