Lines Matching full:dtr
169 op->cmd.dtr || op->addr.dtr || op->dummy.dtr || op->data.dtr; in spi_mem_default_supports_op()
172 if (!spi_mem_controller_is_capable(ctlr, dtr)) in spi_mem_default_supports_op()
385 op->cmd.buswidth, op->cmd.dtr ? 'D' : 'S', in spi_mem_exec_op()
386 op->addr.buswidth, op->addr.dtr ? 'D' : 'S', in spi_mem_exec_op()
387 op->dummy.buswidth, op->dummy.dtr ? 'D' : 'S', in spi_mem_exec_op()
388 op->data.buswidth, op->data.dtr ? 'D' : 'S', in spi_mem_exec_op()
584 * modes, sometimes in DTR. All these combinations make it impossible to
597 ncycles += ((op->cmd.nbytes * 8) / op->cmd.buswidth) / (op->cmd.dtr ? 2 : 1); in spi_mem_calc_op_duration()
598 ncycles += ((op->addr.nbytes * 8) / op->addr.buswidth) / (op->addr.dtr ? 2 : 1); in spi_mem_calc_op_duration()
602 ncycles += ((op->dummy.nbytes * 8) / op->dummy.buswidth) / (op->dummy.dtr ? 2 : 1); in spi_mem_calc_op_duration()
604 ncycles += ((op->data.nbytes * 8) / op->data.buswidth) / (op->data.dtr ? 2 : 1); in spi_mem_calc_op_duration()