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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/hp300/time.c
  3.  *
  4.  *  Copyright (C) 1998 Philip Blundell <philb@gnu.org>
  5.  *
  6.  *  This file contains the HP300-specific time handling code.
  7.  */
  8. #include <asm/ptrace.h>
  9. #include <linux/types.h>
  10. #include <linux/init.h>
  11. #include <linux/sched.h>
  12. #include <linux/kernel_stat.h>
  13. #include <linux/interrupt.h>
  14. #include <asm/machdep.h>
  15. #include <asm/irq.h>
  16. #include <asm/io.h>
  17. #include <asm/system.h>
  18. #include <asm/traps.h>
  19. #include "ints.h"
  20. /* Clock hardware definitions */
  21. #define CLOCKBASE 0xf05f8000
  22. #define CLKCR1 0x1
  23. #define CLKCR2 0x3
  24. #define CLKCR3 CLKCR1
  25. #define CLKSR CLKCR2
  26. #define CLKMSB1 0x5
  27. #define CLKMSB2 0x9
  28. #define CLKMSB3 0xD
  29. /* This is for machines which generate the exact clock. */
  30. #define USECS_PER_JIFFY (1000000/HZ)
  31. #define INTVAL ((10000 / 4) - 1)
  32. static void hp300_tick(int irq, void *dev_id, struct pt_regs *regs)
  33. {
  34.   unsigned long tmp;
  35.   void (*vector)(int, void *, struct pt_regs *) = dev_id;
  36.   in_8(CLOCKBASE + CLKSR);
  37.   asm volatile ("movpw %1@(5),%0" : "=d" (tmp) : "a" (CLOCKBASE));
  38.   vector(irq, NULL, regs);
  39. }
  40. unsigned long hp300_gettimeoffset(void)
  41. {
  42.   /* Read current timer 1 value */
  43.   unsigned char lsb, msb1, msb2;
  44.   unsigned short ticks;
  45.   msb1 = in_8(CLOCKBASE + 5);
  46.   lsb = in_8(CLOCKBASE + 7);
  47.   msb2 = in_8(CLOCKBASE + 5);
  48.   if (msb1 != msb2)
  49.     /* A carry happened while we were reading.  Read it again */
  50.     lsb = in_8(CLOCKBASE + 7);
  51.   ticks = INTVAL - ((msb2 << 8) | lsb);
  52.   return (USECS_PER_JIFFY * ticks) / INTVAL;
  53. }
  54. void __init hp300_sched_init(void (*vector)(int, void *, struct pt_regs *))
  55. {
  56.   out_8(CLOCKBASE + CLKCR2, 0x1); /* select CR1 */
  57.   out_8(CLOCKBASE + CLKCR1, 0x1); /* reset */
  58.   asm volatile(" movpw %0,%1@(5)" : : "d" (INTVAL), "a" (CLOCKBASE));
  59.   sys_request_irq(6, hp300_tick, IRQ_FLG_STD, "timer tick", vector);
  60.   out_8(CLOCKBASE + CLKCR2, 0x1); /* select CR1 */
  61.   out_8(CLOCKBASE + CLKCR1, 0x40); /* enable irq */
  62. }