Home
last modified time | relevance | path

Searched refs:idxd_dev (Results 1 – 8 of 8) sorted by relevance

/Linux-v6.1/drivers/dma/idxd/
Didxd.h25 struct idxd_dev;
38 struct idxd_dev { struct
62 int (*probe)(struct idxd_dev *idxd_dev); argument
63 void (*remove)(struct idxd_dev *idxd_dev);
88 struct idxd_dev idxd_dev; member
150 struct idxd_dev idxd_dev; member
185 struct idxd_dev idxd_dev; member
220 struct idxd_dev idxd_dev; member
264 struct idxd_dev idxd_dev; member
349 #define idxd_confdev(idxd) &idxd->idxd_dev.conf_dev
[all …]
Dbus.c40 struct idxd_dev *idxd_dev = confdev_to_idxd_dev(dev); in idxd_config_bus_match() local
44 if (idxd_dev->type == idxd_drv->type[i]) in idxd_config_bus_match()
56 struct idxd_dev *idxd_dev = confdev_to_idxd_dev(dev); in idxd_config_bus_probe() local
58 return idxd_drv->probe(idxd_dev); in idxd_config_bus_probe()
65 struct idxd_dev *idxd_dev = confdev_to_idxd_dev(dev); in idxd_config_bus_remove() local
67 idxd_drv->remove(idxd_dev); in idxd_config_bus_remove()
Dcompat.c39 struct idxd_dev *idxd_dev; in bind_store() local
45 idxd_dev = confdev_to_idxd_dev(dev); in bind_store()
46 if (is_idxd_dev(idxd_dev)) { in bind_store()
48 } else if (is_idxd_wq_dev(idxd_dev)) { in bind_store()
82 static int idxd_dsa_drv_probe(struct idxd_dev *idxd_dev) in idxd_dsa_drv_probe() argument
87 static void idxd_dsa_drv_remove(struct idxd_dev *idxd_dev) in idxd_dsa_drv_remove() argument
Ddma.c303 static int idxd_dmaengine_drv_probe(struct idxd_dev *idxd_dev) in idxd_dmaengine_drv_probe() argument
305 struct device *dev = &idxd_dev->conf_dev; in idxd_dmaengine_drv_probe()
306 struct idxd_wq *wq = idxd_dev_to_wq(idxd_dev); in idxd_dmaengine_drv_probe()
342 static void idxd_dmaengine_drv_remove(struct idxd_dev *idxd_dev) in idxd_dmaengine_drv_remove() argument
344 struct idxd_wq *wq = idxd_dev_to_wq(idxd_dev); in idxd_dmaengine_drv_remove()
Dregisters.h403 #define GRPWQCFG_OFFSET(idxd_dev, n, ofs) ((idxd_dev)->grpcfg_offset +\ argument
405 #define GRPENGCFG_OFFSET(idxd_dev, n) ((idxd_dev)->grpcfg_offset + (n) * GRPCFG_SIZE + 32) argument
406 #define GRPFLGCFG_OFFSET(idxd_dev, n) ((idxd_dev)->grpcfg_offset + (n) * GRPCFG_SIZE + 40) argument
Dcdev.c258 idxd_cdev->idxd_dev.type = IDXD_DEV_CDEV; in idxd_wq_add_cdev()
306 static int idxd_user_drv_probe(struct idxd_dev *idxd_dev) in idxd_user_drv_probe() argument
308 struct idxd_wq *wq = idxd_dev_to_wq(idxd_dev); in idxd_user_drv_probe()
357 static void idxd_user_drv_remove(struct idxd_dev *idxd_dev) in idxd_user_drv_remove() argument
359 struct idxd_wq *wq = idxd_dev_to_wq(idxd_dev); in idxd_user_drv_remove()
Ddevice.c1422 int idxd_device_drv_probe(struct idxd_dev *idxd_dev) in idxd_device_drv_probe() argument
1424 struct idxd_device *idxd = idxd_dev_to_idxd(idxd_dev); in idxd_device_drv_probe()
1462 void idxd_device_drv_remove(struct idxd_dev *idxd_dev) in idxd_device_drv_remove() argument
1464 struct device *dev = &idxd_dev->conf_dev; in idxd_device_drv_remove()
1465 struct idxd_device *idxd = idxd_dev_to_idxd(idxd_dev); in idxd_device_drv_remove()
Dinit.c167 idxd_dev_set_type(&wq->idxd_dev, IDXD_DEV_WQ); in idxd_setup_wqs()
237 idxd_dev_set_type(&engine->idxd_dev, IDXD_DEV_ENGINE); in idxd_setup_engines()
284 idxd_dev_set_type(&group->idxd_dev, IDXD_DEV_GROUP); in idxd_setup_groups()
476 idxd_dev_set_type(&idxd->idxd_dev, idxd->data->type); in idxd_alloc()