mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
If our 32-bit usec timer is close to overflow, we may deep sleep several times in succession without making any adjustment to our count, causing deadlines on the other side (eg. HOOK_TICK expiration) to be reached much slower than expected. Avoid this by not entering deep sleep if our timer is about to overflow. This will result in a <= HOOK_TICK_INTERVAL (200ms interval) period of not entering deep sleep, every ~4300 seconds. BUG=chrome-os-partner:59240 BRANCH=gru TEST=Verify 3x kevin units survive 16 hours in S3 without EC watchdog. Change-Id: I2126458be8820f78212e19c2bb79242ff1194f6f Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/409673 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Shawn N <shawnn@chromium.org>
36 lines
997 B
C
36 lines
997 B
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* NPCX-specific hwtimer module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_HWTIMER_CHIP_H
|
|
#define __CROS_EC_HWTIMER_CHIP_H
|
|
|
|
/* Channel definition for ITIM */
|
|
#define ITIM_EVENT_NO ITIM16_1
|
|
#define ITIM_WDG_NO ITIM16_5
|
|
|
|
/* Use ITIM32 as main hardware timer */
|
|
#define TICK_ITIM32_MAX_CNT 0xFFFFFFFF
|
|
/* Maximum deadline of event */
|
|
#define EVT_MAX_EXPIRED_US TICK_ITIM32_MAX_CNT
|
|
|
|
/* Clock source for ITIM16 */
|
|
enum ITIM_SOURCE_CLOCK_T {
|
|
ITIM_SOURCE_CLOCK_APB2 = 0,
|
|
ITIM_SOURCE_CLOCK_32K = 1,
|
|
};
|
|
|
|
/* Initialize ITIM16 timer */
|
|
void init_hw_timer(int itim_no, enum ITIM_SOURCE_CLOCK_T source);
|
|
|
|
/* Returns the counter value of event timer */
|
|
uint16_t __hw_clock_event_count(void);
|
|
|
|
/* Returns time delay because of deep idle */
|
|
uint32_t __hw_clock_get_sleep_time(uint16_t pre_evt_cnt);
|
|
|
|
#endif /* __CROS_EC_HWTIMER_CHIP_H */
|