From: Jonathan Cameron via <qemu-devel@nongnu.org>
To: Fan Ni <nifan.cxl@gmail.com>
Cc: <anisa.su887@gmail.com>, <qemu-devel@nongnu.org>,
<dave@stgolabs.net>, <linux-cxl@vger.kernel.org>,
Anisa Su <anisa.su@samsung.com>
Subject: Re: [QEMU PATCH v3 6/9] cxl-mailbox-utils: 0x5602 - FMAPI Set DC Region Config
Date: Tue, 10 Jun 2025 16:09:59 +0100 [thread overview]
Message-ID: <20250610160959.000010b9@huawei.com> (raw)
In-Reply-To: <aEMW2SDuAE10Iyuf@debian>
On Fri, 6 Jun 2025 09:27:05 -0700
Fan Ni <nifan.cxl@gmail.com> wrote:
> On Thu, Jun 05, 2025 at 11:42:20PM +0000, anisa.su887@gmail.com wrote:
> > From: Anisa Su <anisa.su@samsung.com>
> >
> > FM DCD Management command 0x5602 implemented per CXL r3.2 Spec Section 7.6.7.6.3
> >
> > Signed-off-by: Anisa Su <anisa.su@samsung.com>
> > ---
>
> One minor comment, otherwise LGTM.
>
> > hw/cxl/cxl-mailbox-utils.c | 86 ++++++++++++++++++++++++++++++++++++
> > hw/mem/cxl_type3.c | 6 +--
> > include/hw/cxl/cxl_device.h | 3 ++
> > include/hw/cxl/cxl_mailbox.h | 6 +++
> > 4 files changed, 98 insertions(+), 3 deletions(-)
> >
> > diff --git a/hw/cxl/cxl-mailbox-utils.c b/hw/cxl/cxl-mailbox-utils.c
> > index 1b5c7216f9..47b1509a0e 100644
> > --- a/hw/cxl/cxl-mailbox-utils.c
> > +++ b/hw/cxl/cxl-mailbox-utils.c
> > @@ -121,6 +121,7 @@ enum {
> > FMAPI_DCD_MGMT = 0x56,
> > #define GET_DCD_INFO 0x0
> > #define GET_HOST_DC_REGION_CONFIG 0x1
> > + #define SET_DC_REGION_CONFIG 0x2
> > };
> >
> > /* CCI Message Format CXL r3.1 Figure 7-19 */
> > @@ -3387,6 +3388,84 @@ static CXLRetCode cmd_fm_get_host_dc_region_config(const struct cxl_cmd *cmd,
> > return CXL_MBOX_SUCCESS;
> > }
> >
> > +/* CXL r3.2 section 7.6.7.6.3: Set Host DC Region Configuration (Opcode 5602) */
> > +static CXLRetCode cmd_fm_set_dc_region_config(const struct cxl_cmd *cmd,
> > + uint8_t *payload_in,
> > + size_t len_in,
> > + uint8_t *payload_out,
> > + size_t *len_out,
> > + CXLCCI *cci)
> > +{
> > + struct {
> > + uint8_t reg_id;
> > + uint8_t rsvd[3];
> > + uint64_t block_sz;
> > + uint8_t flags;
> > + uint8_t rsvd2[3];
> > + } QEMU_PACKED *in = (void *)payload_in;
> > + CXLType3Dev *ct3d = CXL_TYPE3(cci->d);
> > + CXLEventDynamicCapacity dcEvent = {};
> > + CXLDCRegion *region = &ct3d->dc.regions[in->reg_id];
> > +
> > + /*
> > + * CXL r3.2 7.6.7.6.3: Set DC Region Configuration
> > + * This command shall fail with Unsupported when the Sanitize on Release
> > + * field does not match the region’s configuration... and the device
> > + * does not support reconfiguration of the Sanitize on Release setting.
> > + *
> > + * Currently not reconfigurable, so always fail if sanitize bit (bit 0)
> > + * doesn't match.
> > + */
> > + if ((in->flags & 0x1) != (region->flags & 0x1)) {
> > + return CXL_MBOX_UNSUPPORTED;
> > + }
> > +
> > + if (in->reg_id >= DCD_MAX_NUM_REGION) {
> > + return CXL_MBOX_UNSUPPORTED;
> > + }
> > +
> > + /* Return success if new block size == current block size */
> > + if (in->block_sz == region->block_size) {
> > + return CXL_MBOX_SUCCESS;
> > + }
>
> Should we move this below, after checking the bitmap?
Yes. The text is a little confusing but the list of what should
fail with unsupported doesn't allow an exception for a noop
request. I've made that tweak on the updated tree I'm building now.
If there is another version of this series please make this change.
Jonathan
>
> Fan
> > +
> > + /* Check that no extents are in the region being reconfigured */
> > + if (!bitmap_empty(region->blk_bitmap, region->len / region->block_size)) {
> > + return CXL_MBOX_UNSUPPORTED;
> > + }
> > +
> > + /* Check that new block size is supported */
> > + if (!test_bit(BIT((int) log2(in->block_sz)),
> > + ®ion->supported_blk_size_bitmask)) {
> > + return CXL_MBOX_INVALID_INPUT;
> > + }
> > +
> > + /* Free bitmap and create new one for new block size. */
> > + qemu_mutex_lock(®ion->bitmap_lock);
> > + g_free(region->blk_bitmap);
> > + region->blk_bitmap = bitmap_new(region->len / in->block_sz);
> > + qemu_mutex_unlock(®ion->bitmap_lock);
> > + region->block_size = in->block_sz;
> > +
> > + /* Create event record and insert into event log */
> > + cxl_assign_event_header(&dcEvent.hdr,
> > + &dynamic_capacity_uuid,
> > + (1 << CXL_EVENT_TYPE_INFO),
> > + sizeof(dcEvent),
> > + cxl_device_get_timestamp(&ct3d->cxl_dstate));
> > + dcEvent.type = DC_EVENT_REGION_CONFIG_UPDATED;
> > + dcEvent.validity_flags = 1;
> > + dcEvent.host_id = 0;
> > + dcEvent.updated_region_id = in->reg_id;
> > +
> > + if (cxl_event_insert(&ct3d->cxl_dstate,
> > + CXL_EVENT_TYPE_DYNAMIC_CAP,
> > + (CXLEventRecordRaw *)&dcEvent)) {
> > + cxl_event_irq_assert(ct3d);
> > + }
> > + return CXL_MBOX_SUCCESS;
> > +}
> > +
> > static const struct cxl_cmd cxl_cmd_set[256][256] = {
> > [INFOSTAT][BACKGROUND_OPERATION_ABORT] = { "BACKGROUND_OPERATION_ABORT",
> > cmd_infostat_bg_op_abort, 0, 0 },
> > @@ -3505,6 +3584,13 @@ static const struct cxl_cmd cxl_cmd_set_fm_dcd[256][256] = {
> > cmd_fm_get_dcd_info, 0, 0 },
> > [FMAPI_DCD_MGMT][GET_HOST_DC_REGION_CONFIG] = { "GET_HOST_DC_REGION_CONFIG",
> > cmd_fm_get_host_dc_region_config, 4, 0 },
> > + [FMAPI_DCD_MGMT][SET_DC_REGION_CONFIG] = { "SET_DC_REGION_CONFIG",
> > + cmd_fm_set_dc_region_config, 16,
> > + (CXL_MBOX_CONFIG_CHANGE_COLD_RESET |
> > + CXL_MBOX_CONFIG_CHANGE_CONV_RESET |
> > + CXL_MBOX_CONFIG_CHANGE_CXL_RESET |
> > + CXL_MBOX_IMMEDIATE_CONFIG_CHANGE |
> > + CXL_MBOX_IMMEDIATE_DATA_CHANGE) },
> > };
> >
> > /*
> > diff --git a/hw/mem/cxl_type3.c b/hw/mem/cxl_type3.c
> > index b872a26173..ee554a77be 100644
> > --- a/hw/mem/cxl_type3.c
> > +++ b/hw/mem/cxl_type3.c
> > @@ -1590,9 +1590,9 @@ void qmp_cxl_inject_correctable_error(const char *path, CxlCorErrorType type,
> > pcie_aer_inject_error(PCI_DEVICE(obj), &err);
> > }
> >
> > -static void cxl_assign_event_header(CXLEventRecordHdr *hdr,
> > - const QemuUUID *uuid, uint32_t flags,
> > - uint8_t length, uint64_t timestamp)
> > +void cxl_assign_event_header(CXLEventRecordHdr *hdr,
> > + const QemuUUID *uuid, uint32_t flags,
> > + uint8_t length, uint64_t timestamp)
> > {
> > st24_le_p(&hdr->flags, flags);
> > hdr->length = length;
> > diff --git a/include/hw/cxl/cxl_device.h b/include/hw/cxl/cxl_device.h
> > index 96ef9be444..76af75d2d0 100644
> > --- a/include/hw/cxl/cxl_device.h
> > +++ b/include/hw/cxl/cxl_device.h
> > @@ -721,4 +721,7 @@ void ct3_clear_region_block_backed(CXLType3Dev *ct3d, uint64_t dpa,
> > uint64_t len);
> > bool ct3_test_region_block_backed(CXLType3Dev *ct3d, uint64_t dpa,
> > uint64_t len);
> > +void cxl_assign_event_header(CXLEventRecordHdr *hdr,
> > + const QemuUUID *uuid, uint32_t flags,
> > + uint8_t length, uint64_t timestamp);
> > #endif
> > diff --git a/include/hw/cxl/cxl_mailbox.h b/include/hw/cxl/cxl_mailbox.h
> > index 9008402d1c..a05d7cb5b7 100644
> > --- a/include/hw/cxl/cxl_mailbox.h
> > +++ b/include/hw/cxl/cxl_mailbox.h
> > @@ -8,6 +8,7 @@
> > #ifndef CXL_MAILBOX_H
> > #define CXL_MAILBOX_H
> >
> > +#define CXL_MBOX_CONFIG_CHANGE_COLD_RESET (1)
> > #define CXL_MBOX_IMMEDIATE_CONFIG_CHANGE (1 << 1)
> > #define CXL_MBOX_IMMEDIATE_DATA_CHANGE (1 << 2)
> > #define CXL_MBOX_IMMEDIATE_POLICY_CHANGE (1 << 3)
> > @@ -15,5 +16,10 @@
> > #define CXL_MBOX_SECURITY_STATE_CHANGE (1 << 5)
> > #define CXL_MBOX_BACKGROUND_OPERATION (1 << 6)
> > #define CXL_MBOX_BACKGROUND_OPERATION_ABORT (1 << 7)
> > +#define CXL_MBOX_SECONDARY_MBOX_SUPPORTED (1 << 8)
> > +#define CXL_MBOX_REQUEST_ABORT_BACKGROUND_OP_SUPPORTED (1 << 9)
> > +#define CXL_MBOX_CEL_10_TO_11_VALID (1 << 10)
> > +#define CXL_MBOX_CONFIG_CHANGE_CONV_RESET (1 << 11)
> > +#define CXL_MBOX_CONFIG_CHANGE_CXL_RESET (1 << 12)
> >
> > #endif
> > --
> > 2.47.2
> >
next prev parent reply other threads:[~2025-06-10 17:05 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-05 23:42 [QEMU PATCH v3 0/9] CXL: FMAPI DCD Management Commands 0x5600-0x5605 anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 1/9] cxl-mailbox-utils: 0x5600 - FMAPI Get DCD Info anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 2/9] cxl/type3: Add dsmas_flags to CXLDCRegion struct anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 3/9] cxl-mailbox-utils: 0x5601 - FMAPI Get Host Region Config anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 4/9] cxl_events.h: Move definition for dynamic_capacity_uuid and enum for DC event types anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 5/9] hw/cxl_type3: Add DC Region bitmap lock anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 6/9] cxl-mailbox-utils: 0x5602 - FMAPI Set DC Region Config anisa.su887
2025-06-06 16:27 ` Fan Ni
2025-06-10 15:09 ` Jonathan Cameron via [this message]
2025-06-05 23:42 ` [QEMU PATCH v3 7/9] cxl-mailbox-utils: 0x5603 - FMAPI Get DC Region Extent Lists anisa.su887
2025-06-05 23:42 ` [QEMU PATCH v3 8/9] cxl-mailbox-utils: 0x5604 - FMAPI Initiate DC Add anisa.su887
2025-06-06 12:42 ` ALOK TIWARI
2025-06-06 17:30 ` Anisa Su
2025-06-10 15:17 ` Jonathan Cameron via
2025-06-06 18:21 ` Fan Ni
2025-06-10 15:26 ` Jonathan Cameron via
2025-06-05 23:42 ` [QEMU PATCH v3 9/9] cxl-mailbox-utils: 0x5605 - FMAPI Initiate DC Release anisa.su887
2025-06-06 12:55 ` ALOK TIWARI
2025-06-06 18:43 ` Fan Ni
2025-06-06 18:48 ` Fan Ni
2025-06-06 19:37 ` Anisa Su
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=20250610160959.000010b9@huawei.com \
--to=qemu-devel@nongnu.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=anisa.su887@gmail.com \
--cc=anisa.su@samsung.com \
--cc=dave@stgolabs.net \
--cc=linux-cxl@vger.kernel.org \
--cc=nifan.cxl@gmail.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;
as well as URLs for NNTP newsgroup(s).