Skip to content

Commit 6ad16b7

Browse files
computersforpeacebleungatchromium
authored andcommitted
platform/chrome: don't report EC_MKBP_EVENT_SENSOR_FIFO as wakeup
EC_MKBP_EVENT_SENSOR_FIFO events can be triggered for a variety of reasons, and there are very few cases in which they should be treated as wakeup interrupts (particularly, when a certain MOTIONSENSE_MODULE_FLAG_* is set, but this is not even supported in the mainline cros_ec_sensor driver yet). Most of the time, they are benign sensor readings. In any case, the top-level cros_ec device doesn't know enough to determine that they should wake the system, and so it should not report the event. This would be the job of the cros_ec_sensors driver to parse. This patch adds checks to cros_ec_get_next_event() such that it doesn't signal 'wakeup' for events of type EC_MKBP_EVENT_SENSOR_FIFO. This patch is particularly relevant on devices like Scarlet (Rockchip RK3399 tablet, known as Acer Chromebook Tab 10), where the EC firmware reports sensor events much more frequently. This was causing /sys/power/wakeup_count to increase very frequently, often needlessly interrupting our ability to suspend the system. Signed-off-by: Brian Norris <briannorris@chromium.org> Signed-off-by: Benson Leung <bleung@chromium.org>
1 parent 475b087 commit 6ad16b7

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

drivers/platform/chrome/cros_ec_proto.c

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@ static int get_keyboard_state_event(struct cros_ec_device *ec_dev)
575575

576576
int cros_ec_get_next_event(struct cros_ec_device *ec_dev, bool *wake_event)
577577
{
578+
u8 event_type;
578579
u32 host_event;
579580
int ret;
580581

@@ -594,11 +595,22 @@ int cros_ec_get_next_event(struct cros_ec_device *ec_dev, bool *wake_event)
594595
return ret;
595596

596597
if (wake_event) {
598+
event_type = ec_dev->event_data.event_type;
597599
host_event = cros_ec_get_host_event(ec_dev);
598600

599-
/* Consider non-host_event as wake event */
600-
*wake_event = !host_event ||
601-
!!(host_event & ec_dev->host_event_wake_mask);
601+
/*
602+
* Sensor events need to be parsed by the sensor sub-device.
603+
* Defer them, and don't report the wakeup here.
604+
*/
605+
if (event_type == EC_MKBP_EVENT_SENSOR_FIFO)
606+
*wake_event = false;
607+
/* Masked host-events should not count as wake events. */
608+
else if (host_event &&
609+
!(host_event & ec_dev->host_event_wake_mask))
610+
*wake_event = false;
611+
/* Consider all other events as wake events. */
612+
else
613+
*wake_event = true;
602614
}
603615

604616
return ret;

0 commit comments

Comments
 (0)