blob: 94c0ad2bff961d8bef27e44ca780d99649a01cb4 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
40/* Per-arch configuration */
Stephen Rothwella3e48c12005-09-19 23:18:31 +100041struct op_powerpc_model {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 void (*reg_setup) (struct op_counter_config *,
43 struct op_system_config *,
44 int num_counters);
Andy Flemingdd6c89f2006-10-27 15:06:32 -050045 void (*cpu_setup) (struct op_counter_config *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 void (*start) (struct op_counter_config *);
Maynard Johnson18f21902006-11-20 18:45:16 +010047 void (*global_start) (struct op_counter_config *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 void (*stop) (void);
Maynard Johnson18f21902006-11-20 18:45:16 +010049 void (*global_stop) (void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 void (*handle_interrupt) (struct pt_regs *,
51 struct op_counter_config *);
52 int num_counters;
53};
54
Andy Fleming555d97a2005-12-15 20:02:04 -060055extern struct op_powerpc_model op_model_fsl_booke;
Stephen Rothwella3e48c12005-09-19 23:18:31 +100056extern struct op_powerpc_model op_model_rs64;
57extern struct op_powerpc_model op_model_power4;
Andy Fleming555d97a2005-12-15 20:02:04 -060058extern struct op_powerpc_model op_model_7450;
Maynard Johnson18f21902006-11-20 18:45:16 +010059extern struct op_powerpc_model op_model_cell;
Anton Blanchard72533db2006-03-27 11:23:29 +110060
Andy Fleming555d97a2005-12-15 20:02:04 -060061/* All the classic PPC parts use these */
Olof Johanssonc69b7672007-01-28 21:23:14 -060062static inline unsigned int classic_ctr_read(unsigned int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 switch(i) {
65 case 0:
66 return mfspr(SPRN_PMC1);
67 case 1:
68 return mfspr(SPRN_PMC2);
69 case 2:
70 return mfspr(SPRN_PMC3);
71 case 3:
72 return mfspr(SPRN_PMC4);
73 case 4:
74 return mfspr(SPRN_PMC5);
75 case 5:
76 return mfspr(SPRN_PMC6);
Andy Fleming555d97a2005-12-15 20:02:04 -060077
78/* No PPC32 chip has more than 6 so far */
79#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 case 6:
81 return mfspr(SPRN_PMC7);
82 case 7:
83 return mfspr(SPRN_PMC8);
Andy Fleming555d97a2005-12-15 20:02:04 -060084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 default:
86 return 0;
87 }
88}
89
Olof Johanssonc69b7672007-01-28 21:23:14 -060090static inline void classic_ctr_write(unsigned int i, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 switch(i) {
93 case 0:
94 mtspr(SPRN_PMC1, val);
95 break;
96 case 1:
97 mtspr(SPRN_PMC2, val);
98 break;
99 case 2:
100 mtspr(SPRN_PMC3, val);
101 break;
102 case 3:
103 mtspr(SPRN_PMC4, val);
104 break;
105 case 4:
106 mtspr(SPRN_PMC5, val);
107 break;
108 case 5:
109 mtspr(SPRN_PMC6, val);
110 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600111
112/* No PPC32 chip has more than 6, yet */
113#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 case 6:
115 mtspr(SPRN_PMC7, val);
116 break;
117 case 7:
118 mtspr(SPRN_PMC8, val);
119 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 default:
122 break;
123 }
124}
Andy Flemingdd6c89f2006-10-27 15:06:32 -0500125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Brian Rogan6c6bd752006-03-27 11:57:01 +1100127extern void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth);
128
Arnd Bergmann88ced032005-12-16 22:43:46 +0100129#endif /* __KERNEL__ */
Stephen Rothwell654810e2005-09-19 23:21:15 +1000130#endif /* _ASM_POWERPC_OPROFILE_IMPL_H */