summaryrefslogtreecommitdiffstats
path: root/bsps/arm/tms570/cpucounter/cpucounterread.c
blob: 21951991062b515fe2f45430faf927fabbac0c95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
 * @file
 *
 * @ingroup RTEMSBSPsARMTMS570_clocks
 *
 * @brief Cortex-R performace counters
 *
 * The counters setup functions are these which has been suggested
 * on StackOverflow
 *
 * Code is probably for use on Cortex-A without modifications as well.
 *
 * http://stackoverflow.com/questions/3247373/how-to-measure-program-execution-time-in-arm-cortex-a8-processor
 */

/*
 * Copyright (c) 2014 Pavel Pisa <pisa@cmp.felk.cvut.cz>
 *
 * Czech Technical University in Prague
 * Zikova 1903/4
 * 166 36 Praha 6
 * Czech Republic
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#include <rtems/counter.h>
#include <rtems/sysinit.h>

#include <libcpu/arm-cp15.h>

#include <bsp.h>

static void tms570_cpu_counter_initialize(void)
{
  uint32_t cycle_counter;
  uint32_t pmcr;

  cycle_counter = ARM_CP15_PMCLRSET_CYCLE_COUNTER;
  arm_cp15_set_performance_monitors_interrupt_enable_clear(cycle_counter);
  arm_cp15_set_performance_monitors_count_enable_set(cycle_counter);

  pmcr = arm_cp15_get_performance_monitors_control();
  pmcr &= ~ARM_CP15_PMCR_D;
  pmcr |= ARM_CP15_PMCR_E;
  arm_cp15_set_performance_monitors_control(pmcr);
}

uint32_t _CPU_Counter_frequency(void)
{
  return 2 * BSP_PLL_OUT_CLOCK;
}

CPU_Counter_ticks _CPU_Counter_read(void)
{
  return arm_cp15_get_performance_monitors_cycle_count();
}

RTEMS_SYSINIT_ITEM(
  tms570_cpu_counter_initialize,
  RTEMS_SYSINIT_CPU_COUNTER,
  RTEMS_SYSINIT_ORDER_FIRST
);