Lines Matching refs:tmo
146 unsigned long tmo; in au1xpsc_i2s_configure() local
152 tmo = 1000000; in au1xpsc_i2s_configure()
153 while (!(__raw_readl(I2S_STAT(pscdata)) & PSC_I2SSTAT_SR) && tmo) in au1xpsc_i2s_configure()
154 tmo--; in au1xpsc_i2s_configure()
156 if (!tmo) in au1xpsc_i2s_configure()
165 tmo = 1000000; in au1xpsc_i2s_configure()
166 while (!(__raw_readl(I2S_STAT(pscdata)) & PSC_I2SSTAT_DR) && tmo) in au1xpsc_i2s_configure()
167 tmo--; in au1xpsc_i2s_configure()
169 if (tmo) in au1xpsc_i2s_configure()
181 unsigned long tmo, stat; in au1xpsc_i2s_start() local
200 tmo = 1000000; in au1xpsc_i2s_start()
201 while (!(__raw_readl(I2S_STAT(pscdata)) & I2SSTAT_BUSY(stype)) && tmo) in au1xpsc_i2s_start()
202 tmo--; in au1xpsc_i2s_start()
204 if (!tmo) { in au1xpsc_i2s_start()
215 unsigned long tmo, stat; in au1xpsc_i2s_stop() local
221 tmo = 1000000; in au1xpsc_i2s_stop()
222 while ((__raw_readl(I2S_STAT(pscdata)) & I2SSTAT_BUSY(stype)) && tmo) in au1xpsc_i2s_stop()
223 tmo--; in au1xpsc_i2s_stop()