Select one of the symbols to view example projects that use it.
 
Outline
#define _PERF_MON_ACCESS_H_
#include <stdint.h>
#include <stdbool.h>
#include "esp_err.h"
#include "esp_log.h"
xtensa_perfmon_init(int, uint16_t, uint16_t, int, int);
xtensa_perfmon_reset(int);
xtensa_perfmon_start();
xtensa_perfmon_stop();
xtensa_perfmon_value(int);
xtensa_perfmon_overflow(int);
xtensa_perfmon_dump();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/perfmon/include/xtensa_perfmon_access.h
 
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _PERF_MON_ACCESS_H_ #define _PERF_MON_ACCESS_H_ #include <stdint.h> #include <stdbool.h> #include "esp_err.h" #include "esp_log.h" #ifdef __cplusplus extern "C" { #endif /**@{*/ /** * @brief Init Performance Monitoor * * Initialize performance monitor register with define values * * @param[in] id: performance counter number * @param[in] select: select value from PMCTRLx register * @param[in] mask: mask value from PMCTRLx register * @param[in] kernelcnt: kernelcnt value from PMCTRLx register * @param[in] tracelevel: tracelevel value from PMCTRLx register * * @return * - ESP_OK on success * - ESP_ERR_INVALID_ARG if one of the arguments is not correct */ esp_err_t xtensa_perfmon_init(int id, uint16_t select, uint16_t mask, int kernelcnt, int tracelevel); /**@}*/ /**@{*/ /** * @brief Reset PM counter * * Reset PM counter. Writes 0 to the PMx register. * * @param[in] id: performance counter number * * @return * - ESP_OK on success * - ESP_ERR_INVALID_ARG if id out of range */ esp_err_t xtensa_perfmon_reset(int id); /**@}*/ /**@{*/ /** * @brief Start PM counters * * Start all PM counters synchronously. Write 1 to the PGM register */ void xtensa_perfmon_start(void); /**@}*/ /**@{*/ /** * @brief Stop PM counters * * Stop all PM counters synchronously. Write 0 to the PGM register */ void xtensa_perfmon_stop(void); /**@}*/ /**@{*/ /** * @brief Read PM counter * * Read value of defined PM counter. * * @param[in] id: performance counter number * * @return * - Performance counter value */ uint32_t xtensa_perfmon_value(int id); /**@}*/ /**@{*/ /** * @brief Read PM overflow state * * Read overflow value of defined PM counter. * * @param[in] id: performance counter number * * @return * - ESP_OK if there is no overflow (overflow = 0) * - ESP_FAIL if overflow occure (overflow = 1) */ esp_err_t xtensa_perfmon_overflow(int id); /**@}*/ /**@{*/ /** * @brief Dump PM values * * Dump all PM register to the console. * */ void xtensa_perfmon_dump(void); /**@}*/ #ifdef __cplusplus } #endif #endif // _PERF_MON_ACCESS_H_
Details