summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/cezanne
diff options
context:
space:
mode:
authorFred Reitberger <reitbergerfred@gmail.com>2022-05-06 15:59:15 -0400
committerFelix Held <felix-coreboot@felixheld.de>2022-05-16 15:22:04 +0000
commit727bebb095c589860008ab41310aae9c1d6fcf19 (patch)
tree9433d4bfebf0a85e6e6de94e43d14e3cd9aee938 /src/soc/amd/cezanne
parentab660f533f7cb2868764a3ae60a245ab858eb314 (diff)
downloadcoreboot-727bebb095c589860008ab41310aae9c1d6fcf19.tar.gz
coreboot-727bebb095c589860008ab41310aae9c1d6fcf19.tar.bz2
coreboot-727bebb095c589860008ab41310aae9c1d6fcf19.zip
soc/amd/cezanne/fsp_m_params: fix modification of constant
mcfg->usb_phy is a pointer to a struct usb_phy_config. The config is constant. Changing a constant is undefined behavior, so create a local static instance of usb_phy_config that can be modified safely. Change-Id: If9b76b869a5b0581f979432ce57cc40f1c253880 Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/64133 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/cezanne')
-rw-r--r--src/soc/amd/cezanne/fsp_m_params.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/amd/cezanne/fsp_m_params.c b/src/soc/amd/cezanne/fsp_m_params.c
index cfe934b64b7b..ba2663a41390 100644
--- a/src/soc/amd/cezanne/fsp_m_params.c
+++ b/src/soc/amd/cezanne/fsp_m_params.c
@@ -150,7 +150,10 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
mcfg->sata_enable = is_dev_enabled(DEV_PTR(sata_0)) || is_dev_enabled(DEV_PTR(sata_1));
if (config->usb_phy_custom) {
- mcfg->usb_phy = (struct usb_phy_config *)&config->usb_phy;
+ /* devicetree config is const, use local copy */
+ static struct usb_phy_config lcl_usb_phy;
+ lcl_usb_phy = config->usb_phy;
+ mcfg->usb_phy = &lcl_usb_phy;
mcfg->usb_phy->Version_Major = FSP_USB_STRUCT_MAJOR_VERSION;
mcfg->usb_phy->Version_Minor = FSP_USB_STRUCT_MINOR_VERSION;
mcfg->usb_phy->TableLength = sizeof(struct usb_phy_config);