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