2 * Digital Audio (PCM) abstract layer
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4 * Abramo Bagnara <abramo@alsa-project.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/slab.h>
24 #include <linux/time.h>
25 #include <sound/core.h>
26 #include <sound/control.h>
27 #include <sound/info.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/timer.h>
33 * fill ring buffer with silence
34 * runtime->silence_start: starting pointer to silence area
35 * runtime->silence_filled: size filled with silence
36 * runtime->silence_threshold: threshold from application
37 * runtime->silence_size: maximal size from application
39 * when runtime->silence_size >= runtime->boundary - fill processed area with silence immediately
41 void snd_pcm_playback_silence(struct snd_pcm_substream *substream, snd_pcm_uframes_t new_hw_ptr)
43 struct snd_pcm_runtime *runtime = substream->runtime;
44 snd_pcm_uframes_t frames, ofs, transfer;
46 if (runtime->silence_size < runtime->boundary) {
47 snd_pcm_sframes_t noise_dist, n;
48 if (runtime->silence_start != runtime->control->appl_ptr) {
49 n = runtime->control->appl_ptr - runtime->silence_start;
51 n += runtime->boundary;
52 if ((snd_pcm_uframes_t)n < runtime->silence_filled)
53 runtime->silence_filled -= n;
55 runtime->silence_filled = 0;
56 runtime->silence_start = runtime->control->appl_ptr;
58 if (runtime->silence_filled >= runtime->buffer_size)
60 noise_dist = snd_pcm_playback_hw_avail(runtime) + runtime->silence_filled;
61 if (noise_dist >= (snd_pcm_sframes_t) runtime->silence_threshold)
63 frames = runtime->silence_threshold - noise_dist;
64 if (frames > runtime->silence_size)
65 frames = runtime->silence_size;
67 if (new_hw_ptr == ULONG_MAX) { /* initialization */
68 snd_pcm_sframes_t avail = snd_pcm_playback_hw_avail(runtime);
69 runtime->silence_filled = avail > 0 ? avail : 0;
70 runtime->silence_start = (runtime->status->hw_ptr +
71 runtime->silence_filled) %
74 ofs = runtime->status->hw_ptr;
75 frames = new_hw_ptr - ofs;
76 if ((snd_pcm_sframes_t)frames < 0)
77 frames += runtime->boundary;
78 runtime->silence_filled -= frames;
79 if ((snd_pcm_sframes_t)runtime->silence_filled < 0) {
80 runtime->silence_filled = 0;
81 runtime->silence_start = new_hw_ptr;
83 runtime->silence_start = ofs;
86 frames = runtime->buffer_size - runtime->silence_filled;
88 if (snd_BUG_ON(frames > runtime->buffer_size))
92 ofs = runtime->silence_start % runtime->buffer_size;
94 transfer = ofs + frames > runtime->buffer_size ? runtime->buffer_size - ofs : frames;
95 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
96 runtime->access == SNDRV_PCM_ACCESS_MMAP_INTERLEAVED) {
97 if (substream->ops->silence) {
99 err = substream->ops->silence(substream, -1, ofs, transfer);
102 char *hwbuf = runtime->dma_area + frames_to_bytes(runtime, ofs);
103 snd_pcm_format_set_silence(runtime->format, hwbuf, transfer * runtime->channels);
107 unsigned int channels = runtime->channels;
108 if (substream->ops->silence) {
109 for (c = 0; c < channels; ++c) {
111 err = substream->ops->silence(substream, c, ofs, transfer);
115 size_t dma_csize = runtime->dma_bytes / channels;
116 for (c = 0; c < channels; ++c) {
117 char *hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, ofs);
118 snd_pcm_format_set_silence(runtime->format, hwbuf, transfer);
122 runtime->silence_filled += transfer;
128 #ifdef CONFIG_SND_PCM_XRUN_DEBUG
129 #define xrun_debug(substream, mask) ((substream)->pstr->xrun_debug & (mask))
131 #define xrun_debug(substream, mask) 0
134 #define dump_stack_on_xrun(substream) do { \
135 if (xrun_debug(substream, 2)) \
139 static void xrun(struct snd_pcm_substream *substream)
141 struct snd_pcm_runtime *runtime = substream->runtime;
143 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE)
144 snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp);
145 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
146 if (xrun_debug(substream, 1)) {
147 snd_printd(KERN_DEBUG "XRUN: pcmC%dD%d%c\n",
148 substream->pcm->card->number,
149 substream->pcm->device,
150 substream->stream ? 'c' : 'p');
151 dump_stack_on_xrun(substream);
155 static snd_pcm_uframes_t
156 snd_pcm_update_hw_ptr_pos(struct snd_pcm_substream *substream,
157 struct snd_pcm_runtime *runtime)
159 snd_pcm_uframes_t pos;
161 pos = substream->ops->pointer(substream);
162 if (pos == SNDRV_PCM_POS_XRUN)
163 return pos; /* XRUN */
164 if (pos >= runtime->buffer_size) {
165 if (printk_ratelimit()) {
166 snd_printd(KERN_ERR "BUG: stream = %i, pos = 0x%lx, "
167 "buffer size = 0x%lx, period size = 0x%lx\n",
168 substream->stream, pos, runtime->buffer_size,
169 runtime->period_size);
173 pos -= pos % runtime->min_align;
177 static int snd_pcm_update_hw_ptr_post(struct snd_pcm_substream *substream,
178 struct snd_pcm_runtime *runtime)
180 snd_pcm_uframes_t avail;
182 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
183 avail = snd_pcm_playback_avail(runtime);
185 avail = snd_pcm_capture_avail(runtime);
186 if (avail > runtime->avail_max)
187 runtime->avail_max = avail;
188 if (avail >= runtime->stop_threshold) {
189 if (substream->runtime->status->state == SNDRV_PCM_STATE_DRAINING)
190 snd_pcm_drain_done(substream);
195 if (avail >= runtime->control->avail_min)
196 wake_up(&runtime->sleep);
200 #define hw_ptr_error(substream, fmt, args...) \
202 if (xrun_debug(substream, 1)) { \
203 if (printk_ratelimit()) { \
204 snd_printd("PCM: " fmt, ##args); \
206 dump_stack_on_xrun(substream); \
210 static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream)
212 struct snd_pcm_runtime *runtime = substream->runtime;
213 snd_pcm_uframes_t pos;
214 snd_pcm_uframes_t old_hw_ptr, new_hw_ptr, hw_ptr_interrupt, hw_base;
215 snd_pcm_sframes_t hdelta, delta;
216 unsigned long jdelta;
218 old_hw_ptr = runtime->status->hw_ptr;
219 pos = snd_pcm_update_hw_ptr_pos(substream, runtime);
220 if (pos == SNDRV_PCM_POS_XRUN) {
224 hw_base = runtime->hw_ptr_base;
225 new_hw_ptr = hw_base + pos;
226 hw_ptr_interrupt = runtime->hw_ptr_interrupt + runtime->period_size;
227 delta = new_hw_ptr - hw_ptr_interrupt;
228 if (hw_ptr_interrupt >= runtime->boundary) {
229 hw_ptr_interrupt -= runtime->boundary;
230 if (hw_base < runtime->boundary / 2)
231 /* hw_base was already lapped; recalc delta */
232 delta = new_hw_ptr - hw_ptr_interrupt;
235 delta += runtime->buffer_size;
237 hw_ptr_error(substream,
238 "Unexpected hw_pointer value "
239 "(stream=%i, pos=%ld, intr_ptr=%ld)\n",
240 substream->stream, (long)pos,
241 (long)hw_ptr_interrupt);
242 /* rebase to interrupt position */
243 hw_base = new_hw_ptr = hw_ptr_interrupt;
244 /* align hw_base to buffer_size */
245 hw_base -= hw_base % runtime->buffer_size;
248 hw_base += runtime->buffer_size;
249 if (hw_base >= runtime->boundary)
251 new_hw_ptr = hw_base + pos;
255 /* Do jiffies check only in xrun_debug mode */
256 if (!xrun_debug(substream, 4))
257 goto no_jiffies_check;
259 /* Skip the jiffies check for hardwares with BATCH flag.
260 * Such hardware usually just increases the position at each IRQ,
261 * thus it can't give any strange position.
263 if (runtime->hw.info & SNDRV_PCM_INFO_BATCH)
264 goto no_jiffies_check;
265 hdelta = new_hw_ptr - old_hw_ptr;
266 jdelta = jiffies - runtime->hw_ptr_jiffies;
267 if (((hdelta * HZ) / runtime->rate) > jdelta + HZ/100) {
269 (((runtime->period_size * HZ) / runtime->rate)
271 hw_ptr_error(substream,
272 "hw_ptr skipping! [Q] "
273 "(pos=%ld, delta=%ld, period=%ld, "
274 "jdelta=%lu/%lu/%lu)\n",
275 (long)pos, (long)hdelta,
276 (long)runtime->period_size, jdelta,
277 ((hdelta * HZ) / runtime->rate), delta);
278 hw_ptr_interrupt = runtime->hw_ptr_interrupt +
279 runtime->period_size * delta;
280 if (hw_ptr_interrupt >= runtime->boundary)
281 hw_ptr_interrupt -= runtime->boundary;
282 /* rebase to interrupt position */
283 hw_base = new_hw_ptr = hw_ptr_interrupt;
284 /* align hw_base to buffer_size */
285 hw_base -= hw_base % runtime->buffer_size;
289 if (delta > runtime->period_size + runtime->period_size / 2) {
290 hw_ptr_error(substream,
292 "(stream=%i, delta=%ld, intr_ptr=%ld)\n",
293 substream->stream, (long)delta,
294 (long)hw_ptr_interrupt);
295 /* rebase hw_ptr_interrupt */
297 new_hw_ptr - new_hw_ptr % runtime->period_size;
299 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
300 runtime->silence_size > 0)
301 snd_pcm_playback_silence(substream, new_hw_ptr);
303 if (runtime->status->hw_ptr == new_hw_ptr)
306 runtime->hw_ptr_base = hw_base;
307 runtime->status->hw_ptr = new_hw_ptr;
308 runtime->hw_ptr_jiffies = jiffies;
309 runtime->hw_ptr_interrupt = hw_ptr_interrupt;
310 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE)
311 snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp);
313 return snd_pcm_update_hw_ptr_post(substream, runtime);
316 /* CAUTION: call it with irq disabled */
317 int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
319 struct snd_pcm_runtime *runtime = substream->runtime;
320 snd_pcm_uframes_t pos;
321 snd_pcm_uframes_t old_hw_ptr, new_hw_ptr, hw_base;
322 snd_pcm_sframes_t delta;
323 unsigned long jdelta;
325 old_hw_ptr = runtime->status->hw_ptr;
326 pos = snd_pcm_update_hw_ptr_pos(substream, runtime);
327 if (pos == SNDRV_PCM_POS_XRUN) {
331 hw_base = runtime->hw_ptr_base;
332 new_hw_ptr = hw_base + pos;
334 delta = new_hw_ptr - old_hw_ptr;
335 jdelta = jiffies - runtime->hw_ptr_jiffies;
337 delta += runtime->buffer_size;
339 hw_ptr_error(substream,
340 "Unexpected hw_pointer value [2] "
341 "(stream=%i, pos=%ld, old_ptr=%ld, jdelta=%li)\n",
342 substream->stream, (long)pos,
343 (long)old_hw_ptr, jdelta);
346 hw_base += runtime->buffer_size;
347 if (hw_base >= runtime->boundary)
349 new_hw_ptr = hw_base + pos;
351 /* Do jiffies check only in xrun_debug mode */
352 if (xrun_debug(substream, 4) &&
353 ((delta * HZ) / runtime->rate) > jdelta + HZ/100) {
354 hw_ptr_error(substream,
356 "(pos=%ld, delta=%ld, period=%ld, jdelta=%lu/%lu)\n",
357 (long)pos, (long)delta,
358 (long)runtime->period_size, jdelta,
359 ((delta * HZ) / runtime->rate));
362 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
363 runtime->silence_size > 0)
364 snd_pcm_playback_silence(substream, new_hw_ptr);
366 if (runtime->status->hw_ptr != new_hw_ptr)
369 runtime->hw_ptr_base = hw_base;
370 runtime->status->hw_ptr = new_hw_ptr;
371 runtime->hw_ptr_jiffies = jiffies;
372 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE)
373 snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp);
375 return snd_pcm_update_hw_ptr_post(substream, runtime);
379 * snd_pcm_set_ops - set the PCM operators
380 * @pcm: the pcm instance
381 * @direction: stream direction, SNDRV_PCM_STREAM_XXX
382 * @ops: the operator table
384 * Sets the given PCM operators to the pcm instance.
386 void snd_pcm_set_ops(struct snd_pcm *pcm, int direction, struct snd_pcm_ops *ops)
388 struct snd_pcm_str *stream = &pcm->streams[direction];
389 struct snd_pcm_substream *substream;
391 for (substream = stream->substream; substream != NULL; substream = substream->next)
392 substream->ops = ops;
395 EXPORT_SYMBOL(snd_pcm_set_ops);
398 * snd_pcm_sync - set the PCM sync id
399 * @substream: the pcm substream
401 * Sets the PCM sync identifier for the card.
403 void snd_pcm_set_sync(struct snd_pcm_substream *substream)
405 struct snd_pcm_runtime *runtime = substream->runtime;
407 runtime->sync.id32[0] = substream->pcm->card->number;
408 runtime->sync.id32[1] = -1;
409 runtime->sync.id32[2] = -1;
410 runtime->sync.id32[3] = -1;
413 EXPORT_SYMBOL(snd_pcm_set_sync);
416 * Standard ioctl routine
419 static inline unsigned int div32(unsigned int a, unsigned int b,
430 static inline unsigned int div_down(unsigned int a, unsigned int b)
437 static inline unsigned int div_up(unsigned int a, unsigned int b)
449 static inline unsigned int mul(unsigned int a, unsigned int b)
453 if (div_down(UINT_MAX, a) < b)
458 static inline unsigned int muldiv32(unsigned int a, unsigned int b,
459 unsigned int c, unsigned int *r)
461 u_int64_t n = (u_int64_t) a * b;
476 * snd_interval_refine - refine the interval value of configurator
477 * @i: the interval value to refine
478 * @v: the interval value to refer to
480 * Refines the interval value with the reference value.
481 * The interval is changed to the range satisfying both intervals.
482 * The interval status (min, max, integer, etc.) are evaluated.
484 * Returns non-zero if the value is changed, zero if not changed.
486 int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v)
489 if (snd_BUG_ON(snd_interval_empty(i)))
491 if (i->min < v->min) {
493 i->openmin = v->openmin;
495 } else if (i->min == v->min && !i->openmin && v->openmin) {
499 if (i->max > v->max) {
501 i->openmax = v->openmax;
503 } else if (i->max == v->max && !i->openmax && v->openmax) {
507 if (!i->integer && v->integer) {
520 } else if (!i->openmin && !i->openmax && i->min == i->max)
522 if (snd_interval_checkempty(i)) {
523 snd_interval_none(i);
529 EXPORT_SYMBOL(snd_interval_refine);
531 static int snd_interval_refine_first(struct snd_interval *i)
533 if (snd_BUG_ON(snd_interval_empty(i)))
535 if (snd_interval_single(i))
538 i->openmax = i->openmin;
544 static int snd_interval_refine_last(struct snd_interval *i)
546 if (snd_BUG_ON(snd_interval_empty(i)))
548 if (snd_interval_single(i))
551 i->openmin = i->openmax;
557 void snd_interval_mul(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
559 if (a->empty || b->empty) {
560 snd_interval_none(c);
564 c->min = mul(a->min, b->min);
565 c->openmin = (a->openmin || b->openmin);
566 c->max = mul(a->max, b->max);
567 c->openmax = (a->openmax || b->openmax);
568 c->integer = (a->integer && b->integer);
572 * snd_interval_div - refine the interval value with division
579 * Returns non-zero if the value is changed, zero if not changed.
581 void snd_interval_div(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
584 if (a->empty || b->empty) {
585 snd_interval_none(c);
589 c->min = div32(a->min, b->max, &r);
590 c->openmin = (r || a->openmin || b->openmax);
592 c->max = div32(a->max, b->min, &r);
597 c->openmax = (a->openmax || b->openmin);
606 * snd_interval_muldivk - refine the interval value
609 * @k: divisor (as integer)
614 * Returns non-zero if the value is changed, zero if not changed.
616 void snd_interval_muldivk(const struct snd_interval *a, const struct snd_interval *b,
617 unsigned int k, struct snd_interval *c)
620 if (a->empty || b->empty) {
621 snd_interval_none(c);
625 c->min = muldiv32(a->min, b->min, k, &r);
626 c->openmin = (r || a->openmin || b->openmin);
627 c->max = muldiv32(a->max, b->max, k, &r);
632 c->openmax = (a->openmax || b->openmax);
637 * snd_interval_mulkdiv - refine the interval value
639 * @k: dividend 2 (as integer)
645 * Returns non-zero if the value is changed, zero if not changed.
647 void snd_interval_mulkdiv(const struct snd_interval *a, unsigned int k,
648 const struct snd_interval *b, struct snd_interval *c)
651 if (a->empty || b->empty) {
652 snd_interval_none(c);
656 c->min = muldiv32(a->min, k, b->max, &r);
657 c->openmin = (r || a->openmin || b->openmax);
659 c->max = muldiv32(a->max, k, b->min, &r);
664 c->openmax = (a->openmax || b->openmin);
676 * snd_interval_ratnum - refine the interval value
677 * @i: interval to refine
678 * @rats_count: number of ratnum_t
679 * @rats: ratnum_t array
680 * @nump: pointer to store the resultant numerator
681 * @denp: pointer to store the resultant denominator
683 * Returns non-zero if the value is changed, zero if not changed.
685 int snd_interval_ratnum(struct snd_interval *i,
686 unsigned int rats_count, struct snd_ratnum *rats,
687 unsigned int *nump, unsigned int *denp)
689 unsigned int best_num, best_diff, best_den;
691 struct snd_interval t;
694 best_num = best_den = best_diff = 0;
695 for (k = 0; k < rats_count; ++k) {
696 unsigned int num = rats[k].num;
698 unsigned int q = i->min;
702 den = div_down(num, q);
703 if (den < rats[k].den_min)
705 if (den > rats[k].den_max)
706 den = rats[k].den_max;
709 r = (den - rats[k].den_min) % rats[k].den_step;
713 diff = num - q * den;
715 diff * best_den < best_diff * den) {
725 t.min = div_down(best_num, best_den);
726 t.openmin = !!(best_num % best_den);
728 best_num = best_den = best_diff = 0;
729 for (k = 0; k < rats_count; ++k) {
730 unsigned int num = rats[k].num;
732 unsigned int q = i->max;
738 den = div_up(num, q);
739 if (den > rats[k].den_max)
741 if (den < rats[k].den_min)
742 den = rats[k].den_min;
745 r = (den - rats[k].den_min) % rats[k].den_step;
747 den += rats[k].den_step - r;
749 diff = q * den - num;
751 diff * best_den < best_diff * den) {
761 t.max = div_up(best_num, best_den);
762 t.openmax = !!(best_num % best_den);
764 err = snd_interval_refine(i, &t);
768 if (snd_interval_single(i)) {
777 EXPORT_SYMBOL(snd_interval_ratnum);
780 * snd_interval_ratden - refine the interval value
781 * @i: interval to refine
782 * @rats_count: number of struct ratden
783 * @rats: struct ratden array
784 * @nump: pointer to store the resultant numerator
785 * @denp: pointer to store the resultant denominator
787 * Returns non-zero if the value is changed, zero if not changed.
789 static int snd_interval_ratden(struct snd_interval *i,
790 unsigned int rats_count, struct snd_ratden *rats,
791 unsigned int *nump, unsigned int *denp)
793 unsigned int best_num, best_diff, best_den;
795 struct snd_interval t;
798 best_num = best_den = best_diff = 0;
799 for (k = 0; k < rats_count; ++k) {
801 unsigned int den = rats[k].den;
802 unsigned int q = i->min;
805 if (num > rats[k].num_max)
807 if (num < rats[k].num_min)
808 num = rats[k].num_max;
811 r = (num - rats[k].num_min) % rats[k].num_step;
813 num += rats[k].num_step - r;
815 diff = num - q * den;
817 diff * best_den < best_diff * den) {
827 t.min = div_down(best_num, best_den);
828 t.openmin = !!(best_num % best_den);
830 best_num = best_den = best_diff = 0;
831 for (k = 0; k < rats_count; ++k) {
833 unsigned int den = rats[k].den;
834 unsigned int q = i->max;
837 if (num < rats[k].num_min)
839 if (num > rats[k].num_max)
840 num = rats[k].num_max;
843 r = (num - rats[k].num_min) % rats[k].num_step;
847 diff = q * den - num;
849 diff * best_den < best_diff * den) {
859 t.max = div_up(best_num, best_den);
860 t.openmax = !!(best_num % best_den);
862 err = snd_interval_refine(i, &t);
866 if (snd_interval_single(i)) {
876 * snd_interval_list - refine the interval value from the list
877 * @i: the interval value to refine
878 * @count: the number of elements in the list
879 * @list: the value list
880 * @mask: the bit-mask to evaluate
882 * Refines the interval value from the list.
883 * When mask is non-zero, only the elements corresponding to bit 1 are
886 * Returns non-zero if the value is changed, zero if not changed.
888 int snd_interval_list(struct snd_interval *i, unsigned int count, unsigned int *list, unsigned int mask)
897 for (k = 0; k < count; k++) {
898 if (mask && !(mask & (1 << k)))
900 if (i->min == list[k] && !i->openmin)
902 if (i->min < list[k]) {
912 for (k = count; k-- > 0;) {
913 if (mask && !(mask & (1 << k)))
915 if (i->max == list[k] && !i->openmax)
917 if (i->max > list[k]) {
927 if (snd_interval_checkempty(i)) {
934 EXPORT_SYMBOL(snd_interval_list);
936 static int snd_interval_step(struct snd_interval *i, unsigned int min, unsigned int step)
940 n = (i->min - min) % step;
941 if (n != 0 || i->openmin) {
945 n = (i->max - min) % step;
946 if (n != 0 || i->openmax) {
950 if (snd_interval_checkempty(i)) {
957 /* Info constraints helpers */
960 * snd_pcm_hw_rule_add - add the hw-constraint rule
961 * @runtime: the pcm runtime instance
962 * @cond: condition bits
963 * @var: the variable to evaluate
964 * @func: the evaluation function
965 * @private: the private data pointer passed to function
966 * @dep: the dependent variables
968 * Returns zero if successful, or a negative error code on failure.
970 int snd_pcm_hw_rule_add(struct snd_pcm_runtime *runtime, unsigned int cond,
972 snd_pcm_hw_rule_func_t func, void *private,
975 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
976 struct snd_pcm_hw_rule *c;
980 if (constrs->rules_num >= constrs->rules_all) {
981 struct snd_pcm_hw_rule *new;
982 unsigned int new_rules = constrs->rules_all + 16;
983 new = kcalloc(new_rules, sizeof(*c), GFP_KERNEL);
986 if (constrs->rules) {
987 memcpy(new, constrs->rules,
988 constrs->rules_num * sizeof(*c));
989 kfree(constrs->rules);
991 constrs->rules = new;
992 constrs->rules_all = new_rules;
994 c = &constrs->rules[constrs->rules_num];
998 c->private = private;
1001 if (snd_BUG_ON(k >= ARRAY_SIZE(c->deps)))
1006 dep = va_arg(args, int);
1008 constrs->rules_num++;
1013 EXPORT_SYMBOL(snd_pcm_hw_rule_add);
1016 * snd_pcm_hw_constraint_mask - apply the given bitmap mask constraint
1017 * @runtime: PCM runtime instance
1018 * @var: hw_params variable to apply the mask
1019 * @mask: the bitmap mask
1021 * Apply the constraint of the given bitmap mask to a 32-bit mask parameter.
1023 int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
1026 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1027 struct snd_mask *maskp = constrs_mask(constrs, var);
1028 *maskp->bits &= mask;
1029 memset(maskp->bits + 1, 0, (SNDRV_MASK_MAX-32) / 8); /* clear rest */
1030 if (*maskp->bits == 0)
1036 * snd_pcm_hw_constraint_mask64 - apply the given bitmap mask constraint
1037 * @runtime: PCM runtime instance
1038 * @var: hw_params variable to apply the mask
1039 * @mask: the 64bit bitmap mask
1041 * Apply the constraint of the given bitmap mask to a 64-bit mask parameter.
1043 int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
1046 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1047 struct snd_mask *maskp = constrs_mask(constrs, var);
1048 maskp->bits[0] &= (u_int32_t)mask;
1049 maskp->bits[1] &= (u_int32_t)(mask >> 32);
1050 memset(maskp->bits + 2, 0, (SNDRV_MASK_MAX-64) / 8); /* clear rest */
1051 if (! maskp->bits[0] && ! maskp->bits[1])
1057 * snd_pcm_hw_constraint_integer - apply an integer constraint to an interval
1058 * @runtime: PCM runtime instance
1059 * @var: hw_params variable to apply the integer constraint
1061 * Apply the constraint of integer to an interval parameter.
1063 int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var)
1065 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1066 return snd_interval_setinteger(constrs_interval(constrs, var));
1069 EXPORT_SYMBOL(snd_pcm_hw_constraint_integer);
1072 * snd_pcm_hw_constraint_minmax - apply a min/max range constraint to an interval
1073 * @runtime: PCM runtime instance
1074 * @var: hw_params variable to apply the range
1075 * @min: the minimal value
1076 * @max: the maximal value
1078 * Apply the min/max range constraint to an interval parameter.
1080 int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
1081 unsigned int min, unsigned int max)
1083 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1084 struct snd_interval t;
1087 t.openmin = t.openmax = 0;
1089 return snd_interval_refine(constrs_interval(constrs, var), &t);
1092 EXPORT_SYMBOL(snd_pcm_hw_constraint_minmax);
1094 static int snd_pcm_hw_rule_list(struct snd_pcm_hw_params *params,
1095 struct snd_pcm_hw_rule *rule)
1097 struct snd_pcm_hw_constraint_list *list = rule->private;
1098 return snd_interval_list(hw_param_interval(params, rule->var), list->count, list->list, list->mask);
1103 * snd_pcm_hw_constraint_list - apply a list of constraints to a parameter
1104 * @runtime: PCM runtime instance
1105 * @cond: condition bits
1106 * @var: hw_params variable to apply the list constraint
1109 * Apply the list of constraints to an interval parameter.
1111 int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime,
1113 snd_pcm_hw_param_t var,
1114 struct snd_pcm_hw_constraint_list *l)
1116 return snd_pcm_hw_rule_add(runtime, cond, var,
1117 snd_pcm_hw_rule_list, l,
1121 EXPORT_SYMBOL(snd_pcm_hw_constraint_list);
1123 static int snd_pcm_hw_rule_ratnums(struct snd_pcm_hw_params *params,
1124 struct snd_pcm_hw_rule *rule)
1126 struct snd_pcm_hw_constraint_ratnums *r = rule->private;
1127 unsigned int num = 0, den = 0;
1129 err = snd_interval_ratnum(hw_param_interval(params, rule->var),
1130 r->nrats, r->rats, &num, &den);
1131 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1132 params->rate_num = num;
1133 params->rate_den = den;
1139 * snd_pcm_hw_constraint_ratnums - apply ratnums constraint to a parameter
1140 * @runtime: PCM runtime instance
1141 * @cond: condition bits
1142 * @var: hw_params variable to apply the ratnums constraint
1143 * @r: struct snd_ratnums constriants
1145 int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime,
1147 snd_pcm_hw_param_t var,
1148 struct snd_pcm_hw_constraint_ratnums *r)
1150 return snd_pcm_hw_rule_add(runtime, cond, var,
1151 snd_pcm_hw_rule_ratnums, r,
1155 EXPORT_SYMBOL(snd_pcm_hw_constraint_ratnums);
1157 static int snd_pcm_hw_rule_ratdens(struct snd_pcm_hw_params *params,
1158 struct snd_pcm_hw_rule *rule)
1160 struct snd_pcm_hw_constraint_ratdens *r = rule->private;
1161 unsigned int num = 0, den = 0;
1162 int err = snd_interval_ratden(hw_param_interval(params, rule->var),
1163 r->nrats, r->rats, &num, &den);
1164 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1165 params->rate_num = num;
1166 params->rate_den = den;
1172 * snd_pcm_hw_constraint_ratdens - apply ratdens constraint to a parameter
1173 * @runtime: PCM runtime instance
1174 * @cond: condition bits
1175 * @var: hw_params variable to apply the ratdens constraint
1176 * @r: struct snd_ratdens constriants
1178 int snd_pcm_hw_constraint_ratdens(struct snd_pcm_runtime *runtime,
1180 snd_pcm_hw_param_t var,
1181 struct snd_pcm_hw_constraint_ratdens *r)
1183 return snd_pcm_hw_rule_add(runtime, cond, var,
1184 snd_pcm_hw_rule_ratdens, r,
1188 EXPORT_SYMBOL(snd_pcm_hw_constraint_ratdens);
1190 static int snd_pcm_hw_rule_msbits(struct snd_pcm_hw_params *params,
1191 struct snd_pcm_hw_rule *rule)
1193 unsigned int l = (unsigned long) rule->private;
1194 int width = l & 0xffff;
1195 unsigned int msbits = l >> 16;
1196 struct snd_interval *i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
1197 if (snd_interval_single(i) && snd_interval_value(i) == width)
1198 params->msbits = msbits;
1203 * snd_pcm_hw_constraint_msbits - add a hw constraint msbits rule
1204 * @runtime: PCM runtime instance
1205 * @cond: condition bits
1206 * @width: sample bits width
1207 * @msbits: msbits width
1209 int snd_pcm_hw_constraint_msbits(struct snd_pcm_runtime *runtime,
1212 unsigned int msbits)
1214 unsigned long l = (msbits << 16) | width;
1215 return snd_pcm_hw_rule_add(runtime, cond, -1,
1216 snd_pcm_hw_rule_msbits,
1218 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1221 EXPORT_SYMBOL(snd_pcm_hw_constraint_msbits);
1223 static int snd_pcm_hw_rule_step(struct snd_pcm_hw_params *params,
1224 struct snd_pcm_hw_rule *rule)
1226 unsigned long step = (unsigned long) rule->private;
1227 return snd_interval_step(hw_param_interval(params, rule->var), 0, step);
1231 * snd_pcm_hw_constraint_step - add a hw constraint step rule
1232 * @runtime: PCM runtime instance
1233 * @cond: condition bits
1234 * @var: hw_params variable to apply the step constraint
1237 int snd_pcm_hw_constraint_step(struct snd_pcm_runtime *runtime,
1239 snd_pcm_hw_param_t var,
1242 return snd_pcm_hw_rule_add(runtime, cond, var,
1243 snd_pcm_hw_rule_step, (void *) step,
1247 EXPORT_SYMBOL(snd_pcm_hw_constraint_step);
1249 static int snd_pcm_hw_rule_pow2(struct snd_pcm_hw_params *params, struct snd_pcm_hw_rule *rule)
1251 static unsigned int pow2_sizes[] = {
1252 1<<0, 1<<1, 1<<2, 1<<3, 1<<4, 1<<5, 1<<6, 1<<7,
1253 1<<8, 1<<9, 1<<10, 1<<11, 1<<12, 1<<13, 1<<14, 1<<15,
1254 1<<16, 1<<17, 1<<18, 1<<19, 1<<20, 1<<21, 1<<22, 1<<23,
1255 1<<24, 1<<25, 1<<26, 1<<27, 1<<28, 1<<29, 1<<30
1257 return snd_interval_list(hw_param_interval(params, rule->var),
1258 ARRAY_SIZE(pow2_sizes), pow2_sizes, 0);
1262 * snd_pcm_hw_constraint_pow2 - add a hw constraint power-of-2 rule
1263 * @runtime: PCM runtime instance
1264 * @cond: condition bits
1265 * @var: hw_params variable to apply the power-of-2 constraint
1267 int snd_pcm_hw_constraint_pow2(struct snd_pcm_runtime *runtime,
1269 snd_pcm_hw_param_t var)
1271 return snd_pcm_hw_rule_add(runtime, cond, var,
1272 snd_pcm_hw_rule_pow2, NULL,
1276 EXPORT_SYMBOL(snd_pcm_hw_constraint_pow2);
1278 static void _snd_pcm_hw_param_any(struct snd_pcm_hw_params *params,
1279 snd_pcm_hw_param_t var)
1281 if (hw_is_mask(var)) {
1282 snd_mask_any(hw_param_mask(params, var));
1283 params->cmask |= 1 << var;
1284 params->rmask |= 1 << var;
1287 if (hw_is_interval(var)) {
1288 snd_interval_any(hw_param_interval(params, var));
1289 params->cmask |= 1 << var;
1290 params->rmask |= 1 << var;
1296 void _snd_pcm_hw_params_any(struct snd_pcm_hw_params *params)
1299 memset(params, 0, sizeof(*params));
1300 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++)
1301 _snd_pcm_hw_param_any(params, k);
1302 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
1303 _snd_pcm_hw_param_any(params, k);
1307 EXPORT_SYMBOL(_snd_pcm_hw_params_any);
1310 * snd_pcm_hw_param_value - return @params field @var value
1311 * @params: the hw_params instance
1312 * @var: parameter to retrieve
1313 * @dir: pointer to the direction (-1,0,1) or %NULL
1315 * Return the value for field @var if it's fixed in configuration space
1316 * defined by @params. Return -%EINVAL otherwise.
1318 int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
1319 snd_pcm_hw_param_t var, int *dir)
1321 if (hw_is_mask(var)) {
1322 const struct snd_mask *mask = hw_param_mask_c(params, var);
1323 if (!snd_mask_single(mask))
1327 return snd_mask_value(mask);
1329 if (hw_is_interval(var)) {
1330 const struct snd_interval *i = hw_param_interval_c(params, var);
1331 if (!snd_interval_single(i))
1335 return snd_interval_value(i);
1340 EXPORT_SYMBOL(snd_pcm_hw_param_value);
1342 void _snd_pcm_hw_param_setempty(struct snd_pcm_hw_params *params,
1343 snd_pcm_hw_param_t var)
1345 if (hw_is_mask(var)) {
1346 snd_mask_none(hw_param_mask(params, var));
1347 params->cmask |= 1 << var;
1348 params->rmask |= 1 << var;
1349 } else if (hw_is_interval(var)) {
1350 snd_interval_none(hw_param_interval(params, var));
1351 params->cmask |= 1 << var;
1352 params->rmask |= 1 << var;
1358 EXPORT_SYMBOL(_snd_pcm_hw_param_setempty);
1360 static int _snd_pcm_hw_param_first(struct snd_pcm_hw_params *params,
1361 snd_pcm_hw_param_t var)
1364 if (hw_is_mask(var))
1365 changed = snd_mask_refine_first(hw_param_mask(params, var));
1366 else if (hw_is_interval(var))
1367 changed = snd_interval_refine_first(hw_param_interval(params, var));
1371 params->cmask |= 1 << var;
1372 params->rmask |= 1 << var;
1379 * snd_pcm_hw_param_first - refine config space and return minimum value
1380 * @pcm: PCM instance
1381 * @params: the hw_params instance
1382 * @var: parameter to retrieve
1383 * @dir: pointer to the direction (-1,0,1) or %NULL
1385 * Inside configuration space defined by @params remove from @var all
1386 * values > minimum. Reduce configuration space accordingly.
1387 * Return the minimum.
1389 int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
1390 struct snd_pcm_hw_params *params,
1391 snd_pcm_hw_param_t var, int *dir)
1393 int changed = _snd_pcm_hw_param_first(params, var);
1396 if (params->rmask) {
1397 int err = snd_pcm_hw_refine(pcm, params);
1398 if (snd_BUG_ON(err < 0))
1401 return snd_pcm_hw_param_value(params, var, dir);
1404 EXPORT_SYMBOL(snd_pcm_hw_param_first);
1406 static int _snd_pcm_hw_param_last(struct snd_pcm_hw_params *params,
1407 snd_pcm_hw_param_t var)
1410 if (hw_is_mask(var))
1411 changed = snd_mask_refine_last(hw_param_mask(params, var));
1412 else if (hw_is_interval(var))
1413 changed = snd_interval_refine_last(hw_param_interval(params, var));
1417 params->cmask |= 1 << var;
1418 params->rmask |= 1 << var;
1425 * snd_pcm_hw_param_last - refine config space and return maximum value
1426 * @pcm: PCM instance
1427 * @params: the hw_params instance
1428 * @var: parameter to retrieve
1429 * @dir: pointer to the direction (-1,0,1) or %NULL
1431 * Inside configuration space defined by @params remove from @var all
1432 * values < maximum. Reduce configuration space accordingly.
1433 * Return the maximum.
1435 int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
1436 struct snd_pcm_hw_params *params,
1437 snd_pcm_hw_param_t var, int *dir)
1439 int changed = _snd_pcm_hw_param_last(params, var);
1442 if (params->rmask) {
1443 int err = snd_pcm_hw_refine(pcm, params);
1444 if (snd_BUG_ON(err < 0))
1447 return snd_pcm_hw_param_value(params, var, dir);
1450 EXPORT_SYMBOL(snd_pcm_hw_param_last);
1453 * snd_pcm_hw_param_choose - choose a configuration defined by @params
1454 * @pcm: PCM instance
1455 * @params: the hw_params instance
1457 * Choose one configuration from configuration space defined by @params.
1458 * The configuration chosen is that obtained fixing in this order:
1459 * first access, first format, first subformat, min channels,
1460 * min rate, min period time, max buffer size, min tick time
1462 int snd_pcm_hw_params_choose(struct snd_pcm_substream *pcm,
1463 struct snd_pcm_hw_params *params)
1465 static int vars[] = {
1466 SNDRV_PCM_HW_PARAM_ACCESS,
1467 SNDRV_PCM_HW_PARAM_FORMAT,
1468 SNDRV_PCM_HW_PARAM_SUBFORMAT,
1469 SNDRV_PCM_HW_PARAM_CHANNELS,
1470 SNDRV_PCM_HW_PARAM_RATE,
1471 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1472 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1473 SNDRV_PCM_HW_PARAM_TICK_TIME,
1478 for (v = vars; *v != -1; v++) {
1479 if (*v != SNDRV_PCM_HW_PARAM_BUFFER_SIZE)
1480 err = snd_pcm_hw_param_first(pcm, params, *v, NULL);
1482 err = snd_pcm_hw_param_last(pcm, params, *v, NULL);
1483 if (snd_BUG_ON(err < 0))
1489 static int snd_pcm_lib_ioctl_reset(struct snd_pcm_substream *substream,
1492 struct snd_pcm_runtime *runtime = substream->runtime;
1493 unsigned long flags;
1494 snd_pcm_stream_lock_irqsave(substream, flags);
1495 if (snd_pcm_running(substream) &&
1496 snd_pcm_update_hw_ptr(substream) >= 0)
1497 runtime->status->hw_ptr %= runtime->buffer_size;
1499 runtime->status->hw_ptr = 0;
1500 snd_pcm_stream_unlock_irqrestore(substream, flags);
1504 static int snd_pcm_lib_ioctl_channel_info(struct snd_pcm_substream *substream,
1507 struct snd_pcm_channel_info *info = arg;
1508 struct snd_pcm_runtime *runtime = substream->runtime;
1510 if (!(runtime->info & SNDRV_PCM_INFO_MMAP)) {
1514 width = snd_pcm_format_physical_width(runtime->format);
1518 switch (runtime->access) {
1519 case SNDRV_PCM_ACCESS_MMAP_INTERLEAVED:
1520 case SNDRV_PCM_ACCESS_RW_INTERLEAVED:
1521 info->first = info->channel * width;
1522 info->step = runtime->channels * width;
1524 case SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED:
1525 case SNDRV_PCM_ACCESS_RW_NONINTERLEAVED:
1527 size_t size = runtime->dma_bytes / runtime->channels;
1528 info->first = info->channel * size * 8;
1539 static int snd_pcm_lib_ioctl_fifo_size(struct snd_pcm_substream *substream,
1542 struct snd_pcm_hw_params *params = arg;
1543 snd_pcm_format_t format;
1544 int channels, width;
1546 params->fifo_size = substream->runtime->hw.fifo_size;
1547 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) {
1548 format = params_format(params);
1549 channels = params_channels(params);
1550 width = snd_pcm_format_physical_width(format);
1551 params->fifo_size /= width * channels;
1557 * snd_pcm_lib_ioctl - a generic PCM ioctl callback
1558 * @substream: the pcm substream instance
1559 * @cmd: ioctl command
1560 * @arg: ioctl argument
1562 * Processes the generic ioctl commands for PCM.
1563 * Can be passed as the ioctl callback for PCM ops.
1565 * Returns zero if successful, or a negative error code on failure.
1567 int snd_pcm_lib_ioctl(struct snd_pcm_substream *substream,
1568 unsigned int cmd, void *arg)
1571 case SNDRV_PCM_IOCTL1_INFO:
1573 case SNDRV_PCM_IOCTL1_RESET:
1574 return snd_pcm_lib_ioctl_reset(substream, arg);
1575 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
1576 return snd_pcm_lib_ioctl_channel_info(substream, arg);
1577 case SNDRV_PCM_IOCTL1_FIFO_SIZE:
1578 return snd_pcm_lib_ioctl_fifo_size(substream, arg);
1583 EXPORT_SYMBOL(snd_pcm_lib_ioctl);
1586 * snd_pcm_period_elapsed - update the pcm status for the next period
1587 * @substream: the pcm substream instance
1589 * This function is called from the interrupt handler when the
1590 * PCM has processed the period size. It will update the current
1591 * pointer, wake up sleepers, etc.
1593 * Even if more than one periods have elapsed since the last call, you
1594 * have to call this only once.
1596 void snd_pcm_period_elapsed(struct snd_pcm_substream *substream)
1598 struct snd_pcm_runtime *runtime;
1599 unsigned long flags;
1601 if (PCM_RUNTIME_CHECK(substream))
1603 runtime = substream->runtime;
1605 if (runtime->transfer_ack_begin)
1606 runtime->transfer_ack_begin(substream);
1608 snd_pcm_stream_lock_irqsave(substream, flags);
1609 if (!snd_pcm_running(substream) ||
1610 snd_pcm_update_hw_ptr_interrupt(substream) < 0)
1613 if (substream->timer_running)
1614 snd_timer_interrupt(substream->timer, 1);
1616 snd_pcm_stream_unlock_irqrestore(substream, flags);
1617 if (runtime->transfer_ack_end)
1618 runtime->transfer_ack_end(substream);
1619 kill_fasync(&runtime->fasync, SIGIO, POLL_IN);
1622 EXPORT_SYMBOL(snd_pcm_period_elapsed);
1625 * Wait until avail_min data becomes available
1626 * Returns a negative error code if any error occurs during operation.
1627 * The available space is stored on availp. When err = 0 and avail = 0
1628 * on the capture stream, it indicates the stream is in DRAINING state.
1630 static int wait_for_avail_min(struct snd_pcm_substream *substream,
1631 snd_pcm_uframes_t *availp)
1633 struct snd_pcm_runtime *runtime = substream->runtime;
1634 int is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1637 snd_pcm_uframes_t avail = 0;
1640 init_waitqueue_entry(&wait, current);
1641 add_wait_queue(&runtime->sleep, &wait);
1643 if (signal_pending(current)) {
1647 set_current_state(TASK_INTERRUPTIBLE);
1648 snd_pcm_stream_unlock_irq(substream);
1649 tout = schedule_timeout(msecs_to_jiffies(10000));
1650 snd_pcm_stream_lock_irq(substream);
1651 switch (runtime->status->state) {
1652 case SNDRV_PCM_STATE_SUSPENDED:
1655 case SNDRV_PCM_STATE_XRUN:
1658 case SNDRV_PCM_STATE_DRAINING:
1662 avail = 0; /* indicate draining */
1664 case SNDRV_PCM_STATE_OPEN:
1665 case SNDRV_PCM_STATE_SETUP:
1666 case SNDRV_PCM_STATE_DISCONNECTED:
1671 snd_printd("%s write error (DMA or IRQ trouble?)\n",
1672 is_playback ? "playback" : "capture");
1677 avail = snd_pcm_playback_avail(runtime);
1679 avail = snd_pcm_capture_avail(runtime);
1680 if (avail >= runtime->control->avail_min)
1684 remove_wait_queue(&runtime->sleep, &wait);
1689 static int snd_pcm_lib_write_transfer(struct snd_pcm_substream *substream,
1691 unsigned long data, unsigned int off,
1692 snd_pcm_uframes_t frames)
1694 struct snd_pcm_runtime *runtime = substream->runtime;
1696 char __user *buf = (char __user *) data + frames_to_bytes(runtime, off);
1697 if (substream->ops->copy) {
1698 if ((err = substream->ops->copy(substream, -1, hwoff, buf, frames)) < 0)
1701 char *hwbuf = runtime->dma_area + frames_to_bytes(runtime, hwoff);
1702 if (copy_from_user(hwbuf, buf, frames_to_bytes(runtime, frames)))
1708 typedef int (*transfer_f)(struct snd_pcm_substream *substream, unsigned int hwoff,
1709 unsigned long data, unsigned int off,
1710 snd_pcm_uframes_t size);
1712 static snd_pcm_sframes_t snd_pcm_lib_write1(struct snd_pcm_substream *substream,
1714 snd_pcm_uframes_t size,
1716 transfer_f transfer)
1718 struct snd_pcm_runtime *runtime = substream->runtime;
1719 snd_pcm_uframes_t xfer = 0;
1720 snd_pcm_uframes_t offset = 0;
1726 snd_pcm_stream_lock_irq(substream);
1727 switch (runtime->status->state) {
1728 case SNDRV_PCM_STATE_PREPARED:
1729 case SNDRV_PCM_STATE_RUNNING:
1730 case SNDRV_PCM_STATE_PAUSED:
1732 case SNDRV_PCM_STATE_XRUN:
1735 case SNDRV_PCM_STATE_SUSPENDED:
1744 snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
1745 snd_pcm_uframes_t avail;
1746 snd_pcm_uframes_t cont;
1747 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
1748 snd_pcm_update_hw_ptr(substream);
1749 avail = snd_pcm_playback_avail(runtime);
1755 err = wait_for_avail_min(substream, &avail);
1759 frames = size > avail ? avail : size;
1760 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
1763 if (snd_BUG_ON(!frames)) {
1764 snd_pcm_stream_unlock_irq(substream);
1767 appl_ptr = runtime->control->appl_ptr;
1768 appl_ofs = appl_ptr % runtime->buffer_size;
1769 snd_pcm_stream_unlock_irq(substream);
1770 if ((err = transfer(substream, appl_ofs, data, offset, frames)) < 0)
1772 snd_pcm_stream_lock_irq(substream);
1773 switch (runtime->status->state) {
1774 case SNDRV_PCM_STATE_XRUN:
1777 case SNDRV_PCM_STATE_SUSPENDED:
1784 if (appl_ptr >= runtime->boundary)
1785 appl_ptr -= runtime->boundary;
1786 runtime->control->appl_ptr = appl_ptr;
1787 if (substream->ops->ack)
1788 substream->ops->ack(substream);
1793 if (runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
1794 snd_pcm_playback_hw_avail(runtime) >= (snd_pcm_sframes_t)runtime->start_threshold) {
1795 err = snd_pcm_start(substream);
1801 snd_pcm_stream_unlock_irq(substream);
1803 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err;
1806 /* sanity-check for read/write methods */
1807 static int pcm_sanity_check(struct snd_pcm_substream *substream)
1809 struct snd_pcm_runtime *runtime;
1810 if (PCM_RUNTIME_CHECK(substream))
1812 runtime = substream->runtime;
1813 if (snd_BUG_ON(!substream->ops->copy && !runtime->dma_area))
1815 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1820 snd_pcm_sframes_t snd_pcm_lib_write(struct snd_pcm_substream *substream, const void __user *buf, snd_pcm_uframes_t size)
1822 struct snd_pcm_runtime *runtime;
1826 err = pcm_sanity_check(substream);
1829 runtime = substream->runtime;
1830 nonblock = !!(substream->f_flags & O_NONBLOCK);
1832 if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED &&
1833 runtime->channels > 1)
1835 return snd_pcm_lib_write1(substream, (unsigned long)buf, size, nonblock,
1836 snd_pcm_lib_write_transfer);
1839 EXPORT_SYMBOL(snd_pcm_lib_write);
1841 static int snd_pcm_lib_writev_transfer(struct snd_pcm_substream *substream,
1843 unsigned long data, unsigned int off,
1844 snd_pcm_uframes_t frames)
1846 struct snd_pcm_runtime *runtime = substream->runtime;
1848 void __user **bufs = (void __user **)data;
1849 int channels = runtime->channels;
1851 if (substream->ops->copy) {
1852 if (snd_BUG_ON(!substream->ops->silence))
1854 for (c = 0; c < channels; ++c, ++bufs) {
1855 if (*bufs == NULL) {
1856 if ((err = substream->ops->silence(substream, c, hwoff, frames)) < 0)
1859 char __user *buf = *bufs + samples_to_bytes(runtime, off);
1860 if ((err = substream->ops->copy(substream, c, hwoff, buf, frames)) < 0)
1865 /* default transfer behaviour */
1866 size_t dma_csize = runtime->dma_bytes / channels;
1867 for (c = 0; c < channels; ++c, ++bufs) {
1868 char *hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, hwoff);
1869 if (*bufs == NULL) {
1870 snd_pcm_format_set_silence(runtime->format, hwbuf, frames);
1872 char __user *buf = *bufs + samples_to_bytes(runtime, off);
1873 if (copy_from_user(hwbuf, buf, samples_to_bytes(runtime, frames)))
1881 snd_pcm_sframes_t snd_pcm_lib_writev(struct snd_pcm_substream *substream,
1883 snd_pcm_uframes_t frames)
1885 struct snd_pcm_runtime *runtime;
1889 err = pcm_sanity_check(substream);
1892 runtime = substream->runtime;
1893 nonblock = !!(substream->f_flags & O_NONBLOCK);
1895 if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
1897 return snd_pcm_lib_write1(substream, (unsigned long)bufs, frames,
1898 nonblock, snd_pcm_lib_writev_transfer);
1901 EXPORT_SYMBOL(snd_pcm_lib_writev);
1903 static int snd_pcm_lib_read_transfer(struct snd_pcm_substream *substream,
1905 unsigned long data, unsigned int off,
1906 snd_pcm_uframes_t frames)
1908 struct snd_pcm_runtime *runtime = substream->runtime;
1910 char __user *buf = (char __user *) data + frames_to_bytes(runtime, off);
1911 if (substream->ops->copy) {
1912 if ((err = substream->ops->copy(substream, -1, hwoff, buf, frames)) < 0)
1915 char *hwbuf = runtime->dma_area + frames_to_bytes(runtime, hwoff);
1916 if (copy_to_user(buf, hwbuf, frames_to_bytes(runtime, frames)))
1922 static snd_pcm_sframes_t snd_pcm_lib_read1(struct snd_pcm_substream *substream,
1924 snd_pcm_uframes_t size,
1926 transfer_f transfer)
1928 struct snd_pcm_runtime *runtime = substream->runtime;
1929 snd_pcm_uframes_t xfer = 0;
1930 snd_pcm_uframes_t offset = 0;
1936 snd_pcm_stream_lock_irq(substream);
1937 switch (runtime->status->state) {
1938 case SNDRV_PCM_STATE_PREPARED:
1939 if (size >= runtime->start_threshold) {
1940 err = snd_pcm_start(substream);
1945 case SNDRV_PCM_STATE_DRAINING:
1946 case SNDRV_PCM_STATE_RUNNING:
1947 case SNDRV_PCM_STATE_PAUSED:
1949 case SNDRV_PCM_STATE_XRUN:
1952 case SNDRV_PCM_STATE_SUSPENDED:
1961 snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
1962 snd_pcm_uframes_t avail;
1963 snd_pcm_uframes_t cont;
1964 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
1965 snd_pcm_update_hw_ptr(substream);
1966 avail = snd_pcm_capture_avail(runtime);
1968 if (runtime->status->state ==
1969 SNDRV_PCM_STATE_DRAINING) {
1970 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1977 err = wait_for_avail_min(substream, &avail);
1981 continue; /* draining */
1983 frames = size > avail ? avail : size;
1984 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
1987 if (snd_BUG_ON(!frames)) {
1988 snd_pcm_stream_unlock_irq(substream);
1991 appl_ptr = runtime->control->appl_ptr;
1992 appl_ofs = appl_ptr % runtime->buffer_size;
1993 snd_pcm_stream_unlock_irq(substream);
1994 if ((err = transfer(substream, appl_ofs, data, offset, frames)) < 0)
1996 snd_pcm_stream_lock_irq(substream);
1997 switch (runtime->status->state) {
1998 case SNDRV_PCM_STATE_XRUN:
2001 case SNDRV_PCM_STATE_SUSPENDED:
2008 if (appl_ptr >= runtime->boundary)
2009 appl_ptr -= runtime->boundary;
2010 runtime->control->appl_ptr = appl_ptr;
2011 if (substream->ops->ack)
2012 substream->ops->ack(substream);
2019 snd_pcm_stream_unlock_irq(substream);
2021 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err;
2024 snd_pcm_sframes_t snd_pcm_lib_read(struct snd_pcm_substream *substream, void __user *buf, snd_pcm_uframes_t size)
2026 struct snd_pcm_runtime *runtime;
2030 err = pcm_sanity_check(substream);
2033 runtime = substream->runtime;
2034 nonblock = !!(substream->f_flags & O_NONBLOCK);
2035 if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED)
2037 return snd_pcm_lib_read1(substream, (unsigned long)buf, size, nonblock, snd_pcm_lib_read_transfer);
2040 EXPORT_SYMBOL(snd_pcm_lib_read);
2042 static int snd_pcm_lib_readv_transfer(struct snd_pcm_substream *substream,
2044 unsigned long data, unsigned int off,
2045 snd_pcm_uframes_t frames)
2047 struct snd_pcm_runtime *runtime = substream->runtime;
2049 void __user **bufs = (void __user **)data;
2050 int channels = runtime->channels;
2052 if (substream->ops->copy) {
2053 for (c = 0; c < channels; ++c, ++bufs) {
2057 buf = *bufs + samples_to_bytes(runtime, off);
2058 if ((err = substream->ops->copy(substream, c, hwoff, buf, frames)) < 0)
2062 snd_pcm_uframes_t dma_csize = runtime->dma_bytes / channels;
2063 for (c = 0; c < channels; ++c, ++bufs) {
2069 hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, hwoff);
2070 buf = *bufs + samples_to_bytes(runtime, off);
2071 if (copy_to_user(buf, hwbuf, samples_to_bytes(runtime, frames)))
2078 snd_pcm_sframes_t snd_pcm_lib_readv(struct snd_pcm_substream *substream,
2080 snd_pcm_uframes_t frames)
2082 struct snd_pcm_runtime *runtime;
2086 err = pcm_sanity_check(substream);
2089 runtime = substream->runtime;
2090 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2093 nonblock = !!(substream->f_flags & O_NONBLOCK);
2094 if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
2096 return snd_pcm_lib_read1(substream, (unsigned long)bufs, frames, nonblock, snd_pcm_lib_readv_transfer);
2099 EXPORT_SYMBOL(snd_pcm_lib_readv);