blob: 5b83f56a3b6f25928337d3954d2924322d3154ef [file] [log] [blame]
Namhyung Kimbc96b362013-03-18 11:41:47 +09001#include <unistd.h>
2#include <stdlib.h>
3#include <signal.h>
4#include <sys/mman.h>
5
6#include "tests.h"
7#include "util/evsel.h"
8#include "util/evlist.h"
9#include "util/cpumap.h"
10#include "util/thread_map.h"
11
Adrian Hunter3fe21302013-11-12 11:45:21 -030012#define NR_LOOPS 10000000
Namhyung Kimbc96b362013-03-18 11:41:47 +090013
14/*
15 * This test will open software clock events (cpu-clock, task-clock)
16 * then check their frequency -> period conversion has no artifact of
17 * setting period to 1 forcefully.
18 */
19static int __test__sw_clock_freq(enum perf_sw_ids clock_id)
20{
21 int i, err = -1;
22 volatile int tmp = 0;
23 u64 total_periods = 0;
24 int nr_samples = 0;
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +000025 char sbuf[STRERR_BUFSIZE];
Namhyung Kimbc96b362013-03-18 11:41:47 +090026 union perf_event *event;
27 struct perf_evsel *evsel;
28 struct perf_evlist *evlist;
29 struct perf_event_attr attr = {
30 .type = PERF_TYPE_SOFTWARE,
31 .config = clock_id,
32 .sample_type = PERF_SAMPLE_PERIOD,
33 .exclude_kernel = 1,
34 .disabled = 1,
35 .freq = 1,
36 };
Adrian Hunterc5e6bd22015-09-08 10:59:02 +030037 struct cpu_map *cpus;
38 struct thread_map *threads;
Namhyung Kimbc96b362013-03-18 11:41:47 +090039
Arnaldo Carvalho de Melo67c1e4a2013-11-11 16:33:18 -030040 attr.sample_freq = 500;
Namhyung Kimbc96b362013-03-18 11:41:47 +090041
42 evlist = perf_evlist__new();
43 if (evlist == NULL) {
44 pr_debug("perf_evlist__new\n");
45 return -1;
46 }
47
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -030048 evsel = perf_evsel__new(&attr);
Namhyung Kimbc96b362013-03-18 11:41:47 +090049 if (evsel == NULL) {
50 pr_debug("perf_evsel__new\n");
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -030051 goto out_delete_evlist;
Namhyung Kimbc96b362013-03-18 11:41:47 +090052 }
53 perf_evlist__add(evlist, evsel);
54
Adrian Hunterc5e6bd22015-09-08 10:59:02 +030055 cpus = cpu_map__dummy_new();
56 threads = thread_map__new_by_tid(getpid());
57 if (!cpus || !threads) {
Namhyung Kimbc96b362013-03-18 11:41:47 +090058 err = -ENOMEM;
59 pr_debug("Not enough memory to create thread/cpu maps\n");
Adrian Hunterc5e6bd22015-09-08 10:59:02 +030060 goto out_free_maps;
Namhyung Kimbc96b362013-03-18 11:41:47 +090061 }
62
Adrian Hunterc5e6bd22015-09-08 10:59:02 +030063 perf_evlist__set_maps(evlist, cpus, threads);
64
65 cpus = NULL;
66 threads = NULL;
67
Arnaldo Carvalho de Melod0b849e2013-11-11 16:28:42 -030068 if (perf_evlist__open(evlist)) {
Arnaldo Carvalho de Melo67c1e4a2013-11-11 16:33:18 -030069 const char *knob = "/proc/sys/kernel/perf_event_max_sample_rate";
70
Arnaldo Carvalho de Melod0b849e2013-11-11 16:28:42 -030071 err = -errno;
Arnaldo Carvalho de Melo67c1e4a2013-11-11 16:33:18 -030072 pr_debug("Couldn't open evlist: %s\nHint: check %s, using %" PRIu64 " in this test.\n",
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +000073 strerror_r(errno, sbuf, sizeof(sbuf)),
74 knob, (u64)attr.sample_freq);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -030075 goto out_delete_evlist;
Arnaldo Carvalho de Melod0b849e2013-11-11 16:28:42 -030076 }
Namhyung Kimbc96b362013-03-18 11:41:47 +090077
78 err = perf_evlist__mmap(evlist, 128, true);
79 if (err < 0) {
80 pr_debug("failed to mmap event: %d (%s)\n", errno,
Masami Hiramatsuba3dfff2014-08-14 02:22:45 +000081 strerror_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melof26e1c72014-01-03 16:54:12 -030082 goto out_delete_evlist;
Namhyung Kimbc96b362013-03-18 11:41:47 +090083 }
84
85 perf_evlist__enable(evlist);
86
87 /* collect samples */
88 for (i = 0; i < NR_LOOPS; i++)
89 tmp++;
90
91 perf_evlist__disable(evlist);
92
93 while ((event = perf_evlist__mmap_read(evlist, 0)) != NULL) {
94 struct perf_sample sample;
95
96 if (event->header.type != PERF_RECORD_SAMPLE)
Zhouyi Zhou8e50d382013-10-24 15:43:33 +080097 goto next_event;
Namhyung Kimbc96b362013-03-18 11:41:47 +090098
99 err = perf_evlist__parse_sample(evlist, event, &sample);
100 if (err < 0) {
101 pr_debug("Error during parse sample\n");
Arnaldo Carvalho de Melo983874d2014-01-03 17:25:49 -0300102 goto out_delete_evlist;
Namhyung Kimbc96b362013-03-18 11:41:47 +0900103 }
104
105 total_periods += sample.period;
106 nr_samples++;
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800107next_event:
108 perf_evlist__mmap_consume(evlist, 0);
Namhyung Kimbc96b362013-03-18 11:41:47 +0900109 }
110
111 if ((u64) nr_samples == total_periods) {
112 pr_debug("All (%d) samples have period value of 1!\n",
113 nr_samples);
114 err = -1;
115 }
116
Adrian Hunterc5e6bd22015-09-08 10:59:02 +0300117out_free_maps:
118 cpu_map__put(cpus);
119 thread_map__put(threads);
Arnaldo Carvalho de Melo03ad9742014-01-03 15:56:06 -0300120out_delete_evlist:
Namhyung Kimbc96b362013-03-18 11:41:47 +0900121 perf_evlist__delete(evlist);
122 return err;
123}
124
125int test__sw_clock_freq(void)
126{
127 int ret;
128
129 ret = __test__sw_clock_freq(PERF_COUNT_SW_CPU_CLOCK);
130 if (!ret)
131 ret = __test__sw_clock_freq(PERF_COUNT_SW_TASK_CLOCK);
132
133 return ret;
134}