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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-ebsa110/time.h
  3.  *
  4.  *  Copyright (C) 1996,1997,1998 Russell King.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  * No real time clock on the evalulation board!
  11.  *
  12.  * Changelog:
  13.  *  10-Oct-1996 RMK Created
  14.  *  04-Dec-1997 RMK Updated for new arch/arm/kernel/time.c
  15.  *  07-Aug-1998 RMK Updated for arch/arm/kernel/leds.c
  16.  *  28-Dec-1998 APH Made leds code optional
  17.  */
  18. #include <asm/leds.h>
  19. extern int  ebsa110_reset_timer(void);
  20. extern void ebsa110_setup_timer(void);
  21. static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  22. {
  23. if (ebsa110_reset_timer()) {
  24. do_leds();
  25. do_timer(regs);
  26. do_profile(regs);
  27. }
  28. }
  29. /*
  30.  * Set up timer interrupt.
  31.  */
  32. static inline void setup_timer(void)
  33. {
  34. ebsa110_setup_timer();
  35. timer_irq.handler = timer_interrupt;
  36. setup_arm_irq(IRQ_EBSA110_TIMER0, &timer_irq);
  37. }