source: rtems/c/src/lib/libbsp/powerpc/score603e/timer/timer.c @ 35f52a6

4.104.114.95
Last change on this file since 35f52a6 was 35f52a6, checked in by Joel Sherrill <joel.sherrill@…>, on 08/31/08 at 16:07:58

2008-08-31 Joel Sherrill <joel.sherrill@…>

  • timer/timer.c: Rename timer driver methods to follow RTEMS programming conventions.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*  timer.c
2 *
3 *  This file implements a benchmark timer using the General Purpose Timer.
4 *
5 *  Notes:
6 *
7 *  BSP_TIMER_AVG_OVERHEAD and BSP_TIMER_LEAST_VALID are required to be
8 *  provided in bsp.h
9 *
10 *  COPYRIGHT (c) 1989-1997.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may in
14 *  the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#include <assert.h>
21
22#include <bsp.h>
23
24uint64_t         Timer_driver_Start_time;
25
26rtems_boolean benchmark_timerfind_average_overhead;
27
28/*
29 * benchmark_timerinitialize
30 */
31
32void benchmark_timerinitialize()
33{
34
35  /*
36   *  Timer runs long and accurate enough not to require an interrupt.
37   */
38
39  Timer_driver_Start_time = PPC_Get_timebase_register();
40}
41
42/*
43 *  benchmark_timerread
44 */
45
46int benchmark_timerread()
47{
48  uint64_t          clicks;
49  uint64_t          total64;
50  uint32_t          total;
51
52  /* approximately CLOCK_SPEED clicks per microsecond */
53
54  clicks = PPC_Get_timebase_register();
55
56  assert( clicks > Timer_driver_Start_time );
57
58  total64 = clicks - Timer_driver_Start_time;
59
60  assert( total64 <= 0xffffffff );  /* fits into a uint32_t   */
61
62  total = (uint32_t) total64;
63
64  if ( benchmark_timerfind_average_overhead == 1 )
65    return total;          /* in "clicks" of the decrementer units */
66
67  if ( total < BSP_TIMER_LEAST_VALID )
68    return 0;            /* below timer resolution */
69
70  return BSP_Convert_decrementer(total - BSP_TIMER_AVG_OVERHEAD);
71}
72
73rtems_status_code benchmark_timerempty_function( void )
74{
75  return RTEMS_SUCCESSFUL;
76}
77
78void benchmark_timerdisable_subtracting_average_overhead(
79  rtems_boolean find_flag
80)
81{
82  benchmark_timerfind_average_overhead = find_flag;
83}
Note: See TracBrowser for help on using the repository browser.