1
2
3
4
5#include <linux/kernel.h>
6#include <linux/delay.h>
7#include <linux/export.h>
8#include <linux/clocksource.h>
9#include <sound/core.h>
10#include <sound/pcm.h>
11#include <sound/hdaudio.h>
12#include <sound/hda_register.h>
13#include "trace.h"
14
15
16
17
18
19
20int snd_hdac_get_stream_stripe_ctl(struct hdac_bus *bus,
21 struct snd_pcm_substream *substream)
22{
23 struct snd_pcm_runtime *runtime = substream->runtime;
24 unsigned int channels = runtime->channels,
25 rate = runtime->rate,
26 bits_per_sample = runtime->sample_bits,
27 max_sdo_lines, value, sdo_line;
28
29
30 max_sdo_lines = snd_hdac_chip_readl(bus, GCAP) & AZX_GCAP_NSDO;
31
32
33 for (sdo_line = max_sdo_lines; sdo_line > 0; sdo_line >>= 1) {
34 if (rate > 48000)
35 value = (channels * bits_per_sample *
36 (rate / 48000)) / sdo_line;
37 else
38 value = (channels * bits_per_sample) / sdo_line;
39
40 if (value >= 8)
41 break;
42 }
43
44
45 return sdo_line >> 1;
46}
47EXPORT_SYMBOL_GPL(snd_hdac_get_stream_stripe_ctl);
48
49
50
51
52
53
54
55
56
57
58
59void snd_hdac_stream_init(struct hdac_bus *bus, struct hdac_stream *azx_dev,
60 int idx, int direction, int tag)
61{
62 azx_dev->bus = bus;
63
64 azx_dev->sd_addr = bus->remap_addr + (0x20 * idx + 0x80);
65
66 azx_dev->sd_int_sta_mask = 1 << idx;
67 azx_dev->index = idx;
68 azx_dev->direction = direction;
69 azx_dev->stream_tag = tag;
70 snd_hdac_dsp_lock_init(azx_dev);
71 list_add_tail(&azx_dev->list, &bus->stream_list);
72}
73EXPORT_SYMBOL_GPL(snd_hdac_stream_init);
74
75
76
77
78
79
80
81
82void snd_hdac_stream_start(struct hdac_stream *azx_dev, bool fresh_start)
83{
84 struct hdac_bus *bus = azx_dev->bus;
85 int stripe_ctl;
86
87 trace_snd_hdac_stream_start(bus, azx_dev);
88
89 azx_dev->start_wallclk = snd_hdac_chip_readl(bus, WALLCLK);
90 if (!fresh_start)
91 azx_dev->start_wallclk -= azx_dev->period_wallclk;
92
93
94 snd_hdac_chip_updatel(bus, INTCTL,
95 1 << azx_dev->index,
96 1 << azx_dev->index);
97
98 if (azx_dev->substream)
99 stripe_ctl = snd_hdac_get_stream_stripe_ctl(bus, azx_dev->substream);
100 else
101 stripe_ctl = 0;
102 snd_hdac_stream_updateb(azx_dev, SD_CTL_3B, SD_CTL_STRIPE_MASK,
103 stripe_ctl);
104
105 snd_hdac_stream_updateb(azx_dev, SD_CTL,
106 0, SD_CTL_DMA_START | SD_INT_MASK);
107 azx_dev->running = true;
108}
109EXPORT_SYMBOL_GPL(snd_hdac_stream_start);
110
111
112
113
114
115void snd_hdac_stream_clear(struct hdac_stream *azx_dev)
116{
117 snd_hdac_stream_updateb(azx_dev, SD_CTL,
118 SD_CTL_DMA_START | SD_INT_MASK, 0);
119 snd_hdac_stream_writeb(azx_dev, SD_STS, SD_INT_MASK);
120 snd_hdac_stream_updateb(azx_dev, SD_CTL_3B, SD_CTL_STRIPE_MASK, 0);
121 azx_dev->running = false;
122}
123EXPORT_SYMBOL_GPL(snd_hdac_stream_clear);
124
125
126
127
128
129
130
131void snd_hdac_stream_stop(struct hdac_stream *azx_dev)
132{
133 trace_snd_hdac_stream_stop(azx_dev->bus, azx_dev);
134
135 snd_hdac_stream_clear(azx_dev);
136
137 snd_hdac_chip_updatel(azx_dev->bus, INTCTL, 1 << azx_dev->index, 0);
138}
139EXPORT_SYMBOL_GPL(snd_hdac_stream_stop);
140
141
142
143
144
145void snd_hdac_stream_reset(struct hdac_stream *azx_dev)
146{
147 unsigned char val;
148 int timeout;
149
150 snd_hdac_stream_clear(azx_dev);
151
152 snd_hdac_stream_updateb(azx_dev, SD_CTL, 0, SD_CTL_STREAM_RESET);
153 udelay(3);
154 timeout = 300;
155 do {
156 val = snd_hdac_stream_readb(azx_dev, SD_CTL) &
157 SD_CTL_STREAM_RESET;
158 if (val)
159 break;
160 } while (--timeout);
161 val &= ~SD_CTL_STREAM_RESET;
162 snd_hdac_stream_writeb(azx_dev, SD_CTL, val);
163 udelay(3);
164
165 timeout = 300;
166
167 do {
168 val = snd_hdac_stream_readb(azx_dev, SD_CTL) &
169 SD_CTL_STREAM_RESET;
170 if (!val)
171 break;
172 } while (--timeout);
173
174
175 if (azx_dev->posbuf)
176 *azx_dev->posbuf = 0;
177}
178EXPORT_SYMBOL_GPL(snd_hdac_stream_reset);
179
180
181
182
183
184int snd_hdac_stream_setup(struct hdac_stream *azx_dev)
185{
186 struct hdac_bus *bus = azx_dev->bus;
187 struct snd_pcm_runtime *runtime;
188 unsigned int val;
189
190 if (azx_dev->substream)
191 runtime = azx_dev->substream->runtime;
192 else
193 runtime = NULL;
194
195 snd_hdac_stream_clear(azx_dev);
196
197 val = snd_hdac_stream_readl(azx_dev, SD_CTL);
198 val = (val & ~SD_CTL_STREAM_TAG_MASK) |
199 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT);
200 if (!bus->snoop)
201 val |= SD_CTL_TRAFFIC_PRIO;
202 snd_hdac_stream_writel(azx_dev, SD_CTL, val);
203
204
205 snd_hdac_stream_writel(azx_dev, SD_CBL, azx_dev->bufsize);
206
207
208
209 snd_hdac_stream_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
210
211
212 snd_hdac_stream_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
213
214
215
216 snd_hdac_stream_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
217
218 snd_hdac_stream_writel(azx_dev, SD_BDLPU,
219 upper_32_bits(azx_dev->bdl.addr));
220
221
222 if (bus->use_posbuf && bus->posbuf.addr) {
223 if (!(snd_hdac_chip_readl(bus, DPLBASE) & AZX_DPLBASE_ENABLE))
224 snd_hdac_chip_writel(bus, DPLBASE,
225 (u32)bus->posbuf.addr | AZX_DPLBASE_ENABLE);
226 }
227
228
229 snd_hdac_stream_updatel(azx_dev, SD_CTL, 0, SD_INT_MASK);
230
231 if (azx_dev->direction == SNDRV_PCM_STREAM_PLAYBACK)
232 azx_dev->fifo_size =
233 snd_hdac_stream_readw(azx_dev, SD_FIFOSIZE) + 1;
234 else
235 azx_dev->fifo_size = 0;
236
237
238
239
240
241 if (runtime && runtime->period_size > 64)
242 azx_dev->delay_negative_threshold =
243 -frames_to_bytes(runtime, 64);
244 else
245 azx_dev->delay_negative_threshold = 0;
246
247
248 if (runtime)
249 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
250 runtime->rate) * 1000);
251
252 return 0;
253}
254EXPORT_SYMBOL_GPL(snd_hdac_stream_setup);
255
256
257
258
259
260void snd_hdac_stream_cleanup(struct hdac_stream *azx_dev)
261{
262 snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
263 snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
264 snd_hdac_stream_writel(azx_dev, SD_CTL, 0);
265 azx_dev->bufsize = 0;
266 azx_dev->period_bytes = 0;
267 azx_dev->format_val = 0;
268}
269EXPORT_SYMBOL_GPL(snd_hdac_stream_cleanup);
270
271
272
273
274
275
276
277
278
279
280
281
282struct hdac_stream *snd_hdac_stream_assign(struct hdac_bus *bus,
283 struct snd_pcm_substream *substream)
284{
285 struct hdac_stream *azx_dev;
286 struct hdac_stream *res = NULL;
287
288
289 int key = (substream->pcm->device << 16) | (substream->number << 2) |
290 (substream->stream + 1);
291
292 list_for_each_entry(azx_dev, &bus->stream_list, list) {
293 if (azx_dev->direction != substream->stream)
294 continue;
295 if (azx_dev->opened)
296 continue;
297 if (azx_dev->assigned_key == key) {
298 res = azx_dev;
299 break;
300 }
301 if (!res || bus->reverse_assign)
302 res = azx_dev;
303 }
304 if (res) {
305 spin_lock_irq(&bus->reg_lock);
306 res->opened = 1;
307 res->running = 0;
308 res->assigned_key = key;
309 res->substream = substream;
310 spin_unlock_irq(&bus->reg_lock);
311 }
312 return res;
313}
314EXPORT_SYMBOL_GPL(snd_hdac_stream_assign);
315
316
317
318
319
320
321
322void snd_hdac_stream_release(struct hdac_stream *azx_dev)
323{
324 struct hdac_bus *bus = azx_dev->bus;
325
326 spin_lock_irq(&bus->reg_lock);
327 azx_dev->opened = 0;
328 azx_dev->running = 0;
329 azx_dev->substream = NULL;
330 spin_unlock_irq(&bus->reg_lock);
331}
332EXPORT_SYMBOL_GPL(snd_hdac_stream_release);
333
334
335
336
337
338
339
340
341
342struct hdac_stream *snd_hdac_get_stream(struct hdac_bus *bus,
343 int dir, int stream_tag)
344{
345 struct hdac_stream *s;
346
347 list_for_each_entry(s, &bus->stream_list, list) {
348 if (s->direction == dir && s->stream_tag == stream_tag)
349 return s;
350 }
351
352 return NULL;
353}
354EXPORT_SYMBOL_GPL(snd_hdac_get_stream);
355
356
357
358
359static int setup_bdle(struct hdac_bus *bus,
360 struct snd_dma_buffer *dmab,
361 struct hdac_stream *azx_dev, __le32 **bdlp,
362 int ofs, int size, int with_ioc)
363{
364 __le32 *bdl = *bdlp;
365
366 while (size > 0) {
367 dma_addr_t addr;
368 int chunk;
369
370 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
371 return -EINVAL;
372
373 addr = snd_sgbuf_get_addr(dmab, ofs);
374
375 bdl[0] = cpu_to_le32((u32)addr);
376 bdl[1] = cpu_to_le32(upper_32_bits(addr));
377
378 chunk = snd_sgbuf_get_chunk_size(dmab, ofs, size);
379
380 if (bus->align_bdle_4k) {
381 u32 remain = 0x1000 - (ofs & 0xfff);
382
383 if (chunk > remain)
384 chunk = remain;
385 }
386 bdl[2] = cpu_to_le32(chunk);
387
388
389
390 size -= chunk;
391 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
392 bdl += 4;
393 azx_dev->frags++;
394 ofs += chunk;
395 }
396 *bdlp = bdl;
397 return ofs;
398}
399
400
401
402
403
404
405
406
407int snd_hdac_stream_setup_periods(struct hdac_stream *azx_dev)
408{
409 struct hdac_bus *bus = azx_dev->bus;
410 struct snd_pcm_substream *substream = azx_dev->substream;
411 struct snd_pcm_runtime *runtime = substream->runtime;
412 __le32 *bdl;
413 int i, ofs, periods, period_bytes;
414 int pos_adj, pos_align;
415
416
417 snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
418 snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
419
420 period_bytes = azx_dev->period_bytes;
421 periods = azx_dev->bufsize / period_bytes;
422
423
424 bdl = (__le32 *)azx_dev->bdl.area;
425 ofs = 0;
426 azx_dev->frags = 0;
427
428 pos_adj = bus->bdl_pos_adj;
429 if (!azx_dev->no_period_wakeup && pos_adj > 0) {
430 pos_align = pos_adj;
431 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
432 if (!pos_adj)
433 pos_adj = pos_align;
434 else
435 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
436 pos_align;
437 pos_adj = frames_to_bytes(runtime, pos_adj);
438 if (pos_adj >= period_bytes) {
439 dev_warn(bus->dev, "Too big adjustment %d\n",
440 pos_adj);
441 pos_adj = 0;
442 } else {
443 ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream),
444 azx_dev,
445 &bdl, ofs, pos_adj, true);
446 if (ofs < 0)
447 goto error;
448 }
449 } else
450 pos_adj = 0;
451
452 for (i = 0; i < periods; i++) {
453 if (i == periods - 1 && pos_adj)
454 ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream),
455 azx_dev, &bdl, ofs,
456 period_bytes - pos_adj, 0);
457 else
458 ofs = setup_bdle(bus, snd_pcm_get_dma_buf(substream),
459 azx_dev, &bdl, ofs,
460 period_bytes,
461 !azx_dev->no_period_wakeup);
462 if (ofs < 0)
463 goto error;
464 }
465 return 0;
466
467 error:
468 dev_err(bus->dev, "Too many BDL entries: buffer=%d, period=%d\n",
469 azx_dev->bufsize, period_bytes);
470 return -EINVAL;
471}
472EXPORT_SYMBOL_GPL(snd_hdac_stream_setup_periods);
473
474
475
476
477
478
479
480
481
482int snd_hdac_stream_set_params(struct hdac_stream *azx_dev,
483 unsigned int format_val)
484{
485
486 unsigned int bufsize, period_bytes;
487 struct snd_pcm_substream *substream = azx_dev->substream;
488 struct snd_pcm_runtime *runtime;
489 int err;
490
491 if (!substream)
492 return -EINVAL;
493 runtime = substream->runtime;
494 bufsize = snd_pcm_lib_buffer_bytes(substream);
495 period_bytes = snd_pcm_lib_period_bytes(substream);
496
497 if (bufsize != azx_dev->bufsize ||
498 period_bytes != azx_dev->period_bytes ||
499 format_val != azx_dev->format_val ||
500 runtime->no_period_wakeup != azx_dev->no_period_wakeup) {
501 azx_dev->bufsize = bufsize;
502 azx_dev->period_bytes = period_bytes;
503 azx_dev->format_val = format_val;
504 azx_dev->no_period_wakeup = runtime->no_period_wakeup;
505 err = snd_hdac_stream_setup_periods(azx_dev);
506 if (err < 0)
507 return err;
508 }
509 return 0;
510}
511EXPORT_SYMBOL_GPL(snd_hdac_stream_set_params);
512
513static u64 azx_cc_read(const struct cyclecounter *cc)
514{
515 struct hdac_stream *azx_dev = container_of(cc, struct hdac_stream, cc);
516
517 return snd_hdac_chip_readl(azx_dev->bus, WALLCLK);
518}
519
520static void azx_timecounter_init(struct hdac_stream *azx_dev,
521 bool force, u64 last)
522{
523 struct timecounter *tc = &azx_dev->tc;
524 struct cyclecounter *cc = &azx_dev->cc;
525 u64 nsec;
526
527 cc->read = azx_cc_read;
528 cc->mask = CLOCKSOURCE_MASK(32);
529
530
531
532
533
534
535
536
537
538
539
540 cc->mult = 125;
541 cc->shift = 0;
542
543 nsec = 0;
544 timecounter_init(tc, cc, nsec);
545 if (force) {
546
547
548
549
550 tc->cycle_last = last;
551 }
552}
553
554
555
556
557
558
559
560
561
562
563
564void snd_hdac_stream_timecounter_init(struct hdac_stream *azx_dev,
565 unsigned int streams)
566{
567 struct hdac_bus *bus = azx_dev->bus;
568 struct snd_pcm_runtime *runtime = azx_dev->substream->runtime;
569 struct hdac_stream *s;
570 bool inited = false;
571 u64 cycle_last = 0;
572 int i = 0;
573
574 list_for_each_entry(s, &bus->stream_list, list) {
575 if (streams & (1 << i)) {
576 azx_timecounter_init(s, inited, cycle_last);
577 if (!inited) {
578 inited = true;
579 cycle_last = s->tc.cycle_last;
580 }
581 }
582 i++;
583 }
584
585 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
586 runtime->trigger_tstamp_latched = true;
587}
588EXPORT_SYMBOL_GPL(snd_hdac_stream_timecounter_init);
589
590
591
592
593
594
595void snd_hdac_stream_sync_trigger(struct hdac_stream *azx_dev, bool set,
596 unsigned int streams, unsigned int reg)
597{
598 struct hdac_bus *bus = azx_dev->bus;
599 unsigned int val;
600
601 if (!reg)
602 reg = AZX_REG_SSYNC;
603 val = _snd_hdac_chip_readl(bus, reg);
604 if (set)
605 val |= streams;
606 else
607 val &= ~streams;
608 _snd_hdac_chip_writel(bus, reg, val);
609}
610EXPORT_SYMBOL_GPL(snd_hdac_stream_sync_trigger);
611
612
613
614
615
616
617
618
619
620
621void snd_hdac_stream_sync(struct hdac_stream *azx_dev, bool start,
622 unsigned int streams)
623{
624 struct hdac_bus *bus = azx_dev->bus;
625 int i, nwait, timeout;
626 struct hdac_stream *s;
627
628 for (timeout = 5000; timeout; timeout--) {
629 nwait = 0;
630 i = 0;
631 list_for_each_entry(s, &bus->stream_list, list) {
632 if (streams & (1 << i)) {
633 if (start) {
634
635 if (!(snd_hdac_stream_readb(s, SD_STS) &
636 SD_STS_FIFO_READY))
637 nwait++;
638 } else {
639
640 if (snd_hdac_stream_readb(s, SD_CTL) &
641 SD_CTL_DMA_START)
642 nwait++;
643 }
644 }
645 i++;
646 }
647 if (!nwait)
648 break;
649 cpu_relax();
650 }
651}
652EXPORT_SYMBOL_GPL(snd_hdac_stream_sync);
653
654#ifdef CONFIG_SND_HDA_DSP_LOADER
655
656
657
658
659
660
661
662
663
664
665int snd_hdac_dsp_prepare(struct hdac_stream *azx_dev, unsigned int format,
666 unsigned int byte_size, struct snd_dma_buffer *bufp)
667{
668 struct hdac_bus *bus = azx_dev->bus;
669 __le32 *bdl;
670 int err;
671
672 snd_hdac_dsp_lock(azx_dev);
673 spin_lock_irq(&bus->reg_lock);
674 if (azx_dev->running || azx_dev->locked) {
675 spin_unlock_irq(&bus->reg_lock);
676 err = -EBUSY;
677 goto unlock;
678 }
679 azx_dev->locked = true;
680 spin_unlock_irq(&bus->reg_lock);
681
682 err = bus->io_ops->dma_alloc_pages(bus, SNDRV_DMA_TYPE_DEV_SG,
683 byte_size, bufp);
684 if (err < 0)
685 goto err_alloc;
686
687 azx_dev->substream = NULL;
688 azx_dev->bufsize = byte_size;
689 azx_dev->period_bytes = byte_size;
690 azx_dev->format_val = format;
691
692 snd_hdac_stream_reset(azx_dev);
693
694
695 snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
696 snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
697
698 azx_dev->frags = 0;
699 bdl = (__le32 *)azx_dev->bdl.area;
700 err = setup_bdle(bus, bufp, azx_dev, &bdl, 0, byte_size, 0);
701 if (err < 0)
702 goto error;
703
704 snd_hdac_stream_setup(azx_dev);
705 snd_hdac_dsp_unlock(azx_dev);
706 return azx_dev->stream_tag;
707
708 error:
709 bus->io_ops->dma_free_pages(bus, bufp);
710 err_alloc:
711 spin_lock_irq(&bus->reg_lock);
712 azx_dev->locked = false;
713 spin_unlock_irq(&bus->reg_lock);
714 unlock:
715 snd_hdac_dsp_unlock(azx_dev);
716 return err;
717}
718EXPORT_SYMBOL_GPL(snd_hdac_dsp_prepare);
719
720
721
722
723
724
725void snd_hdac_dsp_trigger(struct hdac_stream *azx_dev, bool start)
726{
727 if (start)
728 snd_hdac_stream_start(azx_dev, true);
729 else
730 snd_hdac_stream_stop(azx_dev);
731}
732EXPORT_SYMBOL_GPL(snd_hdac_dsp_trigger);
733
734
735
736
737
738
739void snd_hdac_dsp_cleanup(struct hdac_stream *azx_dev,
740 struct snd_dma_buffer *dmab)
741{
742 struct hdac_bus *bus = azx_dev->bus;
743
744 if (!dmab->area || !azx_dev->locked)
745 return;
746
747 snd_hdac_dsp_lock(azx_dev);
748
749 snd_hdac_stream_writel(azx_dev, SD_BDLPL, 0);
750 snd_hdac_stream_writel(azx_dev, SD_BDLPU, 0);
751 snd_hdac_stream_writel(azx_dev, SD_CTL, 0);
752 azx_dev->bufsize = 0;
753 azx_dev->period_bytes = 0;
754 azx_dev->format_val = 0;
755
756 bus->io_ops->dma_free_pages(bus, dmab);
757 dmab->area = NULL;
758
759 spin_lock_irq(&bus->reg_lock);
760 azx_dev->locked = false;
761 spin_unlock_irq(&bus->reg_lock);
762 snd_hdac_dsp_unlock(azx_dev);
763}
764EXPORT_SYMBOL_GPL(snd_hdac_dsp_cleanup);
765#endif
766