2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version 2
5 * of the License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 * Copyright (C) 2001, 2002, 2003 Broadcom Corporation
17 * Copyright (C) 2007 Ralf Baechle <ralf@linux-mips.org>
18 * Copyright (C) 2007 MIPS Technologies, Inc.
19 * written by Ralf Baechle <ralf@linux-mips.org>
24 #include <linux/device.h>
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/types.h>
28 #include <linux/init.h>
29 #include <linux/interrupt.h>
30 #include <linux/slab.h>
31 #include <linux/vmalloc.h>
33 #include <linux/errno.h>
34 #include <linux/types.h>
35 #include <linux/wait.h>
38 #include <asm/sibyte/sb1250.h>
39 #include <asm/sibyte/sb1250_regs.h>
40 #include <asm/sibyte/sb1250_scd.h>
41 #include <asm/sibyte/sb1250_int.h>
42 #include <asm/system.h>
43 #include <asm/uaccess.h>
45 #define SBPROF_TB_MAJOR 240
47 typedef u64 tb_sample_t
[6*256];
56 wait_queue_head_t tb_sync
;
57 wait_queue_head_t tb_read
;
59 enum open_status open
;
60 tb_sample_t
*sbprof_tbbuf
;
63 volatile int tb_enable
;
64 volatile int tb_armed
;
68 static struct sbprof_tb sbp
;
70 #define MAX_SAMPLE_BYTES (24*1024*1024)
71 #define MAX_TBSAMPLE_BYTES (12*1024*1024)
73 #define MAX_SAMPLES (MAX_SAMPLE_BYTES/sizeof(u_int32_t))
74 #define TB_SAMPLE_SIZE (sizeof(tb_sample_t))
75 #define MAX_TB_SAMPLES (MAX_TBSAMPLE_BYTES/TB_SAMPLE_SIZE)
78 #define SBPROF_ZBSTART _IOW('s', 0, int)
79 #define SBPROF_ZBSTOP _IOW('s', 1, int)
80 #define SBPROF_ZBWAITFULL _IOW('s', 2, int)
83 * Routines for using 40-bit SCD cycle counter
85 * Client responsible for either handling interrupts or making sure
86 * the cycles counter never saturates, e.g., by doing
87 * zclk_timer_init(0) at least every 2^40 - 1 ZCLKs.
91 * Configures SCD counter 0 to count ZCLKs starting from val;
92 * Configures SCD counters1,2,3 to count nothing.
93 * Must not be called while gathering ZBbus profiles.
96 #define zclk_timer_init(val) \
97 __asm__ __volatile__ (".set push;" \
99 "la $8, 0xb00204c0;" /* SCD perf_cnt_cfg */ \
100 "sd %0, 0x10($8);" /* write val to counter0 */ \
101 "sd %1, 0($8);" /* config counter0 for zclks*/ \
104 /* enable, counter0 */ \
105 : /* inputs */ "r"(val), "r" ((1ULL << 33) | 1ULL) \
106 : /* modifies */ "$8" )
109 /* Reads SCD counter 0 and puts result in value
110 unsigned long long val; */
111 #define zclk_get(val) \
112 __asm__ __volatile__ (".set push;" \
114 "la $8, 0xb00204c0;" /* SCD perf_cnt_cfg */ \
115 "ld %0, 0x10($8);" /* write val to counter0 */ \
117 : /* outputs */ "=r"(val) \
119 : /* modifies */ "$8" )
121 #define DEVNAME "bcm1250_tbprof"
123 #define TB_FULL (sbp.next_tb_sample == MAX_TB_SAMPLES)
126 * Support for ZBbus sampling using the trace buffer
128 * We use the SCD performance counter interrupt, caused by a Zclk counter
129 * overflow, to trigger the start of tracing.
131 * We set the trace buffer to sample everything and freeze on
134 * We map the interrupt for trace_buffer_freeze to handle it on CPU 0.
137 static u64 tb_period
;
139 static void arm_tb(void)
142 u64 next
= (1ULL << 40) - tb_period
;
143 u64 tb_options
= M_SCD_TRACE_CFG_FREEZE_FULL
;
146 * Generate an SCD_PERFCNT interrupt in TB_PERIOD Zclks to trigger
147 *start of trace. XXX vary sampling period
149 __raw_writeq(0, IOADDR(A_SCD_PERF_CNT_1
));
150 scdperfcnt
= __raw_readq(IOADDR(A_SCD_PERF_CNT_CFG
));
153 * Unfortunately, in Pass 2 we must clear all counters to knock down a
154 * previous interrupt request. This means that bus profiling requires
155 * ALL of the SCD perf counters.
157 __raw_writeq((scdperfcnt
& ~M_SPC_CFG_SRC1
) |
158 /* keep counters 0,2,3 as is */
159 M_SPC_CFG_ENABLE
| /* enable counting */
160 M_SPC_CFG_CLEAR
| /* clear all counters */
161 V_SPC_CFG_SRC1(1), /* counter 1 counts cycles */
162 IOADDR(A_SCD_PERF_CNT_CFG
));
163 __raw_writeq(next
, IOADDR(A_SCD_PERF_CNT_1
));
165 /* Reset the trace buffer */
166 __raw_writeq(M_SCD_TRACE_CFG_RESET
, IOADDR(A_SCD_TRACE_CFG
));
167 #if 0 && defined(M_SCD_TRACE_CFG_FORCECNT)
168 /* XXXKW may want to expose control to the data-collector */
169 tb_options
|= M_SCD_TRACE_CFG_FORCECNT
;
171 __raw_writeq(tb_options
, IOADDR(A_SCD_TRACE_CFG
));
175 static irqreturn_t
sbprof_tb_intr(int irq
, void *dev_id
)
179 pr_debug(DEVNAME
": tb_intr\n");
181 if (sbp
.next_tb_sample
< MAX_TB_SAMPLES
) {
182 /* XXX should use XKPHYS to make writes bypass L2 */
183 u64
*p
= sbp
.sbprof_tbbuf
[sbp
.next_tb_sample
++];
185 __raw_writeq(M_SCD_TRACE_CFG_START_READ
,
186 IOADDR(A_SCD_TRACE_CFG
));
187 __asm__
__volatile__ ("sync" : : : "memory");
188 /* Loop runs backwards because bundles are read out in reverse order */
189 for (i
= 256 * 6; i
> 0; i
-= 6) {
190 /* Subscripts decrease to put bundle in the order */
191 /* t0 lo, t0 hi, t1 lo, t1 hi, t2 lo, t2 hi */
192 p
[i
- 1] = __raw_readq(IOADDR(A_SCD_TRACE_READ
));
194 p
[i
- 2] = __raw_readq(IOADDR(A_SCD_TRACE_READ
));
196 p
[i
- 3] = __raw_readq(IOADDR(A_SCD_TRACE_READ
));
198 p
[i
- 4] = __raw_readq(IOADDR(A_SCD_TRACE_READ
));
200 p
[i
- 5] = __raw_readq(IOADDR(A_SCD_TRACE_READ
));
202 p
[i
- 6] = __raw_readq(IOADDR(A_SCD_TRACE_READ
));
205 if (!sbp
.tb_enable
) {
206 pr_debug(DEVNAME
": tb_intr shutdown\n");
207 __raw_writeq(M_SCD_TRACE_CFG_RESET
,
208 IOADDR(A_SCD_TRACE_CFG
));
210 wake_up(&sbp
.tb_sync
);
212 arm_tb(); /* knock down current interrupt and get another one later */
215 /* No more trace buffer samples */
216 pr_debug(DEVNAME
": tb_intr full\n");
217 __raw_writeq(M_SCD_TRACE_CFG_RESET
, IOADDR(A_SCD_TRACE_CFG
));
219 if (!sbp
.tb_enable
) {
220 wake_up(&sbp
.tb_sync
);
222 wake_up(&sbp
.tb_read
);
228 static irqreturn_t
sbprof_pc_intr(int irq
, void *dev_id
)
230 printk(DEVNAME
": unexpected pc_intr");
235 * Requires: Already called zclk_timer_init with a value that won't
236 * saturate 40 bits. No subsequent use of SCD performance counters
240 static int sbprof_zbprof_start(struct file
*filp
)
245 if (xchg(&sbp
.tb_enable
, 1))
248 pr_debug(DEVNAME
": starting\n");
250 sbp
.next_tb_sample
= 0;
253 err
= request_irq(K_INT_TRACE_FREEZE
, sbprof_tb_intr
, 0,
254 DEVNAME
" trace freeze", &sbp
);
258 /* Make sure there isn't a perf-cnt interrupt waiting */
259 scdperfcnt
= __raw_readq(IOADDR(A_SCD_PERF_CNT_CFG
));
260 /* Disable and clear counters, override SRC_1 */
261 __raw_writeq((scdperfcnt
& ~(M_SPC_CFG_SRC1
| M_SPC_CFG_ENABLE
)) |
262 M_SPC_CFG_ENABLE
| M_SPC_CFG_CLEAR
| V_SPC_CFG_SRC1(1),
263 IOADDR(A_SCD_PERF_CNT_CFG
));
266 * We grab this interrupt to prevent others from trying to use it, even
267 * though we don't want to service the interrupts (they only feed into
268 * the trace-on-interrupt mechanism)
270 err
= request_irq(K_INT_PERF_CNT
, sbprof_pc_intr
, 0,
271 DEVNAME
" scd perfcnt", &sbp
);
276 * I need the core to mask these, but the interrupt mapper to pass them
277 * through. I am exploiting my knowledge that cp0_status masks out
280 __raw_writeq(K_INT_MAP_I3
,
281 IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MAP_BASE
) +
282 (K_INT_PERF_CNT
<< 3)));
284 /* Initialize address traps */
285 __raw_writeq(0, IOADDR(A_ADDR_TRAP_UP_0
));
286 __raw_writeq(0, IOADDR(A_ADDR_TRAP_UP_1
));
287 __raw_writeq(0, IOADDR(A_ADDR_TRAP_UP_2
));
288 __raw_writeq(0, IOADDR(A_ADDR_TRAP_UP_3
));
290 __raw_writeq(0, IOADDR(A_ADDR_TRAP_DOWN_0
));
291 __raw_writeq(0, IOADDR(A_ADDR_TRAP_DOWN_1
));
292 __raw_writeq(0, IOADDR(A_ADDR_TRAP_DOWN_2
));
293 __raw_writeq(0, IOADDR(A_ADDR_TRAP_DOWN_3
));
295 __raw_writeq(0, IOADDR(A_ADDR_TRAP_CFG_0
));
296 __raw_writeq(0, IOADDR(A_ADDR_TRAP_CFG_1
));
297 __raw_writeq(0, IOADDR(A_ADDR_TRAP_CFG_2
));
298 __raw_writeq(0, IOADDR(A_ADDR_TRAP_CFG_3
));
300 /* Initialize Trace Event 0-7 */
302 __raw_writeq(M_SCD_TREVT_INTERRUPT
, IOADDR(A_SCD_TRACE_EVENT_0
));
303 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_1
));
304 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_2
));
305 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_3
));
306 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_4
));
307 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_5
));
308 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_6
));
309 __raw_writeq(0, IOADDR(A_SCD_TRACE_EVENT_7
));
311 /* Initialize Trace Sequence 0-7 */
312 /* Start on event 0 (interrupt) */
313 __raw_writeq(V_SCD_TRSEQ_FUNC_START
| 0x0fff,
314 IOADDR(A_SCD_TRACE_SEQUENCE_0
));
315 /* dsamp when d used | asamp when a used */
316 __raw_writeq(M_SCD_TRSEQ_ASAMPLE
| M_SCD_TRSEQ_DSAMPLE
|
317 K_SCD_TRSEQ_TRIGGER_ALL
,
318 IOADDR(A_SCD_TRACE_SEQUENCE_1
));
319 __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_2
));
320 __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_3
));
321 __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_4
));
322 __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_5
));
323 __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_6
));
324 __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_7
));
326 /* Now indicate the PERF_CNT interrupt as a trace-relevant interrupt */
327 __raw_writeq(1ULL << K_INT_PERF_CNT
,
328 IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_TRACE
)));
332 pr_debug(DEVNAME
": done starting\n");
337 free_irq(K_INT_TRACE_FREEZE
, &sbp
);
342 static int sbprof_zbprof_stop(void)
346 pr_debug(DEVNAME
": stopping\n");
350 * XXXKW there is a window here where the intr handler may run,
351 * see the disable, and do the wake_up before this sleep
354 pr_debug(DEVNAME
": wait for disarm\n");
355 err
= wait_event_interruptible(sbp
.tb_sync
, !sbp
.tb_armed
);
356 pr_debug(DEVNAME
": disarm complete, stat %d\n", err
);
362 free_irq(K_INT_TRACE_FREEZE
, &sbp
);
363 free_irq(K_INT_PERF_CNT
, &sbp
);
366 pr_debug(DEVNAME
": done stopping\n");
371 static int sbprof_tb_open(struct inode
*inode
, struct file
*filp
)
375 minor
= iminor(inode
);
379 if (xchg(&sbp
.open
, SB_OPENING
) != SB_CLOSED
)
382 memset(&sbp
, 0, sizeof(struct sbprof_tb
));
384 sbp
.sbprof_tbbuf
= vmalloc(MAX_TBSAMPLE_BYTES
);
385 if (!sbp
.sbprof_tbbuf
)
388 memset(sbp
.sbprof_tbbuf
, 0, MAX_TBSAMPLE_BYTES
);
389 init_waitqueue_head(&sbp
.tb_sync
);
390 init_waitqueue_head(&sbp
.tb_read
);
391 mutex_init(&sbp
.lock
);
398 static int sbprof_tb_release(struct inode
*inode
, struct file
*filp
)
400 int minor
= iminor(inode
);
402 if (minor
!= 0 || !sbp
.open
)
405 mutex_lock(&sbp
.lock
);
407 if (sbp
.tb_armed
|| sbp
.tb_enable
)
408 sbprof_zbprof_stop();
410 vfree(sbp
.sbprof_tbbuf
);
413 mutex_unlock(&sbp
.lock
);
418 static ssize_t
sbprof_tb_read(struct file
*filp
, char *buf
,
419 size_t size
, loff_t
*offp
)
421 int cur_sample
, sample_off
, cur_count
, sample_left
;
422 long cur_off
= *offp
;
427 if (!access_ok(VERIFY_WRITE
, buf
, size
))
430 mutex_lock(&sbp
.lock
);
433 cur_sample
= cur_off
/ TB_SAMPLE_SIZE
;
434 sample_off
= cur_off
% TB_SAMPLE_SIZE
;
435 sample_left
= TB_SAMPLE_SIZE
- sample_off
;
437 while (size
&& (cur_sample
< sbp
.next_tb_sample
)) {
440 cur_count
= size
< sample_left
? size
: sample_left
;
441 src
= (char *)(((long)sbp
.sbprof_tbbuf
[cur_sample
])+sample_off
);
442 err
= __copy_to_user(dest
, src
, cur_count
);
444 *offp
= cur_off
+ cur_count
- err
;
445 mutex_unlock(&sbp
.lock
);
449 pr_debug(DEVNAME
": read from sample %d, %d bytes\n",
450 cur_sample
, cur_count
);
452 sample_left
-= cur_count
;
456 sample_left
= TB_SAMPLE_SIZE
;
458 sample_off
+= cur_count
;
460 cur_off
+= cur_count
;
466 mutex_unlock(&sbp
.lock
);
471 static long sbprof_tb_ioctl(struct file
*filp
, unsigned int command
,
478 mutex_lock(&sbp
.lock
);
479 error
= sbprof_zbprof_start(filp
);
480 mutex_unlock(&sbp
.lock
);
484 mutex_lock(&sbp
.lock
);
485 error
= sbprof_zbprof_stop();
486 mutex_unlock(&sbp
.lock
);
489 case SBPROF_ZBWAITFULL
:
490 error
= wait_event_interruptible(sbp
.tb_read
, TB_FULL
);
494 error
= put_user(TB_FULL
, (int *) arg
);
505 static const struct file_operations sbprof_tb_fops
= {
506 .owner
= THIS_MODULE
,
507 .open
= sbprof_tb_open
,
508 .release
= sbprof_tb_release
,
509 .read
= sbprof_tb_read
,
510 .unlocked_ioctl
= sbprof_tb_ioctl
,
511 .compat_ioctl
= sbprof_tb_ioctl
,
515 static struct class *tb_class
;
516 static struct device
*tb_dev
;
518 static int __init
sbprof_tb_init(void)
524 if (register_chrdev(SBPROF_TB_MAJOR
, DEVNAME
, &sbprof_tb_fops
)) {
525 printk(KERN_WARNING DEVNAME
": initialization failed (dev %d)\n",
530 tbc
= class_create(THIS_MODULE
, "sb_tracebuffer");
538 dev
= device_create(tbc
, NULL
, MKDEV(SBPROF_TB_MAJOR
, 0), "tb");
546 tb_period
= zbbus_mhz
* 10000LL;
547 pr_info(DEVNAME
": initialized - tb_period = %lld\n", tb_period
);
552 class_destroy(tb_class
);
554 unregister_chrdev(SBPROF_TB_MAJOR
, DEVNAME
);
559 static void __exit
sbprof_tb_cleanup(void)
561 device_destroy(tb_class
, MKDEV(SBPROF_TB_MAJOR
, 0));
562 unregister_chrdev(SBPROF_TB_MAJOR
, DEVNAME
);
563 class_destroy(tb_class
);
566 module_init(sbprof_tb_init
);
567 module_exit(sbprof_tb_cleanup
);
569 MODULE_ALIAS_CHARDEV_MAJOR(SBPROF_TB_MAJOR
);
570 MODULE_AUTHOR("Ralf Baechle <ralf@linux-mips.org>");
571 MODULE_LICENSE("GPL");