xref: /linux-6.15/include/linux/resctrl.h (revision f436cb69)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _RESCTRL_H
3 #define _RESCTRL_H
4 
5 #include <linux/kernel.h>
6 #include <linux/list.h>
7 #include <linux/pid.h>
8 
9 /* CLOSID, RMID value used by the default control group */
10 #define RESCTRL_RESERVED_CLOSID		0
11 #define RESCTRL_RESERVED_RMID		0
12 
13 #define RESCTRL_PICK_ANY_CPU		-1
14 
15 #ifdef CONFIG_PROC_CPU_RESCTRL
16 
17 int proc_resctrl_show(struct seq_file *m,
18 		      struct pid_namespace *ns,
19 		      struct pid *pid,
20 		      struct task_struct *tsk);
21 
22 #endif
23 
24 /* max value for struct rdt_domain's mbps_val */
25 #define MBA_MAX_MBPS   U32_MAX
26 
27 /**
28  * enum resctrl_conf_type - The type of configuration.
29  * @CDP_NONE:	No prioritisation, both code and data are controlled or monitored.
30  * @CDP_CODE:	Configuration applies to instruction fetches.
31  * @CDP_DATA:	Configuration applies to reads and writes.
32  */
33 enum resctrl_conf_type {
34 	CDP_NONE,
35 	CDP_CODE,
36 	CDP_DATA,
37 };
38 
39 #define CDP_NUM_TYPES	(CDP_DATA + 1)
40 
41 /*
42  * Event IDs, the values match those used to program IA32_QM_EVTSEL before
43  * reading IA32_QM_CTR on RDT systems.
44  */
45 enum resctrl_event_id {
46 	QOS_L3_OCCUP_EVENT_ID		= 0x01,
47 	QOS_L3_MBM_TOTAL_EVENT_ID	= 0x02,
48 	QOS_L3_MBM_LOCAL_EVENT_ID	= 0x03,
49 };
50 
51 /**
52  * struct resctrl_staged_config - parsed configuration to be applied
53  * @new_ctrl:		new ctrl value to be loaded
54  * @have_new_ctrl:	whether the user provided new_ctrl is valid
55  */
56 struct resctrl_staged_config {
57 	u32			new_ctrl;
58 	bool			have_new_ctrl;
59 };
60 
61 /**
62  * struct rdt_domain - group of CPUs sharing a resctrl resource
63  * @list:		all instances of this resource
64  * @id:			unique id for this instance
65  * @cpu_mask:		which CPUs share this resource
66  * @rmid_busy_llc:	bitmap of which limbo RMIDs are above threshold
67  * @mbm_total:		saved state for MBM total bandwidth
68  * @mbm_local:		saved state for MBM local bandwidth
69  * @mbm_over:		worker to periodically read MBM h/w counters
70  * @cqm_limbo:		worker to periodically read CQM h/w counters
71  * @mbm_work_cpu:	worker CPU for MBM h/w counters
72  * @cqm_work_cpu:	worker CPU for CQM h/w counters
73  * @plr:		pseudo-locked region (if any) associated with domain
74  * @staged_config:	parsed configuration to be applied
75  * @mbps_val:		When mba_sc is enabled, this holds the array of user
76  *			specified control values for mba_sc in MBps, indexed
77  *			by closid
78  */
79 struct rdt_domain {
80 	struct list_head		list;
81 	int				id;
82 	struct cpumask			cpu_mask;
83 	unsigned long			*rmid_busy_llc;
84 	struct mbm_state		*mbm_total;
85 	struct mbm_state		*mbm_local;
86 	struct delayed_work		mbm_over;
87 	struct delayed_work		cqm_limbo;
88 	int				mbm_work_cpu;
89 	int				cqm_work_cpu;
90 	struct pseudo_lock_region	*plr;
91 	struct resctrl_staged_config	staged_config[CDP_NUM_TYPES];
92 	u32				*mbps_val;
93 };
94 
95 /**
96  * struct resctrl_cache - Cache allocation related data
97  * @cbm_len:		Length of the cache bit mask
98  * @min_cbm_bits:	Minimum number of consecutive bits to be set.
99  *			The value 0 means the architecture can support
100  *			zero CBM.
101  * @shareable_bits:	Bitmask of shareable resource with other
102  *			executing entities
103  * @arch_has_sparse_bitmasks:	True if a bitmask like f00f is valid.
104  * @arch_has_per_cpu_cfg:	True if QOS_CFG register for this cache
105  *				level has CPU scope.
106  */
107 struct resctrl_cache {
108 	unsigned int	cbm_len;
109 	unsigned int	min_cbm_bits;
110 	unsigned int	shareable_bits;
111 	bool		arch_has_sparse_bitmasks;
112 	bool		arch_has_per_cpu_cfg;
113 };
114 
115 /**
116  * enum membw_throttle_mode - System's memory bandwidth throttling mode
117  * @THREAD_THROTTLE_UNDEFINED:	Not relevant to the system
118  * @THREAD_THROTTLE_MAX:	Memory bandwidth is throttled at the core
119  *				always using smallest bandwidth percentage
120  *				assigned to threads, aka "max throttling"
121  * @THREAD_THROTTLE_PER_THREAD:	Memory bandwidth is throttled at the thread
122  */
123 enum membw_throttle_mode {
124 	THREAD_THROTTLE_UNDEFINED = 0,
125 	THREAD_THROTTLE_MAX,
126 	THREAD_THROTTLE_PER_THREAD,
127 };
128 
129 /**
130  * struct resctrl_membw - Memory bandwidth allocation related data
131  * @min_bw:		Minimum memory bandwidth percentage user can request
132  * @bw_gran:		Granularity at which the memory bandwidth is allocated
133  * @delay_linear:	True if memory B/W delay is in linear scale
134  * @arch_needs_linear:	True if we can't configure non-linear resources
135  * @throttle_mode:	Bandwidth throttling mode when threads request
136  *			different memory bandwidths
137  * @mba_sc:		True if MBA software controller(mba_sc) is enabled
138  * @mb_map:		Mapping of memory B/W percentage to memory B/W delay
139  */
140 struct resctrl_membw {
141 	u32				min_bw;
142 	u32				bw_gran;
143 	u32				delay_linear;
144 	bool				arch_needs_linear;
145 	enum membw_throttle_mode	throttle_mode;
146 	bool				mba_sc;
147 	u32				*mb_map;
148 };
149 
150 struct rdt_parse_data;
151 struct resctrl_schema;
152 
153 enum resctrl_scope {
154 	RESCTRL_L2_CACHE = 2,
155 	RESCTRL_L3_CACHE = 3,
156 };
157 
158 /**
159  * struct rdt_resource - attributes of a resctrl resource
160  * @rid:		The index of the resource
161  * @alloc_capable:	Is allocation available on this machine
162  * @mon_capable:	Is monitor feature available on this machine
163  * @num_rmid:		Number of RMIDs available
164  * @scope:		Scope of this resource
165  * @cache:		Cache allocation related data
166  * @membw:		If the component has bandwidth controls, their properties.
167  * @domains:		RCU list of all domains for this resource
168  * @name:		Name to use in "schemata" file.
169  * @data_width:		Character width of data when displaying
170  * @default_ctrl:	Specifies default cache cbm or memory B/W percent.
171  * @format_str:		Per resource format string to show domain value
172  * @parse_ctrlval:	Per resource function pointer to parse control values
173  * @evt_list:		List of monitoring events
174  * @fflags:		flags to choose base and info files
175  * @cdp_capable:	Is the CDP feature available on this resource
176  */
177 struct rdt_resource {
178 	int			rid;
179 	bool			alloc_capable;
180 	bool			mon_capable;
181 	int			num_rmid;
182 	enum resctrl_scope	scope;
183 	struct resctrl_cache	cache;
184 	struct resctrl_membw	membw;
185 	struct list_head	domains;
186 	char			*name;
187 	int			data_width;
188 	u32			default_ctrl;
189 	const char		*format_str;
190 	int			(*parse_ctrlval)(struct rdt_parse_data *data,
191 						 struct resctrl_schema *s,
192 						 struct rdt_domain *d);
193 	struct list_head	evt_list;
194 	unsigned long		fflags;
195 	bool			cdp_capable;
196 };
197 
198 /**
199  * struct resctrl_schema - configuration abilities of a resource presented to
200  *			   user-space
201  * @list:	Member of resctrl_schema_all.
202  * @name:	The name to use in the "schemata" file.
203  * @conf_type:	Whether this schema is specific to code/data.
204  * @res:	The resource structure exported by the architecture to describe
205  *		the hardware that is configured by this schema.
206  * @num_closid:	The number of closid that can be used with this schema. When
207  *		features like CDP are enabled, this will be lower than the
208  *		hardware supports for the resource.
209  */
210 struct resctrl_schema {
211 	struct list_head		list;
212 	char				name[8];
213 	enum resctrl_conf_type		conf_type;
214 	struct rdt_resource		*res;
215 	u32				num_closid;
216 };
217 
218 /* The number of closid supported by this resource regardless of CDP */
219 u32 resctrl_arch_get_num_closid(struct rdt_resource *r);
220 int resctrl_arch_update_domains(struct rdt_resource *r, u32 closid);
221 
222 /*
223  * Update the ctrl_val and apply this config right now.
224  * Must be called on one of the domain's CPUs.
225  */
226 int resctrl_arch_update_one(struct rdt_resource *r, struct rdt_domain *d,
227 			    u32 closid, enum resctrl_conf_type t, u32 cfg_val);
228 
229 u32 resctrl_arch_get_config(struct rdt_resource *r, struct rdt_domain *d,
230 			    u32 closid, enum resctrl_conf_type type);
231 int resctrl_online_domain(struct rdt_resource *r, struct rdt_domain *d);
232 void resctrl_offline_domain(struct rdt_resource *r, struct rdt_domain *d);
233 void resctrl_online_cpu(unsigned int cpu);
234 void resctrl_offline_cpu(unsigned int cpu);
235 
236 /**
237  * resctrl_arch_rmid_read() - Read the eventid counter corresponding to rmid
238  *			      for this resource and domain.
239  * @r:			resource that the counter should be read from.
240  * @d:			domain that the counter should be read from.
241  * @closid:		closid that matches the rmid. Depending on the architecture, the
242  *			counter may match traffic of both @closid and @rmid, or @rmid
243  *			only.
244  * @rmid:		rmid of the counter to read.
245  * @eventid:		eventid to read, e.g. L3 occupancy.
246  * @val:		result of the counter read in bytes.
247  * @arch_mon_ctx:	An architecture specific value from
248  *			resctrl_arch_mon_ctx_alloc(), for MPAM this identifies
249  *			the hardware monitor allocated for this read request.
250  *
251  * Some architectures need to sleep when first programming some of the counters.
252  * (specifically: arm64's MPAM cache occupancy counters can return 'not ready'
253  *  for a short period of time). Call from a non-migrateable process context on
254  * a CPU that belongs to domain @d. e.g. use smp_call_on_cpu() or
255  * schedule_work_on(). This function can be called with interrupts masked,
256  * e.g. using smp_call_function_any(), but may consistently return an error.
257  *
258  * Return:
259  * 0 on success, or -EIO, -EINVAL etc on error.
260  */
261 int resctrl_arch_rmid_read(struct rdt_resource *r, struct rdt_domain *d,
262 			   u32 closid, u32 rmid, enum resctrl_event_id eventid,
263 			   u64 *val, void *arch_mon_ctx);
264 
265 /**
266  * resctrl_arch_rmid_read_context_check()  - warn about invalid contexts
267  *
268  * When built with CONFIG_DEBUG_ATOMIC_SLEEP generate a warning when
269  * resctrl_arch_rmid_read() is called with preemption disabled.
270  *
271  * The contract with resctrl_arch_rmid_read() is that if interrupts
272  * are unmasked, it can sleep. This allows NOHZ_FULL systems to use an
273  * IPI, (and fail if the call needed to sleep), while most of the time
274  * the work is scheduled, allowing the call to sleep.
275  */
276 static inline void resctrl_arch_rmid_read_context_check(void)
277 {
278 	if (!irqs_disabled())
279 		might_sleep();
280 }
281 
282 /**
283  * resctrl_arch_reset_rmid() - Reset any private state associated with rmid
284  *			       and eventid.
285  * @r:		The domain's resource.
286  * @d:		The rmid's domain.
287  * @closid:	closid that matches the rmid. Depending on the architecture, the
288  *		counter may match traffic of both @closid and @rmid, or @rmid only.
289  * @rmid:	The rmid whose counter values should be reset.
290  * @eventid:	The eventid whose counter values should be reset.
291  *
292  * This can be called from any CPU.
293  */
294 void resctrl_arch_reset_rmid(struct rdt_resource *r, struct rdt_domain *d,
295 			     u32 closid, u32 rmid,
296 			     enum resctrl_event_id eventid);
297 
298 /**
299  * resctrl_arch_reset_rmid_all() - Reset all private state associated with
300  *				   all rmids and eventids.
301  * @r:		The resctrl resource.
302  * @d:		The domain for which all architectural counter state will
303  *		be cleared.
304  *
305  * This can be called from any CPU.
306  */
307 void resctrl_arch_reset_rmid_all(struct rdt_resource *r, struct rdt_domain *d);
308 
309 extern unsigned int resctrl_rmid_realloc_threshold;
310 extern unsigned int resctrl_rmid_realloc_limit;
311 
312 #endif /* _RESCTRL_H */
313