blob: 338e6a7cff4a4dbf1976d69052e7c8d8c3cc892a [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 {
Stephen Rothwell654810e2005-09-19 23:21:15 +100020#ifdef __powerpc64__
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 unsigned long valid;
Stephen Rothwell654810e2005-09-19 23:21:15 +100022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 unsigned long enabled;
24 unsigned long event;
25 unsigned long count;
Andy Fleming555d97a2005-12-15 20:02:04 -060026 /* Classic doesn't support per-counter user/kernel selection */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 unsigned long kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 unsigned long user;
29 unsigned long unit_mask;
30};
31
32/* System-wide configuration as set via oprofilefs. */
33struct op_system_config {
Andy Fleming555d97a2005-12-15 20:02:04 -060034#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned long mmcr0;
36 unsigned long mmcr1;
37 unsigned long mmcra;
Stephen Rothwell654810e2005-09-19 23:21:15 +100038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 unsigned long enable_kernel;
40 unsigned long enable_user;
Andy Fleming555d97a2005-12-15 20:02:04 -060041#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 unsigned long backtrace_spinlocks;
Stephen Rothwell654810e2005-09-19 23:21:15 +100043#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46/* Per-arch configuration */
Stephen Rothwella3e48c12005-09-19 23:18:31 +100047struct op_powerpc_model {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 void (*reg_setup) (struct op_counter_config *,
49 struct op_system_config *,
50 int num_counters);
51 void (*cpu_setup) (void *);
52 void (*start) (struct op_counter_config *);
53 void (*stop) (void);
54 void (*handle_interrupt) (struct pt_regs *,
55 struct op_counter_config *);
56 int num_counters;
57};
58
Andy Fleming555d97a2005-12-15 20:02:04 -060059#ifdef CONFIG_FSL_BOOKE
60extern struct op_powerpc_model op_model_fsl_booke;
61#else /* Otherwise, it's classic */
62
63#ifdef CONFIG_PPC64
Stephen Rothwella3e48c12005-09-19 23:18:31 +100064extern struct op_powerpc_model op_model_rs64;
65extern struct op_powerpc_model op_model_power4;
Anton Blancharddca85932005-09-06 14:55:35 +100066
Andy Fleming555d97a2005-12-15 20:02:04 -060067#else /* Otherwise, CONFIG_PPC32 */
68extern struct op_powerpc_model op_model_7450;
69#endif
70
71/* All the classic PPC parts use these */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static inline unsigned int ctr_read(unsigned int i)
73{
74 switch(i) {
75 case 0:
76 return mfspr(SPRN_PMC1);
77 case 1:
78 return mfspr(SPRN_PMC2);
79 case 2:
80 return mfspr(SPRN_PMC3);
81 case 3:
82 return mfspr(SPRN_PMC4);
83 case 4:
84 return mfspr(SPRN_PMC5);
85 case 5:
86 return mfspr(SPRN_PMC6);
Andy Fleming555d97a2005-12-15 20:02:04 -060087
88/* No PPC32 chip has more than 6 so far */
89#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 case 6:
91 return mfspr(SPRN_PMC7);
92 case 7:
93 return mfspr(SPRN_PMC8);
Andy Fleming555d97a2005-12-15 20:02:04 -060094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 default:
96 return 0;
97 }
98}
99
100static inline void ctr_write(unsigned int i, unsigned int val)
101{
102 switch(i) {
103 case 0:
104 mtspr(SPRN_PMC1, val);
105 break;
106 case 1:
107 mtspr(SPRN_PMC2, val);
108 break;
109 case 2:
110 mtspr(SPRN_PMC3, val);
111 break;
112 case 3:
113 mtspr(SPRN_PMC4, val);
114 break;
115 case 4:
116 mtspr(SPRN_PMC5, val);
117 break;
118 case 5:
119 mtspr(SPRN_PMC6, val);
120 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600121
122/* No PPC32 chip has more than 6, yet */
123#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 case 6:
125 mtspr(SPRN_PMC7, val);
126 break;
127 case 7:
128 mtspr(SPRN_PMC8, val);
129 break;
Andy Fleming555d97a2005-12-15 20:02:04 -0600130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 default:
132 break;
133 }
134}
Andy Fleming555d97a2005-12-15 20:02:04 -0600135#endif /* !CONFIG_FSL_BOOKE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Arnd Bergmann88ced032005-12-16 22:43:46 +0100137#endif /* __KERNEL__ */
Stephen Rothwell654810e2005-09-19 23:21:15 +1000138#endif /* _ASM_POWERPC_OPROFILE_IMPL_H */