summaryrefslogtreecommitdiff
path: root/src/ec/google/chromeec
diff options
context:
space:
mode:
authorPavan Holla <pholla@chromium.org>2024-04-18 14:19:51 +0000
committerFelix Held <felix-coreboot@felixheld.de>2024-04-19 20:21:12 +0000
commit8d6625a59575caf2041c74690e817d7db4b629f3 (patch)
treed764cf7a8f87ae853e6ea19bc6e1cc46c59a6c75 /src/ec/google/chromeec
parent552a179810232b850e0da5531d611128bcdebbd4 (diff)
ec/google/chromeec: Update ec_cmd_api.h and ec_commands.h
Generated using update_ec_headers.sh [EC-DIR]. The original include/ec_commands.h version in the EC repo is: b3b35d6433 PPM: Rename ucsi_disabled to ucsi_enabled The original include/ec_cmd_api.h version in the EC repo is: 562316a71e include: Add fingerprint host commands to ec_cmd_api.h BUG=b:333078787 TEST=cros build-packages --board brox \ chromeos-bootimage depthcharge coreboot TEST=cros build-packages --board brya \ chromeos-bootimage depthcharge coreboot BRANCH=none Change-Id: I94b509cd6ad8f24bfc3b44ef02633d06320f1e22 Signed-off-by: Pavan Holla <pholla@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81965 Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Caveh Jalali <caveh@chromium.org>
Diffstat (limited to 'src/ec/google/chromeec')
-rw-r--r--src/ec/google/chromeec/ec_commands.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ec/google/chromeec/ec_commands.h b/src/ec/google/chromeec/ec_commands.h
index 0d474cb793..f57b699c87 100644
--- a/src/ec/google/chromeec/ec_commands.h
+++ b/src/ec/google/chromeec/ec_commands.h
@@ -1697,6 +1697,10 @@ enum ec_feature_code {
* The MCU is System Companion Processor Core 1
*/
EC_FEATURE_SCP_C1 = 53,
+ /*
+ * The EC supports UCSI PPM.
+ */
+ EC_FEATURE_UCSI_PPM = 54,
};
#define EC_FEATURE_MASK_0(event_code) BIT(event_code % 32)
@@ -6355,7 +6359,7 @@ enum cbi_data_tag {
union ec_common_control {
struct {
- uint32_t bcic_enabled : 1; /* Unused. Take it over as yours. */
+ uint32_t ucsi_enabled : 1;
};
uint32_t raw_value;
};