Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31284 )
Change subject: soc/intel/cannonlake: Add required FSP UPD changes for CML
......................................................................
Patch Set 9:
(1 comment)
https://review.coreboot.org/#/c/31284/9/src/soc/intel/cannonlake/include/soc...
File src/soc/intel/cannonlake/include/soc/serialio.h:
https://review.coreboot.org/#/c/31284/9/src/soc/intel/cannonlake/include/soc...
PS9, Line 20: typedef enum {
: PchSerialIoDisabled,
: PchSerialIoPci,
: PchSerialIoAcpi,
: PchSerialIoHidden,
: #if IS_ENABLED(CONFIG_SOC_INTEL_COMETLAKE)
: PchSerialIoSkipInit
: #endif
: } PCH_SERIAL_IO_MODE;
@Maulik: lets redefine this as below
#if IS_ENABLED(CONFIG_SOC_INTEL_COMETLAKE)
typedef enum {
PchSerialIoDisabled,
PchSerialIoPci,
PchSerialIoHidden,
PchSerialIoLegacyUart,
PchSerialIoSkipInit
} PCH_SERIAL_IO_MODE;
#else
typedef enum {
PchSerialIoDisabled,
PchSerialIoPci,
PchSerialIoAcpi,
PchSerialIoHidden,
} PCH_SERIAL_IO_MODE;
#endif
as I could see its been different in overall enum field.
Note: SerialIoSkipInit is no more only applicable for UART as part in FSP because you can use the same UPD value in order to skip I2C and SPI controller programming as well if decide to make the same in coreboot.
--
To view, visit
https://review.coreboot.org/c/coreboot/+/31284
To unsubscribe, or for help writing mail filters, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib92b660409ab01d70358042b2ed29b8bf9cab26d
Gerrit-Change-Number: 31284
Gerrit-PatchSet: 9
Gerrit-Owner: Maulik V Vaghela
maulik.v.vaghela@intel.com
Gerrit-Reviewer: Aamir Bohra
aamir.bohra@intel.com
Gerrit-Reviewer: Aaron Durbin
adurbin@chromium.org
Gerrit-Reviewer: Duncan Laurie
dlaurie@chromium.org
Gerrit-Reviewer: Furquan Shaikh
furquan@google.com
Gerrit-Reviewer: Maulik V Vaghela
maulik.v.vaghela@intel.com
Gerrit-Reviewer: Naresh Solanki
naresh.solanki@intel.com
Gerrit-Reviewer: Nico Huber
nico.h@gmx.de
Gerrit-Reviewer: Patrick Rudolph
patrick.rudolph@9elements.com
Gerrit-Reviewer: Patrick Rudolph
siro@das-labor.org
Gerrit-Reviewer: Rizwan Qureshi
rizwan.qureshi@intel.com
Gerrit-Reviewer: Shelley Chen
shchen@google.com
Gerrit-Reviewer: Subrata Banik
subrata.banik@intel.com
Gerrit-Reviewer: V Sowmya
v.sowmya@intel.com
Gerrit-Reviewer: build bot (Jenkins)
no-reply@coreboot.org
Gerrit-CC: Patrick Georgi
pgeorgi@google.com
Gerrit-CC: Paul Menzel
paulepanter@users.sourceforge.net
Gerrit-Comment-Date: Tue, 05 Mar 2019 05:44:51 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment