]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/events/intel/uncore.c
x86/kvm: Audit and remove any unnecessary uses of module.h
[mirror_ubuntu-artful-kernel.git] / arch / x86 / events / intel / uncore.c
CommitLineData
e633c65a 1#include <asm/cpu_device_id.h>
6bcb2db5 2#include "uncore.h"
087bfbb0
YZ
3
4static struct intel_uncore_type *empty_uncore[] = { NULL, };
514b2346
YZ
5struct intel_uncore_type **uncore_msr_uncores = empty_uncore;
6struct intel_uncore_type **uncore_pci_uncores = empty_uncore;
14371cce 7
514b2346
YZ
8static bool pcidrv_registered;
9struct pci_driver *uncore_pci_driver;
10/* pci bus to socket mapping */
712df65c
TI
11DEFINE_RAW_SPINLOCK(pci2phy_map_lock);
12struct list_head pci2phy_map_head = LIST_HEAD_INIT(pci2phy_map_head);
cf6d445f
TG
13struct pci_extra_dev *uncore_extra_pci_dev;
14static int max_packages;
899396cf 15
087bfbb0
YZ
16/* mask of cpus that collect uncore events */
17static cpumask_t uncore_cpu_mask;
18
19/* constraint for the fixed counter */
514b2346 20static struct event_constraint uncore_constraint_fixed =
087bfbb0 21 EVENT_CONSTRAINT(~0ULL, 1 << UNCORE_PMC_IDX_FIXED, ~0ULL);
514b2346 22struct event_constraint uncore_constraint_empty =
6a67943a 23 EVENT_CONSTRAINT(0, 0, 0);
087bfbb0 24
e633c65a
KL
25MODULE_LICENSE("GPL");
26
1384c704 27static int uncore_pcibus_to_physid(struct pci_bus *bus)
712df65c
TI
28{
29 struct pci2phy_map *map;
30 int phys_id = -1;
31
32 raw_spin_lock(&pci2phy_map_lock);
33 list_for_each_entry(map, &pci2phy_map_head, list) {
34 if (map->segment == pci_domain_nr(bus)) {
35 phys_id = map->pbus_to_physid[bus->number];
36 break;
37 }
38 }
39 raw_spin_unlock(&pci2phy_map_lock);
40
41 return phys_id;
42}
43
4f089678
TG
44static void uncore_free_pcibus_map(void)
45{
46 struct pci2phy_map *map, *tmp;
47
48 list_for_each_entry_safe(map, tmp, &pci2phy_map_head, list) {
49 list_del(&map->list);
50 kfree(map);
51 }
52}
53
712df65c
TI
54struct pci2phy_map *__find_pci2phy_map(int segment)
55{
56 struct pci2phy_map *map, *alloc = NULL;
57 int i;
58
59 lockdep_assert_held(&pci2phy_map_lock);
60
61lookup:
62 list_for_each_entry(map, &pci2phy_map_head, list) {
63 if (map->segment == segment)
64 goto end;
65 }
66
67 if (!alloc) {
68 raw_spin_unlock(&pci2phy_map_lock);
69 alloc = kmalloc(sizeof(struct pci2phy_map), GFP_KERNEL);
70 raw_spin_lock(&pci2phy_map_lock);
71
72 if (!alloc)
73 return NULL;
74
75 goto lookup;
76 }
77
78 map = alloc;
79 alloc = NULL;
80 map->segment = segment;
81 for (i = 0; i < 256; i++)
82 map->pbus_to_physid[i] = -1;
83 list_add_tail(&map->list, &pci2phy_map_head);
84
85end:
86 kfree(alloc);
87 return map;
88}
89
514b2346
YZ
90ssize_t uncore_event_show(struct kobject *kobj,
91 struct kobj_attribute *attr, char *buf)
92{
93 struct uncore_event_desc *event =
94 container_of(attr, struct uncore_event_desc, attr);
95 return sprintf(buf, "%s", event->config);
96}
97
514b2346 98struct intel_uncore_box *uncore_pmu_to_box(struct intel_uncore_pmu *pmu, int cpu)
001e413f 99{
cf6d445f 100 return pmu->boxes[topology_logical_package_id(cpu)];
001e413f
SE
101}
102
514b2346 103u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event)
254298c7
YZ
104{
105 u64 count;
106
107 rdmsrl(event->hw.event_base, count);
108
109 return count;
110}
111
112/*
113 * generic get constraint function for shared match/mask registers.
114 */
514b2346 115struct event_constraint *
254298c7
YZ
116uncore_get_constraint(struct intel_uncore_box *box, struct perf_event *event)
117{
118 struct intel_uncore_extra_reg *er;
119 struct hw_perf_event_extra *reg1 = &event->hw.extra_reg;
120 struct hw_perf_event_extra *reg2 = &event->hw.branch_reg;
121 unsigned long flags;
122 bool ok = false;
123
124 /*
125 * reg->alloc can be set due to existing state, so for fake box we
126 * need to ignore this, otherwise we might fail to allocate proper
127 * fake state for this extra reg constraint.
128 */
129 if (reg1->idx == EXTRA_REG_NONE ||
130 (!uncore_box_is_fake(box) && reg1->alloc))
131 return NULL;
132
133 er = &box->shared_regs[reg1->idx];
134 raw_spin_lock_irqsave(&er->lock, flags);
135 if (!atomic_read(&er->ref) ||
136 (er->config1 == reg1->config && er->config2 == reg2->config)) {
137 atomic_inc(&er->ref);
138 er->config1 = reg1->config;
139 er->config2 = reg2->config;
140 ok = true;
141 }
142 raw_spin_unlock_irqrestore(&er->lock, flags);
143
144 if (ok) {
145 if (!uncore_box_is_fake(box))
146 reg1->alloc = 1;
147 return NULL;
148 }
149
514b2346 150 return &uncore_constraint_empty;
254298c7
YZ
151}
152
514b2346 153void uncore_put_constraint(struct intel_uncore_box *box, struct perf_event *event)
254298c7
YZ
154{
155 struct intel_uncore_extra_reg *er;
156 struct hw_perf_event_extra *reg1 = &event->hw.extra_reg;
157
158 /*
159 * Only put constraint if extra reg was actually allocated. Also
160 * takes care of event which do not use an extra shared reg.
161 *
162 * Also, if this is a fake box we shouldn't touch any event state
163 * (reg->alloc) and we don't care about leaving inconsistent box
164 * state either since it will be thrown out.
165 */
166 if (uncore_box_is_fake(box) || !reg1->alloc)
167 return;
168
169 er = &box->shared_regs[reg1->idx];
170 atomic_dec(&er->ref);
171 reg1->alloc = 0;
172}
173
514b2346 174u64 uncore_shared_reg_config(struct intel_uncore_box *box, int idx)
46bdd905
YZ
175{
176 struct intel_uncore_extra_reg *er;
177 unsigned long flags;
178 u64 config;
179
180 er = &box->shared_regs[idx];
181
182 raw_spin_lock_irqsave(&er->lock, flags);
183 config = er->config;
184 raw_spin_unlock_irqrestore(&er->lock, flags);
185
186 return config;
187}
188
1229735b
TG
189static void uncore_assign_hw_event(struct intel_uncore_box *box,
190 struct perf_event *event, int idx)
087bfbb0
YZ
191{
192 struct hw_perf_event *hwc = &event->hw;
193
194 hwc->idx = idx;
195 hwc->last_tag = ++box->tags[idx];
196
197 if (hwc->idx == UNCORE_PMC_IDX_FIXED) {
14371cce
YZ
198 hwc->event_base = uncore_fixed_ctr(box);
199 hwc->config_base = uncore_fixed_ctl(box);
087bfbb0
YZ
200 return;
201 }
202
14371cce
YZ
203 hwc->config_base = uncore_event_ctl(box, hwc->idx);
204 hwc->event_base = uncore_perf_ctr(box, hwc->idx);
087bfbb0
YZ
205}
206
514b2346 207void uncore_perf_event_update(struct intel_uncore_box *box, struct perf_event *event)
087bfbb0
YZ
208{
209 u64 prev_count, new_count, delta;
210 int shift;
211
212 if (event->hw.idx >= UNCORE_PMC_IDX_FIXED)
213 shift = 64 - uncore_fixed_ctr_bits(box);
214 else
215 shift = 64 - uncore_perf_ctr_bits(box);
216
217 /* the hrtimer might modify the previous event value */
218again:
219 prev_count = local64_read(&event->hw.prev_count);
220 new_count = uncore_read_counter(box, event);
221 if (local64_xchg(&event->hw.prev_count, new_count) != prev_count)
222 goto again;
223
224 delta = (new_count << shift) - (prev_count << shift);
225 delta >>= shift;
226
227 local64_add(delta, &event->count);
228}
229
230/*
231 * The overflow interrupt is unavailable for SandyBridge-EP, is broken
232 * for SandyBridge. So we use hrtimer to periodically poll the counter
233 * to avoid overflow.
234 */
235static enum hrtimer_restart uncore_pmu_hrtimer(struct hrtimer *hrtimer)
236{
237 struct intel_uncore_box *box;
ced2efb0 238 struct perf_event *event;
087bfbb0
YZ
239 unsigned long flags;
240 int bit;
241
242 box = container_of(hrtimer, struct intel_uncore_box, hrtimer);
243 if (!box->n_active || box->cpu != smp_processor_id())
244 return HRTIMER_NORESTART;
245 /*
246 * disable local interrupt to prevent uncore_pmu_event_start/stop
247 * to interrupt the update process
248 */
249 local_irq_save(flags);
250
ced2efb0
SE
251 /*
252 * handle boxes with an active event list as opposed to active
253 * counters
254 */
255 list_for_each_entry(event, &box->active_list, active_entry) {
256 uncore_perf_event_update(box, event);
257 }
258
087bfbb0
YZ
259 for_each_set_bit(bit, box->active_mask, UNCORE_PMC_IDX_MAX)
260 uncore_perf_event_update(box, box->events[bit]);
261
262 local_irq_restore(flags);
263
79859cce 264 hrtimer_forward_now(hrtimer, ns_to_ktime(box->hrtimer_duration));
087bfbb0
YZ
265 return HRTIMER_RESTART;
266}
267
514b2346 268void uncore_pmu_start_hrtimer(struct intel_uncore_box *box)
087bfbb0 269{
576b0704
TG
270 hrtimer_start(&box->hrtimer, ns_to_ktime(box->hrtimer_duration),
271 HRTIMER_MODE_REL_PINNED);
087bfbb0
YZ
272}
273
514b2346 274void uncore_pmu_cancel_hrtimer(struct intel_uncore_box *box)
087bfbb0
YZ
275{
276 hrtimer_cancel(&box->hrtimer);
277}
278
279static void uncore_pmu_init_hrtimer(struct intel_uncore_box *box)
280{
281 hrtimer_init(&box->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
282 box->hrtimer.function = uncore_pmu_hrtimer;
283}
284
1229735b
TG
285static struct intel_uncore_box *uncore_alloc_box(struct intel_uncore_type *type,
286 int node)
087bfbb0 287{
1229735b 288 int i, size, numshared = type->num_shared_regs ;
087bfbb0
YZ
289 struct intel_uncore_box *box;
290
1229735b 291 size = sizeof(*box) + numshared * sizeof(struct intel_uncore_extra_reg);
6a67943a 292
73c4427c 293 box = kzalloc_node(size, GFP_KERNEL, node);
087bfbb0
YZ
294 if (!box)
295 return NULL;
296
1229735b 297 for (i = 0; i < numshared; i++)
6a67943a
YZ
298 raw_spin_lock_init(&box->shared_regs[i].lock);
299
087bfbb0 300 uncore_pmu_init_hrtimer(box);
087bfbb0 301 box->cpu = -1;
cf6d445f
TG
302 box->pci_phys_id = -1;
303 box->pkgid = -1;
087bfbb0 304
79859cce
SE
305 /* set default hrtimer timeout */
306 box->hrtimer_duration = UNCORE_PMU_HRTIMER_INTERVAL;
087bfbb0 307
ced2efb0 308 INIT_LIST_HEAD(&box->active_list);
14371cce 309
087bfbb0 310 return box;
087bfbb0
YZ
311}
312
af91568e
JO
313/*
314 * Using uncore_pmu_event_init pmu event_init callback
315 * as a detection point for uncore events.
316 */
317static int uncore_pmu_event_init(struct perf_event *event);
318
319static bool is_uncore_event(struct perf_event *event)
320{
321 return event->pmu->event_init == uncore_pmu_event_init;
322}
323
254298c7 324static int
1229735b
TG
325uncore_collect_events(struct intel_uncore_box *box, struct perf_event *leader,
326 bool dogrp)
087bfbb0
YZ
327{
328 struct perf_event *event;
329 int n, max_count;
330
331 max_count = box->pmu->type->num_counters;
332 if (box->pmu->type->fixed_ctl)
333 max_count++;
334
335 if (box->n_events >= max_count)
336 return -EINVAL;
337
338 n = box->n_events;
af91568e
JO
339
340 if (is_uncore_event(leader)) {
341 box->event_list[n] = leader;
342 n++;
343 }
344
087bfbb0
YZ
345 if (!dogrp)
346 return n;
347
348 list_for_each_entry(event, &leader->sibling_list, group_entry) {
af91568e
JO
349 if (!is_uncore_event(event) ||
350 event->state <= PERF_EVENT_STATE_OFF)
087bfbb0
YZ
351 continue;
352
353 if (n >= max_count)
354 return -EINVAL;
355
356 box->event_list[n] = event;
357 n++;
358 }
359 return n;
360}
361
362static struct event_constraint *
254298c7 363uncore_get_event_constraint(struct intel_uncore_box *box, struct perf_event *event)
087bfbb0 364{
6a67943a 365 struct intel_uncore_type *type = box->pmu->type;
087bfbb0
YZ
366 struct event_constraint *c;
367
6a67943a
YZ
368 if (type->ops->get_constraint) {
369 c = type->ops->get_constraint(box, event);
370 if (c)
371 return c;
372 }
373
dbc33f70 374 if (event->attr.config == UNCORE_FIXED_EVENT)
514b2346 375 return &uncore_constraint_fixed;
087bfbb0
YZ
376
377 if (type->constraints) {
378 for_each_event_constraint(c, type->constraints) {
379 if ((event->hw.config & c->cmask) == c->code)
380 return c;
381 }
382 }
383
384 return &type->unconstrainted;
385}
386
1229735b
TG
387static void uncore_put_event_constraint(struct intel_uncore_box *box,
388 struct perf_event *event)
6a67943a
YZ
389{
390 if (box->pmu->type->ops->put_constraint)
391 box->pmu->type->ops->put_constraint(box, event);
392}
393
254298c7 394static int uncore_assign_events(struct intel_uncore_box *box, int assign[], int n)
087bfbb0
YZ
395{
396 unsigned long used_mask[BITS_TO_LONGS(UNCORE_PMC_IDX_MAX)];
43b45780 397 struct event_constraint *c;
6a67943a 398 int i, wmin, wmax, ret = 0;
087bfbb0
YZ
399 struct hw_perf_event *hwc;
400
401 bitmap_zero(used_mask, UNCORE_PMC_IDX_MAX);
402
403 for (i = 0, wmin = UNCORE_PMC_IDX_MAX, wmax = 0; i < n; i++) {
6a67943a 404 c = uncore_get_event_constraint(box, box->event_list[i]);
b371b594 405 box->event_constraint[i] = c;
087bfbb0
YZ
406 wmin = min(wmin, c->weight);
407 wmax = max(wmax, c->weight);
408 }
409
410 /* fastpath, try to reuse previous register */
411 for (i = 0; i < n; i++) {
412 hwc = &box->event_list[i]->hw;
b371b594 413 c = box->event_constraint[i];
087bfbb0
YZ
414
415 /* never assigned */
416 if (hwc->idx == -1)
417 break;
418
419 /* constraint still honored */
420 if (!test_bit(hwc->idx, c->idxmsk))
421 break;
422
423 /* not already used */
424 if (test_bit(hwc->idx, used_mask))
425 break;
426
427 __set_bit(hwc->idx, used_mask);
6a67943a
YZ
428 if (assign)
429 assign[i] = hwc->idx;
087bfbb0 430 }
087bfbb0 431 /* slow path */
6a67943a 432 if (i != n)
b371b594 433 ret = perf_assign_events(box->event_constraint, n,
cc1790cf 434 wmin, wmax, n, assign);
6a67943a
YZ
435
436 if (!assign || ret) {
437 for (i = 0; i < n; i++)
438 uncore_put_event_constraint(box, box->event_list[i]);
439 }
087bfbb0
YZ
440 return ret ? -EINVAL : 0;
441}
442
443static void uncore_pmu_event_start(struct perf_event *event, int flags)
444{
445 struct intel_uncore_box *box = uncore_event_to_box(event);
446 int idx = event->hw.idx;
447
448 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
449 return;
450
451 if (WARN_ON_ONCE(idx == -1 || idx >= UNCORE_PMC_IDX_MAX))
452 return;
453
454 event->hw.state = 0;
455 box->events[idx] = event;
456 box->n_active++;
457 __set_bit(idx, box->active_mask);
458
459 local64_set(&event->hw.prev_count, uncore_read_counter(box, event));
460 uncore_enable_event(box, event);
461
462 if (box->n_active == 1) {
463 uncore_enable_box(box);
464 uncore_pmu_start_hrtimer(box);
465 }
466}
467
468static void uncore_pmu_event_stop(struct perf_event *event, int flags)
469{
470 struct intel_uncore_box *box = uncore_event_to_box(event);
471 struct hw_perf_event *hwc = &event->hw;
472
473 if (__test_and_clear_bit(hwc->idx, box->active_mask)) {
474 uncore_disable_event(box, event);
475 box->n_active--;
476 box->events[hwc->idx] = NULL;
477 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
478 hwc->state |= PERF_HES_STOPPED;
479
480 if (box->n_active == 0) {
481 uncore_disable_box(box);
482 uncore_pmu_cancel_hrtimer(box);
483 }
484 }
485
486 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
487 /*
488 * Drain the remaining delta count out of a event
489 * that we are disabling:
490 */
491 uncore_perf_event_update(box, event);
492 hwc->state |= PERF_HES_UPTODATE;
493 }
494}
495
496static int uncore_pmu_event_add(struct perf_event *event, int flags)
497{
498 struct intel_uncore_box *box = uncore_event_to_box(event);
499 struct hw_perf_event *hwc = &event->hw;
500 int assign[UNCORE_PMC_IDX_MAX];
501 int i, n, ret;
502
503 if (!box)
504 return -ENODEV;
505
506 ret = n = uncore_collect_events(box, event, false);
507 if (ret < 0)
508 return ret;
509
510 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
511 if (!(flags & PERF_EF_START))
512 hwc->state |= PERF_HES_ARCH;
513
514 ret = uncore_assign_events(box, assign, n);
515 if (ret)
516 return ret;
517
518 /* save events moving to new counters */
519 for (i = 0; i < box->n_events; i++) {
520 event = box->event_list[i];
521 hwc = &event->hw;
522
523 if (hwc->idx == assign[i] &&
524 hwc->last_tag == box->tags[assign[i]])
525 continue;
526 /*
527 * Ensure we don't accidentally enable a stopped
528 * counter simply because we rescheduled.
529 */
530 if (hwc->state & PERF_HES_STOPPED)
531 hwc->state |= PERF_HES_ARCH;
532
533 uncore_pmu_event_stop(event, PERF_EF_UPDATE);
534 }
535
536 /* reprogram moved events into new counters */
537 for (i = 0; i < n; i++) {
538 event = box->event_list[i];
539 hwc = &event->hw;
540
541 if (hwc->idx != assign[i] ||
542 hwc->last_tag != box->tags[assign[i]])
543 uncore_assign_hw_event(box, event, assign[i]);
544 else if (i < box->n_events)
545 continue;
546
547 if (hwc->state & PERF_HES_ARCH)
548 continue;
549
550 uncore_pmu_event_start(event, 0);
551 }
552 box->n_events = n;
553
554 return 0;
555}
556
557static void uncore_pmu_event_del(struct perf_event *event, int flags)
558{
559 struct intel_uncore_box *box = uncore_event_to_box(event);
560 int i;
561
562 uncore_pmu_event_stop(event, PERF_EF_UPDATE);
563
564 for (i = 0; i < box->n_events; i++) {
565 if (event == box->event_list[i]) {
6a67943a
YZ
566 uncore_put_event_constraint(box, event);
567
1229735b 568 for (++i; i < box->n_events; i++)
087bfbb0
YZ
569 box->event_list[i - 1] = box->event_list[i];
570
571 --box->n_events;
572 break;
573 }
574 }
575
576 event->hw.idx = -1;
577 event->hw.last_tag = ~0ULL;
578}
579
514b2346 580void uncore_pmu_event_read(struct perf_event *event)
087bfbb0
YZ
581{
582 struct intel_uncore_box *box = uncore_event_to_box(event);
583 uncore_perf_event_update(box, event);
584}
585
586/*
587 * validation ensures the group can be loaded onto the
588 * PMU if it was the only group available.
589 */
590static int uncore_validate_group(struct intel_uncore_pmu *pmu,
591 struct perf_event *event)
592{
593 struct perf_event *leader = event->group_leader;
594 struct intel_uncore_box *fake_box;
087bfbb0
YZ
595 int ret = -EINVAL, n;
596
73c4427c 597 fake_box = uncore_alloc_box(pmu->type, NUMA_NO_NODE);
087bfbb0
YZ
598 if (!fake_box)
599 return -ENOMEM;
600
601 fake_box->pmu = pmu;
602 /*
603 * the event is not yet connected with its
604 * siblings therefore we must first collect
605 * existing siblings, then add the new event
606 * before we can simulate the scheduling
607 */
608 n = uncore_collect_events(fake_box, leader, true);
609 if (n < 0)
610 goto out;
611
612 fake_box->n_events = n;
613 n = uncore_collect_events(fake_box, event, false);
614 if (n < 0)
615 goto out;
616
617 fake_box->n_events = n;
618
6a67943a 619 ret = uncore_assign_events(fake_box, NULL, n);
087bfbb0
YZ
620out:
621 kfree(fake_box);
622 return ret;
623}
624
46bdd905 625static int uncore_pmu_event_init(struct perf_event *event)
087bfbb0
YZ
626{
627 struct intel_uncore_pmu *pmu;
628 struct intel_uncore_box *box;
629 struct hw_perf_event *hwc = &event->hw;
630 int ret;
631
632 if (event->attr.type != event->pmu->type)
633 return -ENOENT;
634
635 pmu = uncore_event_to_pmu(event);
636 /* no device found for this pmu */
637 if (pmu->func_id < 0)
638 return -ENOENT;
639
640 /*
641 * Uncore PMU does measure at all privilege level all the time.
642 * So it doesn't make sense to specify any exclude bits.
643 */
644 if (event->attr.exclude_user || event->attr.exclude_kernel ||
645 event->attr.exclude_hv || event->attr.exclude_idle)
646 return -EINVAL;
647
648 /* Sampling not supported yet */
649 if (hwc->sample_period)
650 return -EINVAL;
651
652 /*
653 * Place all uncore events for a particular physical package
654 * onto a single cpu
655 */
656 if (event->cpu < 0)
657 return -EINVAL;
658 box = uncore_pmu_to_box(pmu, event->cpu);
659 if (!box || box->cpu < 0)
660 return -EINVAL;
661 event->cpu = box->cpu;
1f2569fa 662 event->pmu_private = box;
087bfbb0 663
6a67943a
YZ
664 event->hw.idx = -1;
665 event->hw.last_tag = ~0ULL;
666 event->hw.extra_reg.idx = EXTRA_REG_NONE;
ebb6cc03 667 event->hw.branch_reg.idx = EXTRA_REG_NONE;
6a67943a 668
087bfbb0
YZ
669 if (event->attr.config == UNCORE_FIXED_EVENT) {
670 /* no fixed counter */
671 if (!pmu->type->fixed_ctl)
672 return -EINVAL;
673 /*
674 * if there is only one fixed counter, only the first pmu
675 * can access the fixed counter
676 */
677 if (pmu->type->single_fixed && pmu->pmu_idx > 0)
678 return -EINVAL;
dbc33f70
SE
679
680 /* fixed counters have event field hardcoded to zero */
681 hwc->config = 0ULL;
087bfbb0
YZ
682 } else {
683 hwc->config = event->attr.config & pmu->type->event_mask;
6a67943a
YZ
684 if (pmu->type->ops->hw_config) {
685 ret = pmu->type->ops->hw_config(box, event);
686 if (ret)
687 return ret;
688 }
087bfbb0
YZ
689 }
690
087bfbb0
YZ
691 if (event->group_leader != event)
692 ret = uncore_validate_group(pmu, event);
693 else
694 ret = 0;
695
696 return ret;
697}
698
314d9f63
YZ
699static ssize_t uncore_get_attr_cpumask(struct device *dev,
700 struct device_attribute *attr, char *buf)
701{
5aaba363 702 return cpumap_print_to_pagebuf(true, buf, &uncore_cpu_mask);
314d9f63
YZ
703}
704
705static DEVICE_ATTR(cpumask, S_IRUGO, uncore_get_attr_cpumask, NULL);
706
707static struct attribute *uncore_pmu_attrs[] = {
708 &dev_attr_cpumask.attr,
709 NULL,
710};
711
712static struct attribute_group uncore_pmu_attr_group = {
713 .attrs = uncore_pmu_attrs,
714};
715
a08b6769 716static int uncore_pmu_register(struct intel_uncore_pmu *pmu)
087bfbb0
YZ
717{
718 int ret;
719
d64b25b6
SE
720 if (!pmu->type->pmu) {
721 pmu->pmu = (struct pmu) {
722 .attr_groups = pmu->type->attr_groups,
723 .task_ctx_nr = perf_invalid_context,
724 .event_init = uncore_pmu_event_init,
725 .add = uncore_pmu_event_add,
726 .del = uncore_pmu_event_del,
727 .start = uncore_pmu_event_start,
728 .stop = uncore_pmu_event_stop,
729 .read = uncore_pmu_event_read,
730 };
731 } else {
732 pmu->pmu = *pmu->type->pmu;
733 pmu->pmu.attr_groups = pmu->type->attr_groups;
734 }
087bfbb0
YZ
735
736 if (pmu->type->num_boxes == 1) {
737 if (strlen(pmu->type->name) > 0)
738 sprintf(pmu->name, "uncore_%s", pmu->type->name);
739 else
740 sprintf(pmu->name, "uncore");
741 } else {
742 sprintf(pmu->name, "uncore_%s_%d", pmu->type->name,
743 pmu->pmu_idx);
744 }
745
746 ret = perf_pmu_register(&pmu->pmu, pmu->name, -1);
4f089678
TG
747 if (!ret)
748 pmu->registered = true;
087bfbb0
YZ
749 return ret;
750}
751
4f089678
TG
752static void uncore_pmu_unregister(struct intel_uncore_pmu *pmu)
753{
754 if (!pmu->registered)
755 return;
756 perf_pmu_unregister(&pmu->pmu);
757 pmu->registered = false;
758}
759
e633c65a 760static void __uncore_exit_boxes(struct intel_uncore_type *type, int cpu)
7b672d64
TG
761{
762 struct intel_uncore_pmu *pmu = type->pmus;
763 struct intel_uncore_box *box;
764 int i, pkg;
765
766 if (pmu) {
767 pkg = topology_physical_package_id(cpu);
768 for (i = 0; i < type->num_boxes; i++, pmu++) {
769 box = pmu->boxes[pkg];
770 if (box)
771 uncore_box_exit(box);
772 }
773 }
774}
775
e633c65a 776static void uncore_exit_boxes(void *dummy)
7b672d64
TG
777{
778 struct intel_uncore_type **types;
779
780 for (types = uncore_msr_uncores; *types; types++)
781 __uncore_exit_boxes(*types++, smp_processor_id());
782}
783
cf6d445f
TG
784static void uncore_free_boxes(struct intel_uncore_pmu *pmu)
785{
786 int pkg;
787
788 for (pkg = 0; pkg < max_packages; pkg++)
789 kfree(pmu->boxes[pkg]);
790 kfree(pmu->boxes);
791}
792
e633c65a 793static void uncore_type_exit(struct intel_uncore_type *type)
087bfbb0 794{
cf6d445f 795 struct intel_uncore_pmu *pmu = type->pmus;
087bfbb0
YZ
796 int i;
797
cf6d445f
TG
798 if (pmu) {
799 for (i = 0; i < type->num_boxes; i++, pmu++) {
800 uncore_pmu_unregister(pmu);
801 uncore_free_boxes(pmu);
4f089678 802 }
ffeda003
TG
803 kfree(type->pmus);
804 type->pmus = NULL;
805 }
314d9f63
YZ
806 kfree(type->events_group);
807 type->events_group = NULL;
087bfbb0
YZ
808}
809
e633c65a 810static void uncore_types_exit(struct intel_uncore_type **types)
14371cce 811{
1229735b
TG
812 for (; *types; types++)
813 uncore_type_exit(*types);
14371cce
YZ
814}
815
cf6d445f 816static int __init uncore_type_init(struct intel_uncore_type *type, bool setid)
087bfbb0
YZ
817{
818 struct intel_uncore_pmu *pmus;
1b0dac2a 819 struct attribute_group *attr_group;
087bfbb0 820 struct attribute **attrs;
cf6d445f 821 size_t size;
087bfbb0
YZ
822 int i, j;
823
824 pmus = kzalloc(sizeof(*pmus) * type->num_boxes, GFP_KERNEL);
825 if (!pmus)
826 return -ENOMEM;
827
cf6d445f 828 size = max_packages * sizeof(struct intel_uncore_box *);
087bfbb0
YZ
829
830 for (i = 0; i < type->num_boxes; i++) {
cf6d445f
TG
831 pmus[i].func_id = setid ? i : -1;
832 pmus[i].pmu_idx = i;
833 pmus[i].type = type;
834 pmus[i].boxes = kzalloc(size, GFP_KERNEL);
835 if (!pmus[i].boxes)
ffeda003 836 return -ENOMEM;
087bfbb0
YZ
837 }
838
cf6d445f
TG
839 type->pmus = pmus;
840 type->unconstrainted = (struct event_constraint)
841 __EVENT_CONSTRAINT(0, (1ULL << type->num_counters) - 1,
842 0, type->num_counters, 0, 0);
843
087bfbb0 844 if (type->event_descs) {
cf6d445f 845 for (i = 0; type->event_descs[i].attr.attr.name; i++);
087bfbb0 846
1b0dac2a
JSM
847 attr_group = kzalloc(sizeof(struct attribute *) * (i + 1) +
848 sizeof(*attr_group), GFP_KERNEL);
849 if (!attr_group)
ffeda003 850 return -ENOMEM;
087bfbb0 851
1b0dac2a
JSM
852 attrs = (struct attribute **)(attr_group + 1);
853 attr_group->name = "events";
854 attr_group->attrs = attrs;
087bfbb0
YZ
855
856 for (j = 0; j < i; j++)
857 attrs[j] = &type->event_descs[j].attr.attr;
858
1b0dac2a 859 type->events_group = attr_group;
087bfbb0
YZ
860 }
861
314d9f63 862 type->pmu_group = &uncore_pmu_attr_group;
087bfbb0 863 return 0;
087bfbb0
YZ
864}
865
cf6d445f
TG
866static int __init
867uncore_types_init(struct intel_uncore_type **types, bool setid)
087bfbb0 868{
cf6d445f 869 int ret;
087bfbb0 870
cf6d445f
TG
871 for (; *types; types++) {
872 ret = uncore_type_init(*types, setid);
087bfbb0 873 if (ret)
ffeda003 874 return ret;
087bfbb0
YZ
875 }
876 return 0;
087bfbb0
YZ
877}
878
14371cce
YZ
879/*
880 * add a pci uncore device
881 */
899396cf 882static int uncore_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
14371cce 883{
cf6d445f 884 struct intel_uncore_type *type;
14371cce
YZ
885 struct intel_uncore_pmu *pmu;
886 struct intel_uncore_box *box;
cf6d445f 887 int phys_id, pkg, ret;
14371cce 888
712df65c 889 phys_id = uncore_pcibus_to_physid(pdev->bus);
cf6d445f 890 if (phys_id < 0)
14371cce
YZ
891 return -ENODEV;
892
cf6d445f 893 pkg = topology_phys_to_logical_pkg(phys_id);
ef3f00a4 894 if (pkg < 0)
cf6d445f
TG
895 return -EINVAL;
896
899396cf 897 if (UNCORE_PCI_DEV_TYPE(id->driver_data) == UNCORE_EXTRA_PCI_DEV) {
514b2346 898 int idx = UNCORE_PCI_DEV_IDX(id->driver_data);
cf6d445f
TG
899
900 uncore_extra_pci_dev[pkg].dev[idx] = pdev;
899396cf
YZ
901 pci_set_drvdata(pdev, NULL);
902 return 0;
903 }
904
514b2346 905 type = uncore_pci_uncores[UNCORE_PCI_DEV_TYPE(id->driver_data)];
14371cce
YZ
906 /*
907 * for performance monitoring unit with multiple boxes,
908 * each box has a different function id.
909 */
899396cf 910 pmu = &type->pmus[UNCORE_PCI_DEV_IDX(id->driver_data)];
77af0037
HC
911 /* Knights Landing uses a common PCI device ID for multiple instances of
912 * an uncore PMU device type. There is only one entry per device type in
913 * the knl_uncore_pci_ids table inspite of multiple devices present for
914 * some device types. Hence PCI device idx would be 0 for all devices.
915 * So increment pmu pointer to point to an unused array element.
916 */
1229735b 917 if (boot_cpu_data.x86_model == 87) {
77af0037
HC
918 while (pmu->func_id >= 0)
919 pmu++;
1229735b
TG
920 }
921
cf6d445f
TG
922 if (WARN_ON_ONCE(pmu->boxes[pkg] != NULL))
923 return -EINVAL;
924
925 box = uncore_alloc_box(type, NUMA_NO_NODE);
926 if (!box)
927 return -ENOMEM;
928
899396cf
YZ
929 if (pmu->func_id < 0)
930 pmu->func_id = pdev->devfn;
931 else
932 WARN_ON_ONCE(pmu->func_id != pdev->devfn);
14371cce 933
cf6d445f
TG
934 atomic_inc(&box->refcnt);
935 box->pci_phys_id = phys_id;
936 box->pkgid = pkg;
14371cce
YZ
937 box->pci_dev = pdev;
938 box->pmu = pmu;
15c12479 939 uncore_box_init(box);
14371cce
YZ
940 pci_set_drvdata(pdev, box);
941
cf6d445f
TG
942 pmu->boxes[pkg] = box;
943 if (atomic_inc_return(&pmu->activeboxes) > 1)
4f089678
TG
944 return 0;
945
cf6d445f 946 /* First active box registers the pmu */
4f089678
TG
947 ret = uncore_pmu_register(pmu);
948 if (ret) {
949 pci_set_drvdata(pdev, NULL);
cf6d445f 950 pmu->boxes[pkg] = NULL;
a46195f1 951 uncore_box_exit(box);
4f089678
TG
952 kfree(box);
953 }
954 return ret;
14371cce
YZ
955}
956
357398e9 957static void uncore_pci_remove(struct pci_dev *pdev)
14371cce
YZ
958{
959 struct intel_uncore_box *box = pci_get_drvdata(pdev);
899396cf 960 struct intel_uncore_pmu *pmu;
cf6d445f 961 int i, phys_id, pkg;
899396cf 962
712df65c 963 phys_id = uncore_pcibus_to_physid(pdev->bus);
cf6d445f
TG
964 pkg = topology_phys_to_logical_pkg(phys_id);
965
899396cf
YZ
966 box = pci_get_drvdata(pdev);
967 if (!box) {
968 for (i = 0; i < UNCORE_EXTRA_PCI_DEV_MAX; i++) {
cf6d445f
TG
969 if (uncore_extra_pci_dev[pkg].dev[i] == pdev) {
970 uncore_extra_pci_dev[pkg].dev[i] = NULL;
899396cf
YZ
971 break;
972 }
973 }
974 WARN_ON_ONCE(i >= UNCORE_EXTRA_PCI_DEV_MAX);
975 return;
976 }
14371cce 977
899396cf 978 pmu = box->pmu;
cf6d445f 979 if (WARN_ON_ONCE(phys_id != box->pci_phys_id))
14371cce
YZ
980 return;
981
e850f9c3 982 pci_set_drvdata(pdev, NULL);
cf6d445f
TG
983 pmu->boxes[pkg] = NULL;
984 if (atomic_dec_return(&pmu->activeboxes) == 0)
985 uncore_pmu_unregister(pmu);
a46195f1 986 uncore_box_exit(box);
14371cce
YZ
987 kfree(box);
988}
989
14371cce
YZ
990static int __init uncore_pci_init(void)
991{
cf6d445f 992 size_t size;
14371cce
YZ
993 int ret;
994
cf6d445f
TG
995 size = max_packages * sizeof(struct pci_extra_dev);
996 uncore_extra_pci_dev = kzalloc(size, GFP_KERNEL);
997 if (!uncore_extra_pci_dev) {
998 ret = -ENOMEM;
ffeda003 999 goto err;
cf6d445f
TG
1000 }
1001
1002 ret = uncore_types_init(uncore_pci_uncores, false);
1003 if (ret)
1004 goto errtype;
14371cce
YZ
1005
1006 uncore_pci_driver->probe = uncore_pci_probe;
1007 uncore_pci_driver->remove = uncore_pci_remove;
1008
1009 ret = pci_register_driver(uncore_pci_driver);
ffeda003 1010 if (ret)
cf6d445f 1011 goto errtype;
ffeda003
TG
1012
1013 pcidrv_registered = true;
1014 return 0;
14371cce 1015
cf6d445f 1016errtype:
ffeda003 1017 uncore_types_exit(uncore_pci_uncores);
cf6d445f
TG
1018 kfree(uncore_extra_pci_dev);
1019 uncore_extra_pci_dev = NULL;
4f089678 1020 uncore_free_pcibus_map();
cf6d445f
TG
1021err:
1022 uncore_pci_uncores = empty_uncore;
14371cce
YZ
1023 return ret;
1024}
1025
e633c65a 1026static void uncore_pci_exit(void)
14371cce
YZ
1027{
1028 if (pcidrv_registered) {
1029 pcidrv_registered = false;
1030 pci_unregister_driver(uncore_pci_driver);
514b2346 1031 uncore_types_exit(uncore_pci_uncores);
cf6d445f 1032 kfree(uncore_extra_pci_dev);
4f089678 1033 uncore_free_pcibus_map();
14371cce
YZ
1034 }
1035}
1036
148f9bb8 1037static void uncore_cpu_dying(int cpu)
087bfbb0 1038{
cf6d445f 1039 struct intel_uncore_type *type, **types = uncore_msr_uncores;
087bfbb0
YZ
1040 struct intel_uncore_pmu *pmu;
1041 struct intel_uncore_box *box;
cf6d445f 1042 int i, pkg;
087bfbb0 1043
cf6d445f
TG
1044 pkg = topology_logical_package_id(cpu);
1045 for (; *types; types++) {
1046 type = *types;
1047 pmu = type->pmus;
1048 for (i = 0; i < type->num_boxes; i++, pmu++) {
1049 box = pmu->boxes[pkg];
1050 if (box && atomic_dec_return(&box->refcnt) == 0)
a46195f1 1051 uncore_box_exit(box);
087bfbb0
YZ
1052 }
1053 }
1054}
1055
cf6d445f 1056static void uncore_cpu_starting(int cpu, bool init)
087bfbb0 1057{
cf6d445f 1058 struct intel_uncore_type *type, **types = uncore_msr_uncores;
087bfbb0 1059 struct intel_uncore_pmu *pmu;
cf6d445f
TG
1060 struct intel_uncore_box *box;
1061 int i, pkg, ncpus = 1;
087bfbb0 1062
cf6d445f
TG
1063 if (init) {
1064 /*
1065 * On init we get the number of online cpus in the package
1066 * and set refcount for all of them.
1067 */
1068 ncpus = cpumask_weight(topology_core_cpumask(cpu));
1069 }
087bfbb0 1070
cf6d445f
TG
1071 pkg = topology_logical_package_id(cpu);
1072 for (; *types; types++) {
1073 type = *types;
1074 pmu = type->pmus;
1075 for (i = 0; i < type->num_boxes; i++, pmu++) {
1076 box = pmu->boxes[pkg];
1077 if (!box)
1078 continue;
1079 /* The first cpu on a package activates the box */
1080 if (atomic_add_return(ncpus, &box->refcnt) == ncpus)
15c12479 1081 uncore_box_init(box);
087bfbb0
YZ
1082 }
1083 }
087bfbb0
YZ
1084}
1085
cf6d445f 1086static int uncore_cpu_prepare(int cpu)
087bfbb0 1087{
cf6d445f 1088 struct intel_uncore_type *type, **types = uncore_msr_uncores;
087bfbb0
YZ
1089 struct intel_uncore_pmu *pmu;
1090 struct intel_uncore_box *box;
cf6d445f 1091 int i, pkg;
087bfbb0 1092
cf6d445f
TG
1093 pkg = topology_logical_package_id(cpu);
1094 for (; *types; types++) {
1095 type = *types;
1096 pmu = type->pmus;
1097 for (i = 0; i < type->num_boxes; i++, pmu++) {
1098 if (pmu->boxes[pkg])
1099 continue;
1100 /* First cpu of a package allocates the box */
73c4427c 1101 box = uncore_alloc_box(type, cpu_to_node(cpu));
087bfbb0
YZ
1102 if (!box)
1103 return -ENOMEM;
087bfbb0 1104 box->pmu = pmu;
cf6d445f
TG
1105 box->pkgid = pkg;
1106 pmu->boxes[pkg] = box;
087bfbb0
YZ
1107 }
1108 }
1109 return 0;
1110}
1111
1229735b
TG
1112static void uncore_change_type_ctx(struct intel_uncore_type *type, int old_cpu,
1113 int new_cpu)
087bfbb0 1114{
1229735b 1115 struct intel_uncore_pmu *pmu = type->pmus;
087bfbb0 1116 struct intel_uncore_box *box;
cf6d445f 1117 int i, pkg;
087bfbb0 1118
cf6d445f 1119 pkg = topology_logical_package_id(old_cpu < 0 ? new_cpu : old_cpu);
1229735b 1120 for (i = 0; i < type->num_boxes; i++, pmu++) {
cf6d445f 1121 box = pmu->boxes[pkg];
1229735b
TG
1122 if (!box)
1123 continue;
087bfbb0 1124
1229735b
TG
1125 if (old_cpu < 0) {
1126 WARN_ON_ONCE(box->cpu != -1);
1127 box->cpu = new_cpu;
1128 continue;
087bfbb0 1129 }
1229735b
TG
1130
1131 WARN_ON_ONCE(box->cpu != old_cpu);
1132 box->cpu = -1;
1133 if (new_cpu < 0)
1134 continue;
1135
1136 uncore_pmu_cancel_hrtimer(box);
1137 perf_pmu_migrate_context(&pmu->pmu, old_cpu, new_cpu);
1138 box->cpu = new_cpu;
087bfbb0
YZ
1139 }
1140}
1141
1229735b
TG
1142static void uncore_change_context(struct intel_uncore_type **uncores,
1143 int old_cpu, int new_cpu)
1144{
1145 for (; *uncores; uncores++)
1146 uncore_change_type_ctx(*uncores, old_cpu, new_cpu);
1147}
1148
148f9bb8 1149static void uncore_event_exit_cpu(int cpu)
087bfbb0 1150{
cf6d445f 1151 int target;
087bfbb0 1152
cf6d445f 1153 /* Check if exiting cpu is used for collecting uncore events */
087bfbb0
YZ
1154 if (!cpumask_test_and_clear_cpu(cpu, &uncore_cpu_mask))
1155 return;
1156
cf6d445f
TG
1157 /* Find a new cpu to collect uncore events */
1158 target = cpumask_any_but(topology_core_cpumask(cpu), cpu);
087bfbb0 1159
cf6d445f
TG
1160 /* Migrate uncore events to the new target */
1161 if (target < nr_cpu_ids)
087bfbb0 1162 cpumask_set_cpu(target, &uncore_cpu_mask);
cf6d445f
TG
1163 else
1164 target = -1;
087bfbb0 1165
514b2346
YZ
1166 uncore_change_context(uncore_msr_uncores, cpu, target);
1167 uncore_change_context(uncore_pci_uncores, cpu, target);
087bfbb0
YZ
1168}
1169
148f9bb8 1170static void uncore_event_init_cpu(int cpu)
087bfbb0 1171{
cf6d445f 1172 int target;
087bfbb0 1173
cf6d445f
TG
1174 /*
1175 * Check if there is an online cpu in the package
1176 * which collects uncore events already.
1177 */
1178 target = cpumask_any_and(&uncore_cpu_mask, topology_core_cpumask(cpu));
1179 if (target < nr_cpu_ids)
1180 return;
087bfbb0
YZ
1181
1182 cpumask_set_cpu(cpu, &uncore_cpu_mask);
1183
514b2346
YZ
1184 uncore_change_context(uncore_msr_uncores, -1, cpu);
1185 uncore_change_context(uncore_pci_uncores, -1, cpu);
087bfbb0
YZ
1186}
1187
148f9bb8
PG
1188static int uncore_cpu_notifier(struct notifier_block *self,
1189 unsigned long action, void *hcpu)
087bfbb0
YZ
1190{
1191 unsigned int cpu = (long)hcpu;
1192
087bfbb0
YZ
1193 switch (action & ~CPU_TASKS_FROZEN) {
1194 case CPU_UP_PREPARE:
cf6d445f
TG
1195 return notifier_from_errno(uncore_cpu_prepare(cpu));
1196
087bfbb0 1197 case CPU_STARTING:
cf6d445f
TG
1198 uncore_cpu_starting(cpu, false);
1199 case CPU_DOWN_FAILED:
1200 uncore_event_init_cpu(cpu);
087bfbb0 1201 break;
cf6d445f 1202
087bfbb0
YZ
1203 case CPU_UP_CANCELED:
1204 case CPU_DYING:
1205 uncore_cpu_dying(cpu);
1206 break;
087bfbb0 1207
087bfbb0
YZ
1208 case CPU_DOWN_PREPARE:
1209 uncore_event_exit_cpu(cpu);
1210 break;
087bfbb0 1211 }
087bfbb0
YZ
1212 return NOTIFY_OK;
1213}
1214
148f9bb8 1215static struct notifier_block uncore_cpu_nb = {
254298c7 1216 .notifier_call = uncore_cpu_notifier,
087bfbb0
YZ
1217 /*
1218 * to migrate uncore events, our notifier should be executed
1219 * before perf core's notifier.
1220 */
254298c7 1221 .priority = CPU_PRI_PERF + 1,
087bfbb0
YZ
1222};
1223
4f089678 1224static int __init type_pmu_register(struct intel_uncore_type *type)
087bfbb0 1225{
4f089678
TG
1226 int i, ret;
1227
1228 for (i = 0; i < type->num_boxes; i++) {
1229 ret = uncore_pmu_register(&type->pmus[i]);
1230 if (ret)
1231 return ret;
1232 }
1233 return 0;
1234}
1235
1236static int __init uncore_msr_pmus_register(void)
1237{
1238 struct intel_uncore_type **types = uncore_msr_uncores;
1239 int ret;
1240
1229735b
TG
1241 for (; *types; types++) {
1242 ret = type_pmu_register(*types);
4f089678
TG
1243 if (ret)
1244 return ret;
1245 }
1246 return 0;
087bfbb0
YZ
1247}
1248
1249static int __init uncore_cpu_init(void)
1250{
c1e46580 1251 int ret;
087bfbb0 1252
cf6d445f 1253 ret = uncore_types_init(uncore_msr_uncores, true);
4f089678
TG
1254 if (ret)
1255 goto err;
1256
1257 ret = uncore_msr_pmus_register();
087bfbb0 1258 if (ret)
ffeda003 1259 goto err;
087bfbb0 1260 return 0;
ffeda003
TG
1261err:
1262 uncore_types_exit(uncore_msr_uncores);
1263 uncore_msr_uncores = empty_uncore;
1264 return ret;
087bfbb0
YZ
1265}
1266
4f089678 1267static void __init uncore_cpu_setup(void *dummy)
087bfbb0 1268{
cf6d445f 1269 uncore_cpu_starting(smp_processor_id(), true);
087bfbb0
YZ
1270}
1271
cf6d445f
TG
1272/* Lazy to avoid allocation of a few bytes for the normal case */
1273static __initdata DECLARE_BITMAP(packages, MAX_LOCAL_APIC);
1274
5485592c 1275static int __init uncore_cpumask_init(bool msr)
411cf180 1276{
cf6d445f 1277 unsigned int cpu;
411cf180
SE
1278
1279 for_each_online_cpu(cpu) {
cf6d445f
TG
1280 unsigned int pkg = topology_logical_package_id(cpu);
1281 int ret;
411cf180 1282
cf6d445f 1283 if (test_and_set_bit(pkg, packages))
411cf180 1284 continue;
cf6d445f 1285 /*
5485592c
TG
1286 * The first online cpu of each package allocates and takes
1287 * the refcounts for all other online cpus in that package.
1288 * If msrs are not enabled no allocation is required.
cf6d445f 1289 */
5485592c
TG
1290 if (msr) {
1291 ret = uncore_cpu_prepare(cpu);
1292 if (ret)
1293 return ret;
1294 }
411cf180 1295 uncore_event_init_cpu(cpu);
cf6d445f 1296 smp_call_function_single(cpu, uncore_cpu_setup, NULL, 1);
411cf180 1297 }
467a9e16 1298 __register_cpu_notifier(&uncore_cpu_nb);
cf6d445f 1299 return 0;
411cf180
SE
1300}
1301
e633c65a
KL
1302#define X86_UNCORE_MODEL_MATCH(model, init) \
1303 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&init }
1304
1305struct intel_uncore_init_fun {
1306 void (*cpu_init)(void);
1307 int (*pci_init)(void);
1308};
1309
1310static const struct intel_uncore_init_fun nhm_uncore_init __initconst = {
1311 .cpu_init = nhm_uncore_cpu_init,
1312};
1313
1314static const struct intel_uncore_init_fun snb_uncore_init __initconst = {
1315 .cpu_init = snb_uncore_cpu_init,
1316 .pci_init = snb_uncore_pci_init,
1317};
1318
1319static const struct intel_uncore_init_fun ivb_uncore_init __initconst = {
1320 .cpu_init = snb_uncore_cpu_init,
1321 .pci_init = ivb_uncore_pci_init,
1322};
1323
1324static const struct intel_uncore_init_fun hsw_uncore_init __initconst = {
1325 .cpu_init = snb_uncore_cpu_init,
1326 .pci_init = hsw_uncore_pci_init,
1327};
1328
1329static const struct intel_uncore_init_fun bdw_uncore_init __initconst = {
1330 .cpu_init = snb_uncore_cpu_init,
1331 .pci_init = bdw_uncore_pci_init,
1332};
1333
1334static const struct intel_uncore_init_fun snbep_uncore_init __initconst = {
1335 .cpu_init = snbep_uncore_cpu_init,
1336 .pci_init = snbep_uncore_pci_init,
1337};
1338
1339static const struct intel_uncore_init_fun nhmex_uncore_init __initconst = {
1340 .cpu_init = nhmex_uncore_cpu_init,
1341};
1342
1343static const struct intel_uncore_init_fun ivbep_uncore_init __initconst = {
1344 .cpu_init = ivbep_uncore_cpu_init,
1345 .pci_init = ivbep_uncore_pci_init,
1346};
1347
1348static const struct intel_uncore_init_fun hswep_uncore_init __initconst = {
1349 .cpu_init = hswep_uncore_cpu_init,
1350 .pci_init = hswep_uncore_pci_init,
1351};
1352
1353static const struct intel_uncore_init_fun bdx_uncore_init __initconst = {
1354 .cpu_init = bdx_uncore_cpu_init,
1355 .pci_init = bdx_uncore_pci_init,
1356};
1357
1358static const struct intel_uncore_init_fun knl_uncore_init __initconst = {
1359 .cpu_init = knl_uncore_cpu_init,
1360 .pci_init = knl_uncore_pci_init,
1361};
1362
1363static const struct intel_uncore_init_fun skl_uncore_init __initconst = {
1364 .pci_init = skl_uncore_pci_init,
1365};
1366
1367static const struct x86_cpu_id intel_uncore_match[] __initconst = {
1368 X86_UNCORE_MODEL_MATCH(26, nhm_uncore_init), /* Nehalem */
1369 X86_UNCORE_MODEL_MATCH(30, nhm_uncore_init),
1370 X86_UNCORE_MODEL_MATCH(37, nhm_uncore_init), /* Westmere */
1371 X86_UNCORE_MODEL_MATCH(44, nhm_uncore_init),
1372 X86_UNCORE_MODEL_MATCH(42, snb_uncore_init), /* Sandy Bridge */
1373 X86_UNCORE_MODEL_MATCH(58, ivb_uncore_init), /* Ivy Bridge */
1374 X86_UNCORE_MODEL_MATCH(60, hsw_uncore_init), /* Haswell */
1375 X86_UNCORE_MODEL_MATCH(69, hsw_uncore_init), /* Haswell Celeron */
1376 X86_UNCORE_MODEL_MATCH(70, hsw_uncore_init), /* Haswell */
1377 X86_UNCORE_MODEL_MATCH(61, bdw_uncore_init), /* Broadwell */
1378 X86_UNCORE_MODEL_MATCH(71, bdw_uncore_init), /* Broadwell */
1379 X86_UNCORE_MODEL_MATCH(45, snbep_uncore_init), /* Sandy Bridge-EP */
1380 X86_UNCORE_MODEL_MATCH(46, nhmex_uncore_init), /* Nehalem-EX */
1381 X86_UNCORE_MODEL_MATCH(47, nhmex_uncore_init), /* Westmere-EX aka. Xeon E7 */
1382 X86_UNCORE_MODEL_MATCH(62, ivbep_uncore_init), /* Ivy Bridge-EP */
1383 X86_UNCORE_MODEL_MATCH(63, hswep_uncore_init), /* Haswell-EP */
1384 X86_UNCORE_MODEL_MATCH(79, bdx_uncore_init), /* BDX-EP */
1385 X86_UNCORE_MODEL_MATCH(86, bdx_uncore_init), /* BDX-DE */
1386 X86_UNCORE_MODEL_MATCH(87, knl_uncore_init), /* Knights Landing */
1387 X86_UNCORE_MODEL_MATCH(94, skl_uncore_init), /* SkyLake */
1388 {},
1389};
1390
1391MODULE_DEVICE_TABLE(x86cpu, intel_uncore_match);
1392
087bfbb0
YZ
1393static int __init intel_uncore_init(void)
1394{
e633c65a
KL
1395 const struct x86_cpu_id *id;
1396 struct intel_uncore_init_fun *uncore_init;
1397 int pret = 0, cret = 0, ret;
087bfbb0 1398
e633c65a
KL
1399 id = x86_match_cpu(intel_uncore_match);
1400 if (!id)
087bfbb0
YZ
1401 return -ENODEV;
1402
0c9f3536 1403 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
a05123bd
YZ
1404 return -ENODEV;
1405
cf6d445f
TG
1406 max_packages = topology_max_packages();
1407
e633c65a
KL
1408 uncore_init = (struct intel_uncore_init_fun *)id->driver_data;
1409 if (uncore_init->pci_init) {
1410 pret = uncore_init->pci_init();
1411 if (!pret)
1412 pret = uncore_pci_init();
1413 }
1414
1415 if (uncore_init->cpu_init) {
1416 uncore_init->cpu_init();
1417 cret = uncore_cpu_init();
1418 }
5485592c
TG
1419
1420 if (cret && pret)
1421 return -ENODEV;
cf6d445f
TG
1422
1423 cpu_notifier_register_begin();
5485592c 1424 ret = uncore_cpumask_init(!cret);
4f089678 1425 if (ret)
cf6d445f
TG
1426 goto err;
1427 cpu_notifier_register_done();
087bfbb0 1428 return 0;
4f089678 1429
cf6d445f 1430err:
7b672d64
TG
1431 /* Undo box->init_box() */
1432 on_each_cpu_mask(&uncore_cpu_mask, uncore_exit_boxes, NULL, 1);
4f089678 1433 uncore_types_exit(uncore_msr_uncores);
4f089678 1434 uncore_pci_exit();
cf6d445f 1435 cpu_notifier_register_done();
087bfbb0
YZ
1436 return ret;
1437}
e633c65a
KL
1438module_init(intel_uncore_init);
1439
1440static void __exit intel_uncore_exit(void)
1441{
1442 cpu_notifier_register_begin();
1443 __unregister_cpu_notifier(&uncore_cpu_nb);
1444 uncore_types_exit(uncore_msr_uncores);
1445 uncore_pci_exit();
1446 cpu_notifier_register_done();
1447}
1448module_exit(intel_uncore_exit);