blob: 5b33994cd488ffc2f94f7b85b0fa12fa0cb047c4 [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);
45 void (*cpu_setup) (void *);
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
Andy Fleming555d97a2005-12-15 20:02:04 -060053extern struct op_powerpc_model op_model_fsl_booke;
Stephen Rothwella3e48c12005-09-19 23:18:31 +100054extern struct op_powerpc_model op_model_rs64;
55extern struct op_powerpc_model op_model_power4;
Andy Fleming555d97a2005-12-15 20:02:04 -060056extern struct op_powerpc_model op_model_7450;
Anton Blanchard72533db2006-03-27 11:23:29 +110057
58#ifndef CONFIG_FSL_BOOKE
Andy Fleming555d97a2005-12-15 20:02:04 -060059
60/* All the classic PPC parts use these */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static 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);
Andy Fleming555d97a2005-12-15 20:02:04 -060076
77/* No PPC32 chip has more than 6 so far */
78#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 case 6:
80 return mfspr(SPRN_PMC7);
81 case 7:
82 return mfspr(SPRN_PMC8);
Andy Fleming555d97a2005-12-15 20:02:04 -060083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 default:
85 return 0;
86 }
87}
88
89static 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;
Andy Fleming555d97a2005-12-15 20:02:04 -0600110
111/* No PPC32 chip has more than 6, yet */
112#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 case 6:
114 mtspr(SPRN_PMC7, val);
115 break;
116 case 7:
117 mtspr(SPRN_PMC8, val);
118 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 default:
121 break;
122 }
123}
Andy Fleming555d97a2005-12-15 20:02:04 -0600124#endif /* !CONFIG_FSL_BOOKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Brian Rogan6c6bd752006-03-27 11:57:01 +1100126extern void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth);
127
Arnd Bergmann88ced032005-12-16 22:43:46 +0100128#endif /* __KERNEL__ */
Stephen Rothwell654810e2005-09-19 23:21:15 +1000129#endif /* _ASM_POWERPC_OPROFILE_IMPL_H */