Linux CXL
 help / color / mirror / Atom feed
From: Dave Jiang <dave.jiang@intel.com>
To: Alison Schofield <alison.schofield@intel.com>
Cc: linux-cxl@vger.kernel.org, dave@stgolabs.net, jic23@kernel.org,
	vishal.l.verma@intel.com, ira.weiny@intel.com, djbw@kernel.org
Subject: Re: [PATCH 6/7] cxl/test: Add cxl_test accelerator driver
Date: Thu, 7 May 2026 16:41:04 -0700	[thread overview]
Message-ID: <e188d51c-0076-4e87-aca2-06000009e28c@intel.com> (raw)
In-Reply-To: <afrPVjKIQEPwCUAJ@aschofie-mobl2.lan>



On 5/5/26 10:19 PM, Alison Schofield wrote:
> On Wed, Apr 22, 2026 at 04:02:36PM -0700, Dave Jiang wrote:
>> Add a type2 accelerator mock driver for the platform device that
>> simulates a CXL type2 device. The driver exercises the same
>> minimal API calls that a real CXL type2 driver would utilize.
>>
>> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
> 
> snp
> 
>> diff --git a/tools/testing/cxl/test/accel.c b/tools/testing/cxl/test/accel.c
>> new file mode 100644
>> index 000000000000..f21fdd57034e
>> --- /dev/null
>> +++ b/tools/testing/cxl/test/accel.c
>> @@ -0,0 +1,71 @@
>> +// SPDX-License-Identifier: GPL-2.0-only
>> +// Copyright(c) 2026 Intel Corporation. All rights reserved.
>> +
>> +#include <linux/platform_device.h>
>> +#include <linux/mod_devicetable.h>
>> +#include <linux/vmalloc.h>
>> +#include <linux/module.h>
>> +#include <linux/delay.h>
>> +#include <linux/sizes.h>
>> +#include <linux/bits.h>
>> +#include <cxl/mailbox.h>
>> +#include <crypto/sha2.h>
>> +#include <cxlmem.h>
> 
> 
> Unused includes: crypto/sha2.h, linux/delay.h, linux/vmalloc.h,
> linux/bits.h. Looks copy-pasted from mem.c.

ok

> 
> 
>> +
>> +struct mock_cxl_accel {
>> +	struct cxl_dev_state cxlds;
>> +	struct cxl_memdev *cxlmd;
>> +};
>> +
>> +static int cxl_mock_accel_probe(struct platform_device *pdev)
>> +{
>> +	struct cxl_attach_region attach = {
>> +		.attach = {
>> +			.probe = cxl_memdev_attach_region,
>> +		}
>> +	};
>> +	struct mock_cxl_accel *cxl_accel;
>> +	struct cxl_dev_state *cxlds;
>> +	struct cxl_memdev *cxlmd;
>> +	int rc;
>> +
>> +	cxl_accel = devm_cxl_dev_state_create(&pdev->dev, CXL_DEVTYPE_DEVMEM,
>> +					      pdev->dev.id + 1, 0,
>> +					      struct mock_cxl_accel, cxlds,
>> +					      false);
>> +	if (!cxl_accel)
>> +		return -ENODEV;
> 
> devm_cxl_dev_state_create() NULL return means alloc failed, so 
> return should be -ENOMEM.
> 

ok

> 
>> +
>> +	cxlds = &cxl_accel->cxlds;
>> +	cxlds->media_ready = true;
>> +	rc = cxl_set_capacity(cxlds, SZ_512M);
>> +	if (rc)
>> +		return rc;
>> +
>> +	cxlmd = devm_cxl_add_memdev(cxlds, &attach.attach);
> 
> Above is storing pointer to stack allocated cxl_attach_region.
> The stack goes away when probe returns leaving cxlmd->attach
> dangling. I think we get away with it now because all our checks
> of it are NULL checks. Would it ever be derferenced? 
> Maybe devm_kzalloc attach or embed it in the the mock_cxl_accel
> so it sticks around.
> 
> 
> snip
> 
> 

I'll dynamically allocate it. The usage of 'attach' resolves when devm_cxl_add_memdev() returns. I think only place it runs into trouble is during devm cleanup. 

>> +module_platform_driver(cxl_mock_accel_driver);
>> +MODULE_LICENSE("GPL");
> 
> "GPL v2"

checkpatch suggested to use "GPL" instead of "GPL v2"

> 
>> +MODULE_DESCRIPTION("cxl_test: accelerator device mock module");
>> +MODULE_IMPORT_NS("CXL");
>> -- 
>> 2.53.0
>>


  reply	other threads:[~2026-05-07 23:41 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-22 23:02 [PATCH 0/7] cxl: Add CXL type2 accelerator support for cxl_test Dave Jiang
2026-04-22 23:02 ` [PATCH 1/7] cxl/test: Refactor mock_init_hdm_decoder() to prep for type2 decoder Dave Jiang
2026-05-06  4:31   ` Alison Schofield
2026-05-07 23:35     ` Dave Jiang
2026-04-22 23:02 ` [PATCH 2/7] cxl/test: Add type2 support for mock CFMWS0 Dave Jiang
2026-05-06  4:38   ` Alison Schofield
2026-05-07 23:36     ` Dave Jiang
2026-04-22 23:02 ` [PATCH 3/7] cxl/test: Refactor platform device enumerations Dave Jiang
2026-05-06  4:45   ` Alison Schofield
2026-05-07 23:36     ` Dave Jiang
2026-04-22 23:02 ` [PATCH 4/7] cxl/test: Add hierarchy enumeration support for type2 device Dave Jiang
2026-05-06  5:05   ` Alison Schofield
2026-05-07 23:37     ` Dave Jiang
2026-04-22 23:02 ` [PATCH 5/7] cxl/test: Fixup hdm init for auto region to support type2 Dave Jiang
2026-05-06  5:07   ` Alison Schofield
2026-04-22 23:02 ` [PATCH 6/7] cxl/test: Add cxl_test accelerator driver Dave Jiang
2026-05-06  5:19   ` Alison Schofield
2026-05-07 23:41     ` Dave Jiang [this message]
2026-04-22 23:02 ` [PATCH 7/7] cxl: Fix double unregistration of CXL regions for type2 devices Dave Jiang
2026-04-23  7:10   ` Alejandro Lucero Palau
2026-04-23 14:36     ` Dave Jiang
2026-04-29 23:45   ` Dan Williams (nvidia)
2026-04-23  7:16 ` [PATCH 0/7] cxl: Add CXL type2 accelerator support for cxl_test Alejandro Lucero Palau
2026-05-06  4:20 ` Alison Schofield
2026-05-06 14:59   ` Dave Jiang

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=e188d51c-0076-4e87-aca2-06000009e28c@intel.com \
    --to=dave.jiang@intel.com \
    --cc=alison.schofield@intel.com \
    --cc=dave@stgolabs.net \
    --cc=djbw@kernel.org \
    --cc=ira.weiny@intel.com \
    --cc=jic23@kernel.org \
    --cc=linux-cxl@vger.kernel.org \
    --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