tick_freeze() introduced by suspend-to-idle in commit124cf9117c("PM / sleep: Make it possible to quiesce timers during suspend-to-idle") uses timekeeping_suspend() instead of syscore_suspend() during suspend-to-idle. As a consequence generic sched_clock will keep going because sched_clock_suspend() and sched_clock_resume() are not invoked during suspend-to-idle which can result in a generic sched_clock wrap. On a ARM system with suspend-to-idle enabled, sched_clock is registered as "56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns", which means the real wrapping duration is 8796093022202ns. [ 134.551779] suspend-to-idle suspend (timekeeping_suspend()) [ 1204.912239] suspend-to-idle resume (timekeeping_resume()) ...... [ 1206.912239] suspend-to-idle suspend (timekeeping_suspend()) [ 5880.502807] suspend-to-idle resume (timekeeping_resume()) ...... [ 6000.403724] suspend-to-idle suspend (timekeeping_suspend()) [ 8035.753167] suspend-to-idle resume (timekeeping_resume()) ...... [ 8795.786684] (2)[321:charger_thread]...... [ 8795.788387] (2)[321:charger_thread]...... [ 0.057226] (0)[0:swapper/0]...... [ 0.061447] (2)[0:swapper/2]...... sched_clock was not stopped during suspend-to-idle, and sched_clock_poll hrtimer was not expired because timekeeping_suspend() was invoked during suspend-to-idle. It makes sched_clock wrap at kernel time 8796s. To prevent this, invoke sched_clock_suspend() and sched_clock_resume() in tick_freeze() together with timekeeping_suspend() and timekeeping_resume(). Fixes:124cf9117c(PM / sleep: Make it possible to quiesce timers during suspend-to-idle) Signed-off-by: Chang-An Chen <chang-an.chen@mediatek.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Matthias Brugger <matthias.bgg@gmail.com> Cc: John Stultz <john.stultz@linaro.org> Cc: Kees Cook <keescook@chromium.org> Cc: Corey Minyard <cminyard@mvista.com> Cc: <linux-mediatek@lists.infradead.org> Cc: <linux-arm-kernel@lists.infradead.org> Cc: Stanley Chu <stanley.chu@mediatek.com> Cc: <kuohong.wang@mediatek.com> Cc: <freddy.hsin@mediatek.com> Cc: stable@vger.kernel.org Link: https://lkml.kernel.org/r/1553828349-8914-1-git-send-email-chang-an.chen@mediatek.com
		
			
				
	
	
		
			33 lines
		
	
	
		
			890 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			890 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef _KERNEL_TIME_TIMEKEEPING_H
 | |
| #define _KERNEL_TIME_TIMEKEEPING_H
 | |
| /*
 | |
|  * Internal interfaces for kernel/time/
 | |
|  */
 | |
| extern ktime_t ktime_get_update_offsets_now(unsigned int *cwsseq,
 | |
| 					    ktime_t *offs_real,
 | |
| 					    ktime_t *offs_boot,
 | |
| 					    ktime_t *offs_tai);
 | |
| 
 | |
| extern int timekeeping_valid_for_hres(void);
 | |
| extern u64 timekeeping_max_deferment(void);
 | |
| extern void timekeeping_warp_clock(void);
 | |
| extern int timekeeping_suspend(void);
 | |
| extern void timekeeping_resume(void);
 | |
| #ifdef CONFIG_GENERIC_SCHED_CLOCK
 | |
| extern int sched_clock_suspend(void);
 | |
| extern void sched_clock_resume(void);
 | |
| #else
 | |
| static inline int sched_clock_suspend(void) { return 0; }
 | |
| static inline void sched_clock_resume(void) { }
 | |
| #endif
 | |
| 
 | |
| extern void do_timer(unsigned long ticks);
 | |
| extern void update_wall_time(void);
 | |
| 
 | |
| extern seqlock_t jiffies_lock;
 | |
| 
 | |
| #define CS_NAME_LEN	32
 | |
| 
 | |
| #endif
 |