ARM: fix performance counters allocation
Change-Id: Ie6c8beacf268462064f59b063d9c7b635c906dc4
This commit is contained in:
@ -8,6 +8,7 @@
|
||||
#include <string.h>
|
||||
#include <ihk/mm.h>
|
||||
#include <irq.h>
|
||||
#include <process.h>
|
||||
|
||||
/*
|
||||
* @ref.impl arch/arm64/kernel/perf_event.c
|
||||
@ -198,6 +199,27 @@ int ihk_mc_perfctr_read_mask(unsigned long counter_mask, unsigned long *value)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ihk_mc_perfctr_alloc(struct thread *thread, int cpu_cycles)
|
||||
{
|
||||
int ret = -EINVAL;
|
||||
int i = 1;
|
||||
const int counters = ihk_mc_perf_get_num_counters();
|
||||
|
||||
// Counter 0 is only used for CPU cycles on ARM
|
||||
if (cpu_cycles) {
|
||||
i = 0;
|
||||
}
|
||||
|
||||
for (; i < counters; i++) {
|
||||
if (!(thread->pmc_alloc_map & (1 << i))) {
|
||||
ret = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
unsigned long ihk_mc_perfctr_read(int counter)
|
||||
{
|
||||
unsigned long count;
|
||||
|
||||
Reference in New Issue
Block a user