* This function performs the following actions
* - Disable and clear all the interrupts
* - Enable manual slave select
- * - Enable manual start
+ * - Enable auto start
* - Deselect all the chip select lines
* - Set the size of the word to be transferred as 32 bit
* - Set the little endian mode of TX FIFO and
writel(0x7F, &zynq_qspi_base->isr);
config_reg = readl(&zynq_qspi_base->confr);
+ config_reg &= ~ZYNQ_QSPI_CONFIG_MSA_MASK;
config_reg |= ZYNQ_QSPI_CONFIG_IFMODE_MASK |
ZYNQ_QSPI_CONFIG_MCS_MASK | ZYNQ_QSPI_CONFIG_PCS_MASK |
ZYNQ_QSPI_CONFIG_FW_MASK | ZYNQ_QSPI_CONFIG_MSTREN_MASK;