Lines Matching defs:buswidth
232 static unsigned int stm32_qspi_get_mode(uint8_t buswidth)
234 if (buswidth == 4U) {
238 return buswidth;
250 __func__, op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth,
251 op->dummy.buswidth, op->data.buswidth,
258 (op->addr.buswidth != 0U)) {
271 ccr |= stm32_qspi_get_mode(op->cmd.buswidth) << QSPI_CCR_IMODE_SHIFT;
275 ccr |= stm32_qspi_get_mode(op->addr.buswidth) <<
279 if ((op->dummy.buswidth != 0U) && (op->dummy.nbytes != 0U)) {
280 ccr |= (op->dummy.nbytes * 8U / op->dummy.buswidth) <<
285 ccr |= stm32_qspi_get_mode(op->data.buswidth) <<