tree: Use boolean for usb_phy_custom

Change-Id: I96decb66d632be874e517ffe1c842cd6124529b1
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/86021
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Elyes Haouas 2025-01-16 16:22:07 +01:00
commit 6457a1b1b8
14 changed files with 14 additions and 14 deletions

View file

@ -41,7 +41,7 @@ chip soc/amd/glinda
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x3,

View file

@ -41,7 +41,7 @@ chip soc/amd/phoenix
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x1,

View file

@ -41,7 +41,7 @@ chip soc/amd/phoenix
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x1,

View file

@ -41,7 +41,7 @@ chip soc/amd/glinda
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x1,

View file

@ -41,7 +41,7 @@ chip soc/amd/phoenix
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x1,

View file

@ -39,7 +39,7 @@ chip soc/amd/mendocino
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x3,

View file

@ -41,7 +41,7 @@ chip soc/amd/phoenix
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO: reenable when PSPP works
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x3,

View file

@ -98,7 +98,7 @@ chip soc/amd/cezanne
register "pspp_policy" = "DXIO_PSPP_BALANCED"
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
/* Left USB C0 Port */
.Usb2PhyPort[0] = {

View file

@ -28,7 +28,7 @@ end
chip soc/amd/cezanne
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
/* Left USB C0 Port */
.Usb2PhyPort[0] = {

View file

@ -85,7 +85,7 @@ chip soc/amd/phoenix
register "pspp_policy" = "DXIO_PSPP_DISABLED" # TODO(b/277214353): reenable when PSPP works
register "s0ix_enable" = "true"
register "usb_phy_custom" = "1"
register "usb_phy_custom" = "true"
register "usb_phy" = "{
.Usb2PhyPort[0] = {
.compdistune = 0x3,

View file

@ -93,7 +93,7 @@ struct soc_amd_cezanne_config {
DXIO_PSPP_POWERSAVE,
} pspp_policy;
uint8_t usb_phy_custom;
bool usb_phy_custom;
struct usb_phy_config usb_phy;
/* eDP phy tuning settings */

View file

@ -103,7 +103,7 @@ struct soc_amd_glinda_config {
DXIO_PSPP_POWERSAVE,
} pspp_policy;
uint8_t usb_phy_custom;
bool usb_phy_custom;
struct usb_phy_config usb_phy;
};

View file

@ -168,7 +168,7 @@ struct soc_amd_mendocino_config {
DXIO_PSPP_POWERSAVE,
} pspp_policy;
uint8_t usb_phy_custom;
bool usb_phy_custom;
struct usb_phy_config usb_phy;
/* Set for PCIe optimization w/a and a double confirming on the result of PCIe Signal
Integrity is highly recommended. */

View file

@ -107,7 +107,7 @@ struct soc_amd_phoenix_config {
DXIO_PSPP_POWERSAVE,
} pspp_policy;
uint8_t usb_phy_custom;
bool usb_phy_custom;
struct usb_phy_config usb_phy;
#if !CONFIG(PLATFORM_USES_FSP2_0)