免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2146 | 回复: 3
打印 上一主题 下一主题

[时钟管理] timekeeping问题求教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-04 15:39 |只看该作者 |倒序浏览
最近在折腾一块老板子,修改其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这个累积值减的却是当前时钟计数器的值,这个结果有什么意义,完全无法理解。。。。

论坛徽章:
0
2 [报告]
发表于 2012-08-04 16:20 |只看该作者
http://blog.chinaunix.net/space. ... blog&id=2837253
搜到相关文章一篇,不过对于其中 clock_count = N * latch + hwclock_value
查看了其他一些板子 比如at91, 也就是直接返回当前寄存器值, 并没有统计总的ticks, 费解。。。。

论坛徽章:
0
3 [报告]
发表于 2012-08-04 17:16 |只看该作者
再折腾了下 参考了其他板子的spec, 感觉可能还真是累积值。
我的板子的timer counter会回滚, 所以bsp不支持clock event & clock src mode, 如果要强制这么用, 硬件不支持, 需要软件做动作, 而且还有局限。。。。

论坛徽章:
0
4 [报告]
发表于 2012-08-10 15:37 |只看该作者
红色表示一般用clocksource来更新的xtime,这个相对比较精准,一般硬件都有clock source,你说的timer counter会回滚很正常,就是简单的计时器一直增加溢出后重新计数。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP