summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorV Sowmya <v.sowmya@intel.com>2022-09-24 21:47:55 +0530
committerFelix Held <felix-coreboot@felixheld.de>2022-09-27 14:18:27 +0000
commite6d6d3620e20f6eddf92f71e30a7e0c47d403489 (patch)
treeb3e442a347193dfda8d6b201b9ab69315efd5a7b
parentff69f5cb3ff432197960d0659fd56c8f952aa8f8 (diff)
downloadcoreboot-e6d6d3620e20f6eddf92f71e30a7e0c47d403489.tar.gz
coreboot-e6d6d3620e20f6eddf92f71e30a7e0c47d403489.tar.bz2
coreboot-e6d6d3620e20f6eddf92f71e30a7e0c47d403489.zip
drivers/intel/mipi_camera: Remove IPU ES support entry for ADL-N
The current IPU ES entry value is always set to true for ADL-N and kernel picks the ES version of the main IPU FW even for the production bootloader but loading is not successful due to the authentication failure. Alderlake-N silicon has the same CPU id for all the SKU's and also the production binaries are backward compatible with ES parts. This change removes the IPU ES support ACPI entry since the kernel needs to load the production IPU main firmware on both the ES/QS parts. BUG=b:248249032 TEST=Verify the Camera functionality by enabling the IPU secure mode on ADL-N variants with both ES/QS silicon. Signed-off-by: V Sowmya <v.sowmya@intel.com> Change-Id: I75b222e6f2b1ccdc5b6c448eb60afff3c1da3a8b Reviewed-on: https://review.coreboot.org/c/coreboot/+/67813 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Reka Norman <rekanorman@chromium.org>
-rw-r--r--src/drivers/intel/mipi_camera/camera.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/drivers/intel/mipi_camera/camera.c b/src/drivers/intel/mipi_camera/camera.c
index 904bd14edecc..ad473bc0b244 100644
--- a/src/drivers/intel/mipi_camera/camera.c
+++ b/src/drivers/intel/mipi_camera/camera.c
@@ -139,7 +139,6 @@ static void camera_fill_cio2(const struct device *dev)
if (CONFIG(ACPI_ADL_IPU_ES_SUPPORT)) {
u32 cpu_id = cpu_get_cpuid();
if (cpu_id == CPUID_ALDERLAKE_J0 || cpu_id == CPUID_ALDERLAKE_Q0 ||
- cpu_id == CPUID_ALDERLAKE_N_A0 ||
cpu_id == CPUID_RAPTORLAKE_P_J0 ||
cpu_id == CPUID_RAPTORLAKE_P_Q0)
acpi_dp_add_integer(dsd, "is_es", 1);