Skip to content

Commit

Permalink
sparc64: Provide a way to specify a perf counter overflow IRQ enable …
Browse files Browse the repository at this point in the history
…bit.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Sep 10, 2009
1 parent 91b9286 commit 496c07e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arch/sparc/kernel/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ struct sparc_pmu {
int lower_shift;
int event_mask;
int hv_bit;
int irq_bit;
};

static const struct perf_event_map ultra3i_perfmon_event_map[] = {
Expand Down Expand Up @@ -179,7 +180,8 @@ void hw_perf_disable(void)
cpuc->enabled = 0;

val = pcr_ops->read();
val &= ~(PCR_UTRACE | PCR_STRACE | sparc_pmu->hv_bit);
val &= ~(PCR_UTRACE | PCR_STRACE |
sparc_pmu->hv_bit | sparc_pmu->irq_bit);
pcr_ops->write(val);
}

Expand Down Expand Up @@ -373,7 +375,7 @@ static int __hw_perf_counter_init(struct perf_counter *counter)
* turn off sampling just write 'config', and to enable
* things write 'config | config_base'.
*/
hwc->config_base = 0;
hwc->config_base = sparc_pmu->irq_bit;
if (!attr->exclude_user)
hwc->config_base |= PCR_UTRACE;
if (!attr->exclude_kernel)
Expand Down

0 comments on commit 496c07e

Please sign in to comment.