blob: aec6cc925af809d3a11e749c0ba9d63f995e15d7 [file] [log] [blame]
Paul Gortmakereb008eb2016-07-13 20:19:01 -04001#include <linux/module.h>
2
Kan Liange633c652016-03-20 01:33:36 -07003#include <asm/cpu_device_id.h>
Dave Hansena07301a2016-06-02 17:19:42 -07004#include <asm/intel-family.h>
Borislav Petkov6bcb2db2016-02-10 10:55:15 +01005#include "uncore.h"
Yan, Zheng087bfbb2012-06-15 14:31:34 +08006
7static struct intel_uncore_type *empty_uncore[] = { NULL, };
Yan, Zheng514b2342014-07-30 15:22:12 +08008struct intel_uncore_type **uncore_msr_uncores = empty_uncore;
9struct intel_uncore_type **uncore_pci_uncores = empty_uncore;
Yan, Zheng14371cc2012-06-15 14:31:36 +080010
Yan, Zheng514b2342014-07-30 15:22:12 +080011static bool pcidrv_registered;
12struct pci_driver *uncore_pci_driver;
13/* pci bus to socket mapping */
Taku Izumi712df652015-09-24 21:10:21 +090014DEFINE_RAW_SPINLOCK(pci2phy_map_lock);
15struct list_head pci2phy_map_head = LIST_HEAD_INIT(pci2phy_map_head);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +000016struct pci_extra_dev *uncore_extra_pci_dev;
17static int max_packages;
Yan, Zheng899396c2013-08-07 14:17:23 +080018
Yan, Zheng087bfbb2012-06-15 14:31:34 +080019/* mask of cpus that collect uncore events */
20static cpumask_t uncore_cpu_mask;
21
22/* constraint for the fixed counter */
Yan, Zheng514b2342014-07-30 15:22:12 +080023static struct event_constraint uncore_constraint_fixed =
Yan, Zheng087bfbb2012-06-15 14:31:34 +080024 EVENT_CONSTRAINT(~0ULL, 1 << UNCORE_PMC_IDX_FIXED, ~0ULL);
Yan, Zheng514b2342014-07-30 15:22:12 +080025struct event_constraint uncore_constraint_empty =
Yan, Zheng6a679432012-07-04 14:00:15 +080026 EVENT_CONSTRAINT(0, 0, 0);
Yan, Zheng087bfbb2012-06-15 14:31:34 +080027
Kan Liange633c652016-03-20 01:33:36 -070028MODULE_LICENSE("GPL");
29
Thomas Gleixner1384c702016-02-22 22:19:13 +000030static int uncore_pcibus_to_physid(struct pci_bus *bus)
Taku Izumi712df652015-09-24 21:10:21 +090031{
32 struct pci2phy_map *map;
33 int phys_id = -1;
34
35 raw_spin_lock(&pci2phy_map_lock);
36 list_for_each_entry(map, &pci2phy_map_head, list) {
37 if (map->segment == pci_domain_nr(bus)) {
38 phys_id = map->pbus_to_physid[bus->number];
39 break;
40 }
41 }
42 raw_spin_unlock(&pci2phy_map_lock);
43
44 return phys_id;
45}
46
Thomas Gleixner4f089672016-02-22 22:19:09 +000047static void uncore_free_pcibus_map(void)
48{
49 struct pci2phy_map *map, *tmp;
50
51 list_for_each_entry_safe(map, tmp, &pci2phy_map_head, list) {
52 list_del(&map->list);
53 kfree(map);
54 }
55}
56
Taku Izumi712df652015-09-24 21:10:21 +090057struct pci2phy_map *__find_pci2phy_map(int segment)
58{
59 struct pci2phy_map *map, *alloc = NULL;
60 int i;
61
62 lockdep_assert_held(&pci2phy_map_lock);
63
64lookup:
65 list_for_each_entry(map, &pci2phy_map_head, list) {
66 if (map->segment == segment)
67 goto end;
68 }
69
70 if (!alloc) {
71 raw_spin_unlock(&pci2phy_map_lock);
72 alloc = kmalloc(sizeof(struct pci2phy_map), GFP_KERNEL);
73 raw_spin_lock(&pci2phy_map_lock);
74
75 if (!alloc)
76 return NULL;
77
78 goto lookup;
79 }
80
81 map = alloc;
82 alloc = NULL;
83 map->segment = segment;
84 for (i = 0; i < 256; i++)
85 map->pbus_to_physid[i] = -1;
86 list_add_tail(&map->list, &pci2phy_map_head);
87
88end:
89 kfree(alloc);
90 return map;
91}
92
Yan, Zheng514b2342014-07-30 15:22:12 +080093ssize_t uncore_event_show(struct kobject *kobj,
94 struct kobj_attribute *attr, char *buf)
95{
96 struct uncore_event_desc *event =
97 container_of(attr, struct uncore_event_desc, attr);
98 return sprintf(buf, "%s", event->config);
99}
100
Yan, Zheng514b2342014-07-30 15:22:12 +0800101struct intel_uncore_box *uncore_pmu_to_box(struct intel_uncore_pmu *pmu, int cpu)
Stephane Eranian001e4132014-02-11 16:20:11 +0100102{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000103 return pmu->boxes[topology_logical_package_id(cpu)];
Stephane Eranian001e4132014-02-11 16:20:11 +0100104}
105
Yan, Zheng514b2342014-07-30 15:22:12 +0800106u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng254298c2012-07-05 14:32:17 +0800107{
108 u64 count;
109
110 rdmsrl(event->hw.event_base, count);
111
112 return count;
113}
114
115/*
116 * generic get constraint function for shared match/mask registers.
117 */
Yan, Zheng514b2342014-07-30 15:22:12 +0800118struct event_constraint *
Yan, Zheng254298c2012-07-05 14:32:17 +0800119uncore_get_constraint(struct intel_uncore_box *box, struct perf_event *event)
120{
121 struct intel_uncore_extra_reg *er;
122 struct hw_perf_event_extra *reg1 = &event->hw.extra_reg;
123 struct hw_perf_event_extra *reg2 = &event->hw.branch_reg;
124 unsigned long flags;
125 bool ok = false;
126
127 /*
128 * reg->alloc can be set due to existing state, so for fake box we
129 * need to ignore this, otherwise we might fail to allocate proper
130 * fake state for this extra reg constraint.
131 */
132 if (reg1->idx == EXTRA_REG_NONE ||
133 (!uncore_box_is_fake(box) && reg1->alloc))
134 return NULL;
135
136 er = &box->shared_regs[reg1->idx];
137 raw_spin_lock_irqsave(&er->lock, flags);
138 if (!atomic_read(&er->ref) ||
139 (er->config1 == reg1->config && er->config2 == reg2->config)) {
140 atomic_inc(&er->ref);
141 er->config1 = reg1->config;
142 er->config2 = reg2->config;
143 ok = true;
144 }
145 raw_spin_unlock_irqrestore(&er->lock, flags);
146
147 if (ok) {
148 if (!uncore_box_is_fake(box))
149 reg1->alloc = 1;
150 return NULL;
151 }
152
Yan, Zheng514b2342014-07-30 15:22:12 +0800153 return &uncore_constraint_empty;
Yan, Zheng254298c2012-07-05 14:32:17 +0800154}
155
Yan, Zheng514b2342014-07-30 15:22:12 +0800156void uncore_put_constraint(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng254298c2012-07-05 14:32:17 +0800157{
158 struct intel_uncore_extra_reg *er;
159 struct hw_perf_event_extra *reg1 = &event->hw.extra_reg;
160
161 /*
162 * Only put constraint if extra reg was actually allocated. Also
163 * takes care of event which do not use an extra shared reg.
164 *
165 * Also, if this is a fake box we shouldn't touch any event state
166 * (reg->alloc) and we don't care about leaving inconsistent box
167 * state either since it will be thrown out.
168 */
169 if (uncore_box_is_fake(box) || !reg1->alloc)
170 return;
171
172 er = &box->shared_regs[reg1->idx];
173 atomic_dec(&er->ref);
174 reg1->alloc = 0;
175}
176
Yan, Zheng514b2342014-07-30 15:22:12 +0800177u64 uncore_shared_reg_config(struct intel_uncore_box *box, int idx)
Yan, Zheng46bdd902013-04-16 19:51:06 +0800178{
179 struct intel_uncore_extra_reg *er;
180 unsigned long flags;
181 u64 config;
182
183 er = &box->shared_regs[idx];
184
185 raw_spin_lock_irqsave(&er->lock, flags);
186 config = er->config;
187 raw_spin_unlock_irqrestore(&er->lock, flags);
188
189 return config;
190}
191
Thomas Gleixner12297352016-02-22 22:19:12 +0000192static void uncore_assign_hw_event(struct intel_uncore_box *box,
193 struct perf_event *event, int idx)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800194{
195 struct hw_perf_event *hwc = &event->hw;
196
197 hwc->idx = idx;
198 hwc->last_tag = ++box->tags[idx];
199
200 if (hwc->idx == UNCORE_PMC_IDX_FIXED) {
Yan, Zheng14371cc2012-06-15 14:31:36 +0800201 hwc->event_base = uncore_fixed_ctr(box);
202 hwc->config_base = uncore_fixed_ctl(box);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800203 return;
204 }
205
Yan, Zheng14371cc2012-06-15 14:31:36 +0800206 hwc->config_base = uncore_event_ctl(box, hwc->idx);
207 hwc->event_base = uncore_perf_ctr(box, hwc->idx);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800208}
209
Yan, Zheng514b2342014-07-30 15:22:12 +0800210void uncore_perf_event_update(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800211{
212 u64 prev_count, new_count, delta;
213 int shift;
214
215 if (event->hw.idx >= UNCORE_PMC_IDX_FIXED)
216 shift = 64 - uncore_fixed_ctr_bits(box);
217 else
218 shift = 64 - uncore_perf_ctr_bits(box);
219
220 /* the hrtimer might modify the previous event value */
221again:
222 prev_count = local64_read(&event->hw.prev_count);
223 new_count = uncore_read_counter(box, event);
224 if (local64_xchg(&event->hw.prev_count, new_count) != prev_count)
225 goto again;
226
227 delta = (new_count << shift) - (prev_count << shift);
228 delta >>= shift;
229
230 local64_add(delta, &event->count);
231}
232
233/*
234 * The overflow interrupt is unavailable for SandyBridge-EP, is broken
235 * for SandyBridge. So we use hrtimer to periodically poll the counter
236 * to avoid overflow.
237 */
238static enum hrtimer_restart uncore_pmu_hrtimer(struct hrtimer *hrtimer)
239{
240 struct intel_uncore_box *box;
Stephane Eranianced2efb2014-02-11 16:20:13 +0100241 struct perf_event *event;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800242 unsigned long flags;
243 int bit;
244
245 box = container_of(hrtimer, struct intel_uncore_box, hrtimer);
246 if (!box->n_active || box->cpu != smp_processor_id())
247 return HRTIMER_NORESTART;
248 /*
249 * disable local interrupt to prevent uncore_pmu_event_start/stop
250 * to interrupt the update process
251 */
252 local_irq_save(flags);
253
Stephane Eranianced2efb2014-02-11 16:20:13 +0100254 /*
255 * handle boxes with an active event list as opposed to active
256 * counters
257 */
258 list_for_each_entry(event, &box->active_list, active_entry) {
259 uncore_perf_event_update(box, event);
260 }
261
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800262 for_each_set_bit(bit, box->active_mask, UNCORE_PMC_IDX_MAX)
263 uncore_perf_event_update(box, box->events[bit]);
264
265 local_irq_restore(flags);
266
Stephane Eranian79859cc2014-02-11 16:20:10 +0100267 hrtimer_forward_now(hrtimer, ns_to_ktime(box->hrtimer_duration));
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800268 return HRTIMER_RESTART;
269}
270
Yan, Zheng514b2342014-07-30 15:22:12 +0800271void uncore_pmu_start_hrtimer(struct intel_uncore_box *box)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800272{
Thomas Gleixner576b0702015-04-14 21:09:01 +0000273 hrtimer_start(&box->hrtimer, ns_to_ktime(box->hrtimer_duration),
274 HRTIMER_MODE_REL_PINNED);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800275}
276
Yan, Zheng514b2342014-07-30 15:22:12 +0800277void uncore_pmu_cancel_hrtimer(struct intel_uncore_box *box)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800278{
279 hrtimer_cancel(&box->hrtimer);
280}
281
282static void uncore_pmu_init_hrtimer(struct intel_uncore_box *box)
283{
284 hrtimer_init(&box->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
285 box->hrtimer.function = uncore_pmu_hrtimer;
286}
287
Thomas Gleixner12297352016-02-22 22:19:12 +0000288static struct intel_uncore_box *uncore_alloc_box(struct intel_uncore_type *type,
289 int node)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800290{
Thomas Gleixner12297352016-02-22 22:19:12 +0000291 int i, size, numshared = type->num_shared_regs ;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800292 struct intel_uncore_box *box;
293
Thomas Gleixner12297352016-02-22 22:19:12 +0000294 size = sizeof(*box) + numshared * sizeof(struct intel_uncore_extra_reg);
Yan, Zheng6a679432012-07-04 14:00:15 +0800295
Yan, Zheng73c44272013-09-17 14:48:13 +0800296 box = kzalloc_node(size, GFP_KERNEL, node);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800297 if (!box)
298 return NULL;
299
Thomas Gleixner12297352016-02-22 22:19:12 +0000300 for (i = 0; i < numshared; i++)
Yan, Zheng6a679432012-07-04 14:00:15 +0800301 raw_spin_lock_init(&box->shared_regs[i].lock);
302
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800303 uncore_pmu_init_hrtimer(box);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800304 box->cpu = -1;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000305 box->pci_phys_id = -1;
306 box->pkgid = -1;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800307
Stephane Eranian79859cc2014-02-11 16:20:10 +0100308 /* set default hrtimer timeout */
309 box->hrtimer_duration = UNCORE_PMU_HRTIMER_INTERVAL;
310
Stephane Eranianced2efb2014-02-11 16:20:13 +0100311 INIT_LIST_HEAD(&box->active_list);
312
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800313 return box;
314}
315
Jiri Olsaaf915682014-12-10 21:23:50 +0100316/*
317 * Using uncore_pmu_event_init pmu event_init callback
318 * as a detection point for uncore events.
319 */
320static int uncore_pmu_event_init(struct perf_event *event);
321
Peter Zijlstra033ac602016-11-18 13:53:54 +0100322static bool is_box_event(struct intel_uncore_box *box, struct perf_event *event)
Jiri Olsaaf915682014-12-10 21:23:50 +0100323{
Peter Zijlstra033ac602016-11-18 13:53:54 +0100324 return &box->pmu->pmu == event->pmu;
Jiri Olsaaf915682014-12-10 21:23:50 +0100325}
326
Yan, Zheng254298c2012-07-05 14:32:17 +0800327static int
Thomas Gleixner12297352016-02-22 22:19:12 +0000328uncore_collect_events(struct intel_uncore_box *box, struct perf_event *leader,
329 bool dogrp)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800330{
331 struct perf_event *event;
332 int n, max_count;
333
334 max_count = box->pmu->type->num_counters;
335 if (box->pmu->type->fixed_ctl)
336 max_count++;
337
338 if (box->n_events >= max_count)
339 return -EINVAL;
340
341 n = box->n_events;
Jiri Olsaaf915682014-12-10 21:23:50 +0100342
Peter Zijlstra033ac602016-11-18 13:53:54 +0100343 if (is_box_event(box, leader)) {
Jiri Olsaaf915682014-12-10 21:23:50 +0100344 box->event_list[n] = leader;
345 n++;
346 }
347
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800348 if (!dogrp)
349 return n;
350
351 list_for_each_entry(event, &leader->sibling_list, group_entry) {
Peter Zijlstra033ac602016-11-18 13:53:54 +0100352 if (!is_box_event(box, event) ||
Jiri Olsaaf915682014-12-10 21:23:50 +0100353 event->state <= PERF_EVENT_STATE_OFF)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800354 continue;
355
356 if (n >= max_count)
357 return -EINVAL;
358
359 box->event_list[n] = event;
360 n++;
361 }
362 return n;
363}
364
365static struct event_constraint *
Yan, Zheng254298c2012-07-05 14:32:17 +0800366uncore_get_event_constraint(struct intel_uncore_box *box, struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800367{
Yan, Zheng6a679432012-07-04 14:00:15 +0800368 struct intel_uncore_type *type = box->pmu->type;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800369 struct event_constraint *c;
370
Yan, Zheng6a679432012-07-04 14:00:15 +0800371 if (type->ops->get_constraint) {
372 c = type->ops->get_constraint(box, event);
373 if (c)
374 return c;
375 }
376
Stephane Eraniandbc33f72013-09-09 12:53:50 -0700377 if (event->attr.config == UNCORE_FIXED_EVENT)
Yan, Zheng514b2342014-07-30 15:22:12 +0800378 return &uncore_constraint_fixed;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800379
380 if (type->constraints) {
381 for_each_event_constraint(c, type->constraints) {
382 if ((event->hw.config & c->cmask) == c->code)
383 return c;
384 }
385 }
386
387 return &type->unconstrainted;
388}
389
Thomas Gleixner12297352016-02-22 22:19:12 +0000390static void uncore_put_event_constraint(struct intel_uncore_box *box,
391 struct perf_event *event)
Yan, Zheng6a679432012-07-04 14:00:15 +0800392{
393 if (box->pmu->type->ops->put_constraint)
394 box->pmu->type->ops->put_constraint(box, event);
395}
396
Yan, Zheng254298c2012-07-05 14:32:17 +0800397static int uncore_assign_events(struct intel_uncore_box *box, int assign[], int n)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800398{
399 unsigned long used_mask[BITS_TO_LONGS(UNCORE_PMC_IDX_MAX)];
Andrew Hunter43b457802013-05-23 11:07:03 -0700400 struct event_constraint *c;
Yan, Zheng6a679432012-07-04 14:00:15 +0800401 int i, wmin, wmax, ret = 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800402 struct hw_perf_event *hwc;
403
404 bitmap_zero(used_mask, UNCORE_PMC_IDX_MAX);
405
406 for (i = 0, wmin = UNCORE_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Yan, Zheng6a679432012-07-04 14:00:15 +0800407 c = uncore_get_event_constraint(box, box->event_list[i]);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200408 box->event_constraint[i] = c;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800409 wmin = min(wmin, c->weight);
410 wmax = max(wmax, c->weight);
411 }
412
413 /* fastpath, try to reuse previous register */
414 for (i = 0; i < n; i++) {
415 hwc = &box->event_list[i]->hw;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200416 c = box->event_constraint[i];
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800417
418 /* never assigned */
419 if (hwc->idx == -1)
420 break;
421
422 /* constraint still honored */
423 if (!test_bit(hwc->idx, c->idxmsk))
424 break;
425
426 /* not already used */
427 if (test_bit(hwc->idx, used_mask))
428 break;
429
430 __set_bit(hwc->idx, used_mask);
Yan, Zheng6a679432012-07-04 14:00:15 +0800431 if (assign)
432 assign[i] = hwc->idx;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800433 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800434 /* slow path */
Yan, Zheng6a679432012-07-04 14:00:15 +0800435 if (i != n)
Peter Zijlstrab371b592015-05-21 10:57:13 +0200436 ret = perf_assign_events(box->event_constraint, n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200437 wmin, wmax, n, assign);
Yan, Zheng6a679432012-07-04 14:00:15 +0800438
439 if (!assign || ret) {
440 for (i = 0; i < n; i++)
441 uncore_put_event_constraint(box, box->event_list[i]);
442 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800443 return ret ? -EINVAL : 0;
444}
445
446static void uncore_pmu_event_start(struct perf_event *event, int flags)
447{
448 struct intel_uncore_box *box = uncore_event_to_box(event);
449 int idx = event->hw.idx;
450
451 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
452 return;
453
454 if (WARN_ON_ONCE(idx == -1 || idx >= UNCORE_PMC_IDX_MAX))
455 return;
456
457 event->hw.state = 0;
458 box->events[idx] = event;
459 box->n_active++;
460 __set_bit(idx, box->active_mask);
461
462 local64_set(&event->hw.prev_count, uncore_read_counter(box, event));
463 uncore_enable_event(box, event);
464
465 if (box->n_active == 1) {
466 uncore_enable_box(box);
467 uncore_pmu_start_hrtimer(box);
468 }
469}
470
471static void uncore_pmu_event_stop(struct perf_event *event, int flags)
472{
473 struct intel_uncore_box *box = uncore_event_to_box(event);
474 struct hw_perf_event *hwc = &event->hw;
475
476 if (__test_and_clear_bit(hwc->idx, box->active_mask)) {
477 uncore_disable_event(box, event);
478 box->n_active--;
479 box->events[hwc->idx] = NULL;
480 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
481 hwc->state |= PERF_HES_STOPPED;
482
483 if (box->n_active == 0) {
484 uncore_disable_box(box);
485 uncore_pmu_cancel_hrtimer(box);
486 }
487 }
488
489 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
490 /*
491 * Drain the remaining delta count out of a event
492 * that we are disabling:
493 */
494 uncore_perf_event_update(box, event);
495 hwc->state |= PERF_HES_UPTODATE;
496 }
497}
498
499static int uncore_pmu_event_add(struct perf_event *event, int flags)
500{
501 struct intel_uncore_box *box = uncore_event_to_box(event);
502 struct hw_perf_event *hwc = &event->hw;
503 int assign[UNCORE_PMC_IDX_MAX];
504 int i, n, ret;
505
506 if (!box)
507 return -ENODEV;
508
509 ret = n = uncore_collect_events(box, event, false);
510 if (ret < 0)
511 return ret;
512
513 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
514 if (!(flags & PERF_EF_START))
515 hwc->state |= PERF_HES_ARCH;
516
517 ret = uncore_assign_events(box, assign, n);
518 if (ret)
519 return ret;
520
521 /* save events moving to new counters */
522 for (i = 0; i < box->n_events; i++) {
523 event = box->event_list[i];
524 hwc = &event->hw;
525
526 if (hwc->idx == assign[i] &&
527 hwc->last_tag == box->tags[assign[i]])
528 continue;
529 /*
530 * Ensure we don't accidentally enable a stopped
531 * counter simply because we rescheduled.
532 */
533 if (hwc->state & PERF_HES_STOPPED)
534 hwc->state |= PERF_HES_ARCH;
535
536 uncore_pmu_event_stop(event, PERF_EF_UPDATE);
537 }
538
539 /* reprogram moved events into new counters */
540 for (i = 0; i < n; i++) {
541 event = box->event_list[i];
542 hwc = &event->hw;
543
544 if (hwc->idx != assign[i] ||
545 hwc->last_tag != box->tags[assign[i]])
546 uncore_assign_hw_event(box, event, assign[i]);
547 else if (i < box->n_events)
548 continue;
549
550 if (hwc->state & PERF_HES_ARCH)
551 continue;
552
553 uncore_pmu_event_start(event, 0);
554 }
555 box->n_events = n;
556
557 return 0;
558}
559
560static void uncore_pmu_event_del(struct perf_event *event, int flags)
561{
562 struct intel_uncore_box *box = uncore_event_to_box(event);
563 int i;
564
565 uncore_pmu_event_stop(event, PERF_EF_UPDATE);
566
567 for (i = 0; i < box->n_events; i++) {
568 if (event == box->event_list[i]) {
Yan, Zheng6a679432012-07-04 14:00:15 +0800569 uncore_put_event_constraint(box, event);
570
Thomas Gleixner12297352016-02-22 22:19:12 +0000571 for (++i; i < box->n_events; i++)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800572 box->event_list[i - 1] = box->event_list[i];
573
574 --box->n_events;
575 break;
576 }
577 }
578
579 event->hw.idx = -1;
580 event->hw.last_tag = ~0ULL;
581}
582
Yan, Zheng514b2342014-07-30 15:22:12 +0800583void uncore_pmu_event_read(struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800584{
585 struct intel_uncore_box *box = uncore_event_to_box(event);
586 uncore_perf_event_update(box, event);
587}
588
589/*
590 * validation ensures the group can be loaded onto the
591 * PMU if it was the only group available.
592 */
593static int uncore_validate_group(struct intel_uncore_pmu *pmu,
594 struct perf_event *event)
595{
596 struct perf_event *leader = event->group_leader;
597 struct intel_uncore_box *fake_box;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800598 int ret = -EINVAL, n;
599
Yan, Zheng73c44272013-09-17 14:48:13 +0800600 fake_box = uncore_alloc_box(pmu->type, NUMA_NO_NODE);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800601 if (!fake_box)
602 return -ENOMEM;
603
604 fake_box->pmu = pmu;
605 /*
606 * the event is not yet connected with its
607 * siblings therefore we must first collect
608 * existing siblings, then add the new event
609 * before we can simulate the scheduling
610 */
611 n = uncore_collect_events(fake_box, leader, true);
612 if (n < 0)
613 goto out;
614
615 fake_box->n_events = n;
616 n = uncore_collect_events(fake_box, event, false);
617 if (n < 0)
618 goto out;
619
620 fake_box->n_events = n;
621
Yan, Zheng6a679432012-07-04 14:00:15 +0800622 ret = uncore_assign_events(fake_box, NULL, n);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800623out:
624 kfree(fake_box);
625 return ret;
626}
627
Yan, Zheng46bdd902013-04-16 19:51:06 +0800628static int uncore_pmu_event_init(struct perf_event *event)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800629{
630 struct intel_uncore_pmu *pmu;
631 struct intel_uncore_box *box;
632 struct hw_perf_event *hwc = &event->hw;
633 int ret;
634
635 if (event->attr.type != event->pmu->type)
636 return -ENOENT;
637
638 pmu = uncore_event_to_pmu(event);
639 /* no device found for this pmu */
640 if (pmu->func_id < 0)
641 return -ENOENT;
642
643 /*
644 * Uncore PMU does measure at all privilege level all the time.
645 * So it doesn't make sense to specify any exclude bits.
646 */
647 if (event->attr.exclude_user || event->attr.exclude_kernel ||
648 event->attr.exclude_hv || event->attr.exclude_idle)
649 return -EINVAL;
650
651 /* Sampling not supported yet */
652 if (hwc->sample_period)
653 return -EINVAL;
654
655 /*
656 * Place all uncore events for a particular physical package
657 * onto a single cpu
658 */
659 if (event->cpu < 0)
660 return -EINVAL;
661 box = uncore_pmu_to_box(pmu, event->cpu);
662 if (!box || box->cpu < 0)
663 return -EINVAL;
664 event->cpu = box->cpu;
Thomas Gleixner1f2569f2016-02-22 22:19:14 +0000665 event->pmu_private = box;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800666
David Carrillo-Cisnerose64cd6f2016-08-17 13:55:07 -0700667 event->event_caps |= PERF_EV_CAP_READ_ACTIVE_PKG;
668
Yan, Zheng6a679432012-07-04 14:00:15 +0800669 event->hw.idx = -1;
670 event->hw.last_tag = ~0ULL;
671 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Yan, Zhengebb6cc02012-08-06 13:11:21 +0800672 event->hw.branch_reg.idx = EXTRA_REG_NONE;
Yan, Zheng6a679432012-07-04 14:00:15 +0800673
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800674 if (event->attr.config == UNCORE_FIXED_EVENT) {
675 /* no fixed counter */
676 if (!pmu->type->fixed_ctl)
677 return -EINVAL;
678 /*
679 * if there is only one fixed counter, only the first pmu
680 * can access the fixed counter
681 */
682 if (pmu->type->single_fixed && pmu->pmu_idx > 0)
683 return -EINVAL;
Stephane Eraniandbc33f72013-09-09 12:53:50 -0700684
685 /* fixed counters have event field hardcoded to zero */
686 hwc->config = 0ULL;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800687 } else {
Kan Liangcd34cd92016-08-16 16:09:50 -0400688 hwc->config = event->attr.config &
689 (pmu->type->event_mask | ((u64)pmu->type->event_mask_ext << 32));
Yan, Zheng6a679432012-07-04 14:00:15 +0800690 if (pmu->type->ops->hw_config) {
691 ret = pmu->type->ops->hw_config(box, event);
692 if (ret)
693 return ret;
694 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800695 }
696
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800697 if (event->group_leader != event)
698 ret = uncore_validate_group(pmu, event);
699 else
700 ret = 0;
701
702 return ret;
703}
704
Yan, Zheng314d9f62012-09-10 15:53:49 +0800705static ssize_t uncore_get_attr_cpumask(struct device *dev,
706 struct device_attribute *attr, char *buf)
707{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100708 return cpumap_print_to_pagebuf(true, buf, &uncore_cpu_mask);
Yan, Zheng314d9f62012-09-10 15:53:49 +0800709}
710
711static DEVICE_ATTR(cpumask, S_IRUGO, uncore_get_attr_cpumask, NULL);
712
713static struct attribute *uncore_pmu_attrs[] = {
714 &dev_attr_cpumask.attr,
715 NULL,
716};
717
718static struct attribute_group uncore_pmu_attr_group = {
719 .attrs = uncore_pmu_attrs,
720};
721
Andi Kleena08b6762014-08-29 10:20:58 -0700722static int uncore_pmu_register(struct intel_uncore_pmu *pmu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800723{
724 int ret;
725
Stephane Eraniand64b25b2014-02-11 16:20:08 +0100726 if (!pmu->type->pmu) {
727 pmu->pmu = (struct pmu) {
728 .attr_groups = pmu->type->attr_groups,
729 .task_ctx_nr = perf_invalid_context,
730 .event_init = uncore_pmu_event_init,
731 .add = uncore_pmu_event_add,
732 .del = uncore_pmu_event_del,
733 .start = uncore_pmu_event_start,
734 .stop = uncore_pmu_event_stop,
735 .read = uncore_pmu_event_read,
David Carrillo-Cisnerosb8991422016-12-22 17:17:40 -0800736 .module = THIS_MODULE,
Stephane Eraniand64b25b2014-02-11 16:20:08 +0100737 };
738 } else {
739 pmu->pmu = *pmu->type->pmu;
740 pmu->pmu.attr_groups = pmu->type->attr_groups;
741 }
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800742
743 if (pmu->type->num_boxes == 1) {
744 if (strlen(pmu->type->name) > 0)
745 sprintf(pmu->name, "uncore_%s", pmu->type->name);
746 else
747 sprintf(pmu->name, "uncore");
748 } else {
749 sprintf(pmu->name, "uncore_%s_%d", pmu->type->name,
750 pmu->pmu_idx);
751 }
752
753 ret = perf_pmu_register(&pmu->pmu, pmu->name, -1);
Thomas Gleixner4f089672016-02-22 22:19:09 +0000754 if (!ret)
755 pmu->registered = true;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800756 return ret;
757}
758
Thomas Gleixner4f089672016-02-22 22:19:09 +0000759static void uncore_pmu_unregister(struct intel_uncore_pmu *pmu)
760{
761 if (!pmu->registered)
762 return;
763 perf_pmu_unregister(&pmu->pmu);
764 pmu->registered = false;
765}
766
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000767static void uncore_free_boxes(struct intel_uncore_pmu *pmu)
768{
769 int pkg;
770
771 for (pkg = 0; pkg < max_packages; pkg++)
772 kfree(pmu->boxes[pkg]);
773 kfree(pmu->boxes);
774}
775
Kan Liange633c652016-03-20 01:33:36 -0700776static void uncore_type_exit(struct intel_uncore_type *type)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800777{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000778 struct intel_uncore_pmu *pmu = type->pmus;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800779 int i;
780
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000781 if (pmu) {
782 for (i = 0; i < type->num_boxes; i++, pmu++) {
783 uncore_pmu_unregister(pmu);
784 uncore_free_boxes(pmu);
Thomas Gleixner4f089672016-02-22 22:19:09 +0000785 }
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000786 kfree(type->pmus);
787 type->pmus = NULL;
788 }
Yan, Zheng314d9f62012-09-10 15:53:49 +0800789 kfree(type->events_group);
790 type->events_group = NULL;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800791}
792
Kan Liange633c652016-03-20 01:33:36 -0700793static void uncore_types_exit(struct intel_uncore_type **types)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800794{
Thomas Gleixner12297352016-02-22 22:19:12 +0000795 for (; *types; types++)
796 uncore_type_exit(*types);
Yan, Zheng14371cc2012-06-15 14:31:36 +0800797}
798
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000799static int __init uncore_type_init(struct intel_uncore_type *type, bool setid)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800800{
801 struct intel_uncore_pmu *pmus;
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200802 struct attribute_group *attr_group;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800803 struct attribute **attrs;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000804 size_t size;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800805 int i, j;
806
807 pmus = kzalloc(sizeof(*pmus) * type->num_boxes, GFP_KERNEL);
808 if (!pmus)
809 return -ENOMEM;
810
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000811 size = max_packages * sizeof(struct intel_uncore_box *);
Dave Jonesb7b48392014-03-06 12:20:28 -0500812
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000813 for (i = 0; i < type->num_boxes; i++) {
814 pmus[i].func_id = setid ? i : -1;
815 pmus[i].pmu_idx = i;
816 pmus[i].type = type;
817 pmus[i].boxes = kzalloc(size, GFP_KERNEL);
818 if (!pmus[i].boxes)
819 return -ENOMEM;
820 }
821
822 type->pmus = pmus;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800823 type->unconstrainted = (struct event_constraint)
824 __EVENT_CONSTRAINT(0, (1ULL << type->num_counters) - 1,
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100825 0, type->num_counters, 0, 0);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800826
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800827 if (type->event_descs) {
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000828 for (i = 0; type->event_descs[i].attr.attr.name; i++);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800829
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200830 attr_group = kzalloc(sizeof(struct attribute *) * (i + 1) +
831 sizeof(*attr_group), GFP_KERNEL);
832 if (!attr_group)
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000833 return -ENOMEM;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800834
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200835 attrs = (struct attribute **)(attr_group + 1);
836 attr_group->name = "events";
837 attr_group->attrs = attrs;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800838
839 for (j = 0; j < i; j++)
840 attrs[j] = &type->event_descs[j].attr.attr;
841
Jan-Simon Möller1b0dac22013-04-30 12:02:33 +0200842 type->events_group = attr_group;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800843 }
844
Yan, Zheng314d9f62012-09-10 15:53:49 +0800845 type->pmu_group = &uncore_pmu_attr_group;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800846 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800847}
848
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000849static int __init
850uncore_types_init(struct intel_uncore_type **types, bool setid)
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800851{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000852 int ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800853
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000854 for (; *types; types++) {
855 ret = uncore_type_init(*types, setid);
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800856 if (ret)
Thomas Gleixnerffeda002016-02-22 22:19:09 +0000857 return ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800858 }
859 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +0800860}
861
Yan, Zheng14371cc2012-06-15 14:31:36 +0800862/*
863 * add a pci uncore device
864 */
Yan, Zheng899396c2013-08-07 14:17:23 +0800865static int uncore_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800866{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000867 struct intel_uncore_type *type;
Kan Lianga54fa072016-05-15 23:18:24 -0700868 struct intel_uncore_pmu *pmu = NULL;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800869 struct intel_uncore_box *box;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000870 int phys_id, pkg, ret;
Yan, Zheng14371cc2012-06-15 14:31:36 +0800871
Taku Izumi712df652015-09-24 21:10:21 +0900872 phys_id = uncore_pcibus_to_physid(pdev->bus);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000873 if (phys_id < 0)
Yan, Zheng14371cc2012-06-15 14:31:36 +0800874 return -ENODEV;
875
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000876 pkg = topology_phys_to_logical_pkg(phys_id);
Jiri Olsaef3f00a2016-05-18 08:16:10 +0200877 if (pkg < 0)
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000878 return -EINVAL;
879
Yan, Zheng899396c2013-08-07 14:17:23 +0800880 if (UNCORE_PCI_DEV_TYPE(id->driver_data) == UNCORE_EXTRA_PCI_DEV) {
Yan, Zheng514b2342014-07-30 15:22:12 +0800881 int idx = UNCORE_PCI_DEV_IDX(id->driver_data);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +0000882
883 uncore_extra_pci_dev[pkg].dev[idx] = pdev;
Yan, Zheng899396c2013-08-07 14:17:23 +0800884 pci_set_drvdata(pdev, NULL);
885 return 0;
886 }
887
Yan, Zheng514b2342014-07-30 15:22:12 +0800888 type = uncore_pci_uncores[UNCORE_PCI_DEV_TYPE(id->driver_data)];
Kan Lianga54fa072016-05-15 23:18:24 -0700889
Yan, Zheng14371cc2012-06-15 14:31:36 +0800890 /*
Kan Lianga54fa072016-05-15 23:18:24 -0700891 * Some platforms, e.g. Knights Landing, use a common PCI device ID
892 * for multiple instances of an uncore PMU device type. We should check
893 * PCI slot and func to indicate the uncore box.
Yan, Zheng14371cc2012-06-15 14:31:36 +0800894 */
Kan Lianga54fa072016-05-15 23:18:24 -0700895 if (id->driver_data & ~0xffff) {
896 struct pci_driver *pci_drv = pdev->driver;
897 const struct pci_device_id *ids = pci_drv->id_table;
898 unsigned int devfn;
899
900 while (ids && ids->vendor) {
901 if ((ids->vendor == pdev->vendor) &&
902 (ids->device == pdev->device)) {
903 devfn = PCI_DEVFN(UNCORE_PCI_DEV_DEV(ids->driver_data),
904 UNCORE_PCI_DEV_FUNC(ids->driver_data));
905 if (devfn == pdev->devfn) {
906 pmu = &type->pmus[UNCORE_PCI_DEV_IDX(ids->driver_data)];
907 break;
908 }
909 }
910 ids++;
911 }
912 if (pmu == NULL)
913 return -ENODEV;
914 } else {
915 /*
916 * for performance monitoring unit with multiple boxes,
917 * each box has a different function id.
918 */
919 pmu = &type->pmus[UNCORE_PCI_DEV_IDX(id->driver_data)];
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{
Bjorn Helgaas281ee052016-05-31 16:25:27 -0500959 struct intel_uncore_box *box;
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
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001037static int uncore_cpu_dying(unsigned 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 }
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001054 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001055}
1056
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001057static int uncore_cpu_starting(unsigned int cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001058{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001059 struct intel_uncore_type *type, **types = uncore_msr_uncores;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001060 struct intel_uncore_pmu *pmu;
1061 struct intel_uncore_box *box;
Thomas Gleixnerbebb9d72017-01-31 23:58:39 +01001062 int i, pkg;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001063
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001064 pkg = topology_logical_package_id(cpu);
1065 for (; *types; types++) {
1066 type = *types;
1067 pmu = type->pmus;
1068 for (i = 0; i < type->num_boxes; i++, pmu++) {
1069 box = pmu->boxes[pkg];
1070 if (!box)
1071 continue;
1072 /* The first cpu on a package activates the box */
Thomas Gleixnerbebb9d72017-01-31 23:58:39 +01001073 if (atomic_inc_return(&box->refcnt) == 1)
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001074 uncore_box_init(box);
1075 }
1076 }
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001077
1078 return 0;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001079}
1080
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001081static int uncore_cpu_prepare(unsigned int cpu)
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001082{
1083 struct intel_uncore_type *type, **types = uncore_msr_uncores;
1084 struct intel_uncore_pmu *pmu;
1085 struct intel_uncore_box *box;
1086 int i, pkg;
1087
1088 pkg = topology_logical_package_id(cpu);
1089 for (; *types; types++) {
1090 type = *types;
1091 pmu = type->pmus;
1092 for (i = 0; i < type->num_boxes; i++, pmu++) {
1093 if (pmu->boxes[pkg])
1094 continue;
1095 /* First cpu of a package allocates the box */
Yan, Zheng73c44272013-09-17 14:48:13 +08001096 box = uncore_alloc_box(type, cpu_to_node(cpu));
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001097 if (!box)
1098 return -ENOMEM;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001099 box->pmu = pmu;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001100 box->pkgid = pkg;
1101 pmu->boxes[pkg] = box;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001102 }
1103 }
1104 return 0;
1105}
1106
Thomas Gleixner12297352016-02-22 22:19:12 +00001107static void uncore_change_type_ctx(struct intel_uncore_type *type, int old_cpu,
1108 int new_cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001109{
Thomas Gleixner12297352016-02-22 22:19:12 +00001110 struct intel_uncore_pmu *pmu = type->pmus;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001111 struct intel_uncore_box *box;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001112 int i, pkg;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001113
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001114 pkg = topology_logical_package_id(old_cpu < 0 ? new_cpu : old_cpu);
Thomas Gleixner12297352016-02-22 22:19:12 +00001115 for (i = 0; i < type->num_boxes; i++, pmu++) {
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001116 box = pmu->boxes[pkg];
Thomas Gleixner12297352016-02-22 22:19:12 +00001117 if (!box)
1118 continue;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001119
Thomas Gleixner12297352016-02-22 22:19:12 +00001120 if (old_cpu < 0) {
1121 WARN_ON_ONCE(box->cpu != -1);
1122 box->cpu = new_cpu;
1123 continue;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001124 }
Thomas Gleixner12297352016-02-22 22:19:12 +00001125
1126 WARN_ON_ONCE(box->cpu != old_cpu);
1127 box->cpu = -1;
1128 if (new_cpu < 0)
1129 continue;
1130
1131 uncore_pmu_cancel_hrtimer(box);
1132 perf_pmu_migrate_context(&pmu->pmu, old_cpu, new_cpu);
1133 box->cpu = new_cpu;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001134 }
1135}
1136
Thomas Gleixner12297352016-02-22 22:19:12 +00001137static void uncore_change_context(struct intel_uncore_type **uncores,
1138 int old_cpu, int new_cpu)
1139{
1140 for (; *uncores; uncores++)
1141 uncore_change_type_ctx(*uncores, old_cpu, new_cpu);
1142}
1143
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001144static int uncore_event_cpu_offline(unsigned int cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001145{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001146 int target;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001147
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001148 /* Check if exiting cpu is used for collecting uncore events */
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001149 if (!cpumask_test_and_clear_cpu(cpu, &uncore_cpu_mask))
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001150 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001151
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001152 /* Find a new cpu to collect uncore events */
1153 target = cpumask_any_but(topology_core_cpumask(cpu), cpu);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001154
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001155 /* Migrate uncore events to the new target */
1156 if (target < nr_cpu_ids)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001157 cpumask_set_cpu(target, &uncore_cpu_mask);
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001158 else
1159 target = -1;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001160
Yan, Zheng514b2342014-07-30 15:22:12 +08001161 uncore_change_context(uncore_msr_uncores, cpu, target);
1162 uncore_change_context(uncore_pci_uncores, cpu, target);
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001163 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001164}
1165
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001166static int uncore_event_cpu_online(unsigned int cpu)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001167{
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001168 int target;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001169
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001170 /*
1171 * Check if there is an online cpu in the package
1172 * which collects uncore events already.
1173 */
1174 target = cpumask_any_and(&uncore_cpu_mask, topology_core_cpumask(cpu));
1175 if (target < nr_cpu_ids)
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001176 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001177
1178 cpumask_set_cpu(cpu, &uncore_cpu_mask);
1179
Yan, Zheng514b2342014-07-30 15:22:12 +08001180 uncore_change_context(uncore_msr_uncores, -1, cpu);
1181 uncore_change_context(uncore_pci_uncores, -1, cpu);
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001182 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001183}
1184
Thomas Gleixner4f089672016-02-22 22:19:09 +00001185static int __init type_pmu_register(struct intel_uncore_type *type)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001186{
Thomas Gleixner4f089672016-02-22 22:19:09 +00001187 int i, ret;
1188
1189 for (i = 0; i < type->num_boxes; i++) {
1190 ret = uncore_pmu_register(&type->pmus[i]);
1191 if (ret)
1192 return ret;
1193 }
1194 return 0;
1195}
1196
1197static int __init uncore_msr_pmus_register(void)
1198{
1199 struct intel_uncore_type **types = uncore_msr_uncores;
1200 int ret;
1201
Thomas Gleixner12297352016-02-22 22:19:12 +00001202 for (; *types; types++) {
1203 ret = type_pmu_register(*types);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001204 if (ret)
1205 return ret;
1206 }
1207 return 0;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001208}
1209
1210static int __init uncore_cpu_init(void)
1211{
Yan, Zhengc1e46582014-07-30 15:22:15 +08001212 int ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001213
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001214 ret = uncore_types_init(uncore_msr_uncores, true);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001215 if (ret)
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001216 goto err;
Thomas Gleixner4f089672016-02-22 22:19:09 +00001217
1218 ret = uncore_msr_pmus_register();
1219 if (ret)
1220 goto err;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001221 return 0;
Thomas Gleixnerffeda002016-02-22 22:19:09 +00001222err:
1223 uncore_types_exit(uncore_msr_uncores);
1224 uncore_msr_uncores = empty_uncore;
1225 return ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001226}
1227
Kan Liange633c652016-03-20 01:33:36 -07001228#define X86_UNCORE_MODEL_MATCH(model, init) \
1229 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&init }
1230
1231struct intel_uncore_init_fun {
1232 void (*cpu_init)(void);
1233 int (*pci_init)(void);
1234};
1235
1236static const struct intel_uncore_init_fun nhm_uncore_init __initconst = {
1237 .cpu_init = nhm_uncore_cpu_init,
1238};
1239
1240static const struct intel_uncore_init_fun snb_uncore_init __initconst = {
1241 .cpu_init = snb_uncore_cpu_init,
1242 .pci_init = snb_uncore_pci_init,
1243};
1244
1245static const struct intel_uncore_init_fun ivb_uncore_init __initconst = {
1246 .cpu_init = snb_uncore_cpu_init,
1247 .pci_init = ivb_uncore_pci_init,
1248};
1249
1250static const struct intel_uncore_init_fun hsw_uncore_init __initconst = {
1251 .cpu_init = snb_uncore_cpu_init,
1252 .pci_init = hsw_uncore_pci_init,
1253};
1254
1255static const struct intel_uncore_init_fun bdw_uncore_init __initconst = {
1256 .cpu_init = snb_uncore_cpu_init,
1257 .pci_init = bdw_uncore_pci_init,
1258};
1259
1260static const struct intel_uncore_init_fun snbep_uncore_init __initconst = {
1261 .cpu_init = snbep_uncore_cpu_init,
1262 .pci_init = snbep_uncore_pci_init,
1263};
1264
1265static const struct intel_uncore_init_fun nhmex_uncore_init __initconst = {
1266 .cpu_init = nhmex_uncore_cpu_init,
1267};
1268
1269static const struct intel_uncore_init_fun ivbep_uncore_init __initconst = {
1270 .cpu_init = ivbep_uncore_cpu_init,
1271 .pci_init = ivbep_uncore_pci_init,
1272};
1273
1274static const struct intel_uncore_init_fun hswep_uncore_init __initconst = {
1275 .cpu_init = hswep_uncore_cpu_init,
1276 .pci_init = hswep_uncore_pci_init,
1277};
1278
1279static const struct intel_uncore_init_fun bdx_uncore_init __initconst = {
1280 .cpu_init = bdx_uncore_cpu_init,
1281 .pci_init = bdx_uncore_pci_init,
1282};
1283
1284static const struct intel_uncore_init_fun knl_uncore_init __initconst = {
1285 .cpu_init = knl_uncore_cpu_init,
1286 .pci_init = knl_uncore_pci_init,
1287};
1288
1289static const struct intel_uncore_init_fun skl_uncore_init __initconst = {
Kan Liang46866b52016-06-29 07:01:51 -07001290 .cpu_init = skl_uncore_cpu_init,
Kan Liange633c652016-03-20 01:33:36 -07001291 .pci_init = skl_uncore_pci_init,
1292};
1293
Kan Liangcd34cd92016-08-16 16:09:50 -04001294static const struct intel_uncore_init_fun skx_uncore_init __initconst = {
1295 .cpu_init = skx_uncore_cpu_init,
1296 .pci_init = skx_uncore_pci_init,
1297};
1298
Kan Liange633c652016-03-20 01:33:36 -07001299static const struct x86_cpu_id intel_uncore_match[] __initconst = {
Dave Hansena07301a2016-06-02 17:19:42 -07001300 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_NEHALEM_EP, nhm_uncore_init),
1301 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_NEHALEM, nhm_uncore_init),
1302 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_WESTMERE, nhm_uncore_init),
1303 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_WESTMERE_EP, nhm_uncore_init),
1304 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SANDYBRIDGE, snb_uncore_init),
1305 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_IVYBRIDGE, ivb_uncore_init),
1306 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_HASWELL_CORE, hsw_uncore_init),
1307 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_HASWELL_ULT, hsw_uncore_init),
1308 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_HASWELL_GT3E, hsw_uncore_init),
1309 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_CORE, bdw_uncore_init),
1310 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_GT3E, bdw_uncore_init),
1311 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SANDYBRIDGE_X, snbep_uncore_init),
1312 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_NEHALEM_EX, nhmex_uncore_init),
1313 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_WESTMERE_EX, nhmex_uncore_init),
1314 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_IVYBRIDGE_X, ivbep_uncore_init),
1315 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_HASWELL_X, hswep_uncore_init),
1316 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_X, bdx_uncore_init),
1317 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_BROADWELL_XEON_D, bdx_uncore_init),
1318 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNL, knl_uncore_init),
Piotr Lucba2f8152016-10-12 20:27:58 +02001319 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNM, knl_uncore_init),
Dave Hansena07301a2016-06-02 17:19:42 -07001320 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_DESKTOP,skl_uncore_init),
Kan Liang46866b52016-06-29 07:01:51 -07001321 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_MOBILE, skl_uncore_init),
Kan Liangcd34cd92016-08-16 16:09:50 -04001322 X86_UNCORE_MODEL_MATCH(INTEL_FAM6_SKYLAKE_X, skx_uncore_init),
Kan Liange633c652016-03-20 01:33:36 -07001323 {},
1324};
1325
1326MODULE_DEVICE_TABLE(x86cpu, intel_uncore_match);
1327
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001328static int __init intel_uncore_init(void)
1329{
Kan Liange633c652016-03-20 01:33:36 -07001330 const struct x86_cpu_id *id;
1331 struct intel_uncore_init_fun *uncore_init;
1332 int pret = 0, cret = 0, ret;
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001333
Kan Liange633c652016-03-20 01:33:36 -07001334 id = x86_match_cpu(intel_uncore_match);
1335 if (!id)
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001336 return -ENODEV;
1337
Borislav Petkov0c9f3532016-03-29 17:41:55 +02001338 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
Yan, Zhenga05123b2012-08-21 17:08:37 +08001339 return -ENODEV;
1340
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001341 max_packages = topology_max_packages();
1342
Kan Liange633c652016-03-20 01:33:36 -07001343 uncore_init = (struct intel_uncore_init_fun *)id->driver_data;
1344 if (uncore_init->pci_init) {
1345 pret = uncore_init->pci_init();
1346 if (!pret)
1347 pret = uncore_pci_init();
1348 }
1349
1350 if (uncore_init->cpu_init) {
1351 uncore_init->cpu_init();
1352 cret = uncore_cpu_init();
1353 }
Thomas Gleixner54855922016-02-22 22:19:17 +00001354
1355 if (cret && pret)
1356 return -ENODEV;
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001357
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001358 /*
1359 * Install callbacks. Core will call them for each online cpu.
1360 *
1361 * The first online cpu of each package allocates and takes
1362 * the refcounts for all other online cpus in that package.
1363 * If msrs are not enabled no allocation is required and
1364 * uncore_cpu_prepare() is not called for each online cpu.
1365 */
1366 if (!cret) {
1367 ret = cpuhp_setup_state(CPUHP_PERF_X86_UNCORE_PREP,
1368 "PERF_X86_UNCORE_PREP",
1369 uncore_cpu_prepare, NULL);
1370 if (ret)
1371 goto err;
1372 } else {
1373 cpuhp_setup_state_nocalls(CPUHP_PERF_X86_UNCORE_PREP,
1374 "PERF_X86_UNCORE_PREP",
1375 uncore_cpu_prepare, NULL);
1376 }
Thomas Gleixnerbebb9d72017-01-31 23:58:39 +01001377
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001378 cpuhp_setup_state(CPUHP_AP_PERF_X86_UNCORE_STARTING,
1379 "AP_PERF_X86_UNCORE_STARTING",
1380 uncore_cpu_starting, uncore_cpu_dying);
Thomas Gleixnerbebb9d72017-01-31 23:58:39 +01001381
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001382 cpuhp_setup_state(CPUHP_AP_PERF_X86_UNCORE_ONLINE,
1383 "AP_PERF_X86_UNCORE_ONLINE",
1384 uncore_event_cpu_online, uncore_event_cpu_offline);
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001385 return 0;
Thomas Gleixner4f089672016-02-22 22:19:09 +00001386
Thomas Gleixnercf6d4452016-02-22 22:19:16 +00001387err:
Thomas Gleixner4f089672016-02-22 22:19:09 +00001388 uncore_types_exit(uncore_msr_uncores);
Thomas Gleixner4f089672016-02-22 22:19:09 +00001389 uncore_pci_exit();
Yan, Zheng087bfbb2012-06-15 14:31:34 +08001390 return ret;
1391}
Kan Liange633c652016-03-20 01:33:36 -07001392module_init(intel_uncore_init);
1393
1394static void __exit intel_uncore_exit(void)
1395{
Thomas Gleixner1a246b92016-07-13 17:16:12 +00001396 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_UNCORE_ONLINE);
1397 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_UNCORE_STARTING);
1398 cpuhp_remove_state_nocalls(CPUHP_PERF_X86_UNCORE_PREP);
Kan Liange633c652016-03-20 01:33:36 -07001399 uncore_types_exit(uncore_msr_uncores);
1400 uncore_pci_exit();
Kan Liange633c652016-03-20 01:33:36 -07001401}
1402module_exit(intel_uncore_exit);