Home
last modified time | relevance | path

Searched refs:dc2c (Results 1 – 3 of 3) sorted by relevance

/linux-6.6.21/drivers/scsi/snic/
Dvnic_dev.c250 struct devcmd2_controller *dc2c = vdev->devcmd2; in _svnic_dev_cmd2() local
260 fetch_idx = ioread32(&dc2c->wq_ctrl->fetch_index); in _svnic_dev_cmd2()
266 posted = ioread32(&dc2c->wq_ctrl->posted_index); in _svnic_dev_cmd2()
281 dc2c->cmd_ring[posted].cmd = cmd; in _svnic_dev_cmd2()
282 dc2c->cmd_ring[posted].flags = 0; in _svnic_dev_cmd2()
285 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT; in _svnic_dev_cmd2()
289 dc2c->cmd_ring[posted].args[i] = vdev->args[i]; in _svnic_dev_cmd2()
297 iowrite32(new_posted, &dc2c->wq_ctrl->posted_index); in _svnic_dev_cmd2()
299 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT) in _svnic_dev_cmd2()
302 result = dc2c->result + dc2c->next_result; in _svnic_dev_cmd2()
[all …]
/linux-6.6.21/drivers/scsi/fnic/
Dvnic_dev.c310 struct devcmd2_controller *dc2c = vdev->devcmd2; in vnic_dev_cmd2() local
320 posted = ioread32(&dc2c->wq_ctrl->posted_index); in vnic_dev_cmd2()
321 fetch_index = ioread32(&dc2c->wq_ctrl->fetch_index); in vnic_dev_cmd2()
344 dc2c->cmd_ring[posted].cmd = cmd; in vnic_dev_cmd2()
345 dc2c->cmd_ring[posted].flags = 0; in vnic_dev_cmd2()
348 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT; in vnic_dev_cmd2()
351 dc2c->cmd_ring[posted].args[i] = vdev->args[i]; in vnic_dev_cmd2()
361 iowrite32(new_posted, &dc2c->wq_ctrl->posted_index); in vnic_dev_cmd2()
363 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT) in vnic_dev_cmd2()
366 result = dc2c->result + dc2c->next_result; in vnic_dev_cmd2()
[all …]
/linux-6.6.21/drivers/net/ethernet/cisco/enic/
Dvnic_dev.c287 struct devcmd2_controller *dc2c = vdev->devcmd2; in _vnic_dev_cmd2() local
293 u32 posted = dc2c->posted; in _vnic_dev_cmd2()
295 fetch_index = ioread32(&dc2c->wq_ctrl->fetch_index); in _vnic_dev_cmd2()
307 dc2c->cmd_ring[posted].cmd = cmd; in _vnic_dev_cmd2()
308 dc2c->cmd_ring[posted].flags = 0; in _vnic_dev_cmd2()
311 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT; in _vnic_dev_cmd2()
314 dc2c->cmd_ring[posted].args[i] = vdev->args[i]; in _vnic_dev_cmd2()
321 iowrite32(new_posted, &dc2c->wq_ctrl->posted_index); in _vnic_dev_cmd2()
322 dc2c->posted = new_posted; in _vnic_dev_cmd2()
324 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT) in _vnic_dev_cmd2()
[all …]