Merge rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[deliverable/linux.git] / include / asm-powerpc / oprofile_impl.h
1 /*
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
12 #ifndef _ASM_POWERPC_OPROFILE_IMPL_H
13 #define _ASM_POWERPC_OPROFILE_IMPL_H
14 #ifdef __KERNEL__
15
16 #define OP_MAX_COUNTER 8
17
18 /* Per-counter configuration as set via oprofilefs. */
19 struct op_counter_config {
20 unsigned long enabled;
21 unsigned long event;
22 unsigned long count;
23 /* Classic doesn't support per-counter user/kernel selection */
24 unsigned long kernel;
25 unsigned long user;
26 unsigned long unit_mask;
27 };
28
29 /* System-wide configuration as set via oprofilefs. */
30 struct op_system_config {
31 #ifdef CONFIG_PPC64
32 unsigned long mmcr0;
33 unsigned long mmcr1;
34 unsigned long mmcra;
35 #endif
36 unsigned long enable_kernel;
37 unsigned long enable_user;
38 };
39
40 /* Per-arch configuration */
41 struct op_powerpc_model {
42 void (*reg_setup) (struct op_counter_config *,
43 struct op_system_config *,
44 int num_counters);
45 void (*cpu_setup) (struct op_counter_config *);
46 void (*start) (struct op_counter_config *);
47 void (*stop) (void);
48 void (*handle_interrupt) (struct pt_regs *,
49 struct op_counter_config *);
50 int num_counters;
51 };
52
53 extern struct op_powerpc_model op_model_fsl_booke;
54 extern struct op_powerpc_model op_model_rs64;
55 extern struct op_powerpc_model op_model_power4;
56 extern struct op_powerpc_model op_model_7450;
57
58 #ifndef CONFIG_FSL_BOOKE
59
60 /* All the classic PPC parts use these */
61 static inline unsigned int ctr_read(unsigned int i)
62 {
63 switch(i) {
64 case 0:
65 return mfspr(SPRN_PMC1);
66 case 1:
67 return mfspr(SPRN_PMC2);
68 case 2:
69 return mfspr(SPRN_PMC3);
70 case 3:
71 return mfspr(SPRN_PMC4);
72 case 4:
73 return mfspr(SPRN_PMC5);
74 case 5:
75 return mfspr(SPRN_PMC6);
76
77 /* No PPC32 chip has more than 6 so far */
78 #ifdef CONFIG_PPC64
79 case 6:
80 return mfspr(SPRN_PMC7);
81 case 7:
82 return mfspr(SPRN_PMC8);
83 #endif
84 default:
85 return 0;
86 }
87 }
88
89 static inline void ctr_write(unsigned int i, unsigned int val)
90 {
91 switch(i) {
92 case 0:
93 mtspr(SPRN_PMC1, val);
94 break;
95 case 1:
96 mtspr(SPRN_PMC2, val);
97 break;
98 case 2:
99 mtspr(SPRN_PMC3, val);
100 break;
101 case 3:
102 mtspr(SPRN_PMC4, val);
103 break;
104 case 4:
105 mtspr(SPRN_PMC5, val);
106 break;
107 case 5:
108 mtspr(SPRN_PMC6, val);
109 break;
110
111 /* No PPC32 chip has more than 6, yet */
112 #ifdef CONFIG_PPC64
113 case 6:
114 mtspr(SPRN_PMC7, val);
115 break;
116 case 7:
117 mtspr(SPRN_PMC8, val);
118 break;
119 #endif
120 default:
121 break;
122 }
123 }
124 #else /* CONFIG_FSL_BOOKE */
125 static inline u32 get_pmlca(int ctr)
126 {
127 u32 pmlca;
128
129 switch (ctr) {
130 case 0:
131 pmlca = mfpmr(PMRN_PMLCA0);
132 break;
133 case 1:
134 pmlca = mfpmr(PMRN_PMLCA1);
135 break;
136 case 2:
137 pmlca = mfpmr(PMRN_PMLCA2);
138 break;
139 case 3:
140 pmlca = mfpmr(PMRN_PMLCA3);
141 break;
142 default:
143 panic("Bad ctr number\n");
144 }
145
146 return pmlca;
147 }
148
149 static inline void set_pmlca(int ctr, u32 pmlca)
150 {
151 switch (ctr) {
152 case 0:
153 mtpmr(PMRN_PMLCA0, pmlca);
154 break;
155 case 1:
156 mtpmr(PMRN_PMLCA1, pmlca);
157 break;
158 case 2:
159 mtpmr(PMRN_PMLCA2, pmlca);
160 break;
161 case 3:
162 mtpmr(PMRN_PMLCA3, pmlca);
163 break;
164 default:
165 panic("Bad ctr number\n");
166 }
167 }
168
169 static inline unsigned int ctr_read(unsigned int i)
170 {
171 switch(i) {
172 case 0:
173 return mfpmr(PMRN_PMC0);
174 case 1:
175 return mfpmr(PMRN_PMC1);
176 case 2:
177 return mfpmr(PMRN_PMC2);
178 case 3:
179 return mfpmr(PMRN_PMC3);
180 default:
181 return 0;
182 }
183 }
184
185 static inline void ctr_write(unsigned int i, unsigned int val)
186 {
187 switch(i) {
188 case 0:
189 mtpmr(PMRN_PMC0, val);
190 break;
191 case 1:
192 mtpmr(PMRN_PMC1, val);
193 break;
194 case 2:
195 mtpmr(PMRN_PMC2, val);
196 break;
197 case 3:
198 mtpmr(PMRN_PMC3, val);
199 break;
200 default:
201 break;
202 }
203 }
204
205
206 #endif /* CONFIG_FSL_BOOKE */
207
208
209 extern void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth);
210
211 #endif /* __KERNEL__ */
212 #endif /* _ASM_POWERPC_OPROFILE_IMPL_H */
This page took 0.075072 seconds and 6 git commands to generate.