summaryrefslogtreecommitdiffstats
path: root/libopencm3/lib/cm3/dwt.c
blob: fe7c26113a649ee5f78f96d1b0d196b263c1744a (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * This file is part of the libopencm3 project.
 *
 * Copyright (C) 2013 Frantisek Burian <BuFran@seznam.cz>
 *
 * This library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <libopencm3/cm3/scs.h>
#include <libopencm3/cm3/dwt.h>

/*---------------------------------------------------------------------------*/
/** @brief DebugTrace Enable the CPU cycle counter
 *
 * This function will try to enable the CPU cycle counter that is intended for
 * benchmarking performance of the code. If function fails, the cycle counter
 * isn't available on this architecture.
 *
 * @returnd true, if success
 */
bool dwt_enable_cycle_counter(void)
{
#if defined(__ARM_ARCH_6M__)
	return false;			/* Not supported on ARMv6M */
#endif /* defined(__ARM_ARCH_6M__) */

#if defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__)
	/* Note TRCENA is for 7M and above*/
	SCS_DEMCR |= SCS_DEMCR_TRCENA;
	if (DWT_CTRL & DWT_CTRL_NOCYCCNT) {
		return false;		/* Not supported in implementation */
	}

	DWT_CYCCNT = 0;
	DWT_CTRL |= DWT_CTRL_CYCCNTENA;
	return true;
#endif /* defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__) */

	/* not supported on other architectures */
	return false;
}
/*---------------------------------------------------------------------------*/
/** @brief DebugTrace Read the CPU cycle counter
 *
 * This function reads the core cycle counter if it is enabled. It is the
 * fastest clock running on the system.
 *
 * @note The CPU cycle counter must be enabled by @ref dwt_enable_cycle_counter
 *
 * @returns 0 if cycle counter is not supported or enabled, the cycle counter
 * value otherwise.
 */
uint32_t dwt_read_cycle_counter(void)
{
#if defined(__ARM_ARCH_6M__)
	return 0;		/* Not supported on ARMv6M */
#endif /* defined(__ARM_ARCH_6M__) */

#if defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__)
	if (DWT_CTRL & DWT_CTRL_CYCCNTENA) {
		return DWT_CYCCNT;
	} else {
		return 0;		/* not supported or enabled */
	}
#endif /* defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__) */
}