From: "Lucero Palau, Alejandro" <alejandro.lucero-palau@amd.com>
To: Richard Cheng <icheng@nvidia.com>
Cc: dave@stgolabs.net, jic23@kernel.org, dave.jiang@intel.com,
alison.schofield@intel.com, vishal.l.verma@intel.com,
djbw@kernel.org, iweiny@kernel.org, ming.li@zohomail.com,
gourry@gourry.net, rrichter@amd.com, linux-cxl@vger.kernel.org,
linux-kernel@vger.kernel.org, newtonl@nvidia.com,
kristinc@nvidia.com, kaihengf@nvidia.com, kobak@nvidia.com
Subject: Re: [RFC PATCH 0/3] cxl: Auto-create a region for Type-2 memdev attach
Date: Tue, 25 Aug 2026 10:50:06 +0100 [thread overview]
Message-ID: <53689d31-3707-4c15-9eb9-eb6c77ab3ca0@amd.com> (raw)
In-Reply-To: <aobIoBYBACGlJ-OD@MWDK4CY14F>
Hi Richard,
On 20/08/2026 10:41, Richard Cheng wrote:
> On Wed, Aug 12, 2026 at 10:58:02AM +0800, Alejandro Lucero Palau wrote:
>> Hi Richard,
>>
>>
>> Some comments below.
>>
>>
>> Thanks!
>>
>>
>> On 8/5/26 08:40, Richard Cheng wrote:
<snip>
> Hi Alejandro,
>
> Thanks for the review and explanation. I've read them all.
>
> I think you are right that this RFC doesn't currently have a production platform
> where the system FW publishes a Type-2 CFMWS but leaves the EP decoder
> uncommitted.
>
> However, the config appears to be permitted by the CXL model. A CFMWS describes
> a FW-established root HPA window and the restrictions governing its use,
> including Type-2 v.s. Type-3 and volatile v.s. PMEM. The CFMWS def also
> describes OSPM assigning HPA ranges from those windows to discovered CXL.mem
> devices [1].
Right. I'm not saying this should not be supported, just pointing out
the use case does not make sense with current BIOS functionality. I
think BIOS will/could support a config option for just leaving a Type2
HDM uncommitted, but then why the kernel should do the same a default
BIOS config would do?
>
> The Linux CXL doc similarly states that only root decoders are required to be
> programmed during probe. Switch and EP decoder may remain available for runtime
> programming when the platform supports it [2].
Tangential to this discussion, but I have problems with this assertion.
Any switch or EP HDM programming will need a root port HDM programming
as well. Not sure which root decoders will need to be programmed at boot
time: a CFMWS is "programmed" by the BIOS and root decoders will need to
be programmed as well for any Type2/switch found with an enabled link.
>
> I raise the RFC intended for the question of how Linux should support that
> architecturally permitted config.
>
> The cxl_test config added in patch 3/3 constructs this scenario synthetically.
> This demonstrates the proposed kernel behavior, but I agree I don't know
> whether there exists a deployed FW scenario.
>
>
> And I agree that devm_cxl_probe_mem() shouldn't silently change from
> "attach to a FW-established region" into "allocate resources and program a new
> region". Those operations should have different semantics and ownership
> expectations.
Glad with the consensus :-)
>
> I am planning to rebase onto cxl/nexxt and rework the proposal as the following,
> please take a look and see if that matches your imagination or not.
> * Keep devm_cxl_probe_mem() behavior unchanged for FW-committed regions
> * Make region creation an explicit request from the accelerator provider,
> rather than an automatic fallback during memdev attach
> * Have the provider specify the required size. CXL core shouldn't assume
> that it maybe consume the entire volatile DPA partition as you mentioned.
> * Separate the reusable region-provisioning mechanism from the initial Type-2
> policy.
> * The common mechanism should handle HPA/DPA allocation, decoder-path
> construction, commit , rollback and managed teardown.
> * The initial type-2 caller would constrain that to volatile DEVMEM, IW=1
> and a provider-requested size.
>
> Oh and I'll replace "x1" with "IW=1" and explain the initial decoder,
> root-selection and granularity restriction more clearly.
>
> How does that sound to you ?
It sounds perfect!
FWIW, you likely saw Gregory's comment (discord) on this work requiring
the support for PMEM or at least the awareness PMEM support will need to
use same interface. His opinion and mine came from Dan's vision on this,
and your work will be the base for such PMEM support. I do not have an
impending reason for working on this PMEM support, but I am really
interested in how Type3 PMEMs can leverage CXL.mem for improving storage
needs, and currently reading/thinking about all this ...
Thanks!
> [1]: https://computeexpresslink.org/wp-content/uploads/2024/02/CEDT_ECN_1.0A_Eval.pdf
> [2]: https://docs.kernel.org/driver-api/cxl/linux/cxl-driver.html#runtime-programming
>
> Best regards,
> Richard Cheng.
>
>>> Testing result is in the following.
>>> - Built clean with clang/LLVM on arm64
>>> - cxl_test, type2_test=1. accel0 takes the unchanged attach path. accel1
>>> drives auto_create -> a committed 512 MB RAM region. The test asserts
>>> the 512 MB HPA range. committed state and 256 byte granularity confirmed
>>> via sysfs.
>>> - Unbind tears the region down with no orphaned decoder, rebind re-creates
>>> a fresh committed region.
>>> - Mock test only. Real accelerators whose FW commits a decoder take the
>>> attach path, and vfio-cxl binds only FW-committed devices, so auto-create
>>> has no real-HW caller yet.
>>>
>>> Best regards,
>>> Richard Cheng.
>>>
>>> Richard Cheng (3):
>>> cxl/region: Reset software-created regions on memdev detach
>>> cxl/region: Auto-create a region for memdev attach
>>> cxl/test: Exercise Type-2 automatic region creation
>>>
>>> drivers/cxl/core/region.c | 422 +++++++++++++++++++++++++++++----
>>> tools/testing/cxl/test/accel.c | 7 +
>>> tools/testing/cxl/test/cxl.c | 61 ++++-
>>> 3 files changed, 439 insertions(+), 51 deletions(-)
>>>
>>>
>>> base-commit: 1c6b4ceafc3b994871c29340e0c1ddb0af5800e7
prev parent reply other threads:[~2026-08-25 9:50 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 7:40 Richard Cheng
2026-08-05 7:40 ` [RFC PATCH 1/3] cxl/region: Reset software-created regions on memdev detach Richard Cheng
2026-08-05 7:40 ` [RFC PATCH 2/3] cxl/region: Auto-create a region for memdev attach Richard Cheng
2026-08-12 11:14 ` Alejandro Lucero Palau
2026-08-05 7:40 ` [RFC PATCH 3/3] cxl/test: Exercise Type-2 automatic region creation Richard Cheng
2026-08-12 9:58 ` [RFC PATCH 0/3] cxl: Auto-create a region for Type-2 memdev attach Alejandro Lucero Palau
2026-08-20 9:41 ` Richard Cheng
2026-08-25 9:50 ` Lucero Palau, Alejandro [this message]
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=53689d31-3707-4c15-9eb9-eb6c77ab3ca0@amd.com \
--to=alejandro.lucero-palau@amd.com \
--cc=alison.schofield@intel.com \
--cc=dave.jiang@intel.com \
--cc=dave@stgolabs.net \
--cc=djbw@kernel.org \
--cc=gourry@gourry.net \
--cc=icheng@nvidia.com \
--cc=iweiny@kernel.org \
--cc=jic23@kernel.org \
--cc=kaihengf@nvidia.com \
--cc=kobak@nvidia.com \
--cc=kristinc@nvidia.com \
--cc=linux-cxl@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=ming.li@zohomail.com \
--cc=newtonl@nvidia.com \
--cc=rrichter@amd.com \
--cc=vishal.l.verma@intel.com \
/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®