mfd: cros_ec: Update the EC feature codes
authorEnric Balletbo i Serra <enric.balletbo@collabora.com>
Wed, 8 May 2019 09:19:54 +0000 (11:19 +0200)
committerLee Jones <lee.jones@linaro.org>
Tue, 14 May 2019 07:13:27 +0000 (08:13 +0100)
Update the feature enum for the Chromebook Embedded Controller to the
latest version. Some of these enums are still not used in the kernel but
we might be also interested on have these enums up to date. Userspace
can use them to query the features to the EC via the cros-ec character
device.

While here, also fix a typo in one comment in the enum.

Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
include/linux/mfd/cros_ec_commands.h

index 0e91f13dd4bf2e3792a4dfb70aae0c88620880a0..dcec96f0187924948e322c539589abd25fa02038 100644 (file)
@@ -840,7 +840,7 @@ enum ec_feature_code {
         * (Common Smart Battery System Interface Specification)
         */
        EC_FEATURE_SMART_BATTERY = 18,
-       /* EC can dectect when the host hangs. */
+       /* EC can detect when the host hangs. */
        EC_FEATURE_HANG_DETECT = 19,
        /* Report power information, for pit only */
        EC_FEATURE_PMU = 20,
@@ -852,10 +852,40 @@ enum ec_feature_code {
        EC_FEATURE_USB_MUX = 23,
        /* Motion Sensor code has an internal software FIFO */
        EC_FEATURE_MOTION_SENSE_FIFO = 24,
+       /* Support temporary secure vstore */
+       EC_FEATURE_VSTORE = 25,
+       /* EC decides on USB-C SS mux state, muxes configured by host */
+       EC_FEATURE_USBC_SS_MUX_VIRTUAL = 26,
        /* EC has RTC feature that can be controlled by host commands */
        EC_FEATURE_RTC = 27,
+       /* The MCU exposes a Fingerprint sensor */
+       EC_FEATURE_FINGERPRINT = 28,
+       /* The MCU exposes a Touchpad */
+       EC_FEATURE_TOUCHPAD = 29,
+       /* The MCU has RWSIG task enabled */
+       EC_FEATURE_RWSIG = 30,
+       /* EC has device events support */
+       EC_FEATURE_DEVICE_EVENT = 31,
+       /* EC supports the unified wake masks for LPC/eSPI systems */
+       EC_FEATURE_UNIFIED_WAKE_MASKS = 32,
+       /* EC supports 64-bit host events */
+       EC_FEATURE_HOST_EVENT64 = 33,
+       /* EC runs code in RAM (not in place, a.k.a. XIP) */
+       EC_FEATURE_EXEC_IN_RAM = 34,
        /* EC supports CEC commands */
        EC_FEATURE_CEC = 35,
+       /* EC supports tight sensor timestamping. */
+       EC_FEATURE_MOTION_SENSE_TIGHT_TIMESTAMPS = 36,
+       /*
+        * EC supports tablet mode detection aligned to Chrome and allows
+        * setting of threshold by host command using
+        * MOTIONSENSE_CMD_TABLET_MODE_LID_ANGLE.
+        */
+       EC_FEATURE_REFINED_TABLET_MODE_HYSTERESIS = 37,
+       /* EC supports audio codec. */
+       EC_FEATURE_AUDIO_CODEC = 38,
+       /* EC Supports SCP. */
+       EC_FEATURE_SCP = 39,
        /* The MCU is an Integrated Sensor Hub */
        EC_FEATURE_ISH = 40,
 };