blob: d82f1437667f1b12e4984f8fc2e150356d077fb8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Digital Audio (PCM) abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Abramo Bagnara <abramo@alsa-project.org>
5 *
6 *
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.
11 *
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.
16 *
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
20 *
21 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/slab.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010024#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/time.h>
Takashi Iwai3f7440a2009-06-05 17:40:04 +020026#include <linux/math64.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040027#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <sound/core.h>
29#include <sound/control.h>
Takashi Iwai2d3391e2012-07-27 18:27:00 +020030#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/info.h>
32#include <sound/pcm.h>
33#include <sound/pcm_params.h>
34#include <sound/timer.h>
35
Takashi Sakamoto2c4842d2017-05-26 09:30:46 +090036#include "pcm_local.h"
37
Takashi Iwaif5914902014-11-04 12:45:59 +010038#ifdef CONFIG_SND_PCM_XRUN_DEBUG
39#define CREATE_TRACE_POINTS
40#include "pcm_trace.h"
41#else
42#define trace_hwptr(substream, pos, in_interrupt)
43#define trace_xrun(substream)
44#define trace_hw_ptr_error(substream, reason)
45#endif
46
Takashi Iwaia9cd29e2017-05-24 18:18:15 +020047static int fill_silence_frames(struct snd_pcm_substream *substream,
48 snd_pcm_uframes_t off, snd_pcm_uframes_t frames);
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * fill ring buffer with silence
52 * runtime->silence_start: starting pointer to silence area
53 * runtime->silence_filled: size filled with silence
54 * runtime->silence_threshold: threshold from application
55 * runtime->silence_size: maximal size from application
56 *
57 * when runtime->silence_size >= runtime->boundary - fill processed area with silence immediately
58 */
Takashi Iwai877211f2005-11-17 13:59:38 +010059void snd_pcm_playback_silence(struct snd_pcm_substream *substream, snd_pcm_uframes_t new_hw_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Takashi Iwai877211f2005-11-17 13:59:38 +010061 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 snd_pcm_uframes_t frames, ofs, transfer;
Takashi Iwai29d1a872017-05-10 20:02:35 +020063 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 if (runtime->silence_size < runtime->boundary) {
66 snd_pcm_sframes_t noise_dist, n;
67 if (runtime->silence_start != runtime->control->appl_ptr) {
68 n = runtime->control->appl_ptr - runtime->silence_start;
69 if (n < 0)
70 n += runtime->boundary;
71 if ((snd_pcm_uframes_t)n < runtime->silence_filled)
72 runtime->silence_filled -= n;
73 else
74 runtime->silence_filled = 0;
75 runtime->silence_start = runtime->control->appl_ptr;
76 }
Takashi Iwai235475c2005-12-07 15:28:07 +010077 if (runtime->silence_filled >= runtime->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 noise_dist = snd_pcm_playback_hw_avail(runtime) + runtime->silence_filled;
80 if (noise_dist >= (snd_pcm_sframes_t) runtime->silence_threshold)
81 return;
82 frames = runtime->silence_threshold - noise_dist;
83 if (frames > runtime->silence_size)
84 frames = runtime->silence_size;
85 } else {
86 if (new_hw_ptr == ULONG_MAX) { /* initialization */
87 snd_pcm_sframes_t avail = snd_pcm_playback_hw_avail(runtime);
Jaroslav Kysela9e216e82010-07-19 16:37:39 +020088 if (avail > runtime->buffer_size)
89 avail = runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 runtime->silence_filled = avail > 0 ? avail : 0;
91 runtime->silence_start = (runtime->status->hw_ptr +
92 runtime->silence_filled) %
93 runtime->boundary;
94 } else {
95 ofs = runtime->status->hw_ptr;
96 frames = new_hw_ptr - ofs;
97 if ((snd_pcm_sframes_t)frames < 0)
98 frames += runtime->boundary;
99 runtime->silence_filled -= frames;
100 if ((snd_pcm_sframes_t)runtime->silence_filled < 0) {
101 runtime->silence_filled = 0;
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200102 runtime->silence_start = new_hw_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 } else {
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200104 runtime->silence_start = ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107 frames = runtime->buffer_size - runtime->silence_filled;
108 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200109 if (snd_BUG_ON(frames > runtime->buffer_size))
110 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (frames == 0)
112 return;
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200113 ofs = runtime->silence_start % runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 while (frames > 0) {
115 transfer = ofs + frames > runtime->buffer_size ? runtime->buffer_size - ofs : frames;
Takashi Iwaia9cd29e2017-05-24 18:18:15 +0200116 err = fill_silence_frames(substream, ofs, transfer);
117 snd_BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 runtime->silence_filled += transfer;
119 frames -= transfer;
120 ofs = 0;
121 }
122}
123
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200124#ifdef CONFIG_SND_DEBUG
125void snd_pcm_debug_name(struct snd_pcm_substream *substream,
Takashi Iwaic0070112009-06-08 15:58:48 +0200126 char *name, size_t len)
127{
128 snprintf(name, len, "pcmC%dD%d%c:%d",
129 substream->pcm->card->number,
130 substream->pcm->device,
131 substream->stream ? 'c' : 'p',
132 substream->number);
133}
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200134EXPORT_SYMBOL(snd_pcm_debug_name);
135#endif
Takashi Iwaic0070112009-06-08 15:58:48 +0200136
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100137#define XRUN_DEBUG_BASIC (1<<0)
138#define XRUN_DEBUG_STACK (1<<1) /* dump also stack */
139#define XRUN_DEBUG_JIFFIESCHECK (1<<2) /* do jiffies check */
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100140
141#ifdef CONFIG_SND_PCM_XRUN_DEBUG
142
143#define xrun_debug(substream, mask) \
144 ((substream)->pstr->xrun_debug & (mask))
Jarkko Nikula0f170142010-03-26 16:07:25 +0200145#else
146#define xrun_debug(substream, mask) 0
147#endif
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100148
149#define dump_stack_on_xrun(substream) do { \
150 if (xrun_debug(substream, XRUN_DEBUG_STACK)) \
151 dump_stack(); \
152 } while (0)
153
Takashi Iwai877211f2005-11-17 13:59:38 +0100154static void xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Jaroslav Kysela13f040f2009-05-28 11:31:20 +0200156 struct snd_pcm_runtime *runtime = substream->runtime;
157
Takashi Iwaif5914902014-11-04 12:45:59 +0100158 trace_xrun(substream);
Jaroslav Kysela13f040f2009-05-28 11:31:20 +0200159 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE)
160 snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
Jaroslav Kysela741b20c2009-12-17 17:34:39 +0100162 if (xrun_debug(substream, XRUN_DEBUG_BASIC)) {
Takashi Iwaic0070112009-06-08 15:58:48 +0200163 char name[16];
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200164 snd_pcm_debug_name(substream, name, sizeof(name));
Takashi Iwai09e56df2014-02-04 18:19:48 +0100165 pcm_warn(substream->pcm, "XRUN: %s\n", name);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100166 dump_stack_on_xrun(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Jarkko Nikula0f170142010-03-26 16:07:25 +0200170#ifdef CONFIG_SND_PCM_XRUN_DEBUG
Takashi Iwaif5914902014-11-04 12:45:59 +0100171#define hw_ptr_error(substream, in_interrupt, reason, fmt, args...) \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100172 do { \
Takashi Iwaif5914902014-11-04 12:45:59 +0100173 trace_hw_ptr_error(substream, reason); \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100174 if (xrun_debug(substream, XRUN_DEBUG_BASIC)) { \
Takashi Iwaif5914902014-11-04 12:45:59 +0100175 pr_err_ratelimited("ALSA: PCM: [%c] " reason ": " fmt, \
176 (in_interrupt) ? 'Q' : 'P', ##args); \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100177 dump_stack_on_xrun(substream); \
178 } \
179 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100181#else /* ! CONFIG_SND_PCM_XRUN_DEBUG */
182
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100183#define hw_ptr_error(substream, fmt, args...) do { } while (0)
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100184
185#endif
186
Jaroslav Kysela12509322010-01-07 15:36:31 +0100187int snd_pcm_update_state(struct snd_pcm_substream *substream,
188 struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 snd_pcm_uframes_t avail;
191
192 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
193 avail = snd_pcm_playback_avail(runtime);
194 else
195 avail = snd_pcm_capture_avail(runtime);
196 if (avail > runtime->avail_max)
197 runtime->avail_max = avail;
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200198 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
199 if (avail >= runtime->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 snd_pcm_drain_done(substream);
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200201 return -EPIPE;
202 }
203 } else {
204 if (avail >= runtime->stop_threshold) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 xrun(substream);
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200206 return -EPIPE;
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
David Dillow5daeba32010-06-27 00:13:20 +0200209 if (runtime->twake) {
210 if (avail >= runtime->twake)
211 wake_up(&runtime->tsleep);
212 } else if (avail >= runtime->control->avail_min)
213 wake_up(&runtime->sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215}
216
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600217static void update_audio_tstamp(struct snd_pcm_substream *substream,
218 struct timespec *curr_tstamp,
219 struct timespec *audio_tstamp)
220{
221 struct snd_pcm_runtime *runtime = substream->runtime;
222 u64 audio_frames, audio_nsecs;
223 struct timespec driver_tstamp;
224
225 if (runtime->tstamp_mode != SNDRV_PCM_TSTAMP_ENABLE)
226 return;
227
228 if (!(substream->ops->get_time_info) ||
229 (runtime->audio_tstamp_report.actual_type ==
230 SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) {
231
232 /*
233 * provide audio timestamp derived from pointer position
234 * add delay only if requested
235 */
236
237 audio_frames = runtime->hw_ptr_wrap + runtime->status->hw_ptr;
238
239 if (runtime->audio_tstamp_config.report_delay) {
240 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
241 audio_frames -= runtime->delay;
242 else
243 audio_frames += runtime->delay;
244 }
245 audio_nsecs = div_u64(audio_frames * 1000000000LL,
246 runtime->rate);
247 *audio_tstamp = ns_to_timespec(audio_nsecs);
248 }
249 runtime->status->audio_tstamp = *audio_tstamp;
250 runtime->status->tstamp = *curr_tstamp;
251
252 /*
253 * re-take a driver timestamp to let apps detect if the reference tstamp
254 * read by low-level hardware was provided with a delay
255 */
256 snd_pcm_gettime(substream->runtime, (struct timespec *)&driver_tstamp);
257 runtime->driver_tstamp = driver_tstamp;
258}
259
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100260static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream,
261 unsigned int in_interrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Takashi Iwai877211f2005-11-17 13:59:38 +0100263 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 snd_pcm_uframes_t pos;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100265 snd_pcm_uframes_t old_hw_ptr, new_hw_ptr, hw_base;
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200266 snd_pcm_sframes_t hdelta, delta;
267 unsigned long jdelta;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500268 unsigned long curr_jiffies;
269 struct timespec curr_tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500270 struct timespec audio_tstamp;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500271 int crossed_boundary = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200273 old_hw_ptr = runtime->status->hw_ptr;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500274
275 /*
276 * group pointer, time and jiffies reads to allow for more
277 * accurate correlations/corrections.
278 * The values are stored at the end of this routine after
279 * corrections for hw_ptr position
280 */
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100281 pos = substream->ops->pointer(substream);
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500282 curr_jiffies = jiffies;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500283 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600284 if ((substream->ops->get_time_info) &&
285 (runtime->audio_tstamp_config.type_requested != SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) {
286 substream->ops->get_time_info(substream, &curr_tstamp,
287 &audio_tstamp,
288 &runtime->audio_tstamp_config,
289 &runtime->audio_tstamp_report);
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500290
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600291 /* re-test in case tstamp type is not supported in hardware and was demoted to DEFAULT */
292 if (runtime->audio_tstamp_report.actual_type == SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)
293 snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp);
294 } else
295 snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp);
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500296 }
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (pos == SNDRV_PCM_POS_XRUN) {
299 xrun(substream);
300 return -EPIPE;
301 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100302 if (pos >= runtime->buffer_size) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100303 if (printk_ratelimit()) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100304 char name[16];
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200305 snd_pcm_debug_name(substream, name, sizeof(name));
Takashi Iwai09e56df2014-02-04 18:19:48 +0100306 pcm_err(substream->pcm,
Takashi Iwai0ab1ace2016-03-10 20:56:20 +0100307 "invalid position: %s, pos = %ld, buffer size = %ld, period size = %ld\n",
Takashi Iwai09e56df2014-02-04 18:19:48 +0100308 name, pos, runtime->buffer_size,
309 runtime->period_size);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100310 }
311 pos = 0;
Takashi Iwaicedb8112009-07-23 11:04:13 +0200312 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100313 pos -= pos % runtime->min_align;
Takashi Iwaif5914902014-11-04 12:45:59 +0100314 trace_hwptr(substream, pos, in_interrupt);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100315 hw_base = runtime->hw_ptr_base;
316 new_hw_ptr = hw_base + pos;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100317 if (in_interrupt) {
318 /* we know that one period was processed */
319 /* delta = "expected next hw_ptr" for in_interrupt != 0 */
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100320 delta = runtime->hw_ptr_interrupt + runtime->period_size;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100321 if (delta > new_hw_ptr) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200322 /* check for double acknowledged interrupts */
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500323 hdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Koro Chen13a98832015-05-13 22:39:03 +0800324 if (hdelta > runtime->hw_ptr_buffer_jiffies/2 + 1) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200325 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500326 if (hw_base >= runtime->boundary) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200327 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500328 crossed_boundary++;
329 }
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200330 new_hw_ptr = hw_base + pos;
331 goto __delta;
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100335 /* new_hw_ptr might be lower than old_hw_ptr in case when */
336 /* pointer crosses the end of the ring buffer */
337 if (new_hw_ptr < old_hw_ptr) {
338 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500339 if (hw_base >= runtime->boundary) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100340 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500341 crossed_boundary++;
342 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100343 new_hw_ptr = hw_base + pos;
344 }
345 __delta:
Clemens Ladischb406e612010-05-25 09:01:46 +0200346 delta = new_hw_ptr - old_hw_ptr;
347 if (delta < 0)
348 delta += runtime->boundary;
Clemens Ladischab69a492010-11-15 10:46:23 +0100349
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100350 if (runtime->no_period_wakeup) {
Kelly Anderson12ff4142011-04-01 11:58:25 +0200351 snd_pcm_sframes_t xrun_threshold;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100352 /*
353 * Without regular period interrupts, we have to check
354 * the elapsed time to detect xruns.
355 */
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500356 jdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Clemens Ladisch47228e42010-11-18 09:53:07 +0100357 if (jdelta < runtime->hw_ptr_buffer_jiffies / 2)
358 goto no_delta_check;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100359 hdelta = jdelta - delta * HZ / runtime->rate;
Kelly Anderson12ff4142011-04-01 11:58:25 +0200360 xrun_threshold = runtime->hw_ptr_buffer_jiffies / 2 + 1;
361 while (hdelta > xrun_threshold) {
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100362 delta += runtime->buffer_size;
363 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500364 if (hw_base >= runtime->boundary) {
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100365 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500366 crossed_boundary++;
367 }
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100368 new_hw_ptr = hw_base + pos;
369 hdelta -= runtime->hw_ptr_buffer_jiffies;
370 }
Clemens Ladischab69a492010-11-15 10:46:23 +0100371 goto no_delta_check;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100372 }
Clemens Ladischab69a492010-11-15 10:46:23 +0100373
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100374 /* something must be really wrong */
Jaroslav Kysela7b3a1772010-01-08 08:43:01 +0100375 if (delta >= runtime->buffer_size + runtime->period_size) {
Takashi Iwaif5914902014-11-04 12:45:59 +0100376 hw_ptr_error(substream, in_interrupt, "Unexpected hw_ptr",
377 "(stream=%i, pos=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n",
378 substream->stream, (long)pos,
379 (long)new_hw_ptr, (long)old_hw_ptr);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100380 return 0;
381 }
Takashi Iwaic87d9732009-05-27 10:53:33 +0200382
383 /* Do jiffies check only in xrun_debug mode */
Jaroslav Kysela741b20c2009-12-17 17:34:39 +0100384 if (!xrun_debug(substream, XRUN_DEBUG_JIFFIESCHECK))
Takashi Iwaic87d9732009-05-27 10:53:33 +0200385 goto no_jiffies_check;
386
Takashi Iwai3e5b5012009-04-28 12:07:08 +0200387 /* Skip the jiffies check for hardwares with BATCH flag.
388 * Such hardware usually just increases the position at each IRQ,
389 * thus it can't give any strange position.
390 */
391 if (runtime->hw.info & SNDRV_PCM_INFO_BATCH)
392 goto no_jiffies_check;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100393 hdelta = delta;
Jaroslav Kyselaa4444da2009-05-28 12:31:56 +0200394 if (hdelta < runtime->delay)
395 goto no_jiffies_check;
396 hdelta -= runtime->delay;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500397 jdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200398 if (((hdelta * HZ) / runtime->rate) > jdelta + HZ/100) {
399 delta = jdelta /
400 (((runtime->period_size * HZ) / runtime->rate)
401 + HZ/100);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100402 /* move new_hw_ptr according jiffies not pos variable */
403 new_hw_ptr = old_hw_ptr;
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100404 hw_base = delta;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100405 /* use loop to avoid checks for delta overflows */
406 /* the delta value is small or zero in most cases */
407 while (delta > 0) {
408 new_hw_ptr += runtime->period_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500409 if (new_hw_ptr >= runtime->boundary) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100410 new_hw_ptr -= runtime->boundary;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500411 crossed_boundary--;
412 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100413 delta--;
414 }
415 /* align hw_base to buffer_size */
Takashi Iwaif5914902014-11-04 12:45:59 +0100416 hw_ptr_error(substream, in_interrupt, "hw_ptr skipping",
417 "(pos=%ld, delta=%ld, period=%ld, jdelta=%lu/%lu/%lu, hw_ptr=%ld/%ld)\n",
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200418 (long)pos, (long)hdelta,
419 (long)runtime->period_size, jdelta,
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100420 ((hdelta * HZ) / runtime->rate), hw_base,
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100421 (unsigned long)old_hw_ptr,
422 (unsigned long)new_hw_ptr);
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100423 /* reset values to proper state */
424 delta = 0;
425 hw_base = new_hw_ptr - (new_hw_ptr % runtime->buffer_size);
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200426 }
Takashi Iwai3e5b5012009-04-28 12:07:08 +0200427 no_jiffies_check:
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200428 if (delta > runtime->period_size + runtime->period_size / 2) {
Takashi Iwaif5914902014-11-04 12:45:59 +0100429 hw_ptr_error(substream, in_interrupt,
430 "Lost interrupts?",
431 "(stream=%i, delta=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n",
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100432 substream->stream, (long)delta,
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100433 (long)new_hw_ptr,
434 (long)old_hw_ptr);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100435 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100436
Clemens Ladischab69a492010-11-15 10:46:23 +0100437 no_delta_check:
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600438 if (runtime->status->hw_ptr == new_hw_ptr) {
439 update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100440 return 0;
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600441 }
Takashi Iwaiab1863f2009-06-07 12:09:17 +0200442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
444 runtime->silence_size > 0)
445 snd_pcm_playback_silence(substream, new_hw_ptr);
446
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100447 if (in_interrupt) {
Clemens Ladischead40462010-05-21 09:15:59 +0200448 delta = new_hw_ptr - runtime->hw_ptr_interrupt;
449 if (delta < 0)
450 delta += runtime->boundary;
451 delta -= (snd_pcm_uframes_t)delta % runtime->period_size;
452 runtime->hw_ptr_interrupt += delta;
453 if (runtime->hw_ptr_interrupt >= runtime->boundary)
454 runtime->hw_ptr_interrupt -= runtime->boundary;
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100455 }
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100456 runtime->hw_ptr_base = hw_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 runtime->status->hw_ptr = new_hw_ptr;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500458 runtime->hw_ptr_jiffies = curr_jiffies;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500459 if (crossed_boundary) {
460 snd_BUG_ON(crossed_boundary != 1);
461 runtime->hw_ptr_wrap += runtime->boundary;
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600464 update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp);
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500465
Jaroslav Kysela12509322010-01-07 15:36:31 +0100466 return snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469/* CAUTION: call it with irq disabled */
Takashi Iwai877211f2005-11-17 13:59:38 +0100470int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100472 return snd_pcm_update_hw_ptr0(substream, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
475/**
476 * snd_pcm_set_ops - set the PCM operators
477 * @pcm: the pcm instance
478 * @direction: stream direction, SNDRV_PCM_STREAM_XXX
479 * @ops: the operator table
480 *
481 * Sets the given PCM operators to the pcm instance.
482 */
Lars-Peter Clausene6c2e7e2013-05-24 15:18:10 +0200483void snd_pcm_set_ops(struct snd_pcm *pcm, int direction,
484 const struct snd_pcm_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Takashi Iwai877211f2005-11-17 13:59:38 +0100486 struct snd_pcm_str *stream = &pcm->streams[direction];
487 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 for (substream = stream->substream; substream != NULL; substream = substream->next)
490 substream->ops = ops;
491}
492
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200493EXPORT_SYMBOL(snd_pcm_set_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495/**
496 * snd_pcm_sync - set the PCM sync id
497 * @substream: the pcm substream
498 *
499 * Sets the PCM sync identifier for the card.
500 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100501void snd_pcm_set_sync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwai877211f2005-11-17 13:59:38 +0100503 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 runtime->sync.id32[0] = substream->pcm->card->number;
506 runtime->sync.id32[1] = -1;
507 runtime->sync.id32[2] = -1;
508 runtime->sync.id32[3] = -1;
509}
510
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200511EXPORT_SYMBOL(snd_pcm_set_sync);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
514 * Standard ioctl routine
515 */
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517static inline unsigned int div32(unsigned int a, unsigned int b,
518 unsigned int *r)
519{
520 if (b == 0) {
521 *r = 0;
522 return UINT_MAX;
523 }
524 *r = a % b;
525 return a / b;
526}
527
528static inline unsigned int div_down(unsigned int a, unsigned int b)
529{
530 if (b == 0)
531 return UINT_MAX;
532 return a / b;
533}
534
535static inline unsigned int div_up(unsigned int a, unsigned int b)
536{
537 unsigned int r;
538 unsigned int q;
539 if (b == 0)
540 return UINT_MAX;
541 q = div32(a, b, &r);
542 if (r)
543 ++q;
544 return q;
545}
546
547static inline unsigned int mul(unsigned int a, unsigned int b)
548{
549 if (a == 0)
550 return 0;
551 if (div_down(UINT_MAX, a) < b)
552 return UINT_MAX;
553 return a * b;
554}
555
556static inline unsigned int muldiv32(unsigned int a, unsigned int b,
557 unsigned int c, unsigned int *r)
558{
559 u_int64_t n = (u_int64_t) a * b;
560 if (c == 0) {
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200561 snd_BUG_ON(!n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 *r = 0;
563 return UINT_MAX;
564 }
Takashi Iwai3f7440a2009-06-05 17:40:04 +0200565 n = div_u64_rem(n, c, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (n >= UINT_MAX) {
567 *r = 0;
568 return UINT_MAX;
569 }
570 return n;
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/**
574 * snd_interval_refine - refine the interval value of configurator
575 * @i: the interval value to refine
576 * @v: the interval value to refer to
577 *
578 * Refines the interval value with the reference value.
579 * The interval is changed to the range satisfying both intervals.
580 * The interval status (min, max, integer, etc.) are evaluated.
581 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100582 * Return: Positive if the value is changed, zero if it's not changed, or a
583 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100585int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 int changed = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200588 if (snd_BUG_ON(snd_interval_empty(i)))
589 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (i->min < v->min) {
591 i->min = v->min;
592 i->openmin = v->openmin;
593 changed = 1;
594 } else if (i->min == v->min && !i->openmin && v->openmin) {
595 i->openmin = 1;
596 changed = 1;
597 }
598 if (i->max > v->max) {
599 i->max = v->max;
600 i->openmax = v->openmax;
601 changed = 1;
602 } else if (i->max == v->max && !i->openmax && v->openmax) {
603 i->openmax = 1;
604 changed = 1;
605 }
606 if (!i->integer && v->integer) {
607 i->integer = 1;
608 changed = 1;
609 }
610 if (i->integer) {
611 if (i->openmin) {
612 i->min++;
613 i->openmin = 0;
614 }
615 if (i->openmax) {
616 i->max--;
617 i->openmax = 0;
618 }
619 } else if (!i->openmin && !i->openmax && i->min == i->max)
620 i->integer = 1;
621 if (snd_interval_checkempty(i)) {
622 snd_interval_none(i);
623 return -EINVAL;
624 }
625 return changed;
626}
627
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200628EXPORT_SYMBOL(snd_interval_refine);
629
Takashi Iwai877211f2005-11-17 13:59:38 +0100630static int snd_interval_refine_first(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200632 if (snd_BUG_ON(snd_interval_empty(i)))
633 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (snd_interval_single(i))
635 return 0;
636 i->max = i->min;
637 i->openmax = i->openmin;
638 if (i->openmax)
639 i->max++;
640 return 1;
641}
642
Takashi Iwai877211f2005-11-17 13:59:38 +0100643static int snd_interval_refine_last(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200645 if (snd_BUG_ON(snd_interval_empty(i)))
646 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (snd_interval_single(i))
648 return 0;
649 i->min = i->max;
650 i->openmin = i->openmax;
651 if (i->openmin)
652 i->min--;
653 return 1;
654}
655
Takashi Iwai877211f2005-11-17 13:59:38 +0100656void snd_interval_mul(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 if (a->empty || b->empty) {
659 snd_interval_none(c);
660 return;
661 }
662 c->empty = 0;
663 c->min = mul(a->min, b->min);
664 c->openmin = (a->openmin || b->openmin);
665 c->max = mul(a->max, b->max);
666 c->openmax = (a->openmax || b->openmax);
667 c->integer = (a->integer && b->integer);
668}
669
670/**
671 * snd_interval_div - refine the interval value with division
Takashi Iwaidf8db932005-09-07 13:38:19 +0200672 * @a: dividend
673 * @b: divisor
674 * @c: quotient
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 *
676 * c = a / b
677 *
678 * Returns non-zero if the value is changed, zero if not changed.
679 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100680void snd_interval_div(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 unsigned int r;
683 if (a->empty || b->empty) {
684 snd_interval_none(c);
685 return;
686 }
687 c->empty = 0;
688 c->min = div32(a->min, b->max, &r);
689 c->openmin = (r || a->openmin || b->openmax);
690 if (b->min > 0) {
691 c->max = div32(a->max, b->min, &r);
692 if (r) {
693 c->max++;
694 c->openmax = 1;
695 } else
696 c->openmax = (a->openmax || b->openmin);
697 } else {
698 c->max = UINT_MAX;
699 c->openmax = 0;
700 }
701 c->integer = 0;
702}
703
704/**
705 * snd_interval_muldivk - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200706 * @a: dividend 1
707 * @b: dividend 2
708 * @k: divisor (as integer)
709 * @c: result
710 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 * c = a * b / k
712 *
713 * Returns non-zero if the value is changed, zero if not changed.
714 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100715void snd_interval_muldivk(const struct snd_interval *a, const struct snd_interval *b,
716 unsigned int k, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 unsigned int r;
719 if (a->empty || b->empty) {
720 snd_interval_none(c);
721 return;
722 }
723 c->empty = 0;
724 c->min = muldiv32(a->min, b->min, k, &r);
725 c->openmin = (r || a->openmin || b->openmin);
726 c->max = muldiv32(a->max, b->max, k, &r);
727 if (r) {
728 c->max++;
729 c->openmax = 1;
730 } else
731 c->openmax = (a->openmax || b->openmax);
732 c->integer = 0;
733}
734
735/**
736 * snd_interval_mulkdiv - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200737 * @a: dividend 1
738 * @k: dividend 2 (as integer)
739 * @b: divisor
740 * @c: result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 *
742 * c = a * k / b
743 *
744 * Returns non-zero if the value is changed, zero if not changed.
745 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100746void snd_interval_mulkdiv(const struct snd_interval *a, unsigned int k,
747 const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 unsigned int r;
750 if (a->empty || b->empty) {
751 snd_interval_none(c);
752 return;
753 }
754 c->empty = 0;
755 c->min = muldiv32(a->min, k, b->max, &r);
756 c->openmin = (r || a->openmin || b->openmax);
757 if (b->min > 0) {
758 c->max = muldiv32(a->max, k, b->min, &r);
759 if (r) {
760 c->max++;
761 c->openmax = 1;
762 } else
763 c->openmax = (a->openmax || b->openmin);
764 } else {
765 c->max = UINT_MAX;
766 c->openmax = 0;
767 }
768 c->integer = 0;
769}
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/* ---- */
772
773
774/**
775 * snd_interval_ratnum - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200776 * @i: interval to refine
777 * @rats_count: number of ratnum_t
778 * @rats: ratnum_t array
779 * @nump: pointer to store the resultant numerator
780 * @denp: pointer to store the resultant denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100782 * Return: Positive if the value is changed, zero if it's not changed, or a
783 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100785int snd_interval_ratnum(struct snd_interval *i,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +0100786 unsigned int rats_count, const struct snd_ratnum *rats,
Takashi Iwai877211f2005-11-17 13:59:38 +0100787 unsigned int *nump, unsigned int *denp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Krzysztof Helt8374e242009-12-21 17:07:08 +0100789 unsigned int best_num, best_den;
790 int best_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100792 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 int err;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100794 unsigned int result_num, result_den;
795 int result_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 best_num = best_den = best_diff = 0;
798 for (k = 0; k < rats_count; ++k) {
799 unsigned int num = rats[k].num;
800 unsigned int den;
801 unsigned int q = i->min;
802 int diff;
803 if (q == 0)
804 q = 1;
Krzysztof Helt40962d72009-12-19 18:31:04 +0100805 den = div_up(num, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (den < rats[k].den_min)
807 continue;
808 if (den > rats[k].den_max)
809 den = rats[k].den_max;
810 else {
811 unsigned int r;
812 r = (den - rats[k].den_min) % rats[k].den_step;
813 if (r != 0)
814 den -= r;
815 }
816 diff = num - q * den;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100817 if (diff < 0)
818 diff = -diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (best_num == 0 ||
820 diff * best_den < best_diff * den) {
821 best_diff = diff;
822 best_den = den;
823 best_num = num;
824 }
825 }
826 if (best_den == 0) {
827 i->empty = 1;
828 return -EINVAL;
829 }
830 t.min = div_down(best_num, best_den);
831 t.openmin = !!(best_num % best_den);
832
Krzysztof Helt8374e242009-12-21 17:07:08 +0100833 result_num = best_num;
834 result_diff = best_diff;
835 result_den = best_den;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 best_num = best_den = best_diff = 0;
837 for (k = 0; k < rats_count; ++k) {
838 unsigned int num = rats[k].num;
839 unsigned int den;
840 unsigned int q = i->max;
841 int diff;
842 if (q == 0) {
843 i->empty = 1;
844 return -EINVAL;
845 }
Krzysztof Helt40962d72009-12-19 18:31:04 +0100846 den = div_down(num, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (den > rats[k].den_max)
848 continue;
849 if (den < rats[k].den_min)
850 den = rats[k].den_min;
851 else {
852 unsigned int r;
853 r = (den - rats[k].den_min) % rats[k].den_step;
854 if (r != 0)
855 den += rats[k].den_step - r;
856 }
857 diff = q * den - num;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100858 if (diff < 0)
859 diff = -diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (best_num == 0 ||
861 diff * best_den < best_diff * den) {
862 best_diff = diff;
863 best_den = den;
864 best_num = num;
865 }
866 }
867 if (best_den == 0) {
868 i->empty = 1;
869 return -EINVAL;
870 }
871 t.max = div_up(best_num, best_den);
872 t.openmax = !!(best_num % best_den);
873 t.integer = 0;
874 err = snd_interval_refine(i, &t);
875 if (err < 0)
876 return err;
877
878 if (snd_interval_single(i)) {
Krzysztof Helt8374e242009-12-21 17:07:08 +0100879 if (best_diff * result_den < result_diff * best_den) {
880 result_num = best_num;
881 result_den = best_den;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (nump)
Krzysztof Helt8374e242009-12-21 17:07:08 +0100884 *nump = result_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (denp)
Krzysztof Helt8374e242009-12-21 17:07:08 +0100886 *denp = result_den;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888 return err;
889}
890
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200891EXPORT_SYMBOL(snd_interval_ratnum);
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893/**
894 * snd_interval_ratden - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200895 * @i: interval to refine
Takashi Iwai877211f2005-11-17 13:59:38 +0100896 * @rats_count: number of struct ratden
897 * @rats: struct ratden array
Takashi Iwaidf8db932005-09-07 13:38:19 +0200898 * @nump: pointer to store the resultant numerator
899 * @denp: pointer to store the resultant denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100901 * Return: Positive if the value is changed, zero if it's not changed, or a
902 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100904static int snd_interval_ratden(struct snd_interval *i,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +0100905 unsigned int rats_count,
906 const struct snd_ratden *rats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 unsigned int *nump, unsigned int *denp)
908{
909 unsigned int best_num, best_diff, best_den;
910 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100911 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 int err;
913
914 best_num = best_den = best_diff = 0;
915 for (k = 0; k < rats_count; ++k) {
916 unsigned int num;
917 unsigned int den = rats[k].den;
918 unsigned int q = i->min;
919 int diff;
920 num = mul(q, den);
921 if (num > rats[k].num_max)
922 continue;
923 if (num < rats[k].num_min)
924 num = rats[k].num_max;
925 else {
926 unsigned int r;
927 r = (num - rats[k].num_min) % rats[k].num_step;
928 if (r != 0)
929 num += rats[k].num_step - r;
930 }
931 diff = num - q * den;
932 if (best_num == 0 ||
933 diff * best_den < best_diff * den) {
934 best_diff = diff;
935 best_den = den;
936 best_num = num;
937 }
938 }
939 if (best_den == 0) {
940 i->empty = 1;
941 return -EINVAL;
942 }
943 t.min = div_down(best_num, best_den);
944 t.openmin = !!(best_num % best_den);
945
946 best_num = best_den = best_diff = 0;
947 for (k = 0; k < rats_count; ++k) {
948 unsigned int num;
949 unsigned int den = rats[k].den;
950 unsigned int q = i->max;
951 int diff;
952 num = mul(q, den);
953 if (num < rats[k].num_min)
954 continue;
955 if (num > rats[k].num_max)
956 num = rats[k].num_max;
957 else {
958 unsigned int r;
959 r = (num - rats[k].num_min) % rats[k].num_step;
960 if (r != 0)
961 num -= r;
962 }
963 diff = q * den - num;
964 if (best_num == 0 ||
965 diff * best_den < best_diff * den) {
966 best_diff = diff;
967 best_den = den;
968 best_num = num;
969 }
970 }
971 if (best_den == 0) {
972 i->empty = 1;
973 return -EINVAL;
974 }
975 t.max = div_up(best_num, best_den);
976 t.openmax = !!(best_num % best_den);
977 t.integer = 0;
978 err = snd_interval_refine(i, &t);
979 if (err < 0)
980 return err;
981
982 if (snd_interval_single(i)) {
983 if (nump)
984 *nump = best_num;
985 if (denp)
986 *denp = best_den;
987 }
988 return err;
989}
990
991/**
992 * snd_interval_list - refine the interval value from the list
993 * @i: the interval value to refine
994 * @count: the number of elements in the list
995 * @list: the value list
996 * @mask: the bit-mask to evaluate
997 *
998 * Refines the interval value from the list.
999 * When mask is non-zero, only the elements corresponding to bit 1 are
1000 * evaluated.
1001 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001002 * Return: Positive if the value is changed, zero if it's not changed, or a
1003 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 */
Mark Brown4af87a92012-03-14 19:48:43 +00001005int snd_interval_list(struct snd_interval *i, unsigned int count,
1006 const unsigned int *list, unsigned int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 unsigned int k;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001009 struct snd_interval list_range;
Takashi Iwai0981a262007-02-01 14:53:49 +01001010
1011 if (!count) {
1012 i->empty = 1;
1013 return -EINVAL;
1014 }
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001015 snd_interval_any(&list_range);
1016 list_range.min = UINT_MAX;
1017 list_range.max = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 for (k = 0; k < count; k++) {
1019 if (mask && !(mask & (1 << k)))
1020 continue;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001021 if (!snd_interval_test(i, list[k]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 continue;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001023 list_range.min = min(list_range.min, list[k]);
1024 list_range.max = max(list_range.max, list[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001026 return snd_interval_refine(i, &list_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001029EXPORT_SYMBOL(snd_interval_list);
1030
Peter Rosinf66f8982015-01-28 15:16:06 +01001031/**
1032 * snd_interval_ranges - refine the interval value from the list of ranges
1033 * @i: the interval value to refine
1034 * @count: the number of elements in the list of ranges
1035 * @ranges: the ranges list
1036 * @mask: the bit-mask to evaluate
1037 *
1038 * Refines the interval value from the list of ranges.
1039 * When mask is non-zero, only the elements corresponding to bit 1 are
1040 * evaluated.
1041 *
1042 * Return: Positive if the value is changed, zero if it's not changed, or a
1043 * negative error code.
1044 */
1045int snd_interval_ranges(struct snd_interval *i, unsigned int count,
1046 const struct snd_interval *ranges, unsigned int mask)
1047{
1048 unsigned int k;
1049 struct snd_interval range_union;
1050 struct snd_interval range;
1051
1052 if (!count) {
1053 snd_interval_none(i);
1054 return -EINVAL;
1055 }
1056 snd_interval_any(&range_union);
1057 range_union.min = UINT_MAX;
1058 range_union.max = 0;
1059 for (k = 0; k < count; k++) {
1060 if (mask && !(mask & (1 << k)))
1061 continue;
1062 snd_interval_copy(&range, &ranges[k]);
1063 if (snd_interval_refine(&range, i) < 0)
1064 continue;
1065 if (snd_interval_empty(&range))
1066 continue;
1067
1068 if (range.min < range_union.min) {
1069 range_union.min = range.min;
1070 range_union.openmin = 1;
1071 }
1072 if (range.min == range_union.min && !range.openmin)
1073 range_union.openmin = 0;
1074 if (range.max > range_union.max) {
1075 range_union.max = range.max;
1076 range_union.openmax = 1;
1077 }
1078 if (range.max == range_union.max && !range.openmax)
1079 range_union.openmax = 0;
1080 }
1081 return snd_interval_refine(i, &range_union);
1082}
1083EXPORT_SYMBOL(snd_interval_ranges);
1084
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001085static int snd_interval_step(struct snd_interval *i, unsigned int step)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 unsigned int n;
1088 int changed = 0;
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001089 n = i->min % step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (n != 0 || i->openmin) {
1091 i->min += step - n;
Clemens Ladischdf1e4712014-09-07 21:43:41 +02001092 i->openmin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 changed = 1;
1094 }
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001095 n = i->max % step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (n != 0 || i->openmax) {
1097 i->max -= n;
Clemens Ladischdf1e4712014-09-07 21:43:41 +02001098 i->openmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 changed = 1;
1100 }
1101 if (snd_interval_checkempty(i)) {
1102 i->empty = 1;
1103 return -EINVAL;
1104 }
1105 return changed;
1106}
1107
1108/* Info constraints helpers */
1109
1110/**
1111 * snd_pcm_hw_rule_add - add the hw-constraint rule
1112 * @runtime: the pcm runtime instance
1113 * @cond: condition bits
1114 * @var: the variable to evaluate
1115 * @func: the evaluation function
1116 * @private: the private data pointer passed to function
1117 * @dep: the dependent variables
1118 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001119 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001121int snd_pcm_hw_rule_add(struct snd_pcm_runtime *runtime, unsigned int cond,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 int var,
1123 snd_pcm_hw_rule_func_t func, void *private,
1124 int dep, ...)
1125{
Takashi Iwai877211f2005-11-17 13:59:38 +01001126 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1127 struct snd_pcm_hw_rule *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 unsigned int k;
1129 va_list args;
1130 va_start(args, dep);
1131 if (constrs->rules_num >= constrs->rules_all) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001132 struct snd_pcm_hw_rule *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 unsigned int new_rules = constrs->rules_all + 16;
1134 new = kcalloc(new_rules, sizeof(*c), GFP_KERNEL);
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001135 if (!new) {
1136 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return -ENOMEM;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (constrs->rules) {
1140 memcpy(new, constrs->rules,
1141 constrs->rules_num * sizeof(*c));
1142 kfree(constrs->rules);
1143 }
1144 constrs->rules = new;
1145 constrs->rules_all = new_rules;
1146 }
1147 c = &constrs->rules[constrs->rules_num];
1148 c->cond = cond;
1149 c->func = func;
1150 c->var = var;
1151 c->private = private;
1152 k = 0;
1153 while (1) {
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001154 if (snd_BUG_ON(k >= ARRAY_SIZE(c->deps))) {
1155 va_end(args);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001156 return -EINVAL;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 c->deps[k++] = dep;
1159 if (dep < 0)
1160 break;
1161 dep = va_arg(args, int);
1162 }
1163 constrs->rules_num++;
1164 va_end(args);
1165 return 0;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001168EXPORT_SYMBOL(snd_pcm_hw_rule_add);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001171 * snd_pcm_hw_constraint_mask - apply the given bitmap mask constraint
Takashi Iwaidf8db932005-09-07 13:38:19 +02001172 * @runtime: PCM runtime instance
1173 * @var: hw_params variable to apply the mask
1174 * @mask: the bitmap mask
1175 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001176 * Apply the constraint of the given bitmap mask to a 32-bit mask parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001177 *
1178 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001180int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 u_int32_t mask)
1182{
Takashi Iwai877211f2005-11-17 13:59:38 +01001183 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1184 struct snd_mask *maskp = constrs_mask(constrs, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 *maskp->bits &= mask;
1186 memset(maskp->bits + 1, 0, (SNDRV_MASK_MAX-32) / 8); /* clear rest */
1187 if (*maskp->bits == 0)
1188 return -EINVAL;
1189 return 0;
1190}
1191
1192/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001193 * snd_pcm_hw_constraint_mask64 - apply the given bitmap mask constraint
Takashi Iwaidf8db932005-09-07 13:38:19 +02001194 * @runtime: PCM runtime instance
1195 * @var: hw_params variable to apply the mask
1196 * @mask: the 64bit bitmap mask
1197 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001198 * Apply the constraint of the given bitmap mask to a 64-bit mask parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001199 *
1200 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001202int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 u_int64_t mask)
1204{
Takashi Iwai877211f2005-11-17 13:59:38 +01001205 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1206 struct snd_mask *maskp = constrs_mask(constrs, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 maskp->bits[0] &= (u_int32_t)mask;
1208 maskp->bits[1] &= (u_int32_t)(mask >> 32);
1209 memset(maskp->bits + 2, 0, (SNDRV_MASK_MAX-64) / 8); /* clear rest */
1210 if (! maskp->bits[0] && ! maskp->bits[1])
1211 return -EINVAL;
1212 return 0;
1213}
Mark Brown63a5d4c2014-02-20 12:13:52 +09001214EXPORT_SYMBOL(snd_pcm_hw_constraint_mask64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001217 * snd_pcm_hw_constraint_integer - apply an integer constraint to an interval
Takashi Iwaidf8db932005-09-07 13:38:19 +02001218 * @runtime: PCM runtime instance
1219 * @var: hw_params variable to apply the integer constraint
1220 *
1221 * Apply the constraint of integer to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001222 *
1223 * Return: Positive if the value is changed, zero if it's not changed, or a
1224 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001226int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Takashi Iwai877211f2005-11-17 13:59:38 +01001228 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return snd_interval_setinteger(constrs_interval(constrs, var));
1230}
1231
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001232EXPORT_SYMBOL(snd_pcm_hw_constraint_integer);
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001235 * snd_pcm_hw_constraint_minmax - apply a min/max range constraint to an interval
Takashi Iwaidf8db932005-09-07 13:38:19 +02001236 * @runtime: PCM runtime instance
1237 * @var: hw_params variable to apply the range
1238 * @min: the minimal value
1239 * @max: the maximal value
1240 *
1241 * Apply the min/max range constraint to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001242 *
1243 * Return: Positive if the value is changed, zero if it's not changed, or a
1244 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001246int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 unsigned int min, unsigned int max)
1248{
Takashi Iwai877211f2005-11-17 13:59:38 +01001249 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1250 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 t.min = min;
1252 t.max = max;
1253 t.openmin = t.openmax = 0;
1254 t.integer = 0;
1255 return snd_interval_refine(constrs_interval(constrs, var), &t);
1256}
1257
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001258EXPORT_SYMBOL(snd_pcm_hw_constraint_minmax);
1259
Takashi Iwai877211f2005-11-17 13:59:38 +01001260static int snd_pcm_hw_rule_list(struct snd_pcm_hw_params *params,
1261 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Takashi Iwai877211f2005-11-17 13:59:38 +01001263 struct snd_pcm_hw_constraint_list *list = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return snd_interval_list(hw_param_interval(params, rule->var), list->count, list->list, list->mask);
1265}
1266
1267
1268/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001269 * snd_pcm_hw_constraint_list - apply a list of constraints to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001270 * @runtime: PCM runtime instance
1271 * @cond: condition bits
1272 * @var: hw_params variable to apply the list constraint
1273 * @l: list
1274 *
1275 * Apply the list of constraints to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001276 *
1277 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001279int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 unsigned int cond,
1281 snd_pcm_hw_param_t var,
Mark Brown14641892012-07-05 12:15:01 +01001282 const struct snd_pcm_hw_constraint_list *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 return snd_pcm_hw_rule_add(runtime, cond, var,
Mark Brown14641892012-07-05 12:15:01 +01001285 snd_pcm_hw_rule_list, (void *)l,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 var, -1);
1287}
1288
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001289EXPORT_SYMBOL(snd_pcm_hw_constraint_list);
1290
Peter Rosinf66f8982015-01-28 15:16:06 +01001291static int snd_pcm_hw_rule_ranges(struct snd_pcm_hw_params *params,
1292 struct snd_pcm_hw_rule *rule)
1293{
1294 struct snd_pcm_hw_constraint_ranges *r = rule->private;
1295 return snd_interval_ranges(hw_param_interval(params, rule->var),
1296 r->count, r->ranges, r->mask);
1297}
1298
1299
1300/**
1301 * snd_pcm_hw_constraint_ranges - apply list of range constraints to a parameter
1302 * @runtime: PCM runtime instance
1303 * @cond: condition bits
1304 * @var: hw_params variable to apply the list of range constraints
1305 * @r: ranges
1306 *
1307 * Apply the list of range constraints to an interval parameter.
1308 *
1309 * Return: Zero if successful, or a negative error code on failure.
1310 */
1311int snd_pcm_hw_constraint_ranges(struct snd_pcm_runtime *runtime,
1312 unsigned int cond,
1313 snd_pcm_hw_param_t var,
1314 const struct snd_pcm_hw_constraint_ranges *r)
1315{
1316 return snd_pcm_hw_rule_add(runtime, cond, var,
1317 snd_pcm_hw_rule_ranges, (void *)r,
1318 var, -1);
1319}
1320EXPORT_SYMBOL(snd_pcm_hw_constraint_ranges);
1321
Takashi Iwai877211f2005-11-17 13:59:38 +01001322static int snd_pcm_hw_rule_ratnums(struct snd_pcm_hw_params *params,
1323 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001325 const struct snd_pcm_hw_constraint_ratnums *r = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 unsigned int num = 0, den = 0;
1327 int err;
1328 err = snd_interval_ratnum(hw_param_interval(params, rule->var),
1329 r->nrats, r->rats, &num, &den);
1330 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1331 params->rate_num = num;
1332 params->rate_den = den;
1333 }
1334 return err;
1335}
1336
1337/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001338 * snd_pcm_hw_constraint_ratnums - apply ratnums constraint to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001339 * @runtime: PCM runtime instance
1340 * @cond: condition bits
1341 * @var: hw_params variable to apply the ratnums constraint
Takashi Iwai877211f2005-11-17 13:59:38 +01001342 * @r: struct snd_ratnums constriants
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001343 *
1344 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001346int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 unsigned int cond,
1348 snd_pcm_hw_param_t var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001349 const struct snd_pcm_hw_constraint_ratnums *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
1351 return snd_pcm_hw_rule_add(runtime, cond, var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001352 snd_pcm_hw_rule_ratnums, (void *)r,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 var, -1);
1354}
1355
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001356EXPORT_SYMBOL(snd_pcm_hw_constraint_ratnums);
1357
Takashi Iwai877211f2005-11-17 13:59:38 +01001358static int snd_pcm_hw_rule_ratdens(struct snd_pcm_hw_params *params,
1359 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001361 const struct snd_pcm_hw_constraint_ratdens *r = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 unsigned int num = 0, den = 0;
1363 int err = snd_interval_ratden(hw_param_interval(params, rule->var),
1364 r->nrats, r->rats, &num, &den);
1365 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1366 params->rate_num = num;
1367 params->rate_den = den;
1368 }
1369 return err;
1370}
1371
1372/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001373 * snd_pcm_hw_constraint_ratdens - apply ratdens constraint to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001374 * @runtime: PCM runtime instance
1375 * @cond: condition bits
1376 * @var: hw_params variable to apply the ratdens constraint
Takashi Iwai877211f2005-11-17 13:59:38 +01001377 * @r: struct snd_ratdens constriants
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001378 *
1379 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001381int snd_pcm_hw_constraint_ratdens(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 unsigned int cond,
1383 snd_pcm_hw_param_t var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001384 const struct snd_pcm_hw_constraint_ratdens *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
1386 return snd_pcm_hw_rule_add(runtime, cond, var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001387 snd_pcm_hw_rule_ratdens, (void *)r,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 var, -1);
1389}
1390
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001391EXPORT_SYMBOL(snd_pcm_hw_constraint_ratdens);
1392
Takashi Iwai877211f2005-11-17 13:59:38 +01001393static int snd_pcm_hw_rule_msbits(struct snd_pcm_hw_params *params,
1394 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 unsigned int l = (unsigned long) rule->private;
1397 int width = l & 0xffff;
1398 unsigned int msbits = l >> 16;
Takashi Sakamotob55f9fd2017-05-17 08:48:20 +09001399 const struct snd_interval *i =
1400 hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001401
1402 if (!snd_interval_single(i))
1403 return 0;
1404
1405 if ((snd_interval_value(i) == width) ||
1406 (width == 0 && snd_interval_value(i) > msbits))
Lars-Peter Clausen19f52fa2014-12-29 18:43:36 +01001407 params->msbits = min_not_zero(params->msbits, msbits);
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return 0;
1410}
1411
1412/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001413 * snd_pcm_hw_constraint_msbits - add a hw constraint msbits rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001414 * @runtime: PCM runtime instance
1415 * @cond: condition bits
1416 * @width: sample bits width
1417 * @msbits: msbits width
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001418 *
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001419 * This constraint will set the number of most significant bits (msbits) if a
1420 * sample format with the specified width has been select. If width is set to 0
1421 * the msbits will be set for any sample format with a width larger than the
1422 * specified msbits.
1423 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001424 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001426int snd_pcm_hw_constraint_msbits(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 unsigned int cond,
1428 unsigned int width,
1429 unsigned int msbits)
1430{
1431 unsigned long l = (msbits << 16) | width;
1432 return snd_pcm_hw_rule_add(runtime, cond, -1,
1433 snd_pcm_hw_rule_msbits,
1434 (void*) l,
1435 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1436}
1437
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001438EXPORT_SYMBOL(snd_pcm_hw_constraint_msbits);
1439
Takashi Iwai877211f2005-11-17 13:59:38 +01001440static int snd_pcm_hw_rule_step(struct snd_pcm_hw_params *params,
1441 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
1443 unsigned long step = (unsigned long) rule->private;
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001444 return snd_interval_step(hw_param_interval(params, rule->var), step);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
1447/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001448 * snd_pcm_hw_constraint_step - add a hw constraint step rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001449 * @runtime: PCM runtime instance
1450 * @cond: condition bits
1451 * @var: hw_params variable to apply the step constraint
1452 * @step: step size
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001453 *
1454 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001456int snd_pcm_hw_constraint_step(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 unsigned int cond,
1458 snd_pcm_hw_param_t var,
1459 unsigned long step)
1460{
1461 return snd_pcm_hw_rule_add(runtime, cond, var,
1462 snd_pcm_hw_rule_step, (void *) step,
1463 var, -1);
1464}
1465
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001466EXPORT_SYMBOL(snd_pcm_hw_constraint_step);
1467
Takashi Iwai877211f2005-11-17 13:59:38 +01001468static int snd_pcm_hw_rule_pow2(struct snd_pcm_hw_params *params, struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Marcin Åšlusarz67c39312007-12-14 12:53:21 +01001470 static unsigned int pow2_sizes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 1<<0, 1<<1, 1<<2, 1<<3, 1<<4, 1<<5, 1<<6, 1<<7,
1472 1<<8, 1<<9, 1<<10, 1<<11, 1<<12, 1<<13, 1<<14, 1<<15,
1473 1<<16, 1<<17, 1<<18, 1<<19, 1<<20, 1<<21, 1<<22, 1<<23,
1474 1<<24, 1<<25, 1<<26, 1<<27, 1<<28, 1<<29, 1<<30
1475 };
1476 return snd_interval_list(hw_param_interval(params, rule->var),
1477 ARRAY_SIZE(pow2_sizes), pow2_sizes, 0);
1478}
1479
1480/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001481 * snd_pcm_hw_constraint_pow2 - add a hw constraint power-of-2 rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001482 * @runtime: PCM runtime instance
1483 * @cond: condition bits
1484 * @var: hw_params variable to apply the power-of-2 constraint
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001485 *
1486 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001488int snd_pcm_hw_constraint_pow2(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 unsigned int cond,
1490 snd_pcm_hw_param_t var)
1491{
1492 return snd_pcm_hw_rule_add(runtime, cond, var,
1493 snd_pcm_hw_rule_pow2, NULL,
1494 var, -1);
1495}
1496
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001497EXPORT_SYMBOL(snd_pcm_hw_constraint_pow2);
1498
Clemens Ladischd5b702a2011-09-16 23:03:02 +02001499static int snd_pcm_hw_rule_noresample_func(struct snd_pcm_hw_params *params,
1500 struct snd_pcm_hw_rule *rule)
1501{
1502 unsigned int base_rate = (unsigned int)(uintptr_t)rule->private;
1503 struct snd_interval *rate;
1504
1505 rate = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1506 return snd_interval_list(rate, 1, &base_rate, 0);
1507}
1508
1509/**
1510 * snd_pcm_hw_rule_noresample - add a rule to allow disabling hw resampling
1511 * @runtime: PCM runtime instance
1512 * @base_rate: the rate at which the hardware does not resample
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001513 *
1514 * Return: Zero if successful, or a negative error code on failure.
Clemens Ladischd5b702a2011-09-16 23:03:02 +02001515 */
1516int snd_pcm_hw_rule_noresample(struct snd_pcm_runtime *runtime,
1517 unsigned int base_rate)
1518{
1519 return snd_pcm_hw_rule_add(runtime, SNDRV_PCM_HW_PARAMS_NORESAMPLE,
1520 SNDRV_PCM_HW_PARAM_RATE,
1521 snd_pcm_hw_rule_noresample_func,
1522 (void *)(uintptr_t)base_rate,
1523 SNDRV_PCM_HW_PARAM_RATE, -1);
1524}
1525EXPORT_SYMBOL(snd_pcm_hw_rule_noresample);
1526
Takashi Iwai877211f2005-11-17 13:59:38 +01001527static void _snd_pcm_hw_param_any(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001528 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 if (hw_is_mask(var)) {
1531 snd_mask_any(hw_param_mask(params, var));
1532 params->cmask |= 1 << var;
1533 params->rmask |= 1 << var;
1534 return;
1535 }
1536 if (hw_is_interval(var)) {
1537 snd_interval_any(hw_param_interval(params, var));
1538 params->cmask |= 1 << var;
1539 params->rmask |= 1 << var;
1540 return;
1541 }
1542 snd_BUG();
1543}
1544
Takashi Iwai877211f2005-11-17 13:59:38 +01001545void _snd_pcm_hw_params_any(struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
1547 unsigned int k;
1548 memset(params, 0, sizeof(*params));
1549 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++)
1550 _snd_pcm_hw_param_any(params, k);
1551 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
1552 _snd_pcm_hw_param_any(params, k);
1553 params->info = ~0U;
1554}
1555
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001556EXPORT_SYMBOL(_snd_pcm_hw_params_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001559 * snd_pcm_hw_param_value - return @params field @var value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001560 * @params: the hw_params instance
1561 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001562 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001564 * Return: The value for field @var if it's fixed in configuration space
1565 * defined by @params. -%EINVAL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001567int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
1568 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 if (hw_is_mask(var)) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001571 const struct snd_mask *mask = hw_param_mask_c(params, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (!snd_mask_single(mask))
1573 return -EINVAL;
1574 if (dir)
1575 *dir = 0;
1576 return snd_mask_value(mask);
1577 }
1578 if (hw_is_interval(var)) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001579 const struct snd_interval *i = hw_param_interval_c(params, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (!snd_interval_single(i))
1581 return -EINVAL;
1582 if (dir)
1583 *dir = i->openmin;
1584 return snd_interval_value(i);
1585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return -EINVAL;
1587}
1588
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001589EXPORT_SYMBOL(snd_pcm_hw_param_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Takashi Iwai877211f2005-11-17 13:59:38 +01001591void _snd_pcm_hw_param_setempty(struct snd_pcm_hw_params *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 snd_pcm_hw_param_t var)
1593{
1594 if (hw_is_mask(var)) {
1595 snd_mask_none(hw_param_mask(params, var));
1596 params->cmask |= 1 << var;
1597 params->rmask |= 1 << var;
1598 } else if (hw_is_interval(var)) {
1599 snd_interval_none(hw_param_interval(params, var));
1600 params->cmask |= 1 << var;
1601 params->rmask |= 1 << var;
1602 } else {
1603 snd_BUG();
1604 }
1605}
1606
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001607EXPORT_SYMBOL(_snd_pcm_hw_param_setempty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Takashi Iwai877211f2005-11-17 13:59:38 +01001609static int _snd_pcm_hw_param_first(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001610 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 int changed;
1613 if (hw_is_mask(var))
1614 changed = snd_mask_refine_first(hw_param_mask(params, var));
1615 else if (hw_is_interval(var))
1616 changed = snd_interval_refine_first(hw_param_interval(params, var));
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001617 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 if (changed) {
1620 params->cmask |= 1 << var;
1621 params->rmask |= 1 << var;
1622 }
1623 return changed;
1624}
1625
1626
1627/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001628 * snd_pcm_hw_param_first - refine config space and return minimum value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001629 * @pcm: PCM instance
1630 * @params: the hw_params instance
1631 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001632 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001634 * Inside configuration space defined by @params remove from @var all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 * values > minimum. Reduce configuration space accordingly.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001636 *
1637 * Return: The minimum, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001639int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
1640 struct snd_pcm_hw_params *params,
1641 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
1643 int changed = _snd_pcm_hw_param_first(params, var);
1644 if (changed < 0)
1645 return changed;
1646 if (params->rmask) {
1647 int err = snd_pcm_hw_refine(pcm, params);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001648 if (snd_BUG_ON(err < 0))
1649 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651 return snd_pcm_hw_param_value(params, var, dir);
1652}
1653
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001654EXPORT_SYMBOL(snd_pcm_hw_param_first);
1655
Takashi Iwai877211f2005-11-17 13:59:38 +01001656static int _snd_pcm_hw_param_last(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001657 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 int changed;
1660 if (hw_is_mask(var))
1661 changed = snd_mask_refine_last(hw_param_mask(params, var));
1662 else if (hw_is_interval(var))
1663 changed = snd_interval_refine_last(hw_param_interval(params, var));
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001664 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (changed) {
1667 params->cmask |= 1 << var;
1668 params->rmask |= 1 << var;
1669 }
1670 return changed;
1671}
1672
1673
1674/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001675 * snd_pcm_hw_param_last - refine config space and return maximum value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001676 * @pcm: PCM instance
1677 * @params: the hw_params instance
1678 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001679 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001681 * Inside configuration space defined by @params remove from @var all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 * values < maximum. Reduce configuration space accordingly.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001683 *
1684 * Return: The maximum, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001686int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
1687 struct snd_pcm_hw_params *params,
1688 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
1690 int changed = _snd_pcm_hw_param_last(params, var);
1691 if (changed < 0)
1692 return changed;
1693 if (params->rmask) {
1694 int err = snd_pcm_hw_refine(pcm, params);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001695 if (snd_BUG_ON(err < 0))
1696 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 return snd_pcm_hw_param_value(params, var, dir);
1699}
1700
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001701EXPORT_SYMBOL(snd_pcm_hw_param_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Takashi Iwai877211f2005-11-17 13:59:38 +01001703static int snd_pcm_lib_ioctl_reset(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 void *arg)
1705{
Takashi Iwai877211f2005-11-17 13:59:38 +01001706 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 unsigned long flags;
1708 snd_pcm_stream_lock_irqsave(substream, flags);
1709 if (snd_pcm_running(substream) &&
1710 snd_pcm_update_hw_ptr(substream) >= 0)
1711 runtime->status->hw_ptr %= runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -05001712 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 runtime->status->hw_ptr = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -05001714 runtime->hw_ptr_wrap = 0;
1715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 snd_pcm_stream_unlock_irqrestore(substream, flags);
1717 return 0;
1718}
1719
Takashi Iwai877211f2005-11-17 13:59:38 +01001720static int snd_pcm_lib_ioctl_channel_info(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 void *arg)
1722{
Takashi Iwai877211f2005-11-17 13:59:38 +01001723 struct snd_pcm_channel_info *info = arg;
1724 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 int width;
1726 if (!(runtime->info & SNDRV_PCM_INFO_MMAP)) {
1727 info->offset = -1;
1728 return 0;
1729 }
1730 width = snd_pcm_format_physical_width(runtime->format);
1731 if (width < 0)
1732 return width;
1733 info->offset = 0;
1734 switch (runtime->access) {
1735 case SNDRV_PCM_ACCESS_MMAP_INTERLEAVED:
1736 case SNDRV_PCM_ACCESS_RW_INTERLEAVED:
1737 info->first = info->channel * width;
1738 info->step = runtime->channels * width;
1739 break;
1740 case SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED:
1741 case SNDRV_PCM_ACCESS_RW_NONINTERLEAVED:
1742 {
1743 size_t size = runtime->dma_bytes / runtime->channels;
1744 info->first = info->channel * size * 8;
1745 info->step = width;
1746 break;
1747 }
1748 default:
1749 snd_BUG();
1750 break;
1751 }
1752 return 0;
1753}
1754
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001755static int snd_pcm_lib_ioctl_fifo_size(struct snd_pcm_substream *substream,
1756 void *arg)
1757{
1758 struct snd_pcm_hw_params *params = arg;
1759 snd_pcm_format_t format;
Clemens Ladischa9960e62014-09-21 22:50:57 +02001760 int channels;
1761 ssize_t frame_size;
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001762
1763 params->fifo_size = substream->runtime->hw.fifo_size;
1764 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) {
1765 format = params_format(params);
1766 channels = params_channels(params);
Clemens Ladischa9960e62014-09-21 22:50:57 +02001767 frame_size = snd_pcm_format_size(format, channels);
1768 if (frame_size > 0)
1769 params->fifo_size /= (unsigned)frame_size;
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001770 }
1771 return 0;
1772}
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774/**
1775 * snd_pcm_lib_ioctl - a generic PCM ioctl callback
1776 * @substream: the pcm substream instance
1777 * @cmd: ioctl command
1778 * @arg: ioctl argument
1779 *
1780 * Processes the generic ioctl commands for PCM.
1781 * Can be passed as the ioctl callback for PCM ops.
1782 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001783 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001785int snd_pcm_lib_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 unsigned int cmd, void *arg)
1787{
1788 switch (cmd) {
1789 case SNDRV_PCM_IOCTL1_INFO:
1790 return 0;
1791 case SNDRV_PCM_IOCTL1_RESET:
1792 return snd_pcm_lib_ioctl_reset(substream, arg);
1793 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
1794 return snd_pcm_lib_ioctl_channel_info(substream, arg);
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001795 case SNDRV_PCM_IOCTL1_FIFO_SIZE:
1796 return snd_pcm_lib_ioctl_fifo_size(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798 return -ENXIO;
1799}
1800
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001801EXPORT_SYMBOL(snd_pcm_lib_ioctl);
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803/**
1804 * snd_pcm_period_elapsed - update the pcm status for the next period
1805 * @substream: the pcm substream instance
1806 *
1807 * This function is called from the interrupt handler when the
1808 * PCM has processed the period size. It will update the current
Takashi Iwai31e89602008-01-08 18:09:57 +01001809 * pointer, wake up sleepers, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 *
1811 * Even if more than one periods have elapsed since the last call, you
1812 * have to call this only once.
1813 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001814void snd_pcm_period_elapsed(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Takashi Iwai877211f2005-11-17 13:59:38 +01001816 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 unsigned long flags;
1818
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001819 if (PCM_RUNTIME_CHECK(substream))
1820 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 snd_pcm_stream_lock_irqsave(substream, flags);
1824 if (!snd_pcm_running(substream) ||
Jaroslav Kyselaf2404062010-01-05 17:19:34 +01001825 snd_pcm_update_hw_ptr0(substream, 1) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 goto _end;
1827
Jie Yang90bbaf62015-10-16 17:57:46 +08001828#ifdef CONFIG_SND_PCM_TIMER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (substream->timer_running)
1830 snd_timer_interrupt(substream->timer, 1);
Jie Yang90bbaf62015-10-16 17:57:46 +08001831#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 _end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 kill_fasync(&runtime->fasync, SIGIO, POLL_IN);
Takashi Iwai3aa02cb2016-04-14 18:02:37 +02001834 snd_pcm_stream_unlock_irqrestore(substream, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835}
1836
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001837EXPORT_SYMBOL(snd_pcm_period_elapsed);
1838
Takashi Iwai13075512008-01-08 18:08:14 +01001839/*
1840 * Wait until avail_min data becomes available
1841 * Returns a negative error code if any error occurs during operation.
1842 * The available space is stored on availp. When err = 0 and avail = 0
1843 * on the capture stream, it indicates the stream is in DRAINING state.
1844 */
David Dillow5daeba32010-06-27 00:13:20 +02001845static int wait_for_avail(struct snd_pcm_substream *substream,
Takashi Iwai13075512008-01-08 18:08:14 +01001846 snd_pcm_uframes_t *availp)
1847{
1848 struct snd_pcm_runtime *runtime = substream->runtime;
1849 int is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1850 wait_queue_t wait;
1851 int err = 0;
1852 snd_pcm_uframes_t avail = 0;
Takashi Iwaif2b36142011-05-26 08:09:38 +02001853 long wait_time, tout;
Takashi Iwai13075512008-01-08 18:08:14 +01001854
Arjan van de Ven763437a2011-09-15 08:49:25 +02001855 init_waitqueue_entry(&wait, current);
1856 set_current_state(TASK_INTERRUPTIBLE);
1857 add_wait_queue(&runtime->tsleep, &wait);
1858
Takashi Iwaif2b36142011-05-26 08:09:38 +02001859 if (runtime->no_period_wakeup)
1860 wait_time = MAX_SCHEDULE_TIMEOUT;
1861 else {
1862 wait_time = 10;
1863 if (runtime->rate) {
1864 long t = runtime->period_size * 2 / runtime->rate;
1865 wait_time = max(t, wait_time);
1866 }
1867 wait_time = msecs_to_jiffies(wait_time * 1000);
1868 }
Arjan van de Ven763437a2011-09-15 08:49:25 +02001869
Takashi Iwai13075512008-01-08 18:08:14 +01001870 for (;;) {
1871 if (signal_pending(current)) {
1872 err = -ERESTARTSYS;
1873 break;
1874 }
Arjan van de Ven763437a2011-09-15 08:49:25 +02001875
1876 /*
1877 * We need to check if space became available already
1878 * (and thus the wakeup happened already) first to close
1879 * the race of space already having become available.
1880 * This check must happen after been added to the waitqueue
1881 * and having current state be INTERRUPTIBLE.
1882 */
1883 if (is_playback)
1884 avail = snd_pcm_playback_avail(runtime);
1885 else
1886 avail = snd_pcm_capture_avail(runtime);
1887 if (avail >= runtime->twake)
1888 break;
Takashi Iwai13075512008-01-08 18:08:14 +01001889 snd_pcm_stream_unlock_irq(substream);
Arjan van de Ven763437a2011-09-15 08:49:25 +02001890
1891 tout = schedule_timeout(wait_time);
1892
Takashi Iwai13075512008-01-08 18:08:14 +01001893 snd_pcm_stream_lock_irq(substream);
Arjan van de Ven763437a2011-09-15 08:49:25 +02001894 set_current_state(TASK_INTERRUPTIBLE);
Takashi Iwai13075512008-01-08 18:08:14 +01001895 switch (runtime->status->state) {
1896 case SNDRV_PCM_STATE_SUSPENDED:
1897 err = -ESTRPIPE;
1898 goto _endloop;
1899 case SNDRV_PCM_STATE_XRUN:
1900 err = -EPIPE;
1901 goto _endloop;
1902 case SNDRV_PCM_STATE_DRAINING:
1903 if (is_playback)
1904 err = -EPIPE;
1905 else
1906 avail = 0; /* indicate draining */
1907 goto _endloop;
1908 case SNDRV_PCM_STATE_OPEN:
1909 case SNDRV_PCM_STATE_SETUP:
1910 case SNDRV_PCM_STATE_DISCONNECTED:
1911 err = -EBADFD;
1912 goto _endloop;
JongHo Kimed697e12013-12-17 23:02:24 +09001913 case SNDRV_PCM_STATE_PAUSED:
1914 continue;
Takashi Iwai13075512008-01-08 18:08:14 +01001915 }
1916 if (!tout) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01001917 pcm_dbg(substream->pcm,
1918 "%s write error (DMA or IRQ trouble?)\n",
1919 is_playback ? "playback" : "capture");
Takashi Iwai13075512008-01-08 18:08:14 +01001920 err = -EIO;
1921 break;
1922 }
Takashi Iwai13075512008-01-08 18:08:14 +01001923 }
1924 _endloop:
Arjan van de Ven763437a2011-09-15 08:49:25 +02001925 set_current_state(TASK_RUNNING);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001926 remove_wait_queue(&runtime->tsleep, &wait);
Takashi Iwai13075512008-01-08 18:08:14 +01001927 *availp = avail;
1928 return err;
1929}
1930
Takashi Iwai9f600632017-05-24 18:15:26 +02001931typedef int (*pcm_transfer_f)(struct snd_pcm_substream *substream,
1932 int channel, unsigned long hwoff,
1933 void *buf, unsigned long bytes);
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02001934
Takashi Iwai9f600632017-05-24 18:15:26 +02001935typedef int (*pcm_copy_f)(struct snd_pcm_substream *, snd_pcm_uframes_t, void *,
1936 snd_pcm_uframes_t, snd_pcm_uframes_t, pcm_transfer_f);
1937
1938/* calculate the target DMA-buffer position to be written/read */
1939static void *get_dma_ptr(struct snd_pcm_runtime *runtime,
1940 int channel, unsigned long hwoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
Takashi Iwai9f600632017-05-24 18:15:26 +02001942 return runtime->dma_area + hwoff +
1943 channel * (runtime->dma_bytes / runtime->channels);
1944}
1945
Takashi Iwai5c7264c2017-05-24 22:36:23 +02001946/* default copy_user ops for write; used for both interleaved and non- modes */
1947static int default_write_copy(struct snd_pcm_substream *substream,
1948 int channel, unsigned long hwoff,
1949 void *buf, unsigned long bytes)
Takashi Iwai9f600632017-05-24 18:15:26 +02001950{
1951 if (copy_from_user(get_dma_ptr(substream->runtime, channel, hwoff),
Takashi Iwai5c7264c2017-05-24 22:36:23 +02001952 (void __user *)buf, bytes))
Takashi Iwai9f600632017-05-24 18:15:26 +02001953 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return 0;
1955}
Takashi Iwai9f600632017-05-24 18:15:26 +02001956
Takashi Iwai68541212017-05-24 18:23:20 +02001957/* default copy_kernel ops for write */
1958static int default_write_copy_kernel(struct snd_pcm_substream *substream,
1959 int channel, unsigned long hwoff,
1960 void *buf, unsigned long bytes)
1961{
1962 memcpy(get_dma_ptr(substream->runtime, channel, hwoff), buf, bytes);
1963 return 0;
1964}
1965
Takashi Iwai9f600632017-05-24 18:15:26 +02001966/* fill silence instead of copy data; called as a transfer helper
1967 * from __snd_pcm_lib_write() or directly from noninterleaved_copy() when
1968 * a NULL buffer is passed
1969 */
1970static int fill_silence(struct snd_pcm_substream *substream, int channel,
1971 unsigned long hwoff, void *buf, unsigned long bytes)
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02001972{
1973 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02001974
Takashi Iwai9f600632017-05-24 18:15:26 +02001975 if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
1976 return 0;
1977 if (substream->ops->fill_silence)
1978 return substream->ops->fill_silence(substream, channel,
1979 hwoff, bytes);
1980
1981 snd_pcm_format_set_silence(runtime->format,
1982 get_dma_ptr(runtime, channel, hwoff),
1983 bytes_to_samples(runtime, bytes));
1984 return 0;
1985}
1986
Takashi Iwai5c7264c2017-05-24 22:36:23 +02001987/* default copy_user ops for read; used for both interleaved and non- modes */
1988static int default_read_copy(struct snd_pcm_substream *substream,
1989 int channel, unsigned long hwoff,
1990 void *buf, unsigned long bytes)
1991{
1992 if (copy_to_user((void __user *)buf,
1993 get_dma_ptr(substream->runtime, channel, hwoff),
1994 bytes))
1995 return -EFAULT;
1996 return 0;
1997}
1998
Takashi Iwai68541212017-05-24 18:23:20 +02001999/* default copy_kernel ops for read */
2000static int default_read_copy_kernel(struct snd_pcm_substream *substream,
2001 int channel, unsigned long hwoff,
2002 void *buf, unsigned long bytes)
2003{
2004 memcpy(buf, get_dma_ptr(substream->runtime, channel, hwoff), bytes);
2005 return 0;
2006}
2007
Takashi Iwai9f600632017-05-24 18:15:26 +02002008/* call transfer function with the converted pointers and sizes;
2009 * for interleaved mode, it's one shot for all samples
2010 */
2011static int interleaved_copy(struct snd_pcm_substream *substream,
2012 snd_pcm_uframes_t hwoff, void *data,
2013 snd_pcm_uframes_t off,
2014 snd_pcm_uframes_t frames,
2015 pcm_transfer_f transfer)
2016{
2017 struct snd_pcm_runtime *runtime = substream->runtime;
2018
2019 /* convert to bytes */
2020 hwoff = frames_to_bytes(runtime, hwoff);
2021 off = frames_to_bytes(runtime, off);
2022 frames = frames_to_bytes(runtime, frames);
2023 return transfer(substream, 0, hwoff, data + off, frames);
2024}
2025
2026/* call transfer function with the converted pointers and sizes for each
2027 * non-interleaved channel; when buffer is NULL, silencing instead of copying
2028 */
2029static int noninterleaved_copy(struct snd_pcm_substream *substream,
2030 snd_pcm_uframes_t hwoff, void *data,
2031 snd_pcm_uframes_t off,
2032 snd_pcm_uframes_t frames,
2033 pcm_transfer_f transfer)
2034{
2035 struct snd_pcm_runtime *runtime = substream->runtime;
2036 int channels = runtime->channels;
2037 void **bufs = data;
2038 int c, err;
2039
2040 /* convert to bytes; note that it's not frames_to_bytes() here.
2041 * in non-interleaved mode, we copy for each channel, thus
2042 * each copy is n_samples bytes x channels = whole frames.
2043 */
2044 off = samples_to_bytes(runtime, off);
2045 frames = samples_to_bytes(runtime, frames);
2046 hwoff = samples_to_bytes(runtime, hwoff);
2047 for (c = 0; c < channels; ++c, ++bufs) {
2048 if (!data || !*bufs)
2049 err = fill_silence(substream, c, hwoff, NULL, frames);
2050 else
2051 err = transfer(substream, c, hwoff, *bufs + off,
2052 frames);
2053 if (err < 0)
2054 return err;
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02002055 }
2056 return 0;
2057}
2058
Takashi Iwaia9cd29e2017-05-24 18:18:15 +02002059/* fill silence on the given buffer position;
2060 * called from snd_pcm_playback_silence()
2061 */
2062static int fill_silence_frames(struct snd_pcm_substream *substream,
2063 snd_pcm_uframes_t off, snd_pcm_uframes_t frames)
2064{
2065 if (substream->runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
2066 substream->runtime->access == SNDRV_PCM_ACCESS_MMAP_INTERLEAVED)
2067 return interleaved_copy(substream, off, NULL, 0, frames,
2068 fill_silence);
2069 else
2070 return noninterleaved_copy(substream, off, NULL, 0, frames,
2071 fill_silence);
2072}
2073
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02002074/* sanity-check for read/write methods */
2075static int pcm_sanity_check(struct snd_pcm_substream *substream)
2076{
2077 struct snd_pcm_runtime *runtime;
2078 if (PCM_RUNTIME_CHECK(substream))
2079 return -ENXIO;
2080 runtime = substream->runtime;
2081 if (snd_BUG_ON(!substream->ops->copy_user && !runtime->dma_area))
2082 return -EINVAL;
2083 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2084 return -EBADFD;
2085 return 0;
2086}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Takashi Iwai6ba63922017-05-24 17:51:30 +02002088static int pcm_accessible_state(struct snd_pcm_runtime *runtime)
2089{
2090 switch (runtime->status->state) {
2091 case SNDRV_PCM_STATE_PREPARED:
2092 case SNDRV_PCM_STATE_RUNNING:
2093 case SNDRV_PCM_STATE_PAUSED:
2094 return 0;
2095 case SNDRV_PCM_STATE_XRUN:
2096 return -EPIPE;
2097 case SNDRV_PCM_STATE_SUSPENDED:
2098 return -ESTRPIPE;
2099 default:
2100 return -EBADFD;
2101 }
2102}
2103
Takashi Sakamoto66e01a52017-06-12 09:41:44 +09002104/* update to the given appl_ptr and call ack callback if needed;
2105 * when an error is returned, take back to the original value
2106 */
2107int pcm_lib_apply_appl_ptr(struct snd_pcm_substream *substream,
2108 snd_pcm_uframes_t appl_ptr)
2109{
2110 struct snd_pcm_runtime *runtime = substream->runtime;
2111 snd_pcm_uframes_t old_appl_ptr = runtime->control->appl_ptr;
2112 int ret;
2113
2114 runtime->control->appl_ptr = appl_ptr;
2115 if (substream->ops->ack) {
2116 ret = substream->ops->ack(substream);
2117 if (ret < 0) {
2118 runtime->control->appl_ptr = old_appl_ptr;
2119 return ret;
2120 }
2121 }
2122 return 0;
2123}
2124
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002125/* the common loop for read/write data */
2126snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream,
2127 void *data, bool interleaved,
Takashi Iwai68541212017-05-24 18:23:20 +02002128 snd_pcm_uframes_t size, bool in_kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Takashi Iwai877211f2005-11-17 13:59:38 +01002130 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 snd_pcm_uframes_t xfer = 0;
2132 snd_pcm_uframes_t offset = 0;
Takashi Iwai0910c212012-05-11 17:50:49 +02002133 snd_pcm_uframes_t avail;
Takashi Iwai9f600632017-05-24 18:15:26 +02002134 pcm_copy_f writer;
2135 pcm_transfer_f transfer;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002136 bool nonblock;
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002137 bool is_playback;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002138 int err;
2139
2140 err = pcm_sanity_check(substream);
2141 if (err < 0)
2142 return err;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002143
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002144 is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002145 if (interleaved) {
2146 if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED &&
2147 runtime->channels > 1)
2148 return -EINVAL;
Takashi Iwai9f600632017-05-24 18:15:26 +02002149 writer = interleaved_copy;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002150 } else {
2151 if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
2152 return -EINVAL;
Takashi Iwai9f600632017-05-24 18:15:26 +02002153 writer = noninterleaved_copy;
2154 }
2155
2156 if (!data) {
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002157 if (is_playback)
2158 transfer = fill_silence;
2159 else
2160 return -EINVAL;
Takashi Iwai68541212017-05-24 18:23:20 +02002161 } else if (in_kernel) {
2162 if (substream->ops->copy_kernel)
2163 transfer = substream->ops->copy_kernel;
2164 else
2165 transfer = is_playback ?
2166 default_write_copy_kernel : default_read_copy_kernel;
Takashi Iwai9f600632017-05-24 18:15:26 +02002167 } else {
2168 if (substream->ops->copy_user)
2169 transfer = (pcm_transfer_f)substream->ops->copy_user;
2170 else
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002171 transfer = is_playback ?
2172 default_write_copy : default_read_copy;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 if (size == 0)
2176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002178 nonblock = !!(substream->f_flags & O_NONBLOCK);
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 snd_pcm_stream_lock_irq(substream);
Takashi Iwai6ba63922017-05-24 17:51:30 +02002181 err = pcm_accessible_state(runtime);
2182 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002185 if (!is_playback &&
2186 runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
2187 size >= runtime->start_threshold) {
2188 err = snd_pcm_start(substream);
2189 if (err < 0)
2190 goto _end_unlock;
2191 }
2192
David Dillow5daeba32010-06-27 00:13:20 +02002193 runtime->twake = runtime->control->avail_min ? : 1;
Takashi Iwai0910c212012-05-11 17:50:49 +02002194 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
2195 snd_pcm_update_hw_ptr(substream);
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002196 if (is_playback)
2197 avail = snd_pcm_playback_avail(runtime);
2198 else
2199 avail = snd_pcm_capture_avail(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 while (size > 0) {
2201 snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 snd_pcm_uframes_t cont;
Takashi Iwai13075512008-01-08 18:08:14 +01002203 if (!avail) {
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002204 if (!is_playback &&
2205 runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
2206 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
2207 goto _end_unlock;
2208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 if (nonblock) {
2210 err = -EAGAIN;
2211 goto _end_unlock;
2212 }
David Dillow5daeba32010-06-27 00:13:20 +02002213 runtime->twake = min_t(snd_pcm_uframes_t, size,
2214 runtime->control->avail_min ? : 1);
2215 err = wait_for_avail(substream, &avail);
Takashi Iwai13075512008-01-08 18:08:14 +01002216 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 goto _end_unlock;
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002218 if (!avail)
2219 continue; /* draining */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 frames = size > avail ? avail : size;
2222 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
2223 if (frames > cont)
2224 frames = cont;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002225 if (snd_BUG_ON(!frames)) {
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002226 runtime->twake = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002227 snd_pcm_stream_unlock_irq(substream);
2228 return -EINVAL;
2229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 appl_ptr = runtime->control->appl_ptr;
2231 appl_ofs = appl_ptr % runtime->buffer_size;
2232 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai9f600632017-05-24 18:15:26 +02002233 err = writer(substream, appl_ofs, data, offset, frames,
2234 transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 snd_pcm_stream_lock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +01002236 if (err < 0)
2237 goto _end_unlock;
Takashi Iwai6ba63922017-05-24 17:51:30 +02002238 err = pcm_accessible_state(runtime);
2239 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 appl_ptr += frames;
2242 if (appl_ptr >= runtime->boundary)
2243 appl_ptr -= runtime->boundary;
Takashi Sakamoto66e01a52017-06-12 09:41:44 +09002244 err = pcm_lib_apply_appl_ptr(substream, appl_ptr);
2245 if (err < 0)
2246 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 offset += frames;
2249 size -= frames;
2250 xfer += frames;
Takashi Iwai0910c212012-05-11 17:50:49 +02002251 avail -= frames;
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002252 if (is_playback &&
2253 runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 snd_pcm_playback_hw_avail(runtime) >= (snd_pcm_sframes_t)runtime->start_threshold) {
2255 err = snd_pcm_start(substream);
2256 if (err < 0)
2257 goto _end_unlock;
2258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
2260 _end_unlock:
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002261 runtime->twake = 0;
Jaroslav Kysela12509322010-01-07 15:36:31 +01002262 if (xfer > 0 && err >= 0)
2263 snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 snd_pcm_stream_unlock_irq(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err;
2266}
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002267EXPORT_SYMBOL(__snd_pcm_lib_xfer);
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002268
2269/*
2270 * standard channel mapping helpers
2271 */
2272
2273/* default channel maps for multi-channel playbacks, up to 8 channels */
2274const struct snd_pcm_chmap_elem snd_pcm_std_chmaps[] = {
2275 { .channels = 1,
Takashi Iwai5efbc262012-09-13 14:48:46 +02002276 .map = { SNDRV_CHMAP_MONO } },
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002277 { .channels = 2,
2278 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
2279 { .channels = 4,
2280 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2281 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2282 { .channels = 6,
2283 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2284 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2285 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE } },
2286 { .channels = 8,
2287 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2288 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2289 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2290 SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } },
2291 { }
2292};
2293EXPORT_SYMBOL_GPL(snd_pcm_std_chmaps);
2294
2295/* alternative channel maps with CLFE <-> surround swapped for 6/8 channels */
2296const struct snd_pcm_chmap_elem snd_pcm_alt_chmaps[] = {
2297 { .channels = 1,
Takashi Iwai5efbc262012-09-13 14:48:46 +02002298 .map = { SNDRV_CHMAP_MONO } },
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002299 { .channels = 2,
2300 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
2301 { .channels = 4,
2302 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2303 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2304 { .channels = 6,
2305 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2306 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2307 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2308 { .channels = 8,
2309 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2310 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2311 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2312 SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } },
2313 { }
2314};
2315EXPORT_SYMBOL_GPL(snd_pcm_alt_chmaps);
2316
2317static bool valid_chmap_channels(const struct snd_pcm_chmap *info, int ch)
2318{
2319 if (ch > info->max_channels)
2320 return false;
2321 return !info->channel_mask || (info->channel_mask & (1U << ch));
2322}
2323
2324static int pcm_chmap_ctl_info(struct snd_kcontrol *kcontrol,
2325 struct snd_ctl_elem_info *uinfo)
2326{
2327 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2328
2329 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2330 uinfo->count = 0;
2331 uinfo->count = info->max_channels;
2332 uinfo->value.integer.min = 0;
2333 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
2334 return 0;
2335}
2336
2337/* get callback for channel map ctl element
2338 * stores the channel position firstly matching with the current channels
2339 */
2340static int pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
2341 struct snd_ctl_elem_value *ucontrol)
2342{
2343 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2344 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2345 struct snd_pcm_substream *substream;
2346 const struct snd_pcm_chmap_elem *map;
2347
2348 if (snd_BUG_ON(!info->chmap))
2349 return -EINVAL;
2350 substream = snd_pcm_chmap_substream(info, idx);
2351 if (!substream)
2352 return -ENODEV;
2353 memset(ucontrol->value.integer.value, 0,
2354 sizeof(ucontrol->value.integer.value));
2355 if (!substream->runtime)
2356 return 0; /* no channels set */
2357 for (map = info->chmap; map->channels; map++) {
2358 int i;
2359 if (map->channels == substream->runtime->channels &&
2360 valid_chmap_channels(info, map->channels)) {
2361 for (i = 0; i < map->channels; i++)
2362 ucontrol->value.integer.value[i] = map->map[i];
2363 return 0;
2364 }
2365 }
2366 return -EINVAL;
2367}
2368
2369/* tlv callback for channel map ctl element
2370 * expands the pre-defined channel maps in a form of TLV
2371 */
2372static int pcm_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2373 unsigned int size, unsigned int __user *tlv)
2374{
2375 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2376 const struct snd_pcm_chmap_elem *map;
2377 unsigned int __user *dst;
2378 int c, count = 0;
2379
2380 if (snd_BUG_ON(!info->chmap))
2381 return -EINVAL;
2382 if (size < 8)
2383 return -ENOMEM;
2384 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
2385 return -EFAULT;
2386 size -= 8;
2387 dst = tlv + 2;
2388 for (map = info->chmap; map->channels; map++) {
2389 int chs_bytes = map->channels * 4;
2390 if (!valid_chmap_channels(info, map->channels))
2391 continue;
2392 if (size < 8)
2393 return -ENOMEM;
2394 if (put_user(SNDRV_CTL_TLVT_CHMAP_FIXED, dst) ||
2395 put_user(chs_bytes, dst + 1))
2396 return -EFAULT;
2397 dst += 2;
2398 size -= 8;
2399 count += 8;
2400 if (size < chs_bytes)
2401 return -ENOMEM;
2402 size -= chs_bytes;
2403 count += chs_bytes;
2404 for (c = 0; c < map->channels; c++) {
2405 if (put_user(map->map[c], dst))
2406 return -EFAULT;
2407 dst++;
2408 }
2409 }
2410 if (put_user(count, tlv + 1))
2411 return -EFAULT;
2412 return 0;
2413}
2414
2415static void pcm_chmap_ctl_private_free(struct snd_kcontrol *kcontrol)
2416{
2417 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2418 info->pcm->streams[info->stream].chmap_kctl = NULL;
2419 kfree(info);
2420}
2421
2422/**
2423 * snd_pcm_add_chmap_ctls - create channel-mapping control elements
2424 * @pcm: the assigned PCM instance
2425 * @stream: stream direction
2426 * @chmap: channel map elements (for query)
2427 * @max_channels: the max number of channels for the stream
2428 * @private_value: the value passed to each kcontrol's private_value field
2429 * @info_ret: store struct snd_pcm_chmap instance if non-NULL
2430 *
2431 * Create channel-mapping control elements assigned to the given PCM stream(s).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01002432 * Return: Zero if successful, or a negative error value.
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002433 */
2434int snd_pcm_add_chmap_ctls(struct snd_pcm *pcm, int stream,
2435 const struct snd_pcm_chmap_elem *chmap,
2436 int max_channels,
2437 unsigned long private_value,
2438 struct snd_pcm_chmap **info_ret)
2439{
2440 struct snd_pcm_chmap *info;
2441 struct snd_kcontrol_new knew = {
2442 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2443 .access = SNDRV_CTL_ELEM_ACCESS_READ |
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002444 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2445 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2446 .info = pcm_chmap_ctl_info,
2447 .get = pcm_chmap_ctl_get,
2448 .tlv.c = pcm_chmap_ctl_tlv,
2449 };
2450 int err;
2451
Takashi Iwai8d879be2016-05-10 16:07:40 +02002452 if (WARN_ON(pcm->streams[stream].chmap_kctl))
2453 return -EBUSY;
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002454 info = kzalloc(sizeof(*info), GFP_KERNEL);
2455 if (!info)
2456 return -ENOMEM;
2457 info->pcm = pcm;
2458 info->stream = stream;
2459 info->chmap = chmap;
2460 info->max_channels = max_channels;
2461 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2462 knew.name = "Playback Channel Map";
2463 else
2464 knew.name = "Capture Channel Map";
2465 knew.device = pcm->device;
2466 knew.count = pcm->streams[stream].substream_count;
2467 knew.private_value = private_value;
2468 info->kctl = snd_ctl_new1(&knew, info);
2469 if (!info->kctl) {
2470 kfree(info);
2471 return -ENOMEM;
2472 }
2473 info->kctl->private_free = pcm_chmap_ctl_private_free;
2474 err = snd_ctl_add(pcm->card, info->kctl);
2475 if (err < 0)
2476 return err;
2477 pcm->streams[stream].chmap_kctl = info->kctl;
2478 if (info_ret)
2479 *info_ret = info;
2480 return 0;
2481}
2482EXPORT_SYMBOL_GPL(snd_pcm_add_chmap_ctls);