soc/intel/skylake/chip.h: Provide enum values for SataMode
The values were verified to be correct with the KabylakeFsp0001 from github. Skylake FSP documentation disagrees so YMMV. Change-Id: I1ee04dbbed48d5376dbc24ae70753b059f2646eb Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/20765 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
e56939e48e
commit
efc0fa09fe
|
@ -138,7 +138,13 @@ struct soc_intel_skylake_config {
|
|||
|
||||
/* SATA related */
|
||||
u8 EnableSata;
|
||||
u8 SataMode;
|
||||
enum {
|
||||
/* Documentation and header files of Skylake FSP disagree on
|
||||
the values, Kaby Lake FSP (KabylakeFsp0001 on github) uses
|
||||
these: */
|
||||
KBLFSP_SATA_MODE_AHCI = 0,
|
||||
KBLFSP_SATA_MODE_RAID = 1,
|
||||
} SataMode;
|
||||
u8 SataSalpSupport;
|
||||
u8 SataPortsEnable[8];
|
||||
u8 SataPortsDevSlp[8];
|
||||
|
|
Loading…
Reference in New Issue