2009-01-09 14:01:53 +08:00
|
|
|
/*
|
2010-02-26 08:09:45 +08:00
|
|
|
* Performance event support - hardware-specific disambiguation
|
2009-01-09 14:01:53 +08:00
|
|
|
*
|
2010-02-26 08:09:45 +08:00
|
|
|
* For now this is a compile-time decision, but eventually it should be
|
|
|
|
* runtime. This would allow multiplatform perf event support for e300 (fsl
|
|
|
|
* embedded perf counters) plus server/classic, and would accommodate
|
|
|
|
* devices other than the core which provide their own performance counters.
|
|
|
|
*
|
|
|
|
* Copyright 2010 Freescale Semiconductor, Inc.
|
2009-01-09 14:01:53 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
2009-06-17 19:52:09 +08:00
|
|
|
|
2009-06-17 19:50:04 +08:00
|
|
|
#ifdef CONFIG_PPC_PERF_CTRS
|
2010-02-26 08:09:45 +08:00
|
|
|
#include <asm/perf_event_server.h>
|
2009-06-17 19:50:04 +08:00
|
|
|
#endif
|
|
|
|
|
2010-02-26 08:09:45 +08:00
|
|
|
#ifdef CONFIG_FSL_EMB_PERF_EVENT
|
|
|
|
#include <asm/perf_event_fsl_emb.h>
|
|
|
|
#endif
|
2010-05-20 13:47:21 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_PERF_EVENTS
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include <asm/reg.h>
|
|
|
|
|
2012-06-26 09:01:36 +08:00
|
|
|
/*
|
|
|
|
* Overload regs->result to specify whether we should use the MSR (result
|
|
|
|
* is zero) or the SIAR (result is non zero).
|
|
|
|
*/
|
2010-05-20 13:47:21 +08:00
|
|
|
#define perf_arch_fetch_caller_regs(regs, __ip) \
|
|
|
|
do { \
|
2012-06-26 09:01:36 +08:00
|
|
|
(regs)->result = 0; \
|
2010-05-20 13:47:21 +08:00
|
|
|
(regs)->nip = __ip; \
|
|
|
|
(regs)->gpr[1] = *(unsigned long *)__get_SP(); \
|
|
|
|
asm volatile("mfmsr %0" : "=r" ((regs)->msr)); \
|
|
|
|
} while (0)
|
|
|
|
#endif
|