Linux Audio

Check our new training course

Loading...
v5.14.15
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _ASM_X86_RESCTRL_INTERNAL_H
  3#define _ASM_X86_RESCTRL_INTERNAL_H
  4
 
  5#include <linux/sched.h>
  6#include <linux/kernfs.h>
  7#include <linux/fs_context.h>
  8#include <linux/jump_label.h>
 
  9
 10#define MSR_IA32_L3_QOS_CFG		0xc81
 11#define MSR_IA32_L2_QOS_CFG		0xc82
 12#define MSR_IA32_L3_CBM_BASE		0xc90
 13#define MSR_IA32_L2_CBM_BASE		0xd10
 14#define MSR_IA32_MBA_THRTL_BASE		0xd50
 15#define MSR_IA32_MBA_BW_BASE		0xc0000200
 16
 17#define MSR_IA32_QM_CTR			0x0c8e
 18#define MSR_IA32_QM_EVTSEL		0x0c8d
 19
 20#define L3_QOS_CDP_ENABLE		0x01ULL
 21
 22#define L2_QOS_CDP_ENABLE		0x01ULL
 23
 24/*
 25 * Event IDs are used to program IA32_QM_EVTSEL before reading event
 26 * counter from IA32_QM_CTR
 27 */
 28#define QOS_L3_OCCUP_EVENT_ID		0x01
 29#define QOS_L3_MBM_TOTAL_EVENT_ID	0x02
 30#define QOS_L3_MBM_LOCAL_EVENT_ID	0x03
 31
 32#define CQM_LIMBOCHECK_INTERVAL	1000
 33
 34#define MBM_CNTR_WIDTH_BASE		24
 35#define MBM_OVERFLOW_INTERVAL		1000
 36#define MAX_MBA_BW			100u
 37#define MBA_IS_LINEAR			0x4
 38#define MBA_MAX_MBPS			U32_MAX
 39#define MAX_MBA_BW_AMD			0x800
 40#define MBM_CNTR_WIDTH_OFFSET_AMD	20
 41
 42#define RMID_VAL_ERROR			BIT_ULL(63)
 43#define RMID_VAL_UNAVAIL		BIT_ULL(62)
 44/*
 45 * With the above fields in use 62 bits remain in MSR_IA32_QM_CTR for
 46 * data to be returned. The counter width is discovered from the hardware
 47 * as an offset from MBM_CNTR_WIDTH_BASE.
 48 */
 49#define MBM_CNTR_WIDTH_OFFSET_MAX (62 - MBM_CNTR_WIDTH_BASE)
 50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 51
 52struct rdt_fs_context {
 53	struct kernfs_fs_context	kfc;
 54	bool				enable_cdpl2;
 55	bool				enable_cdpl3;
 56	bool				enable_mba_mbps;
 
 57};
 58
 59static inline struct rdt_fs_context *rdt_fc2context(struct fs_context *fc)
 60{
 61	struct kernfs_fs_context *kfc = fc->fs_private;
 62
 63	return container_of(kfc, struct rdt_fs_context, kfc);
 64}
 65
 66DECLARE_STATIC_KEY_FALSE(rdt_enable_key);
 67DECLARE_STATIC_KEY_FALSE(rdt_mon_enable_key);
 68
 69/**
 70 * struct mon_evt - Entry in the event list of a resource
 71 * @evtid:		event id
 72 * @name:		name of the event
 
 73 * @list:		entry in &rdt_resource->evt_list
 74 */
 75struct mon_evt {
 76	u32			evtid;
 77	char			*name;
 
 78	struct list_head	list;
 79};
 80
 81/**
 82 * union mon_data_bits - Monitoring details for each event file
 83 * @priv:              Used to store monitoring event data in @u
 84 *                     as kernfs private data
 85 * @rid:               Resource id associated with the event file
 86 * @evtid:             Event id associated with the event file
 87 * @domid:             The domain to which the event file belongs
 88 * @u:                 Name of the bit fields struct
 
 
 
 
 
 89 */
 90union mon_data_bits {
 91	void *priv;
 92	struct {
 93		unsigned int rid	: 10;
 94		unsigned int evtid	: 8;
 95		unsigned int domid	: 14;
 
 96	} u;
 97};
 98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 99struct rmid_read {
100	struct rdtgroup		*rgrp;
101	struct rdt_resource	*r;
102	struct rdt_domain	*d;
103	int			evtid;
104	bool			first;
 
 
105	u64			val;
 
106};
107
108extern unsigned int resctrl_cqm_threshold;
109extern bool rdt_alloc_capable;
110extern bool rdt_mon_capable;
111extern unsigned int rdt_mon_features;
 
 
112
113enum rdt_group_type {
114	RDTCTRL_GROUP = 0,
115	RDTMON_GROUP,
116	RDT_NUM_GROUP,
117};
118
119/**
120 * enum rdtgrp_mode - Mode of a RDT resource group
121 * @RDT_MODE_SHAREABLE: This resource group allows sharing of its allocations
122 * @RDT_MODE_EXCLUSIVE: No sharing of this resource group's allocations allowed
123 * @RDT_MODE_PSEUDO_LOCKSETUP: Resource group will be used for Pseudo-Locking
124 * @RDT_MODE_PSEUDO_LOCKED: No sharing of this resource group's allocations
125 *                          allowed AND the allocations are Cache Pseudo-Locked
126 * @RDT_NUM_MODES: Total number of modes
127 *
128 * The mode of a resource group enables control over the allowed overlap
129 * between allocations associated with different resource groups (classes
130 * of service). User is able to modify the mode of a resource group by
131 * writing to the "mode" resctrl file associated with the resource group.
132 *
133 * The "shareable", "exclusive", and "pseudo-locksetup" modes are set by
134 * writing the appropriate text to the "mode" file. A resource group enters
135 * "pseudo-locked" mode after the schemata is written while the resource
136 * group is in "pseudo-locksetup" mode.
137 */
138enum rdtgrp_mode {
139	RDT_MODE_SHAREABLE = 0,
140	RDT_MODE_EXCLUSIVE,
141	RDT_MODE_PSEUDO_LOCKSETUP,
142	RDT_MODE_PSEUDO_LOCKED,
143
144	/* Must be last */
145	RDT_NUM_MODES,
146};
147
148/**
149 * struct mongroup - store mon group's data in resctrl fs.
150 * @mon_data_kn:		kernfs node for the mon_data directory
151 * @parent:			parent rdtgrp
152 * @crdtgrp_list:		child rdtgroup node list
153 * @rmid:			rmid for this rdtgroup
154 */
155struct mongroup {
156	struct kernfs_node	*mon_data_kn;
157	struct rdtgroup		*parent;
158	struct list_head	crdtgrp_list;
159	u32			rmid;
160};
161
162/**
163 * struct pseudo_lock_region - pseudo-lock region information
164 * @r:			RDT resource to which this pseudo-locked region
165 *			belongs
166 * @d:			RDT domain to which this pseudo-locked region
167 *			belongs
168 * @cbm:		bitmask of the pseudo-locked region
169 * @lock_thread_wq:	waitqueue used to wait on the pseudo-locking thread
170 *			completion
171 * @thread_done:	variable used by waitqueue to test if pseudo-locking
172 *			thread completed
173 * @cpu:		core associated with the cache on which the setup code
174 *			will be run
175 * @line_size:		size of the cache lines
176 * @size:		size of pseudo-locked region in bytes
177 * @kmem:		the kernel memory associated with pseudo-locked region
178 * @minor:		minor number of character device associated with this
179 *			region
180 * @debugfs_dir:	pointer to this region's directory in the debugfs
181 *			filesystem
182 * @pm_reqs:		Power management QoS requests related to this region
183 */
184struct pseudo_lock_region {
185	struct rdt_resource	*r;
186	struct rdt_domain	*d;
187	u32			cbm;
188	wait_queue_head_t	lock_thread_wq;
189	int			thread_done;
190	int			cpu;
191	unsigned int		line_size;
192	unsigned int		size;
193	void			*kmem;
194	unsigned int		minor;
195	struct dentry		*debugfs_dir;
196	struct list_head	pm_reqs;
197};
198
199/**
200 * struct rdtgroup - store rdtgroup's data in resctrl file system.
201 * @kn:				kernfs node
202 * @rdtgroup_list:		linked list for all rdtgroups
203 * @closid:			closid for this rdtgroup
204 * @cpu_mask:			CPUs assigned to this rdtgroup
205 * @flags:			status bits
206 * @waitcount:			how many cpus expect to find this
207 *				group when they acquire rdtgroup_mutex
208 * @type:			indicates type of this rdtgroup - either
209 *				monitor only or ctrl_mon group
210 * @mon:			mongroup related data
211 * @mode:			mode of resource group
212 * @plr:			pseudo-locked region
213 */
214struct rdtgroup {
215	struct kernfs_node		*kn;
216	struct list_head		rdtgroup_list;
217	u32				closid;
218	struct cpumask			cpu_mask;
219	int				flags;
220	atomic_t			waitcount;
221	enum rdt_group_type		type;
222	struct mongroup			mon;
223	enum rdtgrp_mode		mode;
224	struct pseudo_lock_region	*plr;
225};
226
227/* rdtgroup.flags */
228#define	RDT_DELETED		1
229
230/* rftype.flags */
231#define RFTYPE_FLAGS_CPUS_LIST	1
232
233/*
234 * Define the file type flags for base and info directories.
235 */
236#define RFTYPE_INFO			BIT(0)
237#define RFTYPE_BASE			BIT(1)
238#define RF_CTRLSHIFT			4
239#define RF_MONSHIFT			5
240#define RF_TOPSHIFT			6
241#define RFTYPE_CTRL			BIT(RF_CTRLSHIFT)
242#define RFTYPE_MON			BIT(RF_MONSHIFT)
243#define RFTYPE_TOP			BIT(RF_TOPSHIFT)
244#define RFTYPE_RES_CACHE		BIT(8)
245#define RFTYPE_RES_MB			BIT(9)
246#define RF_CTRL_INFO			(RFTYPE_INFO | RFTYPE_CTRL)
247#define RF_MON_INFO			(RFTYPE_INFO | RFTYPE_MON)
248#define RF_TOP_INFO			(RFTYPE_INFO | RFTYPE_TOP)
249#define RF_CTRL_BASE			(RFTYPE_BASE | RFTYPE_CTRL)
 
 
250
251/* List of all resource groups */
252extern struct list_head rdt_all_groups;
253
254extern int max_name_width, max_data_width;
255
256int __init rdtgroup_init(void);
257void __exit rdtgroup_exit(void);
258
259/**
260 * struct rftype - describe each file in the resctrl file system
261 * @name:	File name
262 * @mode:	Access mode
263 * @kf_ops:	File operations
264 * @flags:	File specific RFTYPE_FLAGS_* flags
265 * @fflags:	File specific RF_* or RFTYPE_* flags
266 * @seq_show:	Show content of the file
267 * @write:	Write to the file
268 */
269struct rftype {
270	char			*name;
271	umode_t			mode;
272	const struct kernfs_ops	*kf_ops;
273	unsigned long		flags;
274	unsigned long		fflags;
275
276	int (*seq_show)(struct kernfs_open_file *of,
277			struct seq_file *sf, void *v);
278	/*
279	 * write() is the generic write callback which maps directly to
280	 * kernfs write operation and overrides all other operations.
281	 * Maximum write size is determined by ->max_write_len.
282	 */
283	ssize_t (*write)(struct kernfs_open_file *of,
284			 char *buf, size_t nbytes, loff_t off);
285};
286
287/**
288 * struct mbm_state - status for each MBM counter in each domain
289 * @chunks:	Total data moved (multiply by rdt_group.mon_scale to get bytes)
290 * @prev_msr:	Value of IA32_QM_CTR for this RMID last time we read it
291 * @prev_bw_msr:Value of previous IA32_QM_CTR for bandwidth counting
292 * @prev_bw:	The most recent bandwidth in MBps
293 * @delta_bw:	Difference between the current and previous bandwidth
294 * @delta_comp:	Indicates whether to compute the delta_bw
295 */
296struct mbm_state {
 
 
 
 
 
 
 
 
 
 
 
 
297	u64	chunks;
298	u64	prev_msr;
299	u64	prev_bw_msr;
300	u32	prev_bw;
301	u32	delta_bw;
302	bool	delta_comp;
303};
304
305/**
306 * struct rdt_domain - group of cpus sharing an RDT resource
307 * @list:	all instances of this resource
308 * @id:		unique id for this instance
309 * @cpu_mask:	which cpus share this resource
310 * @rmid_busy_llc:
311 *		bitmap of which limbo RMIDs are above threshold
312 * @mbm_total:	saved state for MBM total bandwidth
313 * @mbm_local:	saved state for MBM local bandwidth
314 * @mbm_over:	worker to periodically read MBM h/w counters
315 * @cqm_limbo:	worker to periodically read CQM h/w counters
316 * @mbm_work_cpu:
317 *		worker cpu for MBM h/w counters
318 * @cqm_work_cpu:
319 *		worker cpu for CQM h/w counters
320 * @ctrl_val:	array of cache or mem ctrl values (indexed by CLOSID)
321 * @mbps_val:	When mba_sc is enabled, this holds the bandwidth in MBps
322 * @new_ctrl:	new ctrl value to be loaded
323 * @have_new_ctrl: did user provide new_ctrl for this domain
324 * @plr:	pseudo-locked region (if any) associated with domain
325 */
326struct rdt_domain {
327	struct list_head		list;
328	int				id;
329	struct cpumask			cpu_mask;
330	unsigned long			*rmid_busy_llc;
331	struct mbm_state		*mbm_total;
332	struct mbm_state		*mbm_local;
333	struct delayed_work		mbm_over;
334	struct delayed_work		cqm_limbo;
335	int				mbm_work_cpu;
336	int				cqm_work_cpu;
337	u32				*ctrl_val;
338	u32				*mbps_val;
339	u32				new_ctrl;
340	bool				have_new_ctrl;
341	struct pseudo_lock_region	*plr;
342};
343
344/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345 * struct msr_param - set a range of MSRs from a domain
346 * @res:       The resource to use
 
347 * @low:       Beginning index from base MSR
348 * @high:      End index
349 */
350struct msr_param {
351	struct rdt_resource	*res;
352	int			low;
353	int			high;
354};
355
356/**
357 * struct rdt_cache - Cache allocation related data
358 * @cbm_len:		Length of the cache bit mask
359 * @min_cbm_bits:	Minimum number of consecutive bits to be set
360 * @cbm_idx_mult:	Multiplier of CBM index
361 * @cbm_idx_offset:	Offset of CBM index. CBM index is computed by:
362 *			closid * cbm_idx_multi + cbm_idx_offset
363 *			in a cache bit mask
364 * @shareable_bits:	Bitmask of shareable resource with other
365 *			executing entities
366 * @arch_has_sparse_bitmaps:	True if a bitmap like f00f is valid.
367 * @arch_has_empty_bitmaps:	True if the '0' bitmap is valid.
368 * @arch_has_per_cpu_cfg:	True if QOS_CFG register for this cache
369 *				level has CPU scope.
370 */
371struct rdt_cache {
372	unsigned int	cbm_len;
373	unsigned int	min_cbm_bits;
374	unsigned int	cbm_idx_mult;
375	unsigned int	cbm_idx_offset;
376	unsigned int	shareable_bits;
377	bool		arch_has_sparse_bitmaps;
378	bool		arch_has_empty_bitmaps;
379	bool		arch_has_per_cpu_cfg;
380};
381
382/**
383 * enum membw_throttle_mode - System's memory bandwidth throttling mode
384 * @THREAD_THROTTLE_UNDEFINED:	Not relevant to the system
385 * @THREAD_THROTTLE_MAX:	Memory bandwidth is throttled at the core
386 *				always using smallest bandwidth percentage
387 *				assigned to threads, aka "max throttling"
388 * @THREAD_THROTTLE_PER_THREAD:	Memory bandwidth is throttled at the thread
389 */
390enum membw_throttle_mode {
391	THREAD_THROTTLE_UNDEFINED = 0,
392	THREAD_THROTTLE_MAX,
393	THREAD_THROTTLE_PER_THREAD,
394};
395
396/**
397 * struct rdt_membw - Memory bandwidth allocation related data
398 * @min_bw:		Minimum memory bandwidth percentage user can request
399 * @bw_gran:		Granularity at which the memory bandwidth is allocated
400 * @delay_linear:	True if memory B/W delay is in linear scale
401 * @arch_needs_linear:	True if we can't configure non-linear resources
402 * @throttle_mode:	Bandwidth throttling mode when threads request
403 *			different memory bandwidths
404 * @mba_sc:		True if MBA software controller(mba_sc) is enabled
405 * @mb_map:		Mapping of memory B/W percentage to memory B/W delay
406 */
407struct rdt_membw {
408	u32				min_bw;
409	u32				bw_gran;
410	u32				delay_linear;
411	bool				arch_needs_linear;
412	enum membw_throttle_mode	throttle_mode;
413	bool				mba_sc;
414	u32				*mb_map;
415};
416
417static inline bool is_llc_occupancy_enabled(void)
418{
419	return (rdt_mon_features & (1 << QOS_L3_OCCUP_EVENT_ID));
420}
421
422static inline bool is_mbm_total_enabled(void)
423{
424	return (rdt_mon_features & (1 << QOS_L3_MBM_TOTAL_EVENT_ID));
425}
426
427static inline bool is_mbm_local_enabled(void)
428{
429	return (rdt_mon_features & (1 << QOS_L3_MBM_LOCAL_EVENT_ID));
430}
431
432static inline bool is_mbm_enabled(void)
433{
434	return (is_mbm_total_enabled() || is_mbm_local_enabled());
435}
436
437static inline bool is_mbm_event(int e)
438{
439	return (e >= QOS_L3_MBM_TOTAL_EVENT_ID &&
440		e <= QOS_L3_MBM_LOCAL_EVENT_ID);
441}
442
443struct rdt_parse_data {
444	struct rdtgroup		*rdtgrp;
445	char			*buf;
446};
447
448/**
449 * struct rdt_resource - attributes of an RDT resource
450 * @rid:		The index of the resource
451 * @alloc_enabled:	Is allocation enabled on this machine
452 * @mon_enabled:	Is monitoring enabled for this feature
453 * @alloc_capable:	Is allocation available on this machine
454 * @mon_capable:	Is monitor feature available on this machine
455 * @name:		Name to use in "schemata" file
456 * @num_closid:		Number of CLOSIDs available
457 * @cache_level:	Which cache level defines scope of this resource
458 * @default_ctrl:	Specifies default cache cbm or memory B/W percent.
459 * @msr_base:		Base MSR address for CBMs
460 * @msr_update:		Function pointer to update QOS MSRs
461 * @data_width:		Character width of data when displaying
462 * @domains:		All domains for this resource
463 * @cache:		Cache allocation related data
464 * @membw:		If the component has bandwidth controls, their properties.
465 * @format_str:		Per resource format string to show domain value
466 * @parse_ctrlval:	Per resource function pointer to parse control values
467 * @evt_list:		List of monitoring events
468 * @num_rmid:		Number of RMIDs available
469 * @mon_scale:		cqm counter * mon_scale = occupancy in bytes
470 * @mbm_width:		Monitor width, to detect and correct for overflow.
471 * @fflags:		flags to choose base and info files
472 */
473struct rdt_resource {
474	int			rid;
475	bool			alloc_enabled;
476	bool			mon_enabled;
477	bool			alloc_capable;
478	bool			mon_capable;
479	char			*name;
480	int			num_closid;
481	int			cache_level;
482	u32			default_ctrl;
483	unsigned int		msr_base;
484	void (*msr_update)	(struct rdt_domain *d, struct msr_param *m,
485				 struct rdt_resource *r);
486	int			data_width;
487	struct list_head	domains;
488	struct rdt_cache	cache;
489	struct rdt_membw	membw;
490	const char		*format_str;
491	int (*parse_ctrlval)(struct rdt_parse_data *data,
492			     struct rdt_resource *r,
493			     struct rdt_domain *d);
494	struct list_head	evt_list;
495	int			num_rmid;
496	unsigned int		mon_scale;
497	unsigned int		mbm_width;
498	unsigned long		fflags;
 
499};
500
501int parse_cbm(struct rdt_parse_data *data, struct rdt_resource *r,
502	      struct rdt_domain *d);
503int parse_bw(struct rdt_parse_data *data, struct rdt_resource *r,
504	     struct rdt_domain *d);
 
 
 
 
 
505
506extern struct mutex rdtgroup_mutex;
507
508extern struct rdt_resource rdt_resources_all[];
509extern struct rdtgroup rdtgroup_default;
510DECLARE_STATIC_KEY_FALSE(rdt_alloc_enable_key);
511
512extern struct dentry *debugfs_resctrl;
513
514enum {
515	RDT_RESOURCE_L3,
516	RDT_RESOURCE_L3DATA,
517	RDT_RESOURCE_L3CODE,
518	RDT_RESOURCE_L2,
519	RDT_RESOURCE_L2DATA,
520	RDT_RESOURCE_L2CODE,
521	RDT_RESOURCE_MBA,
 
522
523	/* Must be the last */
524	RDT_NUM_RESOURCES,
525};
526
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527#define for_each_rdt_resource(r)					      \
528	for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
529	     r++)
 
530
531#define for_each_capable_rdt_resource(r)				      \
532	for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
533	     r++)							      \
534		if (r->alloc_capable || r->mon_capable)
535
536#define for_each_alloc_capable_rdt_resource(r)				      \
537	for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
538	     r++)							      \
539		if (r->alloc_capable)
540
541#define for_each_mon_capable_rdt_resource(r)				      \
542	for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
543	     r++)							      \
544		if (r->mon_capable)
545
546#define for_each_alloc_enabled_rdt_resource(r)				      \
547	for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
548	     r++)							      \
549		if (r->alloc_enabled)
550
551#define for_each_mon_enabled_rdt_resource(r)				      \
552	for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
553	     r++)							      \
554		if (r->mon_enabled)
555
556/* CPUID.(EAX=10H, ECX=ResID=1).EAX */
557union cpuid_0x10_1_eax {
558	struct {
559		unsigned int cbm_len:5;
560	} split;
561	unsigned int full;
562};
563
564/* CPUID.(EAX=10H, ECX=ResID=3).EAX */
565union cpuid_0x10_3_eax {
566	struct {
567		unsigned int max_delay:12;
568	} split;
569	unsigned int full;
570};
571
 
 
 
 
 
 
 
 
 
572/* CPUID.(EAX=10H, ECX=ResID).EDX */
573union cpuid_0x10_x_edx {
574	struct {
575		unsigned int cos_max:16;
576	} split;
577	unsigned int full;
578};
579
580void rdt_last_cmd_clear(void);
581void rdt_last_cmd_puts(const char *s);
582__printf(1, 2)
583void rdt_last_cmd_printf(const char *fmt, ...);
584
585void rdt_ctrl_update(void *arg);
586struct rdtgroup *rdtgroup_kn_lock_live(struct kernfs_node *kn);
587void rdtgroup_kn_unlock(struct kernfs_node *kn);
588int rdtgroup_kn_mode_restrict(struct rdtgroup *r, const char *name);
589int rdtgroup_kn_mode_restore(struct rdtgroup *r, const char *name,
590			     umode_t mask);
591struct rdt_domain *rdt_find_domain(struct rdt_resource *r, int id,
592				   struct list_head **pos);
593ssize_t rdtgroup_schemata_write(struct kernfs_open_file *of,
594				char *buf, size_t nbytes, loff_t off);
595int rdtgroup_schemata_show(struct kernfs_open_file *of,
596			   struct seq_file *s, void *v);
597bool rdtgroup_cbm_overlaps(struct rdt_resource *r, struct rdt_domain *d,
598			   unsigned long cbm, int closid, bool exclusive);
599unsigned int rdtgroup_cbm_to_size(struct rdt_resource *r, struct rdt_domain *d,
600				  unsigned long cbm);
601enum rdtgrp_mode rdtgroup_mode_by_closid(int closid);
602int rdtgroup_tasks_assigned(struct rdtgroup *r);
603int rdtgroup_locksetup_enter(struct rdtgroup *rdtgrp);
604int rdtgroup_locksetup_exit(struct rdtgroup *rdtgrp);
605bool rdtgroup_cbm_overlaps_pseudo_locked(struct rdt_domain *d, unsigned long cbm);
606bool rdtgroup_pseudo_locked_in_hierarchy(struct rdt_domain *d);
607int rdt_pseudo_lock_init(void);
608void rdt_pseudo_lock_release(void);
609int rdtgroup_pseudo_lock_create(struct rdtgroup *rdtgrp);
610void rdtgroup_pseudo_lock_remove(struct rdtgroup *rdtgrp);
611struct rdt_domain *get_domain_from_cpu(int cpu, struct rdt_resource *r);
612int update_domains(struct rdt_resource *r, int closid);
613int closids_supported(void);
614void closid_free(int closid);
615int alloc_rmid(void);
616void free_rmid(u32 rmid);
617int rdt_get_mon_l3_config(struct rdt_resource *r);
 
 
618void mon_event_count(void *info);
619int rdtgroup_mondata_show(struct seq_file *m, void *arg);
620void rmdir_mondata_subdir_allrdtgrp(struct rdt_resource *r,
621				    unsigned int dom_id);
622void mkdir_mondata_subdir_allrdtgrp(struct rdt_resource *r,
623				    struct rdt_domain *d);
624void mon_event_read(struct rmid_read *rr, struct rdt_resource *r,
625		    struct rdt_domain *d, struct rdtgroup *rdtgrp,
626		    int evtid, int first);
627void mbm_setup_overflow_handler(struct rdt_domain *dom,
628				unsigned long delay_ms);
 
629void mbm_handle_overflow(struct work_struct *work);
630void __init intel_rdt_mbm_apply_quirk(void);
631bool is_mba_sc(struct rdt_resource *r);
632void setup_default_ctrlval(struct rdt_resource *r, u32 *dc, u32 *dm);
633u32 delay_bw_map(unsigned long bw, struct rdt_resource *r);
634void cqm_setup_limbo_handler(struct rdt_domain *dom, unsigned long delay_ms);
635void cqm_handle_limbo(struct work_struct *work);
636bool has_busy_rmid(struct rdt_resource *r, struct rdt_domain *d);
637void __check_limbo(struct rdt_domain *d, bool force_free);
638void rdt_domain_reconfigure_cdp(struct rdt_resource *r);
639void __init thread_throttle_mode_init(void);
 
 
 
 
640
641#endif /* _ASM_X86_RESCTRL_INTERNAL_H */
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _ASM_X86_RESCTRL_INTERNAL_H
  3#define _ASM_X86_RESCTRL_INTERNAL_H
  4
  5#include <linux/resctrl.h>
  6#include <linux/sched.h>
  7#include <linux/kernfs.h>
  8#include <linux/fs_context.h>
  9#include <linux/jump_label.h>
 10#include <linux/tick.h>
 11
 12#include <asm/resctrl.h>
 
 
 
 
 
 
 
 
 13
 14#define L3_QOS_CDP_ENABLE		0x01ULL
 15
 16#define L2_QOS_CDP_ENABLE		0x01ULL
 17
 
 
 
 
 
 
 
 
 18#define CQM_LIMBOCHECK_INTERVAL	1000
 19
 20#define MBM_CNTR_WIDTH_BASE		24
 21#define MBM_OVERFLOW_INTERVAL		1000
 22#define MAX_MBA_BW			100u
 23#define MBA_IS_LINEAR			0x4
 
 
 24#define MBM_CNTR_WIDTH_OFFSET_AMD	20
 25
 26#define RMID_VAL_ERROR			BIT_ULL(63)
 27#define RMID_VAL_UNAVAIL		BIT_ULL(62)
 28/*
 29 * With the above fields in use 62 bits remain in MSR_IA32_QM_CTR for
 30 * data to be returned. The counter width is discovered from the hardware
 31 * as an offset from MBM_CNTR_WIDTH_BASE.
 32 */
 33#define MBM_CNTR_WIDTH_OFFSET_MAX (62 - MBM_CNTR_WIDTH_BASE)
 34
 35/* Reads to Local DRAM Memory */
 36#define READS_TO_LOCAL_MEM		BIT(0)
 37
 38/* Reads to Remote DRAM Memory */
 39#define READS_TO_REMOTE_MEM		BIT(1)
 40
 41/* Non-Temporal Writes to Local Memory */
 42#define NON_TEMP_WRITE_TO_LOCAL_MEM	BIT(2)
 43
 44/* Non-Temporal Writes to Remote Memory */
 45#define NON_TEMP_WRITE_TO_REMOTE_MEM	BIT(3)
 46
 47/* Reads to Local Memory the system identifies as "Slow Memory" */
 48#define READS_TO_LOCAL_S_MEM		BIT(4)
 49
 50/* Reads to Remote Memory the system identifies as "Slow Memory" */
 51#define READS_TO_REMOTE_S_MEM		BIT(5)
 52
 53/* Dirty Victims to All Types of Memory */
 54#define DIRTY_VICTIMS_TO_ALL_MEM	BIT(6)
 55
 56/* Max event bits supported */
 57#define MAX_EVT_CONFIG_BITS		GENMASK(6, 0)
 58
 59/**
 60 * cpumask_any_housekeeping() - Choose any CPU in @mask, preferring those that
 61 *			        aren't marked nohz_full
 62 * @mask:	The mask to pick a CPU from.
 63 * @exclude_cpu:The CPU to avoid picking.
 64 *
 65 * Returns a CPU from @mask, but not @exclude_cpu. If there are housekeeping
 66 * CPUs that don't use nohz_full, these are preferred. Pass
 67 * RESCTRL_PICK_ANY_CPU to avoid excluding any CPUs.
 68 *
 69 * When a CPU is excluded, returns >= nr_cpu_ids if no CPUs are available.
 70 */
 71static inline unsigned int
 72cpumask_any_housekeeping(const struct cpumask *mask, int exclude_cpu)
 73{
 74	unsigned int cpu, hk_cpu;
 75
 76	if (exclude_cpu == RESCTRL_PICK_ANY_CPU)
 77		cpu = cpumask_any(mask);
 78	else
 79		cpu = cpumask_any_but(mask, exclude_cpu);
 80
 81	/* Only continue if tick_nohz_full_mask has been initialized. */
 82	if (!tick_nohz_full_enabled())
 83		return cpu;
 84
 85	/* If the CPU picked isn't marked nohz_full nothing more needs doing. */
 86	if (cpu < nr_cpu_ids && !tick_nohz_full_cpu(cpu))
 87		return cpu;
 88
 89	/* Try to find a CPU that isn't nohz_full to use in preference */
 90	hk_cpu = cpumask_nth_andnot(0, mask, tick_nohz_full_mask);
 91	if (hk_cpu == exclude_cpu)
 92		hk_cpu = cpumask_nth_andnot(1, mask, tick_nohz_full_mask);
 93
 94	if (hk_cpu < nr_cpu_ids)
 95		cpu = hk_cpu;
 96
 97	return cpu;
 98}
 99
100struct rdt_fs_context {
101	struct kernfs_fs_context	kfc;
102	bool				enable_cdpl2;
103	bool				enable_cdpl3;
104	bool				enable_mba_mbps;
105	bool				enable_debug;
106};
107
108static inline struct rdt_fs_context *rdt_fc2context(struct fs_context *fc)
109{
110	struct kernfs_fs_context *kfc = fc->fs_private;
111
112	return container_of(kfc, struct rdt_fs_context, kfc);
113}
114
 
 
 
115/**
116 * struct mon_evt - Entry in the event list of a resource
117 * @evtid:		event id
118 * @name:		name of the event
119 * @configurable:	true if the event is configurable
120 * @list:		entry in &rdt_resource->evt_list
121 */
122struct mon_evt {
123	enum resctrl_event_id	evtid;
124	char			*name;
125	bool			configurable;
126	struct list_head	list;
127};
128
129/**
130 * union mon_data_bits - Monitoring details for each event file.
131 * @priv:              Used to store monitoring event data in @u
132 *                     as kernfs private data.
133 * @u.rid:             Resource id associated with the event file.
134 * @u.evtid:           Event id associated with the event file.
135 * @u.sum:             Set when event must be summed across multiple
136 *                     domains.
137 * @u.domid:           When @u.sum is zero this is the domain to which
138 *                     the event file belongs. When @sum is one this
139 *                     is the id of the L3 cache that all domains to be
140 *                     summed share.
141 * @u:                 Name of the bit fields struct.
142 */
143union mon_data_bits {
144	void *priv;
145	struct {
146		unsigned int rid		: 10;
147		enum resctrl_event_id evtid	: 7;
148		unsigned int sum		: 1;
149		unsigned int domid		: 14;
150	} u;
151};
152
153/**
154 * struct rmid_read - Data passed across smp_call*() to read event count.
155 * @rgrp:  Resource group for which the counter is being read. If it is a parent
156 *	   resource group then its event count is summed with the count from all
157 *	   its child resource groups.
158 * @r:	   Resource describing the properties of the event being read.
159 * @d:	   Domain that the counter should be read from. If NULL then sum all
160 *	   domains in @r sharing L3 @ci.id
161 * @evtid: Which monitor event to read.
162 * @first: Initialize MBM counter when true.
163 * @ci:    Cacheinfo for L3. Only set when @d is NULL. Used when summing domains.
164 * @err:   Error encountered when reading counter.
165 * @val:   Returned value of event counter. If @rgrp is a parent resource group,
166 *	   @val includes the sum of event counts from its child resource groups.
167 *	   If @d is NULL, @val includes the sum of all domains in @r sharing @ci.id,
168 *	   (summed across child resource groups if @rgrp is a parent resource group).
169 * @arch_mon_ctx: Hardware monitor allocated for this read request (MPAM only).
170 */
171struct rmid_read {
172	struct rdtgroup		*rgrp;
173	struct rdt_resource	*r;
174	struct rdt_mon_domain	*d;
175	enum resctrl_event_id	evtid;
176	bool			first;
177	struct cacheinfo	*ci;
178	int			err;
179	u64			val;
180	void			*arch_mon_ctx;
181};
182
 
 
 
183extern unsigned int rdt_mon_features;
184extern struct list_head resctrl_schema_all;
185extern bool resctrl_mounted;
186
187enum rdt_group_type {
188	RDTCTRL_GROUP = 0,
189	RDTMON_GROUP,
190	RDT_NUM_GROUP,
191};
192
193/**
194 * enum rdtgrp_mode - Mode of a RDT resource group
195 * @RDT_MODE_SHAREABLE: This resource group allows sharing of its allocations
196 * @RDT_MODE_EXCLUSIVE: No sharing of this resource group's allocations allowed
197 * @RDT_MODE_PSEUDO_LOCKSETUP: Resource group will be used for Pseudo-Locking
198 * @RDT_MODE_PSEUDO_LOCKED: No sharing of this resource group's allocations
199 *                          allowed AND the allocations are Cache Pseudo-Locked
200 * @RDT_NUM_MODES: Total number of modes
201 *
202 * The mode of a resource group enables control over the allowed overlap
203 * between allocations associated with different resource groups (classes
204 * of service). User is able to modify the mode of a resource group by
205 * writing to the "mode" resctrl file associated with the resource group.
206 *
207 * The "shareable", "exclusive", and "pseudo-locksetup" modes are set by
208 * writing the appropriate text to the "mode" file. A resource group enters
209 * "pseudo-locked" mode after the schemata is written while the resource
210 * group is in "pseudo-locksetup" mode.
211 */
212enum rdtgrp_mode {
213	RDT_MODE_SHAREABLE = 0,
214	RDT_MODE_EXCLUSIVE,
215	RDT_MODE_PSEUDO_LOCKSETUP,
216	RDT_MODE_PSEUDO_LOCKED,
217
218	/* Must be last */
219	RDT_NUM_MODES,
220};
221
222/**
223 * struct mongroup - store mon group's data in resctrl fs.
224 * @mon_data_kn:		kernfs node for the mon_data directory
225 * @parent:			parent rdtgrp
226 * @crdtgrp_list:		child rdtgroup node list
227 * @rmid:			rmid for this rdtgroup
228 */
229struct mongroup {
230	struct kernfs_node	*mon_data_kn;
231	struct rdtgroup		*parent;
232	struct list_head	crdtgrp_list;
233	u32			rmid;
234};
235
236/**
237 * struct pseudo_lock_region - pseudo-lock region information
238 * @s:			Resctrl schema for the resource to which this
239 *			pseudo-locked region belongs
240 * @d:			RDT domain to which this pseudo-locked region
241 *			belongs
242 * @cbm:		bitmask of the pseudo-locked region
243 * @lock_thread_wq:	waitqueue used to wait on the pseudo-locking thread
244 *			completion
245 * @thread_done:	variable used by waitqueue to test if pseudo-locking
246 *			thread completed
247 * @cpu:		core associated with the cache on which the setup code
248 *			will be run
249 * @line_size:		size of the cache lines
250 * @size:		size of pseudo-locked region in bytes
251 * @kmem:		the kernel memory associated with pseudo-locked region
252 * @minor:		minor number of character device associated with this
253 *			region
254 * @debugfs_dir:	pointer to this region's directory in the debugfs
255 *			filesystem
256 * @pm_reqs:		Power management QoS requests related to this region
257 */
258struct pseudo_lock_region {
259	struct resctrl_schema	*s;
260	struct rdt_ctrl_domain	*d;
261	u32			cbm;
262	wait_queue_head_t	lock_thread_wq;
263	int			thread_done;
264	int			cpu;
265	unsigned int		line_size;
266	unsigned int		size;
267	void			*kmem;
268	unsigned int		minor;
269	struct dentry		*debugfs_dir;
270	struct list_head	pm_reqs;
271};
272
273/**
274 * struct rdtgroup - store rdtgroup's data in resctrl file system.
275 * @kn:				kernfs node
276 * @rdtgroup_list:		linked list for all rdtgroups
277 * @closid:			closid for this rdtgroup
278 * @cpu_mask:			CPUs assigned to this rdtgroup
279 * @flags:			status bits
280 * @waitcount:			how many cpus expect to find this
281 *				group when they acquire rdtgroup_mutex
282 * @type:			indicates type of this rdtgroup - either
283 *				monitor only or ctrl_mon group
284 * @mon:			mongroup related data
285 * @mode:			mode of resource group
286 * @plr:			pseudo-locked region
287 */
288struct rdtgroup {
289	struct kernfs_node		*kn;
290	struct list_head		rdtgroup_list;
291	u32				closid;
292	struct cpumask			cpu_mask;
293	int				flags;
294	atomic_t			waitcount;
295	enum rdt_group_type		type;
296	struct mongroup			mon;
297	enum rdtgrp_mode		mode;
298	struct pseudo_lock_region	*plr;
299};
300
301/* rdtgroup.flags */
302#define	RDT_DELETED		1
303
304/* rftype.flags */
305#define RFTYPE_FLAGS_CPUS_LIST	1
306
307/*
308 * Define the file type flags for base and info directories.
309 */
310#define RFTYPE_INFO			BIT(0)
311#define RFTYPE_BASE			BIT(1)
312#define RFTYPE_CTRL			BIT(4)
313#define RFTYPE_MON			BIT(5)
314#define RFTYPE_TOP			BIT(6)
 
 
 
315#define RFTYPE_RES_CACHE		BIT(8)
316#define RFTYPE_RES_MB			BIT(9)
317#define RFTYPE_DEBUG			BIT(10)
318#define RFTYPE_CTRL_INFO		(RFTYPE_INFO | RFTYPE_CTRL)
319#define RFTYPE_MON_INFO			(RFTYPE_INFO | RFTYPE_MON)
320#define RFTYPE_TOP_INFO			(RFTYPE_INFO | RFTYPE_TOP)
321#define RFTYPE_CTRL_BASE		(RFTYPE_BASE | RFTYPE_CTRL)
322#define RFTYPE_MON_BASE			(RFTYPE_BASE | RFTYPE_MON)
323
324/* List of all resource groups */
325extern struct list_head rdt_all_groups;
326
327extern int max_name_width, max_data_width;
328
329int __init rdtgroup_init(void);
330void __exit rdtgroup_exit(void);
331
332/**
333 * struct rftype - describe each file in the resctrl file system
334 * @name:	File name
335 * @mode:	Access mode
336 * @kf_ops:	File operations
337 * @flags:	File specific RFTYPE_FLAGS_* flags
338 * @fflags:	File specific RFTYPE_* flags
339 * @seq_show:	Show content of the file
340 * @write:	Write to the file
341 */
342struct rftype {
343	char			*name;
344	umode_t			mode;
345	const struct kernfs_ops	*kf_ops;
346	unsigned long		flags;
347	unsigned long		fflags;
348
349	int (*seq_show)(struct kernfs_open_file *of,
350			struct seq_file *sf, void *v);
351	/*
352	 * write() is the generic write callback which maps directly to
353	 * kernfs write operation and overrides all other operations.
354	 * Maximum write size is determined by ->max_write_len.
355	 */
356	ssize_t (*write)(struct kernfs_open_file *of,
357			 char *buf, size_t nbytes, loff_t off);
358};
359
360/**
361 * struct mbm_state - status for each MBM counter in each domain
362 * @prev_bw_bytes: Previous bytes value read for bandwidth calculation
 
 
363 * @prev_bw:	The most recent bandwidth in MBps
 
 
364 */
365struct mbm_state {
366	u64	prev_bw_bytes;
367	u32	prev_bw;
368};
369
370/**
371 * struct arch_mbm_state - values used to compute resctrl_arch_rmid_read()s
372 *			   return value.
373 * @chunks:	Total data moved (multiply by rdt_group.mon_scale to get bytes)
374 * @prev_msr:	Value of IA32_QM_CTR last time it was read for the RMID used to
375 *		find this struct.
376 */
377struct arch_mbm_state {
378	u64	chunks;
379	u64	prev_msr;
 
 
 
 
380};
381
382/**
383 * struct rdt_hw_ctrl_domain - Arch private attributes of a set of CPUs that share
384 *			       a resource for a control function
385 * @d_resctrl:	Properties exposed to the resctrl file system
 
 
 
 
 
 
 
 
 
 
 
386 * @ctrl_val:	array of cache or mem ctrl values (indexed by CLOSID)
387 *
388 * Members of this structure are accessed via helpers that provide abstraction.
389 */
390struct rdt_hw_ctrl_domain {
391	struct rdt_ctrl_domain		d_resctrl;
 
 
 
 
 
 
 
 
 
 
 
392	u32				*ctrl_val;
 
 
 
 
393};
394
395/**
396 * struct rdt_hw_mon_domain - Arch private attributes of a set of CPUs that share
397 *			      a resource for a monitor function
398 * @d_resctrl:	Properties exposed to the resctrl file system
399 * @arch_mbm_total:	arch private state for MBM total bandwidth
400 * @arch_mbm_local:	arch private state for MBM local bandwidth
401 *
402 * Members of this structure are accessed via helpers that provide abstraction.
403 */
404struct rdt_hw_mon_domain {
405	struct rdt_mon_domain		d_resctrl;
406	struct arch_mbm_state		*arch_mbm_total;
407	struct arch_mbm_state		*arch_mbm_local;
408};
409
410static inline struct rdt_hw_ctrl_domain *resctrl_to_arch_ctrl_dom(struct rdt_ctrl_domain *r)
411{
412	return container_of(r, struct rdt_hw_ctrl_domain, d_resctrl);
413}
414
415static inline struct rdt_hw_mon_domain *resctrl_to_arch_mon_dom(struct rdt_mon_domain *r)
416{
417	return container_of(r, struct rdt_hw_mon_domain, d_resctrl);
418}
419
420/**
421 * struct msr_param - set a range of MSRs from a domain
422 * @res:       The resource to use
423 * @dom:       The domain to update
424 * @low:       Beginning index from base MSR
425 * @high:      End index
426 */
427struct msr_param {
428	struct rdt_resource	*res;
429	struct rdt_ctrl_domain	*dom;
430	u32			low;
431	u32			high;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432};
433
434static inline bool is_llc_occupancy_enabled(void)
435{
436	return (rdt_mon_features & (1 << QOS_L3_OCCUP_EVENT_ID));
437}
438
439static inline bool is_mbm_total_enabled(void)
440{
441	return (rdt_mon_features & (1 << QOS_L3_MBM_TOTAL_EVENT_ID));
442}
443
444static inline bool is_mbm_local_enabled(void)
445{
446	return (rdt_mon_features & (1 << QOS_L3_MBM_LOCAL_EVENT_ID));
447}
448
449static inline bool is_mbm_enabled(void)
450{
451	return (is_mbm_total_enabled() || is_mbm_local_enabled());
452}
453
454static inline bool is_mbm_event(int e)
455{
456	return (e >= QOS_L3_MBM_TOTAL_EVENT_ID &&
457		e <= QOS_L3_MBM_LOCAL_EVENT_ID);
458}
459
460struct rdt_parse_data {
461	struct rdtgroup		*rdtgrp;
462	char			*buf;
463};
464
465/**
466 * struct rdt_hw_resource - arch private attributes of a resctrl resource
467 * @r_resctrl:		Attributes of the resource used directly by resctrl.
468 * @num_closid:		Maximum number of closid this hardware can support,
469 *			regardless of CDP. This is exposed via
470 *			resctrl_arch_get_num_closid() to avoid confusion
471 *			with struct resctrl_schema's property of the same name,
472 *			which has been corrected for features like CDP.
 
 
 
473 * @msr_base:		Base MSR address for CBMs
474 * @msr_update:		Function pointer to update QOS MSRs
 
 
 
 
 
 
 
 
475 * @mon_scale:		cqm counter * mon_scale = occupancy in bytes
476 * @mbm_width:		Monitor width, to detect and correct for overflow.
477 * @mbm_cfg_mask:	Bandwidth sources that can be tracked when Bandwidth
478 *			Monitoring Event Configuration (BMEC) is supported.
479 * @cdp_enabled:	CDP state of this resource
480 *
481 * Members of this structure are either private to the architecture
482 * e.g. mbm_width, or accessed via helpers that provide abstraction. e.g.
483 * msr_update and msr_base.
484 */
485struct rdt_hw_resource {
486	struct rdt_resource	r_resctrl;
487	u32			num_closid;
 
488	unsigned int		msr_base;
489	void			(*msr_update)(struct msr_param *m);
 
 
 
 
 
 
 
 
 
 
 
490	unsigned int		mon_scale;
491	unsigned int		mbm_width;
492	unsigned int		mbm_cfg_mask;
493	bool			cdp_enabled;
494};
495
496static inline struct rdt_hw_resource *resctrl_to_arch_res(struct rdt_resource *r)
497{
498	return container_of(r, struct rdt_hw_resource, r_resctrl);
499}
500
501int parse_cbm(struct rdt_parse_data *data, struct resctrl_schema *s,
502	      struct rdt_ctrl_domain *d);
503int parse_bw(struct rdt_parse_data *data, struct resctrl_schema *s,
504	     struct rdt_ctrl_domain *d);
505
506extern struct mutex rdtgroup_mutex;
507
508extern struct rdt_hw_resource rdt_resources_all[];
509extern struct rdtgroup rdtgroup_default;
 
 
510extern struct dentry *debugfs_resctrl;
511
512enum resctrl_res_level {
513	RDT_RESOURCE_L3,
 
 
514	RDT_RESOURCE_L2,
 
 
515	RDT_RESOURCE_MBA,
516	RDT_RESOURCE_SMBA,
517
518	/* Must be the last */
519	RDT_NUM_RESOURCES,
520};
521
522static inline struct rdt_resource *resctrl_inc(struct rdt_resource *res)
523{
524	struct rdt_hw_resource *hw_res = resctrl_to_arch_res(res);
525
526	hw_res++;
527	return &hw_res->r_resctrl;
528}
529
530static inline bool resctrl_arch_get_cdp_enabled(enum resctrl_res_level l)
531{
532	return rdt_resources_all[l].cdp_enabled;
533}
534
535int resctrl_arch_set_cdp_enabled(enum resctrl_res_level l, bool enable);
536
537void arch_mon_domain_online(struct rdt_resource *r, struct rdt_mon_domain *d);
538
539/*
540 * To return the common struct rdt_resource, which is contained in struct
541 * rdt_hw_resource, walk the resctrl member of struct rdt_hw_resource.
542 */
543#define for_each_rdt_resource(r)					      \
544	for (r = &rdt_resources_all[0].r_resctrl;			      \
545	     r <= &rdt_resources_all[RDT_NUM_RESOURCES - 1].r_resctrl;	      \
546	     r = resctrl_inc(r))
547
548#define for_each_capable_rdt_resource(r)				      \
549	for_each_rdt_resource(r)					      \
 
550		if (r->alloc_capable || r->mon_capable)
551
552#define for_each_alloc_capable_rdt_resource(r)				      \
553	for_each_rdt_resource(r)					      \
 
554		if (r->alloc_capable)
555
556#define for_each_mon_capable_rdt_resource(r)				      \
557	for_each_rdt_resource(r)					      \
 
558		if (r->mon_capable)
559
 
 
 
 
 
 
 
 
 
 
560/* CPUID.(EAX=10H, ECX=ResID=1).EAX */
561union cpuid_0x10_1_eax {
562	struct {
563		unsigned int cbm_len:5;
564	} split;
565	unsigned int full;
566};
567
568/* CPUID.(EAX=10H, ECX=ResID=3).EAX */
569union cpuid_0x10_3_eax {
570	struct {
571		unsigned int max_delay:12;
572	} split;
573	unsigned int full;
574};
575
576/* CPUID.(EAX=10H, ECX=ResID).ECX */
577union cpuid_0x10_x_ecx {
578	struct {
579		unsigned int reserved:3;
580		unsigned int noncont:1;
581	} split;
582	unsigned int full;
583};
584
585/* CPUID.(EAX=10H, ECX=ResID).EDX */
586union cpuid_0x10_x_edx {
587	struct {
588		unsigned int cos_max:16;
589	} split;
590	unsigned int full;
591};
592
593void rdt_last_cmd_clear(void);
594void rdt_last_cmd_puts(const char *s);
595__printf(1, 2)
596void rdt_last_cmd_printf(const char *fmt, ...);
597
598void rdt_ctrl_update(void *arg);
599struct rdtgroup *rdtgroup_kn_lock_live(struct kernfs_node *kn);
600void rdtgroup_kn_unlock(struct kernfs_node *kn);
601int rdtgroup_kn_mode_restrict(struct rdtgroup *r, const char *name);
602int rdtgroup_kn_mode_restore(struct rdtgroup *r, const char *name,
603			     umode_t mask);
604struct rdt_domain_hdr *rdt_find_domain(struct list_head *h, int id,
605				       struct list_head **pos);
606ssize_t rdtgroup_schemata_write(struct kernfs_open_file *of,
607				char *buf, size_t nbytes, loff_t off);
608int rdtgroup_schemata_show(struct kernfs_open_file *of,
609			   struct seq_file *s, void *v);
610bool rdtgroup_cbm_overlaps(struct resctrl_schema *s, struct rdt_ctrl_domain *d,
611			   unsigned long cbm, int closid, bool exclusive);
612unsigned int rdtgroup_cbm_to_size(struct rdt_resource *r, struct rdt_ctrl_domain *d,
613				  unsigned long cbm);
614enum rdtgrp_mode rdtgroup_mode_by_closid(int closid);
615int rdtgroup_tasks_assigned(struct rdtgroup *r);
616int rdtgroup_locksetup_enter(struct rdtgroup *rdtgrp);
617int rdtgroup_locksetup_exit(struct rdtgroup *rdtgrp);
618bool rdtgroup_cbm_overlaps_pseudo_locked(struct rdt_ctrl_domain *d, unsigned long cbm);
619bool rdtgroup_pseudo_locked_in_hierarchy(struct rdt_ctrl_domain *d);
620int rdt_pseudo_lock_init(void);
621void rdt_pseudo_lock_release(void);
622int rdtgroup_pseudo_lock_create(struct rdtgroup *rdtgrp);
623void rdtgroup_pseudo_lock_remove(struct rdtgroup *rdtgrp);
624struct rdt_ctrl_domain *get_ctrl_domain_from_cpu(int cpu, struct rdt_resource *r);
625struct rdt_mon_domain *get_mon_domain_from_cpu(int cpu, struct rdt_resource *r);
626int closids_supported(void);
627void closid_free(int closid);
628int alloc_rmid(u32 closid);
629void free_rmid(u32 closid, u32 rmid);
630int rdt_get_mon_l3_config(struct rdt_resource *r);
631void __exit rdt_put_mon_l3_config(void);
632bool __init rdt_cpu_has(int flag);
633void mon_event_count(void *info);
634int rdtgroup_mondata_show(struct seq_file *m, void *arg);
 
 
 
 
635void mon_event_read(struct rmid_read *rr, struct rdt_resource *r,
636		    struct rdt_mon_domain *d, struct rdtgroup *rdtgrp,
637		    cpumask_t *cpumask, int evtid, int first);
638void mbm_setup_overflow_handler(struct rdt_mon_domain *dom,
639				unsigned long delay_ms,
640				int exclude_cpu);
641void mbm_handle_overflow(struct work_struct *work);
642void __init intel_rdt_mbm_apply_quirk(void);
643bool is_mba_sc(struct rdt_resource *r);
644void cqm_setup_limbo_handler(struct rdt_mon_domain *dom, unsigned long delay_ms,
645			     int exclude_cpu);
 
646void cqm_handle_limbo(struct work_struct *work);
647bool has_busy_rmid(struct rdt_mon_domain *d);
648void __check_limbo(struct rdt_mon_domain *d, bool force_free);
649void rdt_domain_reconfigure_cdp(struct rdt_resource *r);
650void __init thread_throttle_mode_init(void);
651void __init mbm_config_rftype_init(const char *config);
652void rdt_staged_configs_clear(void);
653bool closid_allocated(unsigned int closid);
654int resctrl_find_cleanest_closid(void);
655
656#endif /* _ASM_X86_RESCTRL_INTERNAL_H */