2 * AVR32 Performance Counter Driver
4 * Copyright (C) 2005-2007 Atmel Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Author: Ronny Pedersen
12 #include <linux/errno.h>
13 #include <linux/interrupt.h>
14 #include <linux/irq.h>
15 #include <linux/oprofile.h>
16 #include <linux/sched.h>
17 #include <linux/types.h>
19 #include <asm/sysreg.h>
20 #include <asm/system.h>
22 #define AVR32_PERFCTR_IRQ_GROUP 0
23 #define AVR32_PERFCTR_IRQ_LINE 1
25 enum { PCCNT
, PCNT0
, PCNT1
, NR_counter
};
27 struct avr32_perf_counter
{
28 unsigned long enabled
;
31 unsigned long unit_mask
;
39 static struct avr32_perf_counter counter
[NR_counter
] = {
41 .ie_mask
= SYSREG_BIT(IEC
),
42 .flag_mask
= SYSREG_BIT(FC
),
44 .ie_mask
= SYSREG_BIT(IE0
),
45 .flag_mask
= SYSREG_BIT(F0
),
47 .ie_mask
= SYSREG_BIT(IE1
),
48 .flag_mask
= SYSREG_BIT(F1
),
52 static void avr32_perf_counter_reset(void)
54 /* Reset all counter and disable/clear all interrupts */
55 sysreg_write(PCCR
, (SYSREG_BIT(PCCR_R
)
62 static irqreturn_t
avr32_perf_counter_interrupt(int irq
, void *dev_id
)
64 struct avr32_perf_counter
*ctr
= dev_id
;
68 if (likely(!(intc_get_pending(AVR32_PERFCTR_IRQ_GROUP
)
69 & (1 << AVR32_PERFCTR_IRQ_LINE
))))
72 regs
= get_irq_regs();
73 pccr
= sysreg_read(PCCR
);
75 /* Clear the interrupt flags we're about to handle */
76 sysreg_write(PCCR
, pccr
);
79 if (ctr
->enabled
&& (pccr
& ctr
->flag_mask
)) {
80 sysreg_write(PCCNT
, -ctr
->count
);
81 oprofile_add_sample(regs
, PCCNT
);
85 if (ctr
->enabled
&& (pccr
& ctr
->flag_mask
)) {
86 sysreg_write(PCNT0
, -ctr
->count
);
87 oprofile_add_sample(regs
, PCNT0
);
91 if (ctr
->enabled
&& (pccr
& ctr
->flag_mask
)) {
92 sysreg_write(PCNT1
, -ctr
->count
);
93 oprofile_add_sample(regs
, PCNT1
);
99 static int avr32_perf_counter_create_files(struct super_block
*sb
,
106 for (i
= 0; i
< NR_counter
; i
++) {
107 snprintf(filename
, sizeof(filename
), "%u", i
);
108 dir
= oprofilefs_mkdir(sb
, root
, filename
);
110 oprofilefs_create_ulong(sb
, dir
, "enabled",
111 &counter
[i
].enabled
);
112 oprofilefs_create_ulong(sb
, dir
, "event",
114 oprofilefs_create_ulong(sb
, dir
, "count",
118 oprofilefs_create_ulong(sb
, dir
, "kernel",
120 oprofilefs_create_ulong(sb
, dir
, "user",
122 oprofilefs_create_ulong(sb
, dir
, "unit_mask",
123 &counter
[i
].unit_mask
);
129 static int avr32_perf_counter_setup(void)
131 struct avr32_perf_counter
*ctr
;
136 pr_debug("avr32_perf_counter_setup\n");
138 if (sysreg_read(PCCR
) & SYSREG_BIT(PCCR_E
)) {
140 "oprofile: setup: perf counter already enabled\n");
144 ret
= request_irq(AVR32_PERFCTR_IRQ_GROUP
,
145 avr32_perf_counter_interrupt
, IRQF_SHARED
,
146 "oprofile", counter
);
150 avr32_perf_counter_reset();
153 for (i
= PCCNT
; i
< NR_counter
; i
++) {
158 pr_debug("enabling counter %d...\n", i
);
160 pccr
|= ctr
->ie_mask
;
164 /* PCCNT always counts cycles, so no events */
165 sysreg_write(PCCNT
, -ctr
->count
);
168 pccr
|= SYSREG_BF(CONF0
, ctr
->event
);
169 sysreg_write(PCNT0
, -ctr
->count
);
172 pccr
|= SYSREG_BF(CONF1
, ctr
->event
);
173 sysreg_write(PCNT1
, -ctr
->count
);
178 pr_debug("oprofile: writing 0x%x to PCCR...\n", pccr
);
180 sysreg_write(PCCR
, pccr
);
185 static void avr32_perf_counter_shutdown(void)
187 pr_debug("avr32_perf_counter_shutdown\n");
189 avr32_perf_counter_reset();
190 free_irq(AVR32_PERFCTR_IRQ_GROUP
, counter
);
193 static int avr32_perf_counter_start(void)
195 pr_debug("avr32_perf_counter_start\n");
197 sysreg_write(PCCR
, sysreg_read(PCCR
) | SYSREG_BIT(PCCR_E
));
202 static void avr32_perf_counter_stop(void)
204 pr_debug("avr32_perf_counter_stop\n");
206 sysreg_write(PCCR
, sysreg_read(PCCR
) & ~SYSREG_BIT(PCCR_E
));
209 static struct oprofile_operations avr32_perf_counter_ops __initdata
= {
210 .create_files
= avr32_perf_counter_create_files
,
211 .setup
= avr32_perf_counter_setup
,
212 .shutdown
= avr32_perf_counter_shutdown
,
213 .start
= avr32_perf_counter_start
,
214 .stop
= avr32_perf_counter_stop
,
218 int __init
oprofile_arch_init(struct oprofile_operations
*ops
)
220 if (!(current_cpu_data
.features
& AVR32_FEATURE_PCTR
))
223 memcpy(ops
, &avr32_perf_counter_ops
,
224 sizeof(struct oprofile_operations
));
226 printk(KERN_INFO
"oprofile: using AVR32 performance monitoring.\n");
231 void oprofile_arch_exit(void)