soc/intel/tigerlake: Enable SATA
Configure SATA FSP UPD according to mainboard design. BUG=none BRANCH=none TEST=Build and boot tigerlake rvp board with SATA memory Signed-off-by: Wonkyu Kim <wonkyu.kim@intel.com> Change-Id: I9350d71d76cd3d449fd959b5398d5ac653bc459e Reviewed-on: https://review.coreboot.org/c/coreboot/+/38504 Reviewed-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-by: Subrata Banik <subrata.banik@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
8b3380044d
commit
815d96a975
|
@ -121,6 +121,20 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
||||||
/* PCH UART selection for FSP Debug */
|
/* PCH UART selection for FSP Debug */
|
||||||
params->SerialIoDebugUartNumber = CONFIG_UART_FOR_CONSOLE;
|
params->SerialIoDebugUartNumber = CONFIG_UART_FOR_CONSOLE;
|
||||||
|
|
||||||
|
/* SATA */
|
||||||
|
dev = pcidev_on_root(PCH_DEV_SLOT_SATA, 0);
|
||||||
|
if (!dev)
|
||||||
|
params->SataEnable = 0;
|
||||||
|
else {
|
||||||
|
params->SataEnable = dev->enabled;
|
||||||
|
params->SataMode = config->SataMode;
|
||||||
|
params->SataSalpSupport = config->SataSalpSupport;
|
||||||
|
memcpy(params->SataPortsEnable, config->SataPortsEnable,
|
||||||
|
sizeof(params->SataPortsEnable));
|
||||||
|
memcpy(params->SataPortsDevSlp, config->SataPortsDevSlp,
|
||||||
|
sizeof(params->SataPortsDevSlp));
|
||||||
|
}
|
||||||
|
|
||||||
mainboard_silicon_init_params(params);
|
mainboard_silicon_init_params(params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue