Currently the qspi dual stacked support is available on afx boards,
there is a board hardware bug, that the controller will works on
divide by 8. hence changed the master mode baud rate divisor to /8
incase of dual stacked mode qspi.
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
config_reg = readl(&xqspips_base->confr);
config_reg &= 0xFBFFFFFF; /* Set little endian mode of TX FIFO */
config_reg |= 0x8000FCC1;
+ if (is_dual == MODE_DUAL_STACKED)
+ config_reg |= 0x10;
writel(config_reg, &xqspips_base->confr);
if (is_dual == MODE_DUAL_PARALLEL)