Lines Matching defs:dc2c
322 struct devcmd2_controller *dc2c = vdev->devcmd2;
332 posted = ioread32(&dc2c->wq_ctrl->posted_index);
333 fetch_index = ioread32(&dc2c->wq_ctrl->fetch_index);
356 dc2c->cmd_ring[posted].cmd = cmd;
357 dc2c->cmd_ring[posted].flags = 0;
360 dc2c->cmd_ring[posted].flags |= DEVCMD2_FNORESULT;
363 dc2c->cmd_ring[posted].args[i] = vdev->args[i];
373 iowrite32(new_posted, &dc2c->wq_ctrl->posted_index);
375 if (dc2c->cmd_ring[posted].flags & DEVCMD2_FNORESULT)
378 result = dc2c->result + dc2c->next_result;
379 color = dc2c->color;
381 dc2c->next_result++;
382 if (dc2c->next_result == dc2c->result_size) {
383 dc2c->next_result = 0;
384 dc2c->color = dc2c->color ? 0 : 1;