2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* @file init.c
|
|
|
|
*
|
|
|
|
* @remark Copyright 2002 OProfile authors
|
|
|
|
* @remark Read the file COPYING
|
|
|
|
*
|
|
|
|
* @author John Levon <levon@movementarian.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/oprofile.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/errno.h>
|
2008-02-22 22:09:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We support CPUs that have performance counters like the Pentium Pro
|
2005-04-16 22:20:36 +00:00
|
|
|
* with the NMI mode driver.
|
|
|
|
*/
|
2008-02-22 22:09:50 +00:00
|
|
|
|
|
|
|
extern int op_nmi_init(struct oprofile_operations *ops);
|
|
|
|
extern int op_nmi_timer_init(struct oprofile_operations *ops);
|
2005-09-06 22:17:26 +00:00
|
|
|
extern void op_nmi_exit(void);
|
2005-04-16 22:20:36 +00:00
|
|
|
extern void x86_backtrace(struct pt_regs * const regs, unsigned int depth);
|
|
|
|
|
|
|
|
|
2008-02-22 22:09:50 +00:00
|
|
|
int __init oprofile_arch_init(struct oprofile_operations *ops)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = -ENODEV;
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
2005-09-06 22:17:26 +00:00
|
|
|
ret = op_nmi_init(ops);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_X86_IO_APIC
|
|
|
|
if (ret < 0)
|
2005-09-06 22:17:26 +00:00
|
|
|
ret = op_nmi_timer_init(ops);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
ops->backtrace = x86_backtrace;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void oprofile_arch_exit(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
2005-09-06 22:17:26 +00:00
|
|
|
op_nmi_exit();
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
}
|