blob: af73c629a6b268b2395d283fa64886743f32d949 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * fill ring buffer with silence
49 * runtime->silence_start: starting pointer to silence area
50 * runtime->silence_filled: size filled with silence
51 * runtime->silence_threshold: threshold from application
52 * runtime->silence_size: maximal size from application
53 *
54 * when runtime->silence_size >= runtime->boundary - fill processed area with silence immediately
55 */
Takashi Iwai877211f2005-11-17 13:59:38 +010056void snd_pcm_playback_silence(struct snd_pcm_substream *substream, snd_pcm_uframes_t new_hw_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Takashi Iwai877211f2005-11-17 13:59:38 +010058 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 snd_pcm_uframes_t frames, ofs, transfer;
Takashi Iwai29d1a872017-05-10 20:02:35 +020060 char *hwbuf;
61 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 if (runtime->silence_size < runtime->boundary) {
64 snd_pcm_sframes_t noise_dist, n;
65 if (runtime->silence_start != runtime->control->appl_ptr) {
66 n = runtime->control->appl_ptr - runtime->silence_start;
67 if (n < 0)
68 n += runtime->boundary;
69 if ((snd_pcm_uframes_t)n < runtime->silence_filled)
70 runtime->silence_filled -= n;
71 else
72 runtime->silence_filled = 0;
73 runtime->silence_start = runtime->control->appl_ptr;
74 }
Takashi Iwai235475c2005-12-07 15:28:07 +010075 if (runtime->silence_filled >= runtime->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 noise_dist = snd_pcm_playback_hw_avail(runtime) + runtime->silence_filled;
78 if (noise_dist >= (snd_pcm_sframes_t) runtime->silence_threshold)
79 return;
80 frames = runtime->silence_threshold - noise_dist;
81 if (frames > runtime->silence_size)
82 frames = runtime->silence_size;
83 } else {
84 if (new_hw_ptr == ULONG_MAX) { /* initialization */
85 snd_pcm_sframes_t avail = snd_pcm_playback_hw_avail(runtime);
Jaroslav Kysela9e216e82010-07-19 16:37:39 +020086 if (avail > runtime->buffer_size)
87 avail = runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 runtime->silence_filled = avail > 0 ? avail : 0;
89 runtime->silence_start = (runtime->status->hw_ptr +
90 runtime->silence_filled) %
91 runtime->boundary;
92 } else {
93 ofs = runtime->status->hw_ptr;
94 frames = new_hw_ptr - ofs;
95 if ((snd_pcm_sframes_t)frames < 0)
96 frames += runtime->boundary;
97 runtime->silence_filled -= frames;
98 if ((snd_pcm_sframes_t)runtime->silence_filled < 0) {
99 runtime->silence_filled = 0;
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200100 runtime->silence_start = new_hw_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 } else {
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200102 runtime->silence_start = ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105 frames = runtime->buffer_size - runtime->silence_filled;
106 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200107 if (snd_BUG_ON(frames > runtime->buffer_size))
108 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (frames == 0)
110 return;
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200111 ofs = runtime->silence_start % runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 while (frames > 0) {
113 transfer = ofs + frames > runtime->buffer_size ? runtime->buffer_size - ofs : frames;
114 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
115 runtime->access == SNDRV_PCM_ACCESS_MMAP_INTERLEAVED) {
Takashi Iwai29d1a872017-05-10 20:02:35 +0200116 if (substream->ops->fill_silence) {
117 err = substream->ops->fill_silence(substream, 0,
118 frames_to_bytes(runtime, ofs),
119 frames_to_bytes(runtime, transfer));
120 snd_BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 } else {
Takashi Iwai29d1a872017-05-10 20:02:35 +0200122 hwbuf = runtime->dma_area + frames_to_bytes(runtime, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 snd_pcm_format_set_silence(runtime->format, hwbuf, transfer * runtime->channels);
124 }
125 } else {
126 unsigned int c;
127 unsigned int channels = runtime->channels;
Takashi Iwai29d1a872017-05-10 20:02:35 +0200128 if (substream->ops->fill_silence) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 for (c = 0; c < channels; ++c) {
Takashi Iwai29d1a872017-05-10 20:02:35 +0200130 err = substream->ops->fill_silence(substream, c,
131 samples_to_bytes(runtime, ofs),
132 samples_to_bytes(runtime, transfer));
133 snd_BUG_ON(err < 0);
134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 } else {
136 size_t dma_csize = runtime->dma_bytes / channels;
137 for (c = 0; c < channels; ++c) {
Takashi Iwai29d1a872017-05-10 20:02:35 +0200138 hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 snd_pcm_format_set_silence(runtime->format, hwbuf, transfer);
140 }
141 }
142 }
143 runtime->silence_filled += transfer;
144 frames -= transfer;
145 ofs = 0;
146 }
147}
148
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200149#ifdef CONFIG_SND_DEBUG
150void snd_pcm_debug_name(struct snd_pcm_substream *substream,
Takashi Iwaic0070112009-06-08 15:58:48 +0200151 char *name, size_t len)
152{
153 snprintf(name, len, "pcmC%dD%d%c:%d",
154 substream->pcm->card->number,
155 substream->pcm->device,
156 substream->stream ? 'c' : 'p',
157 substream->number);
158}
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200159EXPORT_SYMBOL(snd_pcm_debug_name);
160#endif
Takashi Iwaic0070112009-06-08 15:58:48 +0200161
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100162#define XRUN_DEBUG_BASIC (1<<0)
163#define XRUN_DEBUG_STACK (1<<1) /* dump also stack */
164#define XRUN_DEBUG_JIFFIESCHECK (1<<2) /* do jiffies check */
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100165
166#ifdef CONFIG_SND_PCM_XRUN_DEBUG
167
168#define xrun_debug(substream, mask) \
169 ((substream)->pstr->xrun_debug & (mask))
Jarkko Nikula0f170142010-03-26 16:07:25 +0200170#else
171#define xrun_debug(substream, mask) 0
172#endif
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100173
174#define dump_stack_on_xrun(substream) do { \
175 if (xrun_debug(substream, XRUN_DEBUG_STACK)) \
176 dump_stack(); \
177 } while (0)
178
Takashi Iwai877211f2005-11-17 13:59:38 +0100179static void xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Jaroslav Kysela13f040f2009-05-28 11:31:20 +0200181 struct snd_pcm_runtime *runtime = substream->runtime;
182
Takashi Iwaif5914902014-11-04 12:45:59 +0100183 trace_xrun(substream);
Jaroslav Kysela13f040f2009-05-28 11:31:20 +0200184 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE)
185 snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
Jaroslav Kysela741b20c2009-12-17 17:34:39 +0100187 if (xrun_debug(substream, XRUN_DEBUG_BASIC)) {
Takashi Iwaic0070112009-06-08 15:58:48 +0200188 char name[16];
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200189 snd_pcm_debug_name(substream, name, sizeof(name));
Takashi Iwai09e56df2014-02-04 18:19:48 +0100190 pcm_warn(substream->pcm, "XRUN: %s\n", name);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100191 dump_stack_on_xrun(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Jarkko Nikula0f170142010-03-26 16:07:25 +0200195#ifdef CONFIG_SND_PCM_XRUN_DEBUG
Takashi Iwaif5914902014-11-04 12:45:59 +0100196#define hw_ptr_error(substream, in_interrupt, reason, fmt, args...) \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100197 do { \
Takashi Iwaif5914902014-11-04 12:45:59 +0100198 trace_hw_ptr_error(substream, reason); \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100199 if (xrun_debug(substream, XRUN_DEBUG_BASIC)) { \
Takashi Iwaif5914902014-11-04 12:45:59 +0100200 pr_err_ratelimited("ALSA: PCM: [%c] " reason ": " fmt, \
201 (in_interrupt) ? 'Q' : 'P', ##args); \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100202 dump_stack_on_xrun(substream); \
203 } \
204 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100206#else /* ! CONFIG_SND_PCM_XRUN_DEBUG */
207
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100208#define hw_ptr_error(substream, fmt, args...) do { } while (0)
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100209
210#endif
211
Jaroslav Kysela12509322010-01-07 15:36:31 +0100212int snd_pcm_update_state(struct snd_pcm_substream *substream,
213 struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 snd_pcm_uframes_t avail;
216
217 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
218 avail = snd_pcm_playback_avail(runtime);
219 else
220 avail = snd_pcm_capture_avail(runtime);
221 if (avail > runtime->avail_max)
222 runtime->avail_max = avail;
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200223 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
224 if (avail >= runtime->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 snd_pcm_drain_done(substream);
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200226 return -EPIPE;
227 }
228 } else {
229 if (avail >= runtime->stop_threshold) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 xrun(substream);
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200231 return -EPIPE;
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
David Dillow5daeba32010-06-27 00:13:20 +0200234 if (runtime->twake) {
235 if (avail >= runtime->twake)
236 wake_up(&runtime->tsleep);
237 } else if (avail >= runtime->control->avail_min)
238 wake_up(&runtime->sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240}
241
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600242static void update_audio_tstamp(struct snd_pcm_substream *substream,
243 struct timespec *curr_tstamp,
244 struct timespec *audio_tstamp)
245{
246 struct snd_pcm_runtime *runtime = substream->runtime;
247 u64 audio_frames, audio_nsecs;
248 struct timespec driver_tstamp;
249
250 if (runtime->tstamp_mode != SNDRV_PCM_TSTAMP_ENABLE)
251 return;
252
253 if (!(substream->ops->get_time_info) ||
254 (runtime->audio_tstamp_report.actual_type ==
255 SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) {
256
257 /*
258 * provide audio timestamp derived from pointer position
259 * add delay only if requested
260 */
261
262 audio_frames = runtime->hw_ptr_wrap + runtime->status->hw_ptr;
263
264 if (runtime->audio_tstamp_config.report_delay) {
265 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
266 audio_frames -= runtime->delay;
267 else
268 audio_frames += runtime->delay;
269 }
270 audio_nsecs = div_u64(audio_frames * 1000000000LL,
271 runtime->rate);
272 *audio_tstamp = ns_to_timespec(audio_nsecs);
273 }
274 runtime->status->audio_tstamp = *audio_tstamp;
275 runtime->status->tstamp = *curr_tstamp;
276
277 /*
278 * re-take a driver timestamp to let apps detect if the reference tstamp
279 * read by low-level hardware was provided with a delay
280 */
281 snd_pcm_gettime(substream->runtime, (struct timespec *)&driver_tstamp);
282 runtime->driver_tstamp = driver_tstamp;
283}
284
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100285static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream,
286 unsigned int in_interrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Takashi Iwai877211f2005-11-17 13:59:38 +0100288 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 snd_pcm_uframes_t pos;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100290 snd_pcm_uframes_t old_hw_ptr, new_hw_ptr, hw_base;
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200291 snd_pcm_sframes_t hdelta, delta;
292 unsigned long jdelta;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500293 unsigned long curr_jiffies;
294 struct timespec curr_tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500295 struct timespec audio_tstamp;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500296 int crossed_boundary = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200298 old_hw_ptr = runtime->status->hw_ptr;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500299
300 /*
301 * group pointer, time and jiffies reads to allow for more
302 * accurate correlations/corrections.
303 * The values are stored at the end of this routine after
304 * corrections for hw_ptr position
305 */
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100306 pos = substream->ops->pointer(substream);
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500307 curr_jiffies = jiffies;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500308 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600309 if ((substream->ops->get_time_info) &&
310 (runtime->audio_tstamp_config.type_requested != SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) {
311 substream->ops->get_time_info(substream, &curr_tstamp,
312 &audio_tstamp,
313 &runtime->audio_tstamp_config,
314 &runtime->audio_tstamp_report);
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500315
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600316 /* re-test in case tstamp type is not supported in hardware and was demoted to DEFAULT */
317 if (runtime->audio_tstamp_report.actual_type == SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)
318 snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp);
319 } else
320 snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp);
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500321 }
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (pos == SNDRV_PCM_POS_XRUN) {
324 xrun(substream);
325 return -EPIPE;
326 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100327 if (pos >= runtime->buffer_size) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100328 if (printk_ratelimit()) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100329 char name[16];
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200330 snd_pcm_debug_name(substream, name, sizeof(name));
Takashi Iwai09e56df2014-02-04 18:19:48 +0100331 pcm_err(substream->pcm,
Takashi Iwai0ab1ace2016-03-10 20:56:20 +0100332 "invalid position: %s, pos = %ld, buffer size = %ld, period size = %ld\n",
Takashi Iwai09e56df2014-02-04 18:19:48 +0100333 name, pos, runtime->buffer_size,
334 runtime->period_size);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100335 }
336 pos = 0;
Takashi Iwaicedb8112009-07-23 11:04:13 +0200337 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100338 pos -= pos % runtime->min_align;
Takashi Iwaif5914902014-11-04 12:45:59 +0100339 trace_hwptr(substream, pos, in_interrupt);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100340 hw_base = runtime->hw_ptr_base;
341 new_hw_ptr = hw_base + pos;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100342 if (in_interrupt) {
343 /* we know that one period was processed */
344 /* delta = "expected next hw_ptr" for in_interrupt != 0 */
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100345 delta = runtime->hw_ptr_interrupt + runtime->period_size;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100346 if (delta > new_hw_ptr) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200347 /* check for double acknowledged interrupts */
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500348 hdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Koro Chen13a98832015-05-13 22:39:03 +0800349 if (hdelta > runtime->hw_ptr_buffer_jiffies/2 + 1) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200350 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500351 if (hw_base >= runtime->boundary) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200352 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500353 crossed_boundary++;
354 }
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200355 new_hw_ptr = hw_base + pos;
356 goto __delta;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100360 /* new_hw_ptr might be lower than old_hw_ptr in case when */
361 /* pointer crosses the end of the ring buffer */
362 if (new_hw_ptr < old_hw_ptr) {
363 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500364 if (hw_base >= runtime->boundary) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100365 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500366 crossed_boundary++;
367 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100368 new_hw_ptr = hw_base + pos;
369 }
370 __delta:
Clemens Ladischb406e612010-05-25 09:01:46 +0200371 delta = new_hw_ptr - old_hw_ptr;
372 if (delta < 0)
373 delta += runtime->boundary;
Clemens Ladischab69a492010-11-15 10:46:23 +0100374
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100375 if (runtime->no_period_wakeup) {
Kelly Anderson12ff4142011-04-01 11:58:25 +0200376 snd_pcm_sframes_t xrun_threshold;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100377 /*
378 * Without regular period interrupts, we have to check
379 * the elapsed time to detect xruns.
380 */
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500381 jdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Clemens Ladisch47228e42010-11-18 09:53:07 +0100382 if (jdelta < runtime->hw_ptr_buffer_jiffies / 2)
383 goto no_delta_check;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100384 hdelta = jdelta - delta * HZ / runtime->rate;
Kelly Anderson12ff4142011-04-01 11:58:25 +0200385 xrun_threshold = runtime->hw_ptr_buffer_jiffies / 2 + 1;
386 while (hdelta > xrun_threshold) {
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100387 delta += runtime->buffer_size;
388 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500389 if (hw_base >= runtime->boundary) {
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100390 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500391 crossed_boundary++;
392 }
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100393 new_hw_ptr = hw_base + pos;
394 hdelta -= runtime->hw_ptr_buffer_jiffies;
395 }
Clemens Ladischab69a492010-11-15 10:46:23 +0100396 goto no_delta_check;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100397 }
Clemens Ladischab69a492010-11-15 10:46:23 +0100398
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100399 /* something must be really wrong */
Jaroslav Kysela7b3a1772010-01-08 08:43:01 +0100400 if (delta >= runtime->buffer_size + runtime->period_size) {
Takashi Iwaif5914902014-11-04 12:45:59 +0100401 hw_ptr_error(substream, in_interrupt, "Unexpected hw_ptr",
402 "(stream=%i, pos=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n",
403 substream->stream, (long)pos,
404 (long)new_hw_ptr, (long)old_hw_ptr);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100405 return 0;
406 }
Takashi Iwaic87d9732009-05-27 10:53:33 +0200407
408 /* Do jiffies check only in xrun_debug mode */
Jaroslav Kysela741b20c2009-12-17 17:34:39 +0100409 if (!xrun_debug(substream, XRUN_DEBUG_JIFFIESCHECK))
Takashi Iwaic87d9732009-05-27 10:53:33 +0200410 goto no_jiffies_check;
411
Takashi Iwai3e5b5012009-04-28 12:07:08 +0200412 /* Skip the jiffies check for hardwares with BATCH flag.
413 * Such hardware usually just increases the position at each IRQ,
414 * thus it can't give any strange position.
415 */
416 if (runtime->hw.info & SNDRV_PCM_INFO_BATCH)
417 goto no_jiffies_check;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100418 hdelta = delta;
Jaroslav Kyselaa4444da2009-05-28 12:31:56 +0200419 if (hdelta < runtime->delay)
420 goto no_jiffies_check;
421 hdelta -= runtime->delay;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500422 jdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200423 if (((hdelta * HZ) / runtime->rate) > jdelta + HZ/100) {
424 delta = jdelta /
425 (((runtime->period_size * HZ) / runtime->rate)
426 + HZ/100);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100427 /* move new_hw_ptr according jiffies not pos variable */
428 new_hw_ptr = old_hw_ptr;
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100429 hw_base = delta;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100430 /* use loop to avoid checks for delta overflows */
431 /* the delta value is small or zero in most cases */
432 while (delta > 0) {
433 new_hw_ptr += runtime->period_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500434 if (new_hw_ptr >= runtime->boundary) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100435 new_hw_ptr -= runtime->boundary;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500436 crossed_boundary--;
437 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100438 delta--;
439 }
440 /* align hw_base to buffer_size */
Takashi Iwaif5914902014-11-04 12:45:59 +0100441 hw_ptr_error(substream, in_interrupt, "hw_ptr skipping",
442 "(pos=%ld, delta=%ld, period=%ld, jdelta=%lu/%lu/%lu, hw_ptr=%ld/%ld)\n",
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200443 (long)pos, (long)hdelta,
444 (long)runtime->period_size, jdelta,
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100445 ((hdelta * HZ) / runtime->rate), hw_base,
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100446 (unsigned long)old_hw_ptr,
447 (unsigned long)new_hw_ptr);
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100448 /* reset values to proper state */
449 delta = 0;
450 hw_base = new_hw_ptr - (new_hw_ptr % runtime->buffer_size);
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200451 }
Takashi Iwai3e5b5012009-04-28 12:07:08 +0200452 no_jiffies_check:
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200453 if (delta > runtime->period_size + runtime->period_size / 2) {
Takashi Iwaif5914902014-11-04 12:45:59 +0100454 hw_ptr_error(substream, in_interrupt,
455 "Lost interrupts?",
456 "(stream=%i, delta=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n",
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100457 substream->stream, (long)delta,
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100458 (long)new_hw_ptr,
459 (long)old_hw_ptr);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100460 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100461
Clemens Ladischab69a492010-11-15 10:46:23 +0100462 no_delta_check:
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600463 if (runtime->status->hw_ptr == new_hw_ptr) {
464 update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100465 return 0;
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600466 }
Takashi Iwaiab1863f2009-06-07 12:09:17 +0200467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
469 runtime->silence_size > 0)
470 snd_pcm_playback_silence(substream, new_hw_ptr);
471
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100472 if (in_interrupt) {
Clemens Ladischead40462010-05-21 09:15:59 +0200473 delta = new_hw_ptr - runtime->hw_ptr_interrupt;
474 if (delta < 0)
475 delta += runtime->boundary;
476 delta -= (snd_pcm_uframes_t)delta % runtime->period_size;
477 runtime->hw_ptr_interrupt += delta;
478 if (runtime->hw_ptr_interrupt >= runtime->boundary)
479 runtime->hw_ptr_interrupt -= runtime->boundary;
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100480 }
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100481 runtime->hw_ptr_base = hw_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 runtime->status->hw_ptr = new_hw_ptr;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500483 runtime->hw_ptr_jiffies = curr_jiffies;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500484 if (crossed_boundary) {
485 snd_BUG_ON(crossed_boundary != 1);
486 runtime->hw_ptr_wrap += runtime->boundary;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600489 update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp);
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500490
Jaroslav Kysela12509322010-01-07 15:36:31 +0100491 return snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494/* CAUTION: call it with irq disabled */
Takashi Iwai877211f2005-11-17 13:59:38 +0100495int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100497 return snd_pcm_update_hw_ptr0(substream, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500/**
501 * snd_pcm_set_ops - set the PCM operators
502 * @pcm: the pcm instance
503 * @direction: stream direction, SNDRV_PCM_STREAM_XXX
504 * @ops: the operator table
505 *
506 * Sets the given PCM operators to the pcm instance.
507 */
Lars-Peter Clausene6c2e7e2013-05-24 15:18:10 +0200508void snd_pcm_set_ops(struct snd_pcm *pcm, int direction,
509 const struct snd_pcm_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Takashi Iwai877211f2005-11-17 13:59:38 +0100511 struct snd_pcm_str *stream = &pcm->streams[direction];
512 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 for (substream = stream->substream; substream != NULL; substream = substream->next)
515 substream->ops = ops;
516}
517
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200518EXPORT_SYMBOL(snd_pcm_set_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520/**
521 * snd_pcm_sync - set the PCM sync id
522 * @substream: the pcm substream
523 *
524 * Sets the PCM sync identifier for the card.
525 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100526void snd_pcm_set_sync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Takashi Iwai877211f2005-11-17 13:59:38 +0100528 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 runtime->sync.id32[0] = substream->pcm->card->number;
531 runtime->sync.id32[1] = -1;
532 runtime->sync.id32[2] = -1;
533 runtime->sync.id32[3] = -1;
534}
535
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200536EXPORT_SYMBOL(snd_pcm_set_sync);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*
539 * Standard ioctl routine
540 */
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542static inline unsigned int div32(unsigned int a, unsigned int b,
543 unsigned int *r)
544{
545 if (b == 0) {
546 *r = 0;
547 return UINT_MAX;
548 }
549 *r = a % b;
550 return a / b;
551}
552
553static inline unsigned int div_down(unsigned int a, unsigned int b)
554{
555 if (b == 0)
556 return UINT_MAX;
557 return a / b;
558}
559
560static inline unsigned int div_up(unsigned int a, unsigned int b)
561{
562 unsigned int r;
563 unsigned int q;
564 if (b == 0)
565 return UINT_MAX;
566 q = div32(a, b, &r);
567 if (r)
568 ++q;
569 return q;
570}
571
572static inline unsigned int mul(unsigned int a, unsigned int b)
573{
574 if (a == 0)
575 return 0;
576 if (div_down(UINT_MAX, a) < b)
577 return UINT_MAX;
578 return a * b;
579}
580
581static inline unsigned int muldiv32(unsigned int a, unsigned int b,
582 unsigned int c, unsigned int *r)
583{
584 u_int64_t n = (u_int64_t) a * b;
585 if (c == 0) {
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200586 snd_BUG_ON(!n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *r = 0;
588 return UINT_MAX;
589 }
Takashi Iwai3f7440a2009-06-05 17:40:04 +0200590 n = div_u64_rem(n, c, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (n >= UINT_MAX) {
592 *r = 0;
593 return UINT_MAX;
594 }
595 return n;
596}
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598/**
599 * snd_interval_refine - refine the interval value of configurator
600 * @i: the interval value to refine
601 * @v: the interval value to refer to
602 *
603 * Refines the interval value with the reference value.
604 * The interval is changed to the range satisfying both intervals.
605 * The interval status (min, max, integer, etc.) are evaluated.
606 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100607 * Return: Positive if the value is changed, zero if it's not changed, or a
608 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100610int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 int changed = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200613 if (snd_BUG_ON(snd_interval_empty(i)))
614 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (i->min < v->min) {
616 i->min = v->min;
617 i->openmin = v->openmin;
618 changed = 1;
619 } else if (i->min == v->min && !i->openmin && v->openmin) {
620 i->openmin = 1;
621 changed = 1;
622 }
623 if (i->max > v->max) {
624 i->max = v->max;
625 i->openmax = v->openmax;
626 changed = 1;
627 } else if (i->max == v->max && !i->openmax && v->openmax) {
628 i->openmax = 1;
629 changed = 1;
630 }
631 if (!i->integer && v->integer) {
632 i->integer = 1;
633 changed = 1;
634 }
635 if (i->integer) {
636 if (i->openmin) {
637 i->min++;
638 i->openmin = 0;
639 }
640 if (i->openmax) {
641 i->max--;
642 i->openmax = 0;
643 }
644 } else if (!i->openmin && !i->openmax && i->min == i->max)
645 i->integer = 1;
646 if (snd_interval_checkempty(i)) {
647 snd_interval_none(i);
648 return -EINVAL;
649 }
650 return changed;
651}
652
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200653EXPORT_SYMBOL(snd_interval_refine);
654
Takashi Iwai877211f2005-11-17 13:59:38 +0100655static int snd_interval_refine_first(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200657 if (snd_BUG_ON(snd_interval_empty(i)))
658 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (snd_interval_single(i))
660 return 0;
661 i->max = i->min;
662 i->openmax = i->openmin;
663 if (i->openmax)
664 i->max++;
665 return 1;
666}
667
Takashi Iwai877211f2005-11-17 13:59:38 +0100668static int snd_interval_refine_last(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200670 if (snd_BUG_ON(snd_interval_empty(i)))
671 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (snd_interval_single(i))
673 return 0;
674 i->min = i->max;
675 i->openmin = i->openmax;
676 if (i->openmin)
677 i->min--;
678 return 1;
679}
680
Takashi Iwai877211f2005-11-17 13:59:38 +0100681void snd_interval_mul(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 if (a->empty || b->empty) {
684 snd_interval_none(c);
685 return;
686 }
687 c->empty = 0;
688 c->min = mul(a->min, b->min);
689 c->openmin = (a->openmin || b->openmin);
690 c->max = mul(a->max, b->max);
691 c->openmax = (a->openmax || b->openmax);
692 c->integer = (a->integer && b->integer);
693}
694
695/**
696 * snd_interval_div - refine the interval value with division
Takashi Iwaidf8db932005-09-07 13:38:19 +0200697 * @a: dividend
698 * @b: divisor
699 * @c: quotient
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 *
701 * c = a / b
702 *
703 * Returns non-zero if the value is changed, zero if not changed.
704 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100705void snd_interval_div(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 unsigned int r;
708 if (a->empty || b->empty) {
709 snd_interval_none(c);
710 return;
711 }
712 c->empty = 0;
713 c->min = div32(a->min, b->max, &r);
714 c->openmin = (r || a->openmin || b->openmax);
715 if (b->min > 0) {
716 c->max = div32(a->max, b->min, &r);
717 if (r) {
718 c->max++;
719 c->openmax = 1;
720 } else
721 c->openmax = (a->openmax || b->openmin);
722 } else {
723 c->max = UINT_MAX;
724 c->openmax = 0;
725 }
726 c->integer = 0;
727}
728
729/**
730 * snd_interval_muldivk - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200731 * @a: dividend 1
732 * @b: dividend 2
733 * @k: divisor (as integer)
734 * @c: result
735 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * c = a * b / k
737 *
738 * Returns non-zero if the value is changed, zero if not changed.
739 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100740void snd_interval_muldivk(const struct snd_interval *a, const struct snd_interval *b,
741 unsigned int k, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 unsigned int r;
744 if (a->empty || b->empty) {
745 snd_interval_none(c);
746 return;
747 }
748 c->empty = 0;
749 c->min = muldiv32(a->min, b->min, k, &r);
750 c->openmin = (r || a->openmin || b->openmin);
751 c->max = muldiv32(a->max, b->max, k, &r);
752 if (r) {
753 c->max++;
754 c->openmax = 1;
755 } else
756 c->openmax = (a->openmax || b->openmax);
757 c->integer = 0;
758}
759
760/**
761 * snd_interval_mulkdiv - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200762 * @a: dividend 1
763 * @k: dividend 2 (as integer)
764 * @b: divisor
765 * @c: result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 *
767 * c = a * k / b
768 *
769 * Returns non-zero if the value is changed, zero if not changed.
770 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100771void snd_interval_mulkdiv(const struct snd_interval *a, unsigned int k,
772 const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 unsigned int r;
775 if (a->empty || b->empty) {
776 snd_interval_none(c);
777 return;
778 }
779 c->empty = 0;
780 c->min = muldiv32(a->min, k, b->max, &r);
781 c->openmin = (r || a->openmin || b->openmax);
782 if (b->min > 0) {
783 c->max = muldiv32(a->max, k, b->min, &r);
784 if (r) {
785 c->max++;
786 c->openmax = 1;
787 } else
788 c->openmax = (a->openmax || b->openmin);
789 } else {
790 c->max = UINT_MAX;
791 c->openmax = 0;
792 }
793 c->integer = 0;
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/* ---- */
797
798
799/**
800 * snd_interval_ratnum - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200801 * @i: interval to refine
802 * @rats_count: number of ratnum_t
803 * @rats: ratnum_t array
804 * @nump: pointer to store the resultant numerator
805 * @denp: pointer to store the resultant denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100807 * Return: Positive if the value is changed, zero if it's not changed, or a
808 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100810int snd_interval_ratnum(struct snd_interval *i,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +0100811 unsigned int rats_count, const struct snd_ratnum *rats,
Takashi Iwai877211f2005-11-17 13:59:38 +0100812 unsigned int *nump, unsigned int *denp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Krzysztof Helt8374e242009-12-21 17:07:08 +0100814 unsigned int best_num, best_den;
815 int best_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100817 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 int err;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100819 unsigned int result_num, result_den;
820 int result_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 best_num = best_den = best_diff = 0;
823 for (k = 0; k < rats_count; ++k) {
824 unsigned int num = rats[k].num;
825 unsigned int den;
826 unsigned int q = i->min;
827 int diff;
828 if (q == 0)
829 q = 1;
Krzysztof Helt40962d72009-12-19 18:31:04 +0100830 den = div_up(num, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (den < rats[k].den_min)
832 continue;
833 if (den > rats[k].den_max)
834 den = rats[k].den_max;
835 else {
836 unsigned int r;
837 r = (den - rats[k].den_min) % rats[k].den_step;
838 if (r != 0)
839 den -= r;
840 }
841 diff = num - q * den;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100842 if (diff < 0)
843 diff = -diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (best_num == 0 ||
845 diff * best_den < best_diff * den) {
846 best_diff = diff;
847 best_den = den;
848 best_num = num;
849 }
850 }
851 if (best_den == 0) {
852 i->empty = 1;
853 return -EINVAL;
854 }
855 t.min = div_down(best_num, best_den);
856 t.openmin = !!(best_num % best_den);
857
Krzysztof Helt8374e242009-12-21 17:07:08 +0100858 result_num = best_num;
859 result_diff = best_diff;
860 result_den = best_den;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 best_num = best_den = best_diff = 0;
862 for (k = 0; k < rats_count; ++k) {
863 unsigned int num = rats[k].num;
864 unsigned int den;
865 unsigned int q = i->max;
866 int diff;
867 if (q == 0) {
868 i->empty = 1;
869 return -EINVAL;
870 }
Krzysztof Helt40962d72009-12-19 18:31:04 +0100871 den = div_down(num, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (den > rats[k].den_max)
873 continue;
874 if (den < rats[k].den_min)
875 den = rats[k].den_min;
876 else {
877 unsigned int r;
878 r = (den - rats[k].den_min) % rats[k].den_step;
879 if (r != 0)
880 den += rats[k].den_step - r;
881 }
882 diff = q * den - num;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100883 if (diff < 0)
884 diff = -diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (best_num == 0 ||
886 diff * best_den < best_diff * den) {
887 best_diff = diff;
888 best_den = den;
889 best_num = num;
890 }
891 }
892 if (best_den == 0) {
893 i->empty = 1;
894 return -EINVAL;
895 }
896 t.max = div_up(best_num, best_den);
897 t.openmax = !!(best_num % best_den);
898 t.integer = 0;
899 err = snd_interval_refine(i, &t);
900 if (err < 0)
901 return err;
902
903 if (snd_interval_single(i)) {
Krzysztof Helt8374e242009-12-21 17:07:08 +0100904 if (best_diff * result_den < result_diff * best_den) {
905 result_num = best_num;
906 result_den = best_den;
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (nump)
Krzysztof Helt8374e242009-12-21 17:07:08 +0100909 *nump = result_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (denp)
Krzysztof Helt8374e242009-12-21 17:07:08 +0100911 *denp = result_den;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913 return err;
914}
915
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200916EXPORT_SYMBOL(snd_interval_ratnum);
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918/**
919 * snd_interval_ratden - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200920 * @i: interval to refine
Takashi Iwai877211f2005-11-17 13:59:38 +0100921 * @rats_count: number of struct ratden
922 * @rats: struct ratden array
Takashi Iwaidf8db932005-09-07 13:38:19 +0200923 * @nump: pointer to store the resultant numerator
924 * @denp: pointer to store the resultant denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100926 * Return: Positive if the value is changed, zero if it's not changed, or a
927 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100929static int snd_interval_ratden(struct snd_interval *i,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +0100930 unsigned int rats_count,
931 const struct snd_ratden *rats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 unsigned int *nump, unsigned int *denp)
933{
934 unsigned int best_num, best_diff, best_den;
935 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100936 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int err;
938
939 best_num = best_den = best_diff = 0;
940 for (k = 0; k < rats_count; ++k) {
941 unsigned int num;
942 unsigned int den = rats[k].den;
943 unsigned int q = i->min;
944 int diff;
945 num = mul(q, den);
946 if (num > rats[k].num_max)
947 continue;
948 if (num < rats[k].num_min)
949 num = rats[k].num_max;
950 else {
951 unsigned int r;
952 r = (num - rats[k].num_min) % rats[k].num_step;
953 if (r != 0)
954 num += rats[k].num_step - r;
955 }
956 diff = num - q * den;
957 if (best_num == 0 ||
958 diff * best_den < best_diff * den) {
959 best_diff = diff;
960 best_den = den;
961 best_num = num;
962 }
963 }
964 if (best_den == 0) {
965 i->empty = 1;
966 return -EINVAL;
967 }
968 t.min = div_down(best_num, best_den);
969 t.openmin = !!(best_num % best_den);
970
971 best_num = best_den = best_diff = 0;
972 for (k = 0; k < rats_count; ++k) {
973 unsigned int num;
974 unsigned int den = rats[k].den;
975 unsigned int q = i->max;
976 int diff;
977 num = mul(q, den);
978 if (num < rats[k].num_min)
979 continue;
980 if (num > rats[k].num_max)
981 num = rats[k].num_max;
982 else {
983 unsigned int r;
984 r = (num - rats[k].num_min) % rats[k].num_step;
985 if (r != 0)
986 num -= r;
987 }
988 diff = q * den - num;
989 if (best_num == 0 ||
990 diff * best_den < best_diff * den) {
991 best_diff = diff;
992 best_den = den;
993 best_num = num;
994 }
995 }
996 if (best_den == 0) {
997 i->empty = 1;
998 return -EINVAL;
999 }
1000 t.max = div_up(best_num, best_den);
1001 t.openmax = !!(best_num % best_den);
1002 t.integer = 0;
1003 err = snd_interval_refine(i, &t);
1004 if (err < 0)
1005 return err;
1006
1007 if (snd_interval_single(i)) {
1008 if (nump)
1009 *nump = best_num;
1010 if (denp)
1011 *denp = best_den;
1012 }
1013 return err;
1014}
1015
1016/**
1017 * snd_interval_list - refine the interval value from the list
1018 * @i: the interval value to refine
1019 * @count: the number of elements in the list
1020 * @list: the value list
1021 * @mask: the bit-mask to evaluate
1022 *
1023 * Refines the interval value from the list.
1024 * When mask is non-zero, only the elements corresponding to bit 1 are
1025 * evaluated.
1026 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001027 * Return: Positive if the value is changed, zero if it's not changed, or a
1028 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Mark Brown4af87a92012-03-14 19:48:43 +00001030int snd_interval_list(struct snd_interval *i, unsigned int count,
1031 const unsigned int *list, unsigned int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 unsigned int k;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001034 struct snd_interval list_range;
Takashi Iwai0981a262007-02-01 14:53:49 +01001035
1036 if (!count) {
1037 i->empty = 1;
1038 return -EINVAL;
1039 }
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001040 snd_interval_any(&list_range);
1041 list_range.min = UINT_MAX;
1042 list_range.max = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 for (k = 0; k < count; k++) {
1044 if (mask && !(mask & (1 << k)))
1045 continue;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001046 if (!snd_interval_test(i, list[k]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 continue;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001048 list_range.min = min(list_range.min, list[k]);
1049 list_range.max = max(list_range.max, list[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001051 return snd_interval_refine(i, &list_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001054EXPORT_SYMBOL(snd_interval_list);
1055
Peter Rosinf66f8982015-01-28 15:16:06 +01001056/**
1057 * snd_interval_ranges - refine the interval value from the list of ranges
1058 * @i: the interval value to refine
1059 * @count: the number of elements in the list of ranges
1060 * @ranges: the ranges list
1061 * @mask: the bit-mask to evaluate
1062 *
1063 * Refines the interval value from the list of ranges.
1064 * When mask is non-zero, only the elements corresponding to bit 1 are
1065 * evaluated.
1066 *
1067 * Return: Positive if the value is changed, zero if it's not changed, or a
1068 * negative error code.
1069 */
1070int snd_interval_ranges(struct snd_interval *i, unsigned int count,
1071 const struct snd_interval *ranges, unsigned int mask)
1072{
1073 unsigned int k;
1074 struct snd_interval range_union;
1075 struct snd_interval range;
1076
1077 if (!count) {
1078 snd_interval_none(i);
1079 return -EINVAL;
1080 }
1081 snd_interval_any(&range_union);
1082 range_union.min = UINT_MAX;
1083 range_union.max = 0;
1084 for (k = 0; k < count; k++) {
1085 if (mask && !(mask & (1 << k)))
1086 continue;
1087 snd_interval_copy(&range, &ranges[k]);
1088 if (snd_interval_refine(&range, i) < 0)
1089 continue;
1090 if (snd_interval_empty(&range))
1091 continue;
1092
1093 if (range.min < range_union.min) {
1094 range_union.min = range.min;
1095 range_union.openmin = 1;
1096 }
1097 if (range.min == range_union.min && !range.openmin)
1098 range_union.openmin = 0;
1099 if (range.max > range_union.max) {
1100 range_union.max = range.max;
1101 range_union.openmax = 1;
1102 }
1103 if (range.max == range_union.max && !range.openmax)
1104 range_union.openmax = 0;
1105 }
1106 return snd_interval_refine(i, &range_union);
1107}
1108EXPORT_SYMBOL(snd_interval_ranges);
1109
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001110static int snd_interval_step(struct snd_interval *i, unsigned int step)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 unsigned int n;
1113 int changed = 0;
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001114 n = i->min % step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (n != 0 || i->openmin) {
1116 i->min += step - n;
Clemens Ladischdf1e4712014-09-07 21:43:41 +02001117 i->openmin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 changed = 1;
1119 }
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001120 n = i->max % step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (n != 0 || i->openmax) {
1122 i->max -= n;
Clemens Ladischdf1e4712014-09-07 21:43:41 +02001123 i->openmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 changed = 1;
1125 }
1126 if (snd_interval_checkempty(i)) {
1127 i->empty = 1;
1128 return -EINVAL;
1129 }
1130 return changed;
1131}
1132
1133/* Info constraints helpers */
1134
1135/**
1136 * snd_pcm_hw_rule_add - add the hw-constraint rule
1137 * @runtime: the pcm runtime instance
1138 * @cond: condition bits
1139 * @var: the variable to evaluate
1140 * @func: the evaluation function
1141 * @private: the private data pointer passed to function
1142 * @dep: the dependent variables
1143 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001144 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001146int snd_pcm_hw_rule_add(struct snd_pcm_runtime *runtime, unsigned int cond,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 int var,
1148 snd_pcm_hw_rule_func_t func, void *private,
1149 int dep, ...)
1150{
Takashi Iwai877211f2005-11-17 13:59:38 +01001151 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1152 struct snd_pcm_hw_rule *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 unsigned int k;
1154 va_list args;
1155 va_start(args, dep);
1156 if (constrs->rules_num >= constrs->rules_all) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001157 struct snd_pcm_hw_rule *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 unsigned int new_rules = constrs->rules_all + 16;
1159 new = kcalloc(new_rules, sizeof(*c), GFP_KERNEL);
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001160 if (!new) {
1161 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return -ENOMEM;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (constrs->rules) {
1165 memcpy(new, constrs->rules,
1166 constrs->rules_num * sizeof(*c));
1167 kfree(constrs->rules);
1168 }
1169 constrs->rules = new;
1170 constrs->rules_all = new_rules;
1171 }
1172 c = &constrs->rules[constrs->rules_num];
1173 c->cond = cond;
1174 c->func = func;
1175 c->var = var;
1176 c->private = private;
1177 k = 0;
1178 while (1) {
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001179 if (snd_BUG_ON(k >= ARRAY_SIZE(c->deps))) {
1180 va_end(args);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001181 return -EINVAL;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 c->deps[k++] = dep;
1184 if (dep < 0)
1185 break;
1186 dep = va_arg(args, int);
1187 }
1188 constrs->rules_num++;
1189 va_end(args);
1190 return 0;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001191}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001193EXPORT_SYMBOL(snd_pcm_hw_rule_add);
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001196 * snd_pcm_hw_constraint_mask - apply the given bitmap mask constraint
Takashi Iwaidf8db932005-09-07 13:38:19 +02001197 * @runtime: PCM runtime instance
1198 * @var: hw_params variable to apply the mask
1199 * @mask: the bitmap mask
1200 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001201 * Apply the constraint of the given bitmap mask to a 32-bit mask parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001202 *
1203 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001205int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 u_int32_t mask)
1207{
Takashi Iwai877211f2005-11-17 13:59:38 +01001208 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1209 struct snd_mask *maskp = constrs_mask(constrs, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 *maskp->bits &= mask;
1211 memset(maskp->bits + 1, 0, (SNDRV_MASK_MAX-32) / 8); /* clear rest */
1212 if (*maskp->bits == 0)
1213 return -EINVAL;
1214 return 0;
1215}
1216
1217/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001218 * snd_pcm_hw_constraint_mask64 - apply the given bitmap mask constraint
Takashi Iwaidf8db932005-09-07 13:38:19 +02001219 * @runtime: PCM runtime instance
1220 * @var: hw_params variable to apply the mask
1221 * @mask: the 64bit bitmap mask
1222 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001223 * Apply the constraint of the given bitmap mask to a 64-bit mask parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001224 *
1225 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001227int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 u_int64_t mask)
1229{
Takashi Iwai877211f2005-11-17 13:59:38 +01001230 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1231 struct snd_mask *maskp = constrs_mask(constrs, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 maskp->bits[0] &= (u_int32_t)mask;
1233 maskp->bits[1] &= (u_int32_t)(mask >> 32);
1234 memset(maskp->bits + 2, 0, (SNDRV_MASK_MAX-64) / 8); /* clear rest */
1235 if (! maskp->bits[0] && ! maskp->bits[1])
1236 return -EINVAL;
1237 return 0;
1238}
Mark Brown63a5d4c2014-02-20 12:13:52 +09001239EXPORT_SYMBOL(snd_pcm_hw_constraint_mask64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001242 * snd_pcm_hw_constraint_integer - apply an integer constraint to an interval
Takashi Iwaidf8db932005-09-07 13:38:19 +02001243 * @runtime: PCM runtime instance
1244 * @var: hw_params variable to apply the integer constraint
1245 *
1246 * Apply the constraint of integer to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001247 *
1248 * Return: Positive if the value is changed, zero if it's not changed, or a
1249 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001251int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Takashi Iwai877211f2005-11-17 13:59:38 +01001253 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return snd_interval_setinteger(constrs_interval(constrs, var));
1255}
1256
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001257EXPORT_SYMBOL(snd_pcm_hw_constraint_integer);
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001260 * snd_pcm_hw_constraint_minmax - apply a min/max range constraint to an interval
Takashi Iwaidf8db932005-09-07 13:38:19 +02001261 * @runtime: PCM runtime instance
1262 * @var: hw_params variable to apply the range
1263 * @min: the minimal value
1264 * @max: the maximal value
1265 *
1266 * Apply the min/max range constraint to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001267 *
1268 * Return: Positive if the value is changed, zero if it's not changed, or a
1269 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001271int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 unsigned int min, unsigned int max)
1273{
Takashi Iwai877211f2005-11-17 13:59:38 +01001274 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1275 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 t.min = min;
1277 t.max = max;
1278 t.openmin = t.openmax = 0;
1279 t.integer = 0;
1280 return snd_interval_refine(constrs_interval(constrs, var), &t);
1281}
1282
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001283EXPORT_SYMBOL(snd_pcm_hw_constraint_minmax);
1284
Takashi Iwai877211f2005-11-17 13:59:38 +01001285static int snd_pcm_hw_rule_list(struct snd_pcm_hw_params *params,
1286 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Takashi Iwai877211f2005-11-17 13:59:38 +01001288 struct snd_pcm_hw_constraint_list *list = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return snd_interval_list(hw_param_interval(params, rule->var), list->count, list->list, list->mask);
1290}
1291
1292
1293/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001294 * snd_pcm_hw_constraint_list - apply a list of constraints to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001295 * @runtime: PCM runtime instance
1296 * @cond: condition bits
1297 * @var: hw_params variable to apply the list constraint
1298 * @l: list
1299 *
1300 * Apply the list of constraints to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001301 *
1302 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001304int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 unsigned int cond,
1306 snd_pcm_hw_param_t var,
Mark Brown14641892012-07-05 12:15:01 +01001307 const struct snd_pcm_hw_constraint_list *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
1309 return snd_pcm_hw_rule_add(runtime, cond, var,
Mark Brown14641892012-07-05 12:15:01 +01001310 snd_pcm_hw_rule_list, (void *)l,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 var, -1);
1312}
1313
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001314EXPORT_SYMBOL(snd_pcm_hw_constraint_list);
1315
Peter Rosinf66f8982015-01-28 15:16:06 +01001316static int snd_pcm_hw_rule_ranges(struct snd_pcm_hw_params *params,
1317 struct snd_pcm_hw_rule *rule)
1318{
1319 struct snd_pcm_hw_constraint_ranges *r = rule->private;
1320 return snd_interval_ranges(hw_param_interval(params, rule->var),
1321 r->count, r->ranges, r->mask);
1322}
1323
1324
1325/**
1326 * snd_pcm_hw_constraint_ranges - apply list of range constraints to a parameter
1327 * @runtime: PCM runtime instance
1328 * @cond: condition bits
1329 * @var: hw_params variable to apply the list of range constraints
1330 * @r: ranges
1331 *
1332 * Apply the list of range constraints to an interval parameter.
1333 *
1334 * Return: Zero if successful, or a negative error code on failure.
1335 */
1336int snd_pcm_hw_constraint_ranges(struct snd_pcm_runtime *runtime,
1337 unsigned int cond,
1338 snd_pcm_hw_param_t var,
1339 const struct snd_pcm_hw_constraint_ranges *r)
1340{
1341 return snd_pcm_hw_rule_add(runtime, cond, var,
1342 snd_pcm_hw_rule_ranges, (void *)r,
1343 var, -1);
1344}
1345EXPORT_SYMBOL(snd_pcm_hw_constraint_ranges);
1346
Takashi Iwai877211f2005-11-17 13:59:38 +01001347static int snd_pcm_hw_rule_ratnums(struct snd_pcm_hw_params *params,
1348 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001350 const struct snd_pcm_hw_constraint_ratnums *r = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 unsigned int num = 0, den = 0;
1352 int err;
1353 err = snd_interval_ratnum(hw_param_interval(params, rule->var),
1354 r->nrats, r->rats, &num, &den);
1355 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1356 params->rate_num = num;
1357 params->rate_den = den;
1358 }
1359 return err;
1360}
1361
1362/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001363 * snd_pcm_hw_constraint_ratnums - apply ratnums constraint to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001364 * @runtime: PCM runtime instance
1365 * @cond: condition bits
1366 * @var: hw_params variable to apply the ratnums constraint
Takashi Iwai877211f2005-11-17 13:59:38 +01001367 * @r: struct snd_ratnums constriants
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001368 *
1369 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001371int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 unsigned int cond,
1373 snd_pcm_hw_param_t var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001374 const struct snd_pcm_hw_constraint_ratnums *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 return snd_pcm_hw_rule_add(runtime, cond, var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001377 snd_pcm_hw_rule_ratnums, (void *)r,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 var, -1);
1379}
1380
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001381EXPORT_SYMBOL(snd_pcm_hw_constraint_ratnums);
1382
Takashi Iwai877211f2005-11-17 13:59:38 +01001383static int snd_pcm_hw_rule_ratdens(struct snd_pcm_hw_params *params,
1384 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001386 const struct snd_pcm_hw_constraint_ratdens *r = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 unsigned int num = 0, den = 0;
1388 int err = snd_interval_ratden(hw_param_interval(params, rule->var),
1389 r->nrats, r->rats, &num, &den);
1390 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1391 params->rate_num = num;
1392 params->rate_den = den;
1393 }
1394 return err;
1395}
1396
1397/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001398 * snd_pcm_hw_constraint_ratdens - apply ratdens constraint to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001399 * @runtime: PCM runtime instance
1400 * @cond: condition bits
1401 * @var: hw_params variable to apply the ratdens constraint
Takashi Iwai877211f2005-11-17 13:59:38 +01001402 * @r: struct snd_ratdens constriants
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001403 *
1404 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001406int snd_pcm_hw_constraint_ratdens(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 unsigned int cond,
1408 snd_pcm_hw_param_t var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001409 const struct snd_pcm_hw_constraint_ratdens *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411 return snd_pcm_hw_rule_add(runtime, cond, var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001412 snd_pcm_hw_rule_ratdens, (void *)r,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 var, -1);
1414}
1415
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001416EXPORT_SYMBOL(snd_pcm_hw_constraint_ratdens);
1417
Takashi Iwai877211f2005-11-17 13:59:38 +01001418static int snd_pcm_hw_rule_msbits(struct snd_pcm_hw_params *params,
1419 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
1421 unsigned int l = (unsigned long) rule->private;
1422 int width = l & 0xffff;
1423 unsigned int msbits = l >> 16;
Takashi Sakamotob55f9fd2017-05-17 08:48:20 +09001424 const struct snd_interval *i =
1425 hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001426
1427 if (!snd_interval_single(i))
1428 return 0;
1429
1430 if ((snd_interval_value(i) == width) ||
1431 (width == 0 && snd_interval_value(i) > msbits))
Lars-Peter Clausen19f52fa2014-12-29 18:43:36 +01001432 params->msbits = min_not_zero(params->msbits, msbits);
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return 0;
1435}
1436
1437/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001438 * snd_pcm_hw_constraint_msbits - add a hw constraint msbits rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001439 * @runtime: PCM runtime instance
1440 * @cond: condition bits
1441 * @width: sample bits width
1442 * @msbits: msbits width
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001443 *
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001444 * This constraint will set the number of most significant bits (msbits) if a
1445 * sample format with the specified width has been select. If width is set to 0
1446 * the msbits will be set for any sample format with a width larger than the
1447 * specified msbits.
1448 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001449 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001451int snd_pcm_hw_constraint_msbits(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 unsigned int cond,
1453 unsigned int width,
1454 unsigned int msbits)
1455{
1456 unsigned long l = (msbits << 16) | width;
1457 return snd_pcm_hw_rule_add(runtime, cond, -1,
1458 snd_pcm_hw_rule_msbits,
1459 (void*) l,
1460 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1461}
1462
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001463EXPORT_SYMBOL(snd_pcm_hw_constraint_msbits);
1464
Takashi Iwai877211f2005-11-17 13:59:38 +01001465static int snd_pcm_hw_rule_step(struct snd_pcm_hw_params *params,
1466 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 unsigned long step = (unsigned long) rule->private;
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001469 return snd_interval_step(hw_param_interval(params, rule->var), step);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001473 * snd_pcm_hw_constraint_step - add a hw constraint step rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001474 * @runtime: PCM runtime instance
1475 * @cond: condition bits
1476 * @var: hw_params variable to apply the step constraint
1477 * @step: step size
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001478 *
1479 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001481int snd_pcm_hw_constraint_step(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 unsigned int cond,
1483 snd_pcm_hw_param_t var,
1484 unsigned long step)
1485{
1486 return snd_pcm_hw_rule_add(runtime, cond, var,
1487 snd_pcm_hw_rule_step, (void *) step,
1488 var, -1);
1489}
1490
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001491EXPORT_SYMBOL(snd_pcm_hw_constraint_step);
1492
Takashi Iwai877211f2005-11-17 13:59:38 +01001493static 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 -07001494{
Marcin Åšlusarz67c39312007-12-14 12:53:21 +01001495 static unsigned int pow2_sizes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 1<<0, 1<<1, 1<<2, 1<<3, 1<<4, 1<<5, 1<<6, 1<<7,
1497 1<<8, 1<<9, 1<<10, 1<<11, 1<<12, 1<<13, 1<<14, 1<<15,
1498 1<<16, 1<<17, 1<<18, 1<<19, 1<<20, 1<<21, 1<<22, 1<<23,
1499 1<<24, 1<<25, 1<<26, 1<<27, 1<<28, 1<<29, 1<<30
1500 };
1501 return snd_interval_list(hw_param_interval(params, rule->var),
1502 ARRAY_SIZE(pow2_sizes), pow2_sizes, 0);
1503}
1504
1505/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001506 * snd_pcm_hw_constraint_pow2 - add a hw constraint power-of-2 rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001507 * @runtime: PCM runtime instance
1508 * @cond: condition bits
1509 * @var: hw_params variable to apply the power-of-2 constraint
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001510 *
1511 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001513int snd_pcm_hw_constraint_pow2(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 unsigned int cond,
1515 snd_pcm_hw_param_t var)
1516{
1517 return snd_pcm_hw_rule_add(runtime, cond, var,
1518 snd_pcm_hw_rule_pow2, NULL,
1519 var, -1);
1520}
1521
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001522EXPORT_SYMBOL(snd_pcm_hw_constraint_pow2);
1523
Clemens Ladischd5b702a2011-09-16 23:03:02 +02001524static int snd_pcm_hw_rule_noresample_func(struct snd_pcm_hw_params *params,
1525 struct snd_pcm_hw_rule *rule)
1526{
1527 unsigned int base_rate = (unsigned int)(uintptr_t)rule->private;
1528 struct snd_interval *rate;
1529
1530 rate = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1531 return snd_interval_list(rate, 1, &base_rate, 0);
1532}
1533
1534/**
1535 * snd_pcm_hw_rule_noresample - add a rule to allow disabling hw resampling
1536 * @runtime: PCM runtime instance
1537 * @base_rate: the rate at which the hardware does not resample
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001538 *
1539 * Return: Zero if successful, or a negative error code on failure.
Clemens Ladischd5b702a2011-09-16 23:03:02 +02001540 */
1541int snd_pcm_hw_rule_noresample(struct snd_pcm_runtime *runtime,
1542 unsigned int base_rate)
1543{
1544 return snd_pcm_hw_rule_add(runtime, SNDRV_PCM_HW_PARAMS_NORESAMPLE,
1545 SNDRV_PCM_HW_PARAM_RATE,
1546 snd_pcm_hw_rule_noresample_func,
1547 (void *)(uintptr_t)base_rate,
1548 SNDRV_PCM_HW_PARAM_RATE, -1);
1549}
1550EXPORT_SYMBOL(snd_pcm_hw_rule_noresample);
1551
Takashi Iwai877211f2005-11-17 13:59:38 +01001552static void _snd_pcm_hw_param_any(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001553 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
1555 if (hw_is_mask(var)) {
1556 snd_mask_any(hw_param_mask(params, var));
1557 params->cmask |= 1 << var;
1558 params->rmask |= 1 << var;
1559 return;
1560 }
1561 if (hw_is_interval(var)) {
1562 snd_interval_any(hw_param_interval(params, var));
1563 params->cmask |= 1 << var;
1564 params->rmask |= 1 << var;
1565 return;
1566 }
1567 snd_BUG();
1568}
1569
Takashi Iwai877211f2005-11-17 13:59:38 +01001570void _snd_pcm_hw_params_any(struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
1572 unsigned int k;
1573 memset(params, 0, sizeof(*params));
1574 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++)
1575 _snd_pcm_hw_param_any(params, k);
1576 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
1577 _snd_pcm_hw_param_any(params, k);
1578 params->info = ~0U;
1579}
1580
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001581EXPORT_SYMBOL(_snd_pcm_hw_params_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001584 * snd_pcm_hw_param_value - return @params field @var value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001585 * @params: the hw_params instance
1586 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001587 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001589 * Return: The value for field @var if it's fixed in configuration space
1590 * defined by @params. -%EINVAL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001592int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
1593 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 if (hw_is_mask(var)) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001596 const struct snd_mask *mask = hw_param_mask_c(params, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (!snd_mask_single(mask))
1598 return -EINVAL;
1599 if (dir)
1600 *dir = 0;
1601 return snd_mask_value(mask);
1602 }
1603 if (hw_is_interval(var)) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001604 const struct snd_interval *i = hw_param_interval_c(params, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (!snd_interval_single(i))
1606 return -EINVAL;
1607 if (dir)
1608 *dir = i->openmin;
1609 return snd_interval_value(i);
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return -EINVAL;
1612}
1613
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001614EXPORT_SYMBOL(snd_pcm_hw_param_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Takashi Iwai877211f2005-11-17 13:59:38 +01001616void _snd_pcm_hw_param_setempty(struct snd_pcm_hw_params *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 snd_pcm_hw_param_t var)
1618{
1619 if (hw_is_mask(var)) {
1620 snd_mask_none(hw_param_mask(params, var));
1621 params->cmask |= 1 << var;
1622 params->rmask |= 1 << var;
1623 } else if (hw_is_interval(var)) {
1624 snd_interval_none(hw_param_interval(params, var));
1625 params->cmask |= 1 << var;
1626 params->rmask |= 1 << var;
1627 } else {
1628 snd_BUG();
1629 }
1630}
1631
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001632EXPORT_SYMBOL(_snd_pcm_hw_param_setempty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Takashi Iwai877211f2005-11-17 13:59:38 +01001634static int _snd_pcm_hw_param_first(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001635 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
1637 int changed;
1638 if (hw_is_mask(var))
1639 changed = snd_mask_refine_first(hw_param_mask(params, var));
1640 else if (hw_is_interval(var))
1641 changed = snd_interval_refine_first(hw_param_interval(params, var));
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001642 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (changed) {
1645 params->cmask |= 1 << var;
1646 params->rmask |= 1 << var;
1647 }
1648 return changed;
1649}
1650
1651
1652/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001653 * snd_pcm_hw_param_first - refine config space and return minimum value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001654 * @pcm: PCM instance
1655 * @params: the hw_params instance
1656 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001657 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001659 * Inside configuration space defined by @params remove from @var all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 * values > minimum. Reduce configuration space accordingly.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001661 *
1662 * Return: The minimum, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001664int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
1665 struct snd_pcm_hw_params *params,
1666 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 int changed = _snd_pcm_hw_param_first(params, var);
1669 if (changed < 0)
1670 return changed;
1671 if (params->rmask) {
1672 int err = snd_pcm_hw_refine(pcm, params);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001673 if (snd_BUG_ON(err < 0))
1674 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676 return snd_pcm_hw_param_value(params, var, dir);
1677}
1678
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001679EXPORT_SYMBOL(snd_pcm_hw_param_first);
1680
Takashi Iwai877211f2005-11-17 13:59:38 +01001681static int _snd_pcm_hw_param_last(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001682 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 int changed;
1685 if (hw_is_mask(var))
1686 changed = snd_mask_refine_last(hw_param_mask(params, var));
1687 else if (hw_is_interval(var))
1688 changed = snd_interval_refine_last(hw_param_interval(params, var));
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001689 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (changed) {
1692 params->cmask |= 1 << var;
1693 params->rmask |= 1 << var;
1694 }
1695 return changed;
1696}
1697
1698
1699/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001700 * snd_pcm_hw_param_last - refine config space and return maximum value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001701 * @pcm: PCM instance
1702 * @params: the hw_params instance
1703 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001704 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001706 * Inside configuration space defined by @params remove from @var all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 * values < maximum. Reduce configuration space accordingly.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001708 *
1709 * Return: The maximum, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001711int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
1712 struct snd_pcm_hw_params *params,
1713 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 int changed = _snd_pcm_hw_param_last(params, var);
1716 if (changed < 0)
1717 return changed;
1718 if (params->rmask) {
1719 int err = snd_pcm_hw_refine(pcm, params);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001720 if (snd_BUG_ON(err < 0))
1721 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723 return snd_pcm_hw_param_value(params, var, dir);
1724}
1725
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001726EXPORT_SYMBOL(snd_pcm_hw_param_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001729 * snd_pcm_hw_param_choose - choose a configuration defined by @params
Takashi Iwaidf8db932005-09-07 13:38:19 +02001730 * @pcm: PCM instance
1731 * @params: the hw_params instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001733 * Choose one configuration from configuration space defined by @params.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 * The configuration chosen is that obtained fixing in this order:
1735 * first access, first format, first subformat, min channels,
1736 * min rate, min period time, max buffer size, min tick time
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001737 *
1738 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 */
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001740int snd_pcm_hw_params_choose(struct snd_pcm_substream *pcm,
1741 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Takashi Sakamotob46fe5d2017-05-17 08:48:18 +09001743 static const int vars[] = {
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001744 SNDRV_PCM_HW_PARAM_ACCESS,
1745 SNDRV_PCM_HW_PARAM_FORMAT,
1746 SNDRV_PCM_HW_PARAM_SUBFORMAT,
1747 SNDRV_PCM_HW_PARAM_CHANNELS,
1748 SNDRV_PCM_HW_PARAM_RATE,
1749 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1750 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1751 SNDRV_PCM_HW_PARAM_TICK_TIME,
1752 -1
1753 };
Takashi Sakamotob46fe5d2017-05-17 08:48:18 +09001754 const int *v;
1755 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001757 for (v = vars; *v != -1; v++) {
1758 if (*v != SNDRV_PCM_HW_PARAM_BUFFER_SIZE)
1759 err = snd_pcm_hw_param_first(pcm, params, *v, NULL);
1760 else
1761 err = snd_pcm_hw_param_last(pcm, params, *v, NULL);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001762 if (snd_BUG_ON(err < 0))
1763 return err;
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return 0;
1766}
1767
Takashi Iwai877211f2005-11-17 13:59:38 +01001768static int snd_pcm_lib_ioctl_reset(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 void *arg)
1770{
Takashi Iwai877211f2005-11-17 13:59:38 +01001771 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 unsigned long flags;
1773 snd_pcm_stream_lock_irqsave(substream, flags);
1774 if (snd_pcm_running(substream) &&
1775 snd_pcm_update_hw_ptr(substream) >= 0)
1776 runtime->status->hw_ptr %= runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -05001777 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 runtime->status->hw_ptr = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -05001779 runtime->hw_ptr_wrap = 0;
1780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 snd_pcm_stream_unlock_irqrestore(substream, flags);
1782 return 0;
1783}
1784
Takashi Iwai877211f2005-11-17 13:59:38 +01001785static int snd_pcm_lib_ioctl_channel_info(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 void *arg)
1787{
Takashi Iwai877211f2005-11-17 13:59:38 +01001788 struct snd_pcm_channel_info *info = arg;
1789 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 int width;
1791 if (!(runtime->info & SNDRV_PCM_INFO_MMAP)) {
1792 info->offset = -1;
1793 return 0;
1794 }
1795 width = snd_pcm_format_physical_width(runtime->format);
1796 if (width < 0)
1797 return width;
1798 info->offset = 0;
1799 switch (runtime->access) {
1800 case SNDRV_PCM_ACCESS_MMAP_INTERLEAVED:
1801 case SNDRV_PCM_ACCESS_RW_INTERLEAVED:
1802 info->first = info->channel * width;
1803 info->step = runtime->channels * width;
1804 break;
1805 case SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED:
1806 case SNDRV_PCM_ACCESS_RW_NONINTERLEAVED:
1807 {
1808 size_t size = runtime->dma_bytes / runtime->channels;
1809 info->first = info->channel * size * 8;
1810 info->step = width;
1811 break;
1812 }
1813 default:
1814 snd_BUG();
1815 break;
1816 }
1817 return 0;
1818}
1819
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001820static int snd_pcm_lib_ioctl_fifo_size(struct snd_pcm_substream *substream,
1821 void *arg)
1822{
1823 struct snd_pcm_hw_params *params = arg;
1824 snd_pcm_format_t format;
Clemens Ladischa9960e62014-09-21 22:50:57 +02001825 int channels;
1826 ssize_t frame_size;
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001827
1828 params->fifo_size = substream->runtime->hw.fifo_size;
1829 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) {
1830 format = params_format(params);
1831 channels = params_channels(params);
Clemens Ladischa9960e62014-09-21 22:50:57 +02001832 frame_size = snd_pcm_format_size(format, channels);
1833 if (frame_size > 0)
1834 params->fifo_size /= (unsigned)frame_size;
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001835 }
1836 return 0;
1837}
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839/**
1840 * snd_pcm_lib_ioctl - a generic PCM ioctl callback
1841 * @substream: the pcm substream instance
1842 * @cmd: ioctl command
1843 * @arg: ioctl argument
1844 *
1845 * Processes the generic ioctl commands for PCM.
1846 * Can be passed as the ioctl callback for PCM ops.
1847 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001848 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001850int snd_pcm_lib_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 unsigned int cmd, void *arg)
1852{
1853 switch (cmd) {
1854 case SNDRV_PCM_IOCTL1_INFO:
1855 return 0;
1856 case SNDRV_PCM_IOCTL1_RESET:
1857 return snd_pcm_lib_ioctl_reset(substream, arg);
1858 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
1859 return snd_pcm_lib_ioctl_channel_info(substream, arg);
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001860 case SNDRV_PCM_IOCTL1_FIFO_SIZE:
1861 return snd_pcm_lib_ioctl_fifo_size(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863 return -ENXIO;
1864}
1865
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001866EXPORT_SYMBOL(snd_pcm_lib_ioctl);
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868/**
1869 * snd_pcm_period_elapsed - update the pcm status for the next period
1870 * @substream: the pcm substream instance
1871 *
1872 * This function is called from the interrupt handler when the
1873 * PCM has processed the period size. It will update the current
Takashi Iwai31e89602008-01-08 18:09:57 +01001874 * pointer, wake up sleepers, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 *
1876 * Even if more than one periods have elapsed since the last call, you
1877 * have to call this only once.
1878 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001879void snd_pcm_period_elapsed(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Takashi Iwai877211f2005-11-17 13:59:38 +01001881 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 unsigned long flags;
1883
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001884 if (PCM_RUNTIME_CHECK(substream))
1885 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 snd_pcm_stream_lock_irqsave(substream, flags);
1889 if (!snd_pcm_running(substream) ||
Jaroslav Kyselaf2404062010-01-05 17:19:34 +01001890 snd_pcm_update_hw_ptr0(substream, 1) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 goto _end;
1892
Jie Yang90bbaf62015-10-16 17:57:46 +08001893#ifdef CONFIG_SND_PCM_TIMER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (substream->timer_running)
1895 snd_timer_interrupt(substream->timer, 1);
Jie Yang90bbaf62015-10-16 17:57:46 +08001896#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 _end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 kill_fasync(&runtime->fasync, SIGIO, POLL_IN);
Takashi Iwai3aa02cb2016-04-14 18:02:37 +02001899 snd_pcm_stream_unlock_irqrestore(substream, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001902EXPORT_SYMBOL(snd_pcm_period_elapsed);
1903
Takashi Iwai13075512008-01-08 18:08:14 +01001904/*
1905 * Wait until avail_min data becomes available
1906 * Returns a negative error code if any error occurs during operation.
1907 * The available space is stored on availp. When err = 0 and avail = 0
1908 * on the capture stream, it indicates the stream is in DRAINING state.
1909 */
David Dillow5daeba32010-06-27 00:13:20 +02001910static int wait_for_avail(struct snd_pcm_substream *substream,
Takashi Iwai13075512008-01-08 18:08:14 +01001911 snd_pcm_uframes_t *availp)
1912{
1913 struct snd_pcm_runtime *runtime = substream->runtime;
1914 int is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1915 wait_queue_t wait;
1916 int err = 0;
1917 snd_pcm_uframes_t avail = 0;
Takashi Iwaif2b36142011-05-26 08:09:38 +02001918 long wait_time, tout;
Takashi Iwai13075512008-01-08 18:08:14 +01001919
Arjan van de Ven763437a2011-09-15 08:49:25 +02001920 init_waitqueue_entry(&wait, current);
1921 set_current_state(TASK_INTERRUPTIBLE);
1922 add_wait_queue(&runtime->tsleep, &wait);
1923
Takashi Iwaif2b36142011-05-26 08:09:38 +02001924 if (runtime->no_period_wakeup)
1925 wait_time = MAX_SCHEDULE_TIMEOUT;
1926 else {
1927 wait_time = 10;
1928 if (runtime->rate) {
1929 long t = runtime->period_size * 2 / runtime->rate;
1930 wait_time = max(t, wait_time);
1931 }
1932 wait_time = msecs_to_jiffies(wait_time * 1000);
1933 }
Arjan van de Ven763437a2011-09-15 08:49:25 +02001934
Takashi Iwai13075512008-01-08 18:08:14 +01001935 for (;;) {
1936 if (signal_pending(current)) {
1937 err = -ERESTARTSYS;
1938 break;
1939 }
Arjan van de Ven763437a2011-09-15 08:49:25 +02001940
1941 /*
1942 * We need to check if space became available already
1943 * (and thus the wakeup happened already) first to close
1944 * the race of space already having become available.
1945 * This check must happen after been added to the waitqueue
1946 * and having current state be INTERRUPTIBLE.
1947 */
1948 if (is_playback)
1949 avail = snd_pcm_playback_avail(runtime);
1950 else
1951 avail = snd_pcm_capture_avail(runtime);
1952 if (avail >= runtime->twake)
1953 break;
Takashi Iwai13075512008-01-08 18:08:14 +01001954 snd_pcm_stream_unlock_irq(substream);
Arjan van de Ven763437a2011-09-15 08:49:25 +02001955
1956 tout = schedule_timeout(wait_time);
1957
Takashi Iwai13075512008-01-08 18:08:14 +01001958 snd_pcm_stream_lock_irq(substream);
Arjan van de Ven763437a2011-09-15 08:49:25 +02001959 set_current_state(TASK_INTERRUPTIBLE);
Takashi Iwai13075512008-01-08 18:08:14 +01001960 switch (runtime->status->state) {
1961 case SNDRV_PCM_STATE_SUSPENDED:
1962 err = -ESTRPIPE;
1963 goto _endloop;
1964 case SNDRV_PCM_STATE_XRUN:
1965 err = -EPIPE;
1966 goto _endloop;
1967 case SNDRV_PCM_STATE_DRAINING:
1968 if (is_playback)
1969 err = -EPIPE;
1970 else
1971 avail = 0; /* indicate draining */
1972 goto _endloop;
1973 case SNDRV_PCM_STATE_OPEN:
1974 case SNDRV_PCM_STATE_SETUP:
1975 case SNDRV_PCM_STATE_DISCONNECTED:
1976 err = -EBADFD;
1977 goto _endloop;
JongHo Kimed697e12013-12-17 23:02:24 +09001978 case SNDRV_PCM_STATE_PAUSED:
1979 continue;
Takashi Iwai13075512008-01-08 18:08:14 +01001980 }
1981 if (!tout) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01001982 pcm_dbg(substream->pcm,
1983 "%s write error (DMA or IRQ trouble?)\n",
1984 is_playback ? "playback" : "capture");
Takashi Iwai13075512008-01-08 18:08:14 +01001985 err = -EIO;
1986 break;
1987 }
Takashi Iwai13075512008-01-08 18:08:14 +01001988 }
1989 _endloop:
Arjan van de Ven763437a2011-09-15 08:49:25 +02001990 set_current_state(TASK_RUNNING);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001991 remove_wait_queue(&runtime->tsleep, &wait);
Takashi Iwai13075512008-01-08 18:08:14 +01001992 *availp = avail;
1993 return err;
1994}
1995
Takashi Iwai9f600632017-05-24 18:15:26 +02001996typedef int (*pcm_transfer_f)(struct snd_pcm_substream *substream,
1997 int channel, unsigned long hwoff,
1998 void *buf, unsigned long bytes);
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02001999
Takashi Iwai9f600632017-05-24 18:15:26 +02002000typedef int (*pcm_copy_f)(struct snd_pcm_substream *, snd_pcm_uframes_t, void *,
2001 snd_pcm_uframes_t, snd_pcm_uframes_t, pcm_transfer_f);
2002
2003/* calculate the target DMA-buffer position to be written/read */
2004static void *get_dma_ptr(struct snd_pcm_runtime *runtime,
2005 int channel, unsigned long hwoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Takashi Iwai9f600632017-05-24 18:15:26 +02002007 return runtime->dma_area + hwoff +
2008 channel * (runtime->dma_bytes / runtime->channels);
2009}
2010
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002011/* default copy_user ops for write; used for both interleaved and non- modes */
2012static int default_write_copy(struct snd_pcm_substream *substream,
2013 int channel, unsigned long hwoff,
2014 void *buf, unsigned long bytes)
Takashi Iwai9f600632017-05-24 18:15:26 +02002015{
2016 if (copy_from_user(get_dma_ptr(substream->runtime, channel, hwoff),
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002017 (void __user *)buf, bytes))
Takashi Iwai9f600632017-05-24 18:15:26 +02002018 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return 0;
2020}
Takashi Iwai9f600632017-05-24 18:15:26 +02002021
2022/* fill silence instead of copy data; called as a transfer helper
2023 * from __snd_pcm_lib_write() or directly from noninterleaved_copy() when
2024 * a NULL buffer is passed
2025 */
2026static int fill_silence(struct snd_pcm_substream *substream, int channel,
2027 unsigned long hwoff, void *buf, unsigned long bytes)
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02002028{
2029 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02002030
Takashi Iwai9f600632017-05-24 18:15:26 +02002031 if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
2032 return 0;
2033 if (substream->ops->fill_silence)
2034 return substream->ops->fill_silence(substream, channel,
2035 hwoff, bytes);
2036
2037 snd_pcm_format_set_silence(runtime->format,
2038 get_dma_ptr(runtime, channel, hwoff),
2039 bytes_to_samples(runtime, bytes));
2040 return 0;
2041}
2042
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002043/* default copy_user ops for read; used for both interleaved and non- modes */
2044static int default_read_copy(struct snd_pcm_substream *substream,
2045 int channel, unsigned long hwoff,
2046 void *buf, unsigned long bytes)
2047{
2048 if (copy_to_user((void __user *)buf,
2049 get_dma_ptr(substream->runtime, channel, hwoff),
2050 bytes))
2051 return -EFAULT;
2052 return 0;
2053}
2054
Takashi Iwai9f600632017-05-24 18:15:26 +02002055/* call transfer function with the converted pointers and sizes;
2056 * for interleaved mode, it's one shot for all samples
2057 */
2058static int interleaved_copy(struct snd_pcm_substream *substream,
2059 snd_pcm_uframes_t hwoff, void *data,
2060 snd_pcm_uframes_t off,
2061 snd_pcm_uframes_t frames,
2062 pcm_transfer_f transfer)
2063{
2064 struct snd_pcm_runtime *runtime = substream->runtime;
2065
2066 /* convert to bytes */
2067 hwoff = frames_to_bytes(runtime, hwoff);
2068 off = frames_to_bytes(runtime, off);
2069 frames = frames_to_bytes(runtime, frames);
2070 return transfer(substream, 0, hwoff, data + off, frames);
2071}
2072
2073/* call transfer function with the converted pointers and sizes for each
2074 * non-interleaved channel; when buffer is NULL, silencing instead of copying
2075 */
2076static int noninterleaved_copy(struct snd_pcm_substream *substream,
2077 snd_pcm_uframes_t hwoff, void *data,
2078 snd_pcm_uframes_t off,
2079 snd_pcm_uframes_t frames,
2080 pcm_transfer_f transfer)
2081{
2082 struct snd_pcm_runtime *runtime = substream->runtime;
2083 int channels = runtime->channels;
2084 void **bufs = data;
2085 int c, err;
2086
2087 /* convert to bytes; note that it's not frames_to_bytes() here.
2088 * in non-interleaved mode, we copy for each channel, thus
2089 * each copy is n_samples bytes x channels = whole frames.
2090 */
2091 off = samples_to_bytes(runtime, off);
2092 frames = samples_to_bytes(runtime, frames);
2093 hwoff = samples_to_bytes(runtime, hwoff);
2094 for (c = 0; c < channels; ++c, ++bufs) {
2095 if (!data || !*bufs)
2096 err = fill_silence(substream, c, hwoff, NULL, frames);
2097 else
2098 err = transfer(substream, c, hwoff, *bufs + off,
2099 frames);
2100 if (err < 0)
2101 return err;
Takashi Iwaibdc4acf2017-05-24 17:59:17 +02002102 }
2103 return 0;
2104}
2105
2106/* sanity-check for read/write methods */
2107static int pcm_sanity_check(struct snd_pcm_substream *substream)
2108{
2109 struct snd_pcm_runtime *runtime;
2110 if (PCM_RUNTIME_CHECK(substream))
2111 return -ENXIO;
2112 runtime = substream->runtime;
2113 if (snd_BUG_ON(!substream->ops->copy_user && !runtime->dma_area))
2114 return -EINVAL;
2115 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2116 return -EBADFD;
2117 return 0;
2118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Takashi Iwai6ba63922017-05-24 17:51:30 +02002120static int pcm_accessible_state(struct snd_pcm_runtime *runtime)
2121{
2122 switch (runtime->status->state) {
2123 case SNDRV_PCM_STATE_PREPARED:
2124 case SNDRV_PCM_STATE_RUNNING:
2125 case SNDRV_PCM_STATE_PAUSED:
2126 return 0;
2127 case SNDRV_PCM_STATE_XRUN:
2128 return -EPIPE;
2129 case SNDRV_PCM_STATE_SUSPENDED:
2130 return -ESTRPIPE;
2131 default:
2132 return -EBADFD;
2133 }
2134}
2135
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002136/* the common loop for read/write data */
2137snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream,
2138 void *data, bool interleaved,
2139 snd_pcm_uframes_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Takashi Iwai877211f2005-11-17 13:59:38 +01002141 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 snd_pcm_uframes_t xfer = 0;
2143 snd_pcm_uframes_t offset = 0;
Takashi Iwai0910c212012-05-11 17:50:49 +02002144 snd_pcm_uframes_t avail;
Takashi Iwai9f600632017-05-24 18:15:26 +02002145 pcm_copy_f writer;
2146 pcm_transfer_f transfer;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002147 bool nonblock;
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002148 bool is_playback;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002149 int err;
2150
2151 err = pcm_sanity_check(substream);
2152 if (err < 0)
2153 return err;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002154
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002155 is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002156 if (interleaved) {
2157 if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED &&
2158 runtime->channels > 1)
2159 return -EINVAL;
Takashi Iwai9f600632017-05-24 18:15:26 +02002160 writer = interleaved_copy;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002161 } else {
2162 if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
2163 return -EINVAL;
Takashi Iwai9f600632017-05-24 18:15:26 +02002164 writer = noninterleaved_copy;
2165 }
2166
2167 if (!data) {
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002168 if (is_playback)
2169 transfer = fill_silence;
2170 else
2171 return -EINVAL;
Takashi Iwai9f600632017-05-24 18:15:26 +02002172 } else {
2173 if (substream->ops->copy_user)
2174 transfer = (pcm_transfer_f)substream->ops->copy_user;
2175 else
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002176 transfer = is_playback ?
2177 default_write_copy : default_read_copy;
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 if (size == 0)
2181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Takashi Iwaic48f12ee2017-05-21 09:35:21 +02002183 nonblock = !!(substream->f_flags & O_NONBLOCK);
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 snd_pcm_stream_lock_irq(substream);
Takashi Iwai6ba63922017-05-24 17:51:30 +02002186 err = pcm_accessible_state(runtime);
2187 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002190 if (!is_playback &&
2191 runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
2192 size >= runtime->start_threshold) {
2193 err = snd_pcm_start(substream);
2194 if (err < 0)
2195 goto _end_unlock;
2196 }
2197
David Dillow5daeba32010-06-27 00:13:20 +02002198 runtime->twake = runtime->control->avail_min ? : 1;
Takashi Iwai0910c212012-05-11 17:50:49 +02002199 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
2200 snd_pcm_update_hw_ptr(substream);
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002201 if (is_playback)
2202 avail = snd_pcm_playback_avail(runtime);
2203 else
2204 avail = snd_pcm_capture_avail(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 while (size > 0) {
2206 snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 snd_pcm_uframes_t cont;
Takashi Iwai13075512008-01-08 18:08:14 +01002208 if (!avail) {
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002209 if (!is_playback &&
2210 runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
2211 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
2212 goto _end_unlock;
2213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 if (nonblock) {
2215 err = -EAGAIN;
2216 goto _end_unlock;
2217 }
David Dillow5daeba32010-06-27 00:13:20 +02002218 runtime->twake = min_t(snd_pcm_uframes_t, size,
2219 runtime->control->avail_min ? : 1);
2220 err = wait_for_avail(substream, &avail);
Takashi Iwai13075512008-01-08 18:08:14 +01002221 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 goto _end_unlock;
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002223 if (!avail)
2224 continue; /* draining */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 frames = size > avail ? avail : size;
2227 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
2228 if (frames > cont)
2229 frames = cont;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002230 if (snd_BUG_ON(!frames)) {
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002231 runtime->twake = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002232 snd_pcm_stream_unlock_irq(substream);
2233 return -EINVAL;
2234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 appl_ptr = runtime->control->appl_ptr;
2236 appl_ofs = appl_ptr % runtime->buffer_size;
2237 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai9f600632017-05-24 18:15:26 +02002238 err = writer(substream, appl_ofs, data, offset, frames,
2239 transfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 snd_pcm_stream_lock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +01002241 if (err < 0)
2242 goto _end_unlock;
Takashi Iwai6ba63922017-05-24 17:51:30 +02002243 err = pcm_accessible_state(runtime);
2244 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 appl_ptr += frames;
2247 if (appl_ptr >= runtime->boundary)
2248 appl_ptr -= runtime->boundary;
2249 runtime->control->appl_ptr = appl_ptr;
2250 if (substream->ops->ack)
2251 substream->ops->ack(substream);
2252
2253 offset += frames;
2254 size -= frames;
2255 xfer += frames;
Takashi Iwai0910c212012-05-11 17:50:49 +02002256 avail -= frames;
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002257 if (is_playback &&
2258 runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 snd_pcm_playback_hw_avail(runtime) >= (snd_pcm_sframes_t)runtime->start_threshold) {
2260 err = snd_pcm_start(substream);
2261 if (err < 0)
2262 goto _end_unlock;
2263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265 _end_unlock:
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002266 runtime->twake = 0;
Jaroslav Kysela12509322010-01-07 15:36:31 +01002267 if (xfer > 0 && err >= 0)
2268 snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 snd_pcm_stream_unlock_irq(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err;
2271}
Takashi Iwai5c7264c2017-05-24 22:36:23 +02002272EXPORT_SYMBOL(__snd_pcm_lib_xfer);
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002273
2274/*
2275 * standard channel mapping helpers
2276 */
2277
2278/* default channel maps for multi-channel playbacks, up to 8 channels */
2279const struct snd_pcm_chmap_elem snd_pcm_std_chmaps[] = {
2280 { .channels = 1,
Takashi Iwai5efbc262012-09-13 14:48:46 +02002281 .map = { SNDRV_CHMAP_MONO } },
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002282 { .channels = 2,
2283 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
2284 { .channels = 4,
2285 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2286 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2287 { .channels = 6,
2288 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2289 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2290 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE } },
2291 { .channels = 8,
2292 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2293 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2294 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2295 SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } },
2296 { }
2297};
2298EXPORT_SYMBOL_GPL(snd_pcm_std_chmaps);
2299
2300/* alternative channel maps with CLFE <-> surround swapped for 6/8 channels */
2301const struct snd_pcm_chmap_elem snd_pcm_alt_chmaps[] = {
2302 { .channels = 1,
Takashi Iwai5efbc262012-09-13 14:48:46 +02002303 .map = { SNDRV_CHMAP_MONO } },
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002304 { .channels = 2,
2305 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
2306 { .channels = 4,
2307 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2308 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2309 { .channels = 6,
2310 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2311 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2312 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2313 { .channels = 8,
2314 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2315 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2316 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2317 SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } },
2318 { }
2319};
2320EXPORT_SYMBOL_GPL(snd_pcm_alt_chmaps);
2321
2322static bool valid_chmap_channels(const struct snd_pcm_chmap *info, int ch)
2323{
2324 if (ch > info->max_channels)
2325 return false;
2326 return !info->channel_mask || (info->channel_mask & (1U << ch));
2327}
2328
2329static int pcm_chmap_ctl_info(struct snd_kcontrol *kcontrol,
2330 struct snd_ctl_elem_info *uinfo)
2331{
2332 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2333
2334 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2335 uinfo->count = 0;
2336 uinfo->count = info->max_channels;
2337 uinfo->value.integer.min = 0;
2338 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
2339 return 0;
2340}
2341
2342/* get callback for channel map ctl element
2343 * stores the channel position firstly matching with the current channels
2344 */
2345static int pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
2346 struct snd_ctl_elem_value *ucontrol)
2347{
2348 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2349 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2350 struct snd_pcm_substream *substream;
2351 const struct snd_pcm_chmap_elem *map;
2352
2353 if (snd_BUG_ON(!info->chmap))
2354 return -EINVAL;
2355 substream = snd_pcm_chmap_substream(info, idx);
2356 if (!substream)
2357 return -ENODEV;
2358 memset(ucontrol->value.integer.value, 0,
2359 sizeof(ucontrol->value.integer.value));
2360 if (!substream->runtime)
2361 return 0; /* no channels set */
2362 for (map = info->chmap; map->channels; map++) {
2363 int i;
2364 if (map->channels == substream->runtime->channels &&
2365 valid_chmap_channels(info, map->channels)) {
2366 for (i = 0; i < map->channels; i++)
2367 ucontrol->value.integer.value[i] = map->map[i];
2368 return 0;
2369 }
2370 }
2371 return -EINVAL;
2372}
2373
2374/* tlv callback for channel map ctl element
2375 * expands the pre-defined channel maps in a form of TLV
2376 */
2377static int pcm_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2378 unsigned int size, unsigned int __user *tlv)
2379{
2380 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2381 const struct snd_pcm_chmap_elem *map;
2382 unsigned int __user *dst;
2383 int c, count = 0;
2384
2385 if (snd_BUG_ON(!info->chmap))
2386 return -EINVAL;
2387 if (size < 8)
2388 return -ENOMEM;
2389 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
2390 return -EFAULT;
2391 size -= 8;
2392 dst = tlv + 2;
2393 for (map = info->chmap; map->channels; map++) {
2394 int chs_bytes = map->channels * 4;
2395 if (!valid_chmap_channels(info, map->channels))
2396 continue;
2397 if (size < 8)
2398 return -ENOMEM;
2399 if (put_user(SNDRV_CTL_TLVT_CHMAP_FIXED, dst) ||
2400 put_user(chs_bytes, dst + 1))
2401 return -EFAULT;
2402 dst += 2;
2403 size -= 8;
2404 count += 8;
2405 if (size < chs_bytes)
2406 return -ENOMEM;
2407 size -= chs_bytes;
2408 count += chs_bytes;
2409 for (c = 0; c < map->channels; c++) {
2410 if (put_user(map->map[c], dst))
2411 return -EFAULT;
2412 dst++;
2413 }
2414 }
2415 if (put_user(count, tlv + 1))
2416 return -EFAULT;
2417 return 0;
2418}
2419
2420static void pcm_chmap_ctl_private_free(struct snd_kcontrol *kcontrol)
2421{
2422 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2423 info->pcm->streams[info->stream].chmap_kctl = NULL;
2424 kfree(info);
2425}
2426
2427/**
2428 * snd_pcm_add_chmap_ctls - create channel-mapping control elements
2429 * @pcm: the assigned PCM instance
2430 * @stream: stream direction
2431 * @chmap: channel map elements (for query)
2432 * @max_channels: the max number of channels for the stream
2433 * @private_value: the value passed to each kcontrol's private_value field
2434 * @info_ret: store struct snd_pcm_chmap instance if non-NULL
2435 *
2436 * Create channel-mapping control elements assigned to the given PCM stream(s).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01002437 * Return: Zero if successful, or a negative error value.
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002438 */
2439int snd_pcm_add_chmap_ctls(struct snd_pcm *pcm, int stream,
2440 const struct snd_pcm_chmap_elem *chmap,
2441 int max_channels,
2442 unsigned long private_value,
2443 struct snd_pcm_chmap **info_ret)
2444{
2445 struct snd_pcm_chmap *info;
2446 struct snd_kcontrol_new knew = {
2447 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2448 .access = SNDRV_CTL_ELEM_ACCESS_READ |
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002449 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2450 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2451 .info = pcm_chmap_ctl_info,
2452 .get = pcm_chmap_ctl_get,
2453 .tlv.c = pcm_chmap_ctl_tlv,
2454 };
2455 int err;
2456
Takashi Iwai8d879be2016-05-10 16:07:40 +02002457 if (WARN_ON(pcm->streams[stream].chmap_kctl))
2458 return -EBUSY;
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002459 info = kzalloc(sizeof(*info), GFP_KERNEL);
2460 if (!info)
2461 return -ENOMEM;
2462 info->pcm = pcm;
2463 info->stream = stream;
2464 info->chmap = chmap;
2465 info->max_channels = max_channels;
2466 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2467 knew.name = "Playback Channel Map";
2468 else
2469 knew.name = "Capture Channel Map";
2470 knew.device = pcm->device;
2471 knew.count = pcm->streams[stream].substream_count;
2472 knew.private_value = private_value;
2473 info->kctl = snd_ctl_new1(&knew, info);
2474 if (!info->kctl) {
2475 kfree(info);
2476 return -ENOMEM;
2477 }
2478 info->kctl->private_free = pcm_chmap_ctl_private_free;
2479 err = snd_ctl_add(pcm->card, info->kctl);
2480 if (err < 0)
2481 return err;
2482 pcm->streams[stream].chmap_kctl = info->kctl;
2483 if (info_ret)
2484 *info_ret = info;
2485 return 0;
2486}
2487EXPORT_SYMBOL_GPL(snd_pcm_add_chmap_ctls);