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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: timer.h,v 1.21 1999/04/20 13:22:51 anton Exp $
  2.  * timer.h:  Definitions for the timer chips on the Sparc.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #include <linux/config.h>
  7. #ifndef _SPARC_TIMER_H
  8. #define _SPARC_TIMER_H
  9. #include <asm/system.h>  /* For SUN4M_NCPUS */
  10. #include <asm/sun4paddr.h>
  11. #include <asm/btfixup.h>
  12. /* Timer structures. The interrupt timer has two properties which
  13.  * are the counter (which is handled in do_timer in sched.c) and the limit.
  14.  * This limit is where the timer's counter 'wraps' around. Oddly enough,
  15.  * the sun4c timer when it hits the limit wraps back to 1 and not zero
  16.  * thus when calculating the value at which it will fire a microsecond you
  17.  * must adjust by one.  Thanks SUN for designing such great hardware ;(
  18.  */
  19. /* Note that I am only going to use the timer that interrupts at
  20.  * Sparc IRQ 10.  There is another one available that can fire at
  21.  * IRQ 14. Currently it is left untouched, we keep the PROM's limit
  22.  * register value and let the prom take these interrupts.  This allows
  23.  * L1-A to work.
  24.  */
  25. struct sun4c_timer_info {
  26.   __volatile__ unsigned int cur_count10;
  27.   __volatile__ unsigned int timer_limit10;
  28.   __volatile__ unsigned int cur_count14;
  29.   __volatile__ unsigned int timer_limit14;
  30. };
  31. #define SUN4C_TIMER_PHYSADDR   0xf3000000
  32. #ifdef CONFIG_SUN4
  33. #define SUN_TIMER_PHYSADDR SUN4_300_TIMER_PHYSADDR
  34. #else
  35. #define SUN_TIMER_PHYSADDR SUN4C_TIMER_PHYSADDR
  36. #endif
  37. /* A sun4m has two blocks of registers which are probably of the same
  38.  * structure. LSI Logic's L64851 is told to _decrement_ from the limit
  39.  * value. Aurora behaves similarly but its limit value is compacted in
  40.  * other fashion (it's wider). Documented fields are defined here.
  41.  */
  42. /* As with the interrupt register, we have two classes of timer registers
  43.  * which are per-cpu and master.  Per-cpu timers only hit that cpu and are
  44.  * only level 14 ticks, master timer hits all cpus and is level 10.
  45.  */
  46. #define SUN4M_PRM_CNT_L       0x80000000
  47. #define SUN4M_PRM_CNT_LVALUE  0x7FFFFC00
  48. struct sun4m_timer_percpu_info {
  49.   __volatile__ unsigned int l14_timer_limit;    /* Initial value is 0x009c4000 */
  50.   __volatile__ unsigned int l14_cur_count;
  51.   /* This register appears to be write only and/or inaccessible
  52.    * on Uni-Processor sun4m machines.
  53.    */
  54.   __volatile__ unsigned int l14_limit_noclear;  /* Data access error is here */
  55.   __volatile__ unsigned int cntrl;            /* =1 after POST on Aurora */
  56.   __volatile__ unsigned char space[PAGE_SIZE - 16];
  57. };
  58. struct sun4m_timer_regs {
  59. struct sun4m_timer_percpu_info cpu_timers[SUN4M_NCPUS];
  60. volatile unsigned int l10_timer_limit;
  61. volatile unsigned int l10_cur_count;
  62. /* Again, this appears to be write only and/or inaccessible
  63.  * on uni-processor sun4m machines.
  64.  */
  65. volatile unsigned int l10_limit_noclear;
  66. /* This register too, it must be magic. */
  67. volatile unsigned int foobar;
  68. volatile unsigned int cfg;     /* equals zero at boot time... */
  69. };
  70. extern struct sun4m_timer_regs *sun4m_timers;
  71. #define SUN4D_PRM_CNT_L       0x80000000
  72. #define SUN4D_PRM_CNT_LVALUE  0x7FFFFC00
  73. struct sun4d_timer_regs {
  74. volatile unsigned int l10_timer_limit;
  75. volatile unsigned int l10_cur_countx;
  76. volatile unsigned int l10_limit_noclear;
  77. volatile unsigned int ctrl;
  78. volatile unsigned int l10_cur_count;
  79. };
  80. extern struct sun4d_timer_regs *sun4d_timers;
  81. extern __volatile__ unsigned int *master_l10_counter;
  82. extern __volatile__ unsigned int *master_l10_limit;
  83. /* FIXME: Make do_[gs]ettimeofday btfixup calls */
  84. BTFIXUPDEF_CALL(void, bus_do_settimeofday, struct timeval *tv)
  85. #define bus_do_settimeofday(tv) BTFIXUP_CALL(bus_do_settimeofday)(tv)
  86. #endif /* !(_SPARC_TIMER_H) */