This patch renames cbfs_boot_map_with_leak() and cbfs_boot_load_file() to cbfs_map() and cbfs_load() respectively. This is supposed to be the start of a new, better organized CBFS API where the most common operations have the most simple and straight-forward names. Less commonly used variants of these operations (e.g. cbfs_ro_load() or cbfs_region_load()) can be introduced later. It seems unnecessary to keep carrying around "boot" in the names of most CBFS APIs if the vast majority of accesses go to the boot CBFS (instead, more unusual operations should have longer names that describe how they diverge from the common ones). cbfs_map() is paired with a new cbfs_unmap() to allow callers to cleanly reap mappings when desired. A few new cbfs_unmap() calls are added to generic code where it makes sense, but it seems unnecessary to introduce this everywhere in platform or architecture specific code where the boot medium is known to be memory-mapped anyway. In fact, even for non-memory-mapped platforms, sometimes leaking a mapping to the CBFS cache is a much cleaner solution than jumping through hoops to provide some other storage for some long-lived file object, and it shouldn't be outright forbidden when it makes sense. Additionally, remove the type arguments from these function signatures. The goal is to eventually remove type arguments for lookup from the whole CBFS API. Filenames already uniquely identify CBFS files. The type field is just informational, and there should be APIs to allow callers to check it when desired, but it's not clear what we gain from forcing this as a parameter into every single CBFS access when the vast majority of the time it provides no additional value and is just clutter. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: Ib24325400815a9c3d25f66c61829a24a239bb88e Reviewed-on: https://review.coreboot.org/c/coreboot/+/39304 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-by: Mariusz Szafrański <mariuszx.szafranski@intel.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
173 lines
4.3 KiB
C
173 lines
4.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <cbfs.h>
|
|
#include <console/console.h>
|
|
#include <spd_bin.h>
|
|
#include <string.h>
|
|
|
|
#include <AGESA.h>
|
|
#include <amdlib.h>
|
|
#include "Ids.h"
|
|
#include <northbridge/amd/agesa/state_machine.h>
|
|
#include <northbridge/amd/agesa/BiosCallOuts.h>
|
|
#include <northbridge/amd/agesa/dimmSpd.h>
|
|
|
|
#if ENV_X86_64 && CONFIG(NORTHBRIDGE_AMD_PI)
|
|
#error "FIXME: CALLOUT_ENTRY is UINT32 Data, not UINT Data"
|
|
#endif
|
|
|
|
AGESA_STATUS GetBiosCallout (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
AGESA_STATUS status;
|
|
UINTN i;
|
|
|
|
if (ENV_RAMSTAGE) {
|
|
/* One HeapManager serves them all. */
|
|
status = HeapManagerCallout(Func, Data, ConfigPtr);
|
|
if (status != AGESA_UNSUPPORTED)
|
|
return status;
|
|
}
|
|
|
|
#if HAS_AGESA_FCH_OEM_CALLOUT
|
|
if (Func == AGESA_FCH_OEM_CALLOUT) {
|
|
agesa_fch_oem_config(Data, ConfigPtr);
|
|
return AGESA_SUCCESS;
|
|
}
|
|
#endif
|
|
|
|
for (i = 0; i < BiosCalloutsLen; i++) {
|
|
if (BiosCallouts[i].CalloutName == Func)
|
|
break;
|
|
}
|
|
if (i >= BiosCalloutsLen)
|
|
return AGESA_UNSUPPORTED;
|
|
|
|
return BiosCallouts[i].CalloutPtr (Func, Data, ConfigPtr);
|
|
}
|
|
|
|
AGESA_STATUS agesa_NoopUnsupported (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
return AGESA_UNSUPPORTED;
|
|
}
|
|
|
|
AGESA_STATUS agesa_NoopSuccess (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
return AGESA_SUCCESS;
|
|
}
|
|
|
|
AGESA_STATUS agesa_EmptyIdsInitData (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
IDS_NV_ITEM *IdsPtr = ((IDS_CALLOUT_STRUCT *) ConfigPtr)->IdsNvPtr;
|
|
if (Data == IDS_CALLOUT_INIT)
|
|
IdsPtr[0].IdsNvValue = IdsPtr[0].IdsNvId = 0xffff;
|
|
return AGESA_SUCCESS;
|
|
}
|
|
|
|
AGESA_STATUS agesa_Reset (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
AGESA_STATUS Status;
|
|
UINT8 Value;
|
|
UINTN ResetType;
|
|
AMD_CONFIG_PARAMS *StdHeader;
|
|
|
|
ResetType = Data;
|
|
StdHeader = ConfigPtr;
|
|
|
|
//
|
|
// Perform the RESET based upon the ResetType. In case of
|
|
// WARM_RESET_WHENEVER and COLD_RESET_WHENEVER, the request will go to
|
|
// AmdResetManager. During the critical condition, where reset is required
|
|
// immediately, the reset will be invoked directly by writing 0x04 to port
|
|
// 0xCF9 (Reset Port).
|
|
//
|
|
switch (ResetType) {
|
|
case WARM_RESET_WHENEVER:
|
|
case COLD_RESET_WHENEVER:
|
|
break;
|
|
|
|
case WARM_RESET_IMMEDIATELY:
|
|
case COLD_RESET_IMMEDIATELY:
|
|
Value = 0x06;
|
|
LibAmdIoWrite (AccessWidth8, 0xCf9, &Value, StdHeader);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
Status = 0;
|
|
return Status;
|
|
}
|
|
|
|
AGESA_STATUS agesa_RunFuncOnAp (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
AMD_CONFIG_PARAMS *StdHeader = ConfigPtr;
|
|
AGESA_STATUS status;
|
|
AP_EXE_PARAMS ApExeParams;
|
|
|
|
memset(&ApExeParams, 0, sizeof(AP_EXE_PARAMS));
|
|
memcpy(&ApExeParams.StdHeader, StdHeader, sizeof(*StdHeader));
|
|
|
|
ApExeParams.FunctionNumber = Func;
|
|
ApExeParams.RelatedDataBlock = ConfigPtr;
|
|
|
|
status = module_dispatch(AMD_LATE_RUN_AP_TASK, &ApExeParams.StdHeader);
|
|
|
|
ASSERT(status == AGESA_SUCCESS);
|
|
return status;
|
|
}
|
|
|
|
#if defined(AGESA_GNB_GFX_GET_VBIOS_IMAGE)
|
|
AGESA_STATUS agesa_GfxGetVbiosImage(UINT32 Func, UINTN FchData, VOID *ConfigPrt)
|
|
{
|
|
GFX_VBIOS_IMAGE_INFO *pVbiosImageInfo = (GFX_VBIOS_IMAGE_INFO *)ConfigPrt;
|
|
pVbiosImageInfo->ImagePtr = cbfs_map("pci"CONFIG_VGA_BIOS_ID".rom", NULL);
|
|
/* printk(BIOS_DEBUG, "IMGptr=%x\n", pVbiosImageInfo->ImagePtr); */
|
|
return pVbiosImageInfo->ImagePtr == NULL ? AGESA_WARNING : AGESA_SUCCESS;
|
|
}
|
|
#endif
|
|
|
|
AGESA_STATUS agesa_ReadSpd (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
if (!ENV_ROMSTAGE)
|
|
return AGESA_UNSUPPORTED;
|
|
|
|
return AmdMemoryReadSPD (Func, Data, ConfigPtr);
|
|
}
|
|
|
|
AGESA_STATUS agesa_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|
{
|
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
|
|
|
if (!ENV_ROMSTAGE)
|
|
return AGESA_UNSUPPORTED;
|
|
|
|
if (info->MemChannelId > 0)
|
|
return AGESA_UNSUPPORTED;
|
|
if (info->SocketId != 0)
|
|
return AGESA_UNSUPPORTED;
|
|
if (info->DimmId != 0)
|
|
return AGESA_UNSUPPORTED;
|
|
|
|
/* Read index 0, first SPD_SIZE bytes of spd.bin file. */
|
|
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, 0) < 0)
|
|
die("No SPD data\n");
|
|
|
|
return AGESA_SUCCESS;
|
|
}
|
|
|
|
#if HAS_AGESA_FCH_OEM_CALLOUT
|
|
void agesa_fch_oem_config(uintptr_t Data, AMD_CONFIG_PARAMS *StdHeader)
|
|
{
|
|
struct sysinfo *cb_NA = NULL;
|
|
|
|
if (StdHeader->Func == AMD_INIT_RESET) {
|
|
printk(BIOS_DEBUG, "Fch OEM config in INIT RESET\n");
|
|
board_FCH_InitReset(cb_NA, (FCH_RESET_DATA_BLOCK *)Data);
|
|
} else if (StdHeader->Func == AMD_INIT_ENV) {
|
|
printk(BIOS_DEBUG, "Fch OEM config in INIT ENV\n");
|
|
board_FCH_InitEnv(cb_NA, (FCH_DATA_BLOCK *)Data);
|
|
}
|
|
}
|
|
#endif
|