aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-01-09 20:38:43 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-08 04:57:30 +0000
commit05d1e9e2fd3760da23b8a2567b5d88faafd1c686 (patch)
treeff9e1830fa30f04c8acd1b0f9c0227700588001c /src/soc/intel/braswell
parent62044c3e571a30c9b25c46cd18dd93a7c22e181d (diff)
soc/intel/braswell,skylake: Drop logo parameters from devicetree
We can never pass memory location of dynamically loaded BMP files in the static devicetree. The parameters passed to FSP are filled at runtime. Change-Id: Ib835ec0d9349ec96d5635e228063f2b7000b70fd Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50361 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/braswell')
-rw-r--r--src/soc/intel/braswell/chip.c2
-rw-r--r--src/soc/intel/braswell/chip.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/intel/braswell/chip.c b/src/soc/intel/braswell/chip.c
index d759602f40..af274acdaa 100644
--- a/src/soc/intel/braswell/chip.c
+++ b/src/soc/intel/braswell/chip.c
@@ -120,8 +120,6 @@ void soc_silicon_init_params(SILICON_INIT_UPD *params)
params->PcdPchUsbHsicPort = config->PcdPchUsbHsicPort;
params->PcdPcieRootPortSpeed = 0;
params->PcdPchSsicEnable = config->PcdPchSsicEnable;
- params->PcdLogoPtr = config->PcdLogoPtr;
- params->PcdLogoSize = config->PcdLogoSize;
params->PcdRtcLock = 0;
params->PMIC_I2CBus = config->PMIC_I2CBus;
params->ISPEnable = config->ISPEnable;
diff --git a/src/soc/intel/braswell/chip.h b/src/soc/intel/braswell/chip.h
index c27ee49ae1..732d73b64f 100644
--- a/src/soc/intel/braswell/chip.h
+++ b/src/soc/intel/braswell/chip.h
@@ -131,8 +131,6 @@ struct soc_intel_braswell_config {
uint8_t PcdPchUsbSsicPort;
uint8_t PcdPchUsbHsicPort;
uint8_t PcdPchSsicEnable;
- uint32_t PcdLogoPtr;
- uint32_t PcdLogoSize;
uint8_t PMIC_I2CBus;
uint8_t ISPEnable;
uint8_t ISPPciDevConfig;