Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Fenghua Yu | 113c609 | 2016-10-22 06:19:54 -0700 | [diff] [blame] | 2 | #ifndef _ASM_X86_INTEL_RDT_H |
| 3 | #define _ASM_X86_INTEL_RDT_H |
| 4 | |
Ingo Molnar | 5b825c3 | 2017-02-02 17:54:15 +0100 | [diff] [blame] | 5 | #include <linux/sched.h> |
Borislav Petkov | 8ff42c02 | 2016-11-02 17:51:17 +0100 | [diff] [blame] | 6 | #include <linux/kernfs.h> |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 7 | #include <linux/jump_label.h> |
| 8 | |
| 9 | #define IA32_L3_QOS_CFG 0xc81 |
Fenghua Yu | 99adde9 | 2017-12-20 14:57:23 -0800 | [diff] [blame] | 10 | #define IA32_L2_QOS_CFG 0xc82 |
Fenghua Yu | 113c609 | 2016-10-22 06:19:54 -0700 | [diff] [blame] | 11 | #define IA32_L3_CBM_BASE 0xc90 |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 12 | #define IA32_L2_CBM_BASE 0xd10 |
Vikas Shivappa | 05b9341 | 2017-04-07 17:33:53 -0700 | [diff] [blame] | 13 | #define IA32_MBA_THRTL_BASE 0xd50 |
Fenghua Yu | 113c609 | 2016-10-22 06:19:54 -0700 | [diff] [blame] | 14 | |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 15 | #define L3_QOS_CDP_ENABLE 0x01ULL |
| 16 | |
Fenghua Yu | 99adde9 | 2017-12-20 14:57:23 -0800 | [diff] [blame] | 17 | #define L2_QOS_CDP_ENABLE 0x01ULL |
| 18 | |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 19 | /* |
| 20 | * Event IDs are used to program IA32_QM_EVTSEL before reading event |
| 21 | * counter from IA32_QM_CTR |
| 22 | */ |
| 23 | #define QOS_L3_OCCUP_EVENT_ID 0x01 |
| 24 | #define QOS_L3_MBM_TOTAL_EVENT_ID 0x02 |
| 25 | #define QOS_L3_MBM_LOCAL_EVENT_ID 0x03 |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 26 | |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 27 | #define CQM_LIMBOCHECK_INTERVAL 1000 |
| 28 | |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 29 | #define MBM_CNTR_WIDTH 24 |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 30 | #define MBM_OVERFLOW_INTERVAL 1000 |
Vikas Shivappa | de73f38 | 2018-04-20 15:36:21 -0700 | [diff] [blame] | 31 | #define MAX_MBA_BW 100u |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 32 | |
Vikas Shivappa | edf6fa1 | 2017-07-25 14:14:28 -0700 | [diff] [blame] | 33 | #define RMID_VAL_ERROR BIT_ULL(63) |
| 34 | #define RMID_VAL_UNAVAIL BIT_ULL(62) |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 35 | |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 36 | DECLARE_STATIC_KEY_FALSE(rdt_enable_key); |
| 37 | |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 38 | /** |
| 39 | * struct mon_evt - Entry in the event list of a resource |
| 40 | * @evtid: event id |
| 41 | * @name: name of the event |
| 42 | */ |
| 43 | struct mon_evt { |
| 44 | u32 evtid; |
| 45 | char *name; |
| 46 | struct list_head list; |
| 47 | }; |
| 48 | |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 49 | /** |
| 50 | * struct mon_data_bits - Monitoring details for each event file |
| 51 | * @rid: Resource id associated with the event file. |
| 52 | * @evtid: Event id associated with the event file |
| 53 | * @domid: The domain to which the event file belongs |
| 54 | */ |
| 55 | union mon_data_bits { |
| 56 | void *priv; |
| 57 | struct { |
| 58 | unsigned int rid : 10; |
| 59 | unsigned int evtid : 8; |
| 60 | unsigned int domid : 14; |
| 61 | } u; |
| 62 | }; |
| 63 | |
| 64 | struct rmid_read { |
| 65 | struct rdtgroup *rgrp; |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 66 | struct rdt_domain *d; |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 67 | int evtid; |
Vikas Shivappa | a4de1df | 2017-07-25 14:14:46 -0700 | [diff] [blame] | 68 | bool first; |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 69 | u64 val; |
| 70 | }; |
| 71 | |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 72 | extern unsigned int intel_cqm_threshold; |
| 73 | extern bool rdt_alloc_capable; |
| 74 | extern bool rdt_mon_capable; |
| 75 | extern unsigned int rdt_mon_features; |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 76 | |
| 77 | enum rdt_group_type { |
| 78 | RDTCTRL_GROUP = 0, |
| 79 | RDTMON_GROUP, |
| 80 | RDT_NUM_GROUP, |
| 81 | }; |
| 82 | |
| 83 | /** |
Reinette Chatre | eb956a6 | 2018-06-22 15:41:54 -0700 | [diff] [blame] | 84 | * enum rdtgrp_mode - Mode of a RDT resource group |
| 85 | * @RDT_MODE_SHAREABLE: This resource group allows sharing of its allocations |
Reinette Chatre | 414dd2b | 2018-06-22 15:42:00 -0700 | [diff] [blame] | 86 | * @RDT_MODE_EXCLUSIVE: No sharing of this resource group's allocations allowed |
Reinette Chatre | eb956a6 | 2018-06-22 15:41:54 -0700 | [diff] [blame] | 87 | * |
| 88 | * The mode of a resource group enables control over the allowed overlap |
| 89 | * between allocations associated with different resource groups (classes |
| 90 | * of service). User is able to modify the mode of a resource group by |
| 91 | * writing to the "mode" resctrl file associated with the resource group. |
| 92 | */ |
| 93 | enum rdtgrp_mode { |
| 94 | RDT_MODE_SHAREABLE = 0, |
Reinette Chatre | 414dd2b | 2018-06-22 15:42:00 -0700 | [diff] [blame] | 95 | RDT_MODE_EXCLUSIVE, |
Reinette Chatre | eb956a6 | 2018-06-22 15:41:54 -0700 | [diff] [blame] | 96 | |
| 97 | /* Must be last */ |
| 98 | RDT_NUM_MODES, |
| 99 | }; |
| 100 | |
| 101 | /** |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 102 | * struct mongroup - store mon group's data in resctrl fs. |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 103 | * @mon_data_kn kernlfs node for the mon_data directory |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 104 | * @parent: parent rdtgrp |
| 105 | * @crdtgrp_list: child rdtgroup node list |
| 106 | * @rmid: rmid for this rdtgroup |
| 107 | */ |
| 108 | struct mongroup { |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 109 | struct kernfs_node *mon_data_kn; |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 110 | struct rdtgroup *parent; |
| 111 | struct list_head crdtgrp_list; |
| 112 | u32 rmid; |
| 113 | }; |
| 114 | |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 115 | /** |
| 116 | * struct rdtgroup - store rdtgroup's data in resctrl file system. |
| 117 | * @kn: kernfs node |
| 118 | * @rdtgroup_list: linked list for all rdtgroups |
| 119 | * @closid: closid for this rdtgroup |
Tony Luck | 12e0110 | 2016-10-28 15:04:45 -0700 | [diff] [blame] | 120 | * @cpu_mask: CPUs assigned to this rdtgroup |
Fenghua Yu | 60cf5e1 | 2016-10-28 15:04:44 -0700 | [diff] [blame] | 121 | * @flags: status bits |
| 122 | * @waitcount: how many cpus expect to find this |
Tony Luck | 12e0110 | 2016-10-28 15:04:45 -0700 | [diff] [blame] | 123 | * group when they acquire rdtgroup_mutex |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 124 | * @type: indicates type of this rdtgroup - either |
| 125 | * monitor only or ctrl_mon group |
| 126 | * @mon: mongroup related data |
Reinette Chatre | 472ef09b | 2018-06-22 15:41:55 -0700 | [diff] [blame] | 127 | * @mode: mode of resource group |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 128 | */ |
| 129 | struct rdtgroup { |
| 130 | struct kernfs_node *kn; |
| 131 | struct list_head rdtgroup_list; |
Vikas Shivappa | 0734ded | 2017-07-25 14:14:33 -0700 | [diff] [blame] | 132 | u32 closid; |
Tony Luck | 12e0110 | 2016-10-28 15:04:45 -0700 | [diff] [blame] | 133 | struct cpumask cpu_mask; |
Fenghua Yu | 60cf5e1 | 2016-10-28 15:04:44 -0700 | [diff] [blame] | 134 | int flags; |
| 135 | atomic_t waitcount; |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 136 | enum rdt_group_type type; |
| 137 | struct mongroup mon; |
Reinette Chatre | 472ef09b | 2018-06-22 15:41:55 -0700 | [diff] [blame] | 138 | enum rdtgrp_mode mode; |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 139 | }; |
| 140 | |
Fenghua Yu | 60cf5e1 | 2016-10-28 15:04:44 -0700 | [diff] [blame] | 141 | /* rdtgroup.flags */ |
| 142 | #define RDT_DELETED 1 |
| 143 | |
Jiri Olsa | 4ffa3c9 | 2017-04-10 16:52:32 +0200 | [diff] [blame] | 144 | /* rftype.flags */ |
| 145 | #define RFTYPE_FLAGS_CPUS_LIST 1 |
| 146 | |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 147 | /* |
| 148 | * Define the file type flags for base and info directories. |
| 149 | */ |
| 150 | #define RFTYPE_INFO BIT(0) |
| 151 | #define RFTYPE_BASE BIT(1) |
| 152 | #define RF_CTRLSHIFT 4 |
Vikas Shivappa | d4ab332 | 2017-07-25 14:14:30 -0700 | [diff] [blame] | 153 | #define RF_MONSHIFT 5 |
Tony Luck | 9b3a7fd | 2017-09-25 16:39:33 -0700 | [diff] [blame] | 154 | #define RF_TOPSHIFT 6 |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 155 | #define RFTYPE_CTRL BIT(RF_CTRLSHIFT) |
Vikas Shivappa | d4ab332 | 2017-07-25 14:14:30 -0700 | [diff] [blame] | 156 | #define RFTYPE_MON BIT(RF_MONSHIFT) |
Tony Luck | 9b3a7fd | 2017-09-25 16:39:33 -0700 | [diff] [blame] | 157 | #define RFTYPE_TOP BIT(RF_TOPSHIFT) |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 158 | #define RFTYPE_RES_CACHE BIT(8) |
| 159 | #define RFTYPE_RES_MB BIT(9) |
| 160 | #define RF_CTRL_INFO (RFTYPE_INFO | RFTYPE_CTRL) |
Vikas Shivappa | d4ab332 | 2017-07-25 14:14:30 -0700 | [diff] [blame] | 161 | #define RF_MON_INFO (RFTYPE_INFO | RFTYPE_MON) |
Tony Luck | 9b3a7fd | 2017-09-25 16:39:33 -0700 | [diff] [blame] | 162 | #define RF_TOP_INFO (RFTYPE_INFO | RFTYPE_TOP) |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 163 | #define RF_CTRL_BASE (RFTYPE_BASE | RFTYPE_CTRL) |
| 164 | |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 165 | /* List of all resource groups */ |
| 166 | extern struct list_head rdt_all_groups; |
| 167 | |
Vikas Shivappa | de016df | 2017-04-03 14:44:17 -0700 | [diff] [blame] | 168 | extern int max_name_width, max_data_width; |
| 169 | |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 170 | int __init rdtgroup_init(void); |
| 171 | |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 172 | /** |
Fenghua Yu | 4e978d0 | 2016-10-28 15:04:43 -0700 | [diff] [blame] | 173 | * struct rftype - describe each file in the resctrl file system |
Thomas Gleixner | 17f8ba1 | 2017-04-10 11:50:11 +0200 | [diff] [blame] | 174 | * @name: File name |
| 175 | * @mode: Access mode |
| 176 | * @kf_ops: File operations |
Jiri Olsa | 4ffa3c9 | 2017-04-10 16:52:32 +0200 | [diff] [blame] | 177 | * @flags: File specific RFTYPE_FLAGS_* flags |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 178 | * @fflags: File specific RF_* or RFTYPE_* flags |
Thomas Gleixner | 17f8ba1 | 2017-04-10 11:50:11 +0200 | [diff] [blame] | 179 | * @seq_show: Show content of the file |
| 180 | * @write: Write to the file |
Fenghua Yu | 4e978d0 | 2016-10-28 15:04:43 -0700 | [diff] [blame] | 181 | */ |
| 182 | struct rftype { |
| 183 | char *name; |
| 184 | umode_t mode; |
| 185 | struct kernfs_ops *kf_ops; |
Jiri Olsa | 4ffa3c9 | 2017-04-10 16:52:32 +0200 | [diff] [blame] | 186 | unsigned long flags; |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 187 | unsigned long fflags; |
Fenghua Yu | 4e978d0 | 2016-10-28 15:04:43 -0700 | [diff] [blame] | 188 | |
| 189 | int (*seq_show)(struct kernfs_open_file *of, |
| 190 | struct seq_file *sf, void *v); |
| 191 | /* |
| 192 | * write() is the generic write callback which maps directly to |
| 193 | * kernfs write operation and overrides all other operations. |
| 194 | * Maximum write size is determined by ->max_write_len. |
| 195 | */ |
| 196 | ssize_t (*write)(struct kernfs_open_file *of, |
| 197 | char *buf, size_t nbytes, loff_t off); |
| 198 | }; |
| 199 | |
| 200 | /** |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 201 | * struct mbm_state - status for each MBM counter in each domain |
| 202 | * @chunks: Total data moved (multiply by rdt_group.mon_scale to get bytes) |
| 203 | * @prev_msr Value of IA32_QM_CTR for this RMID last time we read it |
Vikas Shivappa | ba0f26d | 2018-04-20 15:36:20 -0700 | [diff] [blame] | 204 | * @chunks_bw Total local data moved. Used for bandwidth calculation |
| 205 | * @prev_bw_msr:Value of previous IA32_QM_CTR for bandwidth counting |
| 206 | * @prev_bw The most recent bandwidth in MBps |
| 207 | * @delta_bw Difference between the current and previous bandwidth |
| 208 | * @delta_comp Indicates whether to compute the delta_bw |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 209 | */ |
| 210 | struct mbm_state { |
| 211 | u64 chunks; |
| 212 | u64 prev_msr; |
Vikas Shivappa | ba0f26d | 2018-04-20 15:36:20 -0700 | [diff] [blame] | 213 | u64 chunks_bw; |
| 214 | u64 prev_bw_msr; |
| 215 | u32 prev_bw; |
| 216 | u32 delta_bw; |
| 217 | bool delta_comp; |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 218 | }; |
| 219 | |
| 220 | /** |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 221 | * struct rdt_domain - group of cpus sharing an RDT resource |
| 222 | * @list: all instances of this resource |
| 223 | * @id: unique id for this instance |
| 224 | * @cpu_mask: which cpus share this resource |
Vikas Shivappa | edf6fa1 | 2017-07-25 14:14:28 -0700 | [diff] [blame] | 225 | * @rmid_busy_llc: |
| 226 | * bitmap of which limbo RMIDs are above threshold |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 227 | * @mbm_total: saved state for MBM total bandwidth |
| 228 | * @mbm_local: saved state for MBM local bandwidth |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 229 | * @mbm_over: worker to periodically read MBM h/w counters |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 230 | * @cqm_limbo: worker to periodically read CQM h/w counters |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 231 | * @mbm_work_cpu: |
| 232 | * worker cpu for MBM h/w counters |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 233 | * @cqm_work_cpu: |
| 234 | * worker cpu for CQM h/w counters |
Vikas Shivappa | 2545e9f | 2017-04-07 17:33:51 -0700 | [diff] [blame] | 235 | * @ctrl_val: array of cache or mem ctrl values (indexed by CLOSID) |
Vikas Shivappa | 1bd2a63 | 2018-04-20 15:36:18 -0700 | [diff] [blame] | 236 | * @mbps_val: When mba_sc is enabled, this holds the bandwidth in MBps |
Vikas Shivappa | 2545e9f | 2017-04-07 17:33:51 -0700 | [diff] [blame] | 237 | * @new_ctrl: new ctrl value to be loaded |
| 238 | * @have_new_ctrl: did user provide new_ctrl for this domain |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 239 | */ |
| 240 | struct rdt_domain { |
| 241 | struct list_head list; |
| 242 | int id; |
| 243 | struct cpumask cpu_mask; |
Vikas Shivappa | edf6fa1 | 2017-07-25 14:14:28 -0700 | [diff] [blame] | 244 | unsigned long *rmid_busy_llc; |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 245 | struct mbm_state *mbm_total; |
| 246 | struct mbm_state *mbm_local; |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 247 | struct delayed_work mbm_over; |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 248 | struct delayed_work cqm_limbo; |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 249 | int mbm_work_cpu; |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 250 | int cqm_work_cpu; |
Vikas Shivappa | 2545e9f | 2017-04-07 17:33:51 -0700 | [diff] [blame] | 251 | u32 *ctrl_val; |
Vikas Shivappa | 1bd2a63 | 2018-04-20 15:36:18 -0700 | [diff] [blame] | 252 | u32 *mbps_val; |
Vikas Shivappa | 2545e9f | 2017-04-07 17:33:51 -0700 | [diff] [blame] | 253 | u32 new_ctrl; |
| 254 | bool have_new_ctrl; |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 255 | }; |
| 256 | |
| 257 | /** |
| 258 | * struct msr_param - set a range of MSRs from a domain |
| 259 | * @res: The resource to use |
| 260 | * @low: Beginning index from base MSR |
| 261 | * @high: End index |
| 262 | */ |
| 263 | struct msr_param { |
| 264 | struct rdt_resource *res; |
| 265 | int low; |
| 266 | int high; |
| 267 | }; |
| 268 | |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 269 | /** |
| 270 | * struct rdt_cache - Cache allocation related data |
| 271 | * @cbm_len: Length of the cache bit mask |
| 272 | * @min_cbm_bits: Minimum number of consecutive bits to be set |
| 273 | * @cbm_idx_mult: Multiplier of CBM index |
| 274 | * @cbm_idx_offset: Offset of CBM index. CBM index is computed by: |
| 275 | * closid * cbm_idx_multi + cbm_idx_offset |
| 276 | * in a cache bit mask |
Fenghua Yu | 0dd2d74 | 2017-07-25 15:39:04 -0700 | [diff] [blame] | 277 | * @shareable_bits: Bitmask of shareable resource with other |
| 278 | * executing entities |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 279 | */ |
| 280 | struct rdt_cache { |
| 281 | unsigned int cbm_len; |
| 282 | unsigned int min_cbm_bits; |
| 283 | unsigned int cbm_idx_mult; |
| 284 | unsigned int cbm_idx_offset; |
Fenghua Yu | 0dd2d74 | 2017-07-25 15:39:04 -0700 | [diff] [blame] | 285 | unsigned int shareable_bits; |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 286 | }; |
| 287 | |
| 288 | /** |
Vikas Shivappa | 05b9341 | 2017-04-07 17:33:53 -0700 | [diff] [blame] | 289 | * struct rdt_membw - Memory bandwidth allocation related data |
| 290 | * @max_delay: Max throttle delay. Delay is the hardware |
| 291 | * representation for memory bandwidth. |
| 292 | * @min_bw: Minimum memory bandwidth percentage user can request |
| 293 | * @bw_gran: Granularity at which the memory bandwidth is allocated |
| 294 | * @delay_linear: True if memory B/W delay is in linear scale |
Vikas Shivappa | 19c635a | 2018-04-20 15:36:17 -0700 | [diff] [blame] | 295 | * @mba_sc: True if MBA software controller(mba_sc) is enabled |
Vikas Shivappa | 05b9341 | 2017-04-07 17:33:53 -0700 | [diff] [blame] | 296 | * @mb_map: Mapping of memory B/W percentage to memory B/W delay |
| 297 | */ |
| 298 | struct rdt_membw { |
| 299 | u32 max_delay; |
| 300 | u32 min_bw; |
| 301 | u32 bw_gran; |
| 302 | u32 delay_linear; |
Vikas Shivappa | 19c635a | 2018-04-20 15:36:17 -0700 | [diff] [blame] | 303 | bool mba_sc; |
Vikas Shivappa | 05b9341 | 2017-04-07 17:33:53 -0700 | [diff] [blame] | 304 | u32 *mb_map; |
| 305 | }; |
| 306 | |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 307 | static inline bool is_llc_occupancy_enabled(void) |
| 308 | { |
| 309 | return (rdt_mon_features & (1 << QOS_L3_OCCUP_EVENT_ID)); |
| 310 | } |
| 311 | |
Tony Luck | 9f52425 | 2017-07-25 14:14:45 -0700 | [diff] [blame] | 312 | static inline bool is_mbm_total_enabled(void) |
| 313 | { |
| 314 | return (rdt_mon_features & (1 << QOS_L3_MBM_TOTAL_EVENT_ID)); |
| 315 | } |
| 316 | |
| 317 | static inline bool is_mbm_local_enabled(void) |
| 318 | { |
| 319 | return (rdt_mon_features & (1 << QOS_L3_MBM_LOCAL_EVENT_ID)); |
| 320 | } |
| 321 | |
| 322 | static inline bool is_mbm_enabled(void) |
| 323 | { |
| 324 | return (is_mbm_total_enabled() || is_mbm_local_enabled()); |
| 325 | } |
| 326 | |
Vikas Shivappa | a4de1df | 2017-07-25 14:14:46 -0700 | [diff] [blame] | 327 | static inline bool is_mbm_event(int e) |
| 328 | { |
| 329 | return (e >= QOS_L3_MBM_TOTAL_EVENT_ID && |
| 330 | e <= QOS_L3_MBM_LOCAL_EVENT_ID); |
| 331 | } |
| 332 | |
Vikas Shivappa | 05b9341 | 2017-04-07 17:33:53 -0700 | [diff] [blame] | 333 | /** |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 334 | * struct rdt_resource - attributes of an RDT resource |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 335 | * @rid: The index of the resource |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 336 | * @alloc_enabled: Is allocation enabled on this machine |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 337 | * @mon_enabled: Is monitoring enabled for this feature |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 338 | * @alloc_capable: Is allocation available on this machine |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 339 | * @mon_capable: Is monitor feature available on this machine |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 340 | * @name: Name to use in "schemata" file |
| 341 | * @num_closid: Number of CLOSIDs available |
| 342 | * @cache_level: Which cache level defines scope of this resource |
| 343 | * @default_ctrl: Specifies default cache cbm or memory B/W percent. |
| 344 | * @msr_base: Base MSR address for CBMs |
| 345 | * @msr_update: Function pointer to update QOS MSRs |
| 346 | * @data_width: Character width of data when displaying |
| 347 | * @domains: All domains for this resource |
| 348 | * @cache: Cache allocation related data |
Vikas Shivappa | c6ea67d | 2017-04-07 17:33:56 -0700 | [diff] [blame] | 349 | * @format_str: Per resource format string to show domain value |
| 350 | * @parse_ctrlval: Per resource function pointer to parse control values |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 351 | * @evt_list: List of monitoring events |
| 352 | * @num_rmid: Number of RMIDs available |
| 353 | * @mon_scale: cqm counter * mon_scale = occupancy in bytes |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 354 | * @fflags: flags to choose base and info files |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 355 | */ |
| 356 | struct rdt_resource { |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 357 | int rid; |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 358 | bool alloc_enabled; |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 359 | bool mon_enabled; |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 360 | bool alloc_capable; |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 361 | bool mon_capable; |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 362 | char *name; |
| 363 | int num_closid; |
| 364 | int cache_level; |
| 365 | u32 default_ctrl; |
| 366 | unsigned int msr_base; |
| 367 | void (*msr_update) (struct rdt_domain *d, struct msr_param *m, |
| 368 | struct rdt_resource *r); |
| 369 | int data_width; |
| 370 | struct list_head domains; |
Thomas Gleixner | a83827d | 2017-04-17 09:57:10 +0200 | [diff] [blame] | 371 | struct rdt_cache cache; |
| 372 | struct rdt_membw membw; |
Vikas Shivappa | c6ea67d | 2017-04-07 17:33:56 -0700 | [diff] [blame] | 373 | const char *format_str; |
Reinette Chatre | 7604df6 | 2018-06-22 15:42:03 -0700 | [diff] [blame] | 374 | int (*parse_ctrlval) (void *data, struct rdt_resource *r, |
Vikas Shivappa | c6ea67d | 2017-04-07 17:33:56 -0700 | [diff] [blame] | 375 | struct rdt_domain *d); |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 376 | struct list_head evt_list; |
| 377 | int num_rmid; |
| 378 | unsigned int mon_scale; |
Tony luck | 5dc1d5c | 2017-07-25 14:14:29 -0700 | [diff] [blame] | 379 | unsigned long fflags; |
Thomas Gleixner | 0921c54 | 2017-04-14 14:14:31 +0200 | [diff] [blame] | 380 | }; |
| 381 | |
Reinette Chatre | 7604df6 | 2018-06-22 15:42:03 -0700 | [diff] [blame] | 382 | int parse_cbm(void *_data, struct rdt_resource *r, struct rdt_domain *d); |
| 383 | int parse_bw(void *_buf, struct rdt_resource *r, struct rdt_domain *d); |
Vikas Shivappa | 6a507a6 | 2017-04-07 17:33:54 -0700 | [diff] [blame] | 384 | |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 385 | extern struct mutex rdtgroup_mutex; |
| 386 | |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 387 | extern struct rdt_resource rdt_resources_all[]; |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 388 | extern struct rdtgroup rdtgroup_default; |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 389 | DECLARE_STATIC_KEY_FALSE(rdt_alloc_enable_key); |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 390 | |
| 391 | int __init rdtgroup_init(void); |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 392 | |
| 393 | enum { |
| 394 | RDT_RESOURCE_L3, |
| 395 | RDT_RESOURCE_L3DATA, |
| 396 | RDT_RESOURCE_L3CODE, |
| 397 | RDT_RESOURCE_L2, |
Fenghua Yu | def1085 | 2017-12-20 14:57:22 -0800 | [diff] [blame] | 398 | RDT_RESOURCE_L2DATA, |
| 399 | RDT_RESOURCE_L2CODE, |
Vikas Shivappa | 05b9341 | 2017-04-07 17:33:53 -0700 | [diff] [blame] | 400 | RDT_RESOURCE_MBA, |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 401 | |
| 402 | /* Must be the last */ |
| 403 | RDT_NUM_RESOURCES, |
| 404 | }; |
| 405 | |
Vikas Shivappa | 895c663 | 2017-07-25 14:14:44 -0700 | [diff] [blame] | 406 | #define for_each_capable_rdt_resource(r) \ |
| 407 | for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\ |
| 408 | r++) \ |
| 409 | if (r->alloc_capable || r->mon_capable) |
| 410 | |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 411 | #define for_each_alloc_capable_rdt_resource(r) \ |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 412 | for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\ |
Thomas Gleixner | 17f8ba1 | 2017-04-10 11:50:11 +0200 | [diff] [blame] | 413 | r++) \ |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 414 | if (r->alloc_capable) |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 415 | |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 416 | #define for_each_mon_capable_rdt_resource(r) \ |
| 417 | for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\ |
| 418 | r++) \ |
| 419 | if (r->mon_capable) |
| 420 | |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 421 | #define for_each_alloc_enabled_rdt_resource(r) \ |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 422 | for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\ |
| 423 | r++) \ |
Vikas Shivappa | 1b5c0b7 | 2017-07-25 14:14:25 -0700 | [diff] [blame] | 424 | if (r->alloc_enabled) |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 425 | |
Vikas Shivappa | d4ab332 | 2017-07-25 14:14:30 -0700 | [diff] [blame] | 426 | #define for_each_mon_enabled_rdt_resource(r) \ |
| 427 | for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\ |
| 428 | r++) \ |
| 429 | if (r->mon_enabled) |
| 430 | |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 431 | /* CPUID.(EAX=10H, ECX=ResID=1).EAX */ |
| 432 | union cpuid_0x10_1_eax { |
| 433 | struct { |
| 434 | unsigned int cbm_len:5; |
| 435 | } split; |
| 436 | unsigned int full; |
| 437 | }; |
| 438 | |
Vikas Shivappa | ab66a33 | 2017-04-07 17:33:52 -0700 | [diff] [blame] | 439 | /* CPUID.(EAX=10H, ECX=ResID=3).EAX */ |
| 440 | union cpuid_0x10_3_eax { |
| 441 | struct { |
| 442 | unsigned int max_delay:12; |
| 443 | } split; |
| 444 | unsigned int full; |
| 445 | }; |
| 446 | |
Vikas Shivappa | 2545e9f | 2017-04-07 17:33:51 -0700 | [diff] [blame] | 447 | /* CPUID.(EAX=10H, ECX=ResID).EDX */ |
| 448 | union cpuid_0x10_x_edx { |
Fenghua Yu | c1c7c3f | 2016-10-22 06:19:55 -0700 | [diff] [blame] | 449 | struct { |
| 450 | unsigned int cos_max:16; |
| 451 | } split; |
| 452 | unsigned int full; |
| 453 | }; |
Tony Luck | 2264d9c | 2016-10-28 15:04:41 -0700 | [diff] [blame] | 454 | |
Tony Luck | 9b3a7fd | 2017-09-25 16:39:33 -0700 | [diff] [blame] | 455 | void rdt_last_cmd_clear(void); |
| 456 | void rdt_last_cmd_puts(const char *s); |
| 457 | void rdt_last_cmd_printf(const char *fmt, ...); |
| 458 | |
Vikas Shivappa | 2545e9f | 2017-04-07 17:33:51 -0700 | [diff] [blame] | 459 | void rdt_ctrl_update(void *arg); |
Fenghua Yu | 60cf5e1 | 2016-10-28 15:04:44 -0700 | [diff] [blame] | 460 | struct rdtgroup *rdtgroup_kn_lock_live(struct kernfs_node *kn); |
| 461 | void rdtgroup_kn_unlock(struct kernfs_node *kn); |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 462 | struct rdt_domain *rdt_find_domain(struct rdt_resource *r, int id, |
| 463 | struct list_head **pos); |
Tony Luck | 60ec244 | 2016-10-28 15:04:47 -0700 | [diff] [blame] | 464 | ssize_t rdtgroup_schemata_write(struct kernfs_open_file *of, |
| 465 | char *buf, size_t nbytes, loff_t off); |
| 466 | int rdtgroup_schemata_show(struct kernfs_open_file *of, |
| 467 | struct seq_file *s, void *v); |
Reinette Chatre | 9ab9aa1 | 2018-06-22 15:42:04 -0700 | [diff] [blame^] | 468 | bool rdtgroup_cbm_overlaps(struct rdt_resource *r, struct rdt_domain *d, |
| 469 | u32 _cbm, int closid, bool exclusive); |
Reinette Chatre | 472ef09b | 2018-06-22 15:41:55 -0700 | [diff] [blame] | 470 | enum rdtgrp_mode rdtgroup_mode_by_closid(int closid); |
Vikas Shivappa | edf6fa1 | 2017-07-25 14:14:28 -0700 | [diff] [blame] | 471 | struct rdt_domain *get_domain_from_cpu(int cpu, struct rdt_resource *r); |
Reinette Chatre | 024d15b | 2018-06-22 15:41:58 -0700 | [diff] [blame] | 472 | int update_domains(struct rdt_resource *r, int closid); |
| 473 | void closid_free(int closid); |
Vikas Shivappa | c7d9aac | 2017-07-25 14:14:32 -0700 | [diff] [blame] | 474 | int alloc_rmid(void); |
| 475 | void free_rmid(u32 rmid); |
Vikas Shivappa | 6a445ed | 2017-07-25 14:14:27 -0700 | [diff] [blame] | 476 | int rdt_get_mon_l3_config(struct rdt_resource *r); |
Vikas Shivappa | d89b737 | 2017-07-25 14:14:38 -0700 | [diff] [blame] | 477 | void mon_event_count(void *info); |
| 478 | int rdtgroup_mondata_show(struct seq_file *m, void *arg); |
Vikas Shivappa | 895c663 | 2017-07-25 14:14:44 -0700 | [diff] [blame] | 479 | void rmdir_mondata_subdir_allrdtgrp(struct rdt_resource *r, |
| 480 | unsigned int dom_id); |
| 481 | void mkdir_mondata_subdir_allrdtgrp(struct rdt_resource *r, |
| 482 | struct rdt_domain *d); |
Vikas Shivappa | a4de1df | 2017-07-25 14:14:46 -0700 | [diff] [blame] | 483 | void mon_event_read(struct rmid_read *rr, struct rdt_domain *d, |
| 484 | struct rdtgroup *rdtgrp, int evtid, int first); |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 485 | void mbm_setup_overflow_handler(struct rdt_domain *dom, |
| 486 | unsigned long delay_ms); |
Vikas Shivappa | e330268 | 2017-07-25 14:14:47 -0700 | [diff] [blame] | 487 | void mbm_handle_overflow(struct work_struct *work); |
Vikas Shivappa | 19c635a | 2018-04-20 15:36:17 -0700 | [diff] [blame] | 488 | bool is_mba_sc(struct rdt_resource *r); |
Vikas Shivappa | 1bd2a63 | 2018-04-20 15:36:18 -0700 | [diff] [blame] | 489 | void setup_default_ctrlval(struct rdt_resource *r, u32 *dc, u32 *dm); |
Vikas Shivappa | de73f38 | 2018-04-20 15:36:21 -0700 | [diff] [blame] | 490 | u32 delay_bw_map(unsigned long bw, struct rdt_resource *r); |
Vikas Shivappa | 24247ae | 2017-08-15 18:00:43 -0700 | [diff] [blame] | 491 | void cqm_setup_limbo_handler(struct rdt_domain *dom, unsigned long delay_ms); |
| 492 | void cqm_handle_limbo(struct work_struct *work); |
| 493 | bool has_busy_rmid(struct rdt_resource *r, struct rdt_domain *d); |
| 494 | void __check_limbo(struct rdt_domain *d, bool force_free); |
Fenghua Yu | 4f341a5 | 2016-10-28 15:04:48 -0700 | [diff] [blame] | 495 | |
Reinette Chatre | 32206ab | 2018-06-22 15:41:52 -0700 | [diff] [blame] | 496 | /* |
| 497 | * Define the hooks for Cache Pseudo-Locking to use within rdt_mount(). |
| 498 | * These are no-ops provided for the new kernfs changes to use as a |
| 499 | * baseline in preparation for a conflict-free merge between it |
| 500 | * (kernfs changes) and the Cache Pseudo-Locking enabling. |
| 501 | */ |
| 502 | static inline int rdt_pseudo_lock_init(void) { return 0; } |
| 503 | static inline void rdt_pseudo_lock_release(void) { } |
| 504 | |
Fenghua Yu | 113c609 | 2016-10-22 06:19:54 -0700 | [diff] [blame] | 505 | #endif /* _ASM_X86_INTEL_RDT_H */ |