Lines Matching refs:nbytes
140 if (op->data.nbytes == 0U) { in stm32_qspi_wait_cmd()
191 for (len = op->data.nbytes; len != 0U; len--) { in stm32_qspi_poll()
212 op->data.nbytes); in stm32_qspi_mm()
219 if (op->data.nbytes == 0U) { in stm32_qspi_tx()
250 op->addr.val, op->data.nbytes); in stm32_qspi_exec_op()
257 addr_max = op->addr.val + op->data.nbytes + 1U; in stm32_qspi_exec_op()
259 if ((op->data.dir == SPI_MEM_DATA_IN) && (op->data.nbytes != 0U)) { in stm32_qspi_exec_op()
268 if (op->data.nbytes != 0U) { in stm32_qspi_exec_op()
269 mmio_write_32(qspi_base() + QSPI_DLR, op->data.nbytes - 1U); in stm32_qspi_exec_op()
276 if (op->addr.nbytes != 0U) { in stm32_qspi_exec_op()
277 ccr |= (op->addr.nbytes - 1U) << QSPI_CCR_ADSIZE_SHIFT; in stm32_qspi_exec_op()
282 if ((op->dummy.buswidth != 0U) && (op->dummy.nbytes != 0U)) { in stm32_qspi_exec_op()
283 ccr |= (op->dummy.nbytes * 8U / op->dummy.buswidth) << in stm32_qspi_exec_op()
287 if (op->data.nbytes != 0U) { in stm32_qspi_exec_op()
294 if ((op->addr.nbytes != 0U) && (mode != QSPI_CCR_MEM_MAP)) { in stm32_qspi_exec_op()