2009-01-22 05:30:23 +00:00
|
|
|
/* pcr.c: Generic sparc64 performance counter infrastructure.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 David S. Miller (davem@davemloft.net)
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
2011-07-22 17:18:16 +00:00
|
|
|
#include <linux/export.h>
|
2009-01-22 05:30:23 +00:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
|
2010-10-14 06:01:34 +00:00
|
|
|
#include <linux/irq_work.h>
|
2010-04-07 11:41:33 +00:00
|
|
|
#include <linux/ftrace.h>
|
2009-09-10 12:59:24 +00:00
|
|
|
|
2009-01-22 05:30:23 +00:00
|
|
|
#include <asm/pil.h>
|
|
|
|
#include <asm/pcr.h>
|
2009-01-30 05:22:47 +00:00
|
|
|
#include <asm/nmi.h>
|
2011-08-01 17:42:48 +00:00
|
|
|
#include <asm/spitfire.h>
|
2012-03-28 17:30:03 +00:00
|
|
|
#include <asm/perfctr.h>
|
2009-01-22 05:30:23 +00:00
|
|
|
|
|
|
|
/* This code is shared between various users of the performance
|
|
|
|
* counters. Users will be oprofile, pseudo-NMI watchdog, and the
|
perf: Do the big rename: Performance Counters -> Performance Events
Bye-bye Performance Counters, welcome Performance Events!
In the past few months the perfcounters subsystem has grown out its
initial role of counting hardware events, and has become (and is
becoming) a much broader generic event enumeration, reporting, logging,
monitoring, analysis facility.
Naming its core object 'perf_counter' and naming the subsystem
'perfcounters' has become more and more of a misnomer. With pending
code like hw-breakpoints support the 'counter' name is less and
less appropriate.
All in one, we've decided to rename the subsystem to 'performance
events' and to propagate this rename through all fields, variables
and API names. (in an ABI compatible fashion)
The word 'event' is also a bit shorter than 'counter' - which makes
it slightly more convenient to write/handle as well.
Thanks goes to Stephane Eranian who first observed this misnomer and
suggested a rename.
User-space tooling and ABI compatibility is not affected - this patch
should be function-invariant. (Also, defconfigs were not touched to
keep the size down.)
This patch has been generated via the following script:
FILES=$(find * -type f | grep -vE 'oprofile|[^K]config')
sed -i \
-e 's/PERF_EVENT_/PERF_RECORD_/g' \
-e 's/PERF_COUNTER/PERF_EVENT/g' \
-e 's/perf_counter/perf_event/g' \
-e 's/nb_counters/nb_events/g' \
-e 's/swcounter/swevent/g' \
-e 's/tpcounter_event/tp_event/g' \
$FILES
for N in $(find . -name perf_counter.[ch]); do
M=$(echo $N | sed 's/perf_counter/perf_event/g')
mv $N $M
done
FILES=$(find . -name perf_event.*)
sed -i \
-e 's/COUNTER_MASK/REG_MASK/g' \
-e 's/COUNTER/EVENT/g' \
-e 's/\<event\>/event_id/g' \
-e 's/counter/event/g' \
-e 's/Counter/Event/g' \
$FILES
... to keep it as correct as possible. This script can also be
used by anyone who has pending perfcounters patches - it converts
a Linux kernel tree over to the new naming. We tried to time this
change to the point in time where the amount of pending patches
is the smallest: the end of the merge window.
Namespace clashes were fixed up in a preparatory patch - and some
stylistic fallout will be fixed up in a subsequent patch.
( NOTE: 'counters' are still the proper terminology when we deal
with hardware registers - and these sed scripts are a bit
over-eager in renaming them. I've undone some of that, but
in case there's something left where 'counter' would be
better than 'event' we can undo that on an individual basis
instead of touching an otherwise nicely automated patch. )
Suggested-by: Stephane Eranian <eranian@google.com>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: Paul Mackerras <paulus@samba.org>
Reviewed-by: Arjan van de Ven <arjan@linux.intel.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: David Howells <dhowells@redhat.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: <linux-arch@vger.kernel.org>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-09-21 10:02:48 +00:00
|
|
|
* perf_event support layer.
|
2009-01-22 05:30:23 +00:00
|
|
|
*/
|
|
|
|
|
2009-01-30 05:22:47 +00:00
|
|
|
#define PCR_SUN4U_ENABLE (PCR_PIC_PRIV | PCR_STRACE | PCR_UTRACE)
|
|
|
|
#define PCR_N2_ENABLE (PCR_PIC_PRIV | PCR_STRACE | PCR_UTRACE | \
|
|
|
|
PCR_N2_TOE_OV1 | \
|
|
|
|
(2 << PCR_N2_SL1_SHIFT) | \
|
|
|
|
(0xff << PCR_N2_MASK1_SHIFT))
|
|
|
|
|
|
|
|
u64 pcr_enable;
|
|
|
|
unsigned int picl_shift;
|
|
|
|
|
2009-01-22 05:30:23 +00:00
|
|
|
/* Performance counter interrupts run unmasked at PIL level 15.
|
|
|
|
* Therefore we can't do things like wakeups and other work
|
|
|
|
* that expects IRQ disabling to be adhered to in locking etc.
|
|
|
|
*
|
|
|
|
* Therefore in such situations we defer the work by signalling
|
|
|
|
* a lower level cpu IRQ.
|
|
|
|
*/
|
2010-04-07 11:41:33 +00:00
|
|
|
void __irq_entry deferred_pcr_work_irq(int irq, struct pt_regs *regs)
|
2009-01-22 05:30:23 +00:00
|
|
|
{
|
2009-09-10 12:59:24 +00:00
|
|
|
struct pt_regs *old_regs;
|
|
|
|
|
2009-01-22 05:30:23 +00:00
|
|
|
clear_softint(1 << PIL_DEFERRED_PCR_WORK);
|
2009-09-10 12:59:24 +00:00
|
|
|
|
|
|
|
old_regs = set_irq_regs(regs);
|
|
|
|
irq_enter();
|
2010-10-14 06:01:34 +00:00
|
|
|
#ifdef CONFIG_IRQ_WORK
|
|
|
|
irq_work_run();
|
2009-09-10 12:59:24 +00:00
|
|
|
#endif
|
|
|
|
irq_exit();
|
|
|
|
set_irq_regs(old_regs);
|
2009-01-22 05:30:23 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 06:01:34 +00:00
|
|
|
void arch_irq_work_raise(void)
|
2009-01-22 05:30:23 +00:00
|
|
|
{
|
|
|
|
set_softint(1 << PIL_DEFERRED_PCR_WORK);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct pcr_ops *pcr_ops;
|
|
|
|
EXPORT_SYMBOL_GPL(pcr_ops);
|
|
|
|
|
2012-08-17 04:16:22 +00:00
|
|
|
static u64 direct_pcr_read(unsigned long reg_num)
|
2009-01-22 05:30:23 +00:00
|
|
|
{
|
|
|
|
u64 val;
|
|
|
|
|
2012-08-17 04:16:22 +00:00
|
|
|
WARN_ON_ONCE(reg_num != 0);
|
2009-01-22 05:30:23 +00:00
|
|
|
read_pcr(val);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2012-08-17 04:16:22 +00:00
|
|
|
static void direct_pcr_write(unsigned long reg_num, u64 val)
|
2009-01-22 05:30:23 +00:00
|
|
|
{
|
2012-08-17 04:16:22 +00:00
|
|
|
WARN_ON_ONCE(reg_num != 0);
|
2009-01-22 05:30:23 +00:00
|
|
|
write_pcr(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct pcr_ops direct_pcr_ops = {
|
|
|
|
.read = direct_pcr_read,
|
|
|
|
.write = direct_pcr_write,
|
|
|
|
};
|
|
|
|
|
2012-08-17 04:16:22 +00:00
|
|
|
static void n2_pcr_write(unsigned long reg_num, u64 val)
|
2009-01-22 05:30:23 +00:00
|
|
|
{
|
|
|
|
unsigned long ret;
|
|
|
|
|
2012-08-17 04:16:22 +00:00
|
|
|
WARN_ON_ONCE(reg_num != 0);
|
2011-07-28 03:46:25 +00:00
|
|
|
if (val & PCR_N2_HTRACE) {
|
|
|
|
ret = sun4v_niagara2_setperf(HV_N2_PERF_SPARC_CTL, val);
|
|
|
|
if (ret != HV_EOK)
|
|
|
|
write_pcr(val);
|
|
|
|
} else
|
2009-01-22 05:30:23 +00:00
|
|
|
write_pcr(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct pcr_ops n2_pcr_ops = {
|
|
|
|
.read = direct_pcr_read,
|
|
|
|
.write = n2_pcr_write,
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned long perf_hsvc_group;
|
|
|
|
static unsigned long perf_hsvc_major;
|
|
|
|
static unsigned long perf_hsvc_minor;
|
|
|
|
|
|
|
|
static int __init register_perf_hsvc(void)
|
|
|
|
{
|
|
|
|
if (tlb_type == hypervisor) {
|
|
|
|
switch (sun4v_chip_type) {
|
|
|
|
case SUN4V_CHIP_NIAGARA1:
|
|
|
|
perf_hsvc_group = HV_GRP_NIAG_PERF;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SUN4V_CHIP_NIAGARA2:
|
|
|
|
perf_hsvc_group = HV_GRP_N2_CPU;
|
|
|
|
break;
|
|
|
|
|
sparc: Detect and handle UltraSPARC-T3 cpu types.
The cpu compatible string we look for is "SPARC-T3".
As far as memset/memcpy optimizations go, we treat this chip the same
as Niagara-T2/T2+. Use cache initializing stores for memset, and use
perfetch, FPU block loads, cache initializing stores, and block stores
for copies.
We use the Niagara-T2 perf support, since T3 is a close relative in
this regard. Later we'll add support for the new events T3 can
report, plus enable T3's new "sample" mode.
For now I haven't added any new ELF hwcap flags. We probably need
to add a couple, for example:
T2 and T3 both support the population count instruction in hardware.
T3 supports VIS3 instructions, including support (finally) for
partitioned shift. One can also now move directly between float
and integer registers.
T3 supports instructions meant to help with Galois Field and other HPC
calculations, such as XOR multiply. Also there are "OP and negate"
instructions, for example "fnmul" which is multiply-and-negate.
T3 recognizes the transactional memory opcodes, however since
transactional memory isn't supported: 1) 'commit' behaves as a NOP and
2) 'chkpt' always branches 3) 'rdcps' returns all zeros and 4) 'wrcps'
behaves as a NOP.
So we'll need about 3 new elf capability flags in the end to represent
all of these things.
Signed-off-by: David S. Miller <davem@davemloft.net>
2011-07-28 04:06:16 +00:00
|
|
|
case SUN4V_CHIP_NIAGARA3:
|
|
|
|
perf_hsvc_group = HV_GRP_KT_CPU;
|
|
|
|
break;
|
|
|
|
|
2009-01-22 05:30:23 +00:00
|
|
|
default:
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
perf_hsvc_major = 1;
|
|
|
|
perf_hsvc_minor = 0;
|
|
|
|
if (sun4v_hvapi_register(perf_hsvc_group,
|
|
|
|
perf_hsvc_major,
|
|
|
|
&perf_hsvc_minor)) {
|
|
|
|
printk("perfmon: Could not register hvapi.\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init unregister_perf_hsvc(void)
|
|
|
|
{
|
|
|
|
if (tlb_type != hypervisor)
|
|
|
|
return;
|
|
|
|
sun4v_hvapi_unregister(perf_hsvc_group);
|
|
|
|
}
|
|
|
|
|
|
|
|
int __init pcr_arch_init(void)
|
|
|
|
{
|
|
|
|
int err = register_perf_hsvc();
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
switch (tlb_type) {
|
|
|
|
case hypervisor:
|
|
|
|
pcr_ops = &n2_pcr_ops;
|
2009-01-30 05:22:47 +00:00
|
|
|
pcr_enable = PCR_N2_ENABLE;
|
|
|
|
picl_shift = 2;
|
2009-01-22 05:30:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case cheetah:
|
|
|
|
case cheetah_plus:
|
|
|
|
pcr_ops = &direct_pcr_ops;
|
2009-01-30 05:22:47 +00:00
|
|
|
pcr_enable = PCR_SUN4U_ENABLE;
|
2009-01-22 05:30:23 +00:00
|
|
|
break;
|
|
|
|
|
2009-02-06 07:59:04 +00:00
|
|
|
case spitfire:
|
|
|
|
/* UltraSPARC-I/II and derivatives lack a profile
|
|
|
|
* counter overflow interrupt so we can't make use of
|
|
|
|
* their hardware currently.
|
|
|
|
*/
|
|
|
|
/* fallthrough */
|
2009-01-22 05:30:23 +00:00
|
|
|
default:
|
|
|
|
err = -ENODEV;
|
|
|
|
goto out_unregister;
|
|
|
|
}
|
|
|
|
|
2009-01-30 05:22:47 +00:00
|
|
|
return nmi_init();
|
2009-01-22 05:30:23 +00:00
|
|
|
|
|
|
|
out_unregister:
|
|
|
|
unregister_perf_hsvc();
|
|
|
|
return err;
|
|
|
|
}
|