Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Resource Director Technology(RDT)
  4 * - Cache Allocation code.
  5 *
  6 * Copyright (C) 2016 Intel Corporation
  7 *
  8 * Authors:
  9 *    Fenghua Yu <fenghua.yu@intel.com>
 10 *    Tony Luck <tony.luck@intel.com>
 11 *    Vikas Shivappa <vikas.shivappa@intel.com>
 12 *
 13 * More information about RDT be found in the Intel (R) x86 Architecture
 14 * Software Developer Manual June 2016, volume 3, section 17.17.
 15 */
 16
 17#define pr_fmt(fmt)	"resctrl: " fmt
 18
 
 19#include <linux/slab.h>
 20#include <linux/err.h>
 21#include <linux/cacheinfo.h>
 22#include <linux/cpuhotplug.h>
 23
 24#include <asm/intel-family.h>
 25#include <asm/resctrl.h>
 26#include "internal.h"
 27
 28/* Mutex to protect rdtgroup access. */
 29DEFINE_MUTEX(rdtgroup_mutex);
 
 
 
 
 
 
 
 30
 31/*
 32 * The cached resctrl_pqr_state is strictly per CPU and can never be
 33 * updated from a remote CPU. Functions which modify the state
 34 * are called with interrupts disabled and no preemption, which
 35 * is sufficient for the protection.
 36 */
 37DEFINE_PER_CPU(struct resctrl_pqr_state, pqr_state);
 38
 39/*
 40 * Used to store the max resource name width and max resource data width
 41 * to display the schemata in a tabular format
 42 */
 43int max_name_width, max_data_width;
 44
 45/*
 46 * Global boolean for rdt_alloc which is true if any
 47 * resource allocation is enabled.
 48 */
 49bool rdt_alloc_capable;
 50
 51static void
 52mba_wrmsr_intel(struct rdt_domain *d, struct msr_param *m,
 53		struct rdt_resource *r);
 54static void
 55cat_wrmsr(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r);
 56static void
 57mba_wrmsr_amd(struct rdt_domain *d, struct msr_param *m,
 58	      struct rdt_resource *r);
 59
 60#define domain_init(id) LIST_HEAD_INIT(rdt_resources_all[id].r_resctrl.domains)
 61
 62struct rdt_hw_resource rdt_resources_all[] = {
 63	[RDT_RESOURCE_L3] =
 64	{
 65		.r_resctrl = {
 66			.rid			= RDT_RESOURCE_L3,
 67			.name			= "L3",
 68			.cache_level		= 3,
 69			.domains		= domain_init(RDT_RESOURCE_L3),
 70			.parse_ctrlval		= parse_cbm,
 71			.format_str		= "%d=%0*x",
 72			.fflags			= RFTYPE_RES_CACHE,
 73		},
 74		.msr_base		= MSR_IA32_L3_CBM_BASE,
 75		.msr_update		= cat_wrmsr,
 76	},
 77	[RDT_RESOURCE_L2] =
 78	{
 79		.r_resctrl = {
 80			.rid			= RDT_RESOURCE_L2,
 81			.name			= "L2",
 82			.cache_level		= 2,
 83			.domains		= domain_init(RDT_RESOURCE_L2),
 84			.parse_ctrlval		= parse_cbm,
 85			.format_str		= "%d=%0*x",
 86			.fflags			= RFTYPE_RES_CACHE,
 87		},
 88		.msr_base		= MSR_IA32_L2_CBM_BASE,
 89		.msr_update		= cat_wrmsr,
 90	},
 91	[RDT_RESOURCE_MBA] =
 92	{
 93		.r_resctrl = {
 94			.rid			= RDT_RESOURCE_MBA,
 95			.name			= "MB",
 96			.cache_level		= 3,
 97			.domains		= domain_init(RDT_RESOURCE_MBA),
 98			.parse_ctrlval		= parse_bw,
 99			.format_str		= "%d=%*u",
100			.fflags			= RFTYPE_RES_MB,
101		},
102	},
 
 
 
 
 
 
 
 
 
 
 
 
103};
104
105/*
106 * cache_alloc_hsw_probe() - Have to probe for Intel haswell server CPUs
107 * as they do not have CPUID enumeration support for Cache allocation.
108 * The check for Vendor/Family/Model is not enough to guarantee that
109 * the MSRs won't #GP fault because only the following SKUs support
110 * CAT:
111 *	Intel(R) Xeon(R)  CPU E5-2658  v3  @  2.20GHz
112 *	Intel(R) Xeon(R)  CPU E5-2648L v3  @  1.80GHz
113 *	Intel(R) Xeon(R)  CPU E5-2628L v3  @  2.00GHz
114 *	Intel(R) Xeon(R)  CPU E5-2618L v3  @  2.30GHz
115 *	Intel(R) Xeon(R)  CPU E5-2608L v3  @  2.00GHz
116 *	Intel(R) Xeon(R)  CPU E5-2658A v3  @  2.20GHz
117 *
118 * Probe by trying to write the first of the L3 cache mask registers
119 * and checking that the bits stick. Max CLOSids is always 4 and max cbm length
120 * is always 20 on hsw server parts. The minimum cache bitmask length
121 * allowed for HSW server is always 2 bits. Hardcode all of them.
122 */
123static inline void cache_alloc_hsw_probe(void)
124{
125	struct rdt_hw_resource *hw_res = &rdt_resources_all[RDT_RESOURCE_L3];
126	struct rdt_resource *r  = &hw_res->r_resctrl;
127	u32 l, h, max_cbm = BIT_MASK(20) - 1;
128
129	if (wrmsr_safe(MSR_IA32_L3_CBM_BASE, max_cbm, 0))
130		return;
131
132	rdmsr(MSR_IA32_L3_CBM_BASE, l, h);
133
134	/* If all the bits were set in MSR, return success */
135	if (l != max_cbm)
136		return;
137
138	hw_res->num_closid = 4;
139	r->default_ctrl = max_cbm;
140	r->cache.cbm_len = 20;
141	r->cache.shareable_bits = 0xc0000;
142	r->cache.min_cbm_bits = 2;
 
143	r->alloc_capable = true;
144
145	rdt_alloc_capable = true;
146}
147
148bool is_mba_sc(struct rdt_resource *r)
149{
150	if (!r)
151		return rdt_resources_all[RDT_RESOURCE_MBA].r_resctrl.membw.mba_sc;
152
 
 
 
 
 
 
 
153	return r->membw.mba_sc;
154}
155
156/*
157 * rdt_get_mb_table() - get a mapping of bandwidth(b/w) percentage values
158 * exposed to user interface and the h/w understandable delay values.
159 *
160 * The non-linear delay values have the granularity of power of two
161 * and also the h/w does not guarantee a curve for configured delay
162 * values vs. actual b/w enforced.
163 * Hence we need a mapping that is pre calibrated so the user can
164 * express the memory b/w as a percentage value.
165 */
166static inline bool rdt_get_mb_table(struct rdt_resource *r)
167{
168	/*
169	 * There are no Intel SKUs as of now to support non-linear delay.
170	 */
171	pr_info("MBA b/w map not implemented for cpu:%d, model:%d",
172		boot_cpu_data.x86, boot_cpu_data.x86_model);
173
174	return false;
175}
176
177static bool __get_mem_config_intel(struct rdt_resource *r)
178{
179	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
180	union cpuid_0x10_3_eax eax;
181	union cpuid_0x10_x_edx edx;
182	u32 ebx, ecx, max_delay;
183
184	cpuid_count(0x00000010, 3, &eax.full, &ebx, &ecx, &edx.full);
185	hw_res->num_closid = edx.split.cos_max + 1;
186	max_delay = eax.split.max_delay + 1;
187	r->default_ctrl = MAX_MBA_BW;
188	r->membw.arch_needs_linear = true;
189	if (ecx & MBA_IS_LINEAR) {
190		r->membw.delay_linear = true;
191		r->membw.min_bw = MAX_MBA_BW - max_delay;
192		r->membw.bw_gran = MAX_MBA_BW - max_delay;
193	} else {
194		if (!rdt_get_mb_table(r))
195			return false;
196		r->membw.arch_needs_linear = false;
197	}
198	r->data_width = 3;
199
200	if (boot_cpu_has(X86_FEATURE_PER_THREAD_MBA))
201		r->membw.throttle_mode = THREAD_THROTTLE_PER_THREAD;
202	else
203		r->membw.throttle_mode = THREAD_THROTTLE_MAX;
204	thread_throttle_mode_init();
205
206	r->alloc_capable = true;
207
208	return true;
209}
210
211static bool __rdt_get_mem_config_amd(struct rdt_resource *r)
212{
213	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
214	union cpuid_0x10_3_eax eax;
215	union cpuid_0x10_x_edx edx;
216	u32 ebx, ecx;
217
218	cpuid_count(0x80000020, 1, &eax.full, &ebx, &ecx, &edx.full);
219	hw_res->num_closid = edx.split.cos_max + 1;
220	r->default_ctrl = MAX_MBA_BW_AMD;
 
 
 
 
 
 
221
222	/* AMD does not use delay */
223	r->membw.delay_linear = false;
224	r->membw.arch_needs_linear = false;
225
226	/*
227	 * AMD does not use memory delay throttle model to control
228	 * the allocation like Intel does.
229	 */
230	r->membw.throttle_mode = THREAD_THROTTLE_UNDEFINED;
231	r->membw.min_bw = 0;
232	r->membw.bw_gran = 1;
233	/* Max value is 2048, Data width should be 4 in decimal */
234	r->data_width = 4;
235
236	r->alloc_capable = true;
237
238	return true;
239}
240
241static void rdt_get_cache_alloc_cfg(int idx, struct rdt_resource *r)
242{
243	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
244	union cpuid_0x10_1_eax eax;
 
245	union cpuid_0x10_x_edx edx;
246	u32 ebx, ecx;
247
248	cpuid_count(0x00000010, idx, &eax.full, &ebx, &ecx, &edx.full);
249	hw_res->num_closid = edx.split.cos_max + 1;
250	r->cache.cbm_len = eax.split.cbm_len + 1;
251	r->default_ctrl = BIT_MASK(eax.split.cbm_len + 1) - 1;
252	r->cache.shareable_bits = ebx & r->default_ctrl;
253	r->data_width = (r->cache.cbm_len + 3) / 4;
 
 
254	r->alloc_capable = true;
255}
256
257static void rdt_get_cdp_config(int level)
258{
259	/*
260	 * By default, CDP is disabled. CDP can be enabled by mount parameter
261	 * "cdp" during resctrl file system mount time.
262	 */
263	rdt_resources_all[level].cdp_enabled = false;
264	rdt_resources_all[level].r_resctrl.cdp_capable = true;
265}
266
267static void rdt_get_cdp_l3_config(void)
268{
269	rdt_get_cdp_config(RDT_RESOURCE_L3);
270}
271
272static void rdt_get_cdp_l2_config(void)
273{
274	rdt_get_cdp_config(RDT_RESOURCE_L2);
275}
276
277static void
278mba_wrmsr_amd(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r)
279{
280	unsigned int i;
281	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
282	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
283
284	for (i = m->low; i < m->high; i++)
285		wrmsrl(hw_res->msr_base + i, hw_dom->ctrl_val[i]);
286}
287
288/*
289 * Map the memory b/w percentage value to delay values
290 * that can be written to QOS_MSRs.
291 * There are currently no SKUs which support non linear delay values.
292 */
293static u32 delay_bw_map(unsigned long bw, struct rdt_resource *r)
294{
295	if (r->membw.delay_linear)
296		return MAX_MBA_BW - bw;
297
298	pr_warn_once("Non Linear delay-bw map not supported but queried\n");
299	return r->default_ctrl;
300}
301
302static void
303mba_wrmsr_intel(struct rdt_domain *d, struct msr_param *m,
304		struct rdt_resource *r)
305{
306	unsigned int i;
307	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
308	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
309
310	/*  Write the delay values for mba. */
311	for (i = m->low; i < m->high; i++)
312		wrmsrl(hw_res->msr_base + i, delay_bw_map(hw_dom->ctrl_val[i], r));
313}
314
315static void
316cat_wrmsr(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r)
317{
318	unsigned int i;
319	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
320	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
321
322	for (i = m->low; i < m->high; i++)
323		wrmsrl(hw_res->msr_base + i, hw_dom->ctrl_val[i]);
324}
325
326struct rdt_domain *get_domain_from_cpu(int cpu, struct rdt_resource *r)
327{
328	struct rdt_domain *d;
329
330	list_for_each_entry(d, &r->domains, list) {
331		/* Find the domain that contains this CPU */
332		if (cpumask_test_cpu(cpu, &d->cpu_mask))
333			return d;
334	}
335
336	return NULL;
337}
338
339u32 resctrl_arch_get_num_closid(struct rdt_resource *r)
340{
341	return resctrl_to_arch_res(r)->num_closid;
342}
343
344void rdt_ctrl_update(void *arg)
345{
346	struct msr_param *m = arg;
347	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(m->res);
348	struct rdt_resource *r = m->res;
349	int cpu = smp_processor_id();
350	struct rdt_domain *d;
351
352	d = get_domain_from_cpu(cpu, r);
353	if (d) {
354		hw_res->msr_update(d, m, r);
355		return;
356	}
357	pr_warn_once("cpu %d not found in any domain for resource %s\n",
358		     cpu, r->name);
359}
360
361/*
362 * rdt_find_domain - Find a domain in a resource that matches input resource id
363 *
364 * Search resource r's domain list to find the resource id. If the resource
365 * id is found in a domain, return the domain. Otherwise, if requested by
366 * caller, return the first domain whose id is bigger than the input id.
367 * The domain list is sorted by id in ascending order.
368 */
369struct rdt_domain *rdt_find_domain(struct rdt_resource *r, int id,
370				   struct list_head **pos)
371{
372	struct rdt_domain *d;
373	struct list_head *l;
374
375	if (id < 0)
376		return ERR_PTR(-ENODEV);
377
378	list_for_each(l, &r->domains) {
379		d = list_entry(l, struct rdt_domain, list);
380		/* When id is found, return its domain. */
381		if (id == d->id)
382			return d;
383		/* Stop searching when finding id's position in sorted list. */
384		if (id < d->id)
385			break;
386	}
387
388	if (pos)
389		*pos = l;
390
391	return NULL;
392}
393
394static void setup_default_ctrlval(struct rdt_resource *r, u32 *dc)
395{
396	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
397	int i;
398
399	/*
400	 * Initialize the Control MSRs to having no control.
401	 * For Cache Allocation: Set all bits in cbm
402	 * For Memory Allocation: Set b/w requested to 100%
403	 */
404	for (i = 0; i < hw_res->num_closid; i++, dc++)
405		*dc = r->default_ctrl;
406}
407
408static void domain_free(struct rdt_hw_domain *hw_dom)
409{
410	kfree(hw_dom->arch_mbm_total);
411	kfree(hw_dom->arch_mbm_local);
412	kfree(hw_dom->ctrl_val);
413	kfree(hw_dom);
414}
415
416static int domain_setup_ctrlval(struct rdt_resource *r, struct rdt_domain *d)
417{
418	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
419	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
420	struct msr_param m;
421	u32 *dc;
422
423	dc = kmalloc_array(hw_res->num_closid, sizeof(*hw_dom->ctrl_val),
424			   GFP_KERNEL);
425	if (!dc)
426		return -ENOMEM;
427
428	hw_dom->ctrl_val = dc;
429	setup_default_ctrlval(r, dc);
430
431	m.low = 0;
432	m.high = hw_res->num_closid;
433	hw_res->msr_update(d, &m, r);
434	return 0;
435}
436
437/**
438 * arch_domain_mbm_alloc() - Allocate arch private storage for the MBM counters
439 * @num_rmid:	The size of the MBM counter array
440 * @hw_dom:	The domain that owns the allocated arrays
441 */
442static int arch_domain_mbm_alloc(u32 num_rmid, struct rdt_hw_domain *hw_dom)
443{
444	size_t tsize;
445
446	if (is_mbm_total_enabled()) {
447		tsize = sizeof(*hw_dom->arch_mbm_total);
448		hw_dom->arch_mbm_total = kcalloc(num_rmid, tsize, GFP_KERNEL);
449		if (!hw_dom->arch_mbm_total)
450			return -ENOMEM;
451	}
452	if (is_mbm_local_enabled()) {
453		tsize = sizeof(*hw_dom->arch_mbm_local);
454		hw_dom->arch_mbm_local = kcalloc(num_rmid, tsize, GFP_KERNEL);
455		if (!hw_dom->arch_mbm_local) {
456			kfree(hw_dom->arch_mbm_total);
457			hw_dom->arch_mbm_total = NULL;
458			return -ENOMEM;
459		}
460	}
461
462	return 0;
463}
464
465/*
466 * domain_add_cpu - Add a cpu to a resource's domain list.
467 *
468 * If an existing domain in the resource r's domain list matches the cpu's
469 * resource id, add the cpu in the domain.
470 *
471 * Otherwise, a new domain is allocated and inserted into the right position
472 * in the domain list sorted by id in ascending order.
473 *
474 * The order in the domain list is visible to users when we print entries
475 * in the schemata file and schemata input is validated to have the same order
476 * as this list.
477 */
478static void domain_add_cpu(int cpu, struct rdt_resource *r)
479{
480	int id = get_cpu_cacheinfo_id(cpu, r->cache_level);
481	struct list_head *add_pos = NULL;
482	struct rdt_hw_domain *hw_dom;
483	struct rdt_domain *d;
484	int err;
485
 
 
486	d = rdt_find_domain(r, id, &add_pos);
487	if (IS_ERR(d)) {
488		pr_warn("Couldn't find cache id for CPU %d\n", cpu);
489		return;
490	}
491
492	if (d) {
493		cpumask_set_cpu(cpu, &d->cpu_mask);
494		if (r->cache.arch_has_per_cpu_cfg)
495			rdt_domain_reconfigure_cdp(r);
496		return;
497	}
498
499	hw_dom = kzalloc_node(sizeof(*hw_dom), GFP_KERNEL, cpu_to_node(cpu));
500	if (!hw_dom)
501		return;
502
503	d = &hw_dom->d_resctrl;
504	d->id = id;
505	cpumask_set_cpu(cpu, &d->cpu_mask);
506
507	rdt_domain_reconfigure_cdp(r);
508
509	if (r->alloc_capable && domain_setup_ctrlval(r, d)) {
510		domain_free(hw_dom);
511		return;
512	}
513
514	if (r->mon_capable && arch_domain_mbm_alloc(r->num_rmid, hw_dom)) {
515		domain_free(hw_dom);
516		return;
517	}
518
519	list_add_tail(&d->list, add_pos);
520
521	err = resctrl_online_domain(r, d);
522	if (err) {
523		list_del(&d->list);
 
524		domain_free(hw_dom);
525	}
526}
527
528static void domain_remove_cpu(int cpu, struct rdt_resource *r)
529{
530	int id = get_cpu_cacheinfo_id(cpu, r->cache_level);
531	struct rdt_hw_domain *hw_dom;
532	struct rdt_domain *d;
533
 
 
534	d = rdt_find_domain(r, id, NULL);
535	if (IS_ERR_OR_NULL(d)) {
536		pr_warn("Couldn't find cache id for CPU %d\n", cpu);
537		return;
538	}
539	hw_dom = resctrl_to_arch_dom(d);
540
541	cpumask_clear_cpu(cpu, &d->cpu_mask);
542	if (cpumask_empty(&d->cpu_mask)) {
543		resctrl_offline_domain(r, d);
544		list_del(&d->list);
 
545
546		/*
547		 * rdt_domain "d" is going to be freed below, so clear
548		 * its pointer from pseudo_lock_region struct.
549		 */
550		if (d->plr)
551			d->plr->d = NULL;
552		domain_free(hw_dom);
553
554		return;
555	}
556
557	if (r == &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl) {
558		if (is_mbm_enabled() && cpu == d->mbm_work_cpu) {
559			cancel_delayed_work(&d->mbm_over);
560			mbm_setup_overflow_handler(d, 0);
561		}
562		if (is_llc_occupancy_enabled() && cpu == d->cqm_work_cpu &&
563		    has_busy_rmid(r, d)) {
564			cancel_delayed_work(&d->cqm_limbo);
565			cqm_setup_limbo_handler(d, 0);
566		}
567	}
568}
569
570static void clear_closid_rmid(int cpu)
571{
572	struct resctrl_pqr_state *state = this_cpu_ptr(&pqr_state);
573
574	state->default_closid = 0;
575	state->default_rmid = 0;
576	state->cur_closid = 0;
577	state->cur_rmid = 0;
578	wrmsr(MSR_IA32_PQR_ASSOC, 0, 0);
 
579}
580
581static int resctrl_online_cpu(unsigned int cpu)
582{
583	struct rdt_resource *r;
584
585	mutex_lock(&rdtgroup_mutex);
586	for_each_capable_rdt_resource(r)
587		domain_add_cpu(cpu, r);
588	/* The cpu is set in default rdtgroup after online. */
589	cpumask_set_cpu(cpu, &rdtgroup_default.cpu_mask);
590	clear_closid_rmid(cpu);
591	mutex_unlock(&rdtgroup_mutex);
592
593	return 0;
594}
595
596static void clear_childcpus(struct rdtgroup *r, unsigned int cpu)
597{
598	struct rdtgroup *cr;
599
600	list_for_each_entry(cr, &r->mon.crdtgrp_list, mon.crdtgrp_list) {
601		if (cpumask_test_and_clear_cpu(cpu, &cr->cpu_mask)) {
602			break;
603		}
604	}
605}
606
607static int resctrl_offline_cpu(unsigned int cpu)
608{
609	struct rdtgroup *rdtgrp;
610	struct rdt_resource *r;
611
612	mutex_lock(&rdtgroup_mutex);
 
 
613	for_each_capable_rdt_resource(r)
614		domain_remove_cpu(cpu, r);
615	list_for_each_entry(rdtgrp, &rdt_all_groups, rdtgroup_list) {
616		if (cpumask_test_and_clear_cpu(cpu, &rdtgrp->cpu_mask)) {
617			clear_childcpus(rdtgrp, cpu);
618			break;
619		}
620	}
621	clear_closid_rmid(cpu);
622	mutex_unlock(&rdtgroup_mutex);
623
624	return 0;
625}
626
627/*
628 * Choose a width for the resource name and resource data based on the
629 * resource that has widest name and cbm.
630 */
631static __init void rdt_init_padding(void)
632{
633	struct rdt_resource *r;
634
635	for_each_alloc_capable_rdt_resource(r) {
636		if (r->data_width > max_data_width)
637			max_data_width = r->data_width;
638	}
639}
640
641enum {
642	RDT_FLAG_CMT,
643	RDT_FLAG_MBM_TOTAL,
644	RDT_FLAG_MBM_LOCAL,
645	RDT_FLAG_L3_CAT,
646	RDT_FLAG_L3_CDP,
647	RDT_FLAG_L2_CAT,
648	RDT_FLAG_L2_CDP,
649	RDT_FLAG_MBA,
 
 
650};
651
652#define RDT_OPT(idx, n, f)	\
653[idx] = {			\
654	.name = n,		\
655	.flag = f		\
656}
657
658struct rdt_options {
659	char	*name;
660	int	flag;
661	bool	force_off, force_on;
662};
663
664static struct rdt_options rdt_options[]  __initdata = {
665	RDT_OPT(RDT_FLAG_CMT,	    "cmt",	X86_FEATURE_CQM_OCCUP_LLC),
666	RDT_OPT(RDT_FLAG_MBM_TOTAL, "mbmtotal", X86_FEATURE_CQM_MBM_TOTAL),
667	RDT_OPT(RDT_FLAG_MBM_LOCAL, "mbmlocal", X86_FEATURE_CQM_MBM_LOCAL),
668	RDT_OPT(RDT_FLAG_L3_CAT,    "l3cat",	X86_FEATURE_CAT_L3),
669	RDT_OPT(RDT_FLAG_L3_CDP,    "l3cdp",	X86_FEATURE_CDP_L3),
670	RDT_OPT(RDT_FLAG_L2_CAT,    "l2cat",	X86_FEATURE_CAT_L2),
671	RDT_OPT(RDT_FLAG_L2_CDP,    "l2cdp",	X86_FEATURE_CDP_L2),
672	RDT_OPT(RDT_FLAG_MBA,	    "mba",	X86_FEATURE_MBA),
 
 
673};
674#define NUM_RDT_OPTIONS ARRAY_SIZE(rdt_options)
675
676static int __init set_rdt_options(char *str)
677{
678	struct rdt_options *o;
679	bool force_off;
680	char *tok;
681
682	if (*str == '=')
683		str++;
684	while ((tok = strsep(&str, ",")) != NULL) {
685		force_off = *tok == '!';
686		if (force_off)
687			tok++;
688		for (o = rdt_options; o < &rdt_options[NUM_RDT_OPTIONS]; o++) {
689			if (strcmp(tok, o->name) == 0) {
690				if (force_off)
691					o->force_off = true;
692				else
693					o->force_on = true;
694				break;
695			}
696		}
697	}
698	return 1;
699}
700__setup("rdt", set_rdt_options);
701
702static bool __init rdt_cpu_has(int flag)
703{
704	bool ret = boot_cpu_has(flag);
705	struct rdt_options *o;
706
707	if (!ret)
708		return ret;
709
710	for (o = rdt_options; o < &rdt_options[NUM_RDT_OPTIONS]; o++) {
711		if (flag == o->flag) {
712			if (o->force_off)
713				ret = false;
714			if (o->force_on)
715				ret = true;
716			break;
717		}
718	}
719	return ret;
720}
721
722static __init bool get_mem_config(void)
723{
724	struct rdt_hw_resource *hw_res = &rdt_resources_all[RDT_RESOURCE_MBA];
725
726	if (!rdt_cpu_has(X86_FEATURE_MBA))
727		return false;
728
729	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
730		return __get_mem_config_intel(&hw_res->r_resctrl);
731	else if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
732		return __rdt_get_mem_config_amd(&hw_res->r_resctrl);
733
734	return false;
735}
736
 
 
 
 
 
 
 
 
 
 
 
 
 
737static __init bool get_rdt_alloc_resources(void)
738{
739	struct rdt_resource *r;
740	bool ret = false;
741
742	if (rdt_alloc_capable)
743		return true;
744
745	if (!boot_cpu_has(X86_FEATURE_RDT_A))
746		return false;
747
748	if (rdt_cpu_has(X86_FEATURE_CAT_L3)) {
749		r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
750		rdt_get_cache_alloc_cfg(1, r);
751		if (rdt_cpu_has(X86_FEATURE_CDP_L3))
752			rdt_get_cdp_l3_config();
753		ret = true;
754	}
755	if (rdt_cpu_has(X86_FEATURE_CAT_L2)) {
756		/* CPUID 0x10.2 fields are same format at 0x10.1 */
757		r = &rdt_resources_all[RDT_RESOURCE_L2].r_resctrl;
758		rdt_get_cache_alloc_cfg(2, r);
759		if (rdt_cpu_has(X86_FEATURE_CDP_L2))
760			rdt_get_cdp_l2_config();
761		ret = true;
762	}
763
764	if (get_mem_config())
765		ret = true;
766
 
 
 
767	return ret;
768}
769
770static __init bool get_rdt_mon_resources(void)
771{
772	struct rdt_resource *r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
773
774	if (rdt_cpu_has(X86_FEATURE_CQM_OCCUP_LLC))
775		rdt_mon_features |= (1 << QOS_L3_OCCUP_EVENT_ID);
776	if (rdt_cpu_has(X86_FEATURE_CQM_MBM_TOTAL))
777		rdt_mon_features |= (1 << QOS_L3_MBM_TOTAL_EVENT_ID);
778	if (rdt_cpu_has(X86_FEATURE_CQM_MBM_LOCAL))
779		rdt_mon_features |= (1 << QOS_L3_MBM_LOCAL_EVENT_ID);
780
781	if (!rdt_mon_features)
782		return false;
783
784	return !rdt_get_mon_l3_config(r);
785}
786
787static __init void __check_quirks_intel(void)
788{
789	switch (boot_cpu_data.x86_model) {
790	case INTEL_FAM6_HASWELL_X:
791		if (!rdt_options[RDT_FLAG_L3_CAT].force_off)
792			cache_alloc_hsw_probe();
793		break;
794	case INTEL_FAM6_SKYLAKE_X:
795		if (boot_cpu_data.x86_stepping <= 4)
796			set_rdt_options("!cmt,!mbmtotal,!mbmlocal,!l3cat");
797		else
798			set_rdt_options("!l3cat");
799		fallthrough;
800	case INTEL_FAM6_BROADWELL_X:
801		intel_rdt_mbm_apply_quirk();
802		break;
803	}
804}
805
806static __init void check_quirks(void)
807{
808	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
809		__check_quirks_intel();
810}
811
812static __init bool get_rdt_resources(void)
813{
814	rdt_alloc_capable = get_rdt_alloc_resources();
815	rdt_mon_capable = get_rdt_mon_resources();
816
817	return (rdt_mon_capable || rdt_alloc_capable);
818}
819
820static __init void rdt_init_res_defs_intel(void)
821{
822	struct rdt_hw_resource *hw_res;
823	struct rdt_resource *r;
824
825	for_each_rdt_resource(r) {
826		hw_res = resctrl_to_arch_res(r);
827
828		if (r->rid == RDT_RESOURCE_L3 ||
829		    r->rid == RDT_RESOURCE_L2) {
830			r->cache.arch_has_sparse_bitmaps = false;
831			r->cache.arch_has_per_cpu_cfg = false;
832			r->cache.min_cbm_bits = 1;
833		} else if (r->rid == RDT_RESOURCE_MBA) {
834			hw_res->msr_base = MSR_IA32_MBA_THRTL_BASE;
835			hw_res->msr_update = mba_wrmsr_intel;
836		}
837	}
838}
839
840static __init void rdt_init_res_defs_amd(void)
841{
842	struct rdt_hw_resource *hw_res;
843	struct rdt_resource *r;
844
845	for_each_rdt_resource(r) {
846		hw_res = resctrl_to_arch_res(r);
847
848		if (r->rid == RDT_RESOURCE_L3 ||
849		    r->rid == RDT_RESOURCE_L2) {
850			r->cache.arch_has_sparse_bitmaps = true;
851			r->cache.arch_has_per_cpu_cfg = true;
852			r->cache.min_cbm_bits = 0;
853		} else if (r->rid == RDT_RESOURCE_MBA) {
854			hw_res->msr_base = MSR_IA32_MBA_BW_BASE;
855			hw_res->msr_update = mba_wrmsr_amd;
 
 
 
856		}
857	}
858}
859
860static __init void rdt_init_res_defs(void)
861{
862	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
863		rdt_init_res_defs_intel();
864	else if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
865		rdt_init_res_defs_amd();
866}
867
868static enum cpuhp_state rdt_online;
869
870/* Runs once on the BSP during boot. */
871void resctrl_cpu_detect(struct cpuinfo_x86 *c)
872{
873	if (!cpu_has(c, X86_FEATURE_CQM_LLC)) {
874		c->x86_cache_max_rmid  = -1;
875		c->x86_cache_occ_scale = -1;
876		c->x86_cache_mbm_width_offset = -1;
877		return;
878	}
879
880	/* will be overridden if occupancy monitoring exists */
881	c->x86_cache_max_rmid = cpuid_ebx(0xf);
882
883	if (cpu_has(c, X86_FEATURE_CQM_OCCUP_LLC) ||
884	    cpu_has(c, X86_FEATURE_CQM_MBM_TOTAL) ||
885	    cpu_has(c, X86_FEATURE_CQM_MBM_LOCAL)) {
886		u32 eax, ebx, ecx, edx;
887
888		/* QoS sub-leaf, EAX=0Fh, ECX=1 */
889		cpuid_count(0xf, 1, &eax, &ebx, &ecx, &edx);
890
891		c->x86_cache_max_rmid  = ecx;
892		c->x86_cache_occ_scale = ebx;
893		c->x86_cache_mbm_width_offset = eax & 0xff;
894
895		if (c->x86_vendor == X86_VENDOR_AMD && !c->x86_cache_mbm_width_offset)
896			c->x86_cache_mbm_width_offset = MBM_CNTR_WIDTH_OFFSET_AMD;
897	}
898}
899
900static int __init resctrl_late_init(void)
901{
902	struct rdt_resource *r;
903	int state, ret;
904
905	/*
906	 * Initialize functions(or definitions) that are different
907	 * between vendors here.
908	 */
909	rdt_init_res_defs();
910
911	check_quirks();
912
913	if (!get_rdt_resources())
914		return -ENODEV;
915
916	rdt_init_padding();
917
918	state = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
919				  "x86/resctrl/cat:online:",
920				  resctrl_online_cpu, resctrl_offline_cpu);
 
921	if (state < 0)
922		return state;
923
924	ret = rdtgroup_init();
925	if (ret) {
926		cpuhp_remove_state(state);
927		return ret;
928	}
929	rdt_online = state;
930
931	for_each_alloc_capable_rdt_resource(r)
932		pr_info("%s allocation detected\n", r->name);
933
934	for_each_mon_capable_rdt_resource(r)
935		pr_info("%s monitoring detected\n", r->name);
936
937	return 0;
938}
939
940late_initcall(resctrl_late_init);
941
942static void __exit resctrl_exit(void)
943{
 
 
944	cpuhp_remove_state(rdt_online);
 
945	rdtgroup_exit();
 
 
 
946}
947
948__exitcall(resctrl_exit);
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Resource Director Technology(RDT)
  4 * - Cache Allocation code.
  5 *
  6 * Copyright (C) 2016 Intel Corporation
  7 *
  8 * Authors:
  9 *    Fenghua Yu <fenghua.yu@intel.com>
 10 *    Tony Luck <tony.luck@intel.com>
 11 *    Vikas Shivappa <vikas.shivappa@intel.com>
 12 *
 13 * More information about RDT be found in the Intel (R) x86 Architecture
 14 * Software Developer Manual June 2016, volume 3, section 17.17.
 15 */
 16
 17#define pr_fmt(fmt)	"resctrl: " fmt
 18
 19#include <linux/cpu.h>
 20#include <linux/slab.h>
 21#include <linux/err.h>
 22#include <linux/cacheinfo.h>
 23#include <linux/cpuhotplug.h>
 24
 25#include <asm/intel-family.h>
 26#include <asm/resctrl.h>
 27#include "internal.h"
 28
 29/*
 30 * rdt_domain structures are kfree()d when their last CPU goes offline,
 31 * and allocated when the first CPU in a new domain comes online.
 32 * The rdt_resource's domain list is updated when this happens. Readers of
 33 * the domain list must either take cpus_read_lock(), or rely on an RCU
 34 * read-side critical section, to avoid observing concurrent modification.
 35 * All writers take this mutex:
 36 */
 37static DEFINE_MUTEX(domain_list_lock);
 38
 39/*
 40 * The cached resctrl_pqr_state is strictly per CPU and can never be
 41 * updated from a remote CPU. Functions which modify the state
 42 * are called with interrupts disabled and no preemption, which
 43 * is sufficient for the protection.
 44 */
 45DEFINE_PER_CPU(struct resctrl_pqr_state, pqr_state);
 46
 47/*
 48 * Used to store the max resource name width and max resource data width
 49 * to display the schemata in a tabular format
 50 */
 51int max_name_width, max_data_width;
 52
 53/*
 54 * Global boolean for rdt_alloc which is true if any
 55 * resource allocation is enabled.
 56 */
 57bool rdt_alloc_capable;
 58
 59static void
 60mba_wrmsr_intel(struct rdt_domain *d, struct msr_param *m,
 61		struct rdt_resource *r);
 62static void
 63cat_wrmsr(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r);
 64static void
 65mba_wrmsr_amd(struct rdt_domain *d, struct msr_param *m,
 66	      struct rdt_resource *r);
 67
 68#define domain_init(id) LIST_HEAD_INIT(rdt_resources_all[id].r_resctrl.domains)
 69
 70struct rdt_hw_resource rdt_resources_all[] = {
 71	[RDT_RESOURCE_L3] =
 72	{
 73		.r_resctrl = {
 74			.rid			= RDT_RESOURCE_L3,
 75			.name			= "L3",
 76			.cache_level		= 3,
 77			.domains		= domain_init(RDT_RESOURCE_L3),
 78			.parse_ctrlval		= parse_cbm,
 79			.format_str		= "%d=%0*x",
 80			.fflags			= RFTYPE_RES_CACHE,
 81		},
 82		.msr_base		= MSR_IA32_L3_CBM_BASE,
 83		.msr_update		= cat_wrmsr,
 84	},
 85	[RDT_RESOURCE_L2] =
 86	{
 87		.r_resctrl = {
 88			.rid			= RDT_RESOURCE_L2,
 89			.name			= "L2",
 90			.cache_level		= 2,
 91			.domains		= domain_init(RDT_RESOURCE_L2),
 92			.parse_ctrlval		= parse_cbm,
 93			.format_str		= "%d=%0*x",
 94			.fflags			= RFTYPE_RES_CACHE,
 95		},
 96		.msr_base		= MSR_IA32_L2_CBM_BASE,
 97		.msr_update		= cat_wrmsr,
 98	},
 99	[RDT_RESOURCE_MBA] =
100	{
101		.r_resctrl = {
102			.rid			= RDT_RESOURCE_MBA,
103			.name			= "MB",
104			.cache_level		= 3,
105			.domains		= domain_init(RDT_RESOURCE_MBA),
106			.parse_ctrlval		= parse_bw,
107			.format_str		= "%d=%*u",
108			.fflags			= RFTYPE_RES_MB,
109		},
110	},
111	[RDT_RESOURCE_SMBA] =
112	{
113		.r_resctrl = {
114			.rid			= RDT_RESOURCE_SMBA,
115			.name			= "SMBA",
116			.cache_level		= 3,
117			.domains		= domain_init(RDT_RESOURCE_SMBA),
118			.parse_ctrlval		= parse_bw,
119			.format_str		= "%d=%*u",
120			.fflags			= RFTYPE_RES_MB,
121		},
122	},
123};
124
125/*
126 * cache_alloc_hsw_probe() - Have to probe for Intel haswell server CPUs
127 * as they do not have CPUID enumeration support for Cache allocation.
128 * The check for Vendor/Family/Model is not enough to guarantee that
129 * the MSRs won't #GP fault because only the following SKUs support
130 * CAT:
131 *	Intel(R) Xeon(R)  CPU E5-2658  v3  @  2.20GHz
132 *	Intel(R) Xeon(R)  CPU E5-2648L v3  @  1.80GHz
133 *	Intel(R) Xeon(R)  CPU E5-2628L v3  @  2.00GHz
134 *	Intel(R) Xeon(R)  CPU E5-2618L v3  @  2.30GHz
135 *	Intel(R) Xeon(R)  CPU E5-2608L v3  @  2.00GHz
136 *	Intel(R) Xeon(R)  CPU E5-2658A v3  @  2.20GHz
137 *
138 * Probe by trying to write the first of the L3 cache mask registers
139 * and checking that the bits stick. Max CLOSids is always 4 and max cbm length
140 * is always 20 on hsw server parts. The minimum cache bitmask length
141 * allowed for HSW server is always 2 bits. Hardcode all of them.
142 */
143static inline void cache_alloc_hsw_probe(void)
144{
145	struct rdt_hw_resource *hw_res = &rdt_resources_all[RDT_RESOURCE_L3];
146	struct rdt_resource *r  = &hw_res->r_resctrl;
147	u64 max_cbm = BIT_ULL_MASK(20) - 1, l3_cbm_0;
148
149	if (wrmsrl_safe(MSR_IA32_L3_CBM_BASE, max_cbm))
150		return;
151
152	rdmsrl(MSR_IA32_L3_CBM_BASE, l3_cbm_0);
153
154	/* If all the bits were set in MSR, return success */
155	if (l3_cbm_0 != max_cbm)
156		return;
157
158	hw_res->num_closid = 4;
159	r->default_ctrl = max_cbm;
160	r->cache.cbm_len = 20;
161	r->cache.shareable_bits = 0xc0000;
162	r->cache.min_cbm_bits = 2;
163	r->cache.arch_has_sparse_bitmasks = false;
164	r->alloc_capable = true;
165
166	rdt_alloc_capable = true;
167}
168
169bool is_mba_sc(struct rdt_resource *r)
170{
171	if (!r)
172		return rdt_resources_all[RDT_RESOURCE_MBA].r_resctrl.membw.mba_sc;
173
174	/*
175	 * The software controller support is only applicable to MBA resource.
176	 * Make sure to check for resource type.
177	 */
178	if (r->rid != RDT_RESOURCE_MBA)
179		return false;
180
181	return r->membw.mba_sc;
182}
183
184/*
185 * rdt_get_mb_table() - get a mapping of bandwidth(b/w) percentage values
186 * exposed to user interface and the h/w understandable delay values.
187 *
188 * The non-linear delay values have the granularity of power of two
189 * and also the h/w does not guarantee a curve for configured delay
190 * values vs. actual b/w enforced.
191 * Hence we need a mapping that is pre calibrated so the user can
192 * express the memory b/w as a percentage value.
193 */
194static inline bool rdt_get_mb_table(struct rdt_resource *r)
195{
196	/*
197	 * There are no Intel SKUs as of now to support non-linear delay.
198	 */
199	pr_info("MBA b/w map not implemented for cpu:%d, model:%d",
200		boot_cpu_data.x86, boot_cpu_data.x86_model);
201
202	return false;
203}
204
205static bool __get_mem_config_intel(struct rdt_resource *r)
206{
207	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
208	union cpuid_0x10_3_eax eax;
209	union cpuid_0x10_x_edx edx;
210	u32 ebx, ecx, max_delay;
211
212	cpuid_count(0x00000010, 3, &eax.full, &ebx, &ecx, &edx.full);
213	hw_res->num_closid = edx.split.cos_max + 1;
214	max_delay = eax.split.max_delay + 1;
215	r->default_ctrl = MAX_MBA_BW;
216	r->membw.arch_needs_linear = true;
217	if (ecx & MBA_IS_LINEAR) {
218		r->membw.delay_linear = true;
219		r->membw.min_bw = MAX_MBA_BW - max_delay;
220		r->membw.bw_gran = MAX_MBA_BW - max_delay;
221	} else {
222		if (!rdt_get_mb_table(r))
223			return false;
224		r->membw.arch_needs_linear = false;
225	}
226	r->data_width = 3;
227
228	if (boot_cpu_has(X86_FEATURE_PER_THREAD_MBA))
229		r->membw.throttle_mode = THREAD_THROTTLE_PER_THREAD;
230	else
231		r->membw.throttle_mode = THREAD_THROTTLE_MAX;
232	thread_throttle_mode_init();
233
234	r->alloc_capable = true;
235
236	return true;
237}
238
239static bool __rdt_get_mem_config_amd(struct rdt_resource *r)
240{
241	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
242	u32 eax, ebx, ecx, edx, subleaf;
 
 
243
244	/*
245	 * Query CPUID_Fn80000020_EDX_x01 for MBA and
246	 * CPUID_Fn80000020_EDX_x02 for SMBA
247	 */
248	subleaf = (r->rid == RDT_RESOURCE_SMBA) ? 2 :  1;
249
250	cpuid_count(0x80000020, subleaf, &eax, &ebx, &ecx, &edx);
251	hw_res->num_closid = edx + 1;
252	r->default_ctrl = 1 << eax;
253
254	/* AMD does not use delay */
255	r->membw.delay_linear = false;
256	r->membw.arch_needs_linear = false;
257
258	/*
259	 * AMD does not use memory delay throttle model to control
260	 * the allocation like Intel does.
261	 */
262	r->membw.throttle_mode = THREAD_THROTTLE_UNDEFINED;
263	r->membw.min_bw = 0;
264	r->membw.bw_gran = 1;
265	/* Max value is 2048, Data width should be 4 in decimal */
266	r->data_width = 4;
267
268	r->alloc_capable = true;
269
270	return true;
271}
272
273static void rdt_get_cache_alloc_cfg(int idx, struct rdt_resource *r)
274{
275	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
276	union cpuid_0x10_1_eax eax;
277	union cpuid_0x10_x_ecx ecx;
278	union cpuid_0x10_x_edx edx;
279	u32 ebx;
280
281	cpuid_count(0x00000010, idx, &eax.full, &ebx, &ecx.full, &edx.full);
282	hw_res->num_closid = edx.split.cos_max + 1;
283	r->cache.cbm_len = eax.split.cbm_len + 1;
284	r->default_ctrl = BIT_MASK(eax.split.cbm_len + 1) - 1;
285	r->cache.shareable_bits = ebx & r->default_ctrl;
286	r->data_width = (r->cache.cbm_len + 3) / 4;
287	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
288		r->cache.arch_has_sparse_bitmasks = ecx.split.noncont;
289	r->alloc_capable = true;
290}
291
292static void rdt_get_cdp_config(int level)
293{
294	/*
295	 * By default, CDP is disabled. CDP can be enabled by mount parameter
296	 * "cdp" during resctrl file system mount time.
297	 */
298	rdt_resources_all[level].cdp_enabled = false;
299	rdt_resources_all[level].r_resctrl.cdp_capable = true;
300}
301
302static void rdt_get_cdp_l3_config(void)
303{
304	rdt_get_cdp_config(RDT_RESOURCE_L3);
305}
306
307static void rdt_get_cdp_l2_config(void)
308{
309	rdt_get_cdp_config(RDT_RESOURCE_L2);
310}
311
312static void
313mba_wrmsr_amd(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r)
314{
315	unsigned int i;
316	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
317	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
318
319	for (i = m->low; i < m->high; i++)
320		wrmsrl(hw_res->msr_base + i, hw_dom->ctrl_val[i]);
321}
322
323/*
324 * Map the memory b/w percentage value to delay values
325 * that can be written to QOS_MSRs.
326 * There are currently no SKUs which support non linear delay values.
327 */
328static u32 delay_bw_map(unsigned long bw, struct rdt_resource *r)
329{
330	if (r->membw.delay_linear)
331		return MAX_MBA_BW - bw;
332
333	pr_warn_once("Non Linear delay-bw map not supported but queried\n");
334	return r->default_ctrl;
335}
336
337static void
338mba_wrmsr_intel(struct rdt_domain *d, struct msr_param *m,
339		struct rdt_resource *r)
340{
341	unsigned int i;
342	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
343	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
344
345	/*  Write the delay values for mba. */
346	for (i = m->low; i < m->high; i++)
347		wrmsrl(hw_res->msr_base + i, delay_bw_map(hw_dom->ctrl_val[i], r));
348}
349
350static void
351cat_wrmsr(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r)
352{
353	unsigned int i;
354	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
355	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
356
357	for (i = m->low; i < m->high; i++)
358		wrmsrl(hw_res->msr_base + i, hw_dom->ctrl_val[i]);
359}
360
361struct rdt_domain *get_domain_from_cpu(int cpu, struct rdt_resource *r)
362{
363	struct rdt_domain *d;
364
365	list_for_each_entry(d, &r->domains, list) {
366		/* Find the domain that contains this CPU */
367		if (cpumask_test_cpu(cpu, &d->cpu_mask))
368			return d;
369	}
370
371	return NULL;
372}
373
374u32 resctrl_arch_get_num_closid(struct rdt_resource *r)
375{
376	return resctrl_to_arch_res(r)->num_closid;
377}
378
379void rdt_ctrl_update(void *arg)
380{
381	struct msr_param *m = arg;
382	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(m->res);
383	struct rdt_resource *r = m->res;
384	int cpu = smp_processor_id();
385	struct rdt_domain *d;
386
387	d = get_domain_from_cpu(cpu, r);
388	if (d) {
389		hw_res->msr_update(d, m, r);
390		return;
391	}
392	pr_warn_once("cpu %d not found in any domain for resource %s\n",
393		     cpu, r->name);
394}
395
396/*
397 * rdt_find_domain - Find a domain in a resource that matches input resource id
398 *
399 * Search resource r's domain list to find the resource id. If the resource
400 * id is found in a domain, return the domain. Otherwise, if requested by
401 * caller, return the first domain whose id is bigger than the input id.
402 * The domain list is sorted by id in ascending order.
403 */
404struct rdt_domain *rdt_find_domain(struct rdt_resource *r, int id,
405				   struct list_head **pos)
406{
407	struct rdt_domain *d;
408	struct list_head *l;
409
410	if (id < 0)
411		return ERR_PTR(-ENODEV);
412
413	list_for_each(l, &r->domains) {
414		d = list_entry(l, struct rdt_domain, list);
415		/* When id is found, return its domain. */
416		if (id == d->id)
417			return d;
418		/* Stop searching when finding id's position in sorted list. */
419		if (id < d->id)
420			break;
421	}
422
423	if (pos)
424		*pos = l;
425
426	return NULL;
427}
428
429static void setup_default_ctrlval(struct rdt_resource *r, u32 *dc)
430{
431	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
432	int i;
433
434	/*
435	 * Initialize the Control MSRs to having no control.
436	 * For Cache Allocation: Set all bits in cbm
437	 * For Memory Allocation: Set b/w requested to 100%
438	 */
439	for (i = 0; i < hw_res->num_closid; i++, dc++)
440		*dc = r->default_ctrl;
441}
442
443static void domain_free(struct rdt_hw_domain *hw_dom)
444{
445	kfree(hw_dom->arch_mbm_total);
446	kfree(hw_dom->arch_mbm_local);
447	kfree(hw_dom->ctrl_val);
448	kfree(hw_dom);
449}
450
451static int domain_setup_ctrlval(struct rdt_resource *r, struct rdt_domain *d)
452{
453	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
454	struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
455	struct msr_param m;
456	u32 *dc;
457
458	dc = kmalloc_array(hw_res->num_closid, sizeof(*hw_dom->ctrl_val),
459			   GFP_KERNEL);
460	if (!dc)
461		return -ENOMEM;
462
463	hw_dom->ctrl_val = dc;
464	setup_default_ctrlval(r, dc);
465
466	m.low = 0;
467	m.high = hw_res->num_closid;
468	hw_res->msr_update(d, &m, r);
469	return 0;
470}
471
472/**
473 * arch_domain_mbm_alloc() - Allocate arch private storage for the MBM counters
474 * @num_rmid:	The size of the MBM counter array
475 * @hw_dom:	The domain that owns the allocated arrays
476 */
477static int arch_domain_mbm_alloc(u32 num_rmid, struct rdt_hw_domain *hw_dom)
478{
479	size_t tsize;
480
481	if (is_mbm_total_enabled()) {
482		tsize = sizeof(*hw_dom->arch_mbm_total);
483		hw_dom->arch_mbm_total = kcalloc(num_rmid, tsize, GFP_KERNEL);
484		if (!hw_dom->arch_mbm_total)
485			return -ENOMEM;
486	}
487	if (is_mbm_local_enabled()) {
488		tsize = sizeof(*hw_dom->arch_mbm_local);
489		hw_dom->arch_mbm_local = kcalloc(num_rmid, tsize, GFP_KERNEL);
490		if (!hw_dom->arch_mbm_local) {
491			kfree(hw_dom->arch_mbm_total);
492			hw_dom->arch_mbm_total = NULL;
493			return -ENOMEM;
494		}
495	}
496
497	return 0;
498}
499
500/*
501 * domain_add_cpu - Add a cpu to a resource's domain list.
502 *
503 * If an existing domain in the resource r's domain list matches the cpu's
504 * resource id, add the cpu in the domain.
505 *
506 * Otherwise, a new domain is allocated and inserted into the right position
507 * in the domain list sorted by id in ascending order.
508 *
509 * The order in the domain list is visible to users when we print entries
510 * in the schemata file and schemata input is validated to have the same order
511 * as this list.
512 */
513static void domain_add_cpu(int cpu, struct rdt_resource *r)
514{
515	int id = get_cpu_cacheinfo_id(cpu, r->cache_level);
516	struct list_head *add_pos = NULL;
517	struct rdt_hw_domain *hw_dom;
518	struct rdt_domain *d;
519	int err;
520
521	lockdep_assert_held(&domain_list_lock);
522
523	d = rdt_find_domain(r, id, &add_pos);
524	if (IS_ERR(d)) {
525		pr_warn("Couldn't find cache id for CPU %d\n", cpu);
526		return;
527	}
528
529	if (d) {
530		cpumask_set_cpu(cpu, &d->cpu_mask);
531		if (r->cache.arch_has_per_cpu_cfg)
532			rdt_domain_reconfigure_cdp(r);
533		return;
534	}
535
536	hw_dom = kzalloc_node(sizeof(*hw_dom), GFP_KERNEL, cpu_to_node(cpu));
537	if (!hw_dom)
538		return;
539
540	d = &hw_dom->d_resctrl;
541	d->id = id;
542	cpumask_set_cpu(cpu, &d->cpu_mask);
543
544	rdt_domain_reconfigure_cdp(r);
545
546	if (r->alloc_capable && domain_setup_ctrlval(r, d)) {
547		domain_free(hw_dom);
548		return;
549	}
550
551	if (r->mon_capable && arch_domain_mbm_alloc(r->num_rmid, hw_dom)) {
552		domain_free(hw_dom);
553		return;
554	}
555
556	list_add_tail_rcu(&d->list, add_pos);
557
558	err = resctrl_online_domain(r, d);
559	if (err) {
560		list_del_rcu(&d->list);
561		synchronize_rcu();
562		domain_free(hw_dom);
563	}
564}
565
566static void domain_remove_cpu(int cpu, struct rdt_resource *r)
567{
568	int id = get_cpu_cacheinfo_id(cpu, r->cache_level);
569	struct rdt_hw_domain *hw_dom;
570	struct rdt_domain *d;
571
572	lockdep_assert_held(&domain_list_lock);
573
574	d = rdt_find_domain(r, id, NULL);
575	if (IS_ERR_OR_NULL(d)) {
576		pr_warn("Couldn't find cache id for CPU %d\n", cpu);
577		return;
578	}
579	hw_dom = resctrl_to_arch_dom(d);
580
581	cpumask_clear_cpu(cpu, &d->cpu_mask);
582	if (cpumask_empty(&d->cpu_mask)) {
583		resctrl_offline_domain(r, d);
584		list_del_rcu(&d->list);
585		synchronize_rcu();
586
587		/*
588		 * rdt_domain "d" is going to be freed below, so clear
589		 * its pointer from pseudo_lock_region struct.
590		 */
591		if (d->plr)
592			d->plr->d = NULL;
593		domain_free(hw_dom);
594
595		return;
596	}
 
 
 
 
 
 
 
 
 
 
 
 
597}
598
599static void clear_closid_rmid(int cpu)
600{
601	struct resctrl_pqr_state *state = this_cpu_ptr(&pqr_state);
602
603	state->default_closid = RESCTRL_RESERVED_CLOSID;
604	state->default_rmid = RESCTRL_RESERVED_RMID;
605	state->cur_closid = RESCTRL_RESERVED_CLOSID;
606	state->cur_rmid = RESCTRL_RESERVED_RMID;
607	wrmsr(MSR_IA32_PQR_ASSOC, RESCTRL_RESERVED_RMID,
608	      RESCTRL_RESERVED_CLOSID);
609}
610
611static int resctrl_arch_online_cpu(unsigned int cpu)
612{
613	struct rdt_resource *r;
614
615	mutex_lock(&domain_list_lock);
616	for_each_capable_rdt_resource(r)
617		domain_add_cpu(cpu, r);
618	mutex_unlock(&domain_list_lock);
619
620	clear_closid_rmid(cpu);
621	resctrl_online_cpu(cpu);
622
623	return 0;
624}
625
626static int resctrl_arch_offline_cpu(unsigned int cpu)
627{
 
 
 
 
 
 
 
 
 
 
 
 
628	struct rdt_resource *r;
629
630	resctrl_offline_cpu(cpu);
631
632	mutex_lock(&domain_list_lock);
633	for_each_capable_rdt_resource(r)
634		domain_remove_cpu(cpu, r);
635	mutex_unlock(&domain_list_lock);
636
 
 
 
 
637	clear_closid_rmid(cpu);
 
638
639	return 0;
640}
641
642/*
643 * Choose a width for the resource name and resource data based on the
644 * resource that has widest name and cbm.
645 */
646static __init void rdt_init_padding(void)
647{
648	struct rdt_resource *r;
649
650	for_each_alloc_capable_rdt_resource(r) {
651		if (r->data_width > max_data_width)
652			max_data_width = r->data_width;
653	}
654}
655
656enum {
657	RDT_FLAG_CMT,
658	RDT_FLAG_MBM_TOTAL,
659	RDT_FLAG_MBM_LOCAL,
660	RDT_FLAG_L3_CAT,
661	RDT_FLAG_L3_CDP,
662	RDT_FLAG_L2_CAT,
663	RDT_FLAG_L2_CDP,
664	RDT_FLAG_MBA,
665	RDT_FLAG_SMBA,
666	RDT_FLAG_BMEC,
667};
668
669#define RDT_OPT(idx, n, f)	\
670[idx] = {			\
671	.name = n,		\
672	.flag = f		\
673}
674
675struct rdt_options {
676	char	*name;
677	int	flag;
678	bool	force_off, force_on;
679};
680
681static struct rdt_options rdt_options[]  __initdata = {
682	RDT_OPT(RDT_FLAG_CMT,	    "cmt",	X86_FEATURE_CQM_OCCUP_LLC),
683	RDT_OPT(RDT_FLAG_MBM_TOTAL, "mbmtotal", X86_FEATURE_CQM_MBM_TOTAL),
684	RDT_OPT(RDT_FLAG_MBM_LOCAL, "mbmlocal", X86_FEATURE_CQM_MBM_LOCAL),
685	RDT_OPT(RDT_FLAG_L3_CAT,    "l3cat",	X86_FEATURE_CAT_L3),
686	RDT_OPT(RDT_FLAG_L3_CDP,    "l3cdp",	X86_FEATURE_CDP_L3),
687	RDT_OPT(RDT_FLAG_L2_CAT,    "l2cat",	X86_FEATURE_CAT_L2),
688	RDT_OPT(RDT_FLAG_L2_CDP,    "l2cdp",	X86_FEATURE_CDP_L2),
689	RDT_OPT(RDT_FLAG_MBA,	    "mba",	X86_FEATURE_MBA),
690	RDT_OPT(RDT_FLAG_SMBA,	    "smba",	X86_FEATURE_SMBA),
691	RDT_OPT(RDT_FLAG_BMEC,	    "bmec",	X86_FEATURE_BMEC),
692};
693#define NUM_RDT_OPTIONS ARRAY_SIZE(rdt_options)
694
695static int __init set_rdt_options(char *str)
696{
697	struct rdt_options *o;
698	bool force_off;
699	char *tok;
700
701	if (*str == '=')
702		str++;
703	while ((tok = strsep(&str, ",")) != NULL) {
704		force_off = *tok == '!';
705		if (force_off)
706			tok++;
707		for (o = rdt_options; o < &rdt_options[NUM_RDT_OPTIONS]; o++) {
708			if (strcmp(tok, o->name) == 0) {
709				if (force_off)
710					o->force_off = true;
711				else
712					o->force_on = true;
713				break;
714			}
715		}
716	}
717	return 1;
718}
719__setup("rdt", set_rdt_options);
720
721bool __init rdt_cpu_has(int flag)
722{
723	bool ret = boot_cpu_has(flag);
724	struct rdt_options *o;
725
726	if (!ret)
727		return ret;
728
729	for (o = rdt_options; o < &rdt_options[NUM_RDT_OPTIONS]; o++) {
730		if (flag == o->flag) {
731			if (o->force_off)
732				ret = false;
733			if (o->force_on)
734				ret = true;
735			break;
736		}
737	}
738	return ret;
739}
740
741static __init bool get_mem_config(void)
742{
743	struct rdt_hw_resource *hw_res = &rdt_resources_all[RDT_RESOURCE_MBA];
744
745	if (!rdt_cpu_has(X86_FEATURE_MBA))
746		return false;
747
748	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
749		return __get_mem_config_intel(&hw_res->r_resctrl);
750	else if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
751		return __rdt_get_mem_config_amd(&hw_res->r_resctrl);
752
753	return false;
754}
755
756static __init bool get_slow_mem_config(void)
757{
758	struct rdt_hw_resource *hw_res = &rdt_resources_all[RDT_RESOURCE_SMBA];
759
760	if (!rdt_cpu_has(X86_FEATURE_SMBA))
761		return false;
762
763	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
764		return __rdt_get_mem_config_amd(&hw_res->r_resctrl);
765
766	return false;
767}
768
769static __init bool get_rdt_alloc_resources(void)
770{
771	struct rdt_resource *r;
772	bool ret = false;
773
774	if (rdt_alloc_capable)
775		return true;
776
777	if (!boot_cpu_has(X86_FEATURE_RDT_A))
778		return false;
779
780	if (rdt_cpu_has(X86_FEATURE_CAT_L3)) {
781		r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
782		rdt_get_cache_alloc_cfg(1, r);
783		if (rdt_cpu_has(X86_FEATURE_CDP_L3))
784			rdt_get_cdp_l3_config();
785		ret = true;
786	}
787	if (rdt_cpu_has(X86_FEATURE_CAT_L2)) {
788		/* CPUID 0x10.2 fields are same format at 0x10.1 */
789		r = &rdt_resources_all[RDT_RESOURCE_L2].r_resctrl;
790		rdt_get_cache_alloc_cfg(2, r);
791		if (rdt_cpu_has(X86_FEATURE_CDP_L2))
792			rdt_get_cdp_l2_config();
793		ret = true;
794	}
795
796	if (get_mem_config())
797		ret = true;
798
799	if (get_slow_mem_config())
800		ret = true;
801
802	return ret;
803}
804
805static __init bool get_rdt_mon_resources(void)
806{
807	struct rdt_resource *r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
808
809	if (rdt_cpu_has(X86_FEATURE_CQM_OCCUP_LLC))
810		rdt_mon_features |= (1 << QOS_L3_OCCUP_EVENT_ID);
811	if (rdt_cpu_has(X86_FEATURE_CQM_MBM_TOTAL))
812		rdt_mon_features |= (1 << QOS_L3_MBM_TOTAL_EVENT_ID);
813	if (rdt_cpu_has(X86_FEATURE_CQM_MBM_LOCAL))
814		rdt_mon_features |= (1 << QOS_L3_MBM_LOCAL_EVENT_ID);
815
816	if (!rdt_mon_features)
817		return false;
818
819	return !rdt_get_mon_l3_config(r);
820}
821
822static __init void __check_quirks_intel(void)
823{
824	switch (boot_cpu_data.x86_model) {
825	case INTEL_FAM6_HASWELL_X:
826		if (!rdt_options[RDT_FLAG_L3_CAT].force_off)
827			cache_alloc_hsw_probe();
828		break;
829	case INTEL_FAM6_SKYLAKE_X:
830		if (boot_cpu_data.x86_stepping <= 4)
831			set_rdt_options("!cmt,!mbmtotal,!mbmlocal,!l3cat");
832		else
833			set_rdt_options("!l3cat");
834		fallthrough;
835	case INTEL_FAM6_BROADWELL_X:
836		intel_rdt_mbm_apply_quirk();
837		break;
838	}
839}
840
841static __init void check_quirks(void)
842{
843	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
844		__check_quirks_intel();
845}
846
847static __init bool get_rdt_resources(void)
848{
849	rdt_alloc_capable = get_rdt_alloc_resources();
850	rdt_mon_capable = get_rdt_mon_resources();
851
852	return (rdt_mon_capable || rdt_alloc_capable);
853}
854
855static __init void rdt_init_res_defs_intel(void)
856{
857	struct rdt_hw_resource *hw_res;
858	struct rdt_resource *r;
859
860	for_each_rdt_resource(r) {
861		hw_res = resctrl_to_arch_res(r);
862
863		if (r->rid == RDT_RESOURCE_L3 ||
864		    r->rid == RDT_RESOURCE_L2) {
 
865			r->cache.arch_has_per_cpu_cfg = false;
866			r->cache.min_cbm_bits = 1;
867		} else if (r->rid == RDT_RESOURCE_MBA) {
868			hw_res->msr_base = MSR_IA32_MBA_THRTL_BASE;
869			hw_res->msr_update = mba_wrmsr_intel;
870		}
871	}
872}
873
874static __init void rdt_init_res_defs_amd(void)
875{
876	struct rdt_hw_resource *hw_res;
877	struct rdt_resource *r;
878
879	for_each_rdt_resource(r) {
880		hw_res = resctrl_to_arch_res(r);
881
882		if (r->rid == RDT_RESOURCE_L3 ||
883		    r->rid == RDT_RESOURCE_L2) {
884			r->cache.arch_has_sparse_bitmasks = true;
885			r->cache.arch_has_per_cpu_cfg = true;
886			r->cache.min_cbm_bits = 0;
887		} else if (r->rid == RDT_RESOURCE_MBA) {
888			hw_res->msr_base = MSR_IA32_MBA_BW_BASE;
889			hw_res->msr_update = mba_wrmsr_amd;
890		} else if (r->rid == RDT_RESOURCE_SMBA) {
891			hw_res->msr_base = MSR_IA32_SMBA_BW_BASE;
892			hw_res->msr_update = mba_wrmsr_amd;
893		}
894	}
895}
896
897static __init void rdt_init_res_defs(void)
898{
899	if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
900		rdt_init_res_defs_intel();
901	else if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
902		rdt_init_res_defs_amd();
903}
904
905static enum cpuhp_state rdt_online;
906
907/* Runs once on the BSP during boot. */
908void resctrl_cpu_detect(struct cpuinfo_x86 *c)
909{
910	if (!cpu_has(c, X86_FEATURE_CQM_LLC)) {
911		c->x86_cache_max_rmid  = -1;
912		c->x86_cache_occ_scale = -1;
913		c->x86_cache_mbm_width_offset = -1;
914		return;
915	}
916
917	/* will be overridden if occupancy monitoring exists */
918	c->x86_cache_max_rmid = cpuid_ebx(0xf);
919
920	if (cpu_has(c, X86_FEATURE_CQM_OCCUP_LLC) ||
921	    cpu_has(c, X86_FEATURE_CQM_MBM_TOTAL) ||
922	    cpu_has(c, X86_FEATURE_CQM_MBM_LOCAL)) {
923		u32 eax, ebx, ecx, edx;
924
925		/* QoS sub-leaf, EAX=0Fh, ECX=1 */
926		cpuid_count(0xf, 1, &eax, &ebx, &ecx, &edx);
927
928		c->x86_cache_max_rmid  = ecx;
929		c->x86_cache_occ_scale = ebx;
930		c->x86_cache_mbm_width_offset = eax & 0xff;
931
932		if (c->x86_vendor == X86_VENDOR_AMD && !c->x86_cache_mbm_width_offset)
933			c->x86_cache_mbm_width_offset = MBM_CNTR_WIDTH_OFFSET_AMD;
934	}
935}
936
937static int __init resctrl_late_init(void)
938{
939	struct rdt_resource *r;
940	int state, ret;
941
942	/*
943	 * Initialize functions(or definitions) that are different
944	 * between vendors here.
945	 */
946	rdt_init_res_defs();
947
948	check_quirks();
949
950	if (!get_rdt_resources())
951		return -ENODEV;
952
953	rdt_init_padding();
954
955	state = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
956				  "x86/resctrl/cat:online:",
957				  resctrl_arch_online_cpu,
958				  resctrl_arch_offline_cpu);
959	if (state < 0)
960		return state;
961
962	ret = rdtgroup_init();
963	if (ret) {
964		cpuhp_remove_state(state);
965		return ret;
966	}
967	rdt_online = state;
968
969	for_each_alloc_capable_rdt_resource(r)
970		pr_info("%s allocation detected\n", r->name);
971
972	for_each_mon_capable_rdt_resource(r)
973		pr_info("%s monitoring detected\n", r->name);
974
975	return 0;
976}
977
978late_initcall(resctrl_late_init);
979
980static void __exit resctrl_exit(void)
981{
982	struct rdt_resource *r = &rdt_resources_all[RDT_RESOURCE_L3].r_resctrl;
983
984	cpuhp_remove_state(rdt_online);
985
986	rdtgroup_exit();
987
988	if (r->mon_capable)
989		rdt_put_mon_l3_config();
990}
991
992__exitcall(resctrl_exit);