From: Reinette Chatre <reinette.chatre@intel.com>
To: Babu Moger <babu.moger@amd.com>, <tony.luck@intel.com>, <bp@alien8.de>
Cc: <x86@kernel.org>, <Dave.Martin@arm.com>, <james.morse@arm.com>,
<corbet@lwn.net>, <skhan@linuxfoundation.org>, <tglx@kernel.org>,
<mingo@redhat.com>, <dave.hansen@linux.intel.com>,
<hpa@zytor.com>, <linux-kernel@vger.kernel.org>,
<linux-doc@vger.kernel.org>, <eranian@google.com>,
<peternewman@google.com>
Subject: Re: [PATCH v2 1/3] x86/resctrl: Fix ABMC counter programming for extended counter ranges
Date: Mon, 14 Sep 2026 14:50:23 -0700 [thread overview]
Message-ID: <dbaf3440-9d10-42a4-80fa-677451085198@intel.com> (raw)
In-Reply-To: <30dc55d0-511d-4f5f-92df-5dd0add354a2@intel.com>
Hi Babu,
On 9/14/26 2:30 PM, Reinette Chatre wrote:
> On 9/14/26 10:17 AM, Babu Moger wrote:
>> On 9/11/26 17:03, Reinette Chatre wrote:
>>> On 9/4/26 11:06 AM, Babu Moger wrote:
>
> ...
>
>>>>
>>>> Fix the issues with the following changes:
>>>>
>>>> 1. Update the cntr_id field handling to support the full hardware ABMC
>>>> counter range and ensure that counter programming does not interfere with
>>>> unrelated counters.
>>>
>>> Sashiko's assessment that this statement is not accurate looks correct to me.
>>>
>>> Looks like the enumeration needs a check to limit the number of supported
>>> counters if the hardware supports more than what can be configured? It seems
>>> awkward that such hardware could exist and unclear why the spec has a mismatch in
>>
>>
>> You're right. The spec overlooked this scenario. I've notified the concerned team.
>>
>>
>> Do you want me add this check?
>>
>> - r->mon.num_mbm_cntrs = (ebx & GENMASK(15, 0)) + 1;
>> + r->mon.num_mbm_cntrs = (ebx & GENMASK(12, 0)) + 1;
>>
>
> Yes please.
>
>>
>>> the number of bits here. Even if cntr_id expands further to use the remaining
>>> reserved bits it would still not be sufficient to configure all the numbers
>>> that hardware may claim to support. Are there perhaps more field width changes
>>> in this upcoming spec update?
>>
>> Two fields(ctrl_id and bw_src) in here are changing for this register. I dont know about other changes yet.
>>
>>>
>>>>
>>>> 2. Expand the bw_src field to 15 bits.
>>>
>>> Do the comments describing the RMID field width when reading the monitoring
>>> data (__cntr_id_read() and __rmid_read_phys()) need an update also?
>>
>> The RMID field width is expected to change. We can revisit this when that happens.
>
>
> This patch is that change, no? bw_src is expanded to 15 bits, and bw_src contains
> the RMID.
>
> This is the new RMID field width for monitoring configuration, after configuration
> the counter needs to be read for the monitoring data via MSR_IA32_QM_EVTSEL and per
> __cntr_id_read() the RMID field is still restricted (although not enforce by resctrl)
> to 12 bits:
>
> * 43:32 RMID RMID or counter ID in ABMC mode
>
> resctrl also supports switching between "default" and "mbm_event" mode and there
> is no support for the number of RMIDs changing between the modes ... this reading
> an event in "default" mode should support the same number of RMIDs as
> "mbm_event" mode and we see in __rmid_read_phys() (although, again not enforced)
> that it supports even fewer bits for RMID
>
> IA32_QM_EVTSEL.RMID (bits 41:32) are configured with valid RMID
>
> Looks like after this patch there are quite a few different field widths for RMID
> between what is documented, used directly, and actually enforced.
>
To add to this it looks like PLZA currently supports 12 bit RMIDs per
https://lore.kernel.org/lkml/702b88901bc62f07829144a96cc887471b427da8.1787772750.git.babu.moger@amd.com/
I assume this field will also be updated to 15 bits?
Reinette
next prev parent reply other threads:[~2026-09-14 21:50 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-04 18:06 [PATCH v2 0/3] x86/resctrl: Keep default MBM mode at boot and fix ABMC Babu Moger
2026-09-04 18:06 ` [PATCH v2 1/3] x86/resctrl: Fix ABMC counter programming for extended counter ranges Babu Moger
2026-09-11 22:03 ` Reinette Chatre
2026-09-14 17:17 ` Babu Moger
2026-09-14 21:30 ` Reinette Chatre
2026-09-14 21:50 ` Reinette Chatre [this message]
2026-09-15 0:18 ` Moger, Babu
2026-09-15 0:20 ` Moger, Babu
2026-09-04 18:06 ` [PATCH v2 2/3] fs/resctrl: Assign counters to existing groups when enabling mbm_event Babu Moger
2026-09-11 22:12 ` Reinette Chatre
2026-09-14 18:54 ` Babu Moger
2026-09-04 18:06 ` [PATCH v2 3/3] x86/resctrl: Keep mbm_assign_mode in default mode at boot Babu Moger
2026-09-11 22:25 ` Reinette Chatre
2026-09-14 20:45 ` Babu Moger
2026-09-14 21:31 ` Reinette Chatre
2026-09-15 1:11 ` Moger, Babu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dbaf3440-9d10-42a4-80fa-677451085198@intel.com \
--to=reinette.chatre@intel.com \
--cc=Dave.Martin@arm.com \
--cc=babu.moger@amd.com \
--cc=bp@alien8.de \
--cc=corbet@lwn.net \
--cc=dave.hansen@linux.intel.com \
--cc=eranian@google.com \
--cc=hpa@zytor.com \
--cc=james.morse@arm.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peternewman@google.com \
--cc=skhan@linuxfoundation.org \
--cc=tglx@kernel.org \
--cc=tony.luck@intel.com \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®