mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[ARM] pxa: ensure SSP TX FIFO is empty instead of not full for pxa3xx
Signed-off-by: eric miao <eric.miao@marvell.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
5a1f21b1e5
commit
732ce16066
1 changed files with 10 additions and 0 deletions
|
@ -138,6 +138,16 @@ int ssp_flush(struct ssp_dev *dev)
|
|||
struct ssp_device *ssp = dev->ssp;
|
||||
int timeout = TIMEOUT * 2;
|
||||
|
||||
/* ensure TX FIFO is empty instead of not full */
|
||||
if (cpu_is_pxa3xx()) {
|
||||
while (__raw_readl(ssp->mmio_base + SSSR) & 0xf00) {
|
||||
if (!--timeout)
|
||||
return -ETIMEDOUT;
|
||||
cpu_relax();
|
||||
}
|
||||
timeout = TIMEOUT * 2;
|
||||
}
|
||||
|
||||
do {
|
||||
while (__raw_readl(ssp->mmio_base + SSSR) & SSSR_RNE) {
|
||||
if (!--timeout)
|
||||
|
|
Loading…
Reference in a new issue