UPSTREAM: arch/x86: provide verstage support for CONFIG_C_ENVIRONMENT_BOOTBLOCK
When CONFIG_C_ENVIRONMENT_BOOTBLOCK is employed there's no need for a chipset specific verstage entry point because cache-as-ram has already been initialized. Therefore, provide a default entry point for verstage in that environment. BUG=None BRANCH=None TEST=None Change-Id: Idd8f45bd58d3e5b251d1e38cca7ae794b8b77a28 Original-Signed-off-by: Aaron Durbin <adurbin@chromium.org> Original-Reviewed-on: https://review.coreboot.org/14971 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Furquan Shaikh <furquan@google.com> Original-Reviewed-by: Andrey Petrov <andrey.petrov@intel.com> Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/347981 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
parent
9c58fa774f
commit
eea5e1aa83
2 changed files with 27 additions and 0 deletions
|
|
@ -178,6 +178,10 @@ verstage-y += memset.c
|
|||
verstage-y += memcpy.c
|
||||
verstage-y += memmove.c
|
||||
verstage-$(CONFIG_X86_TOP4G_BOOTMEDIA_MAP) += mmap_boot.c
|
||||
# If C environment is used for bootblock it means there's no need
|
||||
# for a chipset-specific car_stage_entry() so use the generic one
|
||||
# which just calls verstage().
|
||||
verstage-$(CONFIG_C_ENVIRONMENT_BOOTBLOCK) += verstage.c
|
||||
|
||||
verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||
|
||||
|
|
|
|||
23
src/arch/x86/verstage.c
Normal file
23
src/arch/x86/verstage.c
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright 2016 Google Inc.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <arch/cpu.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
|
||||
/* Provide an entry point for verstage when it's a separate stage. */
|
||||
void asmlinkage car_stage_entry(void)
|
||||
{
|
||||
verstage();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue