source: rtems/c/src/lib/libcpu/mips64orion/timer/timer.c @ 0836603

4.104.114.84.95
Last change on this file since 0836603 was 0971cd5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/11/96 at 19:15:09

added $ string to file header

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/*  timer.c
2 *
3 *  This file contains the initialization code for the IDT 4650 timer driver.
4 *
5 *  Author:     Craig Lebakken <craigl@transition.com>
6 *
7 *  COPYRIGHT (c) 1996 by Transition Networks Inc.
8 *
9 *  To anyone who acknowledges that this file is provided "AS IS"
10 *  without any express or implied warranty:
11 *      permission to use, copy, modify, and distribute this file
12 *      for any purpose is hereby granted without fee, provided that
13 *      the above copyright notice and this notice appears in all
14 *      copies, and that the name of Transition Networks not be used in
15 *      advertising or publicity pertaining to distribution of the
16 *      software without specific, written prior permission.
17 *      Transition Networks makes no representations about the suitability
18 *      of this software for any purpose.
19 *
20 *  derived from src/lib/libbsp/no_cpu/no_bsp/timer/timer.c
21 *
22 *  This file manages the benchmark timer used by the RTEMS Timing Test
23 *  Suite.  Each measured time period is demarcated by calls to
24 *  Timer_initialize() and Read_timer().  Read_timer() usually returns
25 *  the number of microseconds since Timer_initialize() exitted.
26 *
27 *  NOTE: It is important that the timer start/stop overhead be
28 *        determined when porting or modifying this code.
29 *
30 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
31 *  On-Line Applications Research Corporation (OAR).
32 *  All rights assigned to U.S. Government, 1994.
33 *
34 *  This material may be reproduced by or for the U.S. Government pursuant
35 *  to the copyright license under the clause at DFARS 252.227-7013.  This
36 *  notice must appear in all copies of this file and its derivatives.
37 *
38 *  $Id$
39 */
40
41#ifndef lint
42static char _sccsid[] = "@(#)timer.c 08/20/96     1.5\n";
43#endif
44
45#include <rtems.h>
46#include <bsp.h>
47
48#define CLOCKS_PER_MICROSECOND ( CPU_CLOCK_RATE_MHZ )
49#define TIMER_MAX_VALUE 0xffffffff
50
51extern unsigned32 mips_read_timer( void );
52
53static rtems_boolean Timer_driver_Find_average_overhead;
54static unsigned32 Timer_initial_value = 0;
55
56void Timer_initialize( void )
57{
58   Timer_initial_value = mips_read_timer();
59  /*
60   *  Somehow start the timer
61   */
62
63  /* Timer on 4650 is always running */
64}
65
66/*
67 *  The following controls the behavior of Read_timer().
68 *
69 *  AVG_OVEREHAD is the overhead for starting and stopping the timer.  It
70 *  is usually deducted from the number returned.
71 *
72 *  LEAST_VALID is the lowest number this routine should trust.  Numbers
73 *  below this are "noise" and zero is returned.
74 */
75
76#define AVG_OVERHEAD      8  /* It typically takes X.X microseconds */
77                             /* (Y countdowns) to start/stop the timer. */
78                             /* This value is in cycles. */
79#define LEAST_VALID       1  /* Don't trust a clicks value lower than this */
80
81int Read_timer( void )
82{
83  unsigned64 clicks;
84  unsigned32 total;
85
86  /*
87   *  Read the timer and see how many clicks it has been since we started.
88   */
89
90  clicks = mips_read_timer();   /* XXX: read some HW here */
91  if (clicks < Timer_initial_value)
92  {
93      clicks += TIMER_MAX_VALUE;
94  }
95  clicks -= Timer_initial_value;
96
97  /*
98   *  Total is calculated by taking into account the number of timer overflow
99   *  interrupts since the timer was initialized and clicks since the last
100   *  interrupts.
101   */
102#if 0 /* leave total in number of cycles */
103   total = clicks / CLOCKS_PER_MICROSECOND;
104#else
105   total = clicks;
106#endif
107
108  if ( Timer_driver_Find_average_overhead == 1 )
109    return total;          /* in # cycles units */
110  else {
111    if ( total < LEAST_VALID )
112      return 0;            /* below timer resolution */
113  /*
114   *  leave total in cycles
115   */
116      return (total - AVG_OVERHEAD);
117    }
118}
119
120/*
121 *  Empty function call used in loops to measure basic cost of looping
122 *  in Timing Test Suite.
123 */
124
125rtems_status_code Empty_function( void )
126{
127  return RTEMS_SUCCESSFUL;
128}
129
130void Set_find_average_overhead(
131  rtems_boolean find_flag
132)
133{
134  Timer_driver_Find_average_overhead = find_flag;
135}
136
Note: See TracBrowser for help on using the repository browser.