Attention is currently required from: Caveh Jalali, Forest Mittelberg.
ChromeOS coreboot bot has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/83741?usp=email )
Change subject: UPSTREAM: PPM: Enable driver by default ......................................................................
UPSTREAM: PPM: Enable driver by default
Change the behavior of the CBI bit to disable UCSI instead of enable it. As a result, the PPM driver will be enabled by default.
BUG=b:319124515 TEST=Confirm cros_ec_ucsi runs successfully with CBI bit unset LOW_COVERAGE_REASON=Will add via b:335261254
Original-Change-Id: I0e8f83a42cc6a5f8be3cee19dd671fbdaa0c8620 Original-Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/5646872 Original-Code-Coverage: Zoss zoss-cl-coverage@prod.google.com Original-Reviewed-by: Keith Short keithshort@chromium.org Original-Commit-Queue: Abhishek Pandit-Subedi abhishekpandit@google.com Original-Tested-by: Abhishek Pandit-Subedi abhishekpandit@google.com GitOrigin-RevId: 433f78dcdf5bfc3ebba8d051aa864659b7061da7 Change-Id: Ibf372813a81ae98e67dc58a93d3ad6b392bb864a --- M src/ec/google/chromeec/ec_commands.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/41/83741/1
diff --git a/src/ec/google/chromeec/ec_commands.h b/src/ec/google/chromeec/ec_commands.h index 715f94c..71cd287 100644 --- a/src/ec/google/chromeec/ec_commands.h +++ b/src/ec/google/chromeec/ec_commands.h @@ -6492,7 +6492,7 @@
union ec_common_control { struct { - uint32_t ucsi_enabled : 1; + uint32_t ucsi_disabled : 1; }; uint32_t raw_value; };