~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/powerpc/pmu/ebb/no_handler_test.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*
  3  * Copyright 2014, Michael Ellerman, IBM Corp.
  4  */
  5 
  6 #include <stdio.h>
  7 #include <stdlib.h>
  8 #include <setjmp.h>
  9 #include <signal.h>
 10 
 11 #include "ebb.h"
 12 
 13 
 14 /* Test that things work sanely if we have no handler */
 15 
 16 static int no_handler_test(void)
 17 {
 18         struct event event;
 19         u64 val;
 20         int i;
 21 
 22         SKIP_IF(!ebb_is_supported());
 23 
 24         event_init_named(&event, 0x1001e, "cycles");
 25         event_leader_ebb_init(&event);
 26 
 27         event.attr.exclude_kernel = 1;
 28         event.attr.exclude_hv = 1;
 29         event.attr.exclude_idle = 1;
 30 
 31         FAIL_IF(event_open(&event));
 32         FAIL_IF(ebb_event_enable(&event));
 33 
 34         val = mfspr(SPRN_EBBHR);
 35         FAIL_IF(val != 0);
 36 
 37         /* Make sure it overflows quickly */
 38         sample_period = 1000;
 39         mtspr(SPRN_PMC1, pmc_sample_period(sample_period));
 40 
 41         /* Spin to make sure the event has time to overflow */
 42         for (i = 0; i < 1000; i++)
 43                 mb();
 44 
 45         dump_ebb_state();
 46 
 47         /* We expect to see the PMU frozen & PMAO set */
 48         val = mfspr(SPRN_MMCR0);
 49         FAIL_IF(val != 0x0000000080000080);
 50 
 51         event_close(&event);
 52 
 53         /* The real test is that we never took an EBB at 0x0 */
 54 
 55         return 0;
 56 }
 57 
 58 int main(void)
 59 {
 60         return test_harness(no_handler_test,"no_handler_test");
 61 }
 62 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php