]> www.infradead.org Git - nvme.git/commitdiff
platform/chrome: Add struct ec_response_get_next_event_v3
authorDaisuke Nojiri <dnojiri@chromium.org>
Tue, 4 Jun 2024 17:01:48 +0000 (10:01 -0700)
committerTzung-Bi Shih <tzungbi@kernel.org>
Wed, 5 Jun 2024 02:30:00 +0000 (02:30 +0000)
Add struct ec_response_get_next_event_v3 to upgrade
EC_CMD_GET_NEXT_EVENT to version 3.

Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Link: https://lore.kernel.org/r/20240604170552.2517189-1-dnojiri@chromium.org
Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
include/linux/platform_data/cros_ec_commands.h

index ecc47d5fe23906a2b24a5a545c55d75c723c6d3d..ec598057d1dab529d612a43e886be42045380441 100644 (file)
@@ -3463,6 +3463,34 @@ union __ec_align_offset1 ec_response_get_next_data_v1 {
 };
 BUILD_ASSERT(sizeof(union ec_response_get_next_data_v1) == 16);
 
+union __ec_align_offset1 ec_response_get_next_data_v3 {
+       uint8_t key_matrix[18];
+
+       /* Unaligned */
+       uint32_t host_event;
+       uint64_t host_event64;
+
+       struct __ec_todo_unpacked {
+               /* For aligning the fifo_info */
+               uint8_t reserved[3];
+               struct ec_response_motion_sense_fifo_info info;
+       } sensor_fifo;
+
+       uint32_t buttons;
+
+       uint32_t switches;
+
+       uint32_t fp_events;
+
+       uint32_t sysrq;
+
+       /* CEC events from enum mkbp_cec_event */
+       uint32_t cec_events;
+
+       uint8_t cec_message[16];
+};
+BUILD_ASSERT(sizeof(union ec_response_get_next_data_v3) == 18);
+
 struct ec_response_get_next_event {
        uint8_t event_type;
        /* Followed by event data if any */
@@ -3475,6 +3503,12 @@ struct ec_response_get_next_event_v1 {
        union ec_response_get_next_data_v1 data;
 } __ec_align1;
 
+struct ec_response_get_next_event_v3 {
+       uint8_t event_type;
+       /* Followed by event data if any */
+       union ec_response_get_next_data_v3 data;
+} __ec_align1;
+
 /* Bit indices for buttons and switches.*/
 /* Buttons */
 #define EC_MKBP_POWER_BUTTON   0