source: rtems/c/src/lib/libbsp/sparc/erc32/timer/timer.c @ 3447454

4.104.114.95
Last change on this file since 3447454 was c8b03dbd, checked in by Joel Sherrill <joel.sherrill@…>, on 09/03/08 at 20:44:22

2008-09-03 Joel Sherrill <joel.sherrill@…>

  • timer/timer.c: Convert using "bool".
  • Property mode set to 100644
File size: 2.3 KB
Line 
1/*  timer.c
2 *
3 *  This file implements a benchmark timer using the General Purpose Timer on
4 *  the MEC.
5 *
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
14 *  Research Corporation (OAR) under contract to the European Space
15 *  Agency (ESA).
16 *
17 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
18 *  European Space Agency.
19 *
20 *  $Id$
21 */
22
23#include <bsp.h>
24
25bool benchmark_timer_find_average_overhead;
26
27bool benchmark_timer_is_initialized = FALSE;
28
29void benchmark_timer_initialize(void)
30{
31  /*
32   *  Timer runs long and accurate enough not to require an interrupt.
33   */
34
35  if ( benchmark_timer_is_initialized == FALSE ) {
36
37    /* approximately 1 us per countdown */
38    ERC32_MEC.General_Purpose_Timer_Scalar  = CLOCK_SPEED - 1;
39    ERC32_MEC.General_Purpose_Timer_Counter = 0xffffffff;
40
41  } else {
42    benchmark_timer_is_initialized = TRUE;
43  }
44
45  ERC32_MEC_Set_General_Purpose_Timer_Control(
46    ERC32_MEC_TIMER_COUNTER_ENABLE_COUNTING |
47      ERC32_MEC_TIMER_COUNTER_LOAD_COUNTER
48  );
49
50  ERC32_MEC_Set_General_Purpose_Timer_Control(
51    ERC32_MEC_TIMER_COUNTER_ENABLE_COUNTING
52  );
53
54}
55
56#if ENABLE_SIS_QUIRKS
57#define AVG_OVERHEAD      8  /* It typically takes 3.0 microseconds */
58                             /*     to start/stop the timer. */
59#define LEAST_VALID       9  /* Don't trust a value lower than this */
60#else
61#define AVG_OVERHEAD     12  /* It typically takes 3.0 microseconds */
62                             /*     to start/stop the timer. */
63#define LEAST_VALID      13  /* Don't trust a value lower than this */
64#endif
65
66int benchmark_timer_read(void)
67{
68  uint32_t          total;
69
70  total = ERC32_MEC.General_Purpose_Timer_Counter;
71
72  total = 0xffffffff - total;
73
74  if ( benchmark_timer_find_average_overhead == 1 )
75    return total;          /* in one microsecond units */
76
77  if ( total < LEAST_VALID )
78    return 0;            /* below timer resolution */
79
80  return total - AVG_OVERHEAD;
81}
82
83void benchmark_timer_disable_subtracting_average_overhead(
84  bool find_flag
85)
86{
87  benchmark_timer_find_average_overhead = find_flag;
88}
Note: See TracBrowser for help on using the repository browser.