blob: 9306604f50700a9eda2b5ad7b5adf4fc141e94b7 [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>
24#include <linux/time.h>
Takashi Iwai3f7440a2009-06-05 17:40:04 +020025#include <linux/math64.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <sound/core.h>
28#include <sound/control.h>
Takashi Iwai2d3391e2012-07-27 18:27:00 +020029#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/info.h>
31#include <sound/pcm.h>
32#include <sound/pcm_params.h>
33#include <sound/timer.h>
34
Takashi Iwaif5914902014-11-04 12:45:59 +010035#ifdef CONFIG_SND_PCM_XRUN_DEBUG
36#define CREATE_TRACE_POINTS
37#include "pcm_trace.h"
38#else
39#define trace_hwptr(substream, pos, in_interrupt)
40#define trace_xrun(substream)
41#define trace_hw_ptr_error(substream, reason)
42#endif
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * fill ring buffer with silence
46 * runtime->silence_start: starting pointer to silence area
47 * runtime->silence_filled: size filled with silence
48 * runtime->silence_threshold: threshold from application
49 * runtime->silence_size: maximal size from application
50 *
51 * when runtime->silence_size >= runtime->boundary - fill processed area with silence immediately
52 */
Takashi Iwai877211f2005-11-17 13:59:38 +010053void snd_pcm_playback_silence(struct snd_pcm_substream *substream, snd_pcm_uframes_t new_hw_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Takashi Iwai877211f2005-11-17 13:59:38 +010055 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 snd_pcm_uframes_t frames, ofs, transfer;
57
58 if (runtime->silence_size < runtime->boundary) {
59 snd_pcm_sframes_t noise_dist, n;
60 if (runtime->silence_start != runtime->control->appl_ptr) {
61 n = runtime->control->appl_ptr - runtime->silence_start;
62 if (n < 0)
63 n += runtime->boundary;
64 if ((snd_pcm_uframes_t)n < runtime->silence_filled)
65 runtime->silence_filled -= n;
66 else
67 runtime->silence_filled = 0;
68 runtime->silence_start = runtime->control->appl_ptr;
69 }
Takashi Iwai235475c2005-12-07 15:28:07 +010070 if (runtime->silence_filled >= runtime->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 noise_dist = snd_pcm_playback_hw_avail(runtime) + runtime->silence_filled;
73 if (noise_dist >= (snd_pcm_sframes_t) runtime->silence_threshold)
74 return;
75 frames = runtime->silence_threshold - noise_dist;
76 if (frames > runtime->silence_size)
77 frames = runtime->silence_size;
78 } else {
79 if (new_hw_ptr == ULONG_MAX) { /* initialization */
80 snd_pcm_sframes_t avail = snd_pcm_playback_hw_avail(runtime);
Jaroslav Kysela9e216e82010-07-19 16:37:39 +020081 if (avail > runtime->buffer_size)
82 avail = runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 runtime->silence_filled = avail > 0 ? avail : 0;
84 runtime->silence_start = (runtime->status->hw_ptr +
85 runtime->silence_filled) %
86 runtime->boundary;
87 } else {
88 ofs = runtime->status->hw_ptr;
89 frames = new_hw_ptr - ofs;
90 if ((snd_pcm_sframes_t)frames < 0)
91 frames += runtime->boundary;
92 runtime->silence_filled -= frames;
93 if ((snd_pcm_sframes_t)runtime->silence_filled < 0) {
94 runtime->silence_filled = 0;
Clemens Ladisch9a826dd2006-10-23 16:26:57 +020095 runtime->silence_start = new_hw_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 } else {
Clemens Ladisch9a826dd2006-10-23 16:26:57 +020097 runtime->silence_start = ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100 frames = runtime->buffer_size - runtime->silence_filled;
101 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200102 if (snd_BUG_ON(frames > runtime->buffer_size))
103 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (frames == 0)
105 return;
Clemens Ladisch9a826dd2006-10-23 16:26:57 +0200106 ofs = runtime->silence_start % runtime->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 while (frames > 0) {
108 transfer = ofs + frames > runtime->buffer_size ? runtime->buffer_size - ofs : frames;
109 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
110 runtime->access == SNDRV_PCM_ACCESS_MMAP_INTERLEAVED) {
111 if (substream->ops->silence) {
112 int err;
113 err = substream->ops->silence(substream, -1, ofs, transfer);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200114 snd_BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 } else {
116 char *hwbuf = runtime->dma_area + frames_to_bytes(runtime, ofs);
117 snd_pcm_format_set_silence(runtime->format, hwbuf, transfer * runtime->channels);
118 }
119 } else {
120 unsigned int c;
121 unsigned int channels = runtime->channels;
122 if (substream->ops->silence) {
123 for (c = 0; c < channels; ++c) {
124 int err;
125 err = substream->ops->silence(substream, c, ofs, transfer);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200126 snd_BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128 } else {
129 size_t dma_csize = runtime->dma_bytes / channels;
130 for (c = 0; c < channels; ++c) {
131 char *hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, ofs);
132 snd_pcm_format_set_silence(runtime->format, hwbuf, transfer);
133 }
134 }
135 }
136 runtime->silence_filled += transfer;
137 frames -= transfer;
138 ofs = 0;
139 }
140}
141
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200142#ifdef CONFIG_SND_DEBUG
143void snd_pcm_debug_name(struct snd_pcm_substream *substream,
Takashi Iwaic0070112009-06-08 15:58:48 +0200144 char *name, size_t len)
145{
146 snprintf(name, len, "pcmC%dD%d%c:%d",
147 substream->pcm->card->number,
148 substream->pcm->device,
149 substream->stream ? 'c' : 'p',
150 substream->number);
151}
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200152EXPORT_SYMBOL(snd_pcm_debug_name);
153#endif
Takashi Iwaic0070112009-06-08 15:58:48 +0200154
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100155#define XRUN_DEBUG_BASIC (1<<0)
156#define XRUN_DEBUG_STACK (1<<1) /* dump also stack */
157#define XRUN_DEBUG_JIFFIESCHECK (1<<2) /* do jiffies check */
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100158
159#ifdef CONFIG_SND_PCM_XRUN_DEBUG
160
161#define xrun_debug(substream, mask) \
162 ((substream)->pstr->xrun_debug & (mask))
Jarkko Nikula0f170142010-03-26 16:07:25 +0200163#else
164#define xrun_debug(substream, mask) 0
165#endif
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100166
167#define dump_stack_on_xrun(substream) do { \
168 if (xrun_debug(substream, XRUN_DEBUG_STACK)) \
169 dump_stack(); \
170 } while (0)
171
Takashi Iwai877211f2005-11-17 13:59:38 +0100172static void xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Jaroslav Kysela13f040f2009-05-28 11:31:20 +0200174 struct snd_pcm_runtime *runtime = substream->runtime;
175
Takashi Iwaif5914902014-11-04 12:45:59 +0100176 trace_xrun(substream);
Jaroslav Kysela13f040f2009-05-28 11:31:20 +0200177 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE)
178 snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
Jaroslav Kysela741b20c2009-12-17 17:34:39 +0100180 if (xrun_debug(substream, XRUN_DEBUG_BASIC)) {
Takashi Iwaic0070112009-06-08 15:58:48 +0200181 char name[16];
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200182 snd_pcm_debug_name(substream, name, sizeof(name));
Takashi Iwai09e56df2014-02-04 18:19:48 +0100183 pcm_warn(substream->pcm, "XRUN: %s\n", name);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100184 dump_stack_on_xrun(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Jarkko Nikula0f170142010-03-26 16:07:25 +0200188#ifdef CONFIG_SND_PCM_XRUN_DEBUG
Takashi Iwaif5914902014-11-04 12:45:59 +0100189#define hw_ptr_error(substream, in_interrupt, reason, fmt, args...) \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100190 do { \
Takashi Iwaif5914902014-11-04 12:45:59 +0100191 trace_hw_ptr_error(substream, reason); \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100192 if (xrun_debug(substream, XRUN_DEBUG_BASIC)) { \
Takashi Iwaif5914902014-11-04 12:45:59 +0100193 pr_err_ratelimited("ALSA: PCM: [%c] " reason ": " fmt, \
194 (in_interrupt) ? 'Q' : 'P', ##args); \
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100195 dump_stack_on_xrun(substream); \
196 } \
197 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100199#else /* ! CONFIG_SND_PCM_XRUN_DEBUG */
200
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100201#define hw_ptr_error(substream, fmt, args...) do { } while (0)
Jaroslav Kysela4d96eb22009-12-20 11:47:57 +0100202
203#endif
204
Jaroslav Kysela12509322010-01-07 15:36:31 +0100205int snd_pcm_update_state(struct snd_pcm_substream *substream,
206 struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 snd_pcm_uframes_t avail;
209
210 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
211 avail = snd_pcm_playback_avail(runtime);
212 else
213 avail = snd_pcm_capture_avail(runtime);
214 if (avail > runtime->avail_max)
215 runtime->avail_max = avail;
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200216 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
217 if (avail >= runtime->buffer_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 snd_pcm_drain_done(substream);
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200219 return -EPIPE;
220 }
221 } else {
222 if (avail >= runtime->stop_threshold) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 xrun(substream);
Takashi Iwai4cdc1152009-08-20 16:40:16 +0200224 return -EPIPE;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
David Dillow5daeba32010-06-27 00:13:20 +0200227 if (runtime->twake) {
228 if (avail >= runtime->twake)
229 wake_up(&runtime->tsleep);
230 } else if (avail >= runtime->control->avail_min)
231 wake_up(&runtime->sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
233}
234
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600235static void update_audio_tstamp(struct snd_pcm_substream *substream,
236 struct timespec *curr_tstamp,
237 struct timespec *audio_tstamp)
238{
239 struct snd_pcm_runtime *runtime = substream->runtime;
240 u64 audio_frames, audio_nsecs;
241 struct timespec driver_tstamp;
242
243 if (runtime->tstamp_mode != SNDRV_PCM_TSTAMP_ENABLE)
244 return;
245
246 if (!(substream->ops->get_time_info) ||
247 (runtime->audio_tstamp_report.actual_type ==
248 SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) {
249
250 /*
251 * provide audio timestamp derived from pointer position
252 * add delay only if requested
253 */
254
255 audio_frames = runtime->hw_ptr_wrap + runtime->status->hw_ptr;
256
257 if (runtime->audio_tstamp_config.report_delay) {
258 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
259 audio_frames -= runtime->delay;
260 else
261 audio_frames += runtime->delay;
262 }
263 audio_nsecs = div_u64(audio_frames * 1000000000LL,
264 runtime->rate);
265 *audio_tstamp = ns_to_timespec(audio_nsecs);
266 }
Henrik Eriksson14eb4542017-11-21 09:29:28 +0100267 if (!timespec_equal(&runtime->status->audio_tstamp, audio_tstamp)) {
268 runtime->status->audio_tstamp = *audio_tstamp;
269 runtime->status->tstamp = *curr_tstamp;
270 }
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600271
272 /*
273 * re-take a driver timestamp to let apps detect if the reference tstamp
274 * read by low-level hardware was provided with a delay
275 */
276 snd_pcm_gettime(substream->runtime, (struct timespec *)&driver_tstamp);
277 runtime->driver_tstamp = driver_tstamp;
278}
279
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100280static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream,
281 unsigned int in_interrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Takashi Iwai877211f2005-11-17 13:59:38 +0100283 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 snd_pcm_uframes_t pos;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100285 snd_pcm_uframes_t old_hw_ptr, new_hw_ptr, hw_base;
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200286 snd_pcm_sframes_t hdelta, delta;
287 unsigned long jdelta;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500288 unsigned long curr_jiffies;
289 struct timespec curr_tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500290 struct timespec audio_tstamp;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500291 int crossed_boundary = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200293 old_hw_ptr = runtime->status->hw_ptr;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500294
295 /*
296 * group pointer, time and jiffies reads to allow for more
297 * accurate correlations/corrections.
298 * The values are stored at the end of this routine after
299 * corrections for hw_ptr position
300 */
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100301 pos = substream->ops->pointer(substream);
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500302 curr_jiffies = jiffies;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500303 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600304 if ((substream->ops->get_time_info) &&
305 (runtime->audio_tstamp_config.type_requested != SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) {
306 substream->ops->get_time_info(substream, &curr_tstamp,
307 &audio_tstamp,
308 &runtime->audio_tstamp_config,
309 &runtime->audio_tstamp_report);
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500310
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600311 /* re-test in case tstamp type is not supported in hardware and was demoted to DEFAULT */
312 if (runtime->audio_tstamp_report.actual_type == SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)
313 snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp);
314 } else
315 snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp);
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500316 }
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (pos == SNDRV_PCM_POS_XRUN) {
319 xrun(substream);
320 return -EPIPE;
321 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100322 if (pos >= runtime->buffer_size) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100323 if (printk_ratelimit()) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100324 char name[16];
Eliot Blennerhassettacb03d42011-07-23 12:36:25 +1200325 snd_pcm_debug_name(substream, name, sizeof(name));
Takashi Iwai09e56df2014-02-04 18:19:48 +0100326 pcm_err(substream->pcm,
Takashi Iwai0ab1ace2016-03-10 20:56:20 +0100327 "invalid position: %s, pos = %ld, buffer size = %ld, period size = %ld\n",
Takashi Iwai09e56df2014-02-04 18:19:48 +0100328 name, pos, runtime->buffer_size,
329 runtime->period_size);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100330 }
331 pos = 0;
Takashi Iwaicedb8112009-07-23 11:04:13 +0200332 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100333 pos -= pos % runtime->min_align;
Takashi Iwaif5914902014-11-04 12:45:59 +0100334 trace_hwptr(substream, pos, in_interrupt);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100335 hw_base = runtime->hw_ptr_base;
336 new_hw_ptr = hw_base + pos;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100337 if (in_interrupt) {
338 /* we know that one period was processed */
339 /* delta = "expected next hw_ptr" for in_interrupt != 0 */
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100340 delta = runtime->hw_ptr_interrupt + runtime->period_size;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100341 if (delta > new_hw_ptr) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200342 /* check for double acknowledged interrupts */
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500343 hdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Koro Chen13a98832015-05-13 22:39:03 +0800344 if (hdelta > runtime->hw_ptr_buffer_jiffies/2 + 1) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200345 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500346 if (hw_base >= runtime->boundary) {
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200347 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500348 crossed_boundary++;
349 }
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200350 new_hw_ptr = hw_base + pos;
351 goto __delta;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100355 /* new_hw_ptr might be lower than old_hw_ptr in case when */
356 /* pointer crosses the end of the ring buffer */
357 if (new_hw_ptr < old_hw_ptr) {
358 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500359 if (hw_base >= runtime->boundary) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100360 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500361 crossed_boundary++;
362 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100363 new_hw_ptr = hw_base + pos;
364 }
365 __delta:
Clemens Ladischb406e612010-05-25 09:01:46 +0200366 delta = new_hw_ptr - old_hw_ptr;
367 if (delta < 0)
368 delta += runtime->boundary;
Clemens Ladischab69a492010-11-15 10:46:23 +0100369
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100370 if (runtime->no_period_wakeup) {
Kelly Anderson12ff4142011-04-01 11:58:25 +0200371 snd_pcm_sframes_t xrun_threshold;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100372 /*
373 * Without regular period interrupts, we have to check
374 * the elapsed time to detect xruns.
375 */
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500376 jdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Clemens Ladisch47228e42010-11-18 09:53:07 +0100377 if (jdelta < runtime->hw_ptr_buffer_jiffies / 2)
378 goto no_delta_check;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100379 hdelta = jdelta - delta * HZ / runtime->rate;
Kelly Anderson12ff4142011-04-01 11:58:25 +0200380 xrun_threshold = runtime->hw_ptr_buffer_jiffies / 2 + 1;
381 while (hdelta > xrun_threshold) {
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100382 delta += runtime->buffer_size;
383 hw_base += runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500384 if (hw_base >= runtime->boundary) {
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100385 hw_base = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500386 crossed_boundary++;
387 }
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100388 new_hw_ptr = hw_base + pos;
389 hdelta -= runtime->hw_ptr_buffer_jiffies;
390 }
Clemens Ladischab69a492010-11-15 10:46:23 +0100391 goto no_delta_check;
Clemens Ladisch59ff8782010-11-18 09:43:52 +0100392 }
Clemens Ladischab69a492010-11-15 10:46:23 +0100393
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100394 /* something must be really wrong */
Jaroslav Kysela7b3a1772010-01-08 08:43:01 +0100395 if (delta >= runtime->buffer_size + runtime->period_size) {
Takashi Iwaif5914902014-11-04 12:45:59 +0100396 hw_ptr_error(substream, in_interrupt, "Unexpected hw_ptr",
397 "(stream=%i, pos=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n",
398 substream->stream, (long)pos,
399 (long)new_hw_ptr, (long)old_hw_ptr);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100400 return 0;
401 }
Takashi Iwaic87d9732009-05-27 10:53:33 +0200402
403 /* Do jiffies check only in xrun_debug mode */
Jaroslav Kysela741b20c2009-12-17 17:34:39 +0100404 if (!xrun_debug(substream, XRUN_DEBUG_JIFFIESCHECK))
Takashi Iwaic87d9732009-05-27 10:53:33 +0200405 goto no_jiffies_check;
406
Takashi Iwai3e5b5012009-04-28 12:07:08 +0200407 /* Skip the jiffies check for hardwares with BATCH flag.
408 * Such hardware usually just increases the position at each IRQ,
409 * thus it can't give any strange position.
410 */
411 if (runtime->hw.info & SNDRV_PCM_INFO_BATCH)
412 goto no_jiffies_check;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100413 hdelta = delta;
Jaroslav Kyselaa4444da2009-05-28 12:31:56 +0200414 if (hdelta < runtime->delay)
415 goto no_jiffies_check;
416 hdelta -= runtime->delay;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500417 jdelta = curr_jiffies - runtime->hw_ptr_jiffies;
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200418 if (((hdelta * HZ) / runtime->rate) > jdelta + HZ/100) {
419 delta = jdelta /
420 (((runtime->period_size * HZ) / runtime->rate)
421 + HZ/100);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100422 /* move new_hw_ptr according jiffies not pos variable */
423 new_hw_ptr = old_hw_ptr;
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100424 hw_base = delta;
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100425 /* use loop to avoid checks for delta overflows */
426 /* the delta value is small or zero in most cases */
427 while (delta > 0) {
428 new_hw_ptr += runtime->period_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500429 if (new_hw_ptr >= runtime->boundary) {
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100430 new_hw_ptr -= runtime->boundary;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500431 crossed_boundary--;
432 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100433 delta--;
434 }
435 /* align hw_base to buffer_size */
Takashi Iwaif5914902014-11-04 12:45:59 +0100436 hw_ptr_error(substream, in_interrupt, "hw_ptr skipping",
437 "(pos=%ld, delta=%ld, period=%ld, jdelta=%lu/%lu/%lu, hw_ptr=%ld/%ld)\n",
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200438 (long)pos, (long)hdelta,
439 (long)runtime->period_size, jdelta,
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100440 ((hdelta * HZ) / runtime->rate), hw_base,
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100441 (unsigned long)old_hw_ptr,
442 (unsigned long)new_hw_ptr);
Jaroslav Kyselaed69c6a2010-01-13 08:12:31 +0100443 /* reset values to proper state */
444 delta = 0;
445 hw_base = new_hw_ptr - (new_hw_ptr % runtime->buffer_size);
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200446 }
Takashi Iwai3e5b5012009-04-28 12:07:08 +0200447 no_jiffies_check:
Jaroslav Kyselabbf6ad12009-04-10 12:28:58 +0200448 if (delta > runtime->period_size + runtime->period_size / 2) {
Takashi Iwaif5914902014-11-04 12:45:59 +0100449 hw_ptr_error(substream, in_interrupt,
450 "Lost interrupts?",
451 "(stream=%i, delta=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n",
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100452 substream->stream, (long)delta,
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100453 (long)new_hw_ptr,
454 (long)old_hw_ptr);
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100455 }
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100456
Clemens Ladischab69a492010-11-15 10:46:23 +0100457 no_delta_check:
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600458 if (runtime->status->hw_ptr == new_hw_ptr) {
459 update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp);
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100460 return 0;
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600461 }
Takashi Iwaiab1863f2009-06-07 12:09:17 +0200462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
464 runtime->silence_size > 0)
465 snd_pcm_playback_silence(substream, new_hw_ptr);
466
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100467 if (in_interrupt) {
Clemens Ladischead40462010-05-21 09:15:59 +0200468 delta = new_hw_ptr - runtime->hw_ptr_interrupt;
469 if (delta < 0)
470 delta += runtime->boundary;
471 delta -= (snd_pcm_uframes_t)delta % runtime->period_size;
472 runtime->hw_ptr_interrupt += delta;
473 if (runtime->hw_ptr_interrupt >= runtime->boundary)
474 runtime->hw_ptr_interrupt -= runtime->boundary;
Jaroslav Kyselae7636922010-01-26 17:08:24 +0100475 }
Takashi Iwaied3da3d2009-03-03 17:00:15 +0100476 runtime->hw_ptr_base = hw_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 runtime->status->hw_ptr = new_hw_ptr;
Pierre-Louis Bossart3509a032012-05-22 14:54:02 -0500478 runtime->hw_ptr_jiffies = curr_jiffies;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -0500479 if (crossed_boundary) {
480 snd_BUG_ON(crossed_boundary != 1);
481 runtime->hw_ptr_wrap += runtime->boundary;
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Pierre-Louis Bossart3179f622015-02-13 15:14:06 -0600484 update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp);
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500485
Jaroslav Kysela12509322010-01-07 15:36:31 +0100486 return snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489/* CAUTION: call it with irq disabled */
Takashi Iwai877211f2005-11-17 13:59:38 +0100490int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Jaroslav Kyselaf2404062010-01-05 17:19:34 +0100492 return snd_pcm_update_hw_ptr0(substream, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495/**
496 * snd_pcm_set_ops - set the PCM operators
497 * @pcm: the pcm instance
498 * @direction: stream direction, SNDRV_PCM_STREAM_XXX
499 * @ops: the operator table
500 *
501 * Sets the given PCM operators to the pcm instance.
502 */
Lars-Peter Clausene6c2e7e2013-05-24 15:18:10 +0200503void snd_pcm_set_ops(struct snd_pcm *pcm, int direction,
504 const struct snd_pcm_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Takashi Iwai877211f2005-11-17 13:59:38 +0100506 struct snd_pcm_str *stream = &pcm->streams[direction];
507 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 for (substream = stream->substream; substream != NULL; substream = substream->next)
510 substream->ops = ops;
511}
512
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200513EXPORT_SYMBOL(snd_pcm_set_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515/**
516 * snd_pcm_sync - set the PCM sync id
517 * @substream: the pcm substream
518 *
519 * Sets the PCM sync identifier for the card.
520 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100521void snd_pcm_set_sync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Takashi Iwai877211f2005-11-17 13:59:38 +0100523 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 runtime->sync.id32[0] = substream->pcm->card->number;
526 runtime->sync.id32[1] = -1;
527 runtime->sync.id32[2] = -1;
528 runtime->sync.id32[3] = -1;
529}
530
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200531EXPORT_SYMBOL(snd_pcm_set_sync);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/*
534 * Standard ioctl routine
535 */
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537static inline unsigned int div32(unsigned int a, unsigned int b,
538 unsigned int *r)
539{
540 if (b == 0) {
541 *r = 0;
542 return UINT_MAX;
543 }
544 *r = a % b;
545 return a / b;
546}
547
548static inline unsigned int div_down(unsigned int a, unsigned int b)
549{
550 if (b == 0)
551 return UINT_MAX;
552 return a / b;
553}
554
555static inline unsigned int div_up(unsigned int a, unsigned int b)
556{
557 unsigned int r;
558 unsigned int q;
559 if (b == 0)
560 return UINT_MAX;
561 q = div32(a, b, &r);
562 if (r)
563 ++q;
564 return q;
565}
566
567static inline unsigned int mul(unsigned int a, unsigned int b)
568{
569 if (a == 0)
570 return 0;
571 if (div_down(UINT_MAX, a) < b)
572 return UINT_MAX;
573 return a * b;
574}
575
576static inline unsigned int muldiv32(unsigned int a, unsigned int b,
577 unsigned int c, unsigned int *r)
578{
579 u_int64_t n = (u_int64_t) a * b;
580 if (c == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 *r = 0;
582 return UINT_MAX;
583 }
Takashi Iwai3f7440a2009-06-05 17:40:04 +0200584 n = div_u64_rem(n, c, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (n >= UINT_MAX) {
586 *r = 0;
587 return UINT_MAX;
588 }
589 return n;
590}
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592/**
593 * snd_interval_refine - refine the interval value of configurator
594 * @i: the interval value to refine
595 * @v: the interval value to refer to
596 *
597 * Refines the interval value with the reference value.
598 * The interval is changed to the range satisfying both intervals.
599 * The interval status (min, max, integer, etc.) are evaluated.
600 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100601 * Return: Positive if the value is changed, zero if it's not changed, or a
602 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100604int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 int changed = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200607 if (snd_BUG_ON(snd_interval_empty(i)))
608 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (i->min < v->min) {
610 i->min = v->min;
611 i->openmin = v->openmin;
612 changed = 1;
613 } else if (i->min == v->min && !i->openmin && v->openmin) {
614 i->openmin = 1;
615 changed = 1;
616 }
617 if (i->max > v->max) {
618 i->max = v->max;
619 i->openmax = v->openmax;
620 changed = 1;
621 } else if (i->max == v->max && !i->openmax && v->openmax) {
622 i->openmax = 1;
623 changed = 1;
624 }
625 if (!i->integer && v->integer) {
626 i->integer = 1;
627 changed = 1;
628 }
629 if (i->integer) {
630 if (i->openmin) {
631 i->min++;
632 i->openmin = 0;
633 }
634 if (i->openmax) {
635 i->max--;
636 i->openmax = 0;
637 }
638 } else if (!i->openmin && !i->openmax && i->min == i->max)
639 i->integer = 1;
640 if (snd_interval_checkempty(i)) {
641 snd_interval_none(i);
642 return -EINVAL;
643 }
644 return changed;
645}
646
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200647EXPORT_SYMBOL(snd_interval_refine);
648
Takashi Iwai877211f2005-11-17 13:59:38 +0100649static int snd_interval_refine_first(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200651 if (snd_BUG_ON(snd_interval_empty(i)))
652 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (snd_interval_single(i))
654 return 0;
655 i->max = i->min;
656 i->openmax = i->openmin;
657 if (i->openmax)
658 i->max++;
659 return 1;
660}
661
Takashi Iwai877211f2005-11-17 13:59:38 +0100662static int snd_interval_refine_last(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200664 if (snd_BUG_ON(snd_interval_empty(i)))
665 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (snd_interval_single(i))
667 return 0;
668 i->min = i->max;
669 i->openmin = i->openmax;
670 if (i->openmin)
671 i->min--;
672 return 1;
673}
674
Takashi Iwai877211f2005-11-17 13:59:38 +0100675void snd_interval_mul(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 if (a->empty || b->empty) {
678 snd_interval_none(c);
679 return;
680 }
681 c->empty = 0;
682 c->min = mul(a->min, b->min);
683 c->openmin = (a->openmin || b->openmin);
684 c->max = mul(a->max, b->max);
685 c->openmax = (a->openmax || b->openmax);
686 c->integer = (a->integer && b->integer);
687}
688
689/**
690 * snd_interval_div - refine the interval value with division
Takashi Iwaidf8db932005-09-07 13:38:19 +0200691 * @a: dividend
692 * @b: divisor
693 * @c: quotient
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 *
695 * c = a / b
696 *
697 * Returns non-zero if the value is changed, zero if not changed.
698 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100699void snd_interval_div(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 unsigned int r;
702 if (a->empty || b->empty) {
703 snd_interval_none(c);
704 return;
705 }
706 c->empty = 0;
707 c->min = div32(a->min, b->max, &r);
708 c->openmin = (r || a->openmin || b->openmax);
709 if (b->min > 0) {
710 c->max = div32(a->max, b->min, &r);
711 if (r) {
712 c->max++;
713 c->openmax = 1;
714 } else
715 c->openmax = (a->openmax || b->openmin);
716 } else {
717 c->max = UINT_MAX;
718 c->openmax = 0;
719 }
720 c->integer = 0;
721}
722
723/**
724 * snd_interval_muldivk - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200725 * @a: dividend 1
726 * @b: dividend 2
727 * @k: divisor (as integer)
728 * @c: result
729 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * c = a * b / k
731 *
732 * Returns non-zero if the value is changed, zero if not changed.
733 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100734void snd_interval_muldivk(const struct snd_interval *a, const struct snd_interval *b,
735 unsigned int k, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 unsigned int r;
738 if (a->empty || b->empty) {
739 snd_interval_none(c);
740 return;
741 }
742 c->empty = 0;
743 c->min = muldiv32(a->min, b->min, k, &r);
744 c->openmin = (r || a->openmin || b->openmin);
745 c->max = muldiv32(a->max, b->max, k, &r);
746 if (r) {
747 c->max++;
748 c->openmax = 1;
749 } else
750 c->openmax = (a->openmax || b->openmax);
751 c->integer = 0;
752}
753
754/**
755 * snd_interval_mulkdiv - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200756 * @a: dividend 1
757 * @k: dividend 2 (as integer)
758 * @b: divisor
759 * @c: result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *
761 * c = a * k / b
762 *
763 * Returns non-zero if the value is changed, zero if not changed.
764 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100765void snd_interval_mulkdiv(const struct snd_interval *a, unsigned int k,
766 const struct snd_interval *b, struct snd_interval *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 unsigned int r;
769 if (a->empty || b->empty) {
770 snd_interval_none(c);
771 return;
772 }
773 c->empty = 0;
774 c->min = muldiv32(a->min, k, b->max, &r);
775 c->openmin = (r || a->openmin || b->openmax);
776 if (b->min > 0) {
777 c->max = muldiv32(a->max, k, b->min, &r);
778 if (r) {
779 c->max++;
780 c->openmax = 1;
781 } else
782 c->openmax = (a->openmax || b->openmin);
783 } else {
784 c->max = UINT_MAX;
785 c->openmax = 0;
786 }
787 c->integer = 0;
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/* ---- */
791
792
793/**
794 * snd_interval_ratnum - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200795 * @i: interval to refine
796 * @rats_count: number of ratnum_t
797 * @rats: ratnum_t array
798 * @nump: pointer to store the resultant numerator
799 * @denp: pointer to store the resultant denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100801 * Return: Positive if the value is changed, zero if it's not changed, or a
802 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100804int snd_interval_ratnum(struct snd_interval *i,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +0100805 unsigned int rats_count, const struct snd_ratnum *rats,
Takashi Iwai877211f2005-11-17 13:59:38 +0100806 unsigned int *nump, unsigned int *denp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Krzysztof Helt8374e242009-12-21 17:07:08 +0100808 unsigned int best_num, best_den;
809 int best_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100811 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 int err;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100813 unsigned int result_num, result_den;
814 int result_diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 best_num = best_den = best_diff = 0;
817 for (k = 0; k < rats_count; ++k) {
818 unsigned int num = rats[k].num;
819 unsigned int den;
820 unsigned int q = i->min;
821 int diff;
822 if (q == 0)
823 q = 1;
Krzysztof Helt40962d72009-12-19 18:31:04 +0100824 den = div_up(num, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (den < rats[k].den_min)
826 continue;
827 if (den > rats[k].den_max)
828 den = rats[k].den_max;
829 else {
830 unsigned int r;
831 r = (den - rats[k].den_min) % rats[k].den_step;
832 if (r != 0)
833 den -= r;
834 }
835 diff = num - q * den;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100836 if (diff < 0)
837 diff = -diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (best_num == 0 ||
839 diff * best_den < best_diff * den) {
840 best_diff = diff;
841 best_den = den;
842 best_num = num;
843 }
844 }
845 if (best_den == 0) {
846 i->empty = 1;
847 return -EINVAL;
848 }
849 t.min = div_down(best_num, best_den);
850 t.openmin = !!(best_num % best_den);
851
Krzysztof Helt8374e242009-12-21 17:07:08 +0100852 result_num = best_num;
853 result_diff = best_diff;
854 result_den = best_den;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 best_num = best_den = best_diff = 0;
856 for (k = 0; k < rats_count; ++k) {
857 unsigned int num = rats[k].num;
858 unsigned int den;
859 unsigned int q = i->max;
860 int diff;
861 if (q == 0) {
862 i->empty = 1;
863 return -EINVAL;
864 }
Krzysztof Helt40962d72009-12-19 18:31:04 +0100865 den = div_down(num, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (den > rats[k].den_max)
867 continue;
868 if (den < rats[k].den_min)
869 den = rats[k].den_min;
870 else {
871 unsigned int r;
872 r = (den - rats[k].den_min) % rats[k].den_step;
873 if (r != 0)
874 den += rats[k].den_step - r;
875 }
876 diff = q * den - num;
Krzysztof Helt8374e242009-12-21 17:07:08 +0100877 if (diff < 0)
878 diff = -diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (best_num == 0 ||
880 diff * best_den < best_diff * den) {
881 best_diff = diff;
882 best_den = den;
883 best_num = num;
884 }
885 }
886 if (best_den == 0) {
887 i->empty = 1;
888 return -EINVAL;
889 }
890 t.max = div_up(best_num, best_den);
891 t.openmax = !!(best_num % best_den);
892 t.integer = 0;
893 err = snd_interval_refine(i, &t);
894 if (err < 0)
895 return err;
896
897 if (snd_interval_single(i)) {
Krzysztof Helt8374e242009-12-21 17:07:08 +0100898 if (best_diff * result_den < result_diff * best_den) {
899 result_num = best_num;
900 result_den = best_den;
901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (nump)
Krzysztof Helt8374e242009-12-21 17:07:08 +0100903 *nump = result_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (denp)
Krzysztof Helt8374e242009-12-21 17:07:08 +0100905 *denp = result_den;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907 return err;
908}
909
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200910EXPORT_SYMBOL(snd_interval_ratnum);
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912/**
913 * snd_interval_ratden - refine the interval value
Takashi Iwaidf8db932005-09-07 13:38:19 +0200914 * @i: interval to refine
Takashi Iwai877211f2005-11-17 13:59:38 +0100915 * @rats_count: number of struct ratden
916 * @rats: struct ratden array
Takashi Iwaidf8db932005-09-07 13:38:19 +0200917 * @nump: pointer to store the resultant numerator
918 * @denp: pointer to store the resultant denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100920 * Return: Positive if the value is changed, zero if it's not changed, or a
921 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100923static int snd_interval_ratden(struct snd_interval *i,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +0100924 unsigned int rats_count,
925 const struct snd_ratden *rats,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 unsigned int *nump, unsigned int *denp)
927{
928 unsigned int best_num, best_diff, best_den;
929 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100930 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 int err;
932
933 best_num = best_den = best_diff = 0;
934 for (k = 0; k < rats_count; ++k) {
935 unsigned int num;
936 unsigned int den = rats[k].den;
937 unsigned int q = i->min;
938 int diff;
939 num = mul(q, den);
940 if (num > rats[k].num_max)
941 continue;
942 if (num < rats[k].num_min)
943 num = rats[k].num_max;
944 else {
945 unsigned int r;
946 r = (num - rats[k].num_min) % rats[k].num_step;
947 if (r != 0)
948 num += rats[k].num_step - r;
949 }
950 diff = num - q * den;
951 if (best_num == 0 ||
952 diff * best_den < best_diff * den) {
953 best_diff = diff;
954 best_den = den;
955 best_num = num;
956 }
957 }
958 if (best_den == 0) {
959 i->empty = 1;
960 return -EINVAL;
961 }
962 t.min = div_down(best_num, best_den);
963 t.openmin = !!(best_num % best_den);
964
965 best_num = best_den = best_diff = 0;
966 for (k = 0; k < rats_count; ++k) {
967 unsigned int num;
968 unsigned int den = rats[k].den;
969 unsigned int q = i->max;
970 int diff;
971 num = mul(q, den);
972 if (num < rats[k].num_min)
973 continue;
974 if (num > rats[k].num_max)
975 num = rats[k].num_max;
976 else {
977 unsigned int r;
978 r = (num - rats[k].num_min) % rats[k].num_step;
979 if (r != 0)
980 num -= r;
981 }
982 diff = q * den - num;
983 if (best_num == 0 ||
984 diff * best_den < best_diff * den) {
985 best_diff = diff;
986 best_den = den;
987 best_num = num;
988 }
989 }
990 if (best_den == 0) {
991 i->empty = 1;
992 return -EINVAL;
993 }
994 t.max = div_up(best_num, best_den);
995 t.openmax = !!(best_num % best_den);
996 t.integer = 0;
997 err = snd_interval_refine(i, &t);
998 if (err < 0)
999 return err;
1000
1001 if (snd_interval_single(i)) {
1002 if (nump)
1003 *nump = best_num;
1004 if (denp)
1005 *denp = best_den;
1006 }
1007 return err;
1008}
1009
1010/**
1011 * snd_interval_list - refine the interval value from the list
1012 * @i: the interval value to refine
1013 * @count: the number of elements in the list
1014 * @list: the value list
1015 * @mask: the bit-mask to evaluate
1016 *
1017 * Refines the interval value from the list.
1018 * When mask is non-zero, only the elements corresponding to bit 1 are
1019 * evaluated.
1020 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001021 * Return: Positive if the value is changed, zero if it's not changed, or a
1022 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
Mark Brown4af87a92012-03-14 19:48:43 +00001024int snd_interval_list(struct snd_interval *i, unsigned int count,
1025 const unsigned int *list, unsigned int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 unsigned int k;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001028 struct snd_interval list_range;
Takashi Iwai0981a262007-02-01 14:53:49 +01001029
1030 if (!count) {
1031 i->empty = 1;
1032 return -EINVAL;
1033 }
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001034 snd_interval_any(&list_range);
1035 list_range.min = UINT_MAX;
1036 list_range.max = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 for (k = 0; k < count; k++) {
1038 if (mask && !(mask & (1 << k)))
1039 continue;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001040 if (!snd_interval_test(i, list[k]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 continue;
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001042 list_range.min = min(list_range.min, list[k]);
1043 list_range.max = max(list_range.max, list[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
Clemens Ladischb1ddaf62009-08-25 08:15:41 +02001045 return snd_interval_refine(i, &list_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001048EXPORT_SYMBOL(snd_interval_list);
1049
Peter Rosinf66f8982015-01-28 15:16:06 +01001050/**
1051 * snd_interval_ranges - refine the interval value from the list of ranges
1052 * @i: the interval value to refine
1053 * @count: the number of elements in the list of ranges
1054 * @ranges: the ranges list
1055 * @mask: the bit-mask to evaluate
1056 *
1057 * Refines the interval value from the list of ranges.
1058 * When mask is non-zero, only the elements corresponding to bit 1 are
1059 * evaluated.
1060 *
1061 * Return: Positive if the value is changed, zero if it's not changed, or a
1062 * negative error code.
1063 */
1064int snd_interval_ranges(struct snd_interval *i, unsigned int count,
1065 const struct snd_interval *ranges, unsigned int mask)
1066{
1067 unsigned int k;
1068 struct snd_interval range_union;
1069 struct snd_interval range;
1070
1071 if (!count) {
1072 snd_interval_none(i);
1073 return -EINVAL;
1074 }
1075 snd_interval_any(&range_union);
1076 range_union.min = UINT_MAX;
1077 range_union.max = 0;
1078 for (k = 0; k < count; k++) {
1079 if (mask && !(mask & (1 << k)))
1080 continue;
1081 snd_interval_copy(&range, &ranges[k]);
1082 if (snd_interval_refine(&range, i) < 0)
1083 continue;
1084 if (snd_interval_empty(&range))
1085 continue;
1086
1087 if (range.min < range_union.min) {
1088 range_union.min = range.min;
1089 range_union.openmin = 1;
1090 }
1091 if (range.min == range_union.min && !range.openmin)
1092 range_union.openmin = 0;
1093 if (range.max > range_union.max) {
1094 range_union.max = range.max;
1095 range_union.openmax = 1;
1096 }
1097 if (range.max == range_union.max && !range.openmax)
1098 range_union.openmax = 0;
1099 }
1100 return snd_interval_refine(i, &range_union);
1101}
1102EXPORT_SYMBOL(snd_interval_ranges);
1103
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001104static int snd_interval_step(struct snd_interval *i, unsigned int step)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
1106 unsigned int n;
1107 int changed = 0;
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001108 n = i->min % step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (n != 0 || i->openmin) {
1110 i->min += step - n;
Clemens Ladischdf1e4712014-09-07 21:43:41 +02001111 i->openmin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 changed = 1;
1113 }
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001114 n = i->max % step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (n != 0 || i->openmax) {
1116 i->max -= n;
Clemens Ladischdf1e4712014-09-07 21:43:41 +02001117 i->openmax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 changed = 1;
1119 }
1120 if (snd_interval_checkempty(i)) {
1121 i->empty = 1;
1122 return -EINVAL;
1123 }
1124 return changed;
1125}
1126
1127/* Info constraints helpers */
1128
1129/**
1130 * snd_pcm_hw_rule_add - add the hw-constraint rule
1131 * @runtime: the pcm runtime instance
1132 * @cond: condition bits
1133 * @var: the variable to evaluate
1134 * @func: the evaluation function
1135 * @private: the private data pointer passed to function
1136 * @dep: the dependent variables
1137 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001138 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001140int snd_pcm_hw_rule_add(struct snd_pcm_runtime *runtime, unsigned int cond,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 int var,
1142 snd_pcm_hw_rule_func_t func, void *private,
1143 int dep, ...)
1144{
Takashi Iwai877211f2005-11-17 13:59:38 +01001145 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1146 struct snd_pcm_hw_rule *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 unsigned int k;
1148 va_list args;
1149 va_start(args, dep);
1150 if (constrs->rules_num >= constrs->rules_all) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001151 struct snd_pcm_hw_rule *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 unsigned int new_rules = constrs->rules_all + 16;
1153 new = kcalloc(new_rules, sizeof(*c), GFP_KERNEL);
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001154 if (!new) {
1155 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return -ENOMEM;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (constrs->rules) {
1159 memcpy(new, constrs->rules,
1160 constrs->rules_num * sizeof(*c));
1161 kfree(constrs->rules);
1162 }
1163 constrs->rules = new;
1164 constrs->rules_all = new_rules;
1165 }
1166 c = &constrs->rules[constrs->rules_num];
1167 c->cond = cond;
1168 c->func = func;
1169 c->var = var;
1170 c->private = private;
1171 k = 0;
1172 while (1) {
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001173 if (snd_BUG_ON(k >= ARRAY_SIZE(c->deps))) {
1174 va_end(args);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001175 return -EINVAL;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 c->deps[k++] = dep;
1178 if (dep < 0)
1179 break;
1180 dep = va_arg(args, int);
1181 }
1182 constrs->rules_num++;
1183 va_end(args);
1184 return 0;
Jesper Juhl87a1c8a2010-12-21 00:03:17 +01001185}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001187EXPORT_SYMBOL(snd_pcm_hw_rule_add);
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001190 * snd_pcm_hw_constraint_mask - apply the given bitmap mask constraint
Takashi Iwaidf8db932005-09-07 13:38:19 +02001191 * @runtime: PCM runtime instance
1192 * @var: hw_params variable to apply the mask
1193 * @mask: the bitmap mask
1194 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001195 * Apply the constraint of the given bitmap mask to a 32-bit mask parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001196 *
1197 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001199int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 u_int32_t mask)
1201{
Takashi Iwai877211f2005-11-17 13:59:38 +01001202 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1203 struct snd_mask *maskp = constrs_mask(constrs, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 *maskp->bits &= mask;
1205 memset(maskp->bits + 1, 0, (SNDRV_MASK_MAX-32) / 8); /* clear rest */
1206 if (*maskp->bits == 0)
1207 return -EINVAL;
1208 return 0;
1209}
1210
1211/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001212 * snd_pcm_hw_constraint_mask64 - apply the given bitmap mask constraint
Takashi Iwaidf8db932005-09-07 13:38:19 +02001213 * @runtime: PCM runtime instance
1214 * @var: hw_params variable to apply the mask
1215 * @mask: the 64bit bitmap mask
1216 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001217 * Apply the constraint of the given bitmap mask to a 64-bit mask parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001218 *
1219 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001221int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 u_int64_t mask)
1223{
Takashi Iwai877211f2005-11-17 13:59:38 +01001224 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1225 struct snd_mask *maskp = constrs_mask(constrs, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 maskp->bits[0] &= (u_int32_t)mask;
1227 maskp->bits[1] &= (u_int32_t)(mask >> 32);
1228 memset(maskp->bits + 2, 0, (SNDRV_MASK_MAX-64) / 8); /* clear rest */
1229 if (! maskp->bits[0] && ! maskp->bits[1])
1230 return -EINVAL;
1231 return 0;
1232}
Mark Brown63a5d4c2014-02-20 12:13:52 +09001233EXPORT_SYMBOL(snd_pcm_hw_constraint_mask64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001236 * snd_pcm_hw_constraint_integer - apply an integer constraint to an interval
Takashi Iwaidf8db932005-09-07 13:38:19 +02001237 * @runtime: PCM runtime instance
1238 * @var: hw_params variable to apply the integer constraint
1239 *
1240 * Apply the constraint of integer to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001241 *
1242 * Return: Positive if the value is changed, zero if it's not changed, or a
1243 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001245int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Takashi Iwai877211f2005-11-17 13:59:38 +01001247 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return snd_interval_setinteger(constrs_interval(constrs, var));
1249}
1250
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001251EXPORT_SYMBOL(snd_pcm_hw_constraint_integer);
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001254 * snd_pcm_hw_constraint_minmax - apply a min/max range constraint to an interval
Takashi Iwaidf8db932005-09-07 13:38:19 +02001255 * @runtime: PCM runtime instance
1256 * @var: hw_params variable to apply the range
1257 * @min: the minimal value
1258 * @max: the maximal value
1259 *
1260 * Apply the min/max range constraint to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001261 *
1262 * Return: Positive if the value is changed, zero if it's not changed, or a
1263 * negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001265int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 unsigned int min, unsigned int max)
1267{
Takashi Iwai877211f2005-11-17 13:59:38 +01001268 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1269 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 t.min = min;
1271 t.max = max;
1272 t.openmin = t.openmax = 0;
1273 t.integer = 0;
1274 return snd_interval_refine(constrs_interval(constrs, var), &t);
1275}
1276
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001277EXPORT_SYMBOL(snd_pcm_hw_constraint_minmax);
1278
Takashi Iwai877211f2005-11-17 13:59:38 +01001279static int snd_pcm_hw_rule_list(struct snd_pcm_hw_params *params,
1280 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Takashi Iwai877211f2005-11-17 13:59:38 +01001282 struct snd_pcm_hw_constraint_list *list = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return snd_interval_list(hw_param_interval(params, rule->var), list->count, list->list, list->mask);
1284}
1285
1286
1287/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001288 * snd_pcm_hw_constraint_list - apply a list of constraints to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001289 * @runtime: PCM runtime instance
1290 * @cond: condition bits
1291 * @var: hw_params variable to apply the list constraint
1292 * @l: list
1293 *
1294 * Apply the list of constraints to an interval parameter.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001295 *
1296 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001298int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 unsigned int cond,
1300 snd_pcm_hw_param_t var,
Mark Brown14641892012-07-05 12:15:01 +01001301 const struct snd_pcm_hw_constraint_list *l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 return snd_pcm_hw_rule_add(runtime, cond, var,
Mark Brown14641892012-07-05 12:15:01 +01001304 snd_pcm_hw_rule_list, (void *)l,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 var, -1);
1306}
1307
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001308EXPORT_SYMBOL(snd_pcm_hw_constraint_list);
1309
Peter Rosinf66f8982015-01-28 15:16:06 +01001310static int snd_pcm_hw_rule_ranges(struct snd_pcm_hw_params *params,
1311 struct snd_pcm_hw_rule *rule)
1312{
1313 struct snd_pcm_hw_constraint_ranges *r = rule->private;
1314 return snd_interval_ranges(hw_param_interval(params, rule->var),
1315 r->count, r->ranges, r->mask);
1316}
1317
1318
1319/**
1320 * snd_pcm_hw_constraint_ranges - apply list of range constraints to a parameter
1321 * @runtime: PCM runtime instance
1322 * @cond: condition bits
1323 * @var: hw_params variable to apply the list of range constraints
1324 * @r: ranges
1325 *
1326 * Apply the list of range constraints to an interval parameter.
1327 *
1328 * Return: Zero if successful, or a negative error code on failure.
1329 */
1330int snd_pcm_hw_constraint_ranges(struct snd_pcm_runtime *runtime,
1331 unsigned int cond,
1332 snd_pcm_hw_param_t var,
1333 const struct snd_pcm_hw_constraint_ranges *r)
1334{
1335 return snd_pcm_hw_rule_add(runtime, cond, var,
1336 snd_pcm_hw_rule_ranges, (void *)r,
1337 var, -1);
1338}
1339EXPORT_SYMBOL(snd_pcm_hw_constraint_ranges);
1340
Takashi Iwai877211f2005-11-17 13:59:38 +01001341static int snd_pcm_hw_rule_ratnums(struct snd_pcm_hw_params *params,
1342 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001344 const struct snd_pcm_hw_constraint_ratnums *r = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 unsigned int num = 0, den = 0;
1346 int err;
1347 err = snd_interval_ratnum(hw_param_interval(params, rule->var),
1348 r->nrats, r->rats, &num, &den);
1349 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1350 params->rate_num = num;
1351 params->rate_den = den;
1352 }
1353 return err;
1354}
1355
1356/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001357 * snd_pcm_hw_constraint_ratnums - apply ratnums constraint to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001358 * @runtime: PCM runtime instance
1359 * @cond: condition bits
1360 * @var: hw_params variable to apply the ratnums constraint
Takashi Iwai877211f2005-11-17 13:59:38 +01001361 * @r: struct snd_ratnums constriants
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001362 *
1363 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001365int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 unsigned int cond,
1367 snd_pcm_hw_param_t var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001368 const struct snd_pcm_hw_constraint_ratnums *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 return snd_pcm_hw_rule_add(runtime, cond, var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001371 snd_pcm_hw_rule_ratnums, (void *)r,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 var, -1);
1373}
1374
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001375EXPORT_SYMBOL(snd_pcm_hw_constraint_ratnums);
1376
Takashi Iwai877211f2005-11-17 13:59:38 +01001377static int snd_pcm_hw_rule_ratdens(struct snd_pcm_hw_params *params,
1378 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001380 const struct snd_pcm_hw_constraint_ratdens *r = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 unsigned int num = 0, den = 0;
1382 int err = snd_interval_ratden(hw_param_interval(params, rule->var),
1383 r->nrats, r->rats, &num, &den);
1384 if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) {
1385 params->rate_num = num;
1386 params->rate_den = den;
1387 }
1388 return err;
1389}
1390
1391/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001392 * snd_pcm_hw_constraint_ratdens - apply ratdens constraint to a parameter
Takashi Iwaidf8db932005-09-07 13:38:19 +02001393 * @runtime: PCM runtime instance
1394 * @cond: condition bits
1395 * @var: hw_params variable to apply the ratdens constraint
Takashi Iwai877211f2005-11-17 13:59:38 +01001396 * @r: struct snd_ratdens constriants
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001397 *
1398 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001400int snd_pcm_hw_constraint_ratdens(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 unsigned int cond,
1402 snd_pcm_hw_param_t var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001403 const struct snd_pcm_hw_constraint_ratdens *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 return snd_pcm_hw_rule_add(runtime, cond, var,
Lars-Peter Clausene5e113c2015-10-28 11:37:53 +01001406 snd_pcm_hw_rule_ratdens, (void *)r,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 var, -1);
1408}
1409
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001410EXPORT_SYMBOL(snd_pcm_hw_constraint_ratdens);
1411
Takashi Iwai877211f2005-11-17 13:59:38 +01001412static int snd_pcm_hw_rule_msbits(struct snd_pcm_hw_params *params,
1413 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 unsigned int l = (unsigned long) rule->private;
1416 int width = l & 0xffff;
1417 unsigned int msbits = l >> 16;
Takashi Iwai877211f2005-11-17 13:59:38 +01001418 struct snd_interval *i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001419
1420 if (!snd_interval_single(i))
1421 return 0;
1422
1423 if ((snd_interval_value(i) == width) ||
1424 (width == 0 && snd_interval_value(i) > msbits))
Lars-Peter Clausen19f52fa2014-12-29 18:43:36 +01001425 params->msbits = min_not_zero(params->msbits, msbits);
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return 0;
1428}
1429
1430/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001431 * snd_pcm_hw_constraint_msbits - add a hw constraint msbits rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001432 * @runtime: PCM runtime instance
1433 * @cond: condition bits
1434 * @width: sample bits width
1435 * @msbits: msbits width
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001436 *
Lars-Peter Clausen8ef9df52014-12-29 18:43:37 +01001437 * This constraint will set the number of most significant bits (msbits) if a
1438 * sample format with the specified width has been select. If width is set to 0
1439 * the msbits will be set for any sample format with a width larger than the
1440 * specified msbits.
1441 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001442 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001444int snd_pcm_hw_constraint_msbits(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 unsigned int cond,
1446 unsigned int width,
1447 unsigned int msbits)
1448{
1449 unsigned long l = (msbits << 16) | width;
1450 return snd_pcm_hw_rule_add(runtime, cond, -1,
1451 snd_pcm_hw_rule_msbits,
1452 (void*) l,
1453 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1454}
1455
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001456EXPORT_SYMBOL(snd_pcm_hw_constraint_msbits);
1457
Takashi Iwai877211f2005-11-17 13:59:38 +01001458static int snd_pcm_hw_rule_step(struct snd_pcm_hw_params *params,
1459 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 unsigned long step = (unsigned long) rule->private;
Clemens Ladisch0f519b62014-09-07 21:43:07 +02001462 return snd_interval_step(hw_param_interval(params, rule->var), step);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
1465/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001466 * snd_pcm_hw_constraint_step - add a hw constraint step rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001467 * @runtime: PCM runtime instance
1468 * @cond: condition bits
1469 * @var: hw_params variable to apply the step constraint
1470 * @step: step size
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001471 *
1472 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001474int snd_pcm_hw_constraint_step(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 unsigned int cond,
1476 snd_pcm_hw_param_t var,
1477 unsigned long step)
1478{
1479 return snd_pcm_hw_rule_add(runtime, cond, var,
1480 snd_pcm_hw_rule_step, (void *) step,
1481 var, -1);
1482}
1483
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001484EXPORT_SYMBOL(snd_pcm_hw_constraint_step);
1485
Takashi Iwai877211f2005-11-17 13:59:38 +01001486static 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 -07001487{
Marcin Åšlusarz67c39312007-12-14 12:53:21 +01001488 static unsigned int pow2_sizes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 1<<0, 1<<1, 1<<2, 1<<3, 1<<4, 1<<5, 1<<6, 1<<7,
1490 1<<8, 1<<9, 1<<10, 1<<11, 1<<12, 1<<13, 1<<14, 1<<15,
1491 1<<16, 1<<17, 1<<18, 1<<19, 1<<20, 1<<21, 1<<22, 1<<23,
1492 1<<24, 1<<25, 1<<26, 1<<27, 1<<28, 1<<29, 1<<30
1493 };
1494 return snd_interval_list(hw_param_interval(params, rule->var),
1495 ARRAY_SIZE(pow2_sizes), pow2_sizes, 0);
1496}
1497
1498/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001499 * snd_pcm_hw_constraint_pow2 - add a hw constraint power-of-2 rule
Takashi Iwaidf8db932005-09-07 13:38:19 +02001500 * @runtime: PCM runtime instance
1501 * @cond: condition bits
1502 * @var: hw_params variable to apply the power-of-2 constraint
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001503 *
1504 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001506int snd_pcm_hw_constraint_pow2(struct snd_pcm_runtime *runtime,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 unsigned int cond,
1508 snd_pcm_hw_param_t var)
1509{
1510 return snd_pcm_hw_rule_add(runtime, cond, var,
1511 snd_pcm_hw_rule_pow2, NULL,
1512 var, -1);
1513}
1514
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001515EXPORT_SYMBOL(snd_pcm_hw_constraint_pow2);
1516
Clemens Ladischd5b702a2011-09-16 23:03:02 +02001517static int snd_pcm_hw_rule_noresample_func(struct snd_pcm_hw_params *params,
1518 struct snd_pcm_hw_rule *rule)
1519{
1520 unsigned int base_rate = (unsigned int)(uintptr_t)rule->private;
1521 struct snd_interval *rate;
1522
1523 rate = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
1524 return snd_interval_list(rate, 1, &base_rate, 0);
1525}
1526
1527/**
1528 * snd_pcm_hw_rule_noresample - add a rule to allow disabling hw resampling
1529 * @runtime: PCM runtime instance
1530 * @base_rate: the rate at which the hardware does not resample
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001531 *
1532 * Return: Zero if successful, or a negative error code on failure.
Clemens Ladischd5b702a2011-09-16 23:03:02 +02001533 */
1534int snd_pcm_hw_rule_noresample(struct snd_pcm_runtime *runtime,
1535 unsigned int base_rate)
1536{
1537 return snd_pcm_hw_rule_add(runtime, SNDRV_PCM_HW_PARAMS_NORESAMPLE,
1538 SNDRV_PCM_HW_PARAM_RATE,
1539 snd_pcm_hw_rule_noresample_func,
1540 (void *)(uintptr_t)base_rate,
1541 SNDRV_PCM_HW_PARAM_RATE, -1);
1542}
1543EXPORT_SYMBOL(snd_pcm_hw_rule_noresample);
1544
Takashi Iwai877211f2005-11-17 13:59:38 +01001545static void _snd_pcm_hw_param_any(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001546 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 if (hw_is_mask(var)) {
1549 snd_mask_any(hw_param_mask(params, var));
1550 params->cmask |= 1 << var;
1551 params->rmask |= 1 << var;
1552 return;
1553 }
1554 if (hw_is_interval(var)) {
1555 snd_interval_any(hw_param_interval(params, var));
1556 params->cmask |= 1 << var;
1557 params->rmask |= 1 << var;
1558 return;
1559 }
1560 snd_BUG();
1561}
1562
Takashi Iwai877211f2005-11-17 13:59:38 +01001563void _snd_pcm_hw_params_any(struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
1565 unsigned int k;
1566 memset(params, 0, sizeof(*params));
1567 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++)
1568 _snd_pcm_hw_param_any(params, k);
1569 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
1570 _snd_pcm_hw_param_any(params, k);
1571 params->info = ~0U;
1572}
1573
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001574EXPORT_SYMBOL(_snd_pcm_hw_params_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001577 * snd_pcm_hw_param_value - return @params field @var value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001578 * @params: the hw_params instance
1579 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001580 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001582 * Return: The value for field @var if it's fixed in configuration space
1583 * defined by @params. -%EINVAL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001585int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
1586 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 if (hw_is_mask(var)) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001589 const struct snd_mask *mask = hw_param_mask_c(params, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (!snd_mask_single(mask))
1591 return -EINVAL;
1592 if (dir)
1593 *dir = 0;
1594 return snd_mask_value(mask);
1595 }
1596 if (hw_is_interval(var)) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001597 const struct snd_interval *i = hw_param_interval_c(params, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (!snd_interval_single(i))
1599 return -EINVAL;
1600 if (dir)
1601 *dir = i->openmin;
1602 return snd_interval_value(i);
1603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return -EINVAL;
1605}
1606
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001607EXPORT_SYMBOL(snd_pcm_hw_param_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Takashi Iwai877211f2005-11-17 13:59:38 +01001609void _snd_pcm_hw_param_setempty(struct snd_pcm_hw_params *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 snd_pcm_hw_param_t var)
1611{
1612 if (hw_is_mask(var)) {
1613 snd_mask_none(hw_param_mask(params, var));
1614 params->cmask |= 1 << var;
1615 params->rmask |= 1 << var;
1616 } else if (hw_is_interval(var)) {
1617 snd_interval_none(hw_param_interval(params, var));
1618 params->cmask |= 1 << var;
1619 params->rmask |= 1 << var;
1620 } else {
1621 snd_BUG();
1622 }
1623}
1624
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001625EXPORT_SYMBOL(_snd_pcm_hw_param_setempty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Takashi Iwai877211f2005-11-17 13:59:38 +01001627static int _snd_pcm_hw_param_first(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001628 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 int changed;
1631 if (hw_is_mask(var))
1632 changed = snd_mask_refine_first(hw_param_mask(params, var));
1633 else if (hw_is_interval(var))
1634 changed = snd_interval_refine_first(hw_param_interval(params, var));
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001635 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (changed) {
1638 params->cmask |= 1 << var;
1639 params->rmask |= 1 << var;
1640 }
1641 return changed;
1642}
1643
1644
1645/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001646 * snd_pcm_hw_param_first - refine config space and return minimum value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001647 * @pcm: PCM instance
1648 * @params: the hw_params instance
1649 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001650 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001652 * Inside configuration space defined by @params remove from @var all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * values > minimum. Reduce configuration space accordingly.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001654 *
1655 * Return: The minimum, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001657int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
1658 struct snd_pcm_hw_params *params,
1659 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 int changed = _snd_pcm_hw_param_first(params, var);
1662 if (changed < 0)
1663 return changed;
1664 if (params->rmask) {
1665 int err = snd_pcm_hw_refine(pcm, params);
Takashi Iwai83da0242018-01-01 09:50:50 +01001666 if (err < 0)
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001667 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669 return snd_pcm_hw_param_value(params, var, dir);
1670}
1671
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001672EXPORT_SYMBOL(snd_pcm_hw_param_first);
1673
Takashi Iwai877211f2005-11-17 13:59:38 +01001674static int _snd_pcm_hw_param_last(struct snd_pcm_hw_params *params,
Adrian Bunk123992f2005-05-18 18:02:04 +02001675 snd_pcm_hw_param_t var)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 int changed;
1678 if (hw_is_mask(var))
1679 changed = snd_mask_refine_last(hw_param_mask(params, var));
1680 else if (hw_is_interval(var))
1681 changed = snd_interval_refine_last(hw_param_interval(params, var));
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001682 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (changed) {
1685 params->cmask |= 1 << var;
1686 params->rmask |= 1 << var;
1687 }
1688 return changed;
1689}
1690
1691
1692/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001693 * snd_pcm_hw_param_last - refine config space and return maximum value
Takashi Iwaidf8db932005-09-07 13:38:19 +02001694 * @pcm: PCM instance
1695 * @params: the hw_params instance
1696 * @var: parameter to retrieve
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001697 * @dir: pointer to the direction (-1,0,1) or %NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001699 * Inside configuration space defined by @params remove from @var all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 * values < maximum. Reduce configuration space accordingly.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001701 *
1702 * Return: The maximum, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001704int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
1705 struct snd_pcm_hw_params *params,
1706 snd_pcm_hw_param_t var, int *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
1708 int changed = _snd_pcm_hw_param_last(params, var);
1709 if (changed < 0)
1710 return changed;
1711 if (params->rmask) {
1712 int err = snd_pcm_hw_refine(pcm, params);
Takashi Iwai83da0242018-01-01 09:50:50 +01001713 if (err < 0)
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001714 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 }
1716 return snd_pcm_hw_param_value(params, var, dir);
1717}
1718
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001719EXPORT_SYMBOL(snd_pcm_hw_param_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001722 * snd_pcm_hw_param_choose - choose a configuration defined by @params
Takashi Iwaidf8db932005-09-07 13:38:19 +02001723 * @pcm: PCM instance
1724 * @params: the hw_params instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001726 * Choose one configuration from configuration space defined by @params.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 * The configuration chosen is that obtained fixing in this order:
1728 * first access, first format, first subformat, min channels,
1729 * min rate, min period time, max buffer size, min tick time
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001730 *
1731 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 */
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001733int snd_pcm_hw_params_choose(struct snd_pcm_substream *pcm,
1734 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001736 static int vars[] = {
1737 SNDRV_PCM_HW_PARAM_ACCESS,
1738 SNDRV_PCM_HW_PARAM_FORMAT,
1739 SNDRV_PCM_HW_PARAM_SUBFORMAT,
1740 SNDRV_PCM_HW_PARAM_CHANNELS,
1741 SNDRV_PCM_HW_PARAM_RATE,
1742 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1743 SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1744 SNDRV_PCM_HW_PARAM_TICK_TIME,
1745 -1
1746 };
1747 int err, *v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001749 for (v = vars; *v != -1; v++) {
1750 if (*v != SNDRV_PCM_HW_PARAM_BUFFER_SIZE)
1751 err = snd_pcm_hw_param_first(pcm, params, *v, NULL);
1752 else
1753 err = snd_pcm_hw_param_last(pcm, params, *v, NULL);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001754 if (snd_BUG_ON(err < 0))
1755 return err;
Takashi Iwai2f4ca8e2006-04-28 15:13:40 +02001756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return 0;
1758}
1759
Takashi Iwai877211f2005-11-17 13:59:38 +01001760static int snd_pcm_lib_ioctl_reset(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 void *arg)
1762{
Takashi Iwai877211f2005-11-17 13:59:38 +01001763 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 unsigned long flags;
1765 snd_pcm_stream_lock_irqsave(substream, flags);
1766 if (snd_pcm_running(substream) &&
1767 snd_pcm_update_hw_ptr(substream) >= 0)
1768 runtime->status->hw_ptr %= runtime->buffer_size;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -05001769 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 runtime->status->hw_ptr = 0;
Pierre-Louis Bossart0e8014d2012-10-22 16:42:14 -05001771 runtime->hw_ptr_wrap = 0;
1772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 snd_pcm_stream_unlock_irqrestore(substream, flags);
1774 return 0;
1775}
1776
Takashi Iwai877211f2005-11-17 13:59:38 +01001777static int snd_pcm_lib_ioctl_channel_info(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 void *arg)
1779{
Takashi Iwai877211f2005-11-17 13:59:38 +01001780 struct snd_pcm_channel_info *info = arg;
1781 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 int width;
1783 if (!(runtime->info & SNDRV_PCM_INFO_MMAP)) {
1784 info->offset = -1;
1785 return 0;
1786 }
1787 width = snd_pcm_format_physical_width(runtime->format);
1788 if (width < 0)
1789 return width;
1790 info->offset = 0;
1791 switch (runtime->access) {
1792 case SNDRV_PCM_ACCESS_MMAP_INTERLEAVED:
1793 case SNDRV_PCM_ACCESS_RW_INTERLEAVED:
1794 info->first = info->channel * width;
1795 info->step = runtime->channels * width;
1796 break;
1797 case SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED:
1798 case SNDRV_PCM_ACCESS_RW_NONINTERLEAVED:
1799 {
1800 size_t size = runtime->dma_bytes / runtime->channels;
1801 info->first = info->channel * size * 8;
1802 info->step = width;
1803 break;
1804 }
1805 default:
1806 snd_BUG();
1807 break;
1808 }
1809 return 0;
1810}
1811
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001812static int snd_pcm_lib_ioctl_fifo_size(struct snd_pcm_substream *substream,
1813 void *arg)
1814{
1815 struct snd_pcm_hw_params *params = arg;
1816 snd_pcm_format_t format;
Clemens Ladischa9960e62014-09-21 22:50:57 +02001817 int channels;
1818 ssize_t frame_size;
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001819
1820 params->fifo_size = substream->runtime->hw.fifo_size;
1821 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) {
1822 format = params_format(params);
1823 channels = params_channels(params);
Clemens Ladischa9960e62014-09-21 22:50:57 +02001824 frame_size = snd_pcm_format_size(format, channels);
1825 if (frame_size > 0)
1826 params->fifo_size /= (unsigned)frame_size;
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001827 }
1828 return 0;
1829}
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831/**
1832 * snd_pcm_lib_ioctl - a generic PCM ioctl callback
1833 * @substream: the pcm substream instance
1834 * @cmd: ioctl command
1835 * @arg: ioctl argument
1836 *
1837 * Processes the generic ioctl commands for PCM.
1838 * Can be passed as the ioctl callback for PCM ops.
1839 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001840 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001842int snd_pcm_lib_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 unsigned int cmd, void *arg)
1844{
1845 switch (cmd) {
1846 case SNDRV_PCM_IOCTL1_INFO:
1847 return 0;
1848 case SNDRV_PCM_IOCTL1_RESET:
1849 return snd_pcm_lib_ioctl_reset(substream, arg);
1850 case SNDRV_PCM_IOCTL1_CHANNEL_INFO:
1851 return snd_pcm_lib_ioctl_channel_info(substream, arg);
Jaroslav Kysela8bea8692009-04-27 09:44:40 +02001852 case SNDRV_PCM_IOCTL1_FIFO_SIZE:
1853 return snd_pcm_lib_ioctl_fifo_size(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855 return -ENXIO;
1856}
1857
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001858EXPORT_SYMBOL(snd_pcm_lib_ioctl);
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860/**
1861 * snd_pcm_period_elapsed - update the pcm status for the next period
1862 * @substream: the pcm substream instance
1863 *
1864 * This function is called from the interrupt handler when the
1865 * PCM has processed the period size. It will update the current
Takashi Iwai31e89602008-01-08 18:09:57 +01001866 * pointer, wake up sleepers, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 *
1868 * Even if more than one periods have elapsed since the last call, you
1869 * have to call this only once.
1870 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001871void snd_pcm_period_elapsed(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Takashi Iwai877211f2005-11-17 13:59:38 +01001873 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 unsigned long flags;
1875
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001876 if (PCM_RUNTIME_CHECK(substream))
1877 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 snd_pcm_stream_lock_irqsave(substream, flags);
1881 if (!snd_pcm_running(substream) ||
Jaroslav Kyselaf2404062010-01-05 17:19:34 +01001882 snd_pcm_update_hw_ptr0(substream, 1) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 goto _end;
1884
Jie Yang90bbaf62015-10-16 17:57:46 +08001885#ifdef CONFIG_SND_PCM_TIMER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (substream->timer_running)
1887 snd_timer_interrupt(substream->timer, 1);
Jie Yang90bbaf62015-10-16 17:57:46 +08001888#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 _end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 kill_fasync(&runtime->fasync, SIGIO, POLL_IN);
Takashi Iwai3aa02cb2016-04-14 18:02:37 +02001891 snd_pcm_stream_unlock_irqrestore(substream, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
1893
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001894EXPORT_SYMBOL(snd_pcm_period_elapsed);
1895
Takashi Iwai13075512008-01-08 18:08:14 +01001896/*
1897 * Wait until avail_min data becomes available
1898 * Returns a negative error code if any error occurs during operation.
1899 * The available space is stored on availp. When err = 0 and avail = 0
1900 * on the capture stream, it indicates the stream is in DRAINING state.
1901 */
David Dillow5daeba32010-06-27 00:13:20 +02001902static int wait_for_avail(struct snd_pcm_substream *substream,
Takashi Iwai13075512008-01-08 18:08:14 +01001903 snd_pcm_uframes_t *availp)
1904{
1905 struct snd_pcm_runtime *runtime = substream->runtime;
1906 int is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1907 wait_queue_t wait;
1908 int err = 0;
1909 snd_pcm_uframes_t avail = 0;
Takashi Iwaif2b36142011-05-26 08:09:38 +02001910 long wait_time, tout;
Takashi Iwai13075512008-01-08 18:08:14 +01001911
Arjan van de Ven763437a2011-09-15 08:49:25 +02001912 init_waitqueue_entry(&wait, current);
1913 set_current_state(TASK_INTERRUPTIBLE);
1914 add_wait_queue(&runtime->tsleep, &wait);
1915
Takashi Iwaif2b36142011-05-26 08:09:38 +02001916 if (runtime->no_period_wakeup)
1917 wait_time = MAX_SCHEDULE_TIMEOUT;
1918 else {
1919 wait_time = 10;
1920 if (runtime->rate) {
1921 long t = runtime->period_size * 2 / runtime->rate;
1922 wait_time = max(t, wait_time);
1923 }
1924 wait_time = msecs_to_jiffies(wait_time * 1000);
1925 }
Arjan van de Ven763437a2011-09-15 08:49:25 +02001926
Takashi Iwai13075512008-01-08 18:08:14 +01001927 for (;;) {
1928 if (signal_pending(current)) {
1929 err = -ERESTARTSYS;
1930 break;
1931 }
Arjan van de Ven763437a2011-09-15 08:49:25 +02001932
1933 /*
1934 * We need to check if space became available already
1935 * (and thus the wakeup happened already) first to close
1936 * the race of space already having become available.
1937 * This check must happen after been added to the waitqueue
1938 * and having current state be INTERRUPTIBLE.
1939 */
1940 if (is_playback)
1941 avail = snd_pcm_playback_avail(runtime);
1942 else
1943 avail = snd_pcm_capture_avail(runtime);
1944 if (avail >= runtime->twake)
1945 break;
Takashi Iwai13075512008-01-08 18:08:14 +01001946 snd_pcm_stream_unlock_irq(substream);
Arjan van de Ven763437a2011-09-15 08:49:25 +02001947
1948 tout = schedule_timeout(wait_time);
1949
Takashi Iwai13075512008-01-08 18:08:14 +01001950 snd_pcm_stream_lock_irq(substream);
Arjan van de Ven763437a2011-09-15 08:49:25 +02001951 set_current_state(TASK_INTERRUPTIBLE);
Takashi Iwai13075512008-01-08 18:08:14 +01001952 switch (runtime->status->state) {
1953 case SNDRV_PCM_STATE_SUSPENDED:
1954 err = -ESTRPIPE;
1955 goto _endloop;
1956 case SNDRV_PCM_STATE_XRUN:
1957 err = -EPIPE;
1958 goto _endloop;
1959 case SNDRV_PCM_STATE_DRAINING:
1960 if (is_playback)
1961 err = -EPIPE;
1962 else
1963 avail = 0; /* indicate draining */
1964 goto _endloop;
1965 case SNDRV_PCM_STATE_OPEN:
1966 case SNDRV_PCM_STATE_SETUP:
1967 case SNDRV_PCM_STATE_DISCONNECTED:
1968 err = -EBADFD;
1969 goto _endloop;
JongHo Kimed697e12013-12-17 23:02:24 +09001970 case SNDRV_PCM_STATE_PAUSED:
1971 continue;
Takashi Iwai13075512008-01-08 18:08:14 +01001972 }
1973 if (!tout) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01001974 pcm_dbg(substream->pcm,
1975 "%s write error (DMA or IRQ trouble?)\n",
1976 is_playback ? "playback" : "capture");
Takashi Iwai13075512008-01-08 18:08:14 +01001977 err = -EIO;
1978 break;
1979 }
Takashi Iwai13075512008-01-08 18:08:14 +01001980 }
1981 _endloop:
Arjan van de Ven763437a2011-09-15 08:49:25 +02001982 set_current_state(TASK_RUNNING);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001983 remove_wait_queue(&runtime->tsleep, &wait);
Takashi Iwai13075512008-01-08 18:08:14 +01001984 *availp = avail;
1985 return err;
1986}
1987
Takashi Iwai877211f2005-11-17 13:59:38 +01001988static int snd_pcm_lib_write_transfer(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 unsigned int hwoff,
1990 unsigned long data, unsigned int off,
1991 snd_pcm_uframes_t frames)
1992{
Takashi Iwai877211f2005-11-17 13:59:38 +01001993 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 int err;
1995 char __user *buf = (char __user *) data + frames_to_bytes(runtime, off);
1996 if (substream->ops->copy) {
1997 if ((err = substream->ops->copy(substream, -1, hwoff, buf, frames)) < 0)
1998 return err;
1999 } else {
2000 char *hwbuf = runtime->dma_area + frames_to_bytes(runtime, hwoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (copy_from_user(hwbuf, buf, frames_to_bytes(runtime, frames)))
2002 return -EFAULT;
2003 }
2004 return 0;
2005}
2006
Takashi Iwai877211f2005-11-17 13:59:38 +01002007typedef int (*transfer_f)(struct snd_pcm_substream *substream, unsigned int hwoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 unsigned long data, unsigned int off,
2009 snd_pcm_uframes_t size);
2010
Takashi Iwai877211f2005-11-17 13:59:38 +01002011static snd_pcm_sframes_t snd_pcm_lib_write1(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 unsigned long data,
2013 snd_pcm_uframes_t size,
2014 int nonblock,
2015 transfer_f transfer)
2016{
Takashi Iwai877211f2005-11-17 13:59:38 +01002017 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 snd_pcm_uframes_t xfer = 0;
2019 snd_pcm_uframes_t offset = 0;
Takashi Iwai0910c212012-05-11 17:50:49 +02002020 snd_pcm_uframes_t avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 int err = 0;
2022
2023 if (size == 0)
2024 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 snd_pcm_stream_lock_irq(substream);
2027 switch (runtime->status->state) {
2028 case SNDRV_PCM_STATE_PREPARED:
2029 case SNDRV_PCM_STATE_RUNNING:
2030 case SNDRV_PCM_STATE_PAUSED:
2031 break;
2032 case SNDRV_PCM_STATE_XRUN:
2033 err = -EPIPE;
2034 goto _end_unlock;
2035 case SNDRV_PCM_STATE_SUSPENDED:
2036 err = -ESTRPIPE;
2037 goto _end_unlock;
2038 default:
2039 err = -EBADFD;
2040 goto _end_unlock;
2041 }
2042
David Dillow5daeba32010-06-27 00:13:20 +02002043 runtime->twake = runtime->control->avail_min ? : 1;
Takashi Iwai0910c212012-05-11 17:50:49 +02002044 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
2045 snd_pcm_update_hw_ptr(substream);
2046 avail = snd_pcm_playback_avail(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 while (size > 0) {
2048 snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 snd_pcm_uframes_t cont;
Takashi Iwai13075512008-01-08 18:08:14 +01002050 if (!avail) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (nonblock) {
2052 err = -EAGAIN;
2053 goto _end_unlock;
2054 }
David Dillow5daeba32010-06-27 00:13:20 +02002055 runtime->twake = min_t(snd_pcm_uframes_t, size,
2056 runtime->control->avail_min ? : 1);
2057 err = wait_for_avail(substream, &avail);
Takashi Iwai13075512008-01-08 18:08:14 +01002058 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 frames = size > avail ? avail : size;
2062 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
2063 if (frames > cont)
2064 frames = cont;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002065 if (snd_BUG_ON(!frames)) {
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002066 runtime->twake = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002067 snd_pcm_stream_unlock_irq(substream);
2068 return -EINVAL;
2069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 appl_ptr = runtime->control->appl_ptr;
2071 appl_ofs = appl_ptr % runtime->buffer_size;
2072 snd_pcm_stream_unlock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +01002073 err = transfer(substream, appl_ofs, data, offset, frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 snd_pcm_stream_lock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +01002075 if (err < 0)
2076 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 switch (runtime->status->state) {
2078 case SNDRV_PCM_STATE_XRUN:
2079 err = -EPIPE;
2080 goto _end_unlock;
2081 case SNDRV_PCM_STATE_SUSPENDED:
2082 err = -ESTRPIPE;
2083 goto _end_unlock;
2084 default:
2085 break;
2086 }
2087 appl_ptr += frames;
2088 if (appl_ptr >= runtime->boundary)
2089 appl_ptr -= runtime->boundary;
2090 runtime->control->appl_ptr = appl_ptr;
2091 if (substream->ops->ack)
2092 substream->ops->ack(substream);
2093
2094 offset += frames;
2095 size -= frames;
2096 xfer += frames;
Takashi Iwai0910c212012-05-11 17:50:49 +02002097 avail -= frames;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
2099 snd_pcm_playback_hw_avail(runtime) >= (snd_pcm_sframes_t)runtime->start_threshold) {
2100 err = snd_pcm_start(substream);
2101 if (err < 0)
2102 goto _end_unlock;
2103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
2105 _end_unlock:
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002106 runtime->twake = 0;
Jaroslav Kysela12509322010-01-07 15:36:31 +01002107 if (xfer > 0 && err >= 0)
2108 snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 snd_pcm_stream_unlock_irq(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err;
2111}
2112
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002113/* sanity-check for read/write methods */
2114static int pcm_sanity_check(struct snd_pcm_substream *substream)
2115{
2116 struct snd_pcm_runtime *runtime;
2117 if (PCM_RUNTIME_CHECK(substream))
2118 return -ENXIO;
2119 runtime = substream->runtime;
2120 if (snd_BUG_ON(!substream->ops->copy && !runtime->dma_area))
2121 return -EINVAL;
2122 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2123 return -EBADFD;
2124 return 0;
2125}
2126
Takashi Iwai877211f2005-11-17 13:59:38 +01002127snd_pcm_sframes_t snd_pcm_lib_write(struct snd_pcm_substream *substream, const void __user *buf, snd_pcm_uframes_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Takashi Iwai877211f2005-11-17 13:59:38 +01002129 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 int nonblock;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002131 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002133 err = pcm_sanity_check(substream);
2134 if (err < 0)
2135 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 runtime = substream->runtime;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002137 nonblock = !!(substream->f_flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED &&
2140 runtime->channels > 1)
2141 return -EINVAL;
2142 return snd_pcm_lib_write1(substream, (unsigned long)buf, size, nonblock,
2143 snd_pcm_lib_write_transfer);
2144}
2145
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002146EXPORT_SYMBOL(snd_pcm_lib_write);
2147
Takashi Iwai877211f2005-11-17 13:59:38 +01002148static int snd_pcm_lib_writev_transfer(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 unsigned int hwoff,
2150 unsigned long data, unsigned int off,
2151 snd_pcm_uframes_t frames)
2152{
Takashi Iwai877211f2005-11-17 13:59:38 +01002153 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 int err;
2155 void __user **bufs = (void __user **)data;
2156 int channels = runtime->channels;
2157 int c;
2158 if (substream->ops->copy) {
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002159 if (snd_BUG_ON(!substream->ops->silence))
2160 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 for (c = 0; c < channels; ++c, ++bufs) {
2162 if (*bufs == NULL) {
2163 if ((err = substream->ops->silence(substream, c, hwoff, frames)) < 0)
2164 return err;
2165 } else {
2166 char __user *buf = *bufs + samples_to_bytes(runtime, off);
2167 if ((err = substream->ops->copy(substream, c, hwoff, buf, frames)) < 0)
2168 return err;
2169 }
2170 }
2171 } else {
2172 /* default transfer behaviour */
2173 size_t dma_csize = runtime->dma_bytes / channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 for (c = 0; c < channels; ++c, ++bufs) {
2175 char *hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, hwoff);
2176 if (*bufs == NULL) {
2177 snd_pcm_format_set_silence(runtime->format, hwbuf, frames);
2178 } else {
2179 char __user *buf = *bufs + samples_to_bytes(runtime, off);
2180 if (copy_from_user(hwbuf, buf, samples_to_bytes(runtime, frames)))
2181 return -EFAULT;
2182 }
2183 }
2184 }
2185 return 0;
2186}
2187
Takashi Iwai877211f2005-11-17 13:59:38 +01002188snd_pcm_sframes_t snd_pcm_lib_writev(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 void __user **bufs,
2190 snd_pcm_uframes_t frames)
2191{
Takashi Iwai877211f2005-11-17 13:59:38 +01002192 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 int nonblock;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002194 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002196 err = pcm_sanity_check(substream);
2197 if (err < 0)
2198 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 runtime = substream->runtime;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002200 nonblock = !!(substream->f_flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
2203 return -EINVAL;
2204 return snd_pcm_lib_write1(substream, (unsigned long)bufs, frames,
2205 nonblock, snd_pcm_lib_writev_transfer);
2206}
2207
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002208EXPORT_SYMBOL(snd_pcm_lib_writev);
2209
Takashi Iwai877211f2005-11-17 13:59:38 +01002210static int snd_pcm_lib_read_transfer(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 unsigned int hwoff,
2212 unsigned long data, unsigned int off,
2213 snd_pcm_uframes_t frames)
2214{
Takashi Iwai877211f2005-11-17 13:59:38 +01002215 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 int err;
2217 char __user *buf = (char __user *) data + frames_to_bytes(runtime, off);
2218 if (substream->ops->copy) {
2219 if ((err = substream->ops->copy(substream, -1, hwoff, buf, frames)) < 0)
2220 return err;
2221 } else {
2222 char *hwbuf = runtime->dma_area + frames_to_bytes(runtime, hwoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (copy_to_user(buf, hwbuf, frames_to_bytes(runtime, frames)))
2224 return -EFAULT;
2225 }
2226 return 0;
2227}
2228
Takashi Iwai877211f2005-11-17 13:59:38 +01002229static snd_pcm_sframes_t snd_pcm_lib_read1(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 unsigned long data,
2231 snd_pcm_uframes_t size,
2232 int nonblock,
2233 transfer_f transfer)
2234{
Takashi Iwai877211f2005-11-17 13:59:38 +01002235 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 snd_pcm_uframes_t xfer = 0;
2237 snd_pcm_uframes_t offset = 0;
Takashi Iwai0910c212012-05-11 17:50:49 +02002238 snd_pcm_uframes_t avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 int err = 0;
2240
2241 if (size == 0)
2242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 snd_pcm_stream_lock_irq(substream);
2245 switch (runtime->status->state) {
2246 case SNDRV_PCM_STATE_PREPARED:
2247 if (size >= runtime->start_threshold) {
2248 err = snd_pcm_start(substream);
2249 if (err < 0)
2250 goto _end_unlock;
2251 }
2252 break;
2253 case SNDRV_PCM_STATE_DRAINING:
2254 case SNDRV_PCM_STATE_RUNNING:
2255 case SNDRV_PCM_STATE_PAUSED:
2256 break;
2257 case SNDRV_PCM_STATE_XRUN:
2258 err = -EPIPE;
2259 goto _end_unlock;
2260 case SNDRV_PCM_STATE_SUSPENDED:
2261 err = -ESTRPIPE;
2262 goto _end_unlock;
2263 default:
2264 err = -EBADFD;
2265 goto _end_unlock;
2266 }
2267
David Dillow5daeba32010-06-27 00:13:20 +02002268 runtime->twake = runtime->control->avail_min ? : 1;
Takashi Iwai0910c212012-05-11 17:50:49 +02002269 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
2270 snd_pcm_update_hw_ptr(substream);
2271 avail = snd_pcm_capture_avail(runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 while (size > 0) {
2273 snd_pcm_uframes_t frames, appl_ptr, appl_ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 snd_pcm_uframes_t cont;
Takashi Iwai13075512008-01-08 18:08:14 +01002275 if (!avail) {
2276 if (runtime->status->state ==
2277 SNDRV_PCM_STATE_DRAINING) {
2278 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 goto _end_unlock;
2280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (nonblock) {
2282 err = -EAGAIN;
2283 goto _end_unlock;
2284 }
David Dillow5daeba32010-06-27 00:13:20 +02002285 runtime->twake = min_t(snd_pcm_uframes_t, size,
2286 runtime->control->avail_min ? : 1);
2287 err = wait_for_avail(substream, &avail);
Takashi Iwai13075512008-01-08 18:08:14 +01002288 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 goto _end_unlock;
Takashi Iwai13075512008-01-08 18:08:14 +01002290 if (!avail)
2291 continue; /* draining */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 frames = size > avail ? avail : size;
2294 cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size;
2295 if (frames > cont)
2296 frames = cont;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002297 if (snd_BUG_ON(!frames)) {
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002298 runtime->twake = 0;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002299 snd_pcm_stream_unlock_irq(substream);
2300 return -EINVAL;
2301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 appl_ptr = runtime->control->appl_ptr;
2303 appl_ofs = appl_ptr % runtime->buffer_size;
2304 snd_pcm_stream_unlock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +01002305 err = transfer(substream, appl_ofs, data, offset, frames);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 snd_pcm_stream_lock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +01002307 if (err < 0)
2308 goto _end_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 switch (runtime->status->state) {
2310 case SNDRV_PCM_STATE_XRUN:
2311 err = -EPIPE;
2312 goto _end_unlock;
2313 case SNDRV_PCM_STATE_SUSPENDED:
2314 err = -ESTRPIPE;
2315 goto _end_unlock;
2316 default:
2317 break;
2318 }
2319 appl_ptr += frames;
2320 if (appl_ptr >= runtime->boundary)
2321 appl_ptr -= runtime->boundary;
2322 runtime->control->appl_ptr = appl_ptr;
2323 if (substream->ops->ack)
2324 substream->ops->ack(substream);
2325
2326 offset += frames;
2327 size -= frames;
2328 xfer += frames;
Takashi Iwai0910c212012-05-11 17:50:49 +02002329 avail -= frames;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 }
2331 _end_unlock:
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01002332 runtime->twake = 0;
Jaroslav Kysela12509322010-01-07 15:36:31 +01002333 if (xfer > 0 && err >= 0)
2334 snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 snd_pcm_stream_unlock_irq(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err;
2337}
2338
Takashi Iwai877211f2005-11-17 13:59:38 +01002339snd_pcm_sframes_t snd_pcm_lib_read(struct snd_pcm_substream *substream, void __user *buf, snd_pcm_uframes_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
Takashi Iwai877211f2005-11-17 13:59:38 +01002341 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 int nonblock;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002343 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002345 err = pcm_sanity_check(substream);
2346 if (err < 0)
2347 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 runtime = substream->runtime;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002349 nonblock = !!(substream->f_flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED)
2351 return -EINVAL;
2352 return snd_pcm_lib_read1(substream, (unsigned long)buf, size, nonblock, snd_pcm_lib_read_transfer);
2353}
2354
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002355EXPORT_SYMBOL(snd_pcm_lib_read);
2356
Takashi Iwai877211f2005-11-17 13:59:38 +01002357static int snd_pcm_lib_readv_transfer(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 unsigned int hwoff,
2359 unsigned long data, unsigned int off,
2360 snd_pcm_uframes_t frames)
2361{
Takashi Iwai877211f2005-11-17 13:59:38 +01002362 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 int err;
2364 void __user **bufs = (void __user **)data;
2365 int channels = runtime->channels;
2366 int c;
2367 if (substream->ops->copy) {
2368 for (c = 0; c < channels; ++c, ++bufs) {
2369 char __user *buf;
2370 if (*bufs == NULL)
2371 continue;
2372 buf = *bufs + samples_to_bytes(runtime, off);
2373 if ((err = substream->ops->copy(substream, c, hwoff, buf, frames)) < 0)
2374 return err;
2375 }
2376 } else {
2377 snd_pcm_uframes_t dma_csize = runtime->dma_bytes / channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 for (c = 0; c < channels; ++c, ++bufs) {
2379 char *hwbuf;
2380 char __user *buf;
2381 if (*bufs == NULL)
2382 continue;
2383
2384 hwbuf = runtime->dma_area + (c * dma_csize) + samples_to_bytes(runtime, hwoff);
2385 buf = *bufs + samples_to_bytes(runtime, off);
2386 if (copy_to_user(buf, hwbuf, samples_to_bytes(runtime, frames)))
2387 return -EFAULT;
2388 }
2389 }
2390 return 0;
2391}
2392
Takashi Iwai877211f2005-11-17 13:59:38 +01002393snd_pcm_sframes_t snd_pcm_lib_readv(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 void __user **bufs,
2395 snd_pcm_uframes_t frames)
2396{
Takashi Iwai877211f2005-11-17 13:59:38 +01002397 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 int nonblock;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002399 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002401 err = pcm_sanity_check(substream);
2402 if (err < 0)
2403 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2406 return -EBADFD;
2407
Takashi Iwai0df63e42006-04-28 15:13:41 +02002408 nonblock = !!(substream->f_flags & O_NONBLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
2410 return -EINVAL;
2411 return snd_pcm_lib_read1(substream, (unsigned long)bufs, frames, nonblock, snd_pcm_lib_readv_transfer);
2412}
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414EXPORT_SYMBOL(snd_pcm_lib_readv);
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002415
2416/*
2417 * standard channel mapping helpers
2418 */
2419
2420/* default channel maps for multi-channel playbacks, up to 8 channels */
2421const struct snd_pcm_chmap_elem snd_pcm_std_chmaps[] = {
2422 { .channels = 1,
Takashi Iwai5efbc262012-09-13 14:48:46 +02002423 .map = { SNDRV_CHMAP_MONO } },
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002424 { .channels = 2,
2425 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
2426 { .channels = 4,
2427 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2428 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2429 { .channels = 6,
2430 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2431 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2432 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE } },
2433 { .channels = 8,
2434 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2435 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2436 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2437 SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } },
2438 { }
2439};
2440EXPORT_SYMBOL_GPL(snd_pcm_std_chmaps);
2441
2442/* alternative channel maps with CLFE <-> surround swapped for 6/8 channels */
2443const struct snd_pcm_chmap_elem snd_pcm_alt_chmaps[] = {
2444 { .channels = 1,
Takashi Iwai5efbc262012-09-13 14:48:46 +02002445 .map = { SNDRV_CHMAP_MONO } },
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002446 { .channels = 2,
2447 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
2448 { .channels = 4,
2449 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2450 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2451 { .channels = 6,
2452 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2453 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2454 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
2455 { .channels = 8,
2456 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
2457 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
2458 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR,
2459 SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } },
2460 { }
2461};
2462EXPORT_SYMBOL_GPL(snd_pcm_alt_chmaps);
2463
2464static bool valid_chmap_channels(const struct snd_pcm_chmap *info, int ch)
2465{
2466 if (ch > info->max_channels)
2467 return false;
2468 return !info->channel_mask || (info->channel_mask & (1U << ch));
2469}
2470
2471static int pcm_chmap_ctl_info(struct snd_kcontrol *kcontrol,
2472 struct snd_ctl_elem_info *uinfo)
2473{
2474 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2475
2476 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2477 uinfo->count = 0;
2478 uinfo->count = info->max_channels;
2479 uinfo->value.integer.min = 0;
2480 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
2481 return 0;
2482}
2483
2484/* get callback for channel map ctl element
2485 * stores the channel position firstly matching with the current channels
2486 */
2487static int pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol,
2488 struct snd_ctl_elem_value *ucontrol)
2489{
2490 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2491 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2492 struct snd_pcm_substream *substream;
2493 const struct snd_pcm_chmap_elem *map;
2494
Takashi Iwai552a14a2017-06-14 16:20:32 +02002495 if (!info->chmap)
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002496 return -EINVAL;
2497 substream = snd_pcm_chmap_substream(info, idx);
2498 if (!substream)
2499 return -ENODEV;
2500 memset(ucontrol->value.integer.value, 0,
2501 sizeof(ucontrol->value.integer.value));
2502 if (!substream->runtime)
2503 return 0; /* no channels set */
2504 for (map = info->chmap; map->channels; map++) {
2505 int i;
2506 if (map->channels == substream->runtime->channels &&
2507 valid_chmap_channels(info, map->channels)) {
2508 for (i = 0; i < map->channels; i++)
2509 ucontrol->value.integer.value[i] = map->map[i];
2510 return 0;
2511 }
2512 }
2513 return -EINVAL;
2514}
2515
2516/* tlv callback for channel map ctl element
2517 * expands the pre-defined channel maps in a form of TLV
2518 */
2519static int pcm_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2520 unsigned int size, unsigned int __user *tlv)
2521{
2522 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2523 const struct snd_pcm_chmap_elem *map;
2524 unsigned int __user *dst;
2525 int c, count = 0;
2526
Takashi Iwai552a14a2017-06-14 16:20:32 +02002527 if (!info->chmap)
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002528 return -EINVAL;
2529 if (size < 8)
2530 return -ENOMEM;
2531 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
2532 return -EFAULT;
2533 size -= 8;
2534 dst = tlv + 2;
2535 for (map = info->chmap; map->channels; map++) {
2536 int chs_bytes = map->channels * 4;
2537 if (!valid_chmap_channels(info, map->channels))
2538 continue;
2539 if (size < 8)
2540 return -ENOMEM;
2541 if (put_user(SNDRV_CTL_TLVT_CHMAP_FIXED, dst) ||
2542 put_user(chs_bytes, dst + 1))
2543 return -EFAULT;
2544 dst += 2;
2545 size -= 8;
2546 count += 8;
2547 if (size < chs_bytes)
2548 return -ENOMEM;
2549 size -= chs_bytes;
2550 count += chs_bytes;
2551 for (c = 0; c < map->channels; c++) {
2552 if (put_user(map->map[c], dst))
2553 return -EFAULT;
2554 dst++;
2555 }
2556 }
2557 if (put_user(count, tlv + 1))
2558 return -EFAULT;
2559 return 0;
2560}
2561
2562static void pcm_chmap_ctl_private_free(struct snd_kcontrol *kcontrol)
2563{
2564 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2565 info->pcm->streams[info->stream].chmap_kctl = NULL;
2566 kfree(info);
2567}
2568
2569/**
2570 * snd_pcm_add_chmap_ctls - create channel-mapping control elements
2571 * @pcm: the assigned PCM instance
2572 * @stream: stream direction
2573 * @chmap: channel map elements (for query)
2574 * @max_channels: the max number of channels for the stream
2575 * @private_value: the value passed to each kcontrol's private_value field
2576 * @info_ret: store struct snd_pcm_chmap instance if non-NULL
2577 *
2578 * Create channel-mapping control elements assigned to the given PCM stream(s).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01002579 * Return: Zero if successful, or a negative error value.
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002580 */
2581int snd_pcm_add_chmap_ctls(struct snd_pcm *pcm, int stream,
2582 const struct snd_pcm_chmap_elem *chmap,
2583 int max_channels,
2584 unsigned long private_value,
2585 struct snd_pcm_chmap **info_ret)
2586{
2587 struct snd_pcm_chmap *info;
2588 struct snd_kcontrol_new knew = {
2589 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
2590 .access = SNDRV_CTL_ELEM_ACCESS_READ |
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002591 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2592 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2593 .info = pcm_chmap_ctl_info,
2594 .get = pcm_chmap_ctl_get,
2595 .tlv.c = pcm_chmap_ctl_tlv,
2596 };
2597 int err;
2598
Takashi Iwai8d879be2016-05-10 16:07:40 +02002599 if (WARN_ON(pcm->streams[stream].chmap_kctl))
2600 return -EBUSY;
Takashi Iwai2d3391e2012-07-27 18:27:00 +02002601 info = kzalloc(sizeof(*info), GFP_KERNEL);
2602 if (!info)
2603 return -ENOMEM;
2604 info->pcm = pcm;
2605 info->stream = stream;
2606 info->chmap = chmap;
2607 info->max_channels = max_channels;
2608 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
2609 knew.name = "Playback Channel Map";
2610 else
2611 knew.name = "Capture Channel Map";
2612 knew.device = pcm->device;
2613 knew.count = pcm->streams[stream].substream_count;
2614 knew.private_value = private_value;
2615 info->kctl = snd_ctl_new1(&knew, info);
2616 if (!info->kctl) {
2617 kfree(info);
2618 return -ENOMEM;
2619 }
2620 info->kctl->private_free = pcm_chmap_ctl_private_free;
2621 err = snd_ctl_add(pcm->card, info->kctl);
2622 if (err < 0)
2623 return err;
2624 pcm->streams[stream].chmap_kctl = info->kctl;
2625 if (info_ret)
2626 *info_ret = info;
2627 return 0;
2628}
2629EXPORT_SYMBOL_GPL(snd_pcm_add_chmap_ctls);