walnux/arch/arm64/src/common/arm64_perf.c
Jukka Laitinen 56ad0d6837 arch: Flag all definitions of up_perf_* functions with CONFIG_ARCH_HAVE_PERF_EVENTS
Use the flag CONFIG_ARCH_HAVE_PERF_EVENTS to detect whether the architecture specific code
provides the up_perf_* functions. Now it is mixed with CONFIG_ARCH_PERF_EVENTS, which should
select just whether the perf events (perf_*) are enabled for the configuration.

- drivers/timers/arch_alarm.c: Don't compile the up_perf_* functions here if the
  CONFIG_ARCH_HAVE_PERF_EVENTS is defined
- arch/*/*_perf.c: Change CONFIG_ARCH_PERF_EVENTS -> CONFIG_ARCH_HAVE_PERF_EVENTS to
  select whether architecture specific up_perf_* functions are provided

Signed-off-by: Jukka Laitinen <jukka.laitinen@tii.ae>
2025-06-06 17:31:10 +08:00

84 lines
2.7 KiB
C

/****************************************************************************
* arch/arm64/src/common/arm64_perf.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/clock.h>
#include "arm64_pmu.h"
#ifdef CONFIG_ARCH_HAVE_PERF_EVENTS
/****************************************************************************
* Private Data
****************************************************************************/
static unsigned long g_cpu_freq = ULONG_MAX;
/****************************************************************************
* Public Functions
****************************************************************************/
void up_perf_init(void *arg)
{
g_cpu_freq = (unsigned long)(uintptr_t)arg;
#ifdef CONFIG_ARCH_CLUSTER_PMU
pmu_clucntr_control_config(CLUSTERPMCR_EL1_C | CLUSTERPMCR_EL1_P |
CLUSTERPMCR_EL1_E);
pmu_clucntr_ovsclr_config(CLUSTERPMOVSCLR_EL1_C);
pmu_clucntr_irq_disable(CLUSTERPMINTENCLR_EL1_C);
pmu_clucntr_enable(CLUSTERPMCNTENSET_EL1_C);
#else
pmu_ccntr_ccfiltr_config(PMCCFILTR_EL0_NSH);
pmu_cntr_control_config(PMCR_EL0_C | PMCR_EL0_E);
pmu_cntr_trap_control(PMUSERENR_EL0_EN);
pmu_cntr_irq_disable(PMINTENCLR_EL1_C);
pmu_cntr_enable(PMCNTENSET_EL0_C);
#endif
}
unsigned long up_perf_getfreq(void)
{
return g_cpu_freq;
}
clock_t up_perf_gettime(void)
{
#ifdef CONFIG_ARCH_CLUSTER_PMU
return pmu_get_cluccntr();
#else
return pmu_get_ccntr();
#endif
}
void up_perf_convert(clock_t elapsed, struct timespec *ts)
{
clock_t left;
ts->tv_sec = elapsed / g_cpu_freq;
left = elapsed - ts->tv_sec * g_cpu_freq;
ts->tv_nsec = NSEC_PER_SEC * left / g_cpu_freq;
}
#endif