spi/pxa2xx: Modify RX-Tresh instead of busy-loop for the remaining RX bytes.
After all TX bytes are sent, the driver spins while the SPI core is busy and then it spins for a "short" period of time until RX bytes are available. On Sodavile the busy flag disappears pretty quick and after that it takes approx ~130ms (sometimes less but not much) until there are bytes available in the RX FIFO. This patch removes the busy loop and modifies the RX threshould so we get woken up once the remainings bytes arrived. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
This commit is contained in:
Родитель
2a8626a9e2
Коммит
579d3bb2ac
|
@ -660,13 +660,25 @@ static irqreturn_t dma_transfer(struct driver_data *drv_data)
|
||||||
return IRQ_NONE;
|
return IRQ_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void reset_sccr1(struct driver_data *drv_data)
|
||||||
|
{
|
||||||
|
void __iomem *reg = drv_data->ioaddr;
|
||||||
|
struct chip_data *chip = drv_data->cur_chip;
|
||||||
|
u32 sccr1_reg;
|
||||||
|
|
||||||
|
sccr1_reg = read_SSCR1(reg) & ~drv_data->int_cr1;
|
||||||
|
sccr1_reg &= ~SSCR1_RFT;
|
||||||
|
sccr1_reg |= chip->threshold;
|
||||||
|
write_SSCR1(sccr1_reg, reg);
|
||||||
|
}
|
||||||
|
|
||||||
static void int_error_stop(struct driver_data *drv_data, const char* msg)
|
static void int_error_stop(struct driver_data *drv_data, const char* msg)
|
||||||
{
|
{
|
||||||
void __iomem *reg = drv_data->ioaddr;
|
void __iomem *reg = drv_data->ioaddr;
|
||||||
|
|
||||||
/* Stop and reset SSP */
|
/* Stop and reset SSP */
|
||||||
write_SSSR_CS(drv_data, drv_data->clear_sr);
|
write_SSSR_CS(drv_data, drv_data->clear_sr);
|
||||||
write_SSCR1(read_SSCR1(reg) & ~drv_data->int_cr1, reg);
|
reset_sccr1(drv_data);
|
||||||
if (!pxa25x_ssp_comp(drv_data))
|
if (!pxa25x_ssp_comp(drv_data))
|
||||||
write_SSTO(0, reg);
|
write_SSTO(0, reg);
|
||||||
flush(drv_data);
|
flush(drv_data);
|
||||||
|
@ -684,7 +696,7 @@ static void int_transfer_complete(struct driver_data *drv_data)
|
||||||
|
|
||||||
/* Stop SSP */
|
/* Stop SSP */
|
||||||
write_SSSR_CS(drv_data, drv_data->clear_sr);
|
write_SSSR_CS(drv_data, drv_data->clear_sr);
|
||||||
write_SSCR1(read_SSCR1(reg) & ~drv_data->int_cr1, reg);
|
reset_sccr1(drv_data);
|
||||||
if (!pxa25x_ssp_comp(drv_data))
|
if (!pxa25x_ssp_comp(drv_data))
|
||||||
write_SSTO(0, reg);
|
write_SSTO(0, reg);
|
||||||
|
|
||||||
|
@ -739,24 +751,34 @@ static irqreturn_t interrupt_transfer(struct driver_data *drv_data)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (drv_data->tx == drv_data->tx_end) {
|
if (drv_data->tx == drv_data->tx_end) {
|
||||||
write_SSCR1(read_SSCR1(reg) & ~SSCR1_TIE, reg);
|
u32 bytes_left;
|
||||||
/* PXA25x_SSP has no timeout, read trailing bytes */
|
u32 sccr1_reg;
|
||||||
|
|
||||||
|
sccr1_reg = read_SSCR1(reg);
|
||||||
|
sccr1_reg &= ~SSCR1_TIE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PXA25x_SSP has no timeout, set up rx threshould for the
|
||||||
|
* remaing RX bytes.
|
||||||
|
*/
|
||||||
if (pxa25x_ssp_comp(drv_data)) {
|
if (pxa25x_ssp_comp(drv_data)) {
|
||||||
if (!wait_ssp_rx_stall(reg))
|
|
||||||
{
|
sccr1_reg &= ~SSCR1_RFT;
|
||||||
int_error_stop(drv_data, "interrupt_transfer: "
|
|
||||||
"rx stall failed");
|
bytes_left = drv_data->rx_end - drv_data->rx;
|
||||||
return IRQ_HANDLED;
|
switch (drv_data->n_bytes) {
|
||||||
|
case 4:
|
||||||
|
bytes_left >>= 1;
|
||||||
|
case 2:
|
||||||
|
bytes_left >>= 1;
|
||||||
}
|
}
|
||||||
if (!drv_data->read(drv_data))
|
|
||||||
{
|
if (bytes_left > RX_THRESH_DFLT)
|
||||||
int_error_stop(drv_data,
|
bytes_left = RX_THRESH_DFLT;
|
||||||
"interrupt_transfer: "
|
|
||||||
"trailing byte read failed");
|
sccr1_reg |= SSCR1_RxTresh(bytes_left);
|
||||||
return IRQ_HANDLED;
|
|
||||||
}
|
|
||||||
int_transfer_complete(drv_data);
|
|
||||||
}
|
}
|
||||||
|
write_SSCR1(sccr1_reg, reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We did something */
|
/* We did something */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче