From: Dave Jiang <dave.jiang@intel.com>
To: Li Ming <ming.li@zohomail.com>, linux-cxl@vger.kernel.org
Cc: dan.j.williams@intel.com, ira.weiny@intel.com,
vishal.l.verma@intel.com, alison.schofield@intel.com,
Jonathan.Cameron@huawei.com, dave@stgolabs.net, jgg@nvidia.com,
shiju.jose@huawei.com
Subject: Re: [PATCH v4 10/15] cxl: Add support for fwctl RPC command to enable CXL feature commands
Date: Mon, 10 Feb 2025 15:31:08 -0700 [thread overview]
Message-ID: <f6cbd618-5638-433e-bc71-8a23d9387055@intel.com> (raw)
In-Reply-To: <cfe2a637-d00d-4388-b075-a57806603ca1@zohomail.com>
On 2/8/25 12:09 AM, Li Ming wrote:
> On 2/8/2025 7:37 AM, Dave Jiang wrote:
>> fwctl provides a fwctl_ops->fw_rpc() callback in order to issue ioctls
>> to a device. The cxl fwctl driver will start by supporting the CXL
>> Feature commands: Get Supported Features, Get Feature, and Set Feature.
>>
>> The fw_rpc() callback provides 'enum fwctl_rpc_scope' parameter where
>> it indicates the security scope of the call. The Get Supported Features
>> and Get Feature calls can be executed with the scope of
>> FWCTL_RPC_CONFIGRATION. The Set Feature call is gated by the effects
>> of the Feature reported by Get Supported Features call for the specific
>> Feature.
>>
>> Only "Get Supported Features" is supported in this patch. Additional
>> commands will be added in follow on patches. "Get Supported Features"
>> will filter the Features that are exclusive to the kernel. The flag
>> field of the Feature details will be cleared of the "Changeable"
>> field and the "set feat size" will be set to 0 to indicate that
>> the feature is not changeable.
>>
>> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
>> ---
>> v4:
>> - Use opcode directly instead of command ids. (Dan)
>> - Add check for no immediate effects and no reset effects. (Dan, Jonathan)
>> - Add check for Set Features to have CXL_FEATURES_RW cap.
>> - Add clearing of the "Changeable" bit in the flags for exclusive features.
>> ---
>> drivers/cxl/core/features.c | 221 +++++++++++++++++++++++++++++++++++-
>> include/uapi/cxl/features.h | 1 +
>> include/uapi/fwctl/cxl.h | 37 ++++++
>> 3 files changed, 257 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/cxl/core/features.c b/drivers/cxl/core/features.c
>> index b2836b951360..2682067dd2d7 100644
>> --- a/drivers/cxl/core/features.c
>> +++ b/drivers/cxl/core/features.c
>> @@ -365,11 +365,228 @@ static void *cxlctl_info(struct fwctl_uctx *uctx, size_t *length)
>> return info;
>> }
>>
>> +static struct cxl_feat_entry *
>> +get_support_feature_info(struct cxl_features_state *cxlfs,
>> + const struct fwctl_rpc_cxl *rpc_in)
>> +{
>> + struct cxl_feat_entry *feat;
>> + uuid_t uuid;
>> +
>> + if (rpc_in->op_size < sizeof(uuid))
>> + return ERR_PTR(-EINVAL);
>> +
>> + if (copy_from_user(&uuid, u64_to_user_ptr(rpc_in->in_payload),
>> + sizeof(uuid)))
>> + return ERR_PTR(-EFAULT);
>> +
>> + for (int i = 0; i < cxlfs->entries->num_features; i++) {
>> + feat = &cxlfs->entries->ent[i];
>> + if (uuid_equal(&uuid, &feat->uuid))
>> + return feat;
>> + }
>> +
>> + return ERR_PTR(-EINVAL);
>> +}
>> +
>> +static void *cxlctl_get_supported_features(struct cxl_features_state *cxlfs,
>> + const struct fwctl_rpc_cxl *rpc_in,
>> + size_t *out_len)
>> +{
>> + struct cxl_mbox_get_sup_feats_out *feat_out;
>> + struct cxl_mbox_get_sup_feats_in feat_in;
>> + struct cxl_feat_entry *pos;
>> + size_t out_size;
>> + int requested;
>> + u32 count;
>> + u16 start;
>> + int i;
>> +
>> + if (rpc_in->op_size != sizeof(feat_in))
>> + return ERR_PTR(-EINVAL);
>> +
>> + if (copy_from_user(&feat_in, u64_to_user_ptr(rpc_in->in_payload),
>> + rpc_in->op_size))
>> + return ERR_PTR(-EFAULT);
>> +
>> + count = le32_to_cpu(feat_in.count);
>> + start = le16_to_cpu(feat_in.start_idx);
>> + requested = count / sizeof(*pos);
>> +
>> + /*
>> + * Make sure that the total requested number of entries is not greater
>> + * than the total number of supported features allowed for userspace.
>> + */
>> + if (start >= cxlfs->entries->num_features)
>> + return ERR_PTR(-EINVAL);
>> +
>> + requested = min_t(int, requested, cxlfs->entries->num_features - start);
>> +
>> + out_size = sizeof(struct fwctl_rpc_cxl_out) +
>> + struct_size(feat_out, ents, requested);
>> +
>> + struct fwctl_rpc_cxl_out *rpc_out __free(kvfree) =
>> + kvzalloc(out_size, GFP_KERNEL);
>> + if (!rpc_out)
>> + return ERR_PTR(-ENOMEM);
>> +
>> + rpc_out->size = struct_size(feat_out, ents, requested);
>> + feat_out = (struct cxl_mbox_get_sup_feats_out *)rpc_out->payload;
>> + if (requested == 0) {
>> + feat_out->num_entries = cpu_to_le16(requested);
>> + feat_out->supported_feats =
>> + cpu_to_le16(cxlfs->entries->num_features);
>> + rpc_out->retval = CXL_MBOX_CMD_RC_SUCCESS;
>> + *out_len = out_size;
>> + return no_free_ptr(rpc_out);
>> + }
>> +
>> + for (i = 0, pos = &feat_out->ents[0];
>> + i < cxlfs->entries->num_features; i++, pos++) {
>
> My understanding is that 'i' should start from the value of the 'start' got from 'feat_in.start_idx'.
>
> Please correct me if I'm wrong.
You are correct. It needs to be
for (i = start, pos = &feat_out->ents[0];
i < cxlfs->entries->num_features; i++; pos++) {
if (i - start == requested)
break;
...
}
Thanks for catching that.
DJ
>
>
> Ming
>
>> + if (i == requested)
>> + break;
>> +
>> + memcpy(pos, &cxlfs->entries->ent[i], sizeof(*pos));
>> + /*
>> + * If the feature is exclusive, set the set_feat_size to 0 to
>> + * indicate that the feature is not changeable.
>> + */
>> + if (is_cxl_feature_exclusive(pos)) {
>> + u32 flags;
>> +
>> + pos->set_feat_size = 0;
>> + flags = le32_to_cpu(pos->flags);
>> + flags &= ~CXL_FEATURE_F_CHANGEABLE;
>> + pos->flags = cpu_to_le32(flags);
>> + }
>> + }
>> +
>> + feat_out->num_entries = cpu_to_le16(requested);
>> + feat_out->supported_feats = cpu_to_le16(cxlfs->entries->num_features);
>> + rpc_out->retval = CXL_MBOX_CMD_RC_SUCCESS;
>> + *out_len = out_size;
>> +
>> + return no_free_ptr(rpc_out);
>> +}
>> +
> [...]
next prev parent reply other threads:[~2025-02-10 22:31 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-07 23:37 [PATCH v4 00/15] cxl: Add CXL feature commands support via fwctl Dave Jiang
2025-02-07 23:37 ` [PATCH v4 01/15] cxl: Enumerate feature commands Dave Jiang
2025-02-07 23:47 ` Dan Williams
2025-02-08 6:00 ` Li Ming
2025-02-11 17:05 ` Jonathan Cameron
2025-02-07 23:37 ` [PATCH v4 02/15] cxl: Add Get Supported Features command for kernel usage Dave Jiang
2025-02-07 23:56 ` Dan Williams
2025-02-10 17:03 ` Dave Jiang
2025-02-08 6:13 ` Li Ming
2025-02-10 17:06 ` Dave Jiang
2025-02-07 23:37 ` [PATCH v4 03/15] cxl/test: Add Get Supported Features mailbox command support Dave Jiang
2025-02-07 23:37 ` [PATCH v4 04/15] cxl/mbox: Add GET_FEATURE mailbox command Dave Jiang
2025-02-08 0:12 ` Dan Williams
2025-02-07 23:37 ` [PATCH v4 05/15] cxl/mbox: Add SET_FEATURE " Dave Jiang
2025-02-08 0:21 ` Dan Williams
2025-02-08 6:17 ` Li Ming
2025-02-07 23:37 ` [PATCH v4 06/15] cxl: Setup exclusive CXL features that are reserved for the kernel Dave Jiang
2025-02-08 1:10 ` Dan Williams
2025-02-08 1:16 ` Dave Jiang
2025-02-08 6:22 ` Li Ming
2025-02-10 17:40 ` Dave Jiang
2025-02-10 17:50 ` Dave Jiang
2025-02-11 5:46 ` Li Ming
2025-02-11 16:13 ` Dave Jiang
2025-02-07 23:37 ` [PATCH v4 07/15] cxl: Add FWCTL support to CXL Dave Jiang
2025-02-08 1:24 ` Dan Williams
2025-02-07 23:37 ` [PATCH v4 08/15] cxl: Add support for FWCTL get driver information callback Dave Jiang
2025-02-08 1:25 ` Dan Williams
2025-02-10 6:21 ` Li Ming
2025-02-07 23:37 ` [PATCH v4 09/15] cxl: Move cxl feature command structs to user header Dave Jiang
2025-02-07 23:37 ` [PATCH v4 10/15] cxl: Add support for fwctl RPC command to enable CXL feature commands Dave Jiang
2025-02-08 1:29 ` Dan Williams
2025-02-08 1:34 ` Dan Williams
2025-02-08 7:09 ` Li Ming
2025-02-10 22:31 ` Dave Jiang [this message]
2025-02-07 23:37 ` [PATCH v4 11/15] cxl: Add support to handle user feature commands for get feature Dave Jiang
2025-02-10 6:41 ` Li Ming
2025-02-07 23:37 ` [PATCH v4 12/15] cxl: Add support to handle user feature commands for set feature Dave Jiang
2025-02-10 6:43 ` Li Ming
2025-02-07 23:37 ` [PATCH v4 13/15] cxl/test: Add Get Feature support to cxl_test Dave Jiang
2025-02-10 6:44 ` Li Ming
2025-02-07 23:37 ` [PATCH v4 14/15] cxl/test: Add Set " Dave Jiang
2025-02-10 6:44 ` Li Ming
2025-02-07 23:37 ` [PATCH v4 15/15] fwctl/cxl: Add documentation to FWCTL CXL Dave Jiang
2025-02-08 1:38 ` Dan Williams
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=f6cbd618-5638-433e-bc71-8a23d9387055@intel.com \
--to=dave.jiang@intel.com \
--cc=Jonathan.Cameron@huawei.com \
--cc=alison.schofield@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dave@stgolabs.net \
--cc=ira.weiny@intel.com \
--cc=jgg@nvidia.com \
--cc=linux-cxl@vger.kernel.org \
--cc=ming.li@zohomail.com \
--cc=shiju.jose@huawei.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