Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __PERFMON_H |
| 2 | #define __PERFMON_H |
| 3 | |
| 4 | extern void (*perf_irq)(struct pt_regs *); |
| 5 | |
| 6 | int request_perfmon_irq(void (*handler)(struct pt_regs *)); |
| 7 | void free_perfmon_irq(void); |
| 8 | |
| 9 | #ifdef CONFIG_FSL_BOOKE |
| 10 | void init_pmc_stop(int ctr); |
| 11 | void set_pmc_event(int ctr, int event); |
| 12 | void set_pmc_user_kernel(int ctr, int user, int kernel); |
| 13 | void set_pmc_marked(int ctr, int mark0, int mark1); |
| 14 | void pmc_start_ctr(int ctr, int enable); |
| 15 | void pmc_start_ctrs(int enable); |
| 16 | void pmc_stop_ctrs(void); |
| 17 | void dump_pmcs(void); |
| 18 | |
| 19 | extern struct op_ppc32_model op_model_fsl_booke; |
| 20 | #endif |
| 21 | |
| 22 | #endif /* __PERFMON_H */ |