blob: fce74062d9812031b491d997f1e995578ccf8af9 [file] [log] [blame]
Kan Liange633c652016-03-20 01:33:36 -07001#include <asm/cpu_device_id.h>
Borislav Petkov6bcb2db2016-02-10 10:55:15 +01002#include "uncore.h"
Yan, Zheng087bfbb2012-06-15 14:31:34 +08003
4static struct intel_uncore_type *empty_uncore[] = { NULL, };
Yan, Zheng514b2342014-07-30 15:22:12 +08005struct intel_uncore_type **uncore_msr_uncores = empty_uncore;
6struct intel_uncore_type **uncore_pci_uncores = empty_uncore;
Yan, Zheng14371cc2012-06-15 14:31:36 +08007
Yan, Zheng514b2342014-07-30 15:22:12 +08008static bool pcidrv_registered;
9struct pci_driver *uncore_pci_driver;
10/* pci bus to socket mapping */
Taku Izumi712df652015-09-24 21:10:21 +090011DEFINE_RAW_SPINLOCK(pci2phy_map_lock);
12struct list_head pci2phy_map_head = LIST_HEAD_INIT(pci2phy_map_head);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +000013struct pci_extra_dev *uncore_extra_pci_dev;
14static int max_packages;
Yan, Zheng899396c2013-08-07 14:17:23 +080015
Yan, Zheng087bfbb2012-06-15 14:31:34 +080016/* mask of cpus that collect uncore events */
17static cpumask_t uncore_cpu_mask;
18
19/* constraint for the fixed counter */
Yan, Zheng514b2342014-07-30 15:22:12 +080020static struct event_constraint uncore_constraint_fixed =
Yan, Zheng087bfbb2012-06-15 14:31:34 +080021 EVENT_CONSTRAINT(~0ULL, 1 << UNCORE_PMC_IDX_FIXED, ~0ULL);
Yan, Zheng514b2342014-07-30 15:22:12 +080022struct event_constraint uncore_constraint_empty =
Yan, Zheng6a679432012-07-04 14:00:15 +080023 EVENT_CONSTRAINT(0, 0, 0);
Yan, Zheng087bfbb2012-06-15 14:31:34 +080024
Kan Liange633c652016-03-20 01:33:36 -070025MODULE_LICENSE("GPL");
26
Thomas Gleixner1384c702016-02-22 22:19:13 +000027static int uncore_pcibus_to_physid(struct pci_bus *bus)
Taku Izumi712df652015-09-24 21:10:21 +090028{
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
Thomas Gleixner4f089672016-02-22 22:19:09 +000044static 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
Taku Izumi712df652015-09-24 21:10:21 +090054struct 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
Yan, Zheng514b2342014-07-30 15:22:12 +080090ssize_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
Yan, Zheng514b2342014-07-30 15:22:12 +080098struct intel_uncore_box *uncore_pmu_to_box(struct intel_uncore_pmu *pmu, int cpu)
Stephane Eranian001e4132014-02-11 16:20:11 +010099{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000100 return pmu->boxes[topology_logical_package_id(cpu)];
Stephane Eranian001e4132014-02-11 16:20:11 +0100101}
102
Yan, Zheng514b2342014-07-30 15:22:12 +0800103u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng254298c2012-07-05 14:32:17 +0800104{
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 */
Yan, Zheng514b2342014-07-30 15:22:12 +0800115struct event_constraint *
Yan, Zheng254298c2012-07-05 14:32:17 +0800116uncore_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
Yan, Zheng514b2342014-07-30 15:22:12 +0800150 return &uncore_constraint_empty;
Yan, Zheng254298c2012-07-05 14:32:17 +0800151}
152
Yan, Zheng514b2342014-07-30 15:22:12 +0800153void uncore_put_constraint(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng254298c2012-07-05 14:32:17 +0800154{
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
Yan, Zheng514b2342014-07-30 15:22:12 +0800174u64 uncore_shared_reg_config(struct intel_uncore_box *box, int idx)
Yan, Zheng46bdd902013-04-16 19:51:06 +0800175{
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
Thomas Gleixner12297352016-02-22 22:19:12 +0000189static void uncore_assign_hw_event(struct intel_uncore_box *box,
190 struct perf_event *event, int idx)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800191{
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) {
Yan, Zheng14371cc2012-06-15 14:31:36 +0800198 hwc->event_base = uncore_fixed_ctr(box);
199 hwc->config_base = uncore_fixed_ctl(box);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800200 return;
201 }
202
Yan, Zheng14371cc2012-06-15 14:31:36 +0800203 hwc->config_base = uncore_event_ctl(box, hwc->idx);
204 hwc->event_base = uncore_perf_ctr(box, hwc->idx);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800205}
206
Yan, Zheng514b2342014-07-30 15:22:12 +0800207void uncore_perf_event_update(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800208{
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;
Stephane Eranianced2efb2014-02-11 16:20:13 +0100238 struct perf_event *event;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800239 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
Stephane Eranianced2efb2014-02-11 16:20:13 +0100251 /*
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
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800259 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
Stephane Eranian79859cc2014-02-11 16:20:10 +0100264 hrtimer_forward_now(hrtimer, ns_to_ktime(box->hrtimer_duration));
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800265 return HRTIMER_RESTART;
266}
267
Yan, Zheng514b2342014-07-30 15:22:12 +0800268void uncore_pmu_start_hrtimer(struct intel_uncore_box *box)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800269{
Thomas Gleixner576b0702015-04-14 21:09:01 +0000270 hrtimer_start(&box->hrtimer, ns_to_ktime(box->hrtimer_duration),
271 HRTIMER_MODE_REL_PINNED);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800272}
273
Yan, Zheng514b2342014-07-30 15:22:12 +0800274void uncore_pmu_cancel_hrtimer(struct intel_uncore_box *box)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800275{
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
Thomas Gleixner12297352016-02-22 22:19:12 +0000285static struct intel_uncore_box *uncore_alloc_box(struct intel_uncore_type *type,
286 int node)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800287{
Thomas Gleixner12297352016-02-22 22:19:12 +0000288 int i, size, numshared = type->num_shared_regs ;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800289 struct intel_uncore_box *box;
290
Thomas Gleixner12297352016-02-22 22:19:12 +0000291 size = sizeof(*box) + numshared * sizeof(struct intel_uncore_extra_reg);
Yan, Zheng6a679432012-07-04 14:00:15 +0800292
Yan, Zheng73c44272013-09-17 14:48:13 +0800293 box = kzalloc_node(size, GFP_KERNEL, node);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800294 if (!box)
295 return NULL;
296
Thomas Gleixner12297352016-02-22 22:19:12 +0000297 for (i = 0; i < numshared; i++)
Yan, Zheng6a679432012-07-04 14:00:15 +0800298 raw_spin_lock_init(&box->shared_regs[i].lock);
299
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800300 uncore_pmu_init_hrtimer(box);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800301 box->cpu = -1;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000302 box->pci_phys_id = -1;
303 box->pkgid = -1;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800304
Stephane Eranian79859cc2014-02-11 16:20:10 +0100305 /* set default hrtimer timeout */
306 box->hrtimer_duration = UNCORE_PMU_HRTIMER_INTERVAL;
307
Stephane Eranianced2efb2014-02-11 16:20:13 +0100308 INIT_LIST_HEAD(&box->active_list);
309
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800310 return box;
311}
312
Jiri Olsaaf915682014-12-10 21:23:50 +0100313/*
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
Yan, Zheng254298c2012-07-05 14:32:17 +0800324static int
Thomas Gleixner12297352016-02-22 22:19:12 +0000325uncore_collect_events(struct intel_uncore_box *box, struct perf_event *leader,
326 bool dogrp)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800327{
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;
Jiri Olsaaf915682014-12-10 21:23:50 +0100339
340 if (is_uncore_event(leader)) {
341 box->event_list[n] = leader;
342 n++;
343 }
344
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800345 if (!dogrp)
346 return n;
347
348 list_for_each_entry(event, &leader->sibling_list, group_entry) {
Jiri Olsaaf915682014-12-10 21:23:50 +0100349 if (!is_uncore_event(event) ||
350 event->state <= PERF_EVENT_STATE_OFF)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800351 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 *
Yan, Zheng254298c2012-07-05 14:32:17 +0800363uncore_get_event_constraint(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800364{
Yan, Zheng6a679432012-07-04 14:00:15 +0800365 struct intel_uncore_type *type = box->pmu->type;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800366 struct event_constraint *c;
367
Yan, Zheng6a679432012-07-04 14:00:15 +0800368 if (type->ops->get_constraint) {
369 c = type->ops->get_constraint(box, event);
370 if (c)
371 return c;
372 }
373
Stephane Eraniandbc33f72013-09-09 12:53:50 -0700374 if (event->attr.config == UNCORE_FIXED_EVENT)
Yan, Zheng514b2342014-07-30 15:22:12 +0800375 return &uncore_constraint_fixed;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800376
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
Thomas Gleixner12297352016-02-22 22:19:12 +0000387static void uncore_put_event_constraint(struct intel_uncore_box *box,
388 struct perf_event *event)
Yan, Zheng6a679432012-07-04 14:00:15 +0800389{
390 if (box->pmu->type->ops->put_constraint)
391 box->pmu->type->ops->put_constraint(box, event);
392}
393
Yan, Zheng254298c2012-07-05 14:32:17 +0800394static int uncore_assign_events(struct intel_uncore_box *box, int assign[], int n)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800395{
396 unsigned long used_mask[BITS_TO_LONGS(UNCORE_PMC_IDX_MAX)];
Andrew Hunter43b457802013-05-23 11:07:03 -0700397 struct event_constraint *c;
Yan, Zheng6a679432012-07-04 14:00:15 +0800398 int i, wmin, wmax, ret = 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800399 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++) {
Yan, Zheng6a679432012-07-04 14:00:15 +0800404 c = uncore_get_event_constraint(box, box->event_list[i]);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200405 box->event_constraint[i] = c;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800406 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;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200413 c = box->event_constraint[i];
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800414
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);
Yan, Zheng6a679432012-07-04 14:00:15 +0800428 if (assign)
429 assign[i] = hwc->idx;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800430 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800431 /* slow path */
Yan, Zheng6a679432012-07-04 14:00:15 +0800432 if (i != n)
Peter Zijlstrab371b592015-05-21 10:57:13 +0200433 ret = perf_assign_events(box->event_constraint, n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200434 wmin, wmax, n, assign);
Yan, Zheng6a679432012-07-04 14:00:15 +0800435
436 if (!assign || ret) {
437 for (i = 0; i < n; i++)
438 uncore_put_event_constraint(box, box->event_list[i]);
439 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800440 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]) {
Yan, Zheng6a679432012-07-04 14:00:15 +0800566 uncore_put_event_constraint(box, event);
567
Thomas Gleixner12297352016-02-22 22:19:12 +0000568 for (++i; i < box->n_events; i++)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800569 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
Yan, Zheng514b2342014-07-30 15:22:12 +0800580void uncore_pmu_event_read(struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800581{
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;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800595 int ret = -EINVAL, n;
596
Yan, Zheng73c44272013-09-17 14:48:13 +0800597 fake_box = uncore_alloc_box(pmu->type, NUMA_NO_NODE);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800598 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
Yan, Zheng6a679432012-07-04 14:00:15 +0800619 ret = uncore_assign_events(fake_box, NULL, n);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800620out:
621 kfree(fake_box);
622 return ret;
623}
624
Yan, Zheng46bdd902013-04-16 19:51:06 +0800625static int uncore_pmu_event_init(struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800626{
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;
Thomas Gleixner1f2569f2016-02-22 22:19:14 +0000662 event->pmu_private = box;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800663
Yan, Zheng6a679432012-07-04 14:00:15 +0800664 event->hw.idx = -1;
665 event->hw.last_tag = ~0ULL;
666 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Yan, Zhengebb6cc02012-08-06 13:11:21 +0800667 event->hw.branch_reg.idx = EXTRA_REG_NONE;
Yan, Zheng6a679432012-07-04 14:00:15 +0800668
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800669 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;
Stephane Eraniandbc33f72013-09-09 12:53:50 -0700679
680 /* fixed counters have event field hardcoded to zero */
681 hwc->config = 0ULL;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800682 } else {
683 hwc->config = event->attr.config & pmu->type->event_mask;
Yan, Zheng6a679432012-07-04 14:00:15 +0800684 if (pmu->type->ops->hw_config) {
685 ret = pmu->type->ops->hw_config(box, event);
686 if (ret)
687 return ret;
688 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800689 }
690
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800691 if (event->group_leader != event)
692 ret = uncore_validate_group(pmu, event);
693 else
694 ret = 0;
695
696 return ret;
697}
698
Yan, Zheng314d9f62012-09-10 15:53:49 +0800699static ssize_t uncore_get_attr_cpumask(struct device *dev,
700 struct device_attribute *attr, char *buf)
701{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100702 return cpumap_print_to_pagebuf(true, buf, &uncore_cpu_mask);
Yan, Zheng314d9f62012-09-10 15:53:49 +0800703}
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
Andi Kleena08b6762014-08-29 10:20:58 -0700716static int uncore_pmu_register(struct intel_uncore_pmu *pmu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800717{
718 int ret;
719
Stephane Eraniand64b25b2014-02-11 16:20:08 +0100720 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 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800735
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);
Thomas Gleixner4f089672016-02-22 22:19:09 +0000747 if (!ret)
748 pmu->registered = true;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800749 return ret;
750}
751
Thomas Gleixner4f089672016-02-22 22:19:09 +0000752static 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
Kan Liange633c652016-03-20 01:33:36 -0700760static void __uncore_exit_boxes(struct intel_uncore_type *type, int cpu)
Thomas Gleixner7b672d62016-02-22 22:19:17 +0000761{
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
Kan Liange633c652016-03-20 01:33:36 -0700776static void uncore_exit_boxes(void *dummy)
Thomas Gleixner7b672d62016-02-22 22:19:17 +0000777{
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
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000784static 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
Kan Liange633c652016-03-20 01:33:36 -0700793static void uncore_type_exit(struct intel_uncore_type *type)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800794{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000795 struct intel_uncore_pmu *pmu = type->pmus;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800796 int i;
797
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000798 if (pmu) {
799 for (i = 0; i < type->num_boxes; i++, pmu++) {
800 uncore_pmu_unregister(pmu);
801 uncore_free_boxes(pmu);
Thomas Gleixner4f089672016-02-22 22:19:09 +0000802 }
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000803 kfree(type->pmus);
804 type->pmus = NULL;
805 }
Yan, Zheng314d9f62012-09-10 15:53:49 +0800806 kfree(type->events_group);
807 type->events_group = NULL;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800808}
809
Kan Liange633c652016-03-20 01:33:36 -0700810static void uncore_types_exit(struct intel_uncore_type **types)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800811{
Thomas Gleixner12297352016-02-22 22:19:12 +0000812 for (; *types; types++)
813 uncore_type_exit(*types);
Yan, Zheng14371cc2012-06-15 14:31:36 +0800814}
815
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000816static int __init uncore_type_init(struct intel_uncore_type *type, bool setid)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800817{
818 struct intel_uncore_pmu *pmus;
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200819 struct attribute_group *attr_group;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800820 struct attribute **attrs;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000821 size_t size;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800822 int i, j;
823
824 pmus = kzalloc(sizeof(*pmus) * type->num_boxes, GFP_KERNEL);
825 if (!pmus)
826 return -ENOMEM;
827
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000828 size = max_packages * sizeof(struct intel_uncore_box *);
Dave Jonesb7b48392014-03-06 12:20:28 -0500829
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000830 for (i = 0; i < type->num_boxes; i++) {
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)
836 return -ENOMEM;
837 }
838
839 type->pmus = pmus;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800840 type->unconstrainted = (struct event_constraint)
841 __EVENT_CONSTRAINT(0, (1ULL << type->num_counters) - 1,
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100842 0, type->num_counters, 0, 0);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800843
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800844 if (type->event_descs) {
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000845 for (i = 0; type->event_descs[i].attr.attr.name; i++);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800846
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200847 attr_group = kzalloc(sizeof(struct attribute *) * (i + 1) +
848 sizeof(*attr_group), GFP_KERNEL);
849 if (!attr_group)
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000850 return -ENOMEM;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800851
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200852 attrs = (struct attribute **)(attr_group + 1);
853 attr_group->name = "events";
854 attr_group->attrs = attrs;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800855
856 for (j = 0; j < i; j++)
857 attrs[j] = &type->event_descs[j].attr.attr;
858
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200859 type->events_group = attr_group;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800860 }
861
Yan, Zheng314d9f62012-09-10 15:53:49 +0800862 type->pmu_group = &uncore_pmu_attr_group;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800863 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800864}
865
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000866static int __init
867uncore_types_init(struct intel_uncore_type **types, bool setid)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800868{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000869 int ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800870
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000871 for (; *types; types++) {
872 ret = uncore_type_init(*types, setid);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800873 if (ret)
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000874 return ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800875 }
876 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800877}
878
Yan, Zheng14371cc2012-06-15 14:31:36 +0800879/*
880 * add a pci uncore device
881 */
Yan, Zheng899396c2013-08-07 14:17:23 +0800882static int uncore_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800883{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000884 struct intel_uncore_type *type;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800885 struct intel_uncore_pmu *pmu;
886 struct intel_uncore_box *box;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000887 int phys_id, pkg, ret;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800888
Taku Izumi712df652015-09-24 21:10:21 +0900889 phys_id = uncore_pcibus_to_physid(pdev->bus);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000890 if (phys_id < 0)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800891 return -ENODEV;
892
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000893 pkg = topology_phys_to_logical_pkg(phys_id);
Jiri Olsaef3f00a2016-05-18 08:16:10 +0200894 if (pkg < 0)
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000895 return -EINVAL;
896
Yan, Zheng899396c2013-08-07 14:17:23 +0800897 if (UNCORE_PCI_DEV_TYPE(id->driver_data) == UNCORE_EXTRA_PCI_DEV) {
Yan, Zheng514b2342014-07-30 15:22:12 +0800898 int idx = UNCORE_PCI_DEV_IDX(id->driver_data);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000899
900 uncore_extra_pci_dev[pkg].dev[idx] = pdev;
Yan, Zheng899396c2013-08-07 14:17:23 +0800901 pci_set_drvdata(pdev, NULL);
902 return 0;
903 }
904
Yan, Zheng514b2342014-07-30 15:22:12 +0800905 type = uncore_pci_uncores[UNCORE_PCI_DEV_TYPE(id->driver_data)];
Yan, Zheng14371cc2012-06-15 14:31:36 +0800906 /*
907 * for performance monitoring unit with multiple boxes,
908 * each box has a different function id.
909 */
Yan, Zheng899396c2013-08-07 14:17:23 +0800910 pmu = &type->pmus[UNCORE_PCI_DEV_IDX(id->driver_data)];
Harish Chegondi77af0032015-12-07 14:32:32 -0800911 /* 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 */
Thomas Gleixner12297352016-02-22 22:19:12 +0000917 if (boot_cpu_data.x86_model == 87) {
Harish Chegondi77af0032015-12-07 14:32:32 -0800918 while (pmu->func_id >= 0)
919 pmu++;
Thomas Gleixner12297352016-02-22 22:19:12 +0000920 }
921
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000922 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
Yan, Zheng899396c2013-08-07 14:17:23 +0800929 if (pmu->func_id < 0)
930 pmu->func_id = pdev->devfn;
931 else
932 WARN_ON_ONCE(pmu->func_id != pdev->devfn);
Yan, Zheng14371cc2012-06-15 14:31:36 +0800933
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000934 atomic_inc(&box->refcnt);
935 box->pci_phys_id = phys_id;
936 box->pkgid = pkg;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800937 box->pci_dev = pdev;
938 box->pmu = pmu;
Ingo Molnar15c12472015-06-09 11:40:28 +0200939 uncore_box_init(box);
Yan, Zheng14371cc2012-06-15 14:31:36 +0800940 pci_set_drvdata(pdev, box);
941
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000942 pmu->boxes[pkg] = box;
943 if (atomic_inc_return(&pmu->activeboxes) > 1)
Thomas Gleixner4f089672016-02-22 22:19:09 +0000944 return 0;
945
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000946 /* First active box registers the pmu */
Thomas Gleixner4f089672016-02-22 22:19:09 +0000947 ret = uncore_pmu_register(pmu);
948 if (ret) {
949 pci_set_drvdata(pdev, NULL);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000950 pmu->boxes[pkg] = NULL;
Thomas Gleixnera46195f2016-02-22 22:19:11 +0000951 uncore_box_exit(box);
Thomas Gleixner4f089672016-02-22 22:19:09 +0000952 kfree(box);
953 }
954 return ret;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800955}
956
Robert Richter357398e2012-06-20 18:39:27 +0200957static void uncore_pci_remove(struct pci_dev *pdev)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800958{
959 struct intel_uncore_box *box = pci_get_drvdata(pdev);
Yan, Zheng899396c2013-08-07 14:17:23 +0800960 struct intel_uncore_pmu *pmu;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000961 int i, phys_id, pkg;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800962
Taku Izumi712df652015-09-24 21:10:21 +0900963 phys_id = uncore_pcibus_to_physid(pdev->bus);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000964 pkg = topology_phys_to_logical_pkg(phys_id);
965
Yan, Zheng899396c2013-08-07 14:17:23 +0800966 box = pci_get_drvdata(pdev);
967 if (!box) {
968 for (i = 0; i < UNCORE_EXTRA_PCI_DEV_MAX; i++) {
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000969 if (uncore_extra_pci_dev[pkg].dev[i] == pdev) {
970 uncore_extra_pci_dev[pkg].dev[i] = NULL;
Yan, Zheng899396c2013-08-07 14:17:23 +0800971 break;
972 }
973 }
974 WARN_ON_ONCE(i >= UNCORE_EXTRA_PCI_DEV_MAX);
975 return;
976 }
977
978 pmu = box->pmu;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000979 if (WARN_ON_ONCE(phys_id != box->pci_phys_id))
Yan, Zheng14371cc2012-06-15 14:31:36 +0800980 return;
981
Yan, Zhenge850f9c2013-04-16 19:51:07 +0800982 pci_set_drvdata(pdev, NULL);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000983 pmu->boxes[pkg] = NULL;
984 if (atomic_dec_return(&pmu->activeboxes) == 0)
985 uncore_pmu_unregister(pmu);
Thomas Gleixnera46195f2016-02-22 22:19:11 +0000986 uncore_box_exit(box);
Yan, Zheng14371cc2012-06-15 14:31:36 +0800987 kfree(box);
988}
989
Yan, Zheng14371cc2012-06-15 14:31:36 +0800990static int __init uncore_pci_init(void)
991{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000992 size_t size;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800993 int ret;
994
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000995 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;
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000999 goto err;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001000 }
1001
1002 ret = uncore_types_init(uncore_pci_uncores, false);
1003 if (ret)
1004 goto errtype;
Yan, Zheng14371cc2012-06-15 14:31:36 +08001005
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);
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001010 if (ret)
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001011 goto errtype;
Yan, Zheng14371cc2012-06-15 14:31:36 +08001012
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001013 pcidrv_registered = true;
1014 return 0;
1015
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001016errtype:
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001017 uncore_types_exit(uncore_pci_uncores);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001018 kfree(uncore_extra_pci_dev);
1019 uncore_extra_pci_dev = NULL;
Thomas Gleixner4f089672016-02-22 22:19:09 +00001020 uncore_free_pcibus_map();
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001021err:
1022 uncore_pci_uncores = empty_uncore;
Yan, Zheng14371cc2012-06-15 14:31:36 +08001023 return ret;
1024}
1025
Kan Liange633c652016-03-20 01:33:36 -07001026static void uncore_pci_exit(void)
Yan, Zheng14371cc2012-06-15 14:31:36 +08001027{
1028 if (pcidrv_registered) {
1029 pcidrv_registered = false;
1030 pci_unregister_driver(uncore_pci_driver);
Yan, Zheng514b2342014-07-30 15:22:12 +08001031 uncore_types_exit(uncore_pci_uncores);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001032 kfree(uncore_extra_pci_dev);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001033 uncore_free_pcibus_map();
Yan, Zheng14371cc2012-06-15 14:31:36 +08001034 }
1035}
1036
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001037static void uncore_cpu_dying(int cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001038{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001039 struct intel_uncore_type *type, **types = uncore_msr_uncores;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001040 struct intel_uncore_pmu *pmu;
1041 struct intel_uncore_box *box;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001042 int i, pkg;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001043
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001044 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)
Thomas Gleixnera46195f2016-02-22 22:19:11 +00001051 uncore_box_exit(box);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001052 }
1053 }
1054}
1055
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001056static void uncore_cpu_starting(int cpu, bool init)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001057{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001058 struct intel_uncore_type *type, **types = uncore_msr_uncores;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001059 struct intel_uncore_pmu *pmu;
1060 struct intel_uncore_box *box;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001061 int i, pkg, ncpus = 1;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001062
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001063 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 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001070
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001071 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)
1081 uncore_box_init(box);
1082 }
1083 }
1084}
1085
1086static int uncore_cpu_prepare(int cpu)
1087{
1088 struct intel_uncore_type *type, **types = uncore_msr_uncores;
1089 struct intel_uncore_pmu *pmu;
1090 struct intel_uncore_box *box;
1091 int i, pkg;
1092
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 */
Yan, Zheng73c44272013-09-17 14:48:13 +08001101 box = uncore_alloc_box(type, cpu_to_node(cpu));
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001102 if (!box)
1103 return -ENOMEM;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001104 box->pmu = pmu;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001105 box->pkgid = pkg;
1106 pmu->boxes[pkg] = box;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001107 }
1108 }
1109 return 0;
1110}
1111
Thomas Gleixner12297352016-02-22 22:19:12 +00001112static void uncore_change_type_ctx(struct intel_uncore_type *type, int old_cpu,
1113 int new_cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001114{
Thomas Gleixner12297352016-02-22 22:19:12 +00001115 struct intel_uncore_pmu *pmu = type->pmus;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001116 struct intel_uncore_box *box;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001117 int i, pkg;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001118
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001119 pkg = topology_logical_package_id(old_cpu < 0 ? new_cpu : old_cpu);
Thomas Gleixner12297352016-02-22 22:19:12 +00001120 for (i = 0; i < type->num_boxes; i++, pmu++) {
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001121 box = pmu->boxes[pkg];
Thomas Gleixner12297352016-02-22 22:19:12 +00001122 if (!box)
1123 continue;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001124
Thomas Gleixner12297352016-02-22 22:19:12 +00001125 if (old_cpu < 0) {
1126 WARN_ON_ONCE(box->cpu != -1);
1127 box->cpu = new_cpu;
1128 continue;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001129 }
Thomas Gleixner12297352016-02-22 22:19:12 +00001130
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;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001139 }
1140}
1141
Thomas Gleixner12297352016-02-22 22:19:12 +00001142static 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
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001149static void uncore_event_exit_cpu(int cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001150{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001151 int target;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001152
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001153 /* Check if exiting cpu is used for collecting uncore events */
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001154 if (!cpumask_test_and_clear_cpu(cpu, &uncore_cpu_mask))
1155 return;
1156
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001157 /* Find a new cpu to collect uncore events */
1158 target = cpumask_any_but(topology_core_cpumask(cpu), cpu);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001159
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001160 /* Migrate uncore events to the new target */
1161 if (target < nr_cpu_ids)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001162 cpumask_set_cpu(target, &uncore_cpu_mask);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001163 else
1164 target = -1;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001165
Yan, Zheng514b2342014-07-30 15:22:12 +08001166 uncore_change_context(uncore_msr_uncores, cpu, target);
1167 uncore_change_context(uncore_pci_uncores, cpu, target);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001168}
1169
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001170static void uncore_event_init_cpu(int cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001171{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001172 int target;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001173
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001174 /*
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;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001181
1182 cpumask_set_cpu(cpu, &uncore_cpu_mask);
1183
Yan, Zheng514b2342014-07-30 15:22:12 +08001184 uncore_change_context(uncore_msr_uncores, -1, cpu);
1185 uncore_change_context(uncore_pci_uncores, -1, cpu);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001186}
1187
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001188static int uncore_cpu_notifier(struct notifier_block *self,
1189 unsigned long action, void *hcpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001190{
1191 unsigned int cpu = (long)hcpu;
1192
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001193 switch (action & ~CPU_TASKS_FROZEN) {
1194 case CPU_UP_PREPARE:
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001195 return notifier_from_errno(uncore_cpu_prepare(cpu));
1196
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001197 case CPU_STARTING:
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001198 uncore_cpu_starting(cpu, false);
1199 case CPU_DOWN_FAILED:
1200 uncore_event_init_cpu(cpu);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001201 break;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001202
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001203 case CPU_UP_CANCELED:
1204 case CPU_DYING:
1205 uncore_cpu_dying(cpu);
1206 break;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001207
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001208 case CPU_DOWN_PREPARE:
1209 uncore_event_exit_cpu(cpu);
1210 break;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001211 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001212 return NOTIFY_OK;
1213}
1214
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001215static struct notifier_block uncore_cpu_nb = {
Yan, Zheng254298c2012-07-05 14:32:17 +08001216 .notifier_call = uncore_cpu_notifier,
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001217 /*
1218 * to migrate uncore events, our notifier should be executed
1219 * before perf core's notifier.
1220 */
Yan, Zheng254298c2012-07-05 14:32:17 +08001221 .priority = CPU_PRI_PERF + 1,
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001222};
1223
Thomas Gleixner4f089672016-02-22 22:19:09 +00001224static int __init type_pmu_register(struct intel_uncore_type *type)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001225{
Thomas Gleixner4f089672016-02-22 22:19:09 +00001226 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
Thomas Gleixner12297352016-02-22 22:19:12 +00001241 for (; *types; types++) {
1242 ret = type_pmu_register(*types);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001243 if (ret)
1244 return ret;
1245 }
1246 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001247}
1248
1249static int __init uncore_cpu_init(void)
1250{
Yan, Zhengc1e46582014-07-30 15:22:15 +08001251 int ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001252
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001253 ret = uncore_types_init(uncore_msr_uncores, true);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001254 if (ret)
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001255 goto err;
Thomas Gleixner4f089672016-02-22 22:19:09 +00001256
1257 ret = uncore_msr_pmus_register();
1258 if (ret)
1259 goto err;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001260 return 0;
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001261err:
1262 uncore_types_exit(uncore_msr_uncores);
1263 uncore_msr_uncores = empty_uncore;
1264 return ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001265}
1266
Thomas Gleixner4f089672016-02-22 22:19:09 +00001267static void __init uncore_cpu_setup(void *dummy)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001268{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001269 uncore_cpu_starting(smp_processor_id(), true);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001270}
1271
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001272/* Lazy to avoid allocation of a few bytes for the normal case */
1273static __initdata DECLARE_BITMAP(packages, MAX_LOCAL_APIC);
1274
Thomas Gleixner54855922016-02-22 22:19:17 +00001275static int __init uncore_cpumask_init(bool msr)
Stephane Eranian411cf182014-02-11 16:20:07 +01001276{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001277 unsigned int cpu;
Stephane Eranian411cf182014-02-11 16:20:07 +01001278
1279 for_each_online_cpu(cpu) {
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001280 unsigned int pkg = topology_logical_package_id(cpu);
1281 int ret;
Stephane Eranian411cf182014-02-11 16:20:07 +01001282
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001283 if (test_and_set_bit(pkg, packages))
Stephane Eranian411cf182014-02-11 16:20:07 +01001284 continue;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001285 /*
Thomas Gleixner54855922016-02-22 22:19:17 +00001286 * 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.
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001289 */
Thomas Gleixner54855922016-02-22 22:19:17 +00001290 if (msr) {
1291 ret = uncore_cpu_prepare(cpu);
1292 if (ret)
1293 return ret;
1294 }
Stephane Eranian411cf182014-02-11 16:20:07 +01001295 uncore_event_init_cpu(cpu);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001296 smp_call_function_single(cpu, uncore_cpu_setup, NULL, 1);
Stephane Eranian411cf182014-02-11 16:20:07 +01001297 }
Linus Torvalds467a9e12014-04-07 14:55:46 -07001298 __register_cpu_notifier(&uncore_cpu_nb);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001299 return 0;
Stephane Eranian411cf182014-02-11 16:20:07 +01001300}
1301
Kan Liange633c652016-03-20 01:33:36 -07001302#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
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001393static int __init intel_uncore_init(void)
1394{
Kan Liange633c652016-03-20 01:33:36 -07001395 const struct x86_cpu_id *id;
1396 struct intel_uncore_init_fun *uncore_init;
1397 int pret = 0, cret = 0, ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001398
Kan Liange633c652016-03-20 01:33:36 -07001399 id = x86_match_cpu(intel_uncore_match);
1400 if (!id)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001401 return -ENODEV;
1402
Borislav Petkov0c9f3532016-03-29 17:41:55 +02001403 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
Yan, Zhenga05123b2012-08-21 17:08:37 +08001404 return -ENODEV;
1405
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001406 max_packages = topology_max_packages();
1407
Kan Liange633c652016-03-20 01:33:36 -07001408 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 }
Thomas Gleixner54855922016-02-22 22:19:17 +00001419
1420 if (cret && pret)
1421 return -ENODEV;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001422
1423 cpu_notifier_register_begin();
Thomas Gleixner54855922016-02-22 22:19:17 +00001424 ret = uncore_cpumask_init(!cret);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001425 if (ret)
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001426 goto err;
1427 cpu_notifier_register_done();
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001428 return 0;
Thomas Gleixner4f089672016-02-22 22:19:09 +00001429
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001430err:
Thomas Gleixner7b672d62016-02-22 22:19:17 +00001431 /* Undo box->init_box() */
1432 on_each_cpu_mask(&uncore_cpu_mask, uncore_exit_boxes, NULL, 1);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001433 uncore_types_exit(uncore_msr_uncores);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001434 uncore_pci_exit();
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001435 cpu_notifier_register_done();
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001436 return ret;
1437}
Kan Liange633c652016-03-20 01:33:36 -07001438module_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);