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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-cl7500/time.h
  3.  *
  4.  * Copyright (c) 1996-2000 Russell King.
  5.  *
  6.  * Changelog:
  7.  *  24-Sep-1996 RMK Created
  8.  *  10-Oct-1996 RMK Brought up to date with arch-sa110eval
  9.  *  04-Dec-1997 RMK Updated for new arch/arm/time.c
  10.  */
  11. static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  12. {
  13. do_timer(regs);
  14. do_set_rtc();
  15. do_profile(regs);
  16. {
  17. /* Twinkle the lights. */
  18. static int count, state = 0xff00;
  19. if (count-- == 0) {
  20. state ^= 0x100;
  21. count = 25;
  22. *((volatile unsigned int *)LED_ADDRESS) = state;
  23. }
  24. }
  25. }
  26. /*
  27.  * Set up timer interrupt.
  28.  */
  29. static inline void setup_timer(void)
  30. {
  31. extern void ioctime_init(void);
  32. ioctime_init();
  33. timer_irq.handler = timer_interrupt;
  34. setup_arm_irq(IRQ_TIMER, &timer_irq);
  35. }