irqchip: Fix dependencies for archs w/o HAS_IOMEM
[linux/fpc-iii.git] / tools / testing / selftests / powerpc / pmu / ebb / no_handler_test.c
blob8341d7778d5ed4cb056a77ed846d7120a3f9cd5f
1 /*
2 * Copyright 2014, Michael Ellerman, IBM Corp.
3 * Licensed under GPLv2.
4 */
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <setjmp.h>
9 #include <signal.h>
11 #include "ebb.h"
14 /* Test that things work sanely if we have no handler */
16 static int no_handler_test(void)
18 struct event event;
19 u64 val;
20 int i;
22 SKIP_IF(!ebb_is_supported());
24 event_init_named(&event, 0x1001e, "cycles");
25 event_leader_ebb_init(&event);
27 event.attr.exclude_kernel = 1;
28 event.attr.exclude_hv = 1;
29 event.attr.exclude_idle = 1;
31 FAIL_IF(event_open(&event));
32 FAIL_IF(ebb_event_enable(&event));
34 val = mfspr(SPRN_EBBHR);
35 FAIL_IF(val != 0);
37 /* Make sure it overflows quickly */
38 sample_period = 1000;
39 mtspr(SPRN_PMC1, pmc_sample_period(sample_period));
41 /* Spin to make sure the event has time to overflow */
42 for (i = 0; i < 1000; i++)
43 mb();
45 dump_ebb_state();
47 /* We expect to see the PMU frozen & PMAO set */
48 val = mfspr(SPRN_MMCR0);
49 FAIL_IF(val != 0x0000000080000080);
51 event_close(&event);
53 dump_ebb_state();
55 /* The real test is that we never took an EBB at 0x0 */
57 return 0;
60 int main(void)
62 return test_harness(no_handler_test,"no_handler_test");