Lines Matching refs:nbytes
193 for (len = op->data.nbytes; len != 0U; len--) { in stm32_qspi_poll()
214 op->data.nbytes); in stm32_qspi_mm()
221 if (op->data.nbytes == 0U) { in stm32_qspi_tx()
252 op->addr.val, op->data.nbytes); in stm32_qspi_exec_op()
254 addr_max = op->addr.val + op->data.nbytes + 1U; in stm32_qspi_exec_op()
256 if ((op->data.dir == SPI_MEM_DATA_IN) && (op->data.nbytes != 0U)) { in stm32_qspi_exec_op()
265 if (op->data.nbytes != 0U) { in stm32_qspi_exec_op()
266 mmio_write_32(qspi_base() + QSPI_DLR, op->data.nbytes - 1U); in stm32_qspi_exec_op()
273 if (op->addr.nbytes != 0U) { in stm32_qspi_exec_op()
274 ccr |= (op->addr.nbytes - 1U) << QSPI_CCR_ADSIZE_SHIFT; in stm32_qspi_exec_op()
279 if ((op->dummy.buswidth != 0U) && (op->dummy.nbytes != 0U)) { in stm32_qspi_exec_op()
280 ccr |= (op->dummy.nbytes * 8U / op->dummy.buswidth) << in stm32_qspi_exec_op()
284 if (op->data.nbytes != 0U) { in stm32_qspi_exec_op()
291 if ((op->addr.nbytes != 0U) && (mode != QSPI_CCR_MEM_MAP)) { in stm32_qspi_exec_op()