diff options
author | Daniel Kang <daniel.h.kang@intel.com> | 2020-03-19 14:12:30 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-03-23 09:35:14 +0000 |
commit | 79a219813b3e8186f5e89b2e0cd9f8a921fa088f (patch) | |
tree | db3366033c7330456b8dd30149f13dbc5126afa6 | |
parent | 97ea709d42eb8c4eb5b2c75d6203034d51946b03 (diff) |
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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39682
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com>
-rw-r--r-- | src/mainboard/intel/tglrvp/acpi/mipi_camera.asl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl b/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl index 9cb8817098..de26fd9d05 100644 --- a/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl +++ b/src/mainboard/intel/tglrvp/acpi/mipi_camera.asl @@ -390,10 +390,10 @@ Scope (\_SB.PCI0.I2C5) CTXS(GPP_H12) /* Pull PWREN high */ -#if CONFIG_BOARD_INTEL_TIGERLAKE_RVPY - STXS(GPP_E22) +#if CONFIG(BOARD_INTEL_TGLRVP_UP4) + STXS(GPP_E22) #else - STXS(GPP_R6) + STXS(GPP_R6) #endif Sleep(2) /* reset pulse width */ @@ -416,8 +416,8 @@ Scope (\_SB.PCI0.I2C5) CTXS(GPP_H12) /* Pull PWREN low */ -#if CONFIG_BOARD_INTEL_TIGERLAKE_RVPY - CTXS(GPP_E22) +#if CONFIG(BOARD_INTEL_TGLRVP_UP4) + CTXS(GPP_E22) #else CTXS(GPP_R6) #endif |