Lines Matching refs:aur

175     ViaAC97SGDChannel *c = &s->aur;  in out_cb()
238 .nchannels = s->aur.type & BIT(4) ? 2 : 1, in open_voice_out()
239 .fmt = s->aur.type & BIT(5) ? AUDIO_FORMAT_S16 : AUDIO_FORMAT_S8, in open_voice_out()
252 val = s->aur.stat; in sgd_read()
253 if (s->aur.type & CNTL_START) { in sgd_read()
258 val = s->aur.stat & STAT_PAUSED ? BIT(3) : 0; in sgd_read()
261 val = s->aur.type; in sgd_read()
264 val = s->aur.curr; in sgd_read()
267 val = CLEN_LEN(&s->aur); in sgd_read()
276 val = s->aur.stat & STAT_FLAG; in sgd_read()
277 if (s->aur.stat & STAT_EOL) { in sgd_read()
280 if (s->aur.stat & STAT_STOP) { in sgd_read()
283 if (s->aur.stat & STAT_ACTIVE) { in sgd_read()
303 s->aur.stat &= ~STAT_PAUSED; in sgd_write()
306 s->aur.stat &= ~(STAT_EOL | STAT_PAUSED); in sgd_write()
307 if (s->aur.type & STAT_EOL) { in sgd_write()
312 s->aur.stat &= ~(STAT_FLAG | STAT_PAUSED); in sgd_write()
313 if (s->aur.type & STAT_FLAG) { in sgd_write()
321 s->aur.stat = STAT_ACTIVE; in sgd_write()
325 s->aur.stat &= ~(STAT_ACTIVE | STAT_PAUSED); in sgd_write()
326 s->aur.clen = 0; in sgd_write()
330 s->aur.stat &= ~STAT_ACTIVE; in sgd_write()
331 s->aur.stat |= STAT_PAUSED; in sgd_write()
332 } else if (!(val & CNTL_PAUSE) && (s->aur.stat & STAT_PAUSED)) { in sgd_write()
334 s->aur.stat |= STAT_ACTIVE; in sgd_write()
335 s->aur.stat &= ~STAT_PAUSED; in sgd_write()
340 uint32_t oldval = s->aur.type; in sgd_write()
341 s->aur.type = val; in sgd_write()
348 s->aur.base = val & ~1ULL; in sgd_write()
349 s->aur.curr = s->aur.base; in sgd_write()