soc/intel/*lake: Load vbt when it's needed
That removes the need for another global variable. Change-Id: I25e12ba724836de4c8afb25cd347cafe6df8cea9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/21907 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -25,8 +25,6 @@
|
||||
#include <soc/ramstage.h>
|
||||
#include <string.h>
|
||||
|
||||
static void *vbt;
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
static const char *soc_acpi_name(const struct device *dev)
|
||||
{
|
||||
@@ -180,11 +178,8 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
||||
/* Parse device tree and enable/disable devices */
|
||||
parse_devicetree(params);
|
||||
|
||||
/* Save VBT info and mapping */
|
||||
vbt = vbt_get();
|
||||
|
||||
/* Load VBT before devicetree-specific config. */
|
||||
params->GraphicsConfigPtr = (uintptr_t)vbt;
|
||||
params->GraphicsConfigPtr = (uintptr_t)vbt_get();
|
||||
|
||||
/* Set USB OC pin to 0 first */
|
||||
for (i = 0; i < ARRAY_SIZE(params->Usb2OverCurrentPin); i++) {
|
||||
|
||||
Reference in New Issue
Block a user