xref: /linux/sound/hda/hdac_stream.c (revision 52338415)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * HD-audio stream operations
4  */
5 
6 #include <linux/kernel.h>
7 #include <linux/delay.h>
8 #include <linux/export.h>
9 #include <linux/clocksource.h>
10 #include <sound/core.h>
11 #include <sound/pcm.h>
12 #include <sound/hdaudio.h>
13 #include <sound/hda_register.h>
14 #include "trace.h"
15 
16 /**
17  * snd_hdac_get_stream_stripe_ctl - get stripe control value
18  * @bus: HD-audio core bus
19  * @substream: PCM substream
20  */
21 int snd_hdac_get_stream_stripe_ctl(struct hdac_bus *bus,
22 				   struct snd_pcm_substream *substream)
23 {
24 	struct snd_pcm_runtime *runtime = substream->runtime;
25 	unsigned int channels = runtime->channels,
26 		     rate = runtime->rate,
27 		     bits_per_sample = runtime->sample_bits,
28 		     max_sdo_lines, value, sdo_line;
29 
30 	/* T_AZA_GCAP_NSDO is 1:2 bitfields in GCAP */
31 	max_sdo_lines = snd_hdac_chip_readl(bus, GCAP) & AZX_GCAP_NSDO;
32 
33 	/* following is from HD audio spec */
34 	for (sdo_line = max_sdo_lines; sdo_line > 0; sdo_line >>= 1) {
35 		if (rate > 48000)
36 			value = (channels * bits_per_sample *
37 					(rate / 48000)) / sdo_line;
38 		else
39 			value = (channels * bits_per_sample) / sdo_line;
40 
41 		if (value >= 8)
42 			break;
43 	}
44 
45 	/* stripe value: 0 for 1SDO, 1 for 2SDO, 2 for 4SDO lines */
46 	return sdo_line >> 1;
47 }
48 EXPORT_SYMBOL_GPL(snd_hdac_get_stream_stripe_ctl);
49 
50 /**
51  * snd_hdac_stream_init - initialize each stream (aka device)
52  * @bus: HD-audio core bus
53  * @azx_dev: HD-audio core stream object to initialize
54  * @idx: stream index number
55  * @direction: stream direction (SNDRV_PCM_STREAM_PLAYBACK or SNDRV_PCM_STREAM_CAPTURE)
56  * @tag: the tag id to assign
57  *
58  * Assign the starting bdl address to each stream (device) and initialize.
59  */
60 void snd_hdac_stream_init(struct hdac_bus *bus, struct hdac_stream *azx_dev,
61 			  int idx, int direction, int tag)
62 {
63 	azx_dev->bus = bus;
64 	/* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
65 	azx_dev->sd_addr = bus->remap_addr + (0x20 * idx + 0x80);
66 	/* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
67 	azx_dev->sd_int_sta_mask = 1 << idx;
68 	azx_dev->index = idx;
69 	azx_dev->direction = direction;
70 	azx_dev->stream_tag = tag;
71 	snd_hdac_dsp_lock_init(azx_dev);
72 	list_add_tail(&azx_dev->list, &bus->stream_list);
73 }
74 EXPORT_SYMBOL_GPL(snd_hdac_stream_init);
75 
76 /**
77  * snd_hdac_stream_start - start a stream
78  * @azx_dev: HD-audio core stream to start
79  * @fresh_start: false = wallclock timestamp relative to period wallclock
80  *
81  * Start a stream, set start_wallclk and set the running flag.
82  */
83 void snd_hdac_stream_start(struct hdac_stream *azx_dev, bool fresh_start)
84 {
85 	struct hdac_bus *bus = azx_dev->bus;
86 	int stripe_ctl;
87 
88 	trace_snd_hdac_stream_start(bus, azx_dev);
89 
90 	azx_dev->start_wallclk = snd_hdac_chip_readl(bus, WALLCLK);
91 	if (!fresh_start)
92 		azx_dev->start_wallclk -= azx_dev->period_wallclk;
93 
94 	/* enable SIE */
95 	snd_hdac_chip_updatel(bus, INTCTL,
96 			      1 << azx_dev->index,
97 			      1 << azx_dev->index);
98 	/* set stripe control */
99 	if (azx_dev->substream)
100 		stripe_ctl = snd_hdac_get_stream_stripe_ctl(bus, azx_dev->substream);
101 	else
102 		stripe_ctl = 0;
103 	snd_hdac_stream_updateb(azx_dev, SD_CTL_3B, SD_CTL_STRIPE_MASK,
104 				stripe_ctl);
105 	/* set DMA start and interrupt mask */
106 	snd_hdac_stream_updateb(azx_dev, SD_CTL,
107 				0, SD_CTL_DMA_START | SD_INT_MASK);
108 	azx_dev->running = true;
109 }
110 EXPORT_SYMBOL_GPL(snd_hdac_stream_start);
111 
112 /**
113  * snd_hdac_stream_clear - stop a stream DMA
114  * @azx_dev: HD-audio core stream to stop
115  */
116 void snd_hdac_stream_clear(struct hdac_stream *azx_dev)
117 {
118 	snd_hdac_stream_updateb(azx_dev, SD_CTL,
119 				SD_CTL_DMA_START | SD_INT_MASK, 0);
120 	snd_hdac_stream_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
121 	snd_hdac_stream_updateb(azx_dev, SD_CTL_3B, SD_CTL_STRIPE_MASK, 0);
122 	azx_dev->running = false;
123 }
124 EXPORT_SYMBOL_GPL(snd_hdac_stream_clear);
125 
126 /**
127  * snd_hdac_stream_stop - stop a stream
128  * @azx_dev: HD-audio core stream to stop
129  *
130  * Stop a stream DMA and disable stream interrupt
131  */
132 void snd_hdac_stream_stop(struct hdac_stream *azx_dev)
133 {
134 	trace_snd_hdac_stream_stop(azx_dev->bus, azx_dev);
135 
136 	snd_hdac_stream_clear(azx_dev);
137 	/* disable SIE */
138 	snd_hdac_chip_updatel(azx_dev->bus, INTCTL, 1 << azx_dev->index, 0);
139 }
140 EXPORT_SYMBOL_GPL(snd_hdac_stream_stop);
141 
142 /**
143  * snd_hdac_stream_reset - reset a stream
144  * @azx_dev: HD-audio core stream to reset
145  */
146 void snd_hdac_stream_reset(struct hdac_stream *azx_dev)
147 {
148 	unsigned char val;
149 	int timeout;
150 
151 	snd_hdac_stream_clear(azx_dev);
152 
153 	snd_hdac_stream_updateb(azx_dev, SD_CTL, 0, SD_CTL_STREAM_RESET);
154 	udelay(3);
155 	timeout = 300;
156 	do {
157 		val = snd_hdac_stream_readb(azx_dev, SD_CTL) &
158 			SD_CTL_STREAM_RESET;
159 		if (val)
160 			break;
161 	} while (--timeout);
162 	val &= ~SD_CTL_STREAM_RESET;
163 	snd_hdac_stream_writeb(azx_dev, SD_CTL, val);
164 	udelay(3);
165 
166 	timeout = 300;
167 	/* waiting for hardware to report that the stream is out of reset */
168 	do {
169 		val = snd_hdac_stream_readb(azx_dev, SD_CTL) &
170 			SD_CTL_STREAM_RESET;
171 		if (!val)
172 			break;
173 	} while (--timeout);
174 
175 	/* reset first position - may not be synced with hw at this time */
176 	if (azx_dev->posbuf)
177 		*azx_dev->posbuf = 0;
178 }
179 EXPORT_SYMBOL_GPL(snd_hdac_stream_reset);
180 
181 /**
182  * snd_hdac_stream_setup -  set up the SD for streaming
183  * @azx_dev: HD-audio core stream to set up
184  */
185 int snd_hdac_stream_setup(struct hdac_stream *azx_dev)
186 {
187 	struct hdac_bus *bus = azx_dev->bus;
188 	struct snd_pcm_runtime *runtime;
189 	unsigned int val;
190 
191 	if (azx_dev->substream)
192 		runtime = azx_dev->substream->runtime;
193 	else
194 		runtime = NULL;
195 	/* make sure the run bit is zero for SD */
196 	snd_hdac_stream_clear(azx_dev);
197 	/* program the stream_tag */
198 	val = snd_hdac_stream_readl(azx_dev, SD_CTL);
199 	val = (val & ~SD_CTL_STREAM_TAG_MASK) |
200 		(azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT);
201 	if (!bus->snoop)
202 		val |= SD_CTL_TRAFFIC_PRIO;
203 	snd_hdac_stream_writel(azx_dev, SD_CTL, val);
204 
205 	/* program the length of samples in cyclic buffer */
206 	snd_hdac_stream_writel(azx_dev, SD_CBL, azx_dev->bufsize);
207 
208 	/* program the stream format */
209 	/* this value needs to be the same as the one programmed */
210 	snd_hdac_stream_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
211 
212 	/* program the stream LVI (last valid index) of the BDL */
213 	snd_hdac_stream_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
214 
215 	/* program the BDL address */
216 	/* lower BDL address */
217 	snd_hdac_stream_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
218 	/* upper BDL address */
219 	snd_hdac_stream_writel(azx_dev, SD_BDLPU,
220 			       upper_32_bits(azx_dev->bdl.addr));
221 
222 	/* enable the position buffer */
223 	if (bus->use_posbuf && bus->posbuf.addr) {
224 		if (!(snd_hdac_chip_readl(bus, DPLBASE) & AZX_DPLBASE_ENABLE))
225 			snd_hdac_chip_writel(bus, DPLBASE,
226 				(u32)bus->posbuf.addr | AZX_DPLBASE_ENABLE);
227 	}
228 
229 	/* set the interrupt enable bits in the descriptor control register */
230 	snd_hdac_stream_updatel(azx_dev, SD_CTL, 0, SD_INT_MASK);
231 
232 	azx_dev->fifo_size = snd_hdac_stream_readw(azx_dev, SD_FIFOSIZE) + 1;
233 
234 	/* when LPIB delay correction gives a small negative value,
235 	 * we ignore it; currently set the threshold statically to
236 	 * 64 frames
237 	 */
238 	if (runtime && runtime->period_size > 64)
239 		azx_dev->delay_negative_threshold =
240 			-frames_to_bytes(runtime, 64);
241 	else
242 		azx_dev->delay_negative_threshold = 0;
243 
244 	/* wallclk has 24Mhz clock source */
245 	if (runtime)
246 		azx_dev->period_wallclk = (((runtime->period_size * 24000) /
247 				    runtime->rate) * 1000);
248 
249 	return 0;
250 }
251 EXPORT_SYMBOL_GPL(snd_hdac_stream_setup);
252 
253 /**
254  * snd_hdac_stream_cleanup - cleanup a stream
255  * @azx_dev: HD-audio core stream to clean up
256  */
257 void snd_hdac_stream_cleanup(struct hdac_stream *azx_dev)
258 {
259 	snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
260 	snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
261 	snd_hdac_stream_writel(azx_dev, SD_CTL, 0);
262 	azx_dev->bufsize = 0;
263 	azx_dev->period_bytes = 0;
264 	azx_dev->format_val = 0;
265 }
266 EXPORT_SYMBOL_GPL(snd_hdac_stream_cleanup);
267 
268 /**
269  * snd_hdac_stream_assign - assign a stream for the PCM
270  * @bus: HD-audio core bus
271  * @substream: PCM substream to assign
272  *
273  * Look for an unused stream for the given PCM substream, assign it
274  * and return the stream object.  If no stream is free, returns NULL.
275  * The function tries to keep using the same stream object when it's used
276  * beforehand.  Also, when bus->reverse_assign flag is set, the last free
277  * or matching entry is returned.  This is needed for some strange codecs.
278  */
279 struct hdac_stream *snd_hdac_stream_assign(struct hdac_bus *bus,
280 					   struct snd_pcm_substream *substream)
281 {
282 	struct hdac_stream *azx_dev;
283 	struct hdac_stream *res = NULL;
284 
285 	/* make a non-zero unique key for the substream */
286 	int key = (substream->pcm->device << 16) | (substream->number << 2) |
287 		(substream->stream + 1);
288 
289 	list_for_each_entry(azx_dev, &bus->stream_list, list) {
290 		if (azx_dev->direction != substream->stream)
291 			continue;
292 		if (azx_dev->opened)
293 			continue;
294 		if (azx_dev->assigned_key == key) {
295 			res = azx_dev;
296 			break;
297 		}
298 		if (!res || bus->reverse_assign)
299 			res = azx_dev;
300 	}
301 	if (res) {
302 		spin_lock_irq(&bus->reg_lock);
303 		res->opened = 1;
304 		res->running = 0;
305 		res->assigned_key = key;
306 		res->substream = substream;
307 		spin_unlock_irq(&bus->reg_lock);
308 	}
309 	return res;
310 }
311 EXPORT_SYMBOL_GPL(snd_hdac_stream_assign);
312 
313 /**
314  * snd_hdac_stream_release - release the assigned stream
315  * @azx_dev: HD-audio core stream to release
316  *
317  * Release the stream that has been assigned by snd_hdac_stream_assign().
318  */
319 void snd_hdac_stream_release(struct hdac_stream *azx_dev)
320 {
321 	struct hdac_bus *bus = azx_dev->bus;
322 
323 	spin_lock_irq(&bus->reg_lock);
324 	azx_dev->opened = 0;
325 	azx_dev->running = 0;
326 	azx_dev->substream = NULL;
327 	spin_unlock_irq(&bus->reg_lock);
328 }
329 EXPORT_SYMBOL_GPL(snd_hdac_stream_release);
330 
331 /**
332  * snd_hdac_get_stream - return hdac_stream based on stream_tag and
333  * direction
334  *
335  * @bus: HD-audio core bus
336  * @dir: direction for the stream to be found
337  * @stream_tag: stream tag for stream to be found
338  */
339 struct hdac_stream *snd_hdac_get_stream(struct hdac_bus *bus,
340 					int dir, int stream_tag)
341 {
342 	struct hdac_stream *s;
343 
344 	list_for_each_entry(s, &bus->stream_list, list) {
345 		if (s->direction == dir && s->stream_tag == stream_tag)
346 			return s;
347 	}
348 
349 	return NULL;
350 }
351 EXPORT_SYMBOL_GPL(snd_hdac_get_stream);
352 
353 /*
354  * set up a BDL entry
355  */
356 static int setup_bdle(struct hdac_bus *bus,
357 		      struct snd_dma_buffer *dmab,
358 		      struct hdac_stream *azx_dev, __le32 **bdlp,
359 		      int ofs, int size, int with_ioc)
360 {
361 	__le32 *bdl = *bdlp;
362 
363 	while (size > 0) {
364 		dma_addr_t addr;
365 		int chunk;
366 
367 		if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
368 			return -EINVAL;
369 
370 		addr = snd_sgbuf_get_addr(dmab, ofs);
371 		/* program the address field of the BDL entry */
372 		bdl[0] = cpu_to_le32((u32)addr);
373 		bdl[1] = cpu_to_le32(upper_32_bits(addr));
374 		/* program the size field of the BDL entry */
375 		chunk = snd_sgbuf_get_chunk_size(dmab, ofs, size);
376 		/* one BDLE cannot cross 4K boundary on CTHDA chips */
377 		if (bus->align_bdle_4k) {
378 			u32 remain = 0x1000 - (ofs & 0xfff);
379 
380 			if (chunk > remain)
381 				chunk = remain;
382 		}
383 		bdl[2] = cpu_to_le32(chunk);
384 		/* program the IOC to enable interrupt
385 		 * only when the whole fragment is processed
386 		 */
387 		size -= chunk;
388 		bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
389 		bdl += 4;
390 		azx_dev->frags++;
391 		ofs += chunk;
392 	}
393 	*bdlp = bdl;
394 	return ofs;
395 }
396 
397 /**
398  * snd_hdac_stream_setup_periods - set up BDL entries
399  * @azx_dev: HD-audio core stream to set up
400  *
401  * Set up the buffer descriptor table of the given stream based on the
402  * period and buffer sizes of the assigned PCM substream.
403  */
404 int snd_hdac_stream_setup_periods(struct hdac_stream *azx_dev)
405 {
406 	struct hdac_bus *bus = azx_dev->bus;
407 	struct snd_pcm_substream *substream = azx_dev->substream;
408 	struct snd_pcm_runtime *runtime = substream->runtime;
409 	__le32 *bdl;
410 	int i, ofs, periods, period_bytes;
411 	int pos_adj, pos_align;
412 
413 	/* reset BDL address */
414 	snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
415 	snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
416 
417 	period_bytes = azx_dev->period_bytes;
418 	periods = azx_dev->bufsize / period_bytes;
419 
420 	/* program the initial BDL entries */
421 	bdl = (__le32 *)azx_dev->bdl.area;
422 	ofs = 0;
423 	azx_dev->frags = 0;
424 
425 	pos_adj = bus->bdl_pos_adj;
426 	if (!azx_dev->no_period_wakeup && pos_adj > 0) {
427 		pos_align = pos_adj;
428 		pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
429 		if (!pos_adj)
430 			pos_adj = pos_align;
431 		else
432 			pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
433 				pos_align;
434 		pos_adj = frames_to_bytes(runtime, pos_adj);
435 		if (pos_adj >= period_bytes) {
436 			dev_warn(bus->dev, "Too big adjustment %d\n",
437 				 pos_adj);
438 			pos_adj = 0;
439 		} else {
440 			ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream),
441 					 azx_dev,
442 					 &bdl, ofs, pos_adj, true);
443 			if (ofs < 0)
444 				goto error;
445 		}
446 	} else
447 		pos_adj = 0;
448 
449 	for (i = 0; i < periods; i++) {
450 		if (i == periods - 1 && pos_adj)
451 			ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream),
452 					 azx_dev, &bdl, ofs,
453 					 period_bytes - pos_adj, 0);
454 		else
455 			ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream),
456 					 azx_dev, &bdl, ofs,
457 					 period_bytes,
458 					 !azx_dev->no_period_wakeup);
459 		if (ofs < 0)
460 			goto error;
461 	}
462 	return 0;
463 
464  error:
465 	dev_err(bus->dev, "Too many BDL entries: buffer=%d, period=%d\n",
466 		azx_dev->bufsize, period_bytes);
467 	return -EINVAL;
468 }
469 EXPORT_SYMBOL_GPL(snd_hdac_stream_setup_periods);
470 
471 /**
472  * snd_hdac_stream_set_params - set stream parameters
473  * @azx_dev: HD-audio core stream for which parameters are to be set
474  * @format_val: format value parameter
475  *
476  * Setup the HD-audio core stream parameters from substream of the stream
477  * and passed format value
478  */
479 int snd_hdac_stream_set_params(struct hdac_stream *azx_dev,
480 				 unsigned int format_val)
481 {
482 
483 	unsigned int bufsize, period_bytes;
484 	struct snd_pcm_substream *substream = azx_dev->substream;
485 	struct snd_pcm_runtime *runtime;
486 	int err;
487 
488 	if (!substream)
489 		return -EINVAL;
490 	runtime = substream->runtime;
491 	bufsize = snd_pcm_lib_buffer_bytes(substream);
492 	period_bytes = snd_pcm_lib_period_bytes(substream);
493 
494 	if (bufsize != azx_dev->bufsize ||
495 	    period_bytes != azx_dev->period_bytes ||
496 	    format_val != azx_dev->format_val ||
497 	    runtime->no_period_wakeup != azx_dev->no_period_wakeup) {
498 		azx_dev->bufsize = bufsize;
499 		azx_dev->period_bytes = period_bytes;
500 		azx_dev->format_val = format_val;
501 		azx_dev->no_period_wakeup = runtime->no_period_wakeup;
502 		err = snd_hdac_stream_setup_periods(azx_dev);
503 		if (err < 0)
504 			return err;
505 	}
506 	return 0;
507 }
508 EXPORT_SYMBOL_GPL(snd_hdac_stream_set_params);
509 
510 static u64 azx_cc_read(const struct cyclecounter *cc)
511 {
512 	struct hdac_stream *azx_dev = container_of(cc, struct hdac_stream, cc);
513 
514 	return snd_hdac_chip_readl(azx_dev->bus, WALLCLK);
515 }
516 
517 static void azx_timecounter_init(struct hdac_stream *azx_dev,
518 				 bool force, u64 last)
519 {
520 	struct timecounter *tc = &azx_dev->tc;
521 	struct cyclecounter *cc = &azx_dev->cc;
522 	u64 nsec;
523 
524 	cc->read = azx_cc_read;
525 	cc->mask = CLOCKSOURCE_MASK(32);
526 
527 	/*
528 	 * Converting from 24 MHz to ns means applying a 125/3 factor.
529 	 * To avoid any saturation issues in intermediate operations,
530 	 * the 125 factor is applied first. The division is applied
531 	 * last after reading the timecounter value.
532 	 * Applying the 1/3 factor as part of the multiplication
533 	 * requires at least 20 bits for a decent precision, however
534 	 * overflows occur after about 4 hours or less, not a option.
535 	 */
536 
537 	cc->mult = 125; /* saturation after 195 years */
538 	cc->shift = 0;
539 
540 	nsec = 0; /* audio time is elapsed time since trigger */
541 	timecounter_init(tc, cc, nsec);
542 	if (force) {
543 		/*
544 		 * force timecounter to use predefined value,
545 		 * used for synchronized starts
546 		 */
547 		tc->cycle_last = last;
548 	}
549 }
550 
551 /**
552  * snd_hdac_stream_timecounter_init - initialize time counter
553  * @azx_dev: HD-audio core stream (master stream)
554  * @streams: bit flags of streams to set up
555  *
556  * Initializes the time counter of streams marked by the bit flags (each
557  * bit corresponds to the stream index).
558  * The trigger timestamp of PCM substream assigned to the given stream is
559  * updated accordingly, too.
560  */
561 void snd_hdac_stream_timecounter_init(struct hdac_stream *azx_dev,
562 				      unsigned int streams)
563 {
564 	struct hdac_bus *bus = azx_dev->bus;
565 	struct snd_pcm_runtime *runtime = azx_dev->substream->runtime;
566 	struct hdac_stream *s;
567 	bool inited = false;
568 	u64 cycle_last = 0;
569 	int i = 0;
570 
571 	list_for_each_entry(s, &bus->stream_list, list) {
572 		if (streams & (1 << i)) {
573 			azx_timecounter_init(s, inited, cycle_last);
574 			if (!inited) {
575 				inited = true;
576 				cycle_last = s->tc.cycle_last;
577 			}
578 		}
579 		i++;
580 	}
581 
582 	snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
583 	runtime->trigger_tstamp_latched = true;
584 }
585 EXPORT_SYMBOL_GPL(snd_hdac_stream_timecounter_init);
586 
587 /**
588  * snd_hdac_stream_sync_trigger - turn on/off stream sync register
589  * @azx_dev: HD-audio core stream (master stream)
590  * @streams: bit flags of streams to sync
591  */
592 void snd_hdac_stream_sync_trigger(struct hdac_stream *azx_dev, bool set,
593 				  unsigned int streams, unsigned int reg)
594 {
595 	struct hdac_bus *bus = azx_dev->bus;
596 	unsigned int val;
597 
598 	if (!reg)
599 		reg = AZX_REG_SSYNC;
600 	val = _snd_hdac_chip_readl(bus, reg);
601 	if (set)
602 		val |= streams;
603 	else
604 		val &= ~streams;
605 	_snd_hdac_chip_writel(bus, reg, val);
606 }
607 EXPORT_SYMBOL_GPL(snd_hdac_stream_sync_trigger);
608 
609 /**
610  * snd_hdac_stream_sync - sync with start/strop trigger operation
611  * @azx_dev: HD-audio core stream (master stream)
612  * @start: true = start, false = stop
613  * @streams: bit flags of streams to sync
614  *
615  * For @start = true, wait until all FIFOs get ready.
616  * For @start = false, wait until all RUN bits are cleared.
617  */
618 void snd_hdac_stream_sync(struct hdac_stream *azx_dev, bool start,
619 			  unsigned int streams)
620 {
621 	struct hdac_bus *bus = azx_dev->bus;
622 	int i, nwait, timeout;
623 	struct hdac_stream *s;
624 
625 	for (timeout = 5000; timeout; timeout--) {
626 		nwait = 0;
627 		i = 0;
628 		list_for_each_entry(s, &bus->stream_list, list) {
629 			if (streams & (1 << i)) {
630 				if (start) {
631 					/* check FIFO gets ready */
632 					if (!(snd_hdac_stream_readb(s, SD_STS) &
633 					      SD_STS_FIFO_READY))
634 						nwait++;
635 				} else {
636 					/* check RUN bit is cleared */
637 					if (snd_hdac_stream_readb(s, SD_CTL) &
638 					    SD_CTL_DMA_START)
639 						nwait++;
640 				}
641 			}
642 			i++;
643 		}
644 		if (!nwait)
645 			break;
646 		cpu_relax();
647 	}
648 }
649 EXPORT_SYMBOL_GPL(snd_hdac_stream_sync);
650 
651 #ifdef CONFIG_SND_HDA_DSP_LOADER
652 /**
653  * snd_hdac_dsp_prepare - prepare for DSP loading
654  * @azx_dev: HD-audio core stream used for DSP loading
655  * @format: HD-audio stream format
656  * @byte_size: data chunk byte size
657  * @bufp: allocated buffer
658  *
659  * Allocate the buffer for the given size and set up the given stream for
660  * DSP loading.  Returns the stream tag (>= 0), or a negative error code.
661  */
662 int snd_hdac_dsp_prepare(struct hdac_stream *azx_dev, unsigned int format,
663 			 unsigned int byte_size, struct snd_dma_buffer *bufp)
664 {
665 	struct hdac_bus *bus = azx_dev->bus;
666 	__le32 *bdl;
667 	int err;
668 
669 	snd_hdac_dsp_lock(azx_dev);
670 	spin_lock_irq(&bus->reg_lock);
671 	if (azx_dev->running || azx_dev->locked) {
672 		spin_unlock_irq(&bus->reg_lock);
673 		err = -EBUSY;
674 		goto unlock;
675 	}
676 	azx_dev->locked = true;
677 	spin_unlock_irq(&bus->reg_lock);
678 
679 	err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV_SG, bus->dev,
680 				  byte_size, bufp);
681 	if (err < 0)
682 		goto err_alloc;
683 
684 	azx_dev->substream = NULL;
685 	azx_dev->bufsize = byte_size;
686 	azx_dev->period_bytes = byte_size;
687 	azx_dev->format_val = format;
688 
689 	snd_hdac_stream_reset(azx_dev);
690 
691 	/* reset BDL address */
692 	snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
693 	snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
694 
695 	azx_dev->frags = 0;
696 	bdl = (__le32 *)azx_dev->bdl.area;
697 	err = setup_bdle(bus, bufp, azx_dev, &bdl, 0, byte_size, 0);
698 	if (err < 0)
699 		goto error;
700 
701 	snd_hdac_stream_setup(azx_dev);
702 	snd_hdac_dsp_unlock(azx_dev);
703 	return azx_dev->stream_tag;
704 
705  error:
706 	snd_dma_free_pages(bufp);
707  err_alloc:
708 	spin_lock_irq(&bus->reg_lock);
709 	azx_dev->locked = false;
710 	spin_unlock_irq(&bus->reg_lock);
711  unlock:
712 	snd_hdac_dsp_unlock(azx_dev);
713 	return err;
714 }
715 EXPORT_SYMBOL_GPL(snd_hdac_dsp_prepare);
716 
717 /**
718  * snd_hdac_dsp_trigger - start / stop DSP loading
719  * @azx_dev: HD-audio core stream used for DSP loading
720  * @start: trigger start or stop
721  */
722 void snd_hdac_dsp_trigger(struct hdac_stream *azx_dev, bool start)
723 {
724 	if (start)
725 		snd_hdac_stream_start(azx_dev, true);
726 	else
727 		snd_hdac_stream_stop(azx_dev);
728 }
729 EXPORT_SYMBOL_GPL(snd_hdac_dsp_trigger);
730 
731 /**
732  * snd_hdac_dsp_cleanup - clean up the stream from DSP loading to normal
733  * @azx_dev: HD-audio core stream used for DSP loading
734  * @dmab: buffer used by DSP loading
735  */
736 void snd_hdac_dsp_cleanup(struct hdac_stream *azx_dev,
737 			  struct snd_dma_buffer *dmab)
738 {
739 	struct hdac_bus *bus = azx_dev->bus;
740 
741 	if (!dmab->area || !azx_dev->locked)
742 		return;
743 
744 	snd_hdac_dsp_lock(azx_dev);
745 	/* reset BDL address */
746 	snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
747 	snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
748 	snd_hdac_stream_writel(azx_dev, SD_CTL, 0);
749 	azx_dev->bufsize = 0;
750 	azx_dev->period_bytes = 0;
751 	azx_dev->format_val = 0;
752 
753 	snd_dma_free_pages(dmab);
754 	dmab->area = NULL;
755 
756 	spin_lock_irq(&bus->reg_lock);
757 	azx_dev->locked = false;
758 	spin_unlock_irq(&bus->reg_lock);
759 	snd_hdac_dsp_unlock(azx_dev);
760 }
761 EXPORT_SYMBOL_GPL(snd_hdac_dsp_cleanup);
762 #endif /* CONFIG_SND_HDA_DSP_LOADER */
763