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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-nexuspci/time.h
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000 FutureTV Labs Ltd.
  5.  *
  6.  * The FTV PCI card has no real-time clock.  We get timer ticks from the
  7.  * SCC chip.
  8.  */
  9. /*
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  */
  15. static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  16. {
  17. static int count = 25;
  18. unsigned char stat = __raw_readb(DUART_BASE + 0x14);
  19. if (!(stat & 0x10))
  20. return; /* Not for us */
  21. /* Reset counter */
  22. __raw_writeb(0x90, DUART_BASE + 8);
  23. if (--count == 0) {
  24. static int state = 1;
  25. state ^= 1;
  26. __raw_writeb(0x1a + state, INTCONT_BASE);
  27. __raw_writeb(0x18 + state, INTCONT_BASE);
  28. count = 50;
  29. }
  30. /* Wait for slow rise time */
  31. __raw_readb(DUART_BASE + 0x14);
  32. __raw_readb(DUART_BASE + 0x14);
  33. __raw_readb(DUART_BASE + 0x14);
  34. __raw_readb(DUART_BASE + 0x14);
  35. __raw_readb(DUART_BASE + 0x14);
  36. __raw_readb(DUART_BASE + 0x14);
  37. do_timer(regs);
  38. }
  39. static inline void setup_timer(void)
  40. {
  41. int tick = 3686400 / 16 / 2 / 100;
  42. __raw_writeb(tick & 0xff, DUART_BASE + 0x1c);
  43. __raw_writeb(tick >> 8, DUART_BASE + 0x18);
  44. __raw_writeb(0x80, DUART_BASE + 8);
  45. __raw_writeb(0x10, DUART_BASE + 0x14);
  46. timer_irq.handler = timer_interrupt;
  47. timer_irq.flags = SA_SHIRQ;
  48. setup_arm_irq(IRQ_TIMER, &timer_irq);
  49. }