Lines Matching defs:dc2c
310 struct devcmd2_controller *dc2c = vdev->devcmd2;
320 posted = ioread32(&dc2c->wq_ctrl->posted_index);
321 fetch_index = ioread32(&dc2c->wq_ctrl->fetch_index);
344 dc2c->cmd_ring[posted].cmd = cmd;
345 dc2c->cmd_ring[posted].flags = 0;
348 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT;
351 dc2c->cmd_ring[posted].args[i] = vdev->args[i];
361 iowrite32(new_posted, &dc2c->wq_ctrl->posted_index);
363 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT)
366 result = dc2c->result + dc2c->next_result;
367 color = dc2c->color;
369 dc2c->next_result++;
370 if (dc2c->next_result == dc2c->result_size) {
371 dc2c->next_result = 0;
372 dc2c->color = dc2c->color ? 0 : 1;