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

TOMOYO Linux Cross Reference
Linux/arch/x86/events/amd/power.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  * Performance events - AMD Processor Power Reporting Mechanism
  4  *
  5  * Copyright (C) 2016 Advanced Micro Devices, Inc.
  6  *
  7  * Author: Huang Rui <ray.huang@amd.com>
  8  */
  9 
 10 #include <linux/module.h>
 11 #include <linux/slab.h>
 12 #include <linux/perf_event.h>
 13 #include <asm/cpu_device_id.h>
 14 #include "../perf_event.h"
 15 
 16 /* Event code: LSB 8 bits, passed in attr->config any other bit is reserved. */
 17 #define AMD_POWER_EVENT_MASK            0xFFULL
 18 
 19 /*
 20  * Accumulated power status counters.
 21  */
 22 #define AMD_POWER_EVENTSEL_PKG          1
 23 
 24 /*
 25  * The ratio of compute unit power accumulator sample period to the
 26  * PTSC period.
 27  */
 28 static unsigned int cpu_pwr_sample_ratio;
 29 
 30 /* Maximum accumulated power of a compute unit. */
 31 static u64 max_cu_acc_power;
 32 
 33 static struct pmu pmu_class;
 34 
 35 /*
 36  * Accumulated power represents the sum of each compute unit's (CU) power
 37  * consumption. On any core of each CU we read the total accumulated power from
 38  * MSR_F15H_CU_PWR_ACCUMULATOR. cpu_mask represents CPU bit map of all cores
 39  * which are picked to measure the power for the CUs they belong to.
 40  */
 41 static cpumask_t cpu_mask;
 42 
 43 static void event_update(struct perf_event *event)
 44 {
 45         struct hw_perf_event *hwc = &event->hw;
 46         u64 prev_pwr_acc, new_pwr_acc, prev_ptsc, new_ptsc;
 47         u64 delta, tdelta;
 48 
 49         prev_pwr_acc = hwc->pwr_acc;
 50         prev_ptsc = hwc->ptsc;
 51         rdmsrl(MSR_F15H_CU_PWR_ACCUMULATOR, new_pwr_acc);
 52         rdmsrl(MSR_F15H_PTSC, new_ptsc);
 53 
 54         /*
 55          * Calculate the CU power consumption over a time period, the unit of
 56          * final value (delta) is micro-Watts. Then add it to the event count.
 57          */
 58         if (new_pwr_acc < prev_pwr_acc) {
 59                 delta = max_cu_acc_power + new_pwr_acc;
 60                 delta -= prev_pwr_acc;
 61         } else
 62                 delta = new_pwr_acc - prev_pwr_acc;
 63 
 64         delta *= cpu_pwr_sample_ratio * 1000;
 65         tdelta = new_ptsc - prev_ptsc;
 66 
 67         do_div(delta, tdelta);
 68         local64_add(delta, &event->count);
 69 }
 70 
 71 static void __pmu_event_start(struct perf_event *event)
 72 {
 73         if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
 74                 return;
 75 
 76         event->hw.state = 0;
 77 
 78         rdmsrl(MSR_F15H_PTSC, event->hw.ptsc);
 79         rdmsrl(MSR_F15H_CU_PWR_ACCUMULATOR, event->hw.pwr_acc);
 80 }
 81 
 82 static void pmu_event_start(struct perf_event *event, int mode)
 83 {
 84         __pmu_event_start(event);
 85 }
 86 
 87 static void pmu_event_stop(struct perf_event *event, int mode)
 88 {
 89         struct hw_perf_event *hwc = &event->hw;
 90 
 91         /* Mark event as deactivated and stopped. */
 92         if (!(hwc->state & PERF_HES_STOPPED))
 93                 hwc->state |= PERF_HES_STOPPED;
 94 
 95         /* Check if software counter update is necessary. */
 96         if ((mode & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
 97                 /*
 98                  * Drain the remaining delta count out of an event
 99                  * that we are disabling:
100                  */
101                 event_update(event);
102                 hwc->state |= PERF_HES_UPTODATE;
103         }
104 }
105 
106 static int pmu_event_add(struct perf_event *event, int mode)
107 {
108         struct hw_perf_event *hwc = &event->hw;
109 
110         hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
111 
112         if (mode & PERF_EF_START)
113                 __pmu_event_start(event);
114 
115         return 0;
116 }
117 
118 static void pmu_event_del(struct perf_event *event, int flags)
119 {
120         pmu_event_stop(event, PERF_EF_UPDATE);
121 }
122 
123 static int pmu_event_init(struct perf_event *event)
124 {
125         u64 cfg = event->attr.config & AMD_POWER_EVENT_MASK;
126 
127         /* Only look at AMD power events. */
128         if (event->attr.type != pmu_class.type)
129                 return -ENOENT;
130 
131         /* Unsupported modes and filters. */
132         if (event->attr.sample_period)
133                 return -EINVAL;
134 
135         if (cfg != AMD_POWER_EVENTSEL_PKG)
136                 return -EINVAL;
137 
138         return 0;
139 }
140 
141 static void pmu_event_read(struct perf_event *event)
142 {
143         event_update(event);
144 }
145 
146 static ssize_t
147 get_attr_cpumask(struct device *dev, struct device_attribute *attr, char *buf)
148 {
149         return cpumap_print_to_pagebuf(true, buf, &cpu_mask);
150 }
151 
152 static DEVICE_ATTR(cpumask, S_IRUGO, get_attr_cpumask, NULL);
153 
154 static struct attribute *pmu_attrs[] = {
155         &dev_attr_cpumask.attr,
156         NULL,
157 };
158 
159 static struct attribute_group pmu_attr_group = {
160         .attrs = pmu_attrs,
161 };
162 
163 /*
164  * Currently it only supports to report the power of each
165  * processor/package.
166  */
167 EVENT_ATTR_STR(power-pkg, power_pkg, "event=0x01");
168 
169 EVENT_ATTR_STR(power-pkg.unit, power_pkg_unit, "mWatts");
170 
171 /* Convert the count from micro-Watts to milli-Watts. */
172 EVENT_ATTR_STR(power-pkg.scale, power_pkg_scale, "1.000000e-3");
173 
174 static struct attribute *events_attr[] = {
175         EVENT_PTR(power_pkg),
176         EVENT_PTR(power_pkg_unit),
177         EVENT_PTR(power_pkg_scale),
178         NULL,
179 };
180 
181 static struct attribute_group pmu_events_group = {
182         .name   = "events",
183         .attrs  = events_attr,
184 };
185 
186 PMU_FORMAT_ATTR(event, "config:0-7");
187 
188 static struct attribute *formats_attr[] = {
189         &format_attr_event.attr,
190         NULL,
191 };
192 
193 static struct attribute_group pmu_format_group = {
194         .name   = "format",
195         .attrs  = formats_attr,
196 };
197 
198 static const struct attribute_group *attr_groups[] = {
199         &pmu_attr_group,
200         &pmu_format_group,
201         &pmu_events_group,
202         NULL,
203 };
204 
205 static struct pmu pmu_class = {
206         .attr_groups    = attr_groups,
207         /* system-wide only */
208         .task_ctx_nr    = perf_invalid_context,
209         .event_init     = pmu_event_init,
210         .add            = pmu_event_add,
211         .del            = pmu_event_del,
212         .start          = pmu_event_start,
213         .stop           = pmu_event_stop,
214         .read           = pmu_event_read,
215         .capabilities   = PERF_PMU_CAP_NO_EXCLUDE,
216         .module         = THIS_MODULE,
217 };
218 
219 static int power_cpu_exit(unsigned int cpu)
220 {
221         int target;
222 
223         if (!cpumask_test_and_clear_cpu(cpu, &cpu_mask))
224                 return 0;
225 
226         /*
227          * Find a new CPU on the same compute unit, if was set in cpumask
228          * and still some CPUs on compute unit. Then migrate event and
229          * context to new CPU.
230          */
231         target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu);
232         if (target < nr_cpumask_bits) {
233                 cpumask_set_cpu(target, &cpu_mask);
234                 perf_pmu_migrate_context(&pmu_class, cpu, target);
235         }
236         return 0;
237 }
238 
239 static int power_cpu_init(unsigned int cpu)
240 {
241         int target;
242 
243         /*
244          * 1) If any CPU is set at cpu_mask in the same compute unit, do
245          * nothing.
246          * 2) If no CPU is set at cpu_mask in the same compute unit,
247          * set current ONLINE CPU.
248          *
249          * Note: if there is a CPU aside of the new one already in the
250          * sibling mask, then it is also in cpu_mask.
251          */
252         target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu);
253         if (target >= nr_cpumask_bits)
254                 cpumask_set_cpu(cpu, &cpu_mask);
255         return 0;
256 }
257 
258 static const struct x86_cpu_id cpu_match[] = {
259         X86_MATCH_VENDOR_FAM(AMD, 0x15, NULL),
260         {},
261 };
262 
263 static int __init amd_power_pmu_init(void)
264 {
265         int ret;
266 
267         if (!x86_match_cpu(cpu_match))
268                 return -ENODEV;
269 
270         if (!boot_cpu_has(X86_FEATURE_ACC_POWER))
271                 return -ENODEV;
272 
273         cpu_pwr_sample_ratio = cpuid_ecx(0x80000007);
274 
275         if (rdmsrl_safe(MSR_F15H_CU_MAX_PWR_ACCUMULATOR, &max_cu_acc_power)) {
276                 pr_err("Failed to read max compute unit power accumulator MSR\n");
277                 return -ENODEV;
278         }
279 
280 
281         cpuhp_setup_state(CPUHP_AP_PERF_X86_AMD_POWER_ONLINE,
282                           "perf/x86/amd/power:online",
283                           power_cpu_init, power_cpu_exit);
284 
285         ret = perf_pmu_register(&pmu_class, "power", -1);
286         if (WARN_ON(ret)) {
287                 pr_warn("AMD Power PMU registration failed\n");
288                 return ret;
289         }
290 
291         pr_info("AMD Power PMU detected\n");
292         return ret;
293 }
294 module_init(amd_power_pmu_init);
295 
296 static void __exit amd_power_pmu_exit(void)
297 {
298         cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_AMD_POWER_ONLINE);
299         perf_pmu_unregister(&pmu_class);
300 }
301 module_exit(amd_power_pmu_exit);
302 
303 MODULE_AUTHOR("Huang Rui <ray.huang@amd.com>");
304 MODULE_DESCRIPTION("AMD Processor Power Reporting Mechanism");
305 MODULE_LICENSE("GPL v2");
306 

~ [ 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