Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Digital Audio (PCM) abstract layer |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/slab.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 24 | #include <linux/sched/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/time.h> |
Takashi Iwai | 3f7440a | 2009-06-05 17:40:04 +0200 | [diff] [blame] | 26 | #include <linux/math64.h> |
Paul Gortmaker | d81a6d7 | 2011-09-22 09:34:58 -0400 | [diff] [blame] | 27 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <sound/core.h> |
| 29 | #include <sound/control.h> |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 30 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <sound/info.h> |
| 32 | #include <sound/pcm.h> |
| 33 | #include <sound/pcm_params.h> |
| 34 | #include <sound/timer.h> |
| 35 | |
Takashi Sakamoto | 2c4842d | 2017-05-26 09:30:46 +0900 | [diff] [blame] | 36 | #include "pcm_local.h" |
| 37 | |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 38 | #ifdef CONFIG_SND_PCM_XRUN_DEBUG |
| 39 | #define CREATE_TRACE_POINTS |
| 40 | #include "pcm_trace.h" |
| 41 | #else |
| 42 | #define trace_hwptr(substream, pos, in_interrupt) |
| 43 | #define trace_xrun(substream) |
| 44 | #define trace_hw_ptr_error(substream, reason) |
| 45 | #endif |
| 46 | |
Takashi Iwai | a9cd29e | 2017-05-24 18:18:15 +0200 | [diff] [blame] | 47 | static int fill_silence_frames(struct snd_pcm_substream *substream, |
| 48 | snd_pcm_uframes_t off, snd_pcm_uframes_t frames); |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | /* |
| 51 | * fill ring buffer with silence |
| 52 | * runtime->silence_start: starting pointer to silence area |
| 53 | * runtime->silence_filled: size filled with silence |
| 54 | * runtime->silence_threshold: threshold from application |
| 55 | * runtime->silence_size: maximal size from application |
| 56 | * |
| 57 | * when runtime->silence_size >= runtime->boundary - fill processed area with silence immediately |
| 58 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 59 | void snd_pcm_playback_silence(struct snd_pcm_substream *substream, snd_pcm_uframes_t new_hw_ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 61 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | snd_pcm_uframes_t frames, ofs, transfer; |
Takashi Iwai | 29d1a87 | 2017-05-10 20:02:35 +0200 | [diff] [blame] | 63 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | if (runtime->silence_size < runtime->boundary) { |
| 66 | snd_pcm_sframes_t noise_dist, n; |
| 67 | if (runtime->silence_start != runtime->control->appl_ptr) { |
| 68 | n = runtime->control->appl_ptr - runtime->silence_start; |
| 69 | if (n < 0) |
| 70 | n += runtime->boundary; |
| 71 | if ((snd_pcm_uframes_t)n < runtime->silence_filled) |
| 72 | runtime->silence_filled -= n; |
| 73 | else |
| 74 | runtime->silence_filled = 0; |
| 75 | runtime->silence_start = runtime->control->appl_ptr; |
| 76 | } |
Takashi Iwai | 235475c | 2005-12-07 15:28:07 +0100 | [diff] [blame] | 77 | if (runtime->silence_filled >= runtime->buffer_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | noise_dist = snd_pcm_playback_hw_avail(runtime) + runtime->silence_filled; |
| 80 | if (noise_dist >= (snd_pcm_sframes_t) runtime->silence_threshold) |
| 81 | return; |
| 82 | frames = runtime->silence_threshold - noise_dist; |
| 83 | if (frames > runtime->silence_size) |
| 84 | frames = runtime->silence_size; |
| 85 | } else { |
| 86 | if (new_hw_ptr == ULONG_MAX) { /* initialization */ |
| 87 | snd_pcm_sframes_t avail = snd_pcm_playback_hw_avail(runtime); |
Jaroslav Kysela | 9e216e8 | 2010-07-19 16:37:39 +0200 | [diff] [blame] | 88 | if (avail > runtime->buffer_size) |
| 89 | avail = runtime->buffer_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | runtime->silence_filled = avail > 0 ? avail : 0; |
| 91 | runtime->silence_start = (runtime->status->hw_ptr + |
| 92 | runtime->silence_filled) % |
| 93 | runtime->boundary; |
| 94 | } else { |
| 95 | ofs = runtime->status->hw_ptr; |
| 96 | frames = new_hw_ptr - ofs; |
| 97 | if ((snd_pcm_sframes_t)frames < 0) |
| 98 | frames += runtime->boundary; |
| 99 | runtime->silence_filled -= frames; |
| 100 | if ((snd_pcm_sframes_t)runtime->silence_filled < 0) { |
| 101 | runtime->silence_filled = 0; |
Clemens Ladisch | 9a826dd | 2006-10-23 16:26:57 +0200 | [diff] [blame] | 102 | runtime->silence_start = new_hw_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } else { |
Clemens Ladisch | 9a826dd | 2006-10-23 16:26:57 +0200 | [diff] [blame] | 104 | runtime->silence_start = ofs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | frames = runtime->buffer_size - runtime->silence_filled; |
| 108 | } |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 109 | if (snd_BUG_ON(frames > runtime->buffer_size)) |
| 110 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | if (frames == 0) |
| 112 | return; |
Clemens Ladisch | 9a826dd | 2006-10-23 16:26:57 +0200 | [diff] [blame] | 113 | ofs = runtime->silence_start % runtime->buffer_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | while (frames > 0) { |
| 115 | transfer = ofs + frames > runtime->buffer_size ? runtime->buffer_size - ofs : frames; |
Takashi Iwai | a9cd29e | 2017-05-24 18:18:15 +0200 | [diff] [blame] | 116 | err = fill_silence_frames(substream, ofs, transfer); |
| 117 | snd_BUG_ON(err < 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | runtime->silence_filled += transfer; |
| 119 | frames -= transfer; |
| 120 | ofs = 0; |
| 121 | } |
| 122 | } |
| 123 | |
Eliot Blennerhassett | acb03d4 | 2011-07-23 12:36:25 +1200 | [diff] [blame] | 124 | #ifdef CONFIG_SND_DEBUG |
| 125 | void snd_pcm_debug_name(struct snd_pcm_substream *substream, |
Takashi Iwai | c007011 | 2009-06-08 15:58:48 +0200 | [diff] [blame] | 126 | char *name, size_t len) |
| 127 | { |
| 128 | snprintf(name, len, "pcmC%dD%d%c:%d", |
| 129 | substream->pcm->card->number, |
| 130 | substream->pcm->device, |
| 131 | substream->stream ? 'c' : 'p', |
| 132 | substream->number); |
| 133 | } |
Eliot Blennerhassett | acb03d4 | 2011-07-23 12:36:25 +1200 | [diff] [blame] | 134 | EXPORT_SYMBOL(snd_pcm_debug_name); |
| 135 | #endif |
Takashi Iwai | c007011 | 2009-06-08 15:58:48 +0200 | [diff] [blame] | 136 | |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 137 | #define XRUN_DEBUG_BASIC (1<<0) |
| 138 | #define XRUN_DEBUG_STACK (1<<1) /* dump also stack */ |
| 139 | #define XRUN_DEBUG_JIFFIESCHECK (1<<2) /* do jiffies check */ |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 140 | |
| 141 | #ifdef CONFIG_SND_PCM_XRUN_DEBUG |
| 142 | |
| 143 | #define xrun_debug(substream, mask) \ |
| 144 | ((substream)->pstr->xrun_debug & (mask)) |
Jarkko Nikula | 0f17014 | 2010-03-26 16:07:25 +0200 | [diff] [blame] | 145 | #else |
| 146 | #define xrun_debug(substream, mask) 0 |
| 147 | #endif |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 148 | |
| 149 | #define dump_stack_on_xrun(substream) do { \ |
| 150 | if (xrun_debug(substream, XRUN_DEBUG_STACK)) \ |
| 151 | dump_stack(); \ |
| 152 | } while (0) |
| 153 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 154 | static void xrun(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
Jaroslav Kysela | 13f040f | 2009-05-28 11:31:20 +0200 | [diff] [blame] | 156 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 157 | |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 158 | trace_xrun(substream); |
Jaroslav Kysela | 13f040f | 2009-05-28 11:31:20 +0200 | [diff] [blame] | 159 | if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) |
| 160 | snd_pcm_gettime(runtime, (struct timespec *)&runtime->status->tstamp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN); |
Jaroslav Kysela | 741b20c | 2009-12-17 17:34:39 +0100 | [diff] [blame] | 162 | if (xrun_debug(substream, XRUN_DEBUG_BASIC)) { |
Takashi Iwai | c007011 | 2009-06-08 15:58:48 +0200 | [diff] [blame] | 163 | char name[16]; |
Eliot Blennerhassett | acb03d4 | 2011-07-23 12:36:25 +1200 | [diff] [blame] | 164 | snd_pcm_debug_name(substream, name, sizeof(name)); |
Takashi Iwai | 09e56df | 2014-02-04 18:19:48 +0100 | [diff] [blame] | 165 | pcm_warn(substream->pcm, "XRUN: %s\n", name); |
Takashi Iwai | ed3da3d | 2009-03-03 17:00:15 +0100 | [diff] [blame] | 166 | dump_stack_on_xrun(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Jarkko Nikula | 0f17014 | 2010-03-26 16:07:25 +0200 | [diff] [blame] | 170 | #ifdef CONFIG_SND_PCM_XRUN_DEBUG |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 171 | #define hw_ptr_error(substream, in_interrupt, reason, fmt, args...) \ |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 172 | do { \ |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 173 | trace_hw_ptr_error(substream, reason); \ |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 174 | if (xrun_debug(substream, XRUN_DEBUG_BASIC)) { \ |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 175 | pr_err_ratelimited("ALSA: PCM: [%c] " reason ": " fmt, \ |
| 176 | (in_interrupt) ? 'Q' : 'P', ##args); \ |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 177 | dump_stack_on_xrun(substream); \ |
| 178 | } \ |
| 179 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 181 | #else /* ! CONFIG_SND_PCM_XRUN_DEBUG */ |
| 182 | |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 183 | #define hw_ptr_error(substream, fmt, args...) do { } while (0) |
Jaroslav Kysela | 4d96eb2 | 2009-12-20 11:47:57 +0100 | [diff] [blame] | 184 | |
| 185 | #endif |
| 186 | |
Jaroslav Kysela | 1250932 | 2010-01-07 15:36:31 +0100 | [diff] [blame] | 187 | int snd_pcm_update_state(struct snd_pcm_substream *substream, |
| 188 | struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | snd_pcm_uframes_t avail; |
| 191 | |
| 192 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 193 | avail = snd_pcm_playback_avail(runtime); |
| 194 | else |
| 195 | avail = snd_pcm_capture_avail(runtime); |
| 196 | if (avail > runtime->avail_max) |
| 197 | runtime->avail_max = avail; |
Takashi Iwai | 4cdc115 | 2009-08-20 16:40:16 +0200 | [diff] [blame] | 198 | if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) { |
| 199 | if (avail >= runtime->buffer_size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | snd_pcm_drain_done(substream); |
Takashi Iwai | 4cdc115 | 2009-08-20 16:40:16 +0200 | [diff] [blame] | 201 | return -EPIPE; |
| 202 | } |
| 203 | } else { |
| 204 | if (avail >= runtime->stop_threshold) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | xrun(substream); |
Takashi Iwai | 4cdc115 | 2009-08-20 16:40:16 +0200 | [diff] [blame] | 206 | return -EPIPE; |
| 207 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
David Dillow | 5daeba3 | 2010-06-27 00:13:20 +0200 | [diff] [blame] | 209 | if (runtime->twake) { |
| 210 | if (avail >= runtime->twake) |
| 211 | wake_up(&runtime->tsleep); |
| 212 | } else if (avail >= runtime->control->avail_min) |
| 213 | wake_up(&runtime->sleep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return 0; |
| 215 | } |
| 216 | |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 217 | static void update_audio_tstamp(struct snd_pcm_substream *substream, |
| 218 | struct timespec *curr_tstamp, |
| 219 | struct timespec *audio_tstamp) |
| 220 | { |
| 221 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 222 | u64 audio_frames, audio_nsecs; |
| 223 | struct timespec driver_tstamp; |
| 224 | |
| 225 | if (runtime->tstamp_mode != SNDRV_PCM_TSTAMP_ENABLE) |
| 226 | return; |
| 227 | |
| 228 | if (!(substream->ops->get_time_info) || |
| 229 | (runtime->audio_tstamp_report.actual_type == |
| 230 | SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) { |
| 231 | |
| 232 | /* |
| 233 | * provide audio timestamp derived from pointer position |
| 234 | * add delay only if requested |
| 235 | */ |
| 236 | |
| 237 | audio_frames = runtime->hw_ptr_wrap + runtime->status->hw_ptr; |
| 238 | |
| 239 | if (runtime->audio_tstamp_config.report_delay) { |
| 240 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 241 | audio_frames -= runtime->delay; |
| 242 | else |
| 243 | audio_frames += runtime->delay; |
| 244 | } |
| 245 | audio_nsecs = div_u64(audio_frames * 1000000000LL, |
| 246 | runtime->rate); |
| 247 | *audio_tstamp = ns_to_timespec(audio_nsecs); |
| 248 | } |
| 249 | runtime->status->audio_tstamp = *audio_tstamp; |
| 250 | runtime->status->tstamp = *curr_tstamp; |
| 251 | |
| 252 | /* |
| 253 | * re-take a driver timestamp to let apps detect if the reference tstamp |
| 254 | * read by low-level hardware was provided with a delay |
| 255 | */ |
| 256 | snd_pcm_gettime(substream->runtime, (struct timespec *)&driver_tstamp); |
| 257 | runtime->driver_tstamp = driver_tstamp; |
| 258 | } |
| 259 | |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 260 | static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream, |
| 261 | unsigned int in_interrupt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 263 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | snd_pcm_uframes_t pos; |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 265 | snd_pcm_uframes_t old_hw_ptr, new_hw_ptr, hw_base; |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 266 | snd_pcm_sframes_t hdelta, delta; |
| 267 | unsigned long jdelta; |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 268 | unsigned long curr_jiffies; |
| 269 | struct timespec curr_tstamp; |
Pierre-Louis Bossart | 4eeaaea | 2012-10-22 16:42:15 -0500 | [diff] [blame] | 270 | struct timespec audio_tstamp; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 271 | int crossed_boundary = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 273 | old_hw_ptr = runtime->status->hw_ptr; |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 274 | |
| 275 | /* |
| 276 | * group pointer, time and jiffies reads to allow for more |
| 277 | * accurate correlations/corrections. |
| 278 | * The values are stored at the end of this routine after |
| 279 | * corrections for hw_ptr position |
| 280 | */ |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 281 | pos = substream->ops->pointer(substream); |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 282 | curr_jiffies = jiffies; |
Pierre-Louis Bossart | 4eeaaea | 2012-10-22 16:42:15 -0500 | [diff] [blame] | 283 | if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) { |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 284 | if ((substream->ops->get_time_info) && |
| 285 | (runtime->audio_tstamp_config.type_requested != SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT)) { |
| 286 | substream->ops->get_time_info(substream, &curr_tstamp, |
| 287 | &audio_tstamp, |
| 288 | &runtime->audio_tstamp_config, |
| 289 | &runtime->audio_tstamp_report); |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 290 | |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 291 | /* re-test in case tstamp type is not supported in hardware and was demoted to DEFAULT */ |
| 292 | if (runtime->audio_tstamp_report.actual_type == SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT) |
| 293 | snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp); |
| 294 | } else |
| 295 | snd_pcm_gettime(runtime, (struct timespec *)&curr_tstamp); |
Pierre-Louis Bossart | 4eeaaea | 2012-10-22 16:42:15 -0500 | [diff] [blame] | 296 | } |
| 297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | if (pos == SNDRV_PCM_POS_XRUN) { |
| 299 | xrun(substream); |
| 300 | return -EPIPE; |
| 301 | } |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 302 | if (pos >= runtime->buffer_size) { |
Takashi Iwai | 09e56df | 2014-02-04 18:19:48 +0100 | [diff] [blame] | 303 | if (printk_ratelimit()) { |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 304 | char name[16]; |
Eliot Blennerhassett | acb03d4 | 2011-07-23 12:36:25 +1200 | [diff] [blame] | 305 | snd_pcm_debug_name(substream, name, sizeof(name)); |
Takashi Iwai | 09e56df | 2014-02-04 18:19:48 +0100 | [diff] [blame] | 306 | pcm_err(substream->pcm, |
Takashi Iwai | 0ab1ace | 2016-03-10 20:56:20 +0100 | [diff] [blame] | 307 | "invalid position: %s, pos = %ld, buffer size = %ld, period size = %ld\n", |
Takashi Iwai | 09e56df | 2014-02-04 18:19:48 +0100 | [diff] [blame] | 308 | name, pos, runtime->buffer_size, |
| 309 | runtime->period_size); |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 310 | } |
| 311 | pos = 0; |
Takashi Iwai | cedb811 | 2009-07-23 11:04:13 +0200 | [diff] [blame] | 312 | } |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 313 | pos -= pos % runtime->min_align; |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 314 | trace_hwptr(substream, pos, in_interrupt); |
Takashi Iwai | ed3da3d | 2009-03-03 17:00:15 +0100 | [diff] [blame] | 315 | hw_base = runtime->hw_ptr_base; |
| 316 | new_hw_ptr = hw_base + pos; |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 317 | if (in_interrupt) { |
| 318 | /* we know that one period was processed */ |
| 319 | /* delta = "expected next hw_ptr" for in_interrupt != 0 */ |
Jaroslav Kysela | e763692 | 2010-01-26 17:08:24 +0100 | [diff] [blame] | 320 | delta = runtime->hw_ptr_interrupt + runtime->period_size; |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 321 | if (delta > new_hw_ptr) { |
Jaroslav Kysela | bd76af0 | 2010-08-18 14:16:54 +0200 | [diff] [blame] | 322 | /* check for double acknowledged interrupts */ |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 323 | hdelta = curr_jiffies - runtime->hw_ptr_jiffies; |
Koro Chen | 13a9883 | 2015-05-13 22:39:03 +0800 | [diff] [blame] | 324 | if (hdelta > runtime->hw_ptr_buffer_jiffies/2 + 1) { |
Jaroslav Kysela | bd76af0 | 2010-08-18 14:16:54 +0200 | [diff] [blame] | 325 | hw_base += runtime->buffer_size; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 326 | if (hw_base >= runtime->boundary) { |
Jaroslav Kysela | bd76af0 | 2010-08-18 14:16:54 +0200 | [diff] [blame] | 327 | hw_base = 0; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 328 | crossed_boundary++; |
| 329 | } |
Jaroslav Kysela | bd76af0 | 2010-08-18 14:16:54 +0200 | [diff] [blame] | 330 | new_hw_ptr = hw_base + pos; |
| 331 | goto __delta; |
| 332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | } |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 335 | /* new_hw_ptr might be lower than old_hw_ptr in case when */ |
| 336 | /* pointer crosses the end of the ring buffer */ |
| 337 | if (new_hw_ptr < old_hw_ptr) { |
| 338 | hw_base += runtime->buffer_size; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 339 | if (hw_base >= runtime->boundary) { |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 340 | hw_base = 0; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 341 | crossed_boundary++; |
| 342 | } |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 343 | new_hw_ptr = hw_base + pos; |
| 344 | } |
| 345 | __delta: |
Clemens Ladisch | b406e61 | 2010-05-25 09:01:46 +0200 | [diff] [blame] | 346 | delta = new_hw_ptr - old_hw_ptr; |
| 347 | if (delta < 0) |
| 348 | delta += runtime->boundary; |
Clemens Ladisch | ab69a49 | 2010-11-15 10:46:23 +0100 | [diff] [blame] | 349 | |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 350 | if (runtime->no_period_wakeup) { |
Kelly Anderson | 12ff414 | 2011-04-01 11:58:25 +0200 | [diff] [blame] | 351 | snd_pcm_sframes_t xrun_threshold; |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 352 | /* |
| 353 | * Without regular period interrupts, we have to check |
| 354 | * the elapsed time to detect xruns. |
| 355 | */ |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 356 | jdelta = curr_jiffies - runtime->hw_ptr_jiffies; |
Clemens Ladisch | 47228e4 | 2010-11-18 09:53:07 +0100 | [diff] [blame] | 357 | if (jdelta < runtime->hw_ptr_buffer_jiffies / 2) |
| 358 | goto no_delta_check; |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 359 | hdelta = jdelta - delta * HZ / runtime->rate; |
Kelly Anderson | 12ff414 | 2011-04-01 11:58:25 +0200 | [diff] [blame] | 360 | xrun_threshold = runtime->hw_ptr_buffer_jiffies / 2 + 1; |
| 361 | while (hdelta > xrun_threshold) { |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 362 | delta += runtime->buffer_size; |
| 363 | hw_base += runtime->buffer_size; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 364 | if (hw_base >= runtime->boundary) { |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 365 | hw_base = 0; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 366 | crossed_boundary++; |
| 367 | } |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 368 | new_hw_ptr = hw_base + pos; |
| 369 | hdelta -= runtime->hw_ptr_buffer_jiffies; |
| 370 | } |
Clemens Ladisch | ab69a49 | 2010-11-15 10:46:23 +0100 | [diff] [blame] | 371 | goto no_delta_check; |
Clemens Ladisch | 59ff878 | 2010-11-18 09:43:52 +0100 | [diff] [blame] | 372 | } |
Clemens Ladisch | ab69a49 | 2010-11-15 10:46:23 +0100 | [diff] [blame] | 373 | |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 374 | /* something must be really wrong */ |
Jaroslav Kysela | 7b3a177 | 2010-01-08 08:43:01 +0100 | [diff] [blame] | 375 | if (delta >= runtime->buffer_size + runtime->period_size) { |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 376 | hw_ptr_error(substream, in_interrupt, "Unexpected hw_ptr", |
| 377 | "(stream=%i, pos=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n", |
| 378 | substream->stream, (long)pos, |
| 379 | (long)new_hw_ptr, (long)old_hw_ptr); |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 380 | return 0; |
| 381 | } |
Takashi Iwai | c87d973 | 2009-05-27 10:53:33 +0200 | [diff] [blame] | 382 | |
| 383 | /* Do jiffies check only in xrun_debug mode */ |
Jaroslav Kysela | 741b20c | 2009-12-17 17:34:39 +0100 | [diff] [blame] | 384 | if (!xrun_debug(substream, XRUN_DEBUG_JIFFIESCHECK)) |
Takashi Iwai | c87d973 | 2009-05-27 10:53:33 +0200 | [diff] [blame] | 385 | goto no_jiffies_check; |
| 386 | |
Takashi Iwai | 3e5b501 | 2009-04-28 12:07:08 +0200 | [diff] [blame] | 387 | /* Skip the jiffies check for hardwares with BATCH flag. |
| 388 | * Such hardware usually just increases the position at each IRQ, |
| 389 | * thus it can't give any strange position. |
| 390 | */ |
| 391 | if (runtime->hw.info & SNDRV_PCM_INFO_BATCH) |
| 392 | goto no_jiffies_check; |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 393 | hdelta = delta; |
Jaroslav Kysela | a4444da | 2009-05-28 12:31:56 +0200 | [diff] [blame] | 394 | if (hdelta < runtime->delay) |
| 395 | goto no_jiffies_check; |
| 396 | hdelta -= runtime->delay; |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 397 | jdelta = curr_jiffies - runtime->hw_ptr_jiffies; |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 398 | if (((hdelta * HZ) / runtime->rate) > jdelta + HZ/100) { |
| 399 | delta = jdelta / |
| 400 | (((runtime->period_size * HZ) / runtime->rate) |
| 401 | + HZ/100); |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 402 | /* move new_hw_ptr according jiffies not pos variable */ |
| 403 | new_hw_ptr = old_hw_ptr; |
Jaroslav Kysela | ed69c6a | 2010-01-13 08:12:31 +0100 | [diff] [blame] | 404 | hw_base = delta; |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 405 | /* use loop to avoid checks for delta overflows */ |
| 406 | /* the delta value is small or zero in most cases */ |
| 407 | while (delta > 0) { |
| 408 | new_hw_ptr += runtime->period_size; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 409 | if (new_hw_ptr >= runtime->boundary) { |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 410 | new_hw_ptr -= runtime->boundary; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 411 | crossed_boundary--; |
| 412 | } |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 413 | delta--; |
| 414 | } |
| 415 | /* align hw_base to buffer_size */ |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 416 | hw_ptr_error(substream, in_interrupt, "hw_ptr skipping", |
| 417 | "(pos=%ld, delta=%ld, period=%ld, jdelta=%lu/%lu/%lu, hw_ptr=%ld/%ld)\n", |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 418 | (long)pos, (long)hdelta, |
| 419 | (long)runtime->period_size, jdelta, |
Jaroslav Kysela | ed69c6a | 2010-01-13 08:12:31 +0100 | [diff] [blame] | 420 | ((hdelta * HZ) / runtime->rate), hw_base, |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 421 | (unsigned long)old_hw_ptr, |
| 422 | (unsigned long)new_hw_ptr); |
Jaroslav Kysela | ed69c6a | 2010-01-13 08:12:31 +0100 | [diff] [blame] | 423 | /* reset values to proper state */ |
| 424 | delta = 0; |
| 425 | hw_base = new_hw_ptr - (new_hw_ptr % runtime->buffer_size); |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 426 | } |
Takashi Iwai | 3e5b501 | 2009-04-28 12:07:08 +0200 | [diff] [blame] | 427 | no_jiffies_check: |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 428 | if (delta > runtime->period_size + runtime->period_size / 2) { |
Takashi Iwai | f591490 | 2014-11-04 12:45:59 +0100 | [diff] [blame] | 429 | hw_ptr_error(substream, in_interrupt, |
| 430 | "Lost interrupts?", |
| 431 | "(stream=%i, delta=%ld, new_hw_ptr=%ld, old_hw_ptr=%ld)\n", |
Takashi Iwai | ed3da3d | 2009-03-03 17:00:15 +0100 | [diff] [blame] | 432 | substream->stream, (long)delta, |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 433 | (long)new_hw_ptr, |
| 434 | (long)old_hw_ptr); |
Takashi Iwai | ed3da3d | 2009-03-03 17:00:15 +0100 | [diff] [blame] | 435 | } |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 436 | |
Clemens Ladisch | ab69a49 | 2010-11-15 10:46:23 +0100 | [diff] [blame] | 437 | no_delta_check: |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 438 | if (runtime->status->hw_ptr == new_hw_ptr) { |
| 439 | update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp); |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 440 | return 0; |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 441 | } |
Takashi Iwai | ab1863f | 2009-06-07 12:09:17 +0200 | [diff] [blame] | 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && |
| 444 | runtime->silence_size > 0) |
| 445 | snd_pcm_playback_silence(substream, new_hw_ptr); |
| 446 | |
Jaroslav Kysela | e763692 | 2010-01-26 17:08:24 +0100 | [diff] [blame] | 447 | if (in_interrupt) { |
Clemens Ladisch | ead4046 | 2010-05-21 09:15:59 +0200 | [diff] [blame] | 448 | delta = new_hw_ptr - runtime->hw_ptr_interrupt; |
| 449 | if (delta < 0) |
| 450 | delta += runtime->boundary; |
| 451 | delta -= (snd_pcm_uframes_t)delta % runtime->period_size; |
| 452 | runtime->hw_ptr_interrupt += delta; |
| 453 | if (runtime->hw_ptr_interrupt >= runtime->boundary) |
| 454 | runtime->hw_ptr_interrupt -= runtime->boundary; |
Jaroslav Kysela | e763692 | 2010-01-26 17:08:24 +0100 | [diff] [blame] | 455 | } |
Takashi Iwai | ed3da3d | 2009-03-03 17:00:15 +0100 | [diff] [blame] | 456 | runtime->hw_ptr_base = hw_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | runtime->status->hw_ptr = new_hw_ptr; |
Pierre-Louis Bossart | 3509a03 | 2012-05-22 14:54:02 -0500 | [diff] [blame] | 458 | runtime->hw_ptr_jiffies = curr_jiffies; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 459 | if (crossed_boundary) { |
| 460 | snd_BUG_ON(crossed_boundary != 1); |
| 461 | runtime->hw_ptr_wrap += runtime->boundary; |
| 462 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 464 | update_audio_tstamp(substream, &curr_tstamp, &audio_tstamp); |
Pierre-Louis Bossart | 4eeaaea | 2012-10-22 16:42:15 -0500 | [diff] [blame] | 465 | |
Jaroslav Kysela | 1250932 | 2010-01-07 15:36:31 +0100 | [diff] [blame] | 466 | return snd_pcm_update_state(substream, runtime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | /* CAUTION: call it with irq disabled */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 470 | int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | { |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 472 | return snd_pcm_update_hw_ptr0(substream, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | /** |
| 476 | * snd_pcm_set_ops - set the PCM operators |
| 477 | * @pcm: the pcm instance |
| 478 | * @direction: stream direction, SNDRV_PCM_STREAM_XXX |
| 479 | * @ops: the operator table |
| 480 | * |
| 481 | * Sets the given PCM operators to the pcm instance. |
| 482 | */ |
Lars-Peter Clausen | e6c2e7e | 2013-05-24 15:18:10 +0200 | [diff] [blame] | 483 | void snd_pcm_set_ops(struct snd_pcm *pcm, int direction, |
| 484 | const struct snd_pcm_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 486 | struct snd_pcm_str *stream = &pcm->streams[direction]; |
| 487 | struct snd_pcm_substream *substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
| 489 | for (substream = stream->substream; substream != NULL; substream = substream->next) |
| 490 | substream->ops = ops; |
| 491 | } |
| 492 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 493 | EXPORT_SYMBOL(snd_pcm_set_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | /** |
| 496 | * snd_pcm_sync - set the PCM sync id |
| 497 | * @substream: the pcm substream |
| 498 | * |
| 499 | * Sets the PCM sync identifier for the card. |
| 500 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 501 | void snd_pcm_set_sync(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 503 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
| 505 | runtime->sync.id32[0] = substream->pcm->card->number; |
| 506 | runtime->sync.id32[1] = -1; |
| 507 | runtime->sync.id32[2] = -1; |
| 508 | runtime->sync.id32[3] = -1; |
| 509 | } |
| 510 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 511 | EXPORT_SYMBOL(snd_pcm_set_sync); |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | /* |
| 514 | * Standard ioctl routine |
| 515 | */ |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | static inline unsigned int div32(unsigned int a, unsigned int b, |
| 518 | unsigned int *r) |
| 519 | { |
| 520 | if (b == 0) { |
| 521 | *r = 0; |
| 522 | return UINT_MAX; |
| 523 | } |
| 524 | *r = a % b; |
| 525 | return a / b; |
| 526 | } |
| 527 | |
| 528 | static inline unsigned int div_down(unsigned int a, unsigned int b) |
| 529 | { |
| 530 | if (b == 0) |
| 531 | return UINT_MAX; |
| 532 | return a / b; |
| 533 | } |
| 534 | |
| 535 | static inline unsigned int div_up(unsigned int a, unsigned int b) |
| 536 | { |
| 537 | unsigned int r; |
| 538 | unsigned int q; |
| 539 | if (b == 0) |
| 540 | return UINT_MAX; |
| 541 | q = div32(a, b, &r); |
| 542 | if (r) |
| 543 | ++q; |
| 544 | return q; |
| 545 | } |
| 546 | |
| 547 | static inline unsigned int mul(unsigned int a, unsigned int b) |
| 548 | { |
| 549 | if (a == 0) |
| 550 | return 0; |
| 551 | if (div_down(UINT_MAX, a) < b) |
| 552 | return UINT_MAX; |
| 553 | return a * b; |
| 554 | } |
| 555 | |
| 556 | static inline unsigned int muldiv32(unsigned int a, unsigned int b, |
| 557 | unsigned int c, unsigned int *r) |
| 558 | { |
| 559 | u_int64_t n = (u_int64_t) a * b; |
| 560 | if (c == 0) { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 561 | snd_BUG_ON(!n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | *r = 0; |
| 563 | return UINT_MAX; |
| 564 | } |
Takashi Iwai | 3f7440a | 2009-06-05 17:40:04 +0200 | [diff] [blame] | 565 | n = div_u64_rem(n, c, r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | if (n >= UINT_MAX) { |
| 567 | *r = 0; |
| 568 | return UINT_MAX; |
| 569 | } |
| 570 | return n; |
| 571 | } |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | /** |
| 574 | * snd_interval_refine - refine the interval value of configurator |
| 575 | * @i: the interval value to refine |
| 576 | * @v: the interval value to refer to |
| 577 | * |
| 578 | * Refines the interval value with the reference value. |
| 579 | * The interval is changed to the range satisfying both intervals. |
| 580 | * The interval status (min, max, integer, etc.) are evaluated. |
| 581 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 582 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 583 | * negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 585 | int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | { |
| 587 | int changed = 0; |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 588 | if (snd_BUG_ON(snd_interval_empty(i))) |
| 589 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | if (i->min < v->min) { |
| 591 | i->min = v->min; |
| 592 | i->openmin = v->openmin; |
| 593 | changed = 1; |
| 594 | } else if (i->min == v->min && !i->openmin && v->openmin) { |
| 595 | i->openmin = 1; |
| 596 | changed = 1; |
| 597 | } |
| 598 | if (i->max > v->max) { |
| 599 | i->max = v->max; |
| 600 | i->openmax = v->openmax; |
| 601 | changed = 1; |
| 602 | } else if (i->max == v->max && !i->openmax && v->openmax) { |
| 603 | i->openmax = 1; |
| 604 | changed = 1; |
| 605 | } |
| 606 | if (!i->integer && v->integer) { |
| 607 | i->integer = 1; |
| 608 | changed = 1; |
| 609 | } |
| 610 | if (i->integer) { |
| 611 | if (i->openmin) { |
| 612 | i->min++; |
| 613 | i->openmin = 0; |
| 614 | } |
| 615 | if (i->openmax) { |
| 616 | i->max--; |
| 617 | i->openmax = 0; |
| 618 | } |
| 619 | } else if (!i->openmin && !i->openmax && i->min == i->max) |
| 620 | i->integer = 1; |
| 621 | if (snd_interval_checkempty(i)) { |
| 622 | snd_interval_none(i); |
| 623 | return -EINVAL; |
| 624 | } |
| 625 | return changed; |
| 626 | } |
| 627 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 628 | EXPORT_SYMBOL(snd_interval_refine); |
| 629 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 630 | static int snd_interval_refine_first(struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 632 | if (snd_BUG_ON(snd_interval_empty(i))) |
| 633 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | if (snd_interval_single(i)) |
| 635 | return 0; |
| 636 | i->max = i->min; |
| 637 | i->openmax = i->openmin; |
| 638 | if (i->openmax) |
| 639 | i->max++; |
| 640 | return 1; |
| 641 | } |
| 642 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 643 | static int snd_interval_refine_last(struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 645 | if (snd_BUG_ON(snd_interval_empty(i))) |
| 646 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | if (snd_interval_single(i)) |
| 648 | return 0; |
| 649 | i->min = i->max; |
| 650 | i->openmin = i->openmax; |
| 651 | if (i->openmin) |
| 652 | i->min--; |
| 653 | return 1; |
| 654 | } |
| 655 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 656 | void snd_interval_mul(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | { |
| 658 | if (a->empty || b->empty) { |
| 659 | snd_interval_none(c); |
| 660 | return; |
| 661 | } |
| 662 | c->empty = 0; |
| 663 | c->min = mul(a->min, b->min); |
| 664 | c->openmin = (a->openmin || b->openmin); |
| 665 | c->max = mul(a->max, b->max); |
| 666 | c->openmax = (a->openmax || b->openmax); |
| 667 | c->integer = (a->integer && b->integer); |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * snd_interval_div - refine the interval value with division |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 672 | * @a: dividend |
| 673 | * @b: divisor |
| 674 | * @c: quotient |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | * |
| 676 | * c = a / b |
| 677 | * |
| 678 | * Returns non-zero if the value is changed, zero if not changed. |
| 679 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 680 | void snd_interval_div(const struct snd_interval *a, const struct snd_interval *b, struct snd_interval *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | { |
| 682 | unsigned int r; |
| 683 | if (a->empty || b->empty) { |
| 684 | snd_interval_none(c); |
| 685 | return; |
| 686 | } |
| 687 | c->empty = 0; |
| 688 | c->min = div32(a->min, b->max, &r); |
| 689 | c->openmin = (r || a->openmin || b->openmax); |
| 690 | if (b->min > 0) { |
| 691 | c->max = div32(a->max, b->min, &r); |
| 692 | if (r) { |
| 693 | c->max++; |
| 694 | c->openmax = 1; |
| 695 | } else |
| 696 | c->openmax = (a->openmax || b->openmin); |
| 697 | } else { |
| 698 | c->max = UINT_MAX; |
| 699 | c->openmax = 0; |
| 700 | } |
| 701 | c->integer = 0; |
| 702 | } |
| 703 | |
| 704 | /** |
| 705 | * snd_interval_muldivk - refine the interval value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 706 | * @a: dividend 1 |
| 707 | * @b: dividend 2 |
| 708 | * @k: divisor (as integer) |
| 709 | * @c: result |
| 710 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | * c = a * b / k |
| 712 | * |
| 713 | * Returns non-zero if the value is changed, zero if not changed. |
| 714 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 715 | void snd_interval_muldivk(const struct snd_interval *a, const struct snd_interval *b, |
| 716 | unsigned int k, struct snd_interval *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | { |
| 718 | unsigned int r; |
| 719 | if (a->empty || b->empty) { |
| 720 | snd_interval_none(c); |
| 721 | return; |
| 722 | } |
| 723 | c->empty = 0; |
| 724 | c->min = muldiv32(a->min, b->min, k, &r); |
| 725 | c->openmin = (r || a->openmin || b->openmin); |
| 726 | c->max = muldiv32(a->max, b->max, k, &r); |
| 727 | if (r) { |
| 728 | c->max++; |
| 729 | c->openmax = 1; |
| 730 | } else |
| 731 | c->openmax = (a->openmax || b->openmax); |
| 732 | c->integer = 0; |
| 733 | } |
| 734 | |
| 735 | /** |
| 736 | * snd_interval_mulkdiv - refine the interval value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 737 | * @a: dividend 1 |
| 738 | * @k: dividend 2 (as integer) |
| 739 | * @b: divisor |
| 740 | * @c: result |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | * |
| 742 | * c = a * k / b |
| 743 | * |
| 744 | * Returns non-zero if the value is changed, zero if not changed. |
| 745 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 746 | void snd_interval_mulkdiv(const struct snd_interval *a, unsigned int k, |
| 747 | const struct snd_interval *b, struct snd_interval *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | { |
| 749 | unsigned int r; |
| 750 | if (a->empty || b->empty) { |
| 751 | snd_interval_none(c); |
| 752 | return; |
| 753 | } |
| 754 | c->empty = 0; |
| 755 | c->min = muldiv32(a->min, k, b->max, &r); |
| 756 | c->openmin = (r || a->openmin || b->openmax); |
| 757 | if (b->min > 0) { |
| 758 | c->max = muldiv32(a->max, k, b->min, &r); |
| 759 | if (r) { |
| 760 | c->max++; |
| 761 | c->openmax = 1; |
| 762 | } else |
| 763 | c->openmax = (a->openmax || b->openmin); |
| 764 | } else { |
| 765 | c->max = UINT_MAX; |
| 766 | c->openmax = 0; |
| 767 | } |
| 768 | c->integer = 0; |
| 769 | } |
| 770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | /* ---- */ |
| 772 | |
| 773 | |
| 774 | /** |
| 775 | * snd_interval_ratnum - refine the interval value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 776 | * @i: interval to refine |
| 777 | * @rats_count: number of ratnum_t |
| 778 | * @rats: ratnum_t array |
| 779 | * @nump: pointer to store the resultant numerator |
| 780 | * @denp: pointer to store the resultant denominator |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 782 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 783 | * negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 785 | int snd_interval_ratnum(struct snd_interval *i, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 786 | unsigned int rats_count, const struct snd_ratnum *rats, |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 787 | unsigned int *nump, unsigned int *denp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 789 | unsigned int best_num, best_den; |
| 790 | int best_diff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | unsigned int k; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 792 | struct snd_interval t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | int err; |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 794 | unsigned int result_num, result_den; |
| 795 | int result_diff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
| 797 | best_num = best_den = best_diff = 0; |
| 798 | for (k = 0; k < rats_count; ++k) { |
| 799 | unsigned int num = rats[k].num; |
| 800 | unsigned int den; |
| 801 | unsigned int q = i->min; |
| 802 | int diff; |
| 803 | if (q == 0) |
| 804 | q = 1; |
Krzysztof Helt | 40962d7 | 2009-12-19 18:31:04 +0100 | [diff] [blame] | 805 | den = div_up(num, q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | if (den < rats[k].den_min) |
| 807 | continue; |
| 808 | if (den > rats[k].den_max) |
| 809 | den = rats[k].den_max; |
| 810 | else { |
| 811 | unsigned int r; |
| 812 | r = (den - rats[k].den_min) % rats[k].den_step; |
| 813 | if (r != 0) |
| 814 | den -= r; |
| 815 | } |
| 816 | diff = num - q * den; |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 817 | if (diff < 0) |
| 818 | diff = -diff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | if (best_num == 0 || |
| 820 | diff * best_den < best_diff * den) { |
| 821 | best_diff = diff; |
| 822 | best_den = den; |
| 823 | best_num = num; |
| 824 | } |
| 825 | } |
| 826 | if (best_den == 0) { |
| 827 | i->empty = 1; |
| 828 | return -EINVAL; |
| 829 | } |
| 830 | t.min = div_down(best_num, best_den); |
| 831 | t.openmin = !!(best_num % best_den); |
| 832 | |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 833 | result_num = best_num; |
| 834 | result_diff = best_diff; |
| 835 | result_den = best_den; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | best_num = best_den = best_diff = 0; |
| 837 | for (k = 0; k < rats_count; ++k) { |
| 838 | unsigned int num = rats[k].num; |
| 839 | unsigned int den; |
| 840 | unsigned int q = i->max; |
| 841 | int diff; |
| 842 | if (q == 0) { |
| 843 | i->empty = 1; |
| 844 | return -EINVAL; |
| 845 | } |
Krzysztof Helt | 40962d7 | 2009-12-19 18:31:04 +0100 | [diff] [blame] | 846 | den = div_down(num, q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | if (den > rats[k].den_max) |
| 848 | continue; |
| 849 | if (den < rats[k].den_min) |
| 850 | den = rats[k].den_min; |
| 851 | else { |
| 852 | unsigned int r; |
| 853 | r = (den - rats[k].den_min) % rats[k].den_step; |
| 854 | if (r != 0) |
| 855 | den += rats[k].den_step - r; |
| 856 | } |
| 857 | diff = q * den - num; |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 858 | if (diff < 0) |
| 859 | diff = -diff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | if (best_num == 0 || |
| 861 | diff * best_den < best_diff * den) { |
| 862 | best_diff = diff; |
| 863 | best_den = den; |
| 864 | best_num = num; |
| 865 | } |
| 866 | } |
| 867 | if (best_den == 0) { |
| 868 | i->empty = 1; |
| 869 | return -EINVAL; |
| 870 | } |
| 871 | t.max = div_up(best_num, best_den); |
| 872 | t.openmax = !!(best_num % best_den); |
| 873 | t.integer = 0; |
| 874 | err = snd_interval_refine(i, &t); |
| 875 | if (err < 0) |
| 876 | return err; |
| 877 | |
| 878 | if (snd_interval_single(i)) { |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 879 | if (best_diff * result_den < result_diff * best_den) { |
| 880 | result_num = best_num; |
| 881 | result_den = best_den; |
| 882 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | if (nump) |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 884 | *nump = result_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | if (denp) |
Krzysztof Helt | 8374e24 | 2009-12-21 17:07:08 +0100 | [diff] [blame] | 886 | *denp = result_den; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | } |
| 888 | return err; |
| 889 | } |
| 890 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 891 | EXPORT_SYMBOL(snd_interval_ratnum); |
| 892 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | /** |
| 894 | * snd_interval_ratden - refine the interval value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 895 | * @i: interval to refine |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 896 | * @rats_count: number of struct ratden |
| 897 | * @rats: struct ratden array |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 898 | * @nump: pointer to store the resultant numerator |
| 899 | * @denp: pointer to store the resultant denominator |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 901 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 902 | * negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 904 | static int snd_interval_ratden(struct snd_interval *i, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 905 | unsigned int rats_count, |
| 906 | const struct snd_ratden *rats, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | unsigned int *nump, unsigned int *denp) |
| 908 | { |
| 909 | unsigned int best_num, best_diff, best_den; |
| 910 | unsigned int k; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 911 | struct snd_interval t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | int err; |
| 913 | |
| 914 | best_num = best_den = best_diff = 0; |
| 915 | for (k = 0; k < rats_count; ++k) { |
| 916 | unsigned int num; |
| 917 | unsigned int den = rats[k].den; |
| 918 | unsigned int q = i->min; |
| 919 | int diff; |
| 920 | num = mul(q, den); |
| 921 | if (num > rats[k].num_max) |
| 922 | continue; |
| 923 | if (num < rats[k].num_min) |
| 924 | num = rats[k].num_max; |
| 925 | else { |
| 926 | unsigned int r; |
| 927 | r = (num - rats[k].num_min) % rats[k].num_step; |
| 928 | if (r != 0) |
| 929 | num += rats[k].num_step - r; |
| 930 | } |
| 931 | diff = num - q * den; |
| 932 | if (best_num == 0 || |
| 933 | diff * best_den < best_diff * den) { |
| 934 | best_diff = diff; |
| 935 | best_den = den; |
| 936 | best_num = num; |
| 937 | } |
| 938 | } |
| 939 | if (best_den == 0) { |
| 940 | i->empty = 1; |
| 941 | return -EINVAL; |
| 942 | } |
| 943 | t.min = div_down(best_num, best_den); |
| 944 | t.openmin = !!(best_num % best_den); |
| 945 | |
| 946 | best_num = best_den = best_diff = 0; |
| 947 | for (k = 0; k < rats_count; ++k) { |
| 948 | unsigned int num; |
| 949 | unsigned int den = rats[k].den; |
| 950 | unsigned int q = i->max; |
| 951 | int diff; |
| 952 | num = mul(q, den); |
| 953 | if (num < rats[k].num_min) |
| 954 | continue; |
| 955 | if (num > rats[k].num_max) |
| 956 | num = rats[k].num_max; |
| 957 | else { |
| 958 | unsigned int r; |
| 959 | r = (num - rats[k].num_min) % rats[k].num_step; |
| 960 | if (r != 0) |
| 961 | num -= r; |
| 962 | } |
| 963 | diff = q * den - num; |
| 964 | if (best_num == 0 || |
| 965 | diff * best_den < best_diff * den) { |
| 966 | best_diff = diff; |
| 967 | best_den = den; |
| 968 | best_num = num; |
| 969 | } |
| 970 | } |
| 971 | if (best_den == 0) { |
| 972 | i->empty = 1; |
| 973 | return -EINVAL; |
| 974 | } |
| 975 | t.max = div_up(best_num, best_den); |
| 976 | t.openmax = !!(best_num % best_den); |
| 977 | t.integer = 0; |
| 978 | err = snd_interval_refine(i, &t); |
| 979 | if (err < 0) |
| 980 | return err; |
| 981 | |
| 982 | if (snd_interval_single(i)) { |
| 983 | if (nump) |
| 984 | *nump = best_num; |
| 985 | if (denp) |
| 986 | *denp = best_den; |
| 987 | } |
| 988 | return err; |
| 989 | } |
| 990 | |
| 991 | /** |
| 992 | * snd_interval_list - refine the interval value from the list |
| 993 | * @i: the interval value to refine |
| 994 | * @count: the number of elements in the list |
| 995 | * @list: the value list |
| 996 | * @mask: the bit-mask to evaluate |
| 997 | * |
| 998 | * Refines the interval value from the list. |
| 999 | * When mask is non-zero, only the elements corresponding to bit 1 are |
| 1000 | * evaluated. |
| 1001 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1002 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 1003 | * negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | */ |
Mark Brown | 4af87a9 | 2012-03-14 19:48:43 +0000 | [diff] [blame] | 1005 | int snd_interval_list(struct snd_interval *i, unsigned int count, |
| 1006 | const unsigned int *list, unsigned int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | { |
| 1008 | unsigned int k; |
Clemens Ladisch | b1ddaf6 | 2009-08-25 08:15:41 +0200 | [diff] [blame] | 1009 | struct snd_interval list_range; |
Takashi Iwai | 0981a26 | 2007-02-01 14:53:49 +0100 | [diff] [blame] | 1010 | |
| 1011 | if (!count) { |
| 1012 | i->empty = 1; |
| 1013 | return -EINVAL; |
| 1014 | } |
Clemens Ladisch | b1ddaf6 | 2009-08-25 08:15:41 +0200 | [diff] [blame] | 1015 | snd_interval_any(&list_range); |
| 1016 | list_range.min = UINT_MAX; |
| 1017 | list_range.max = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | for (k = 0; k < count; k++) { |
| 1019 | if (mask && !(mask & (1 << k))) |
| 1020 | continue; |
Clemens Ladisch | b1ddaf6 | 2009-08-25 08:15:41 +0200 | [diff] [blame] | 1021 | if (!snd_interval_test(i, list[k])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | continue; |
Clemens Ladisch | b1ddaf6 | 2009-08-25 08:15:41 +0200 | [diff] [blame] | 1023 | list_range.min = min(list_range.min, list[k]); |
| 1024 | list_range.max = max(list_range.max, list[k]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |
Clemens Ladisch | b1ddaf6 | 2009-08-25 08:15:41 +0200 | [diff] [blame] | 1026 | return snd_interval_refine(i, &list_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1029 | EXPORT_SYMBOL(snd_interval_list); |
| 1030 | |
Peter Rosin | f66f898 | 2015-01-28 15:16:06 +0100 | [diff] [blame] | 1031 | /** |
| 1032 | * snd_interval_ranges - refine the interval value from the list of ranges |
| 1033 | * @i: the interval value to refine |
| 1034 | * @count: the number of elements in the list of ranges |
| 1035 | * @ranges: the ranges list |
| 1036 | * @mask: the bit-mask to evaluate |
| 1037 | * |
| 1038 | * Refines the interval value from the list of ranges. |
| 1039 | * When mask is non-zero, only the elements corresponding to bit 1 are |
| 1040 | * evaluated. |
| 1041 | * |
| 1042 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 1043 | * negative error code. |
| 1044 | */ |
| 1045 | int snd_interval_ranges(struct snd_interval *i, unsigned int count, |
| 1046 | const struct snd_interval *ranges, unsigned int mask) |
| 1047 | { |
| 1048 | unsigned int k; |
| 1049 | struct snd_interval range_union; |
| 1050 | struct snd_interval range; |
| 1051 | |
| 1052 | if (!count) { |
| 1053 | snd_interval_none(i); |
| 1054 | return -EINVAL; |
| 1055 | } |
| 1056 | snd_interval_any(&range_union); |
| 1057 | range_union.min = UINT_MAX; |
| 1058 | range_union.max = 0; |
| 1059 | for (k = 0; k < count; k++) { |
| 1060 | if (mask && !(mask & (1 << k))) |
| 1061 | continue; |
| 1062 | snd_interval_copy(&range, &ranges[k]); |
| 1063 | if (snd_interval_refine(&range, i) < 0) |
| 1064 | continue; |
| 1065 | if (snd_interval_empty(&range)) |
| 1066 | continue; |
| 1067 | |
| 1068 | if (range.min < range_union.min) { |
| 1069 | range_union.min = range.min; |
| 1070 | range_union.openmin = 1; |
| 1071 | } |
| 1072 | if (range.min == range_union.min && !range.openmin) |
| 1073 | range_union.openmin = 0; |
| 1074 | if (range.max > range_union.max) { |
| 1075 | range_union.max = range.max; |
| 1076 | range_union.openmax = 1; |
| 1077 | } |
| 1078 | if (range.max == range_union.max && !range.openmax) |
| 1079 | range_union.openmax = 0; |
| 1080 | } |
| 1081 | return snd_interval_refine(i, &range_union); |
| 1082 | } |
| 1083 | EXPORT_SYMBOL(snd_interval_ranges); |
| 1084 | |
Clemens Ladisch | 0f519b6 | 2014-09-07 21:43:07 +0200 | [diff] [blame] | 1085 | static int snd_interval_step(struct snd_interval *i, unsigned int step) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | { |
| 1087 | unsigned int n; |
| 1088 | int changed = 0; |
Clemens Ladisch | 0f519b6 | 2014-09-07 21:43:07 +0200 | [diff] [blame] | 1089 | n = i->min % step; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | if (n != 0 || i->openmin) { |
| 1091 | i->min += step - n; |
Clemens Ladisch | df1e471 | 2014-09-07 21:43:41 +0200 | [diff] [blame] | 1092 | i->openmin = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | changed = 1; |
| 1094 | } |
Clemens Ladisch | 0f519b6 | 2014-09-07 21:43:07 +0200 | [diff] [blame] | 1095 | n = i->max % step; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | if (n != 0 || i->openmax) { |
| 1097 | i->max -= n; |
Clemens Ladisch | df1e471 | 2014-09-07 21:43:41 +0200 | [diff] [blame] | 1098 | i->openmax = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | changed = 1; |
| 1100 | } |
| 1101 | if (snd_interval_checkempty(i)) { |
| 1102 | i->empty = 1; |
| 1103 | return -EINVAL; |
| 1104 | } |
| 1105 | return changed; |
| 1106 | } |
| 1107 | |
| 1108 | /* Info constraints helpers */ |
| 1109 | |
| 1110 | /** |
| 1111 | * snd_pcm_hw_rule_add - add the hw-constraint rule |
| 1112 | * @runtime: the pcm runtime instance |
| 1113 | * @cond: condition bits |
| 1114 | * @var: the variable to evaluate |
| 1115 | * @func: the evaluation function |
| 1116 | * @private: the private data pointer passed to function |
| 1117 | * @dep: the dependent variables |
| 1118 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1119 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1121 | int snd_pcm_hw_rule_add(struct snd_pcm_runtime *runtime, unsigned int cond, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | int var, |
| 1123 | snd_pcm_hw_rule_func_t func, void *private, |
| 1124 | int dep, ...) |
| 1125 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1126 | struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints; |
| 1127 | struct snd_pcm_hw_rule *c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | unsigned int k; |
| 1129 | va_list args; |
| 1130 | va_start(args, dep); |
| 1131 | if (constrs->rules_num >= constrs->rules_all) { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1132 | struct snd_pcm_hw_rule *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | unsigned int new_rules = constrs->rules_all + 16; |
| 1134 | new = kcalloc(new_rules, sizeof(*c), GFP_KERNEL); |
Jesper Juhl | 87a1c8a | 2010-12-21 00:03:17 +0100 | [diff] [blame] | 1135 | if (!new) { |
| 1136 | va_end(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | return -ENOMEM; |
Jesper Juhl | 87a1c8a | 2010-12-21 00:03:17 +0100 | [diff] [blame] | 1138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | if (constrs->rules) { |
| 1140 | memcpy(new, constrs->rules, |
| 1141 | constrs->rules_num * sizeof(*c)); |
| 1142 | kfree(constrs->rules); |
| 1143 | } |
| 1144 | constrs->rules = new; |
| 1145 | constrs->rules_all = new_rules; |
| 1146 | } |
| 1147 | c = &constrs->rules[constrs->rules_num]; |
| 1148 | c->cond = cond; |
| 1149 | c->func = func; |
| 1150 | c->var = var; |
| 1151 | c->private = private; |
| 1152 | k = 0; |
| 1153 | while (1) { |
Jesper Juhl | 87a1c8a | 2010-12-21 00:03:17 +0100 | [diff] [blame] | 1154 | if (snd_BUG_ON(k >= ARRAY_SIZE(c->deps))) { |
| 1155 | va_end(args); |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 1156 | return -EINVAL; |
Jesper Juhl | 87a1c8a | 2010-12-21 00:03:17 +0100 | [diff] [blame] | 1157 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | c->deps[k++] = dep; |
| 1159 | if (dep < 0) |
| 1160 | break; |
| 1161 | dep = va_arg(args, int); |
| 1162 | } |
| 1163 | constrs->rules_num++; |
| 1164 | va_end(args); |
| 1165 | return 0; |
Jesper Juhl | 87a1c8a | 2010-12-21 00:03:17 +0100 | [diff] [blame] | 1166 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1168 | EXPORT_SYMBOL(snd_pcm_hw_rule_add); |
| 1169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1171 | * snd_pcm_hw_constraint_mask - apply the given bitmap mask constraint |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1172 | * @runtime: PCM runtime instance |
| 1173 | * @var: hw_params variable to apply the mask |
| 1174 | * @mask: the bitmap mask |
| 1175 | * |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1176 | * Apply the constraint of the given bitmap mask to a 32-bit mask parameter. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1177 | * |
| 1178 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1180 | int snd_pcm_hw_constraint_mask(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | u_int32_t mask) |
| 1182 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1183 | struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints; |
| 1184 | struct snd_mask *maskp = constrs_mask(constrs, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | *maskp->bits &= mask; |
| 1186 | memset(maskp->bits + 1, 0, (SNDRV_MASK_MAX-32) / 8); /* clear rest */ |
| 1187 | if (*maskp->bits == 0) |
| 1188 | return -EINVAL; |
| 1189 | return 0; |
| 1190 | } |
| 1191 | |
| 1192 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1193 | * snd_pcm_hw_constraint_mask64 - apply the given bitmap mask constraint |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1194 | * @runtime: PCM runtime instance |
| 1195 | * @var: hw_params variable to apply the mask |
| 1196 | * @mask: the 64bit bitmap mask |
| 1197 | * |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1198 | * Apply the constraint of the given bitmap mask to a 64-bit mask parameter. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1199 | * |
| 1200 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1202 | int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | u_int64_t mask) |
| 1204 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1205 | struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints; |
| 1206 | struct snd_mask *maskp = constrs_mask(constrs, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | maskp->bits[0] &= (u_int32_t)mask; |
| 1208 | maskp->bits[1] &= (u_int32_t)(mask >> 32); |
| 1209 | memset(maskp->bits + 2, 0, (SNDRV_MASK_MAX-64) / 8); /* clear rest */ |
| 1210 | if (! maskp->bits[0] && ! maskp->bits[1]) |
| 1211 | return -EINVAL; |
| 1212 | return 0; |
| 1213 | } |
Mark Brown | 63a5d4c | 2014-02-20 12:13:52 +0900 | [diff] [blame] | 1214 | EXPORT_SYMBOL(snd_pcm_hw_constraint_mask64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
| 1216 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1217 | * snd_pcm_hw_constraint_integer - apply an integer constraint to an interval |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1218 | * @runtime: PCM runtime instance |
| 1219 | * @var: hw_params variable to apply the integer constraint |
| 1220 | * |
| 1221 | * Apply the constraint of integer to an interval parameter. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1222 | * |
| 1223 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 1224 | * negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1226 | int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1228 | struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | return snd_interval_setinteger(constrs_interval(constrs, var)); |
| 1230 | } |
| 1231 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1232 | EXPORT_SYMBOL(snd_pcm_hw_constraint_integer); |
| 1233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1235 | * snd_pcm_hw_constraint_minmax - apply a min/max range constraint to an interval |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1236 | * @runtime: PCM runtime instance |
| 1237 | * @var: hw_params variable to apply the range |
| 1238 | * @min: the minimal value |
| 1239 | * @max: the maximal value |
| 1240 | * |
| 1241 | * Apply the min/max range constraint to an interval parameter. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1242 | * |
| 1243 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 1244 | * negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1246 | int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | unsigned int min, unsigned int max) |
| 1248 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1249 | struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints; |
| 1250 | struct snd_interval t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | t.min = min; |
| 1252 | t.max = max; |
| 1253 | t.openmin = t.openmax = 0; |
| 1254 | t.integer = 0; |
| 1255 | return snd_interval_refine(constrs_interval(constrs, var), &t); |
| 1256 | } |
| 1257 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1258 | EXPORT_SYMBOL(snd_pcm_hw_constraint_minmax); |
| 1259 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1260 | static int snd_pcm_hw_rule_list(struct snd_pcm_hw_params *params, |
| 1261 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1263 | struct snd_pcm_hw_constraint_list *list = rule->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | return snd_interval_list(hw_param_interval(params, rule->var), list->count, list->list, list->mask); |
| 1265 | } |
| 1266 | |
| 1267 | |
| 1268 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1269 | * snd_pcm_hw_constraint_list - apply a list of constraints to a parameter |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1270 | * @runtime: PCM runtime instance |
| 1271 | * @cond: condition bits |
| 1272 | * @var: hw_params variable to apply the list constraint |
| 1273 | * @l: list |
| 1274 | * |
| 1275 | * Apply the list of constraints to an interval parameter. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1276 | * |
| 1277 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1279 | int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | unsigned int cond, |
| 1281 | snd_pcm_hw_param_t var, |
Mark Brown | 1464189 | 2012-07-05 12:15:01 +0100 | [diff] [blame] | 1282 | const struct snd_pcm_hw_constraint_list *l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | { |
| 1284 | return snd_pcm_hw_rule_add(runtime, cond, var, |
Mark Brown | 1464189 | 2012-07-05 12:15:01 +0100 | [diff] [blame] | 1285 | snd_pcm_hw_rule_list, (void *)l, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | var, -1); |
| 1287 | } |
| 1288 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1289 | EXPORT_SYMBOL(snd_pcm_hw_constraint_list); |
| 1290 | |
Peter Rosin | f66f898 | 2015-01-28 15:16:06 +0100 | [diff] [blame] | 1291 | static int snd_pcm_hw_rule_ranges(struct snd_pcm_hw_params *params, |
| 1292 | struct snd_pcm_hw_rule *rule) |
| 1293 | { |
| 1294 | struct snd_pcm_hw_constraint_ranges *r = rule->private; |
| 1295 | return snd_interval_ranges(hw_param_interval(params, rule->var), |
| 1296 | r->count, r->ranges, r->mask); |
| 1297 | } |
| 1298 | |
| 1299 | |
| 1300 | /** |
| 1301 | * snd_pcm_hw_constraint_ranges - apply list of range constraints to a parameter |
| 1302 | * @runtime: PCM runtime instance |
| 1303 | * @cond: condition bits |
| 1304 | * @var: hw_params variable to apply the list of range constraints |
| 1305 | * @r: ranges |
| 1306 | * |
| 1307 | * Apply the list of range constraints to an interval parameter. |
| 1308 | * |
| 1309 | * Return: Zero if successful, or a negative error code on failure. |
| 1310 | */ |
| 1311 | int snd_pcm_hw_constraint_ranges(struct snd_pcm_runtime *runtime, |
| 1312 | unsigned int cond, |
| 1313 | snd_pcm_hw_param_t var, |
| 1314 | const struct snd_pcm_hw_constraint_ranges *r) |
| 1315 | { |
| 1316 | return snd_pcm_hw_rule_add(runtime, cond, var, |
| 1317 | snd_pcm_hw_rule_ranges, (void *)r, |
| 1318 | var, -1); |
| 1319 | } |
| 1320 | EXPORT_SYMBOL(snd_pcm_hw_constraint_ranges); |
| 1321 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1322 | static int snd_pcm_hw_rule_ratnums(struct snd_pcm_hw_params *params, |
| 1323 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | { |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 1325 | const struct snd_pcm_hw_constraint_ratnums *r = rule->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | unsigned int num = 0, den = 0; |
| 1327 | int err; |
| 1328 | err = snd_interval_ratnum(hw_param_interval(params, rule->var), |
| 1329 | r->nrats, r->rats, &num, &den); |
| 1330 | if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) { |
| 1331 | params->rate_num = num; |
| 1332 | params->rate_den = den; |
| 1333 | } |
| 1334 | return err; |
| 1335 | } |
| 1336 | |
| 1337 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1338 | * snd_pcm_hw_constraint_ratnums - apply ratnums constraint to a parameter |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1339 | * @runtime: PCM runtime instance |
| 1340 | * @cond: condition bits |
| 1341 | * @var: hw_params variable to apply the ratnums constraint |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1342 | * @r: struct snd_ratnums constriants |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1343 | * |
| 1344 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1346 | int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | unsigned int cond, |
| 1348 | snd_pcm_hw_param_t var, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 1349 | const struct snd_pcm_hw_constraint_ratnums *r) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | { |
| 1351 | return snd_pcm_hw_rule_add(runtime, cond, var, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 1352 | snd_pcm_hw_rule_ratnums, (void *)r, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | var, -1); |
| 1354 | } |
| 1355 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1356 | EXPORT_SYMBOL(snd_pcm_hw_constraint_ratnums); |
| 1357 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1358 | static int snd_pcm_hw_rule_ratdens(struct snd_pcm_hw_params *params, |
| 1359 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | { |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 1361 | const struct snd_pcm_hw_constraint_ratdens *r = rule->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | unsigned int num = 0, den = 0; |
| 1363 | int err = snd_interval_ratden(hw_param_interval(params, rule->var), |
| 1364 | r->nrats, r->rats, &num, &den); |
| 1365 | if (err >= 0 && den && rule->var == SNDRV_PCM_HW_PARAM_RATE) { |
| 1366 | params->rate_num = num; |
| 1367 | params->rate_den = den; |
| 1368 | } |
| 1369 | return err; |
| 1370 | } |
| 1371 | |
| 1372 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1373 | * snd_pcm_hw_constraint_ratdens - apply ratdens constraint to a parameter |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1374 | * @runtime: PCM runtime instance |
| 1375 | * @cond: condition bits |
| 1376 | * @var: hw_params variable to apply the ratdens constraint |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1377 | * @r: struct snd_ratdens constriants |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1378 | * |
| 1379 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1381 | int snd_pcm_hw_constraint_ratdens(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | unsigned int cond, |
| 1383 | snd_pcm_hw_param_t var, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 1384 | const struct snd_pcm_hw_constraint_ratdens *r) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | { |
| 1386 | return snd_pcm_hw_rule_add(runtime, cond, var, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 1387 | snd_pcm_hw_rule_ratdens, (void *)r, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | var, -1); |
| 1389 | } |
| 1390 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1391 | EXPORT_SYMBOL(snd_pcm_hw_constraint_ratdens); |
| 1392 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1393 | static int snd_pcm_hw_rule_msbits(struct snd_pcm_hw_params *params, |
| 1394 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | { |
| 1396 | unsigned int l = (unsigned long) rule->private; |
| 1397 | int width = l & 0xffff; |
| 1398 | unsigned int msbits = l >> 16; |
Takashi Sakamoto | b55f9fd | 2017-05-17 08:48:20 +0900 | [diff] [blame] | 1399 | const struct snd_interval *i = |
| 1400 | hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS); |
Lars-Peter Clausen | 8ef9df5 | 2014-12-29 18:43:37 +0100 | [diff] [blame] | 1401 | |
| 1402 | if (!snd_interval_single(i)) |
| 1403 | return 0; |
| 1404 | |
| 1405 | if ((snd_interval_value(i) == width) || |
| 1406 | (width == 0 && snd_interval_value(i) > msbits)) |
Lars-Peter Clausen | 19f52fa | 2014-12-29 18:43:36 +0100 | [diff] [blame] | 1407 | params->msbits = min_not_zero(params->msbits, msbits); |
Lars-Peter Clausen | 8ef9df5 | 2014-12-29 18:43:37 +0100 | [diff] [blame] | 1408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | return 0; |
| 1410 | } |
| 1411 | |
| 1412 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1413 | * snd_pcm_hw_constraint_msbits - add a hw constraint msbits rule |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1414 | * @runtime: PCM runtime instance |
| 1415 | * @cond: condition bits |
| 1416 | * @width: sample bits width |
| 1417 | * @msbits: msbits width |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1418 | * |
Lars-Peter Clausen | 8ef9df5 | 2014-12-29 18:43:37 +0100 | [diff] [blame] | 1419 | * This constraint will set the number of most significant bits (msbits) if a |
| 1420 | * sample format with the specified width has been select. If width is set to 0 |
| 1421 | * the msbits will be set for any sample format with a width larger than the |
| 1422 | * specified msbits. |
| 1423 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1424 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1426 | int snd_pcm_hw_constraint_msbits(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | unsigned int cond, |
| 1428 | unsigned int width, |
| 1429 | unsigned int msbits) |
| 1430 | { |
| 1431 | unsigned long l = (msbits << 16) | width; |
| 1432 | return snd_pcm_hw_rule_add(runtime, cond, -1, |
| 1433 | snd_pcm_hw_rule_msbits, |
| 1434 | (void*) l, |
| 1435 | SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1); |
| 1436 | } |
| 1437 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1438 | EXPORT_SYMBOL(snd_pcm_hw_constraint_msbits); |
| 1439 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1440 | static int snd_pcm_hw_rule_step(struct snd_pcm_hw_params *params, |
| 1441 | struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | { |
| 1443 | unsigned long step = (unsigned long) rule->private; |
Clemens Ladisch | 0f519b6 | 2014-09-07 21:43:07 +0200 | [diff] [blame] | 1444 | return snd_interval_step(hw_param_interval(params, rule->var), step); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | } |
| 1446 | |
| 1447 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1448 | * snd_pcm_hw_constraint_step - add a hw constraint step rule |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1449 | * @runtime: PCM runtime instance |
| 1450 | * @cond: condition bits |
| 1451 | * @var: hw_params variable to apply the step constraint |
| 1452 | * @step: step size |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1453 | * |
| 1454 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1456 | int snd_pcm_hw_constraint_step(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | unsigned int cond, |
| 1458 | snd_pcm_hw_param_t var, |
| 1459 | unsigned long step) |
| 1460 | { |
| 1461 | return snd_pcm_hw_rule_add(runtime, cond, var, |
| 1462 | snd_pcm_hw_rule_step, (void *) step, |
| 1463 | var, -1); |
| 1464 | } |
| 1465 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1466 | EXPORT_SYMBOL(snd_pcm_hw_constraint_step); |
| 1467 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1468 | static int snd_pcm_hw_rule_pow2(struct snd_pcm_hw_params *params, struct snd_pcm_hw_rule *rule) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | { |
Marcin Åšlusarz | 67c3931 | 2007-12-14 12:53:21 +0100 | [diff] [blame] | 1470 | static unsigned int pow2_sizes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | 1<<0, 1<<1, 1<<2, 1<<3, 1<<4, 1<<5, 1<<6, 1<<7, |
| 1472 | 1<<8, 1<<9, 1<<10, 1<<11, 1<<12, 1<<13, 1<<14, 1<<15, |
| 1473 | 1<<16, 1<<17, 1<<18, 1<<19, 1<<20, 1<<21, 1<<22, 1<<23, |
| 1474 | 1<<24, 1<<25, 1<<26, 1<<27, 1<<28, 1<<29, 1<<30 |
| 1475 | }; |
| 1476 | return snd_interval_list(hw_param_interval(params, rule->var), |
| 1477 | ARRAY_SIZE(pow2_sizes), pow2_sizes, 0); |
| 1478 | } |
| 1479 | |
| 1480 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1481 | * snd_pcm_hw_constraint_pow2 - add a hw constraint power-of-2 rule |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1482 | * @runtime: PCM runtime instance |
| 1483 | * @cond: condition bits |
| 1484 | * @var: hw_params variable to apply the power-of-2 constraint |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1485 | * |
| 1486 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1488 | int snd_pcm_hw_constraint_pow2(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | unsigned int cond, |
| 1490 | snd_pcm_hw_param_t var) |
| 1491 | { |
| 1492 | return snd_pcm_hw_rule_add(runtime, cond, var, |
| 1493 | snd_pcm_hw_rule_pow2, NULL, |
| 1494 | var, -1); |
| 1495 | } |
| 1496 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1497 | EXPORT_SYMBOL(snd_pcm_hw_constraint_pow2); |
| 1498 | |
Clemens Ladisch | d5b702a | 2011-09-16 23:03:02 +0200 | [diff] [blame] | 1499 | static int snd_pcm_hw_rule_noresample_func(struct snd_pcm_hw_params *params, |
| 1500 | struct snd_pcm_hw_rule *rule) |
| 1501 | { |
| 1502 | unsigned int base_rate = (unsigned int)(uintptr_t)rule->private; |
| 1503 | struct snd_interval *rate; |
| 1504 | |
| 1505 | rate = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE); |
| 1506 | return snd_interval_list(rate, 1, &base_rate, 0); |
| 1507 | } |
| 1508 | |
| 1509 | /** |
| 1510 | * snd_pcm_hw_rule_noresample - add a rule to allow disabling hw resampling |
| 1511 | * @runtime: PCM runtime instance |
| 1512 | * @base_rate: the rate at which the hardware does not resample |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1513 | * |
| 1514 | * Return: Zero if successful, or a negative error code on failure. |
Clemens Ladisch | d5b702a | 2011-09-16 23:03:02 +0200 | [diff] [blame] | 1515 | */ |
| 1516 | int snd_pcm_hw_rule_noresample(struct snd_pcm_runtime *runtime, |
| 1517 | unsigned int base_rate) |
| 1518 | { |
| 1519 | return snd_pcm_hw_rule_add(runtime, SNDRV_PCM_HW_PARAMS_NORESAMPLE, |
| 1520 | SNDRV_PCM_HW_PARAM_RATE, |
| 1521 | snd_pcm_hw_rule_noresample_func, |
| 1522 | (void *)(uintptr_t)base_rate, |
| 1523 | SNDRV_PCM_HW_PARAM_RATE, -1); |
| 1524 | } |
| 1525 | EXPORT_SYMBOL(snd_pcm_hw_rule_noresample); |
| 1526 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1527 | static void _snd_pcm_hw_param_any(struct snd_pcm_hw_params *params, |
Adrian Bunk | 123992f | 2005-05-18 18:02:04 +0200 | [diff] [blame] | 1528 | snd_pcm_hw_param_t var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | { |
| 1530 | if (hw_is_mask(var)) { |
| 1531 | snd_mask_any(hw_param_mask(params, var)); |
| 1532 | params->cmask |= 1 << var; |
| 1533 | params->rmask |= 1 << var; |
| 1534 | return; |
| 1535 | } |
| 1536 | if (hw_is_interval(var)) { |
| 1537 | snd_interval_any(hw_param_interval(params, var)); |
| 1538 | params->cmask |= 1 << var; |
| 1539 | params->rmask |= 1 << var; |
| 1540 | return; |
| 1541 | } |
| 1542 | snd_BUG(); |
| 1543 | } |
| 1544 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1545 | void _snd_pcm_hw_params_any(struct snd_pcm_hw_params *params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | { |
| 1547 | unsigned int k; |
| 1548 | memset(params, 0, sizeof(*params)); |
| 1549 | for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) |
| 1550 | _snd_pcm_hw_param_any(params, k); |
| 1551 | for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) |
| 1552 | _snd_pcm_hw_param_any(params, k); |
| 1553 | params->info = ~0U; |
| 1554 | } |
| 1555 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1556 | EXPORT_SYMBOL(_snd_pcm_hw_params_any); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | |
| 1558 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1559 | * snd_pcm_hw_param_value - return @params field @var value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1560 | * @params: the hw_params instance |
| 1561 | * @var: parameter to retrieve |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1562 | * @dir: pointer to the direction (-1,0,1) or %NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1564 | * Return: The value for field @var if it's fixed in configuration space |
| 1565 | * defined by @params. -%EINVAL otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | */ |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1567 | int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params, |
| 1568 | snd_pcm_hw_param_t var, int *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | { |
| 1570 | if (hw_is_mask(var)) { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1571 | const struct snd_mask *mask = hw_param_mask_c(params, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | if (!snd_mask_single(mask)) |
| 1573 | return -EINVAL; |
| 1574 | if (dir) |
| 1575 | *dir = 0; |
| 1576 | return snd_mask_value(mask); |
| 1577 | } |
| 1578 | if (hw_is_interval(var)) { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1579 | const struct snd_interval *i = hw_param_interval_c(params, var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | if (!snd_interval_single(i)) |
| 1581 | return -EINVAL; |
| 1582 | if (dir) |
| 1583 | *dir = i->openmin; |
| 1584 | return snd_interval_value(i); |
| 1585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | return -EINVAL; |
| 1587 | } |
| 1588 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1589 | EXPORT_SYMBOL(snd_pcm_hw_param_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1591 | void _snd_pcm_hw_param_setempty(struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | snd_pcm_hw_param_t var) |
| 1593 | { |
| 1594 | if (hw_is_mask(var)) { |
| 1595 | snd_mask_none(hw_param_mask(params, var)); |
| 1596 | params->cmask |= 1 << var; |
| 1597 | params->rmask |= 1 << var; |
| 1598 | } else if (hw_is_interval(var)) { |
| 1599 | snd_interval_none(hw_param_interval(params, var)); |
| 1600 | params->cmask |= 1 << var; |
| 1601 | params->rmask |= 1 << var; |
| 1602 | } else { |
| 1603 | snd_BUG(); |
| 1604 | } |
| 1605 | } |
| 1606 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1607 | EXPORT_SYMBOL(_snd_pcm_hw_param_setempty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1609 | static int _snd_pcm_hw_param_first(struct snd_pcm_hw_params *params, |
Adrian Bunk | 123992f | 2005-05-18 18:02:04 +0200 | [diff] [blame] | 1610 | snd_pcm_hw_param_t var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | { |
| 1612 | int changed; |
| 1613 | if (hw_is_mask(var)) |
| 1614 | changed = snd_mask_refine_first(hw_param_mask(params, var)); |
| 1615 | else if (hw_is_interval(var)) |
| 1616 | changed = snd_interval_refine_first(hw_param_interval(params, var)); |
Takashi Iwai | 2f4ca8e | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1617 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | if (changed) { |
| 1620 | params->cmask |= 1 << var; |
| 1621 | params->rmask |= 1 << var; |
| 1622 | } |
| 1623 | return changed; |
| 1624 | } |
| 1625 | |
| 1626 | |
| 1627 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1628 | * snd_pcm_hw_param_first - refine config space and return minimum value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1629 | * @pcm: PCM instance |
| 1630 | * @params: the hw_params instance |
| 1631 | * @var: parameter to retrieve |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1632 | * @dir: pointer to the direction (-1,0,1) or %NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | * |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1634 | * Inside configuration space defined by @params remove from @var all |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | * values > minimum. Reduce configuration space accordingly. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1636 | * |
| 1637 | * Return: The minimum, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | */ |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1639 | int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm, |
| 1640 | struct snd_pcm_hw_params *params, |
| 1641 | snd_pcm_hw_param_t var, int *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | { |
| 1643 | int changed = _snd_pcm_hw_param_first(params, var); |
| 1644 | if (changed < 0) |
| 1645 | return changed; |
| 1646 | if (params->rmask) { |
| 1647 | int err = snd_pcm_hw_refine(pcm, params); |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 1648 | if (snd_BUG_ON(err < 0)) |
| 1649 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | } |
| 1651 | return snd_pcm_hw_param_value(params, var, dir); |
| 1652 | } |
| 1653 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1654 | EXPORT_SYMBOL(snd_pcm_hw_param_first); |
| 1655 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1656 | static int _snd_pcm_hw_param_last(struct snd_pcm_hw_params *params, |
Adrian Bunk | 123992f | 2005-05-18 18:02:04 +0200 | [diff] [blame] | 1657 | snd_pcm_hw_param_t var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | { |
| 1659 | int changed; |
| 1660 | if (hw_is_mask(var)) |
| 1661 | changed = snd_mask_refine_last(hw_param_mask(params, var)); |
| 1662 | else if (hw_is_interval(var)) |
| 1663 | changed = snd_interval_refine_last(hw_param_interval(params, var)); |
Takashi Iwai | 2f4ca8e | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1664 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | if (changed) { |
| 1667 | params->cmask |= 1 << var; |
| 1668 | params->rmask |= 1 << var; |
| 1669 | } |
| 1670 | return changed; |
| 1671 | } |
| 1672 | |
| 1673 | |
| 1674 | /** |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1675 | * snd_pcm_hw_param_last - refine config space and return maximum value |
Takashi Iwai | df8db93 | 2005-09-07 13:38:19 +0200 | [diff] [blame] | 1676 | * @pcm: PCM instance |
| 1677 | * @params: the hw_params instance |
| 1678 | * @var: parameter to retrieve |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1679 | * @dir: pointer to the direction (-1,0,1) or %NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | * |
Randy Dunlap | 1c85cc6 | 2008-10-15 14:38:40 -0700 | [diff] [blame] | 1681 | * Inside configuration space defined by @params remove from @var all |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | * values < maximum. Reduce configuration space accordingly. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1683 | * |
| 1684 | * Return: The maximum, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | */ |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1686 | int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm, |
| 1687 | struct snd_pcm_hw_params *params, |
| 1688 | snd_pcm_hw_param_t var, int *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | { |
| 1690 | int changed = _snd_pcm_hw_param_last(params, var); |
| 1691 | if (changed < 0) |
| 1692 | return changed; |
| 1693 | if (params->rmask) { |
| 1694 | int err = snd_pcm_hw_refine(pcm, params); |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 1695 | if (snd_BUG_ON(err < 0)) |
| 1696 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | } |
| 1698 | return snd_pcm_hw_param_value(params, var, dir); |
| 1699 | } |
| 1700 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1701 | EXPORT_SYMBOL(snd_pcm_hw_param_last); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1703 | static int snd_pcm_lib_ioctl_reset(struct snd_pcm_substream *substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | void *arg) |
| 1705 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1706 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | unsigned long flags; |
| 1708 | snd_pcm_stream_lock_irqsave(substream, flags); |
| 1709 | if (snd_pcm_running(substream) && |
| 1710 | snd_pcm_update_hw_ptr(substream) >= 0) |
| 1711 | runtime->status->hw_ptr %= runtime->buffer_size; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 1712 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | runtime->status->hw_ptr = 0; |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 1714 | runtime->hw_ptr_wrap = 0; |
| 1715 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | snd_pcm_stream_unlock_irqrestore(substream, flags); |
| 1717 | return 0; |
| 1718 | } |
| 1719 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1720 | static int snd_pcm_lib_ioctl_channel_info(struct snd_pcm_substream *substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | void *arg) |
| 1722 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1723 | struct snd_pcm_channel_info *info = arg; |
| 1724 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | int width; |
| 1726 | if (!(runtime->info & SNDRV_PCM_INFO_MMAP)) { |
| 1727 | info->offset = -1; |
| 1728 | return 0; |
| 1729 | } |
| 1730 | width = snd_pcm_format_physical_width(runtime->format); |
| 1731 | if (width < 0) |
| 1732 | return width; |
| 1733 | info->offset = 0; |
| 1734 | switch (runtime->access) { |
| 1735 | case SNDRV_PCM_ACCESS_MMAP_INTERLEAVED: |
| 1736 | case SNDRV_PCM_ACCESS_RW_INTERLEAVED: |
| 1737 | info->first = info->channel * width; |
| 1738 | info->step = runtime->channels * width; |
| 1739 | break; |
| 1740 | case SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED: |
| 1741 | case SNDRV_PCM_ACCESS_RW_NONINTERLEAVED: |
| 1742 | { |
| 1743 | size_t size = runtime->dma_bytes / runtime->channels; |
| 1744 | info->first = info->channel * size * 8; |
| 1745 | info->step = width; |
| 1746 | break; |
| 1747 | } |
| 1748 | default: |
| 1749 | snd_BUG(); |
| 1750 | break; |
| 1751 | } |
| 1752 | return 0; |
| 1753 | } |
| 1754 | |
Jaroslav Kysela | 8bea869 | 2009-04-27 09:44:40 +0200 | [diff] [blame] | 1755 | static int snd_pcm_lib_ioctl_fifo_size(struct snd_pcm_substream *substream, |
| 1756 | void *arg) |
| 1757 | { |
| 1758 | struct snd_pcm_hw_params *params = arg; |
| 1759 | snd_pcm_format_t format; |
Clemens Ladisch | a9960e6 | 2014-09-21 22:50:57 +0200 | [diff] [blame] | 1760 | int channels; |
| 1761 | ssize_t frame_size; |
Jaroslav Kysela | 8bea869 | 2009-04-27 09:44:40 +0200 | [diff] [blame] | 1762 | |
| 1763 | params->fifo_size = substream->runtime->hw.fifo_size; |
| 1764 | if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_FIFO_IN_FRAMES)) { |
| 1765 | format = params_format(params); |
| 1766 | channels = params_channels(params); |
Clemens Ladisch | a9960e6 | 2014-09-21 22:50:57 +0200 | [diff] [blame] | 1767 | frame_size = snd_pcm_format_size(format, channels); |
| 1768 | if (frame_size > 0) |
| 1769 | params->fifo_size /= (unsigned)frame_size; |
Jaroslav Kysela | 8bea869 | 2009-04-27 09:44:40 +0200 | [diff] [blame] | 1770 | } |
| 1771 | return 0; |
| 1772 | } |
| 1773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | /** |
| 1775 | * snd_pcm_lib_ioctl - a generic PCM ioctl callback |
| 1776 | * @substream: the pcm substream instance |
| 1777 | * @cmd: ioctl command |
| 1778 | * @arg: ioctl argument |
| 1779 | * |
| 1780 | * Processes the generic ioctl commands for PCM. |
| 1781 | * Can be passed as the ioctl callback for PCM ops. |
| 1782 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1783 | * Return: Zero if successful, or a negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1785 | int snd_pcm_lib_ioctl(struct snd_pcm_substream *substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | unsigned int cmd, void *arg) |
| 1787 | { |
| 1788 | switch (cmd) { |
| 1789 | case SNDRV_PCM_IOCTL1_INFO: |
| 1790 | return 0; |
| 1791 | case SNDRV_PCM_IOCTL1_RESET: |
| 1792 | return snd_pcm_lib_ioctl_reset(substream, arg); |
| 1793 | case SNDRV_PCM_IOCTL1_CHANNEL_INFO: |
| 1794 | return snd_pcm_lib_ioctl_channel_info(substream, arg); |
Jaroslav Kysela | 8bea869 | 2009-04-27 09:44:40 +0200 | [diff] [blame] | 1795 | case SNDRV_PCM_IOCTL1_FIFO_SIZE: |
| 1796 | return snd_pcm_lib_ioctl_fifo_size(substream, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | } |
| 1798 | return -ENXIO; |
| 1799 | } |
| 1800 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1801 | EXPORT_SYMBOL(snd_pcm_lib_ioctl); |
| 1802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | /** |
| 1804 | * snd_pcm_period_elapsed - update the pcm status for the next period |
| 1805 | * @substream: the pcm substream instance |
| 1806 | * |
| 1807 | * This function is called from the interrupt handler when the |
| 1808 | * PCM has processed the period size. It will update the current |
Takashi Iwai | 31e8960 | 2008-01-08 18:09:57 +0100 | [diff] [blame] | 1809 | * pointer, wake up sleepers, etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | * |
| 1811 | * Even if more than one periods have elapsed since the last call, you |
| 1812 | * have to call this only once. |
| 1813 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1814 | void snd_pcm_period_elapsed(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1816 | struct snd_pcm_runtime *runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | unsigned long flags; |
| 1818 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 1819 | if (PCM_RUNTIME_CHECK(substream)) |
| 1820 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | snd_pcm_stream_lock_irqsave(substream, flags); |
| 1824 | if (!snd_pcm_running(substream) || |
Jaroslav Kysela | f240406 | 2010-01-05 17:19:34 +0100 | [diff] [blame] | 1825 | snd_pcm_update_hw_ptr0(substream, 1) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | goto _end; |
| 1827 | |
Jie Yang | 90bbaf6 | 2015-10-16 17:57:46 +0800 | [diff] [blame] | 1828 | #ifdef CONFIG_SND_PCM_TIMER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | if (substream->timer_running) |
| 1830 | snd_timer_interrupt(substream->timer, 1); |
Jie Yang | 90bbaf6 | 2015-10-16 17:57:46 +0800 | [diff] [blame] | 1831 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | _end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | kill_fasync(&runtime->fasync, SIGIO, POLL_IN); |
Takashi Iwai | 3aa02cb | 2016-04-14 18:02:37 +0200 | [diff] [blame] | 1834 | snd_pcm_stream_unlock_irqrestore(substream, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | } |
| 1836 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 1837 | EXPORT_SYMBOL(snd_pcm_period_elapsed); |
| 1838 | |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1839 | /* |
| 1840 | * Wait until avail_min data becomes available |
| 1841 | * Returns a negative error code if any error occurs during operation. |
| 1842 | * The available space is stored on availp. When err = 0 and avail = 0 |
| 1843 | * on the capture stream, it indicates the stream is in DRAINING state. |
| 1844 | */ |
David Dillow | 5daeba3 | 2010-06-27 00:13:20 +0200 | [diff] [blame] | 1845 | static int wait_for_avail(struct snd_pcm_substream *substream, |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1846 | snd_pcm_uframes_t *availp) |
| 1847 | { |
| 1848 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 1849 | int is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
| 1850 | wait_queue_t wait; |
| 1851 | int err = 0; |
| 1852 | snd_pcm_uframes_t avail = 0; |
Takashi Iwai | f2b3614 | 2011-05-26 08:09:38 +0200 | [diff] [blame] | 1853 | long wait_time, tout; |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1854 | |
Arjan van de Ven | 763437a | 2011-09-15 08:49:25 +0200 | [diff] [blame] | 1855 | init_waitqueue_entry(&wait, current); |
| 1856 | set_current_state(TASK_INTERRUPTIBLE); |
| 1857 | add_wait_queue(&runtime->tsleep, &wait); |
| 1858 | |
Takashi Iwai | f2b3614 | 2011-05-26 08:09:38 +0200 | [diff] [blame] | 1859 | if (runtime->no_period_wakeup) |
| 1860 | wait_time = MAX_SCHEDULE_TIMEOUT; |
| 1861 | else { |
| 1862 | wait_time = 10; |
| 1863 | if (runtime->rate) { |
| 1864 | long t = runtime->period_size * 2 / runtime->rate; |
| 1865 | wait_time = max(t, wait_time); |
| 1866 | } |
| 1867 | wait_time = msecs_to_jiffies(wait_time * 1000); |
| 1868 | } |
Arjan van de Ven | 763437a | 2011-09-15 08:49:25 +0200 | [diff] [blame] | 1869 | |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1870 | for (;;) { |
| 1871 | if (signal_pending(current)) { |
| 1872 | err = -ERESTARTSYS; |
| 1873 | break; |
| 1874 | } |
Arjan van de Ven | 763437a | 2011-09-15 08:49:25 +0200 | [diff] [blame] | 1875 | |
| 1876 | /* |
| 1877 | * We need to check if space became available already |
| 1878 | * (and thus the wakeup happened already) first to close |
| 1879 | * the race of space already having become available. |
| 1880 | * This check must happen after been added to the waitqueue |
| 1881 | * and having current state be INTERRUPTIBLE. |
| 1882 | */ |
| 1883 | if (is_playback) |
| 1884 | avail = snd_pcm_playback_avail(runtime); |
| 1885 | else |
| 1886 | avail = snd_pcm_capture_avail(runtime); |
| 1887 | if (avail >= runtime->twake) |
| 1888 | break; |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1889 | snd_pcm_stream_unlock_irq(substream); |
Arjan van de Ven | 763437a | 2011-09-15 08:49:25 +0200 | [diff] [blame] | 1890 | |
| 1891 | tout = schedule_timeout(wait_time); |
| 1892 | |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1893 | snd_pcm_stream_lock_irq(substream); |
Arjan van de Ven | 763437a | 2011-09-15 08:49:25 +0200 | [diff] [blame] | 1894 | set_current_state(TASK_INTERRUPTIBLE); |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1895 | switch (runtime->status->state) { |
| 1896 | case SNDRV_PCM_STATE_SUSPENDED: |
| 1897 | err = -ESTRPIPE; |
| 1898 | goto _endloop; |
| 1899 | case SNDRV_PCM_STATE_XRUN: |
| 1900 | err = -EPIPE; |
| 1901 | goto _endloop; |
| 1902 | case SNDRV_PCM_STATE_DRAINING: |
| 1903 | if (is_playback) |
| 1904 | err = -EPIPE; |
| 1905 | else |
| 1906 | avail = 0; /* indicate draining */ |
| 1907 | goto _endloop; |
| 1908 | case SNDRV_PCM_STATE_OPEN: |
| 1909 | case SNDRV_PCM_STATE_SETUP: |
| 1910 | case SNDRV_PCM_STATE_DISCONNECTED: |
| 1911 | err = -EBADFD; |
| 1912 | goto _endloop; |
JongHo Kim | ed697e1 | 2013-12-17 23:02:24 +0900 | [diff] [blame] | 1913 | case SNDRV_PCM_STATE_PAUSED: |
| 1914 | continue; |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1915 | } |
| 1916 | if (!tout) { |
Takashi Iwai | 09e56df | 2014-02-04 18:19:48 +0100 | [diff] [blame] | 1917 | pcm_dbg(substream->pcm, |
| 1918 | "%s write error (DMA or IRQ trouble?)\n", |
| 1919 | is_playback ? "playback" : "capture"); |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1920 | err = -EIO; |
| 1921 | break; |
| 1922 | } |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1923 | } |
| 1924 | _endloop: |
Arjan van de Ven | 763437a | 2011-09-15 08:49:25 +0200 | [diff] [blame] | 1925 | set_current_state(TASK_RUNNING); |
Jaroslav Kysela | c91a988 | 2010-01-21 10:32:15 +0100 | [diff] [blame] | 1926 | remove_wait_queue(&runtime->tsleep, &wait); |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 1927 | *availp = avail; |
| 1928 | return err; |
| 1929 | } |
| 1930 | |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1931 | typedef int (*pcm_transfer_f)(struct snd_pcm_substream *substream, |
| 1932 | int channel, unsigned long hwoff, |
| 1933 | void *buf, unsigned long bytes); |
Takashi Iwai | bdc4acf | 2017-05-24 17:59:17 +0200 | [diff] [blame] | 1934 | |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1935 | typedef int (*pcm_copy_f)(struct snd_pcm_substream *, snd_pcm_uframes_t, void *, |
| 1936 | snd_pcm_uframes_t, snd_pcm_uframes_t, pcm_transfer_f); |
| 1937 | |
| 1938 | /* calculate the target DMA-buffer position to be written/read */ |
| 1939 | static void *get_dma_ptr(struct snd_pcm_runtime *runtime, |
| 1940 | int channel, unsigned long hwoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1941 | { |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1942 | return runtime->dma_area + hwoff + |
| 1943 | channel * (runtime->dma_bytes / runtime->channels); |
| 1944 | } |
| 1945 | |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 1946 | /* default copy_user ops for write; used for both interleaved and non- modes */ |
| 1947 | static int default_write_copy(struct snd_pcm_substream *substream, |
| 1948 | int channel, unsigned long hwoff, |
| 1949 | void *buf, unsigned long bytes) |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1950 | { |
| 1951 | if (copy_from_user(get_dma_ptr(substream->runtime, channel, hwoff), |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 1952 | (void __user *)buf, bytes)) |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1953 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | return 0; |
| 1955 | } |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1956 | |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 1957 | /* default copy_kernel ops for write */ |
| 1958 | static int default_write_copy_kernel(struct snd_pcm_substream *substream, |
| 1959 | int channel, unsigned long hwoff, |
| 1960 | void *buf, unsigned long bytes) |
| 1961 | { |
| 1962 | memcpy(get_dma_ptr(substream->runtime, channel, hwoff), buf, bytes); |
| 1963 | return 0; |
| 1964 | } |
| 1965 | |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1966 | /* fill silence instead of copy data; called as a transfer helper |
| 1967 | * from __snd_pcm_lib_write() or directly from noninterleaved_copy() when |
| 1968 | * a NULL buffer is passed |
| 1969 | */ |
| 1970 | static int fill_silence(struct snd_pcm_substream *substream, int channel, |
| 1971 | unsigned long hwoff, void *buf, unsigned long bytes) |
Takashi Iwai | bdc4acf | 2017-05-24 17:59:17 +0200 | [diff] [blame] | 1972 | { |
| 1973 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | bdc4acf | 2017-05-24 17:59:17 +0200 | [diff] [blame] | 1974 | |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 1975 | if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK) |
| 1976 | return 0; |
| 1977 | if (substream->ops->fill_silence) |
| 1978 | return substream->ops->fill_silence(substream, channel, |
| 1979 | hwoff, bytes); |
| 1980 | |
| 1981 | snd_pcm_format_set_silence(runtime->format, |
| 1982 | get_dma_ptr(runtime, channel, hwoff), |
| 1983 | bytes_to_samples(runtime, bytes)); |
| 1984 | return 0; |
| 1985 | } |
| 1986 | |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 1987 | /* default copy_user ops for read; used for both interleaved and non- modes */ |
| 1988 | static int default_read_copy(struct snd_pcm_substream *substream, |
| 1989 | int channel, unsigned long hwoff, |
| 1990 | void *buf, unsigned long bytes) |
| 1991 | { |
| 1992 | if (copy_to_user((void __user *)buf, |
| 1993 | get_dma_ptr(substream->runtime, channel, hwoff), |
| 1994 | bytes)) |
| 1995 | return -EFAULT; |
| 1996 | return 0; |
| 1997 | } |
| 1998 | |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 1999 | /* default copy_kernel ops for read */ |
| 2000 | static int default_read_copy_kernel(struct snd_pcm_substream *substream, |
| 2001 | int channel, unsigned long hwoff, |
| 2002 | void *buf, unsigned long bytes) |
| 2003 | { |
| 2004 | memcpy(buf, get_dma_ptr(substream->runtime, channel, hwoff), bytes); |
| 2005 | return 0; |
| 2006 | } |
| 2007 | |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 2008 | /* call transfer function with the converted pointers and sizes; |
| 2009 | * for interleaved mode, it's one shot for all samples |
| 2010 | */ |
| 2011 | static int interleaved_copy(struct snd_pcm_substream *substream, |
| 2012 | snd_pcm_uframes_t hwoff, void *data, |
| 2013 | snd_pcm_uframes_t off, |
| 2014 | snd_pcm_uframes_t frames, |
| 2015 | pcm_transfer_f transfer) |
| 2016 | { |
| 2017 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 2018 | |
| 2019 | /* convert to bytes */ |
| 2020 | hwoff = frames_to_bytes(runtime, hwoff); |
| 2021 | off = frames_to_bytes(runtime, off); |
| 2022 | frames = frames_to_bytes(runtime, frames); |
| 2023 | return transfer(substream, 0, hwoff, data + off, frames); |
| 2024 | } |
| 2025 | |
| 2026 | /* call transfer function with the converted pointers and sizes for each |
| 2027 | * non-interleaved channel; when buffer is NULL, silencing instead of copying |
| 2028 | */ |
| 2029 | static int noninterleaved_copy(struct snd_pcm_substream *substream, |
| 2030 | snd_pcm_uframes_t hwoff, void *data, |
| 2031 | snd_pcm_uframes_t off, |
| 2032 | snd_pcm_uframes_t frames, |
| 2033 | pcm_transfer_f transfer) |
| 2034 | { |
| 2035 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 2036 | int channels = runtime->channels; |
| 2037 | void **bufs = data; |
| 2038 | int c, err; |
| 2039 | |
| 2040 | /* convert to bytes; note that it's not frames_to_bytes() here. |
| 2041 | * in non-interleaved mode, we copy for each channel, thus |
| 2042 | * each copy is n_samples bytes x channels = whole frames. |
| 2043 | */ |
| 2044 | off = samples_to_bytes(runtime, off); |
| 2045 | frames = samples_to_bytes(runtime, frames); |
| 2046 | hwoff = samples_to_bytes(runtime, hwoff); |
| 2047 | for (c = 0; c < channels; ++c, ++bufs) { |
| 2048 | if (!data || !*bufs) |
| 2049 | err = fill_silence(substream, c, hwoff, NULL, frames); |
| 2050 | else |
| 2051 | err = transfer(substream, c, hwoff, *bufs + off, |
| 2052 | frames); |
| 2053 | if (err < 0) |
| 2054 | return err; |
Takashi Iwai | bdc4acf | 2017-05-24 17:59:17 +0200 | [diff] [blame] | 2055 | } |
| 2056 | return 0; |
| 2057 | } |
| 2058 | |
Takashi Iwai | a9cd29e | 2017-05-24 18:18:15 +0200 | [diff] [blame] | 2059 | /* fill silence on the given buffer position; |
| 2060 | * called from snd_pcm_playback_silence() |
| 2061 | */ |
| 2062 | static int fill_silence_frames(struct snd_pcm_substream *substream, |
| 2063 | snd_pcm_uframes_t off, snd_pcm_uframes_t frames) |
| 2064 | { |
| 2065 | if (substream->runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED || |
| 2066 | substream->runtime->access == SNDRV_PCM_ACCESS_MMAP_INTERLEAVED) |
| 2067 | return interleaved_copy(substream, off, NULL, 0, frames, |
| 2068 | fill_silence); |
| 2069 | else |
| 2070 | return noninterleaved_copy(substream, off, NULL, 0, frames, |
| 2071 | fill_silence); |
| 2072 | } |
| 2073 | |
Takashi Iwai | bdc4acf | 2017-05-24 17:59:17 +0200 | [diff] [blame] | 2074 | /* sanity-check for read/write methods */ |
| 2075 | static int pcm_sanity_check(struct snd_pcm_substream *substream) |
| 2076 | { |
| 2077 | struct snd_pcm_runtime *runtime; |
| 2078 | if (PCM_RUNTIME_CHECK(substream)) |
| 2079 | return -ENXIO; |
| 2080 | runtime = substream->runtime; |
| 2081 | if (snd_BUG_ON(!substream->ops->copy_user && !runtime->dma_area)) |
| 2082 | return -EINVAL; |
| 2083 | if (runtime->status->state == SNDRV_PCM_STATE_OPEN) |
| 2084 | return -EBADFD; |
| 2085 | return 0; |
| 2086 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | |
Takashi Iwai | 6ba6392 | 2017-05-24 17:51:30 +0200 | [diff] [blame] | 2088 | static int pcm_accessible_state(struct snd_pcm_runtime *runtime) |
| 2089 | { |
| 2090 | switch (runtime->status->state) { |
| 2091 | case SNDRV_PCM_STATE_PREPARED: |
| 2092 | case SNDRV_PCM_STATE_RUNNING: |
| 2093 | case SNDRV_PCM_STATE_PAUSED: |
| 2094 | return 0; |
| 2095 | case SNDRV_PCM_STATE_XRUN: |
| 2096 | return -EPIPE; |
| 2097 | case SNDRV_PCM_STATE_SUSPENDED: |
| 2098 | return -ESTRPIPE; |
| 2099 | default: |
| 2100 | return -EBADFD; |
| 2101 | } |
| 2102 | } |
| 2103 | |
Takashi Sakamoto | 66e01a5 | 2017-06-12 09:41:44 +0900 | [diff] [blame^] | 2104 | /* update to the given appl_ptr and call ack callback if needed; |
| 2105 | * when an error is returned, take back to the original value |
| 2106 | */ |
| 2107 | int pcm_lib_apply_appl_ptr(struct snd_pcm_substream *substream, |
| 2108 | snd_pcm_uframes_t appl_ptr) |
| 2109 | { |
| 2110 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 2111 | snd_pcm_uframes_t old_appl_ptr = runtime->control->appl_ptr; |
| 2112 | int ret; |
| 2113 | |
| 2114 | runtime->control->appl_ptr = appl_ptr; |
| 2115 | if (substream->ops->ack) { |
| 2116 | ret = substream->ops->ack(substream); |
| 2117 | if (ret < 0) { |
| 2118 | runtime->control->appl_ptr = old_appl_ptr; |
| 2119 | return ret; |
| 2120 | } |
| 2121 | } |
| 2122 | return 0; |
| 2123 | } |
| 2124 | |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2125 | /* the common loop for read/write data */ |
| 2126 | snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream, |
| 2127 | void *data, bool interleaved, |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 2128 | snd_pcm_uframes_t size, bool in_kernel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 2130 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | snd_pcm_uframes_t xfer = 0; |
| 2132 | snd_pcm_uframes_t offset = 0; |
Takashi Iwai | 0910c21 | 2012-05-11 17:50:49 +0200 | [diff] [blame] | 2133 | snd_pcm_uframes_t avail; |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 2134 | pcm_copy_f writer; |
| 2135 | pcm_transfer_f transfer; |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2136 | bool nonblock; |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2137 | bool is_playback; |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2138 | int err; |
| 2139 | |
| 2140 | err = pcm_sanity_check(substream); |
| 2141 | if (err < 0) |
| 2142 | return err; |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2143 | |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2144 | is_playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2145 | if (interleaved) { |
| 2146 | if (runtime->access != SNDRV_PCM_ACCESS_RW_INTERLEAVED && |
| 2147 | runtime->channels > 1) |
| 2148 | return -EINVAL; |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 2149 | writer = interleaved_copy; |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2150 | } else { |
| 2151 | if (runtime->access != SNDRV_PCM_ACCESS_RW_NONINTERLEAVED) |
| 2152 | return -EINVAL; |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 2153 | writer = noninterleaved_copy; |
| 2154 | } |
| 2155 | |
| 2156 | if (!data) { |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2157 | if (is_playback) |
| 2158 | transfer = fill_silence; |
| 2159 | else |
| 2160 | return -EINVAL; |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 2161 | } else if (in_kernel) { |
| 2162 | if (substream->ops->copy_kernel) |
| 2163 | transfer = substream->ops->copy_kernel; |
| 2164 | else |
| 2165 | transfer = is_playback ? |
| 2166 | default_write_copy_kernel : default_read_copy_kernel; |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 2167 | } else { |
| 2168 | if (substream->ops->copy_user) |
| 2169 | transfer = (pcm_transfer_f)substream->ops->copy_user; |
| 2170 | else |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2171 | transfer = is_playback ? |
| 2172 | default_write_copy : default_read_copy; |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2173 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | |
| 2175 | if (size == 0) |
| 2176 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 2178 | nonblock = !!(substream->f_flags & O_NONBLOCK); |
| 2179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | snd_pcm_stream_lock_irq(substream); |
Takashi Iwai | 6ba6392 | 2017-05-24 17:51:30 +0200 | [diff] [blame] | 2181 | err = pcm_accessible_state(runtime); |
| 2182 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | goto _end_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2185 | if (!is_playback && |
| 2186 | runtime->status->state == SNDRV_PCM_STATE_PREPARED && |
| 2187 | size >= runtime->start_threshold) { |
| 2188 | err = snd_pcm_start(substream); |
| 2189 | if (err < 0) |
| 2190 | goto _end_unlock; |
| 2191 | } |
| 2192 | |
David Dillow | 5daeba3 | 2010-06-27 00:13:20 +0200 | [diff] [blame] | 2193 | runtime->twake = runtime->control->avail_min ? : 1; |
Takashi Iwai | 0910c21 | 2012-05-11 17:50:49 +0200 | [diff] [blame] | 2194 | if (runtime->status->state == SNDRV_PCM_STATE_RUNNING) |
| 2195 | snd_pcm_update_hw_ptr(substream); |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2196 | if (is_playback) |
| 2197 | avail = snd_pcm_playback_avail(runtime); |
| 2198 | else |
| 2199 | avail = snd_pcm_capture_avail(runtime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | while (size > 0) { |
| 2201 | snd_pcm_uframes_t frames, appl_ptr, appl_ofs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | snd_pcm_uframes_t cont; |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 2203 | if (!avail) { |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2204 | if (!is_playback && |
| 2205 | runtime->status->state == SNDRV_PCM_STATE_DRAINING) { |
| 2206 | snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP); |
| 2207 | goto _end_unlock; |
| 2208 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | if (nonblock) { |
| 2210 | err = -EAGAIN; |
| 2211 | goto _end_unlock; |
| 2212 | } |
David Dillow | 5daeba3 | 2010-06-27 00:13:20 +0200 | [diff] [blame] | 2213 | runtime->twake = min_t(snd_pcm_uframes_t, size, |
| 2214 | runtime->control->avail_min ? : 1); |
| 2215 | err = wait_for_avail(substream, &avail); |
Takashi Iwai | 1307551 | 2008-01-08 18:08:14 +0100 | [diff] [blame] | 2216 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | goto _end_unlock; |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2218 | if (!avail) |
| 2219 | continue; /* draining */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | frames = size > avail ? avail : size; |
| 2222 | cont = runtime->buffer_size - runtime->control->appl_ptr % runtime->buffer_size; |
| 2223 | if (frames > cont) |
| 2224 | frames = cont; |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 2225 | if (snd_BUG_ON(!frames)) { |
Jaroslav Kysela | c91a988 | 2010-01-21 10:32:15 +0100 | [diff] [blame] | 2226 | runtime->twake = 0; |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 2227 | snd_pcm_stream_unlock_irq(substream); |
| 2228 | return -EINVAL; |
| 2229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | appl_ptr = runtime->control->appl_ptr; |
| 2231 | appl_ofs = appl_ptr % runtime->buffer_size; |
| 2232 | snd_pcm_stream_unlock_irq(substream); |
Takashi Iwai | 9f60063 | 2017-05-24 18:15:26 +0200 | [diff] [blame] | 2233 | err = writer(substream, appl_ofs, data, offset, frames, |
| 2234 | transfer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | snd_pcm_stream_lock_irq(substream); |
Jaroslav Kysela | 1250932 | 2010-01-07 15:36:31 +0100 | [diff] [blame] | 2236 | if (err < 0) |
| 2237 | goto _end_unlock; |
Takashi Iwai | 6ba6392 | 2017-05-24 17:51:30 +0200 | [diff] [blame] | 2238 | err = pcm_accessible_state(runtime); |
| 2239 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | goto _end_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | appl_ptr += frames; |
| 2242 | if (appl_ptr >= runtime->boundary) |
| 2243 | appl_ptr -= runtime->boundary; |
Takashi Sakamoto | 66e01a5 | 2017-06-12 09:41:44 +0900 | [diff] [blame^] | 2244 | err = pcm_lib_apply_appl_ptr(substream, appl_ptr); |
| 2245 | if (err < 0) |
| 2246 | goto _end_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2247 | |
| 2248 | offset += frames; |
| 2249 | size -= frames; |
| 2250 | xfer += frames; |
Takashi Iwai | 0910c21 | 2012-05-11 17:50:49 +0200 | [diff] [blame] | 2251 | avail -= frames; |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2252 | if (is_playback && |
| 2253 | runtime->status->state == SNDRV_PCM_STATE_PREPARED && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | snd_pcm_playback_hw_avail(runtime) >= (snd_pcm_sframes_t)runtime->start_threshold) { |
| 2255 | err = snd_pcm_start(substream); |
| 2256 | if (err < 0) |
| 2257 | goto _end_unlock; |
| 2258 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | } |
| 2260 | _end_unlock: |
Jaroslav Kysela | c91a988 | 2010-01-21 10:32:15 +0100 | [diff] [blame] | 2261 | runtime->twake = 0; |
Jaroslav Kysela | 1250932 | 2010-01-07 15:36:31 +0100 | [diff] [blame] | 2262 | if (xfer > 0 && err >= 0) |
| 2263 | snd_pcm_update_state(substream, runtime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | snd_pcm_stream_unlock_irq(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | return xfer > 0 ? (snd_pcm_sframes_t)xfer : err; |
| 2266 | } |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 2267 | EXPORT_SYMBOL(__snd_pcm_lib_xfer); |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 2268 | |
| 2269 | /* |
| 2270 | * standard channel mapping helpers |
| 2271 | */ |
| 2272 | |
| 2273 | /* default channel maps for multi-channel playbacks, up to 8 channels */ |
| 2274 | const struct snd_pcm_chmap_elem snd_pcm_std_chmaps[] = { |
| 2275 | { .channels = 1, |
Takashi Iwai | 5efbc26 | 2012-09-13 14:48:46 +0200 | [diff] [blame] | 2276 | .map = { SNDRV_CHMAP_MONO } }, |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 2277 | { .channels = 2, |
| 2278 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, |
| 2279 | { .channels = 4, |
| 2280 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 2281 | SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } }, |
| 2282 | { .channels = 6, |
| 2283 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 2284 | SNDRV_CHMAP_RL, SNDRV_CHMAP_RR, |
| 2285 | SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE } }, |
| 2286 | { .channels = 8, |
| 2287 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 2288 | SNDRV_CHMAP_RL, SNDRV_CHMAP_RR, |
| 2289 | SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE, |
| 2290 | SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } }, |
| 2291 | { } |
| 2292 | }; |
| 2293 | EXPORT_SYMBOL_GPL(snd_pcm_std_chmaps); |
| 2294 | |
| 2295 | /* alternative channel maps with CLFE <-> surround swapped for 6/8 channels */ |
| 2296 | const struct snd_pcm_chmap_elem snd_pcm_alt_chmaps[] = { |
| 2297 | { .channels = 1, |
Takashi Iwai | 5efbc26 | 2012-09-13 14:48:46 +0200 | [diff] [blame] | 2298 | .map = { SNDRV_CHMAP_MONO } }, |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 2299 | { .channels = 2, |
| 2300 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, |
| 2301 | { .channels = 4, |
| 2302 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 2303 | SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } }, |
| 2304 | { .channels = 6, |
| 2305 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 2306 | SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE, |
| 2307 | SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } }, |
| 2308 | { .channels = 8, |
| 2309 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 2310 | SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE, |
| 2311 | SNDRV_CHMAP_RL, SNDRV_CHMAP_RR, |
| 2312 | SNDRV_CHMAP_SL, SNDRV_CHMAP_SR } }, |
| 2313 | { } |
| 2314 | }; |
| 2315 | EXPORT_SYMBOL_GPL(snd_pcm_alt_chmaps); |
| 2316 | |
| 2317 | static bool valid_chmap_channels(const struct snd_pcm_chmap *info, int ch) |
| 2318 | { |
| 2319 | if (ch > info->max_channels) |
| 2320 | return false; |
| 2321 | return !info->channel_mask || (info->channel_mask & (1U << ch)); |
| 2322 | } |
| 2323 | |
| 2324 | static int pcm_chmap_ctl_info(struct snd_kcontrol *kcontrol, |
| 2325 | struct snd_ctl_elem_info *uinfo) |
| 2326 | { |
| 2327 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 2328 | |
| 2329 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2330 | uinfo->count = 0; |
| 2331 | uinfo->count = info->max_channels; |
| 2332 | uinfo->value.integer.min = 0; |
| 2333 | uinfo->value.integer.max = SNDRV_CHMAP_LAST; |
| 2334 | return 0; |
| 2335 | } |
| 2336 | |
| 2337 | /* get callback for channel map ctl element |
| 2338 | * stores the channel position firstly matching with the current channels |
| 2339 | */ |
| 2340 | static int pcm_chmap_ctl_get(struct snd_kcontrol *kcontrol, |
| 2341 | struct snd_ctl_elem_value *ucontrol) |
| 2342 | { |
| 2343 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 2344 | unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 2345 | struct snd_pcm_substream *substream; |
| 2346 | const struct snd_pcm_chmap_elem *map; |
| 2347 | |
| 2348 | if (snd_BUG_ON(!info->chmap)) |
| 2349 | return -EINVAL; |
| 2350 | substream = snd_pcm_chmap_substream(info, idx); |
| 2351 | if (!substream) |
| 2352 | return -ENODEV; |
| 2353 | memset(ucontrol->value.integer.value, 0, |
| 2354 | sizeof(ucontrol->value.integer.value)); |
| 2355 | if (!substream->runtime) |
| 2356 | return 0; /* no channels set */ |
| 2357 | for (map = info->chmap; map->channels; map++) { |
| 2358 | int i; |
| 2359 | if (map->channels == substream->runtime->channels && |
| 2360 | valid_chmap_channels(info, map->channels)) { |
| 2361 | for (i = 0; i < map->channels; i++) |
| 2362 | ucontrol->value.integer.value[i] = map->map[i]; |
| 2363 | return 0; |
| 2364 | } |
| 2365 | } |
| 2366 | return -EINVAL; |
| 2367 | } |
| 2368 | |
| 2369 | /* tlv callback for channel map ctl element |
| 2370 | * expands the pre-defined channel maps in a form of TLV |
| 2371 | */ |
| 2372 | static int pcm_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 2373 | unsigned int size, unsigned int __user *tlv) |
| 2374 | { |
| 2375 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 2376 | const struct snd_pcm_chmap_elem *map; |
| 2377 | unsigned int __user *dst; |
| 2378 | int c, count = 0; |
| 2379 | |
| 2380 | if (snd_BUG_ON(!info->chmap)) |
| 2381 | return -EINVAL; |
| 2382 | if (size < 8) |
| 2383 | return -ENOMEM; |
| 2384 | if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv)) |
| 2385 | return -EFAULT; |
| 2386 | size -= 8; |
| 2387 | dst = tlv + 2; |
| 2388 | for (map = info->chmap; map->channels; map++) { |
| 2389 | int chs_bytes = map->channels * 4; |
| 2390 | if (!valid_chmap_channels(info, map->channels)) |
| 2391 | continue; |
| 2392 | if (size < 8) |
| 2393 | return -ENOMEM; |
| 2394 | if (put_user(SNDRV_CTL_TLVT_CHMAP_FIXED, dst) || |
| 2395 | put_user(chs_bytes, dst + 1)) |
| 2396 | return -EFAULT; |
| 2397 | dst += 2; |
| 2398 | size -= 8; |
| 2399 | count += 8; |
| 2400 | if (size < chs_bytes) |
| 2401 | return -ENOMEM; |
| 2402 | size -= chs_bytes; |
| 2403 | count += chs_bytes; |
| 2404 | for (c = 0; c < map->channels; c++) { |
| 2405 | if (put_user(map->map[c], dst)) |
| 2406 | return -EFAULT; |
| 2407 | dst++; |
| 2408 | } |
| 2409 | } |
| 2410 | if (put_user(count, tlv + 1)) |
| 2411 | return -EFAULT; |
| 2412 | return 0; |
| 2413 | } |
| 2414 | |
| 2415 | static void pcm_chmap_ctl_private_free(struct snd_kcontrol *kcontrol) |
| 2416 | { |
| 2417 | struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol); |
| 2418 | info->pcm->streams[info->stream].chmap_kctl = NULL; |
| 2419 | kfree(info); |
| 2420 | } |
| 2421 | |
| 2422 | /** |
| 2423 | * snd_pcm_add_chmap_ctls - create channel-mapping control elements |
| 2424 | * @pcm: the assigned PCM instance |
| 2425 | * @stream: stream direction |
| 2426 | * @chmap: channel map elements (for query) |
| 2427 | * @max_channels: the max number of channels for the stream |
| 2428 | * @private_value: the value passed to each kcontrol's private_value field |
| 2429 | * @info_ret: store struct snd_pcm_chmap instance if non-NULL |
| 2430 | * |
| 2431 | * Create channel-mapping control elements assigned to the given PCM stream(s). |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 2432 | * Return: Zero if successful, or a negative error value. |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 2433 | */ |
| 2434 | int snd_pcm_add_chmap_ctls(struct snd_pcm *pcm, int stream, |
| 2435 | const struct snd_pcm_chmap_elem *chmap, |
| 2436 | int max_channels, |
| 2437 | unsigned long private_value, |
| 2438 | struct snd_pcm_chmap **info_ret) |
| 2439 | { |
| 2440 | struct snd_pcm_chmap *info; |
| 2441 | struct snd_kcontrol_new knew = { |
| 2442 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
| 2443 | .access = SNDRV_CTL_ELEM_ACCESS_READ | |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 2444 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 2445 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, |
| 2446 | .info = pcm_chmap_ctl_info, |
| 2447 | .get = pcm_chmap_ctl_get, |
| 2448 | .tlv.c = pcm_chmap_ctl_tlv, |
| 2449 | }; |
| 2450 | int err; |
| 2451 | |
Takashi Iwai | 8d879be | 2016-05-10 16:07:40 +0200 | [diff] [blame] | 2452 | if (WARN_ON(pcm->streams[stream].chmap_kctl)) |
| 2453 | return -EBUSY; |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 2454 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 2455 | if (!info) |
| 2456 | return -ENOMEM; |
| 2457 | info->pcm = pcm; |
| 2458 | info->stream = stream; |
| 2459 | info->chmap = chmap; |
| 2460 | info->max_channels = max_channels; |
| 2461 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 2462 | knew.name = "Playback Channel Map"; |
| 2463 | else |
| 2464 | knew.name = "Capture Channel Map"; |
| 2465 | knew.device = pcm->device; |
| 2466 | knew.count = pcm->streams[stream].substream_count; |
| 2467 | knew.private_value = private_value; |
| 2468 | info->kctl = snd_ctl_new1(&knew, info); |
| 2469 | if (!info->kctl) { |
| 2470 | kfree(info); |
| 2471 | return -ENOMEM; |
| 2472 | } |
| 2473 | info->kctl->private_free = pcm_chmap_ctl_private_free; |
| 2474 | err = snd_ctl_add(pcm->card, info->kctl); |
| 2475 | if (err < 0) |
| 2476 | return err; |
| 2477 | pcm->streams[stream].chmap_kctl = info->kctl; |
| 2478 | if (info_ret) |
| 2479 | *info_ret = info; |
| 2480 | return 0; |
| 2481 | } |
| 2482 | EXPORT_SYMBOL_GPL(snd_pcm_add_chmap_ctls); |