spi: synquacer: DMSTART bit must not be set while transferring
DMSTART bit must not be set while there is active transfer. This commit sets the DMSTART bit only when the transfer begins. Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> Signed-off-by: Satoru Okamoto <okamoto.satoru@socionext.com> Acked-by: Jassi Brar <jaswinder.singh@linaro.org>
This commit is contained in:
committed by
Tom Rini
parent
88d50ed8a1
commit
de9f2c9c2e
@@ -330,9 +330,11 @@ static int synquacer_spi_xfer(struct udevice *dev, unsigned int bitlen,
|
||||
writel(~0, priv->base + RXC);
|
||||
|
||||
/* Trigger */
|
||||
val = readl(priv->base + DMSTART);
|
||||
val |= BIT(TRIGGER);
|
||||
writel(val, priv->base + DMSTART);
|
||||
if (flags & SPI_XFER_BEGIN) {
|
||||
val = readl(priv->base + DMSTART);
|
||||
val |= BIT(TRIGGER);
|
||||
writel(val, priv->base + DMSTART);
|
||||
}
|
||||
|
||||
while (busy & (BIT(RXBIT) | BIT(TXBIT))) {
|
||||
if (priv->rx_words)
|
||||
|
||||
Reference in New Issue
Block a user