soc/intel/skylake: add some FSP SATA params

This adds SATA parameters for SpinUp, HotPlug and TestMode to the
Skylake FSP 2.0 interface.

Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Change-Id: I7ba67879b78c2cb0fd0b0ce832140b213edd5884
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35186
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Michael Niewöhner
2019-09-01 13:53:09 +02:00
committed by Patrick Georgi
parent 5ea2e405da
commit a1ef94e822
2 changed files with 10 additions and 0 deletions

View File

@ -200,6 +200,8 @@ struct soc_intel_skylake_config {
u8 SataSalpSupport;
u8 SataPortsEnable[8];
u8 SataPortsDevSlp[8];
u8 SataPortsSpinUp[8];
u8 SataPortsHotPlug[8];
u8 SataSpeedLimit;
/* Audio related */
@ -587,6 +589,9 @@ struct soc_intel_skylake_config {
/* Enable/Disable Sata power optimization */
u8 SataPwrOptEnable;
/* Enable/Disable Sata test mode */
u8 SataTestMode;
};
typedef struct soc_intel_skylake_config config_t;