time.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.time.c 1.5 05/17/01 18:14:20 cort
  3.  */
  4. #include <linux/config.h> /* CONFIG_HEARTBEAT */
  5. #include <linux/errno.h>
  6. #include <linux/sched.h>
  7. #include <linux/kernel.h>
  8. #include <linux/param.h>
  9. #include <linux/string.h>
  10. #include <linux/mm.h>
  11. #include <asm/machdep.h>
  12. #include <asm/io.h>
  13. #include <linux/timex.h>
  14. unsigned long m68k_get_rtc_time(void)
  15. {
  16. unsigned int year, mon, day, hour, min, sec;
  17. extern void arch_gettod(int *year, int *mon, int *day, int *hour,
  18. int *min, int *sec);
  19. arch_gettod (&year, &mon, &day, &hour, &min, &sec);
  20. if ((year += 1900) < 1970)
  21. year += 100;
  22. return mktime(year, mon, day, hour, min, sec);
  23. }
  24. int m68k_set_rtc_time(unsigned long nowtime)
  25. {
  26.   if (mach_set_clock_mmss)
  27.     return mach_set_clock_mmss (nowtime);
  28.   return -1;
  29. }
  30. void apus_heartbeat (void)
  31. {
  32. #ifdef CONFIG_HEARTBEAT
  33. static unsigned cnt = 0, period = 0, dist = 0;
  34. if (cnt == 0 || cnt == dist)
  35.                 mach_heartbeat( 1 );
  36. else if (cnt == 7 || cnt == dist+7)
  37.                 mach_heartbeat( 0 );
  38. if (++cnt > period) {
  39.                 cnt = 0;
  40.                 /* The hyperbolic function below modifies the heartbeat period
  41.                  * length in dependency of the current (5min) load. It goes
  42.                  * through the points f(0)=126, f(1)=86, f(5)=51,
  43.                  * f(inf)->30. */
  44.                 period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
  45.                 dist = period / 4;
  46. }
  47. #endif
  48. /* should be made smarter */
  49. ppc_md.heartbeat_count = 1;
  50. }