mb/intel/cedarisland_crb: Populate 2-socket parameters for FSP-M

These parameters were found to work fine for 2-socket configuration,
for FSP based on tag 16.D.21.

Signed-off-by: Andrey Petrov <anpetrov@fb.com>
Change-Id: I466a7f2951ef307036ddaed0be0aacf98dd2710f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40917
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Maxim Polyakov <max.senia.poliak@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Andrey Petrov 2020-04-30 12:47:25 -07:00 committed by Andrey Petrov
parent 8fb221dbd5
commit f8f9b282b4
1 changed files with 18 additions and 0 deletions

View File

@ -1,8 +1,26 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <arch/mmio.h>
#include <soc/romstage.h>
void mainboard_memory_init_params(FSPM_UPD *mupd)
{
FSP_M_CONFIG *m_cfg = &mupd->FspmConfig;
void *start = (void *) m_cfg;
// BoardId
write8(start + 140, 0x1d);
// BoardTypeBitmask
write32(start + 104, 0x11111111);
// DebugPrintLevel
write8(start + 45, 8);
// KtiLinkSpeedMode
write8(start + 64, 0);
// KtiPrefetchEn
write8(start + 53, 2);
}