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