x86/resctrl: Make resctrl_arch_get_config() return its value
[linux-2.6-microblaze.git] / arch / x86 / kernel / cpu / resctrl / monitor.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Resource Director Technology(RDT)
4  * - Monitoring code
5  *
6  * Copyright (C) 2017 Intel Corporation
7  *
8  * Author:
9  *    Vikas Shivappa <vikas.shivappa@intel.com>
10  *
11  * This replaces the cqm.c based on perf but we reuse a lot of
12  * code and datastructures originally from Peter Zijlstra and Matt Fleming.
13  *
14  * More information about RDT be found in the Intel (R) x86 Architecture
15  * Software Developer Manual June 2016, volume 3, section 17.17.
16  */
17
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <asm/cpu_device_id.h>
21 #include "internal.h"
22
23 struct rmid_entry {
24         u32                             rmid;
25         int                             busy;
26         struct list_head                list;
27 };
28
29 /**
30  * @rmid_free_lru    A least recently used list of free RMIDs
31  *     These RMIDs are guaranteed to have an occupancy less than the
32  *     threshold occupancy
33  */
34 static LIST_HEAD(rmid_free_lru);
35
36 /**
37  * @rmid_limbo_count     count of currently unused but (potentially)
38  *     dirty RMIDs.
39  *     This counts RMIDs that no one is currently using but that
40  *     may have a occupancy value > intel_cqm_threshold. User can change
41  *     the threshold occupancy value.
42  */
43 static unsigned int rmid_limbo_count;
44
45 /**
46  * @rmid_entry - The entry in the limbo and free lists.
47  */
48 static struct rmid_entry        *rmid_ptrs;
49
50 /*
51  * Global boolean for rdt_monitor which is true if any
52  * resource monitoring is enabled.
53  */
54 bool rdt_mon_capable;
55
56 /*
57  * Global to indicate which monitoring events are enabled.
58  */
59 unsigned int rdt_mon_features;
60
61 /*
62  * This is the threshold cache occupancy at which we will consider an
63  * RMID available for re-allocation.
64  */
65 unsigned int resctrl_cqm_threshold;
66
67 #define CF(cf)  ((unsigned long)(1048576 * (cf) + 0.5))
68
69 /*
70  * The correction factor table is documented in Documentation/x86/resctrl.rst.
71  * If rmid > rmid threshold, MBM total and local values should be multiplied
72  * by the correction factor.
73  *
74  * The original table is modified for better code:
75  *
76  * 1. The threshold 0 is changed to rmid count - 1 so don't do correction
77  *    for the case.
78  * 2. MBM total and local correction table indexed by core counter which is
79  *    equal to (x86_cache_max_rmid + 1) / 8 - 1 and is from 0 up to 27.
80  * 3. The correction factor is normalized to 2^20 (1048576) so it's faster
81  *    to calculate corrected value by shifting:
82  *    corrected_value = (original_value * correction_factor) >> 20
83  */
84 static const struct mbm_correction_factor_table {
85         u32 rmidthreshold;
86         u64 cf;
87 } mbm_cf_table[] __initconst = {
88         {7,     CF(1.000000)},
89         {15,    CF(1.000000)},
90         {15,    CF(0.969650)},
91         {31,    CF(1.000000)},
92         {31,    CF(1.066667)},
93         {31,    CF(0.969650)},
94         {47,    CF(1.142857)},
95         {63,    CF(1.000000)},
96         {63,    CF(1.185115)},
97         {63,    CF(1.066553)},
98         {79,    CF(1.454545)},
99         {95,    CF(1.000000)},
100         {95,    CF(1.230769)},
101         {95,    CF(1.142857)},
102         {95,    CF(1.066667)},
103         {127,   CF(1.000000)},
104         {127,   CF(1.254863)},
105         {127,   CF(1.185255)},
106         {151,   CF(1.000000)},
107         {127,   CF(1.066667)},
108         {167,   CF(1.000000)},
109         {159,   CF(1.454334)},
110         {183,   CF(1.000000)},
111         {127,   CF(0.969744)},
112         {191,   CF(1.280246)},
113         {191,   CF(1.230921)},
114         {215,   CF(1.000000)},
115         {191,   CF(1.143118)},
116 };
117
118 static u32 mbm_cf_rmidthreshold __read_mostly = UINT_MAX;
119 static u64 mbm_cf __read_mostly;
120
121 static inline u64 get_corrected_mbm_count(u32 rmid, unsigned long val)
122 {
123         /* Correct MBM value. */
124         if (rmid > mbm_cf_rmidthreshold)
125                 val = (val * mbm_cf) >> 20;
126
127         return val;
128 }
129
130 static inline struct rmid_entry *__rmid_entry(u32 rmid)
131 {
132         struct rmid_entry *entry;
133
134         entry = &rmid_ptrs[rmid];
135         WARN_ON(entry->rmid != rmid);
136
137         return entry;
138 }
139
140 static u64 __rmid_read(u32 rmid, u32 eventid)
141 {
142         u64 val;
143
144         /*
145          * As per the SDM, when IA32_QM_EVTSEL.EvtID (bits 7:0) is configured
146          * with a valid event code for supported resource type and the bits
147          * IA32_QM_EVTSEL.RMID (bits 41:32) are configured with valid RMID,
148          * IA32_QM_CTR.data (bits 61:0) reports the monitored data.
149          * IA32_QM_CTR.Error (bit 63) and IA32_QM_CTR.Unavailable (bit 62)
150          * are error bits.
151          */
152         wrmsr(MSR_IA32_QM_EVTSEL, eventid, rmid);
153         rdmsrl(MSR_IA32_QM_CTR, val);
154
155         return val;
156 }
157
158 static bool rmid_dirty(struct rmid_entry *entry)
159 {
160         u64 val = __rmid_read(entry->rmid, QOS_L3_OCCUP_EVENT_ID);
161
162         return val >= resctrl_cqm_threshold;
163 }
164
165 /*
166  * Check the RMIDs that are marked as busy for this domain. If the
167  * reported LLC occupancy is below the threshold clear the busy bit and
168  * decrement the count. If the busy count gets to zero on an RMID, we
169  * free the RMID
170  */
171 void __check_limbo(struct rdt_domain *d, bool force_free)
172 {
173         struct rmid_entry *entry;
174         struct rdt_resource *r;
175         u32 crmid = 1, nrmid;
176
177         r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
178
179         /*
180          * Skip RMID 0 and start from RMID 1 and check all the RMIDs that
181          * are marked as busy for occupancy < threshold. If the occupancy
182          * is less than the threshold decrement the busy counter of the
183          * RMID and move it to the free list when the counter reaches 0.
184          */
185         for (;;) {
186                 nrmid = find_next_bit(d->rmid_busy_llc, r->num_rmid, crmid);
187                 if (nrmid >= r->num_rmid)
188                         break;
189
190                 entry = __rmid_entry(nrmid);
191                 if (force_free || !rmid_dirty(entry)) {
192                         clear_bit(entry->rmid, d->rmid_busy_llc);
193                         if (!--entry->busy) {
194                                 rmid_limbo_count--;
195                                 list_add_tail(&entry->list, &rmid_free_lru);
196                         }
197                 }
198                 crmid = nrmid + 1;
199         }
200 }
201
202 bool has_busy_rmid(struct rdt_resource *r, struct rdt_domain *d)
203 {
204         return find_first_bit(d->rmid_busy_llc, r->num_rmid) != r->num_rmid;
205 }
206
207 /*
208  * As of now the RMIDs allocation is global.
209  * However we keep track of which packages the RMIDs
210  * are used to optimize the limbo list management.
211  */
212 int alloc_rmid(void)
213 {
214         struct rmid_entry *entry;
215
216         lockdep_assert_held(&rdtgroup_mutex);
217
218         if (list_empty(&rmid_free_lru))
219                 return rmid_limbo_count ? -EBUSY : -ENOSPC;
220
221         entry = list_first_entry(&rmid_free_lru,
222                                  struct rmid_entry, list);
223         list_del(&entry->list);
224
225         return entry->rmid;
226 }
227
228 static void add_rmid_to_limbo(struct rmid_entry *entry)
229 {
230         struct rdt_resource *r;
231         struct rdt_domain *d;
232         int cpu;
233         u64 val;
234
235         r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
236
237         entry->busy = 0;
238         cpu = get_cpu();
239         list_for_each_entry(d, &r->domains, list) {
240                 if (cpumask_test_cpu(cpu, &d->cpu_mask)) {
241                         val = __rmid_read(entry->rmid, QOS_L3_OCCUP_EVENT_ID);
242                         if (val <= resctrl_cqm_threshold)
243                                 continue;
244                 }
245
246                 /*
247                  * For the first limbo RMID in the domain,
248                  * setup up the limbo worker.
249                  */
250                 if (!has_busy_rmid(r, d))
251                         cqm_setup_limbo_handler(d, CQM_LIMBOCHECK_INTERVAL);
252                 set_bit(entry->rmid, d->rmid_busy_llc);
253                 entry->busy++;
254         }
255         put_cpu();
256
257         if (entry->busy)
258                 rmid_limbo_count++;
259         else
260                 list_add_tail(&entry->list, &rmid_free_lru);
261 }
262
263 void free_rmid(u32 rmid)
264 {
265         struct rmid_entry *entry;
266
267         if (!rmid)
268                 return;
269
270         lockdep_assert_held(&rdtgroup_mutex);
271
272         entry = __rmid_entry(rmid);
273
274         if (is_llc_occupancy_enabled())
275                 add_rmid_to_limbo(entry);
276         else
277                 list_add_tail(&entry->list, &rmid_free_lru);
278 }
279
280 static u64 mbm_overflow_count(u64 prev_msr, u64 cur_msr, unsigned int width)
281 {
282         u64 shift = 64 - width, chunks;
283
284         chunks = (cur_msr << shift) - (prev_msr << shift);
285         return chunks >>= shift;
286 }
287
288 static int __mon_event_count(u32 rmid, struct rmid_read *rr)
289 {
290         struct rdt_hw_resource *hw_res = resctrl_to_arch_res(rr->r);
291         struct mbm_state *m;
292         u64 chunks, tval;
293
294         tval = __rmid_read(rmid, rr->evtid);
295         if (tval & (RMID_VAL_ERROR | RMID_VAL_UNAVAIL)) {
296                 rr->val = tval;
297                 return -EINVAL;
298         }
299         switch (rr->evtid) {
300         case QOS_L3_OCCUP_EVENT_ID:
301                 rr->val += tval;
302                 return 0;
303         case QOS_L3_MBM_TOTAL_EVENT_ID:
304                 m = &rr->d->mbm_total[rmid];
305                 break;
306         case QOS_L3_MBM_LOCAL_EVENT_ID:
307                 m = &rr->d->mbm_local[rmid];
308                 break;
309         default:
310                 /*
311                  * Code would never reach here because
312                  * an invalid event id would fail the __rmid_read.
313                  */
314                 return -EINVAL;
315         }
316
317         if (rr->first) {
318                 memset(m, 0, sizeof(struct mbm_state));
319                 m->prev_bw_msr = m->prev_msr = tval;
320                 return 0;
321         }
322
323         chunks = mbm_overflow_count(m->prev_msr, tval, hw_res->mbm_width);
324         m->chunks += chunks;
325         m->prev_msr = tval;
326
327         rr->val += get_corrected_mbm_count(rmid, m->chunks);
328
329         return 0;
330 }
331
332 /*
333  * Supporting function to calculate the memory bandwidth
334  * and delta bandwidth in MBps.
335  */
336 static void mbm_bw_count(u32 rmid, struct rmid_read *rr)
337 {
338         struct rdt_hw_resource *hw_res = resctrl_to_arch_res(rr->r);
339         struct mbm_state *m = &rr->d->mbm_local[rmid];
340         u64 tval, cur_bw, chunks;
341
342         tval = __rmid_read(rmid, rr->evtid);
343         if (tval & (RMID_VAL_ERROR | RMID_VAL_UNAVAIL))
344                 return;
345
346         chunks = mbm_overflow_count(m->prev_bw_msr, tval, hw_res->mbm_width);
347         cur_bw = (get_corrected_mbm_count(rmid, chunks) * hw_res->mon_scale) >> 20;
348
349         if (m->delta_comp)
350                 m->delta_bw = abs(cur_bw - m->prev_bw);
351         m->delta_comp = false;
352         m->prev_bw = cur_bw;
353         m->prev_bw_msr = tval;
354 }
355
356 /*
357  * This is called via IPI to read the CQM/MBM counters
358  * on a domain.
359  */
360 void mon_event_count(void *info)
361 {
362         struct rdtgroup *rdtgrp, *entry;
363         struct rmid_read *rr = info;
364         struct list_head *head;
365
366         rdtgrp = rr->rgrp;
367
368         if (__mon_event_count(rdtgrp->mon.rmid, rr))
369                 return;
370
371         /*
372          * For Ctrl groups read data from child monitor groups.
373          */
374         head = &rdtgrp->mon.crdtgrp_list;
375
376         if (rdtgrp->type == RDTCTRL_GROUP) {
377                 list_for_each_entry(entry, head, mon.crdtgrp_list) {
378                         if (__mon_event_count(entry->mon.rmid, rr))
379                                 return;
380                 }
381         }
382 }
383
384 /*
385  * Feedback loop for MBA software controller (mba_sc)
386  *
387  * mba_sc is a feedback loop where we periodically read MBM counters and
388  * adjust the bandwidth percentage values via the IA32_MBA_THRTL_MSRs so
389  * that:
390  *
391  *   current bandwidth(cur_bw) < user specified bandwidth(user_bw)
392  *
393  * This uses the MBM counters to measure the bandwidth and MBA throttle
394  * MSRs to control the bandwidth for a particular rdtgrp. It builds on the
395  * fact that resctrl rdtgroups have both monitoring and control.
396  *
397  * The frequency of the checks is 1s and we just tag along the MBM overflow
398  * timer. Having 1s interval makes the calculation of bandwidth simpler.
399  *
400  * Although MBA's goal is to restrict the bandwidth to a maximum, there may
401  * be a need to increase the bandwidth to avoid unnecessarily restricting
402  * the L2 <-> L3 traffic.
403  *
404  * Since MBA controls the L2 external bandwidth where as MBM measures the
405  * L3 external bandwidth the following sequence could lead to such a
406  * situation.
407  *
408  * Consider an rdtgroup which had high L3 <-> memory traffic in initial
409  * phases -> mba_sc kicks in and reduced bandwidth percentage values -> but
410  * after some time rdtgroup has mostly L2 <-> L3 traffic.
411  *
412  * In this case we may restrict the rdtgroup's L2 <-> L3 traffic as its
413  * throttle MSRs already have low percentage values.  To avoid
414  * unnecessarily restricting such rdtgroups, we also increase the bandwidth.
415  */
416 static void update_mba_bw(struct rdtgroup *rgrp, struct rdt_domain *dom_mbm)
417 {
418         u32 closid, rmid, cur_msr, cur_msr_val, new_msr_val;
419         struct mbm_state *pmbm_data, *cmbm_data;
420         struct rdt_hw_resource *hw_r_mba;
421         struct rdt_hw_domain *hw_dom_mba;
422         u32 cur_bw, delta_bw, user_bw;
423         struct rdt_resource *r_mba;
424         struct rdt_domain *dom_mba;
425         struct list_head *head;
426         struct rdtgroup *entry;
427
428         if (!is_mbm_local_enabled())
429                 return;
430
431         hw_r_mba = &rdt_resources_all[RDT_RESOURCE_MBA];
432         r_mba = &hw_r_mba->r_resctrl;
433         closid = rgrp->closid;
434         rmid = rgrp->mon.rmid;
435         pmbm_data = &dom_mbm->mbm_local[rmid];
436
437         dom_mba = get_domain_from_cpu(smp_processor_id(), r_mba);
438         if (!dom_mba) {
439                 pr_warn_once("Failure to get domain for MBA update\n");
440                 return;
441         }
442         hw_dom_mba = resctrl_to_arch_dom(dom_mba);
443
444         cur_bw = pmbm_data->prev_bw;
445         user_bw = resctrl_arch_get_config(r_mba, dom_mba, closid, CDP_NONE);
446         delta_bw = pmbm_data->delta_bw;
447         /*
448          * resctrl_arch_get_config() chooses the mbps/ctrl value to return
449          * based on is_mba_sc(). For now, reach into the hw_dom.
450          */
451         cur_msr_val = hw_dom_mba->ctrl_val[closid];
452
453         /*
454          * For Ctrl groups read data from child monitor groups.
455          */
456         head = &rgrp->mon.crdtgrp_list;
457         list_for_each_entry(entry, head, mon.crdtgrp_list) {
458                 cmbm_data = &dom_mbm->mbm_local[entry->mon.rmid];
459                 cur_bw += cmbm_data->prev_bw;
460                 delta_bw += cmbm_data->delta_bw;
461         }
462
463         /*
464          * Scale up/down the bandwidth linearly for the ctrl group.  The
465          * bandwidth step is the bandwidth granularity specified by the
466          * hardware.
467          *
468          * The delta_bw is used when increasing the bandwidth so that we
469          * dont alternately increase and decrease the control values
470          * continuously.
471          *
472          * For ex: consider cur_bw = 90MBps, user_bw = 100MBps and if
473          * bandwidth step is 20MBps(> user_bw - cur_bw), we would keep
474          * switching between 90 and 110 continuously if we only check
475          * cur_bw < user_bw.
476          */
477         if (cur_msr_val > r_mba->membw.min_bw && user_bw < cur_bw) {
478                 new_msr_val = cur_msr_val - r_mba->membw.bw_gran;
479         } else if (cur_msr_val < MAX_MBA_BW &&
480                    (user_bw > (cur_bw + delta_bw))) {
481                 new_msr_val = cur_msr_val + r_mba->membw.bw_gran;
482         } else {
483                 return;
484         }
485
486         cur_msr = hw_r_mba->msr_base + closid;
487         wrmsrl(cur_msr, delay_bw_map(new_msr_val, r_mba));
488         hw_dom_mba->ctrl_val[closid] = new_msr_val;
489
490         /*
491          * Delta values are updated dynamically package wise for each
492          * rdtgrp every time the throttle MSR changes value.
493          *
494          * This is because (1)the increase in bandwidth is not perfectly
495          * linear and only "approximately" linear even when the hardware
496          * says it is linear.(2)Also since MBA is a core specific
497          * mechanism, the delta values vary based on number of cores used
498          * by the rdtgrp.
499          */
500         pmbm_data->delta_comp = true;
501         list_for_each_entry(entry, head, mon.crdtgrp_list) {
502                 cmbm_data = &dom_mbm->mbm_local[entry->mon.rmid];
503                 cmbm_data->delta_comp = true;
504         }
505 }
506
507 static void mbm_update(struct rdt_resource *r, struct rdt_domain *d, int rmid)
508 {
509         struct rmid_read rr;
510
511         rr.first = false;
512         rr.r = r;
513         rr.d = d;
514
515         /*
516          * This is protected from concurrent reads from user
517          * as both the user and we hold the global mutex.
518          */
519         if (is_mbm_total_enabled()) {
520                 rr.evtid = QOS_L3_MBM_TOTAL_EVENT_ID;
521                 __mon_event_count(rmid, &rr);
522         }
523         if (is_mbm_local_enabled()) {
524                 rr.evtid = QOS_L3_MBM_LOCAL_EVENT_ID;
525                 __mon_event_count(rmid, &rr);
526
527                 /*
528                  * Call the MBA software controller only for the
529                  * control groups and when user has enabled
530                  * the software controller explicitly.
531                  */
532                 if (is_mba_sc(NULL))
533                         mbm_bw_count(rmid, &rr);
534         }
535 }
536
537 /*
538  * Handler to scan the limbo list and move the RMIDs
539  * to free list whose occupancy < threshold_occupancy.
540  */
541 void cqm_handle_limbo(struct work_struct *work)
542 {
543         unsigned long delay = msecs_to_jiffies(CQM_LIMBOCHECK_INTERVAL);
544         int cpu = smp_processor_id();
545         struct rdt_resource *r;
546         struct rdt_domain *d;
547
548         mutex_lock(&rdtgroup_mutex);
549
550         r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
551         d = container_of(work, struct rdt_domain, cqm_limbo.work);
552
553         __check_limbo(d, false);
554
555         if (has_busy_rmid(r, d))
556                 schedule_delayed_work_on(cpu, &d->cqm_limbo, delay);
557
558         mutex_unlock(&rdtgroup_mutex);
559 }
560
561 void cqm_setup_limbo_handler(struct rdt_domain *dom, unsigned long delay_ms)
562 {
563         unsigned long delay = msecs_to_jiffies(delay_ms);
564         int cpu;
565
566         cpu = cpumask_any(&dom->cpu_mask);
567         dom->cqm_work_cpu = cpu;
568
569         schedule_delayed_work_on(cpu, &dom->cqm_limbo, delay);
570 }
571
572 void mbm_handle_overflow(struct work_struct *work)
573 {
574         unsigned long delay = msecs_to_jiffies(MBM_OVERFLOW_INTERVAL);
575         struct rdtgroup *prgrp, *crgrp;
576         int cpu = smp_processor_id();
577         struct list_head *head;
578         struct rdt_resource *r;
579         struct rdt_domain *d;
580
581         mutex_lock(&rdtgroup_mutex);
582
583         if (!static_branch_likely(&rdt_mon_enable_key))
584                 goto out_unlock;
585
586         r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
587         d = container_of(work, struct rdt_domain, mbm_over.work);
588
589         list_for_each_entry(prgrp, &rdt_all_groups, rdtgroup_list) {
590                 mbm_update(r, d, prgrp->mon.rmid);
591
592                 head = &prgrp->mon.crdtgrp_list;
593                 list_for_each_entry(crgrp, head, mon.crdtgrp_list)
594                         mbm_update(r, d, crgrp->mon.rmid);
595
596                 if (is_mba_sc(NULL))
597                         update_mba_bw(prgrp, d);
598         }
599
600         schedule_delayed_work_on(cpu, &d->mbm_over, delay);
601
602 out_unlock:
603         mutex_unlock(&rdtgroup_mutex);
604 }
605
606 void mbm_setup_overflow_handler(struct rdt_domain *dom, unsigned long delay_ms)
607 {
608         unsigned long delay = msecs_to_jiffies(delay_ms);
609         int cpu;
610
611         if (!static_branch_likely(&rdt_mon_enable_key))
612                 return;
613         cpu = cpumask_any(&dom->cpu_mask);
614         dom->mbm_work_cpu = cpu;
615         schedule_delayed_work_on(cpu, &dom->mbm_over, delay);
616 }
617
618 static int dom_data_init(struct rdt_resource *r)
619 {
620         struct rmid_entry *entry = NULL;
621         int i, nr_rmids;
622
623         nr_rmids = r->num_rmid;
624         rmid_ptrs = kcalloc(nr_rmids, sizeof(struct rmid_entry), GFP_KERNEL);
625         if (!rmid_ptrs)
626                 return -ENOMEM;
627
628         for (i = 0; i < nr_rmids; i++) {
629                 entry = &rmid_ptrs[i];
630                 INIT_LIST_HEAD(&entry->list);
631
632                 entry->rmid = i;
633                 list_add_tail(&entry->list, &rmid_free_lru);
634         }
635
636         /*
637          * RMID 0 is special and is always allocated. It's used for all
638          * tasks that are not monitored.
639          */
640         entry = __rmid_entry(0);
641         list_del(&entry->list);
642
643         return 0;
644 }
645
646 static struct mon_evt llc_occupancy_event = {
647         .name           = "llc_occupancy",
648         .evtid          = QOS_L3_OCCUP_EVENT_ID,
649 };
650
651 static struct mon_evt mbm_total_event = {
652         .name           = "mbm_total_bytes",
653         .evtid          = QOS_L3_MBM_TOTAL_EVENT_ID,
654 };
655
656 static struct mon_evt mbm_local_event = {
657         .name           = "mbm_local_bytes",
658         .evtid          = QOS_L3_MBM_LOCAL_EVENT_ID,
659 };
660
661 /*
662  * Initialize the event list for the resource.
663  *
664  * Note that MBM events are also part of RDT_RESOURCE_L3 resource
665  * because as per the SDM the total and local memory bandwidth
666  * are enumerated as part of L3 monitoring.
667  */
668 static void l3_mon_evt_init(struct rdt_resource *r)
669 {
670         INIT_LIST_HEAD(&r->evt_list);
671
672         if (is_llc_occupancy_enabled())
673                 list_add_tail(&llc_occupancy_event.list, &r->evt_list);
674         if (is_mbm_total_enabled())
675                 list_add_tail(&mbm_total_event.list, &r->evt_list);
676         if (is_mbm_local_enabled())
677                 list_add_tail(&mbm_local_event.list, &r->evt_list);
678 }
679
680 int rdt_get_mon_l3_config(struct rdt_resource *r)
681 {
682         unsigned int mbm_offset = boot_cpu_data.x86_cache_mbm_width_offset;
683         struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
684         unsigned int cl_size = boot_cpu_data.x86_cache_size;
685         int ret;
686
687         hw_res->mon_scale = boot_cpu_data.x86_cache_occ_scale;
688         r->num_rmid = boot_cpu_data.x86_cache_max_rmid + 1;
689         hw_res->mbm_width = MBM_CNTR_WIDTH_BASE;
690
691         if (mbm_offset > 0 && mbm_offset <= MBM_CNTR_WIDTH_OFFSET_MAX)
692                 hw_res->mbm_width += mbm_offset;
693         else if (mbm_offset > MBM_CNTR_WIDTH_OFFSET_MAX)
694                 pr_warn("Ignoring impossible MBM counter offset\n");
695
696         /*
697          * A reasonable upper limit on the max threshold is the number
698          * of lines tagged per RMID if all RMIDs have the same number of
699          * lines tagged in the LLC.
700          *
701          * For a 35MB LLC and 56 RMIDs, this is ~1.8% of the LLC.
702          */
703         resctrl_cqm_threshold = cl_size * 1024 / r->num_rmid;
704
705         /* h/w works in units of "boot_cpu_data.x86_cache_occ_scale" */
706         resctrl_cqm_threshold /= hw_res->mon_scale;
707
708         ret = dom_data_init(r);
709         if (ret)
710                 return ret;
711
712         l3_mon_evt_init(r);
713
714         r->mon_capable = true;
715         r->mon_enabled = true;
716
717         return 0;
718 }
719
720 void __init intel_rdt_mbm_apply_quirk(void)
721 {
722         int cf_index;
723
724         cf_index = (boot_cpu_data.x86_cache_max_rmid + 1) / 8 - 1;
725         if (cf_index >= ARRAY_SIZE(mbm_cf_table)) {
726                 pr_info("No MBM correction factor available\n");
727                 return;
728         }
729
730         mbm_cf_rmidthreshold = mbm_cf_table[cf_index].rmidthreshold;
731         mbm_cf = mbm_cf_table[cf_index].cf;
732 }