]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/power/cpupower/utils/idle_monitor/cpuidle_sysfs.c
cpupower : Fix header name to read idle state name
[mirror_ubuntu-bionic-kernel.git] / tools / power / cpupower / utils / idle_monitor / cpuidle_sysfs.c
CommitLineData
7fe2f639
DB
1/*
2 * (C) 2010,2011 Thomas Renninger <trenn@suse.de>, Novell Inc
3 *
4 * Licensed under the terms of the GNU GPL License version 2.
5 *
6 */
7
8#include <stdio.h>
9#include <stdlib.h>
10#include <stdint.h>
11#include <string.h>
12#include <limits.h>
ac5a181d 13#include <cpuidle.h>
7fe2f639 14
7fe2f639
DB
15#include "helpers/helpers.h"
16#include "idle_monitor/cpupower-monitor.h"
17
18#define CPUIDLE_STATES_MAX 10
19static cstate_t cpuidle_cstates[CPUIDLE_STATES_MAX];
20struct cpuidle_monitor cpuidle_sysfs_monitor;
21
22static unsigned long long **previous_count;
23static unsigned long long **current_count;
24struct timespec start_time;
25static unsigned long long timediff;
26
27static int cpuidle_get_count_percent(unsigned int id, double *percent,
28 unsigned int cpu)
29{
30 unsigned long long statediff = current_count[cpu][id]
31 - previous_count[cpu][id];
32 dprint("%s: - diff: %llu - percent: %f (%u)\n",
33 cpuidle_cstates[id].name, timediff, *percent, cpu);
34
35 if (timediff == 0)
36 *percent = 0.0;
37 else
38 *percent = ((100.0 * statediff) / timediff);
b510b541 39
7fe2f639
DB
40 dprint("%s: - timediff: %llu - statediff: %llu - percent: %f (%u)\n",
41 cpuidle_cstates[id].name, timediff, statediff, *percent, cpu);
b510b541 42
7fe2f639
DB
43 return 0;
44}
45
46static int cpuidle_start(void)
47{
48 int cpu, state;
49 clock_gettime(CLOCK_REALTIME, &start_time);
50 for (cpu = 0; cpu < cpu_count; cpu++) {
51 for (state = 0; state < cpuidle_sysfs_monitor.hw_states_num;
52 state++) {
53 previous_count[cpu][state] =
ac5a181d 54 cpuidle_state_time(cpu, state);
7fe2f639
DB
55 dprint("CPU %d - State: %d - Val: %llu\n",
56 cpu, state, previous_count[cpu][state]);
57 }
7fe2f639
DB
58 };
59 return 0;
60}
61
62static int cpuidle_stop(void)
63{
64 int cpu, state;
65 struct timespec end_time;
66 clock_gettime(CLOCK_REALTIME, &end_time);
67 timediff = timespec_diff_us(start_time, end_time);
68
69 for (cpu = 0; cpu < cpu_count; cpu++) {
70 for (state = 0; state < cpuidle_sysfs_monitor.hw_states_num;
71 state++) {
72 current_count[cpu][state] =
ac5a181d 73 cpuidle_state_time(cpu, state);
7fe2f639
DB
74 dprint("CPU %d - State: %d - Val: %llu\n",
75 cpu, state, previous_count[cpu][state]);
76 }
77 };
78 return 0;
79}
80
81void fix_up_intel_idle_driver_name(char *tmp, int num)
82{
83 /* fix up cpuidle name for intel idle driver */
84 if (!strncmp(tmp, "NHM-", 4)) {
b510b541
DB
85 switch (num) {
86 case 1:
87 strcpy(tmp, "C1");
7fe2f639 88 break;
b510b541
DB
89 case 2:
90 strcpy(tmp, "C3");
7fe2f639 91 break;
b510b541
DB
92 case 3:
93 strcpy(tmp, "C6");
7fe2f639
DB
94 break;
95 }
96 } else if (!strncmp(tmp, "SNB-", 4)) {
b510b541
DB
97 switch (num) {
98 case 1:
99 strcpy(tmp, "C1");
7fe2f639 100 break;
b510b541
DB
101 case 2:
102 strcpy(tmp, "C3");
7fe2f639 103 break;
b510b541
DB
104 case 3:
105 strcpy(tmp, "C6");
7fe2f639 106 break;
b510b541
DB
107 case 4:
108 strcpy(tmp, "C7");
7fe2f639
DB
109 break;
110 }
111 } else if (!strncmp(tmp, "ATM-", 4)) {
b510b541
DB
112 switch (num) {
113 case 1:
114 strcpy(tmp, "C1");
7fe2f639 115 break;
b510b541
DB
116 case 2:
117 strcpy(tmp, "C2");
7fe2f639 118 break;
b510b541
DB
119 case 3:
120 strcpy(tmp, "C4");
7fe2f639 121 break;
b510b541
DB
122 case 4:
123 strcpy(tmp, "C6");
7fe2f639
DB
124 break;
125 }
126 }
127}
128
f5cf5e93
AG
129#ifdef __powerpc__
130void map_power_idle_state_name(char *tmp)
131{
132 if (!strncmp(tmp, "stop0_lite", CSTATE_NAME_LEN))
133 strcpy(tmp, "stop0L");
134 else if (!strncmp(tmp, "stop1_lite", CSTATE_NAME_LEN))
135 strcpy(tmp, "stop1L");
136 else if (!strncmp(tmp, "stop2_lite", CSTATE_NAME_LEN))
137 strcpy(tmp, "stop2L");
138}
139#else
140void map_power_idle_state_name(char *tmp) { }
141#endif
142
b510b541 143static struct cpuidle_monitor *cpuidle_register(void)
7fe2f639
DB
144{
145 int num;
146 char *tmp;
dbdc468f
AG
147 int this_cpu;
148
149 this_cpu = sched_getcpu();
7fe2f639
DB
150
151 /* Assume idle state count is the same for all CPUs */
dbdc468f 152 cpuidle_sysfs_monitor.hw_states_num = cpuidle_state_count(this_cpu);
7fe2f639 153
88f984e0 154 if (cpuidle_sysfs_monitor.hw_states_num <= 0)
7fe2f639
DB
155 return NULL;
156
b510b541 157 for (num = 0; num < cpuidle_sysfs_monitor.hw_states_num; num++) {
dbdc468f 158 tmp = cpuidle_state_name(this_cpu, num);
7fe2f639
DB
159 if (tmp == NULL)
160 continue;
161
f5cf5e93 162 map_power_idle_state_name(tmp);
7fe2f639
DB
163 fix_up_intel_idle_driver_name(tmp, num);
164 strncpy(cpuidle_cstates[num].name, tmp, CSTATE_NAME_LEN - 1);
165 free(tmp);
166
dbdc468f 167 tmp = cpuidle_state_desc(this_cpu, num);
7fe2f639
DB
168 if (tmp == NULL)
169 continue;
170 strncpy(cpuidle_cstates[num].desc, tmp, CSTATE_DESC_LEN - 1);
171 free(tmp);
172
173 cpuidle_cstates[num].range = RANGE_THREAD;
174 cpuidle_cstates[num].id = num;
b510b541
DB
175 cpuidle_cstates[num].get_count_percent =
176 cpuidle_get_count_percent;
177 };
7fe2f639
DB
178
179 /* Free this at program termination */
b510b541
DB
180 previous_count = malloc(sizeof(long long *) * cpu_count);
181 current_count = malloc(sizeof(long long *) * cpu_count);
7fe2f639 182 for (num = 0; num < cpu_count; num++) {
b510b541
DB
183 previous_count[num] = malloc(sizeof(long long) *
184 cpuidle_sysfs_monitor.hw_states_num);
185 current_count[num] = malloc(sizeof(long long) *
186 cpuidle_sysfs_monitor.hw_states_num);
7fe2f639
DB
187 }
188
189 cpuidle_sysfs_monitor.name_len = strlen(cpuidle_sysfs_monitor.name);
190 return &cpuidle_sysfs_monitor;
191}
192
193void cpuidle_unregister(void)
194{
195 int num;
196
197 for (num = 0; num < cpu_count; num++) {
198 free(previous_count[num]);
199 free(current_count[num]);
200 }
201 free(previous_count);
202 free(current_count);
203}
204
205struct cpuidle_monitor cpuidle_sysfs_monitor = {
206 .name = "Idle_Stats",
207 .hw_states = cpuidle_cstates,
208 .start = cpuidle_start,
209 .stop = cpuidle_stop,
210 .do_register = cpuidle_register,
211 .unregister = cpuidle_unregister,
212 .needs_root = 0,
213 .overflow_s = UINT_MAX,
214};