summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorBora Guvendik <bora.guvendik@intel.com>2022-04-28 16:24:09 -0700
committerFelix Held <felix-coreboot@felixheld.de>2022-05-16 13:12:33 +0000
commit25f69d74c8d0f15b4b7797dd61fa7082bdc62355 (patch)
treecc8a1ac5ec3e4ac162ab4a73688a6cacdde5c5a0 /src/drivers
parenta15b25f6fd3b121913508bf6b603856d5026be2c (diff)
src/driver/intel/mipi_camera: Update ACPI entry to provide silicon info
CPUID_RAPTORLAKE_P_J0 is ES. Add it to generate is_es = 1 in ACPI Signed-off-by: Bora Guvendik <bora.guvendik@intel.com> Change-Id: Ib8d57f7fb0b3d15bc4bcdeae47bfbdde17e13118 Reviewed-on: https://review.coreboot.org/c/coreboot/+/64000 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nick Vaccaro <nvaccaro@google.com>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/intel/mipi_camera/camera.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/mipi_camera/camera.c b/src/drivers/intel/mipi_camera/camera.c
index 5e3c4bb05a..f7e19ef274 100644
--- a/src/drivers/intel/mipi_camera/camera.c
+++ b/src/drivers/intel/mipi_camera/camera.c
@@ -139,7 +139,7 @@ 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_ALDERLAKE_N_A0 || cpu_id == CPUID_RAPTORLAKE_P_J0)
acpi_dp_add_integer(dsd, "is_es", 1);
else
acpi_dp_add_integer(dsd, "is_es", 0);