ARM: dts: kirkwood: gpio-leds fixes for linkstation ls-wvl/vl
[linux/fpc-iii.git] / tools / perf / arch / x86 / tests / perf-time-to-tsc.c
blob9d29ee283ac5334bfd6a529c7a9d226f0db782cd
1 #include <stdio.h>
2 #include <unistd.h>
3 #include <linux/types.h>
4 #include <sys/prctl.h>
6 #include "parse-events.h"
7 #include "evlist.h"
8 #include "evsel.h"
9 #include "thread_map.h"
10 #include "cpumap.h"
11 #include "tsc.h"
12 #include "tests/tests.h"
14 #include "arch-tests.h"
16 #define CHECK__(x) { \
17 while ((x) < 0) { \
18 pr_debug(#x " failed!\n"); \
19 goto out_err; \
20 } \
23 #define CHECK_NOT_NULL__(x) { \
24 while ((x) == NULL) { \
25 pr_debug(#x " failed!\n"); \
26 goto out_err; \
27 } \
30 /**
31 * test__perf_time_to_tsc - test converting perf time to TSC.
33 * This function implements a test that checks that the conversion of perf time
34 * to and from TSC is consistent with the order of events. If the test passes
35 * %0 is returned, otherwise %-1 is returned. If TSC conversion is not
36 * supported then then the test passes but " (not supported)" is printed.
38 int test__perf_time_to_tsc(int subtest __maybe_unused)
40 struct record_opts opts = {
41 .mmap_pages = UINT_MAX,
42 .user_freq = UINT_MAX,
43 .user_interval = ULLONG_MAX,
44 .target = {
45 .uses_mmap = true,
47 .sample_time = true,
49 struct thread_map *threads = NULL;
50 struct cpu_map *cpus = NULL;
51 struct perf_evlist *evlist = NULL;
52 struct perf_evsel *evsel = NULL;
53 int err = -1, ret, i;
54 const char *comm1, *comm2;
55 struct perf_tsc_conversion tc;
56 struct perf_event_mmap_page *pc;
57 union perf_event *event;
58 u64 test_tsc, comm1_tsc, comm2_tsc;
59 u64 test_time, comm1_time = 0, comm2_time = 0;
61 threads = thread_map__new(-1, getpid(), UINT_MAX);
62 CHECK_NOT_NULL__(threads);
64 cpus = cpu_map__new(NULL);
65 CHECK_NOT_NULL__(cpus);
67 evlist = perf_evlist__new();
68 CHECK_NOT_NULL__(evlist);
70 perf_evlist__set_maps(evlist, cpus, threads);
72 CHECK__(parse_events(evlist, "cycles:u", NULL));
74 perf_evlist__config(evlist, &opts);
76 evsel = perf_evlist__first(evlist);
78 evsel->attr.comm = 1;
79 evsel->attr.disabled = 1;
80 evsel->attr.enable_on_exec = 0;
82 CHECK__(perf_evlist__open(evlist));
84 CHECK__(perf_evlist__mmap(evlist, UINT_MAX, false));
86 pc = evlist->mmap[0].base;
87 ret = perf_read_tsc_conversion(pc, &tc);
88 if (ret) {
89 if (ret == -EOPNOTSUPP) {
90 fprintf(stderr, " (not supported)");
91 return 0;
93 goto out_err;
96 perf_evlist__enable(evlist);
98 comm1 = "Test COMM 1";
99 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm1, 0, 0, 0));
101 test_tsc = rdtsc();
103 comm2 = "Test COMM 2";
104 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm2, 0, 0, 0));
106 perf_evlist__disable(evlist);
108 for (i = 0; i < evlist->nr_mmaps; i++) {
109 while ((event = perf_evlist__mmap_read(evlist, i)) != NULL) {
110 struct perf_sample sample;
112 if (event->header.type != PERF_RECORD_COMM ||
113 (pid_t)event->comm.pid != getpid() ||
114 (pid_t)event->comm.tid != getpid())
115 goto next_event;
117 if (strcmp(event->comm.comm, comm1) == 0) {
118 CHECK__(perf_evsel__parse_sample(evsel, event,
119 &sample));
120 comm1_time = sample.time;
122 if (strcmp(event->comm.comm, comm2) == 0) {
123 CHECK__(perf_evsel__parse_sample(evsel, event,
124 &sample));
125 comm2_time = sample.time;
127 next_event:
128 perf_evlist__mmap_consume(evlist, i);
132 if (!comm1_time || !comm2_time)
133 goto out_err;
135 test_time = tsc_to_perf_time(test_tsc, &tc);
136 comm1_tsc = perf_time_to_tsc(comm1_time, &tc);
137 comm2_tsc = perf_time_to_tsc(comm2_time, &tc);
139 pr_debug("1st event perf time %"PRIu64" tsc %"PRIu64"\n",
140 comm1_time, comm1_tsc);
141 pr_debug("rdtsc time %"PRIu64" tsc %"PRIu64"\n",
142 test_time, test_tsc);
143 pr_debug("2nd event perf time %"PRIu64" tsc %"PRIu64"\n",
144 comm2_time, comm2_tsc);
146 if (test_time <= comm1_time ||
147 test_time >= comm2_time)
148 goto out_err;
150 if (test_tsc <= comm1_tsc ||
151 test_tsc >= comm2_tsc)
152 goto out_err;
154 err = 0;
156 out_err:
157 if (evlist) {
158 perf_evlist__disable(evlist);
159 perf_evlist__delete(evlist);
162 return err;