- 论坛徽章:
- 0
|
最近在折腾一块老板子,修改其bsp使其支持clock event & clock src, 但是在timekeeping卡住了,
时钟中断会在update_wall_time里面, 更新墙上时间,其中
/**
752 * update_wall_time - Uses the current clocksource to increment the wall time
753 *
754 * Called from the timer interrupt, must hold a write on xtime_lock.
755 */
756 void update_wall_time(void)
757 {
758 struct clocksource *clock;
759 cycle_t offset;
760 u64 nsecs;
761
762 /* Make sure we're fully resumed: */
763 if (unlikely(timekeeping_suspended))
764 return;
765
766 clock = timekeeper.clock;
767 #ifdef CONFIG_GENERIC_TIME
768 offset = (clock->read(clock) - clock->cycle_last) & clock->mask;
769 #else
770 offset = timekeeper.cycle_interval;
771 #endif
772 timekeeper.xtime_nsec = (s64)xtime.tv_nsec << timekeeper.shift;
773
774 /* normally this loop will run just once, however in the
775 * case of lost or late ticks, it will accumulate correctly.
776 */
777 while (offset >= timekeeper.cycle_interval) {
778 u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift;
779
其中标红的一句我无法理解, 按照道理应该是统计两次中断间已走过的ticks来决定更新多少xtime, 但是拿去和cycle_last这个累积值减的却是当前时钟计数器的值,这个结果有什么意义,完全无法理解。。。。 |
|