1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 214752412STakashi Iwai /* 314752412STakashi Iwai * HD-audio stream operations 414752412STakashi Iwai */ 514752412STakashi Iwai 614752412STakashi Iwai #include <linux/kernel.h> 714752412STakashi Iwai #include <linux/delay.h> 814752412STakashi Iwai #include <linux/export.h> 95f26faceSTakashi Iwai #include <linux/clocksource.h> 1014752412STakashi Iwai #include <sound/core.h> 1114752412STakashi Iwai #include <sound/pcm.h> 1214752412STakashi Iwai #include <sound/hdaudio.h> 1314752412STakashi Iwai #include <sound/hda_register.h> 14598dfb56SLibin Yang #include "trace.h" 1514752412STakashi Iwai 1614752412STakashi Iwai /** 175dd3d271SSameer Pujar * snd_hdac_get_stream_stripe_ctl - get stripe control value 185dd3d271SSameer Pujar * @bus: HD-audio core bus 195dd3d271SSameer Pujar * @substream: PCM substream 205dd3d271SSameer Pujar */ 215dd3d271SSameer Pujar int snd_hdac_get_stream_stripe_ctl(struct hdac_bus *bus, 225dd3d271SSameer Pujar struct snd_pcm_substream *substream) 235dd3d271SSameer Pujar { 245dd3d271SSameer Pujar struct snd_pcm_runtime *runtime = substream->runtime; 255dd3d271SSameer Pujar unsigned int channels = runtime->channels, 265dd3d271SSameer Pujar rate = runtime->rate, 275dd3d271SSameer Pujar bits_per_sample = runtime->sample_bits, 285dd3d271SSameer Pujar max_sdo_lines, value, sdo_line; 295dd3d271SSameer Pujar 305dd3d271SSameer Pujar /* T_AZA_GCAP_NSDO is 1:2 bitfields in GCAP */ 315dd3d271SSameer Pujar max_sdo_lines = snd_hdac_chip_readl(bus, GCAP) & AZX_GCAP_NSDO; 325dd3d271SSameer Pujar 335dd3d271SSameer Pujar /* following is from HD audio spec */ 345dd3d271SSameer Pujar for (sdo_line = max_sdo_lines; sdo_line > 0; sdo_line >>= 1) { 355dd3d271SSameer Pujar if (rate > 48000) 365dd3d271SSameer Pujar value = (channels * bits_per_sample * 375dd3d271SSameer Pujar (rate / 48000)) / sdo_line; 385dd3d271SSameer Pujar else 395dd3d271SSameer Pujar value = (channels * bits_per_sample) / sdo_line; 405dd3d271SSameer Pujar 4167ae482aSSameer Pujar if (value >= bus->sdo_limit) 425dd3d271SSameer Pujar break; 435dd3d271SSameer Pujar } 445dd3d271SSameer Pujar 455dd3d271SSameer Pujar /* stripe value: 0 for 1SDO, 1 for 2SDO, 2 for 4SDO lines */ 465dd3d271SSameer Pujar return sdo_line >> 1; 475dd3d271SSameer Pujar } 485dd3d271SSameer Pujar EXPORT_SYMBOL_GPL(snd_hdac_get_stream_stripe_ctl); 495dd3d271SSameer Pujar 505dd3d271SSameer Pujar /** 5114752412STakashi Iwai * snd_hdac_stream_init - initialize each stream (aka device) 5214752412STakashi Iwai * @bus: HD-audio core bus 5314752412STakashi Iwai * @azx_dev: HD-audio core stream object to initialize 5414752412STakashi Iwai * @idx: stream index number 5514752412STakashi Iwai * @direction: stream direction (SNDRV_PCM_STREAM_PLAYBACK or SNDRV_PCM_STREAM_CAPTURE) 5614752412STakashi Iwai * @tag: the tag id to assign 5714752412STakashi Iwai * 5814752412STakashi Iwai * Assign the starting bdl address to each stream (device) and initialize. 5914752412STakashi Iwai */ 6014752412STakashi Iwai void snd_hdac_stream_init(struct hdac_bus *bus, struct hdac_stream *azx_dev, 6114752412STakashi Iwai int idx, int direction, int tag) 6214752412STakashi Iwai { 6314752412STakashi Iwai azx_dev->bus = bus; 6414752412STakashi Iwai /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */ 6514752412STakashi Iwai azx_dev->sd_addr = bus->remap_addr + (0x20 * idx + 0x80); 6614752412STakashi Iwai /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */ 6714752412STakashi Iwai azx_dev->sd_int_sta_mask = 1 << idx; 6814752412STakashi Iwai azx_dev->index = idx; 6914752412STakashi Iwai azx_dev->direction = direction; 7014752412STakashi Iwai azx_dev->stream_tag = tag; 718f3f600bSTakashi Iwai snd_hdac_dsp_lock_init(azx_dev); 7214752412STakashi Iwai list_add_tail(&azx_dev->list, &bus->stream_list); 7314752412STakashi Iwai } 7414752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_init); 7514752412STakashi Iwai 7614752412STakashi Iwai /** 7714752412STakashi Iwai * snd_hdac_stream_start - start a stream 7814752412STakashi Iwai * @azx_dev: HD-audio core stream to start 7914752412STakashi Iwai * @fresh_start: false = wallclock timestamp relative to period wallclock 8014752412STakashi Iwai * 8114752412STakashi Iwai * Start a stream, set start_wallclk and set the running flag. 8214752412STakashi Iwai */ 8314752412STakashi Iwai void snd_hdac_stream_start(struct hdac_stream *azx_dev, bool fresh_start) 8414752412STakashi Iwai { 8514752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 869b6f7e7aSSameer Pujar int stripe_ctl; 8714752412STakashi Iwai 88598dfb56SLibin Yang trace_snd_hdac_stream_start(bus, azx_dev); 89598dfb56SLibin Yang 9014752412STakashi Iwai azx_dev->start_wallclk = snd_hdac_chip_readl(bus, WALLCLK); 9114752412STakashi Iwai if (!fresh_start) 9214752412STakashi Iwai azx_dev->start_wallclk -= azx_dev->period_wallclk; 9314752412STakashi Iwai 9414752412STakashi Iwai /* enable SIE */ 95fc2a6cf0SKeyon Jie snd_hdac_chip_updatel(bus, INTCTL, 96fc2a6cf0SKeyon Jie 1 << azx_dev->index, 97fc2a6cf0SKeyon Jie 1 << azx_dev->index); 989b6f7e7aSSameer Pujar /* set stripe control */ 99e38e486dSTakashi Iwai if (azx_dev->stripe) { 100d344e079SMariusz Ceier if (azx_dev->substream) 1019b6f7e7aSSameer Pujar stripe_ctl = snd_hdac_get_stream_stripe_ctl(bus, azx_dev->substream); 102d344e079SMariusz Ceier else 103d344e079SMariusz Ceier stripe_ctl = 0; 1049b6f7e7aSSameer Pujar snd_hdac_stream_updateb(azx_dev, SD_CTL_3B, SD_CTL_STRIPE_MASK, 1059b6f7e7aSSameer Pujar stripe_ctl); 106e38e486dSTakashi Iwai } 10714752412STakashi Iwai /* set DMA start and interrupt mask */ 10814752412STakashi Iwai snd_hdac_stream_updateb(azx_dev, SD_CTL, 10914752412STakashi Iwai 0, SD_CTL_DMA_START | SD_INT_MASK); 11014752412STakashi Iwai azx_dev->running = true; 11114752412STakashi Iwai } 11214752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_start); 11314752412STakashi Iwai 11414752412STakashi Iwai /** 11514752412STakashi Iwai * snd_hdac_stream_clear - stop a stream DMA 11614752412STakashi Iwai * @azx_dev: HD-audio core stream to stop 11714752412STakashi Iwai */ 11814752412STakashi Iwai void snd_hdac_stream_clear(struct hdac_stream *azx_dev) 11914752412STakashi Iwai { 12014752412STakashi Iwai snd_hdac_stream_updateb(azx_dev, SD_CTL, 12114752412STakashi Iwai SD_CTL_DMA_START | SD_INT_MASK, 0); 12214752412STakashi Iwai snd_hdac_stream_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */ 1236fd739c0STakashi Iwai if (azx_dev->stripe) 1249b6f7e7aSSameer Pujar snd_hdac_stream_updateb(azx_dev, SD_CTL_3B, SD_CTL_STRIPE_MASK, 0); 12514752412STakashi Iwai azx_dev->running = false; 12614752412STakashi Iwai } 12714752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_clear); 12814752412STakashi Iwai 12914752412STakashi Iwai /** 13014752412STakashi Iwai * snd_hdac_stream_stop - stop a stream 13114752412STakashi Iwai * @azx_dev: HD-audio core stream to stop 13214752412STakashi Iwai * 13314752412STakashi Iwai * Stop a stream DMA and disable stream interrupt 13414752412STakashi Iwai */ 13514752412STakashi Iwai void snd_hdac_stream_stop(struct hdac_stream *azx_dev) 13614752412STakashi Iwai { 137598dfb56SLibin Yang trace_snd_hdac_stream_stop(azx_dev->bus, azx_dev); 138598dfb56SLibin Yang 13914752412STakashi Iwai snd_hdac_stream_clear(azx_dev); 14014752412STakashi Iwai /* disable SIE */ 14114752412STakashi Iwai snd_hdac_chip_updatel(azx_dev->bus, INTCTL, 1 << azx_dev->index, 0); 14214752412STakashi Iwai } 14314752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_stop); 14414752412STakashi Iwai 14514752412STakashi Iwai /** 146*12054f0cSPierre-Louis Bossart * snd_hdac_stop_streams_and_chip - stop all streams and chip if running 147*12054f0cSPierre-Louis Bossart * @bus: HD-audio core bus 148*12054f0cSPierre-Louis Bossart */ 149*12054f0cSPierre-Louis Bossart void snd_hdac_stop_streams_and_chip(struct hdac_bus *bus) 150*12054f0cSPierre-Louis Bossart { 151*12054f0cSPierre-Louis Bossart struct hdac_stream *stream; 152*12054f0cSPierre-Louis Bossart 153*12054f0cSPierre-Louis Bossart if (bus->chip_init) { 154*12054f0cSPierre-Louis Bossart list_for_each_entry(stream, &bus->stream_list, list) 155*12054f0cSPierre-Louis Bossart snd_hdac_stream_stop(stream); 156*12054f0cSPierre-Louis Bossart snd_hdac_bus_stop_chip(bus); 157*12054f0cSPierre-Louis Bossart } 158*12054f0cSPierre-Louis Bossart } 159*12054f0cSPierre-Louis Bossart EXPORT_SYMBOL_GPL(snd_hdac_stop_streams_and_chip); 160*12054f0cSPierre-Louis Bossart 161*12054f0cSPierre-Louis Bossart /** 16214752412STakashi Iwai * snd_hdac_stream_reset - reset a stream 16314752412STakashi Iwai * @azx_dev: HD-audio core stream to reset 16414752412STakashi Iwai */ 16514752412STakashi Iwai void snd_hdac_stream_reset(struct hdac_stream *azx_dev) 16614752412STakashi Iwai { 16714752412STakashi Iwai unsigned char val; 16814752412STakashi Iwai int timeout; 1694106820bSMohan Kumar int dma_run_state; 17014752412STakashi Iwai 17114752412STakashi Iwai snd_hdac_stream_clear(azx_dev); 17214752412STakashi Iwai 1734106820bSMohan Kumar dma_run_state = snd_hdac_stream_readb(azx_dev, SD_CTL) & SD_CTL_DMA_START; 1744106820bSMohan Kumar 17514752412STakashi Iwai snd_hdac_stream_updateb(azx_dev, SD_CTL, 0, SD_CTL_STREAM_RESET); 17614752412STakashi Iwai udelay(3); 17714752412STakashi Iwai timeout = 300; 17814752412STakashi Iwai do { 17914752412STakashi Iwai val = snd_hdac_stream_readb(azx_dev, SD_CTL) & 18014752412STakashi Iwai SD_CTL_STREAM_RESET; 18114752412STakashi Iwai if (val) 18214752412STakashi Iwai break; 18314752412STakashi Iwai } while (--timeout); 1844106820bSMohan Kumar 1854106820bSMohan Kumar if (azx_dev->bus->dma_stop_delay && dma_run_state) 1864106820bSMohan Kumar udelay(azx_dev->bus->dma_stop_delay); 1874106820bSMohan Kumar 18814752412STakashi Iwai val &= ~SD_CTL_STREAM_RESET; 18914752412STakashi Iwai snd_hdac_stream_writeb(azx_dev, SD_CTL, val); 19014752412STakashi Iwai udelay(3); 19114752412STakashi Iwai 19214752412STakashi Iwai timeout = 300; 19314752412STakashi Iwai /* waiting for hardware to report that the stream is out of reset */ 19414752412STakashi Iwai do { 19514752412STakashi Iwai val = snd_hdac_stream_readb(azx_dev, SD_CTL) & 19614752412STakashi Iwai SD_CTL_STREAM_RESET; 19714752412STakashi Iwai if (!val) 19814752412STakashi Iwai break; 19914752412STakashi Iwai } while (--timeout); 20014752412STakashi Iwai 20114752412STakashi Iwai /* reset first position - may not be synced with hw at this time */ 20214752412STakashi Iwai if (azx_dev->posbuf) 20314752412STakashi Iwai *azx_dev->posbuf = 0; 20414752412STakashi Iwai } 20514752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_reset); 20614752412STakashi Iwai 20714752412STakashi Iwai /** 20814752412STakashi Iwai * snd_hdac_stream_setup - set up the SD for streaming 20914752412STakashi Iwai * @azx_dev: HD-audio core stream to set up 21014752412STakashi Iwai */ 21114752412STakashi Iwai int snd_hdac_stream_setup(struct hdac_stream *azx_dev) 21214752412STakashi Iwai { 21314752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 2144214c534STakashi Iwai struct snd_pcm_runtime *runtime; 21514752412STakashi Iwai unsigned int val; 21614752412STakashi Iwai 2174214c534STakashi Iwai if (azx_dev->substream) 2184214c534STakashi Iwai runtime = azx_dev->substream->runtime; 2194214c534STakashi Iwai else 2204214c534STakashi Iwai runtime = NULL; 22114752412STakashi Iwai /* make sure the run bit is zero for SD */ 22214752412STakashi Iwai snd_hdac_stream_clear(azx_dev); 22314752412STakashi Iwai /* program the stream_tag */ 22414752412STakashi Iwai val = snd_hdac_stream_readl(azx_dev, SD_CTL); 22514752412STakashi Iwai val = (val & ~SD_CTL_STREAM_TAG_MASK) | 22614752412STakashi Iwai (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT); 22714752412STakashi Iwai if (!bus->snoop) 22814752412STakashi Iwai val |= SD_CTL_TRAFFIC_PRIO; 22914752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_CTL, val); 23014752412STakashi Iwai 23114752412STakashi Iwai /* program the length of samples in cyclic buffer */ 23214752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_CBL, azx_dev->bufsize); 23314752412STakashi Iwai 23414752412STakashi Iwai /* program the stream format */ 23514752412STakashi Iwai /* this value needs to be the same as the one programmed */ 23614752412STakashi Iwai snd_hdac_stream_writew(azx_dev, SD_FORMAT, azx_dev->format_val); 23714752412STakashi Iwai 23814752412STakashi Iwai /* program the stream LVI (last valid index) of the BDL */ 23914752412STakashi Iwai snd_hdac_stream_writew(azx_dev, SD_LVI, azx_dev->frags - 1); 24014752412STakashi Iwai 24114752412STakashi Iwai /* program the BDL address */ 24214752412STakashi Iwai /* lower BDL address */ 24314752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr); 24414752412STakashi Iwai /* upper BDL address */ 24514752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPU, 24614752412STakashi Iwai upper_32_bits(azx_dev->bdl.addr)); 24714752412STakashi Iwai 24814752412STakashi Iwai /* enable the position buffer */ 24914752412STakashi Iwai if (bus->use_posbuf && bus->posbuf.addr) { 25014752412STakashi Iwai if (!(snd_hdac_chip_readl(bus, DPLBASE) & AZX_DPLBASE_ENABLE)) 25114752412STakashi Iwai snd_hdac_chip_writel(bus, DPLBASE, 25214752412STakashi Iwai (u32)bus->posbuf.addr | AZX_DPLBASE_ENABLE); 25314752412STakashi Iwai } 25414752412STakashi Iwai 25514752412STakashi Iwai /* set the interrupt enable bits in the descriptor control register */ 25614752412STakashi Iwai snd_hdac_stream_updatel(azx_dev, SD_CTL, 0, SD_INT_MASK); 25714752412STakashi Iwai 2587da20788STakashi Iwai azx_dev->fifo_size = snd_hdac_stream_readw(azx_dev, SD_FIFOSIZE) + 1; 25914752412STakashi Iwai 26014752412STakashi Iwai /* when LPIB delay correction gives a small negative value, 26114752412STakashi Iwai * we ignore it; currently set the threshold statically to 26214752412STakashi Iwai * 64 frames 26314752412STakashi Iwai */ 2644214c534STakashi Iwai if (runtime && runtime->period_size > 64) 26514752412STakashi Iwai azx_dev->delay_negative_threshold = 26614752412STakashi Iwai -frames_to_bytes(runtime, 64); 26714752412STakashi Iwai else 26814752412STakashi Iwai azx_dev->delay_negative_threshold = 0; 26914752412STakashi Iwai 27014752412STakashi Iwai /* wallclk has 24Mhz clock source */ 2714214c534STakashi Iwai if (runtime) 27214752412STakashi Iwai azx_dev->period_wallclk = (((runtime->period_size * 24000) / 27314752412STakashi Iwai runtime->rate) * 1000); 27414752412STakashi Iwai 27514752412STakashi Iwai return 0; 27614752412STakashi Iwai } 27714752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_setup); 27814752412STakashi Iwai 27914752412STakashi Iwai /** 28014752412STakashi Iwai * snd_hdac_stream_cleanup - cleanup a stream 28114752412STakashi Iwai * @azx_dev: HD-audio core stream to clean up 28214752412STakashi Iwai */ 28314752412STakashi Iwai void snd_hdac_stream_cleanup(struct hdac_stream *azx_dev) 28414752412STakashi Iwai { 28514752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0); 28614752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0); 28714752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_CTL, 0); 28814752412STakashi Iwai azx_dev->bufsize = 0; 28914752412STakashi Iwai azx_dev->period_bytes = 0; 29014752412STakashi Iwai azx_dev->format_val = 0; 29114752412STakashi Iwai } 29214752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_cleanup); 29314752412STakashi Iwai 29414752412STakashi Iwai /** 29514752412STakashi Iwai * snd_hdac_stream_assign - assign a stream for the PCM 29614752412STakashi Iwai * @bus: HD-audio core bus 29714752412STakashi Iwai * @substream: PCM substream to assign 29814752412STakashi Iwai * 29914752412STakashi Iwai * Look for an unused stream for the given PCM substream, assign it 30014752412STakashi Iwai * and return the stream object. If no stream is free, returns NULL. 30114752412STakashi Iwai * The function tries to keep using the same stream object when it's used 30214752412STakashi Iwai * beforehand. Also, when bus->reverse_assign flag is set, the last free 30314752412STakashi Iwai * or matching entry is returned. This is needed for some strange codecs. 30414752412STakashi Iwai */ 30514752412STakashi Iwai struct hdac_stream *snd_hdac_stream_assign(struct hdac_bus *bus, 30614752412STakashi Iwai struct snd_pcm_substream *substream) 30714752412STakashi Iwai { 30814752412STakashi Iwai struct hdac_stream *azx_dev; 30914752412STakashi Iwai struct hdac_stream *res = NULL; 31014752412STakashi Iwai 31114752412STakashi Iwai /* make a non-zero unique key for the substream */ 31214752412STakashi Iwai int key = (substream->pcm->device << 16) | (substream->number << 2) | 31314752412STakashi Iwai (substream->stream + 1); 31414752412STakashi Iwai 3151465d06aSPierre-Louis Bossart spin_lock_irq(&bus->reg_lock); 31614752412STakashi Iwai list_for_each_entry(azx_dev, &bus->stream_list, list) { 31714752412STakashi Iwai if (azx_dev->direction != substream->stream) 31814752412STakashi Iwai continue; 31914752412STakashi Iwai if (azx_dev->opened) 32014752412STakashi Iwai continue; 32114752412STakashi Iwai if (azx_dev->assigned_key == key) { 32214752412STakashi Iwai res = azx_dev; 32314752412STakashi Iwai break; 32414752412STakashi Iwai } 32514752412STakashi Iwai if (!res || bus->reverse_assign) 32614752412STakashi Iwai res = azx_dev; 32714752412STakashi Iwai } 32814752412STakashi Iwai if (res) { 32914752412STakashi Iwai res->opened = 1; 33014752412STakashi Iwai res->running = 0; 33114752412STakashi Iwai res->assigned_key = key; 33214752412STakashi Iwai res->substream = substream; 33314752412STakashi Iwai } 3341465d06aSPierre-Louis Bossart spin_unlock_irq(&bus->reg_lock); 33514752412STakashi Iwai return res; 33614752412STakashi Iwai } 33714752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_assign); 33814752412STakashi Iwai 33914752412STakashi Iwai /** 34014752412STakashi Iwai * snd_hdac_stream_release - release the assigned stream 34114752412STakashi Iwai * @azx_dev: HD-audio core stream to release 34214752412STakashi Iwai * 34314752412STakashi Iwai * Release the stream that has been assigned by snd_hdac_stream_assign(). 34414752412STakashi Iwai */ 34514752412STakashi Iwai void snd_hdac_stream_release(struct hdac_stream *azx_dev) 34614752412STakashi Iwai { 34714752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 34814752412STakashi Iwai 34914752412STakashi Iwai spin_lock_irq(&bus->reg_lock); 35014752412STakashi Iwai azx_dev->opened = 0; 35114752412STakashi Iwai azx_dev->running = 0; 35214752412STakashi Iwai azx_dev->substream = NULL; 35314752412STakashi Iwai spin_unlock_irq(&bus->reg_lock); 35414752412STakashi Iwai } 35514752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_release); 35614752412STakashi Iwai 3574308c9b0SJeeja KP /** 3584308c9b0SJeeja KP * snd_hdac_get_stream - return hdac_stream based on stream_tag and 3594308c9b0SJeeja KP * direction 3604308c9b0SJeeja KP * 3614308c9b0SJeeja KP * @bus: HD-audio core bus 3624308c9b0SJeeja KP * @dir: direction for the stream to be found 3634308c9b0SJeeja KP * @stream_tag: stream tag for stream to be found 3644308c9b0SJeeja KP */ 3654308c9b0SJeeja KP struct hdac_stream *snd_hdac_get_stream(struct hdac_bus *bus, 3664308c9b0SJeeja KP int dir, int stream_tag) 3674308c9b0SJeeja KP { 3684308c9b0SJeeja KP struct hdac_stream *s; 3694308c9b0SJeeja KP 3704308c9b0SJeeja KP list_for_each_entry(s, &bus->stream_list, list) { 3714308c9b0SJeeja KP if (s->direction == dir && s->stream_tag == stream_tag) 3724308c9b0SJeeja KP return s; 3734308c9b0SJeeja KP } 3744308c9b0SJeeja KP 3754308c9b0SJeeja KP return NULL; 3764308c9b0SJeeja KP } 3774308c9b0SJeeja KP EXPORT_SYMBOL_GPL(snd_hdac_get_stream); 3784308c9b0SJeeja KP 37914752412STakashi Iwai /* 38014752412STakashi Iwai * set up a BDL entry 38114752412STakashi Iwai */ 38214752412STakashi Iwai static int setup_bdle(struct hdac_bus *bus, 38314752412STakashi Iwai struct snd_dma_buffer *dmab, 38414752412STakashi Iwai struct hdac_stream *azx_dev, __le32 **bdlp, 38514752412STakashi Iwai int ofs, int size, int with_ioc) 38614752412STakashi Iwai { 38714752412STakashi Iwai __le32 *bdl = *bdlp; 38814752412STakashi Iwai 38914752412STakashi Iwai while (size > 0) { 39014752412STakashi Iwai dma_addr_t addr; 39114752412STakashi Iwai int chunk; 39214752412STakashi Iwai 39314752412STakashi Iwai if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES) 39414752412STakashi Iwai return -EINVAL; 39514752412STakashi Iwai 39614752412STakashi Iwai addr = snd_sgbuf_get_addr(dmab, ofs); 39714752412STakashi Iwai /* program the address field of the BDL entry */ 39814752412STakashi Iwai bdl[0] = cpu_to_le32((u32)addr); 39914752412STakashi Iwai bdl[1] = cpu_to_le32(upper_32_bits(addr)); 40014752412STakashi Iwai /* program the size field of the BDL entry */ 40114752412STakashi Iwai chunk = snd_sgbuf_get_chunk_size(dmab, ofs, size); 40214752412STakashi Iwai /* one BDLE cannot cross 4K boundary on CTHDA chips */ 40314752412STakashi Iwai if (bus->align_bdle_4k) { 40414752412STakashi Iwai u32 remain = 0x1000 - (ofs & 0xfff); 40514752412STakashi Iwai 40614752412STakashi Iwai if (chunk > remain) 40714752412STakashi Iwai chunk = remain; 40814752412STakashi Iwai } 40914752412STakashi Iwai bdl[2] = cpu_to_le32(chunk); 41014752412STakashi Iwai /* program the IOC to enable interrupt 41114752412STakashi Iwai * only when the whole fragment is processed 41214752412STakashi Iwai */ 41314752412STakashi Iwai size -= chunk; 41414752412STakashi Iwai bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01); 41514752412STakashi Iwai bdl += 4; 41614752412STakashi Iwai azx_dev->frags++; 41714752412STakashi Iwai ofs += chunk; 41814752412STakashi Iwai } 41914752412STakashi Iwai *bdlp = bdl; 42014752412STakashi Iwai return ofs; 42114752412STakashi Iwai } 42214752412STakashi Iwai 42314752412STakashi Iwai /** 42414752412STakashi Iwai * snd_hdac_stream_setup_periods - set up BDL entries 42514752412STakashi Iwai * @azx_dev: HD-audio core stream to set up 42614752412STakashi Iwai * 42714752412STakashi Iwai * Set up the buffer descriptor table of the given stream based on the 42814752412STakashi Iwai * period and buffer sizes of the assigned PCM substream. 42914752412STakashi Iwai */ 43014752412STakashi Iwai int snd_hdac_stream_setup_periods(struct hdac_stream *azx_dev) 43114752412STakashi Iwai { 43214752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 43314752412STakashi Iwai struct snd_pcm_substream *substream = azx_dev->substream; 43414752412STakashi Iwai struct snd_pcm_runtime *runtime = substream->runtime; 43514752412STakashi Iwai __le32 *bdl; 43614752412STakashi Iwai int i, ofs, periods, period_bytes; 43714752412STakashi Iwai int pos_adj, pos_align; 43814752412STakashi Iwai 43914752412STakashi Iwai /* reset BDL address */ 44014752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0); 44114752412STakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0); 44214752412STakashi Iwai 44314752412STakashi Iwai period_bytes = azx_dev->period_bytes; 44414752412STakashi Iwai periods = azx_dev->bufsize / period_bytes; 44514752412STakashi Iwai 44614752412STakashi Iwai /* program the initial BDL entries */ 44714752412STakashi Iwai bdl = (__le32 *)azx_dev->bdl.area; 44814752412STakashi Iwai ofs = 0; 44914752412STakashi Iwai azx_dev->frags = 0; 45014752412STakashi Iwai 45114752412STakashi Iwai pos_adj = bus->bdl_pos_adj; 45214752412STakashi Iwai if (!azx_dev->no_period_wakeup && pos_adj > 0) { 45314752412STakashi Iwai pos_align = pos_adj; 45481d0ec43SLars-Peter Clausen pos_adj = DIV_ROUND_UP(pos_adj * runtime->rate, 48000); 45514752412STakashi Iwai if (!pos_adj) 45614752412STakashi Iwai pos_adj = pos_align; 45714752412STakashi Iwai else 45881d0ec43SLars-Peter Clausen pos_adj = roundup(pos_adj, pos_align); 45914752412STakashi Iwai pos_adj = frames_to_bytes(runtime, pos_adj); 46014752412STakashi Iwai if (pos_adj >= period_bytes) { 46114752412STakashi Iwai dev_warn(bus->dev, "Too big adjustment %d\n", 46214752412STakashi Iwai pos_adj); 46314752412STakashi Iwai pos_adj = 0; 46414752412STakashi Iwai } else { 46514752412STakashi Iwai ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream), 46614752412STakashi Iwai azx_dev, 46714752412STakashi Iwai &bdl, ofs, pos_adj, true); 46814752412STakashi Iwai if (ofs < 0) 46914752412STakashi Iwai goto error; 47014752412STakashi Iwai } 47114752412STakashi Iwai } else 47214752412STakashi Iwai pos_adj = 0; 47314752412STakashi Iwai 47414752412STakashi Iwai for (i = 0; i < periods; i++) { 47514752412STakashi Iwai if (i == periods - 1 && pos_adj) 47614752412STakashi Iwai ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream), 47714752412STakashi Iwai azx_dev, &bdl, ofs, 47814752412STakashi Iwai period_bytes - pos_adj, 0); 47914752412STakashi Iwai else 48014752412STakashi Iwai ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream), 48114752412STakashi Iwai azx_dev, &bdl, ofs, 48214752412STakashi Iwai period_bytes, 48314752412STakashi Iwai !azx_dev->no_period_wakeup); 48414752412STakashi Iwai if (ofs < 0) 48514752412STakashi Iwai goto error; 48614752412STakashi Iwai } 48714752412STakashi Iwai return 0; 48814752412STakashi Iwai 48914752412STakashi Iwai error: 49014752412STakashi Iwai dev_err(bus->dev, "Too many BDL entries: buffer=%d, period=%d\n", 49114752412STakashi Iwai azx_dev->bufsize, period_bytes); 49214752412STakashi Iwai return -EINVAL; 49314752412STakashi Iwai } 49414752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_setup_periods); 49514752412STakashi Iwai 49678dd5e21STakashi Iwai /** 49778dd5e21STakashi Iwai * snd_hdac_stream_set_params - set stream parameters 49886f6501bSJeeja KP * @azx_dev: HD-audio core stream for which parameters are to be set 49986f6501bSJeeja KP * @format_val: format value parameter 50086f6501bSJeeja KP * 50186f6501bSJeeja KP * Setup the HD-audio core stream parameters from substream of the stream 50286f6501bSJeeja KP * and passed format value 50386f6501bSJeeja KP */ 50486f6501bSJeeja KP int snd_hdac_stream_set_params(struct hdac_stream *azx_dev, 50586f6501bSJeeja KP unsigned int format_val) 50686f6501bSJeeja KP { 50786f6501bSJeeja KP 50886f6501bSJeeja KP unsigned int bufsize, period_bytes; 50986f6501bSJeeja KP struct snd_pcm_substream *substream = azx_dev->substream; 51086f6501bSJeeja KP struct snd_pcm_runtime *runtime; 51186f6501bSJeeja KP int err; 51286f6501bSJeeja KP 51386f6501bSJeeja KP if (!substream) 51486f6501bSJeeja KP return -EINVAL; 51586f6501bSJeeja KP runtime = substream->runtime; 51686f6501bSJeeja KP bufsize = snd_pcm_lib_buffer_bytes(substream); 51786f6501bSJeeja KP period_bytes = snd_pcm_lib_period_bytes(substream); 51886f6501bSJeeja KP 51986f6501bSJeeja KP if (bufsize != azx_dev->bufsize || 52086f6501bSJeeja KP period_bytes != azx_dev->period_bytes || 52186f6501bSJeeja KP format_val != azx_dev->format_val || 52286f6501bSJeeja KP runtime->no_period_wakeup != azx_dev->no_period_wakeup) { 52386f6501bSJeeja KP azx_dev->bufsize = bufsize; 52486f6501bSJeeja KP azx_dev->period_bytes = period_bytes; 52586f6501bSJeeja KP azx_dev->format_val = format_val; 52686f6501bSJeeja KP azx_dev->no_period_wakeup = runtime->no_period_wakeup; 52786f6501bSJeeja KP err = snd_hdac_stream_setup_periods(azx_dev); 52886f6501bSJeeja KP if (err < 0) 52986f6501bSJeeja KP return err; 53086f6501bSJeeja KP } 53186f6501bSJeeja KP return 0; 53286f6501bSJeeja KP } 53386f6501bSJeeja KP EXPORT_SYMBOL_GPL(snd_hdac_stream_set_params); 53486f6501bSJeeja KP 535a5a1d1c2SThomas Gleixner static u64 azx_cc_read(const struct cyclecounter *cc) 53614752412STakashi Iwai { 53714752412STakashi Iwai struct hdac_stream *azx_dev = container_of(cc, struct hdac_stream, cc); 53814752412STakashi Iwai 53914752412STakashi Iwai return snd_hdac_chip_readl(azx_dev->bus, WALLCLK); 54014752412STakashi Iwai } 54114752412STakashi Iwai 54214752412STakashi Iwai static void azx_timecounter_init(struct hdac_stream *azx_dev, 543a5a1d1c2SThomas Gleixner bool force, u64 last) 54414752412STakashi Iwai { 54514752412STakashi Iwai struct timecounter *tc = &azx_dev->tc; 54614752412STakashi Iwai struct cyclecounter *cc = &azx_dev->cc; 54714752412STakashi Iwai u64 nsec; 54814752412STakashi Iwai 54914752412STakashi Iwai cc->read = azx_cc_read; 55014752412STakashi Iwai cc->mask = CLOCKSOURCE_MASK(32); 55114752412STakashi Iwai 55214752412STakashi Iwai /* 5536dd21ad8SThomas Gleixner * Calculate the optimal mult/shift values. The counter wraps 5546dd21ad8SThomas Gleixner * around after ~178.9 seconds. 55514752412STakashi Iwai */ 5566dd21ad8SThomas Gleixner clocks_calc_mult_shift(&cc->mult, &cc->shift, 24000000, 5576dd21ad8SThomas Gleixner NSEC_PER_SEC, 178); 55814752412STakashi Iwai 55914752412STakashi Iwai nsec = 0; /* audio time is elapsed time since trigger */ 56014752412STakashi Iwai timecounter_init(tc, cc, nsec); 56114752412STakashi Iwai if (force) { 56214752412STakashi Iwai /* 56314752412STakashi Iwai * force timecounter to use predefined value, 56414752412STakashi Iwai * used for synchronized starts 56514752412STakashi Iwai */ 56614752412STakashi Iwai tc->cycle_last = last; 56714752412STakashi Iwai } 56814752412STakashi Iwai } 56914752412STakashi Iwai 57014752412STakashi Iwai /** 57114752412STakashi Iwai * snd_hdac_stream_timecounter_init - initialize time counter 57214752412STakashi Iwai * @azx_dev: HD-audio core stream (master stream) 57314752412STakashi Iwai * @streams: bit flags of streams to set up 57414752412STakashi Iwai * 57514752412STakashi Iwai * Initializes the time counter of streams marked by the bit flags (each 57614752412STakashi Iwai * bit corresponds to the stream index). 57714752412STakashi Iwai * The trigger timestamp of PCM substream assigned to the given stream is 57814752412STakashi Iwai * updated accordingly, too. 57914752412STakashi Iwai */ 58014752412STakashi Iwai void snd_hdac_stream_timecounter_init(struct hdac_stream *azx_dev, 58114752412STakashi Iwai unsigned int streams) 58214752412STakashi Iwai { 58314752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 58414752412STakashi Iwai struct snd_pcm_runtime *runtime = azx_dev->substream->runtime; 58514752412STakashi Iwai struct hdac_stream *s; 58614752412STakashi Iwai bool inited = false; 587a5a1d1c2SThomas Gleixner u64 cycle_last = 0; 58814752412STakashi Iwai int i = 0; 58914752412STakashi Iwai 59014752412STakashi Iwai list_for_each_entry(s, &bus->stream_list, list) { 59114752412STakashi Iwai if (streams & (1 << i)) { 59214752412STakashi Iwai azx_timecounter_init(s, inited, cycle_last); 59314752412STakashi Iwai if (!inited) { 59414752412STakashi Iwai inited = true; 59514752412STakashi Iwai cycle_last = s->tc.cycle_last; 59614752412STakashi Iwai } 59714752412STakashi Iwai } 59814752412STakashi Iwai i++; 59914752412STakashi Iwai } 60014752412STakashi Iwai 60114752412STakashi Iwai snd_pcm_gettime(runtime, &runtime->trigger_tstamp); 60214752412STakashi Iwai runtime->trigger_tstamp_latched = true; 60314752412STakashi Iwai } 60414752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_timecounter_init); 60514752412STakashi Iwai 60614752412STakashi Iwai /** 60714752412STakashi Iwai * snd_hdac_stream_sync_trigger - turn on/off stream sync register 60814752412STakashi Iwai * @azx_dev: HD-audio core stream (master stream) 6096e57188fSKeyon Jie * @set: true = set, false = clear 61014752412STakashi Iwai * @streams: bit flags of streams to sync 6116e57188fSKeyon Jie * @reg: the stream sync register address 61214752412STakashi Iwai */ 61314752412STakashi Iwai void snd_hdac_stream_sync_trigger(struct hdac_stream *azx_dev, bool set, 61414752412STakashi Iwai unsigned int streams, unsigned int reg) 61514752412STakashi Iwai { 61614752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 61714752412STakashi Iwai unsigned int val; 61814752412STakashi Iwai 61914752412STakashi Iwai if (!reg) 62014752412STakashi Iwai reg = AZX_REG_SSYNC; 6212c1f8138STakashi Iwai val = _snd_hdac_chip_readl(bus, reg); 62214752412STakashi Iwai if (set) 62314752412STakashi Iwai val |= streams; 62414752412STakashi Iwai else 62514752412STakashi Iwai val &= ~streams; 6262c1f8138STakashi Iwai _snd_hdac_chip_writel(bus, reg, val); 62714752412STakashi Iwai } 62814752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_sync_trigger); 62914752412STakashi Iwai 63014752412STakashi Iwai /** 6318518c648Shuangjianghui * snd_hdac_stream_sync - sync with start/stop trigger operation 63214752412STakashi Iwai * @azx_dev: HD-audio core stream (master stream) 63314752412STakashi Iwai * @start: true = start, false = stop 63414752412STakashi Iwai * @streams: bit flags of streams to sync 63514752412STakashi Iwai * 63614752412STakashi Iwai * For @start = true, wait until all FIFOs get ready. 63714752412STakashi Iwai * For @start = false, wait until all RUN bits are cleared. 63814752412STakashi Iwai */ 63914752412STakashi Iwai void snd_hdac_stream_sync(struct hdac_stream *azx_dev, bool start, 64014752412STakashi Iwai unsigned int streams) 64114752412STakashi Iwai { 64214752412STakashi Iwai struct hdac_bus *bus = azx_dev->bus; 64314752412STakashi Iwai int i, nwait, timeout; 64414752412STakashi Iwai struct hdac_stream *s; 64514752412STakashi Iwai 64614752412STakashi Iwai for (timeout = 5000; timeout; timeout--) { 64714752412STakashi Iwai nwait = 0; 64814752412STakashi Iwai i = 0; 64914752412STakashi Iwai list_for_each_entry(s, &bus->stream_list, list) { 6507faa26c1SMohan Kumar if (!(streams & (1 << i++))) 6517faa26c1SMohan Kumar continue; 6527faa26c1SMohan Kumar 65314752412STakashi Iwai if (start) { 65414752412STakashi Iwai /* check FIFO gets ready */ 65514752412STakashi Iwai if (!(snd_hdac_stream_readb(s, SD_STS) & 65614752412STakashi Iwai SD_STS_FIFO_READY)) 65714752412STakashi Iwai nwait++; 65814752412STakashi Iwai } else { 65914752412STakashi Iwai /* check RUN bit is cleared */ 66014752412STakashi Iwai if (snd_hdac_stream_readb(s, SD_CTL) & 6617faa26c1SMohan Kumar SD_CTL_DMA_START) { 66214752412STakashi Iwai nwait++; 6637faa26c1SMohan Kumar /* 6647faa26c1SMohan Kumar * Perform stream reset if DMA RUN 6657faa26c1SMohan Kumar * bit not cleared within given timeout 6667faa26c1SMohan Kumar */ 6677faa26c1SMohan Kumar if (timeout == 1) 6687faa26c1SMohan Kumar snd_hdac_stream_reset(s); 66914752412STakashi Iwai } 67014752412STakashi Iwai } 67114752412STakashi Iwai } 67214752412STakashi Iwai if (!nwait) 67314752412STakashi Iwai break; 67414752412STakashi Iwai cpu_relax(); 67514752412STakashi Iwai } 67614752412STakashi Iwai } 67714752412STakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_stream_sync); 6788f3f600bSTakashi Iwai 6798f3f600bSTakashi Iwai #ifdef CONFIG_SND_HDA_DSP_LOADER 6808f3f600bSTakashi Iwai /** 6818f3f600bSTakashi Iwai * snd_hdac_dsp_prepare - prepare for DSP loading 6828f3f600bSTakashi Iwai * @azx_dev: HD-audio core stream used for DSP loading 6838f3f600bSTakashi Iwai * @format: HD-audio stream format 6848f3f600bSTakashi Iwai * @byte_size: data chunk byte size 6858f3f600bSTakashi Iwai * @bufp: allocated buffer 6868f3f600bSTakashi Iwai * 6878f3f600bSTakashi Iwai * Allocate the buffer for the given size and set up the given stream for 6888f3f600bSTakashi Iwai * DSP loading. Returns the stream tag (>= 0), or a negative error code. 6898f3f600bSTakashi Iwai */ 6908f3f600bSTakashi Iwai int snd_hdac_dsp_prepare(struct hdac_stream *azx_dev, unsigned int format, 6918f3f600bSTakashi Iwai unsigned int byte_size, struct snd_dma_buffer *bufp) 6928f3f600bSTakashi Iwai { 6938f3f600bSTakashi Iwai struct hdac_bus *bus = azx_dev->bus; 6947362b0fcSTakashi Iwai __le32 *bdl; 6958f3f600bSTakashi Iwai int err; 6968f3f600bSTakashi Iwai 6978f3f600bSTakashi Iwai snd_hdac_dsp_lock(azx_dev); 6988f3f600bSTakashi Iwai spin_lock_irq(&bus->reg_lock); 6998f3f600bSTakashi Iwai if (azx_dev->running || azx_dev->locked) { 7008f3f600bSTakashi Iwai spin_unlock_irq(&bus->reg_lock); 7018f3f600bSTakashi Iwai err = -EBUSY; 7028f3f600bSTakashi Iwai goto unlock; 7038f3f600bSTakashi Iwai } 7048f3f600bSTakashi Iwai azx_dev->locked = true; 7058f3f600bSTakashi Iwai spin_unlock_irq(&bus->reg_lock); 7068f3f600bSTakashi Iwai 707619a1f19STakashi Iwai err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV_SG, bus->dev, 7088f3f600bSTakashi Iwai byte_size, bufp); 7098f3f600bSTakashi Iwai if (err < 0) 7108f3f600bSTakashi Iwai goto err_alloc; 7118f3f600bSTakashi Iwai 7124214c534STakashi Iwai azx_dev->substream = NULL; 7138f3f600bSTakashi Iwai azx_dev->bufsize = byte_size; 7148f3f600bSTakashi Iwai azx_dev->period_bytes = byte_size; 7158f3f600bSTakashi Iwai azx_dev->format_val = format; 7168f3f600bSTakashi Iwai 7178f3f600bSTakashi Iwai snd_hdac_stream_reset(azx_dev); 7188f3f600bSTakashi Iwai 7198f3f600bSTakashi Iwai /* reset BDL address */ 7208f3f600bSTakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0); 7218f3f600bSTakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0); 7228f3f600bSTakashi Iwai 7238f3f600bSTakashi Iwai azx_dev->frags = 0; 7247362b0fcSTakashi Iwai bdl = (__le32 *)azx_dev->bdl.area; 7258f3f600bSTakashi Iwai err = setup_bdle(bus, bufp, azx_dev, &bdl, 0, byte_size, 0); 7268f3f600bSTakashi Iwai if (err < 0) 7278f3f600bSTakashi Iwai goto error; 7288f3f600bSTakashi Iwai 7298f3f600bSTakashi Iwai snd_hdac_stream_setup(azx_dev); 7308f3f600bSTakashi Iwai snd_hdac_dsp_unlock(azx_dev); 7318f3f600bSTakashi Iwai return azx_dev->stream_tag; 7328f3f600bSTakashi Iwai 7338f3f600bSTakashi Iwai error: 734619a1f19STakashi Iwai snd_dma_free_pages(bufp); 7358f3f600bSTakashi Iwai err_alloc: 7368f3f600bSTakashi Iwai spin_lock_irq(&bus->reg_lock); 7378f3f600bSTakashi Iwai azx_dev->locked = false; 7388f3f600bSTakashi Iwai spin_unlock_irq(&bus->reg_lock); 7398f3f600bSTakashi Iwai unlock: 7408f3f600bSTakashi Iwai snd_hdac_dsp_unlock(azx_dev); 7418f3f600bSTakashi Iwai return err; 7428f3f600bSTakashi Iwai } 7438f3f600bSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_dsp_prepare); 7448f3f600bSTakashi Iwai 7458f3f600bSTakashi Iwai /** 7468f3f600bSTakashi Iwai * snd_hdac_dsp_trigger - start / stop DSP loading 7478f3f600bSTakashi Iwai * @azx_dev: HD-audio core stream used for DSP loading 7488f3f600bSTakashi Iwai * @start: trigger start or stop 7498f3f600bSTakashi Iwai */ 7508f3f600bSTakashi Iwai void snd_hdac_dsp_trigger(struct hdac_stream *azx_dev, bool start) 7518f3f600bSTakashi Iwai { 7528f3f600bSTakashi Iwai if (start) 7538f3f600bSTakashi Iwai snd_hdac_stream_start(azx_dev, true); 7548f3f600bSTakashi Iwai else 7558f3f600bSTakashi Iwai snd_hdac_stream_stop(azx_dev); 7568f3f600bSTakashi Iwai } 7578f3f600bSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_dsp_trigger); 7588f3f600bSTakashi Iwai 7598f3f600bSTakashi Iwai /** 7608f3f600bSTakashi Iwai * snd_hdac_dsp_cleanup - clean up the stream from DSP loading to normal 7618f3f600bSTakashi Iwai * @azx_dev: HD-audio core stream used for DSP loading 7628f3f600bSTakashi Iwai * @dmab: buffer used by DSP loading 7638f3f600bSTakashi Iwai */ 7648f3f600bSTakashi Iwai void snd_hdac_dsp_cleanup(struct hdac_stream *azx_dev, 7658f3f600bSTakashi Iwai struct snd_dma_buffer *dmab) 7668f3f600bSTakashi Iwai { 7678f3f600bSTakashi Iwai struct hdac_bus *bus = azx_dev->bus; 7688f3f600bSTakashi Iwai 7698f3f600bSTakashi Iwai if (!dmab->area || !azx_dev->locked) 7708f3f600bSTakashi Iwai return; 7718f3f600bSTakashi Iwai 7728f3f600bSTakashi Iwai snd_hdac_dsp_lock(azx_dev); 7738f3f600bSTakashi Iwai /* reset BDL address */ 7748f3f600bSTakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0); 7758f3f600bSTakashi Iwai snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0); 7768f3f600bSTakashi Iwai snd_hdac_stream_writel(azx_dev, SD_CTL, 0); 7778f3f600bSTakashi Iwai azx_dev->bufsize = 0; 7788f3f600bSTakashi Iwai azx_dev->period_bytes = 0; 7798f3f600bSTakashi Iwai azx_dev->format_val = 0; 7808f3f600bSTakashi Iwai 781619a1f19STakashi Iwai snd_dma_free_pages(dmab); 7828f3f600bSTakashi Iwai dmab->area = NULL; 7838f3f600bSTakashi Iwai 7848f3f600bSTakashi Iwai spin_lock_irq(&bus->reg_lock); 7858f3f600bSTakashi Iwai azx_dev->locked = false; 7868f3f600bSTakashi Iwai spin_unlock_irq(&bus->reg_lock); 7878f3f600bSTakashi Iwai snd_hdac_dsp_unlock(azx_dev); 7888f3f600bSTakashi Iwai } 7898f3f600bSTakashi Iwai EXPORT_SYMBOL_GPL(snd_hdac_dsp_cleanup); 7908f3f600bSTakashi Iwai #endif /* CONFIG_SND_HDA_DSP_LOADER */ 791