From: Shiju Jose via <qemu-devel@nongnu.org>
To: fan <nifan.cxl@gmail.com>
Cc: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"linux-cxl@vger.kernel.org" <linux-cxl@vger.kernel.org>,
Jonathan Cameron <jonathan.cameron@huawei.com>,
tanxiaofei <tanxiaofei@huawei.com>,
"Zengtao (B)" <prime.zeng@hisilicon.com>,
Linuxarm <linuxarm@huawei.com>
Subject: RE: [PATCH v2 1/3] hw/cxl/cxl-mailbox-utils: Add support for feature commands (8.2.9.6)
Date: Fri, 16 Feb 2024 09:20:50 +0000 [thread overview]
Message-ID: <e773c12ca6ca40a1aa582d3a8a4043d9@huawei.com> (raw)
In-Reply-To: <Zc5SbEn1J-Bk0tYg@debian>
Hi Fan,
Thanks for the feedbacks.
>-----Original Message-----
>From: fan <nifan.cxl@gmail.com>
>Sent: 15 February 2024 18:06
>To: Shiju Jose <shiju.jose@huawei.com>
>Cc: qemu-devel@nongnu.org; linux-cxl@vger.kernel.org; Jonathan Cameron
><jonathan.cameron@huawei.com>; tanxiaofei <tanxiaofei@huawei.com>;
>Zengtao (B) <prime.zeng@hisilicon.com>; Linuxarm <linuxarm@huawei.com>
>Subject: Re: [PATCH v2 1/3] hw/cxl/cxl-mailbox-utils: Add support for feature
>commands (8.2.9.6)
>
>On Fri, Nov 24, 2023 at 09:53:35PM +0800, shiju.jose@huawei.com wrote:
>> From: Shiju Jose <shiju.jose@huawei.com>
>>
>> CXL spec 3.0 section 8.2.9.6 describes optional device specific features.
>> CXL devices supports features with changeable attributes.
>> Get Supported Features retrieves the list of supported device specific
>> features. The settings of a feature can be retrieved using Get Feature
>> and optionally modified using Set Feature.
>>
>> Reviewed-by: Davidlohr Bueso <dave@stgolabs.net>
>> Signed-off-by: Shiju Jose <shiju.jose@huawei.com>
>> ---
>
>Updated the references to align with cxl spec r3.1, other than that looks good to
>me.
I had posted v3 of this series updated for spec r3.1. Please find here,
https://lore.kernel.org/qemu-devel/20240215110146.1444-1-shiju.jose@huawei.com/T/#t
>
>Fan
>
>> hw/cxl/cxl-mailbox-utils.c | 167
>> +++++++++++++++++++++++++++++++++++++
>> 1 file changed, 167 insertions(+)
>>
>> diff --git a/hw/cxl/cxl-mailbox-utils.c b/hw/cxl/cxl-mailbox-utils.c
>> index 6184f44339..1bbc9a48a6 100644
>> --- a/hw/cxl/cxl-mailbox-utils.c
>> +++ b/hw/cxl/cxl-mailbox-utils.c
>> @@ -66,6 +66,10 @@ enum {
>> LOGS = 0x04,
>> #define GET_SUPPORTED 0x0
>> #define GET_LOG 0x1
>> + FEATURES = 0x05,
>> + #define GET_SUPPORTED 0x0
>> + #define GET_FEATURE 0x1
>> + #define SET_FEATURE 0x2
>> IDENTIFY = 0x40,
>> #define MEMORY_DEVICE 0x0
>> CCLS = 0x41,
>> @@ -785,6 +789,157 @@ static CXLRetCode cmd_logs_get_log(const struct
>cxl_cmd *cmd,
>> return CXL_MBOX_SUCCESS;
>> }
>>
>> +/* CXL r3.0 section 8.2.9.6: Features */ typedef struct
>> +CXLSupportedFeatureHeader {
>> + uint16_t entries;
>> + uint16_t nsuppfeats_dev;
>> + uint32_t reserved;
>> +} QEMU_PACKED CXLSupportedFeatureHeader;
>> +
>> +typedef struct CXLSupportedFeatureEntry {
>> + QemuUUID uuid;
>> + uint16_t feat_index;
>> + uint16_t get_feat_size;
>> + uint16_t set_feat_size;
>> + uint32_t attrb_flags;
>> + uint8_t get_feat_version;
>> + uint8_t set_feat_version;
>> + uint16_t set_feat_effects;
>> + uint8_t rsvd[18];
>> +} QEMU_PACKED CXLSupportedFeatureEntry;
>> +
>> +enum CXL_SUPPORTED_FEATURES_LIST {
>> + CXL_FEATURE_MAX
>> +};
>> +
>> +/* Get Feature CXL 3.0 Spec 8.2.9.6.2 */
>> +/*
>> + * Get Feature input payload
>> + * CXL rev 3.0 section 8.2.9.6.2; Table 8-79 */
>> +/* Get Feature : Payload in selection */ enum
>> +CXL_GET_FEATURE_SELECTION {
>> + CXL_GET_FEATURE_SEL_CURRENT_VALUE = 0x0,
>> + CXL_GET_FEATURE_SEL_DEFAULT_VALUE = 0x1,
>> + CXL_GET_FEATURE_SEL_SAVED_VALUE = 0x2,
>> + CXL_GET_FEATURE_SEL_MAX
>> +};
>> +
>> +/* Set Feature CXL 3.0 Spec 8.2.9.6.3 */
>> +/*
>> + * Set Feature input payload
>> + * CXL rev 3.0 section 8.2.9.6.3; Table 8-81 */ typedef struct
>> +CXLSetFeatureInHeader {
>> + QemuUUID uuid;
>> + uint32_t flags;
>> + uint16_t offset;
>> + uint8_t version;
>> + uint8_t rsvd[9];
>> +} QEMU_PACKED QEMU_ALIGNED(16) CXLSetFeatureInHeader;
>> +
>> +/* Set Feature : Payload in flags */
>> +#define CXL_SET_FEATURE_FLAG_DATA_TRANSFER_MASK 0x7
>> +enum CXL_SET_FEATURE_FLAG_DATA_TRANSFER {
>> + CXL_SET_FEATURE_FLAG_FULL_DATA_TRANSFER = 0x0,
>> + CXL_SET_FEATURE_FLAG_INITIATE_DATA_TRANSFER = 0x1,
>> + CXL_SET_FEATURE_FLAG_CONTINUE_DATA_TRANSFER = 0x2,
>> + CXL_SET_FEATURE_FLAG_FINISH_DATA_TRANSFER = 0x3,
>> + CXL_SET_FEATURE_FLAG_ABORT_DATA_TRANSFER = 0x4,
>> + CXL_SET_FEATURE_FLAG_DATA_TRANSFER_MAX
>> +};
>> +
>> +/* CXL r3.0 section 8.2.9.6.1: Get Supported Features (Opcode 0500h)
>> +*/ static CXLRetCode cmd_features_get_supported(const struct cxl_cmd
>*cmd,
>> + uint8_t *payload_in,
>> + size_t len_in,
>> + uint8_t *payload_out,
>> + size_t *len_out,
>> + CXLCCI *cci) {
>> + struct {
>> + uint32_t count;
>> + uint16_t start_index;
>> + uint16_t reserved;
>> + } QEMU_PACKED QEMU_ALIGNED(16) * get_feats_in = (void
>> +*)payload_in;
>> +
>> + struct {
>> + CXLSupportedFeatureHeader hdr;
>> + CXLSupportedFeatureEntry feat_entries[];
>> + } QEMU_PACKED QEMU_ALIGNED(16) * get_feats_out = (void
>*)payload_out;
>> + uint16_t index;
>> + uint16_t entry, req_entries;
>> + uint16_t feat_entries = 0;
>> +
>> + if (get_feats_in->count < sizeof(CXLSupportedFeatureHeader) ||
>> + get_feats_in->start_index > CXL_FEATURE_MAX) {
>> + return CXL_MBOX_INVALID_INPUT;
>> + }
>> + req_entries = (get_feats_in->count -
>> + sizeof(CXLSupportedFeatureHeader)) /
>> + sizeof(CXLSupportedFeatureEntry);
>> + req_entries = MIN(req_entries, CXL_FEATURE_MAX);
>> + index = get_feats_in->start_index;
>> +
>> + entry = 0;
>> + while (entry < req_entries) {
>> + switch (index) {
>> + default:
>> + break;
>> + }
>> + index++;
>> + entry++;
>> + }
>> +
>> + get_feats_out->hdr.nsuppfeats_dev = CXL_FEATURE_MAX;
>> + get_feats_out->hdr.entries = feat_entries;
>> + *len_out = sizeof(CXLSupportedFeatureHeader) +
>> + feat_entries *
>> + sizeof(CXLSupportedFeatureEntry);
>> +
>> + return CXL_MBOX_SUCCESS;
>> +}
>> +
>> +/* CXL r3.0 section 8.2.9.6.2: Get Feature (Opcode 0501h) */ static
>> +CXLRetCode cmd_features_get_feature(const struct cxl_cmd *cmd,
>> + uint8_t *payload_in,
>> + size_t len_in,
>> + uint8_t *payload_out,
>> + size_t *len_out,
>> + CXLCCI *cci) {
>> + struct {
>> + QemuUUID uuid;
>> + uint16_t offset;
>> + uint16_t count;
>> + uint8_t selection;
>> + } QEMU_PACKED QEMU_ALIGNED(16) * get_feature;
>> + uint16_t bytes_to_copy = 0;
>> +
>> + get_feature = (void *)payload_in;
>> +
>> + if (get_feature->selection != CXL_GET_FEATURE_SEL_CURRENT_VALUE) {
>> + return CXL_MBOX_UNSUPPORTED;
>> + }
>> + if (get_feature->offset + get_feature->count > cci->payload_max) {
>> + return CXL_MBOX_INVALID_INPUT;
>> + }
>> +
>> + *len_out = bytes_to_copy;
>> +
>> + return CXL_MBOX_SUCCESS;
>> +}
>> +
>> +/* CXL r3.0 section 8.2.9.6.3: Set Feature (Opcode 0502h) */ static
>> +CXLRetCode cmd_features_set_feature(const struct cxl_cmd *cmd,
>> + uint8_t *payload_in,
>> + size_t len_in,
>> + uint8_t *payload_out,
>> + size_t *len_out,
>> + CXLCCI *cci) {
>> + return CXL_MBOX_SUCCESS;
>> +}
>> +
>> /* 8.2.9.5.1.1 */
>> static CXLRetCode cmd_identify_memory_device(const struct cxl_cmd *cmd,
>> uint8_t *payload_in, @@
>> -1954,6 +2109,18 @@ static const struct cxl_cmd cxl_cmd_set[256][256] = {
>> [LOGS][GET_SUPPORTED] = { "LOGS_GET_SUPPORTED",
>cmd_logs_get_supported,
>> 0, 0 },
>> [LOGS][GET_LOG] = { "LOGS_GET_LOG", cmd_logs_get_log, 0x18, 0 },
>> + [FEATURES][GET_SUPPORTED] = { "FEATURES_GET_SUPPORTED",
>> + cmd_features_get_supported, 0x8, 0 },
>> + [FEATURES][GET_FEATURE] = { "FEATURES_GET_FEATURE",
>> + cmd_features_get_feature, 0x15, 0 },
>> + [FEATURES][SET_FEATURE] = { "FEATURES_SET_FEATURE",
>> + cmd_features_set_feature,
>> + ~0,
>> + (CXL_MBOX_IMMEDIATE_CONFIG_CHANGE |
>> + CXL_MBOX_IMMEDIATE_DATA_CHANGE |
>> + CXL_MBOX_IMMEDIATE_POLICY_CHANGE |
>> + CXL_MBOX_IMMEDIATE_LOG_CHANGE |
>> + CXL_MBOX_SECURITY_STATE_CHANGE)},
>> [IDENTIFY][MEMORY_DEVICE] = { "IDENTIFY_MEMORY_DEVICE",
>> cmd_identify_memory_device, 0, 0 },
>> [CCLS][GET_PARTITION_INFO] = { "CCLS_GET_PARTITION_INFO",
>> --
>> 2.34.1
>>
Thanks,
Shiju
next prev parent reply other threads:[~2024-02-16 9:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-24 13:53 [PATCH v2 0/3] hw/cxl/cxl-mailbox-utils: Add feature commands, device patrol scrub control and DDR5 ECS control features shiju.jose--- via
2023-11-24 13:53 ` [PATCH v2 1/3] hw/cxl/cxl-mailbox-utils: Add support for feature commands (8.2.9.6) shiju.jose--- via
2024-02-15 18:05 ` fan
2024-02-16 9:20 ` Shiju Jose via [this message]
2023-11-24 13:53 ` [PATCH v2 2/3] hw/cxl/cxl-mailbox-utils: Add device patrol scrub control feature shiju.jose--- via
2024-02-15 18:47 ` fan
2024-02-16 10:16 ` Shiju Jose via
2024-02-16 17:35 ` fan
2024-02-15 20:55 ` Davidlohr Bueso
2024-02-16 12:11 ` Shiju Jose via
2023-11-24 13:53 ` [PATCH v2 3/3] hw/cxl/cxl-mailbox-utils: Add device DDR5 ECS " shiju.jose--- via
2024-02-15 19:11 ` fan
2024-02-15 18:08 ` [PATCH v2 0/3] hw/cxl/cxl-mailbox-utils: Add feature commands, device patrol scrub control and DDR5 ECS control features fan
2024-02-16 9:22 ` Shiju Jose via
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=e773c12ca6ca40a1aa582d3a8a4043d9@huawei.com \
--to=qemu-devel@nongnu.org \
--cc=jonathan.cameron@huawei.com \
--cc=linux-cxl@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=nifan.cxl@gmail.com \
--cc=prime.zeng@hisilicon.com \
--cc=shiju.jose@huawei.com \
--cc=tanxiaofei@huawei.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).