Lines Matching refs:dw
153 static void dw_hdmi_reformat_iec958(struct snd_dw_hdmi *dw, in dw_hdmi_reformat_iec958() argument
156 u32 *src = dw->buf_src + offset; in dw_hdmi_reformat_iec958()
157 u32 *dst = dw->buf_dst + offset; in dw_hdmi_reformat_iec958()
158 u32 *end = dw->buf_src + offset + bytes; in dw_hdmi_reformat_iec958()
181 static void dw_hdmi_reformat_s24(struct snd_dw_hdmi *dw, in dw_hdmi_reformat_s24() argument
184 u32 *src = dw->buf_src + offset; in dw_hdmi_reformat_s24()
185 u32 *dst = dw->buf_dst + offset; in dw_hdmi_reformat_s24()
186 u32 *end = dw->buf_src + offset + bytes; in dw_hdmi_reformat_s24()
192 cs = dw->cs[dw->iec_offset++]; in dw_hdmi_reformat_s24()
193 if (dw->iec_offset >= 192) in dw_hdmi_reformat_s24()
194 dw->iec_offset = 0; in dw_hdmi_reformat_s24()
196 i = dw->channels; in dw_hdmi_reformat_s24()
209 static void dw_hdmi_create_cs(struct snd_dw_hdmi *dw, in dw_hdmi_create_cs() argument
217 memset(dw->cs, 0, sizeof(dw->cs)); in dw_hdmi_create_cs()
227 dw->cs[i * 8 + j][ch] = (c & 1) << 2; in dw_hdmi_create_cs()
230 dw->cs[0][0] |= BIT(4); in dw_hdmi_create_cs()
233 static void dw_hdmi_start_dma(struct snd_dw_hdmi *dw) in dw_hdmi_start_dma() argument
235 void __iomem *base = dw->data.base; in dw_hdmi_start_dma()
236 unsigned offset = dw->buf_offset; in dw_hdmi_start_dma()
237 unsigned period = dw->buf_period; in dw_hdmi_start_dma()
240 dw->reformat(dw, offset, period); in dw_hdmi_start_dma()
246 start = dw->buf_addr + offset; in dw_hdmi_start_dma()
257 if (offset >= dw->buf_size) in dw_hdmi_start_dma()
259 dw->buf_offset = offset; in dw_hdmi_start_dma()
262 static void dw_hdmi_stop_dma(struct snd_dw_hdmi *dw) in dw_hdmi_stop_dma() argument
265 writeb_relaxed(~0, dw->data.base + HDMI_AHB_DMA_MASK); in dw_hdmi_stop_dma()
266 writeb_relaxed(HDMI_AHB_DMA_STOP_STOP, dw->data.base + HDMI_AHB_DMA_STOP); in dw_hdmi_stop_dma()
271 struct snd_dw_hdmi *dw = data; in snd_dw_hdmi_irq() local
275 stat = readb_relaxed(dw->data.base + HDMI_IH_AHBDMAAUD_STAT0); in snd_dw_hdmi_irq()
279 writeb_relaxed(stat, dw->data.base + HDMI_IH_AHBDMAAUD_STAT0); in snd_dw_hdmi_irq()
281 substream = dw->substream; in snd_dw_hdmi_irq()
285 spin_lock(&dw->lock); in snd_dw_hdmi_irq()
286 if (dw->substream) in snd_dw_hdmi_irq()
287 dw_hdmi_start_dma(dw); in snd_dw_hdmi_irq()
288 spin_unlock(&dw->lock); in snd_dw_hdmi_irq()
321 struct snd_dw_hdmi *dw = substream->private_data; in dw_hdmi_open() local
322 void __iomem *base = dw->data.base; in dw_hdmi_open()
327 ret = snd_pcm_hw_constraint_eld(runtime, dw->data.eld); in dw_hdmi_open()
359 ret = request_irq(dw->data.irq, snd_dw_hdmi_irq, IRQF_SHARED, in dw_hdmi_open()
360 "dw-hdmi-audio", dw); in dw_hdmi_open()
374 struct snd_dw_hdmi *dw = substream->private_data; in dw_hdmi_close() local
378 dw->data.base + HDMI_IH_MUTE_AHBDMAAUD_STAT0); in dw_hdmi_close()
380 free_irq(dw->data.irq, dw); in dw_hdmi_close()
401 struct snd_dw_hdmi *dw = substream->private_data; in dw_hdmi_prepare() local
405 switch (dw->revision) { in dw_hdmi_prepare()
424 dw_hdmi_set_sample_rate(dw->data.hdmi, runtime->rate); in dw_hdmi_prepare()
433 writeb_relaxed(threshold, dw->data.base + HDMI_AHB_DMA_THRSLD); in dw_hdmi_prepare()
434 writeb_relaxed(conf0, dw->data.base + HDMI_AHB_DMA_CONF0); in dw_hdmi_prepare()
435 writeb_relaxed(conf1, dw->data.base + HDMI_AHB_DMA_CONF1); in dw_hdmi_prepare()
437 dw_hdmi_set_channel_count(dw->data.hdmi, runtime->channels); in dw_hdmi_prepare()
438 dw_hdmi_set_channel_allocation(dw->data.hdmi, ca); in dw_hdmi_prepare()
442 dw->reformat = dw_hdmi_reformat_iec958; in dw_hdmi_prepare()
445 dw_hdmi_create_cs(dw, runtime); in dw_hdmi_prepare()
446 dw->reformat = dw_hdmi_reformat_s24; in dw_hdmi_prepare()
449 dw->iec_offset = 0; in dw_hdmi_prepare()
450 dw->channels = runtime->channels; in dw_hdmi_prepare()
451 dw->buf_src = runtime->dma_area; in dw_hdmi_prepare()
452 dw->buf_dst = substream->dma_buffer.area; in dw_hdmi_prepare()
453 dw->buf_addr = substream->dma_buffer.addr; in dw_hdmi_prepare()
454 dw->buf_period = snd_pcm_lib_period_bytes(substream); in dw_hdmi_prepare()
455 dw->buf_size = snd_pcm_lib_buffer_bytes(substream); in dw_hdmi_prepare()
462 struct snd_dw_hdmi *dw = substream->private_data; in dw_hdmi_trigger() local
468 spin_lock_irqsave(&dw->lock, flags); in dw_hdmi_trigger()
469 dw->buf_offset = 0; in dw_hdmi_trigger()
470 dw->substream = substream; in dw_hdmi_trigger()
471 dw_hdmi_start_dma(dw); in dw_hdmi_trigger()
472 dw_hdmi_audio_enable(dw->data.hdmi); in dw_hdmi_trigger()
473 spin_unlock_irqrestore(&dw->lock, flags); in dw_hdmi_trigger()
478 spin_lock_irqsave(&dw->lock, flags); in dw_hdmi_trigger()
479 dw->substream = NULL; in dw_hdmi_trigger()
480 dw_hdmi_stop_dma(dw); in dw_hdmi_trigger()
481 dw_hdmi_audio_disable(dw->data.hdmi); in dw_hdmi_trigger()
482 spin_unlock_irqrestore(&dw->lock, flags); in dw_hdmi_trigger()
496 struct snd_dw_hdmi *dw = substream->private_data; in dw_hdmi_pointer() local
502 return bytes_to_frames(runtime, dw->buf_offset); in dw_hdmi_pointer()
521 struct snd_dw_hdmi *dw; in snd_dw_hdmi_probe() local
547 dw = card->private_data; in snd_dw_hdmi_probe()
548 dw->card = card; in snd_dw_hdmi_probe()
549 dw->data = *data; in snd_dw_hdmi_probe()
550 dw->revision = revision; in snd_dw_hdmi_probe()
552 spin_lock_init(&dw->lock); in snd_dw_hdmi_probe()
558 dw->pcm = pcm; in snd_dw_hdmi_probe()
559 pcm->private_data = dw; in snd_dw_hdmi_probe()
574 platform_set_drvdata(pdev, dw); in snd_dw_hdmi_probe()
585 struct snd_dw_hdmi *dw = platform_get_drvdata(pdev); in snd_dw_hdmi_remove() local
587 snd_card_free(dw->card); in snd_dw_hdmi_remove()
599 struct snd_dw_hdmi *dw = dev_get_drvdata(dev); in snd_dw_hdmi_suspend() local
601 snd_power_change_state(dw->card, SNDRV_CTL_POWER_D3cold); in snd_dw_hdmi_suspend()
608 struct snd_dw_hdmi *dw = dev_get_drvdata(dev); in snd_dw_hdmi_resume() local
610 snd_power_change_state(dw->card, SNDRV_CTL_POWER_D0); in snd_dw_hdmi_resume()