blob: aa180e907a675762fc1fd2ebdad14471b20fcbe4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM
3 *
4 * Based on alpha version.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Stephen Rothwell654810e2005-09-19 23:21:15 +100012#ifndef _ASM_POWERPC_OPROFILE_IMPL_H
13#define _ASM_POWERPC_OPROFILE_IMPL_H
Arnd Bergmann88ced032005-12-16 22:43:46 +010014#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define OP_MAX_COUNTER 8
17
18/* Per-counter configuration as set via oprofilefs. */
19struct op_counter_config {
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 unsigned long enabled;
21 unsigned long event;
22 unsigned long count;
Andy Fleming555d97a2005-12-15 20:02:04 -060023 /* Classic doesn't support per-counter user/kernel selection */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 unsigned long kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 unsigned long user;
26 unsigned long unit_mask;
27};
28
29/* System-wide configuration as set via oprofilefs. */
30struct op_system_config {
Andy Fleming555d97a2005-12-15 20:02:04 -060031#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 unsigned long mmcr0;
33 unsigned long mmcr1;
34 unsigned long mmcra;
Stephen Rothwell654810e2005-09-19 23:21:15 +100035#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 unsigned long enable_kernel;
37 unsigned long enable_user;
Andy Fleming555d97a2005-12-15 20:02:04 -060038#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 unsigned long backtrace_spinlocks;
Stephen Rothwell654810e2005-09-19 23:21:15 +100040#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
43/* Per-arch configuration */
Stephen Rothwella3e48c12005-09-19 23:18:31 +100044struct op_powerpc_model {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 void (*reg_setup) (struct op_counter_config *,
46 struct op_system_config *,
47 int num_counters);
48 void (*cpu_setup) (void *);
49 void (*start) (struct op_counter_config *);
50 void (*stop) (void);
51 void (*handle_interrupt) (struct pt_regs *,
52 struct op_counter_config *);
53 int num_counters;
54};
55
Andy Fleming555d97a2005-12-15 20:02:04 -060056extern struct op_powerpc_model op_model_fsl_booke;
Stephen Rothwella3e48c12005-09-19 23:18:31 +100057extern struct op_powerpc_model op_model_rs64;
58extern struct op_powerpc_model op_model_power4;
Andy Fleming555d97a2005-12-15 20:02:04 -060059extern struct op_powerpc_model op_model_7450;
Anton Blanchard72533db2006-03-27 11:23:29 +110060
61#ifndef CONFIG_FSL_BOOKE
Andy Fleming555d97a2005-12-15 20:02:04 -060062
63/* All the classic PPC parts use these */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static inline unsigned int ctr_read(unsigned int i)
65{
66 switch(i) {
67 case 0:
68 return mfspr(SPRN_PMC1);
69 case 1:
70 return mfspr(SPRN_PMC2);
71 case 2:
72 return mfspr(SPRN_PMC3);
73 case 3:
74 return mfspr(SPRN_PMC4);
75 case 4:
76 return mfspr(SPRN_PMC5);
77 case 5:
78 return mfspr(SPRN_PMC6);
Andy Fleming555d97a2005-12-15 20:02:04 -060079
80/* No PPC32 chip has more than 6 so far */
81#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 case 6:
83 return mfspr(SPRN_PMC7);
84 case 7:
85 return mfspr(SPRN_PMC8);
Andy Fleming555d97a2005-12-15 20:02:04 -060086#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 default:
88 return 0;
89 }
90}
91
92static inline void ctr_write(unsigned int i, unsigned int val)
93{
94 switch(i) {
95 case 0:
96 mtspr(SPRN_PMC1, val);
97 break;
98 case 1:
99 mtspr(SPRN_PMC2, val);
100 break;
101 case 2:
102 mtspr(SPRN_PMC3, val);
103 break;
104 case 3:
105 mtspr(SPRN_PMC4, val);
106 break;
107 case 4:
108 mtspr(SPRN_PMC5, val);
109 break;
110 case 5:
111 mtspr(SPRN_PMC6, val);
112 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600113
114/* No PPC32 chip has more than 6, yet */
115#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 case 6:
117 mtspr(SPRN_PMC7, val);
118 break;
119 case 7:
120 mtspr(SPRN_PMC8, val);
121 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 default:
124 break;
125 }
126}
Andy Fleming555d97a2005-12-15 20:02:04 -0600127#endif /* !CONFIG_FSL_BOOKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Brian Rogan6c6bd752006-03-27 11:57:01 +1100129extern void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth);
130
Arnd Bergmann88ced032005-12-16 22:43:46 +0100131#endif /* __KERNEL__ */
Stephen Rothwell654810e2005-09-19 23:21:15 +1000132#endif /* _ASM_POWERPC_OPROFILE_IMPL_H */