summaryrefslogtreecommitdiff
path: root/src/ec
diff options
context:
space:
mode:
Diffstat (limited to 'src/ec')
-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;
};