Lines Matching defs:hdac_stream
500 struct hdac_stream { struct
501 struct hdac_bus *bus;
502 struct snd_dma_buffer bdl; /* BDL buffer */
503 __le32 *posbuf; /* position buffer pointer */
504 int direction; /* playback / capture (SNDRV_PCM_STREAM_*) */
506 unsigned int bufsize; /* size of the play buffer in bytes */
507 unsigned int period_bytes; /* size of the period in bytes */
508 unsigned int frags; /* number for period in the play buffer */
509 unsigned int fifo_size; /* FIFO size */
511 void __iomem *sd_addr; /* stream descriptor pointer */
513 u32 sd_int_sta_mask; /* stream int status mask */
516 struct snd_pcm_substream *substream; /* assigned substream,
519 struct snd_compr_stream *cstream;
520 unsigned int format_val; /* format value to be set in the
523 unsigned char stream_tag; /* assigned stream */
524 unsigned char index; /* stream index */
525 int assigned_key; /* last device# key assigned to */
549 void snd_hdac_stream_init(struct hdac_bus *bus, struct hdac_stream *azx_dev, argument