x86/resctrl: Apply offset correction when config is staged

When resctrl comes to copy the CAT MSR values from the ctrl_val[] array
into hardware, it applies an offset adjustment based on the type of
the resource. CODE and DATA resources have their closid mapped into an
odd/even range. This mapping is based on a property of the resource.

This happens once the new control value has been written to the ctrl_val[]
array. Once the CDP resources are merged, there will only be a single
property that needs to cover both odd/even mappings to the single
ctrl_val[] array. The offset adjustment must be applied before the new
value is written to the array.

Move the logic from cat_wrmsr() to resctrl_arch_update_domains(). The
value provided to apply_config() is now an index in the array, not the
closid. The parameters provided via struct msr_param are now indexes
too. As resctrl's use of closid is a u32, struct msr_param's type is
changed to match.

With this, the CODE and DATA resources only use the odd or even
indexes in the array. This allows the temporary num_closid/2 fixes in
domain_setup_ctrlval() and reset_all_ctrls() to be removed.

Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Jamie Iles <jamie@nuviainc.com>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Tested-by: Babu Moger <babu.moger@amd.com>
Link: https://lkml.kernel.org/r/20210728170637.25610-20-james.morse@arm.com
This commit is contained in:
James Morse
2021-07-28 17:06:32 +00:00
committed by Borislav Petkov
parent 141739aa73
commit 2e7df368fc
4 changed files with 27 additions and 31 deletions

View File

@@ -195,11 +195,6 @@ struct rdt_hw_resource rdt_resources_all[] = {
}, },
}; };
static unsigned int cbm_idx(struct rdt_resource *r, unsigned int closid)
{
return closid * r->cache.cbm_idx_mult + r->cache.cbm_idx_offset;
}
/* /*
* cache_alloc_hsw_probe() - Have to probe for Intel haswell server CPUs * cache_alloc_hsw_probe() - Have to probe for Intel haswell server CPUs
* as they do not have CPUID enumeration support for Cache allocation. * as they do not have CPUID enumeration support for Cache allocation.
@@ -438,7 +433,7 @@ cat_wrmsr(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r)
struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r); struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);
for (i = m->low; i < m->high; i++) for (i = m->low; i < m->high; i++)
wrmsrl(hw_res->msr_base + cbm_idx(r, i), hw_dom->ctrl_val[i]); wrmsrl(hw_res->msr_base + i, hw_dom->ctrl_val[i]);
} }
struct rdt_domain *get_domain_from_cpu(int cpu, struct rdt_resource *r) struct rdt_domain *get_domain_from_cpu(int cpu, struct rdt_resource *r)
@@ -549,14 +544,6 @@ static int domain_setup_ctrlval(struct rdt_resource *r, struct rdt_domain *d)
m.low = 0; m.low = 0;
m.high = hw_res->num_closid; m.high = hw_res->num_closid;
/*
* temporary: the array is full-size, but cat_wrmsr() still re-maps
* the index.
*/
if (hw_res->conf_type != CDP_NONE)
m.high /= 2;
hw_res->msr_update(d, &m, r); hw_res->msr_update(d, &m, r);
return 0; return 0;
} }

View File

@@ -246,17 +246,29 @@ next:
return -EINVAL; return -EINVAL;
} }
static void apply_config(struct rdt_hw_domain *hw_dom, static u32 cbm_idx(struct rdt_resource *r, unsigned int closid)
struct resctrl_staged_config *cfg, int closid, {
if (r->rid == RDT_RESOURCE_MBA)
return closid;
return closid * r->cache.cbm_idx_mult + r->cache.cbm_idx_offset;
}
static bool apply_config(struct rdt_hw_domain *hw_dom,
struct resctrl_staged_config *cfg, u32 idx,
cpumask_var_t cpu_mask, bool mba_sc) cpumask_var_t cpu_mask, bool mba_sc)
{ {
struct rdt_domain *dom = &hw_dom->d_resctrl; struct rdt_domain *dom = &hw_dom->d_resctrl;
u32 *dc = !mba_sc ? hw_dom->ctrl_val : hw_dom->mbps_val; u32 *dc = !mba_sc ? hw_dom->ctrl_val : hw_dom->mbps_val;
if (cfg->new_ctrl != dc[closid]) { if (cfg->new_ctrl != dc[idx]) {
cpumask_set_cpu(cpumask_any(&dom->cpu_mask), cpu_mask); cpumask_set_cpu(cpumask_any(&dom->cpu_mask), cpu_mask);
dc[closid] = cfg->new_ctrl; dc[idx] = cfg->new_ctrl;
return true;
} }
return false;
} }
int resctrl_arch_update_domains(struct rdt_resource *r, u32 closid) int resctrl_arch_update_domains(struct rdt_resource *r, u32 closid)
@@ -269,11 +281,12 @@ int resctrl_arch_update_domains(struct rdt_resource *r, u32 closid)
struct rdt_domain *d; struct rdt_domain *d;
bool mba_sc; bool mba_sc;
int cpu; int cpu;
u32 idx;
if (!zalloc_cpumask_var(&cpu_mask, GFP_KERNEL)) if (!zalloc_cpumask_var(&cpu_mask, GFP_KERNEL))
return -ENOMEM; return -ENOMEM;
msr_param.low = closid; msr_param.low = cbm_idx(r, closid);
msr_param.high = msr_param.low + 1; msr_param.high = msr_param.low + 1;
msr_param.res = r; msr_param.res = r;
@@ -285,7 +298,9 @@ int resctrl_arch_update_domains(struct rdt_resource *r, u32 closid)
if (!cfg->have_new_ctrl) if (!cfg->have_new_ctrl)
continue; continue;
apply_config(hw_dom, cfg, closid, cpu_mask, mba_sc); idx = cbm_idx(r, closid);
if (!apply_config(hw_dom, cfg, idx, cpu_mask, mba_sc))
continue;
} }
} }
@@ -405,11 +420,12 @@ void resctrl_arch_get_config(struct rdt_resource *r, struct rdt_domain *d,
u32 closid, enum resctrl_conf_type type, u32 *value) u32 closid, enum resctrl_conf_type type, u32 *value)
{ {
struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d); struct rdt_hw_domain *hw_dom = resctrl_to_arch_dom(d);
u32 idx = cbm_idx(r, closid);
if (!is_mba_sc(r)) if (!is_mba_sc(r))
*value = hw_dom->ctrl_val[closid]; *value = hw_dom->ctrl_val[idx];
else else
*value = hw_dom->mbps_val[closid]; *value = hw_dom->mbps_val[idx];
} }
static void show_doms(struct seq_file *s, struct resctrl_schema *schema, int closid) static void show_doms(struct seq_file *s, struct resctrl_schema *schema, int closid)

View File

@@ -332,8 +332,8 @@ static inline struct rdt_hw_domain *resctrl_to_arch_dom(struct rdt_domain *r)
*/ */
struct msr_param { struct msr_param {
struct rdt_resource *res; struct rdt_resource *res;
int low; u32 low;
int high; u32 high;
}; };
static inline bool is_llc_occupancy_enabled(void) static inline bool is_llc_occupancy_enabled(void)

View File

@@ -2378,13 +2378,6 @@ static int reset_all_ctrls(struct rdt_resource *r)
msr_param.low = 0; msr_param.low = 0;
msr_param.high = hw_res->num_closid; msr_param.high = hw_res->num_closid;
/*
* temporary: the array is full-sized, but cat_wrmsr() still re-maps
* the index.
*/
if (hw_res->cdp_enabled)
msr_param.high /= 2;
/* /*
* Disable resource control for this resource by setting all * Disable resource control for this resource by setting all
* CBMs in all domains to the maximum mask value. Pick one CPU * CBMs in all domains to the maximum mask value. Pick one CPU