Skip to content

Commit

Permalink
mainboard/protectli/vault_adl_n: Enable W/A for missing CLKREQs
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Żygowski <[email protected]>
  • Loading branch information
miczyg1 committed Nov 8, 2024
1 parent d25d148 commit 0346786
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/mainboard/protectli/vault_adl_n/mainboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,14 @@ void mainboard_silicon_init_params(FSP_S_CONFIG *params)
params->PortResetMessageEnable[4] = 1;
params->PortResetMessageEnable[5] = 1;

if (CONFIG(BOARD_PROTECTLI_VP2430)) {
// PMC-PD controller
params->PmcPdEnable = 1;
}
// PMC-PD controller
params->PmcPdEnable = CONFIG(BOARD_PROTECTLI_VP2430);

#if CONFIG(BOARD_PROTECTLI_VP2430)
// Only available with custom FSP. W/A for unused CKLREQs.
params->PchPcieClockGating = 0;
params->PchPciePowerGating = 0;
#endif

// IOM USB config
params->PchUsbOverCurrentEnable = 0;
Expand Down

0 comments on commit 0346786

Please sign in to comment.