Skip to content

Commit 7af1e0a

Browse files
davejiangvinodkoul
authored andcommitted
dmaengine: idxd: add wq driver name support for accel-config user tool
With the possibility of multiple wq drivers that can be bound to the wq, the user config tool accel-config needs a way to know which wq driver to bind to the wq. Introduce per wq driver_name sysfs attribute where the user can indicate the driver to be bound to the wq. This allows accel-config to just bind to the driver using wq->driver_name. Signed-off-by: Dave Jiang <[email protected]> Signed-off-by: Tom Zanussi <[email protected]> Reviewed-by: Fenghua Yu <[email protected]> Acked-by: Vinod Koul <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent c223baf commit 7af1e0a

File tree

6 files changed

+63
-0
lines changed

6 files changed

+63
-0
lines changed

Documentation/ABI/stable/sysfs-driver-dma-idxd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,12 @@ Description: Shows the operation capability bits displayed in bitmap format
270270
correlates to the operations allowed. It's visible only
271271
on platforms that support the capability.
272272

273+
What: /sys/bus/dsa/devices/wq<m>.<n>/driver_name
274+
Date: Sept 8, 2023
275+
KernelVersion: 6.7.0
276+
277+
Description: Name of driver to be bounded to the wq.
278+
273279
What: /sys/bus/dsa/devices/engine<m>.<n>/group_id
274280
Date: Oct 25, 2019
275281
KernelVersion: 5.6.0

drivers/dma/idxd/cdev.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,7 @@ void idxd_wq_del_cdev(struct idxd_wq *wq)
509509

510510
static int idxd_user_drv_probe(struct idxd_dev *idxd_dev)
511511
{
512+
struct device *dev = &idxd_dev->conf_dev;
512513
struct idxd_wq *wq = idxd_dev_to_wq(idxd_dev);
513514
struct idxd_device *idxd = wq->idxd;
514515
int rc;
@@ -536,6 +537,12 @@ static int idxd_user_drv_probe(struct idxd_dev *idxd_dev)
536537

537538
mutex_lock(&wq->wq_lock);
538539

540+
if (!idxd_wq_driver_name_match(wq, dev)) {
541+
idxd->cmd_status = IDXD_SCMD_WQ_NO_DRV_NAME;
542+
rc = -ENODEV;
543+
goto wq_err;
544+
}
545+
539546
wq->wq = create_workqueue(dev_name(wq_confdev(wq)));
540547
if (!wq->wq) {
541548
rc = -ENOMEM;

drivers/dma/idxd/dma.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,12 @@ static int idxd_dmaengine_drv_probe(struct idxd_dev *idxd_dev)
306306
return -ENXIO;
307307

308308
mutex_lock(&wq->wq_lock);
309+
if (!idxd_wq_driver_name_match(wq, dev)) {
310+
idxd->cmd_status = IDXD_SCMD_WQ_NO_DRV_NAME;
311+
rc = -ENODEV;
312+
goto err;
313+
}
314+
309315
wq->type = IDXD_WQT_KERNEL;
310316

311317
rc = drv_enable_wq(wq);

drivers/dma/idxd/idxd.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ struct idxd_cdev {
159159
int minor;
160160
};
161161

162+
#define DRIVER_NAME_SIZE 128
163+
162164
#define IDXD_ALLOCATED_BATCH_SIZE 128U
163165
#define WQ_NAME_SIZE 1024
164166
#define WQ_TYPE_SIZE 10
@@ -227,6 +229,8 @@ struct idxd_wq {
227229
/* Lock to protect upasid_xa access. */
228230
struct mutex uc_lock;
229231
struct xarray upasid_xa;
232+
233+
char driver_name[DRIVER_NAME_SIZE + 1];
230234
};
231235

232236
struct idxd_engine {
@@ -646,6 +650,11 @@ static inline void idxd_wqcfg_set_max_batch_shift(int idxd_type, union wqcfg *wq
646650
wqcfg->max_batch_shift = max_batch_shift;
647651
}
648652

653+
static inline int idxd_wq_driver_name_match(struct idxd_wq *wq, struct device *dev)
654+
{
655+
return (strncmp(wq->driver_name, dev->driver->name, strlen(dev->driver->name)) == 0);
656+
}
657+
649658
int __must_check __idxd_driver_register(struct idxd_device_driver *idxd_drv,
650659
struct module *module, const char *mod_name);
651660
#define idxd_driver_register(driver) \

drivers/dma/idxd/sysfs.c

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,6 +1259,39 @@ static ssize_t wq_op_config_store(struct device *dev, struct device_attribute *a
12591259
static struct device_attribute dev_attr_wq_op_config =
12601260
__ATTR(op_config, 0644, wq_op_config_show, wq_op_config_store);
12611261

1262+
static ssize_t wq_driver_name_show(struct device *dev, struct device_attribute *attr, char *buf)
1263+
{
1264+
struct idxd_wq *wq = confdev_to_wq(dev);
1265+
1266+
return sysfs_emit(buf, "%s\n", wq->driver_name);
1267+
}
1268+
1269+
static ssize_t wq_driver_name_store(struct device *dev, struct device_attribute *attr,
1270+
const char *buf, size_t count)
1271+
{
1272+
struct idxd_wq *wq = confdev_to_wq(dev);
1273+
char *input, *pos;
1274+
1275+
if (wq->state != IDXD_WQ_DISABLED)
1276+
return -EPERM;
1277+
1278+
if (strlen(buf) > DRIVER_NAME_SIZE || strlen(buf) == 0)
1279+
return -EINVAL;
1280+
1281+
input = kstrndup(buf, count, GFP_KERNEL);
1282+
if (!input)
1283+
return -ENOMEM;
1284+
1285+
pos = strim(input);
1286+
memset(wq->driver_name, 0, DRIVER_NAME_SIZE + 1);
1287+
sprintf(wq->driver_name, "%s", pos);
1288+
kfree(input);
1289+
return count;
1290+
}
1291+
1292+
static struct device_attribute dev_attr_wq_driver_name =
1293+
__ATTR(driver_name, 0644, wq_driver_name_show, wq_driver_name_store);
1294+
12621295
static struct attribute *idxd_wq_attributes[] = {
12631296
&dev_attr_wq_clients.attr,
12641297
&dev_attr_wq_state.attr,
@@ -1278,6 +1311,7 @@ static struct attribute *idxd_wq_attributes[] = {
12781311
&dev_attr_wq_occupancy.attr,
12791312
&dev_attr_wq_enqcmds_retries.attr,
12801313
&dev_attr_wq_op_config.attr,
1314+
&dev_attr_wq_driver_name.attr,
12811315
NULL,
12821316
};
12831317

include/uapi/linux/idxd.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ enum idxd_scmd_stat {
3131
IDXD_SCMD_WQ_IRQ_ERR = 0x80100000,
3232
IDXD_SCMD_WQ_USER_NO_IOMMU = 0x80110000,
3333
IDXD_SCMD_DEV_EVL_ERR = 0x80120000,
34+
IDXD_SCMD_WQ_NO_DRV_NAME = 0x80200000,
3435
};
3536

3637
#define IDXD_SCMD_SOFTERR_MASK 0x80000000

0 commit comments

Comments
 (0)