aboutsummaryrefslogtreecommitdiff
path: root/lib/ethosu_monitor/src/ethosu_monitor.cpp
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2022-09-29 12:01:28 +0200
committerKristofer Jonsson <kristofer.jonsson@arm.com>2022-10-03 13:46:53 +0200
commit265b7eb223dc23864730f3328c9a2b877cbd5a07 (patch)
treed2e91d74dddd0f1287ba004a7497b048afe98368 /lib/ethosu_monitor/src/ethosu_monitor.cpp
parent5845f3d42db32f42e83f22073a88d583ff325953 (diff)
downloadethos-u-core-software-265b7eb223dc23864730f3328c9a2b877cbd5a07.tar.gz
Update Event Monitor
Add cycle counter, QREAD and STATUS to Event Monitor record. Change-Id: I9c225558a9d46b05fe322270b4a921ead6bb0233
Diffstat (limited to 'lib/ethosu_monitor/src/ethosu_monitor.cpp')
-rw-r--r--lib/ethosu_monitor/src/ethosu_monitor.cpp33
1 files changed, 19 insertions, 14 deletions
diff --git a/lib/ethosu_monitor/src/ethosu_monitor.cpp b/lib/ethosu_monitor/src/ethosu_monitor.cpp
index 0fe4b44..d13e6c2 100644
--- a/lib/ethosu_monitor/src/ethosu_monitor.cpp
+++ b/lib/ethosu_monitor/src/ethosu_monitor.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited. All rights reserved.
+ * SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
*
* SPDX-License-Identifier: Apache-2.0
*
@@ -21,21 +21,26 @@
#include <inttypes.h>
#include <stdio.h>
-EthosUMonitor::EthosUMonitor(std::vector<int32_t> __eventRecordIds, Backend __backend) :
- eventRecordIds(__eventRecordIds), backend(__backend) {}
+EthosUMonitor::EthosUMonitor(Backend __backend) : backend(__backend) {}
void EthosUMonitor::monitorSample(ethosu_driver *drv) {
- // Fetch events
- uint32_t eventCount[ETHOSU_PMU_NCOUNTERS] = {0};
- for (size_t i = 0; i < numEvents; i++) {
- eventCount[i] = ETHOSU_PMU_Get_EVCNTR(drv, i);
- switch (backend) {
- case EVENT_RECORDER:
- EventRecord2(eventRecordIds[i], ethosuEventIds[i], eventCount[i]);
- break;
- case PRINTF:
- default:
- LOG("ethosu_pmu_cntr%zd : %" PRIu32 "\n", i, eventCount[i]);
+ switch (backend) {
+ case EVENT_RECORDER: {
+ EthosuEventRecord record = {ETHOSU_PMU_Get_CCNTR(drv),
+ ETHOSU_PMU_Get_QREAD(drv),
+ ETHOSU_PMU_Get_STATUS(drv),
+ {{ethosuEventIds[0], ETHOSU_PMU_Get_EVCNTR(drv, 0)},
+ {ethosuEventIds[1], ETHOSU_PMU_Get_EVCNTR(drv, 1)},
+ {ethosuEventIds[2], ETHOSU_PMU_Get_EVCNTR(drv, 2)},
+ {ethosuEventIds[3], ETHOSU_PMU_Get_EVCNTR(drv, 3)}}};
+
+ EventRecordData(EventID(EventLevelDetail, EthosuEventComponentNo, 0), &record, sizeof(record));
+ break;
+ }
+ case PRINTF:
+ default:
+ for (size_t i = 0; i < numEvents; i++) {
+ LOG("ethosu_pmu_cntr%zd : %" PRIu32 "\n", i, ETHOSU_PMU_Get_EVCNTR(drv, 0));
}
}
}