time.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-tbox/time.h
  3.  *
  4.  * Copyright (c) 1997, 1999 Phil Blundell.
  5.  * Copyright (c) 2000 FutureTV Labs Ltd
  6.  *
  7.  * Tbox has no real-time clock -- we get millisecond ticks to update
  8.  * our soft copy.
  9.  */
  10. /*
  11.  * This program is free software; you can redistribute it and/or
  12.  * modify it under the terms of the GNU General Public License
  13.  * as published by the Free Software Foundation; either version
  14.  * 2 of the License, or (at your option) any later version.
  15.  */
  16. #include <asm/io.h>
  17. #include <asm/hardware.h>
  18. #define update_rtc()
  19. static void timer_interrupt (int irq, void *dev_id, struct pt_regs *regs)
  20. {
  21. /* Clear irq */
  22. __raw_writel(1, FPGA1CONT + 0xc); 
  23. __raw_writel(0, FPGA1CONT + 0xc);
  24. do_timer(regs);
  25. }
  26. static inline void setup_timer (void)
  27. {
  28. /*
  29.  * Default the date to 1 Jan 1970 0:0:0
  30.  * You will have to run a time daemon to set the
  31.  * clock correctly at bootup
  32.  */
  33. xtime.tv_sec = mktime(1970, 1, 1, 0, 0, 0);
  34. timer_irq.handler = timer_interrupt;
  35. setup_arm_irq(IRQ_TIMER, &timer_irq);
  36. }