blob: 639dc96077ab815addab3a43bc894e5654fe6bd9 [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;
Carl Love88382322008-12-01 16:18:36 -080035#ifdef CONFIG_OPROFILE_CELL
36 /* Register for oprofile user tool to check cell kernel profiling
37 * suport.
38 */
39 unsigned long cell_support;
40#endif
Stephen Rothwell654810e2005-09-19 23:21:15 +100041#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 unsigned long enable_kernel;
43 unsigned long enable_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46/* Per-arch configuration */
Stephen Rothwella3e48c12005-09-19 23:18:31 +100047struct op_powerpc_model {
Bob Nelson14748552007-07-20 21:39:53 +020048 int (*reg_setup) (struct op_counter_config *,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct op_system_config *,
50 int num_counters);
Bob Nelson14748552007-07-20 21:39:53 +020051 int (*cpu_setup) (struct op_counter_config *);
52 int (*start) (struct op_counter_config *);
53 int (*global_start) (struct op_counter_config *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 void (*stop) (void);
Maynard Johnson18f21902006-11-20 18:45:16 +010055 void (*global_stop) (void);
Bob Nelson14748552007-07-20 21:39:53 +020056 int (*sync_start)(void);
57 int (*sync_stop)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 void (*handle_interrupt) (struct pt_regs *,
59 struct op_counter_config *);
60 int num_counters;
61};
62
Andy Fleming39aef682008-02-04 18:27:55 -060063extern struct op_powerpc_model op_model_fsl_emb;
Stephen Rothwella3e48c12005-09-19 23:18:31 +100064extern struct op_powerpc_model op_model_rs64;
65extern struct op_powerpc_model op_model_power4;
Andy Fleming555d97a2005-12-15 20:02:04 -060066extern struct op_powerpc_model op_model_7450;
Maynard Johnson18f21902006-11-20 18:45:16 +010067extern struct op_powerpc_model op_model_cell;
Olof Johansson25fc5302007-04-18 16:38:21 +100068extern struct op_powerpc_model op_model_pa6t;
69
Anton Blanchard72533db2006-03-27 11:23:29 +110070
Andy Fleming555d97a2005-12-15 20:02:04 -060071/* All the classic PPC parts use these */
Olof Johanssonc69b7672007-01-28 21:23:14 -060072static inline unsigned int classic_ctr_read(unsigned int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
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
Olof Johanssonc69b7672007-01-28 21:23:14 -0600100static inline void classic_ctr_write(unsigned int i, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
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 Flemingdd6c89f2006-10-27 15:06:32 -0500135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Brian Rogan6c6bd752006-03-27 11:57:01 +1100137extern void op_powerpc_backtrace(struct pt_regs * const regs, unsigned int depth);
138
Arnd Bergmann88ced032005-12-16 22:43:46 +0100139#endif /* __KERNEL__ */
Stephen Rothwell654810e2005-09-19 23:21:15 +1000140#endif /* _ASM_POWERPC_OPROFILE_IMPL_H */