Daniel Kang has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39682 )
Change subject: src/mb/intel/tglrvp: Fix board config flag for TGL-UP4 camera ACPI ......................................................................
src/mb/intel/tglrvp: Fix board config flag for TGL-UP4 camera ACPI
Camera ACPI had an incorrect board config flag for TGL-UP4.
BUG=None BRANCH=None TEST=Build and boot TGLRVP-UP3 or UP4. Start camera app and able to capture images.
Signed-off-by: Daniel Kang daniel.h.kang@intel.com Change-Id: Ided0e146a9240169d3f1f27a86218ac1a942b899 Signed-off-by: Daniel Kang daniel.h.kang@intel.com --- M src/mainboard/intel/tglrvp/acpi/mipi_camera.asl 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/39682/1
diff --git a/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl b/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl index 9cb8817..f90139d 100644 --- a/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl +++ b/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl @@ -390,7 +390,7 @@ CTXS(GPP_H12)
/* Pull PWREN high */ -#if CONFIG_BOARD_INTEL_TIGERLAKE_RVPY +#if CONFIG_BOARD_INTEL_TGLRVP_UP4 STXS(GPP_E22) #else STXS(GPP_R6) @@ -416,7 +416,7 @@ CTXS(GPP_H12)
/* Pull PWREN low */ -#if CONFIG_BOARD_INTEL_TIGERLAKE_RVPY +#if CONFIG_BOARD_INTEL_TGLRVP_UP4 CTXS(GPP_E22) #else CTXS(GPP_R6)