blob: 91f6abfb2ce08f74ddefc384aa3bbb174fef761a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __SOUND_PCM_PARAMS_H
2#define __SOUND_PCM_PARAMS_H
3
4/*
5 * PCM params helpers
6 * Copyright (c) by Abramo Bagnara <abramo@alsa-project.org>
7 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Mark Brownf3761c32012-06-19 19:31:48 +010025#include <sound/pcm.h>
26
Takashi Iwaie88e8ae62006-04-28 15:13:40 +020027int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm,
28 struct snd_pcm_hw_params *params,
29 snd_pcm_hw_param_t var, int *dir);
30int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm,
31 struct snd_pcm_hw_params *params,
32 snd_pcm_hw_param_t var, int *dir);
33int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
34 snd_pcm_hw_param_t var, int *dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define SNDRV_MASK_BITS 64 /* we use so far 64bits only */
37#define SNDRV_MASK_SIZE (SNDRV_MASK_BITS / 32)
38#define MASK_OFS(i) ((i) >> 5)
39#define MASK_BIT(i) (1U << ((i) & 31))
40
Takashi Iwai9bb22e22006-04-28 15:13:39 +020041static inline size_t snd_mask_sizeof(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Takashi Iwai877211f2005-11-17 13:59:38 +010043 return sizeof(struct snd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
Takashi Iwai9bb22e22006-04-28 15:13:39 +020046static inline void snd_mask_none(struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 memset(mask, 0, sizeof(*mask));
49}
50
Takashi Iwai9bb22e22006-04-28 15:13:39 +020051static inline void snd_mask_any(struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 memset(mask, 0xff, SNDRV_MASK_SIZE * sizeof(u_int32_t));
54}
55
Takashi Iwai9bb22e22006-04-28 15:13:39 +020056static inline int snd_mask_empty(const struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 int i;
59 for (i = 0; i < SNDRV_MASK_SIZE; i++)
60 if (mask->bits[i])
61 return 0;
62 return 1;
63}
64
Takashi Iwai9bb22e22006-04-28 15:13:39 +020065static inline unsigned int snd_mask_min(const struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 for (i = 0; i < SNDRV_MASK_SIZE; i++) {
69 if (mask->bits[i])
Lars-Peter Clausen599ee322014-12-29 19:41:44 +010070 return __ffs(mask->bits[i]) + (i << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
72 return 0;
73}
74
Takashi Iwai9bb22e22006-04-28 15:13:39 +020075static inline unsigned int snd_mask_max(const struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 for (i = SNDRV_MASK_SIZE - 1; i >= 0; i--) {
79 if (mask->bits[i])
Lars-Peter Clausen757b0372014-12-29 19:41:46 +010080 return __fls(mask->bits[i]) + (i << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82 return 0;
83}
84
Takashi Iwai9bb22e22006-04-28 15:13:39 +020085static inline void snd_mask_set(struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 mask->bits[MASK_OFS(val)] |= MASK_BIT(val);
88}
89
Takashi Iwai9bb22e22006-04-28 15:13:39 +020090static inline void snd_mask_reset(struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 mask->bits[MASK_OFS(val)] &= ~MASK_BIT(val);
93}
94
Takashi Iwai9bb22e22006-04-28 15:13:39 +020095static inline void snd_mask_set_range(struct snd_mask *mask,
96 unsigned int from, unsigned int to)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 for (i = from; i <= to; i++)
100 mask->bits[MASK_OFS(i)] |= MASK_BIT(i);
101}
102
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200103static inline void snd_mask_reset_range(struct snd_mask *mask,
104 unsigned int from, unsigned int to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 for (i = from; i <= to; i++)
108 mask->bits[MASK_OFS(i)] &= ~MASK_BIT(i);
109}
110
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200111static inline void snd_mask_leave(struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Viraja Kommarajuffbda0f2016-01-21 17:32:01 +0530113 unsigned int v, bits_index;
114
115 bits_index = MASK_OFS(val);
116 if (bits_index < ((SNDRV_MASK_MAX+31)/32)) {
117 v = mask->bits[bits_index] & MASK_BIT(val);
118 snd_mask_none(mask);
119 mask->bits[bits_index] = v;
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200123static inline void snd_mask_intersect(struct snd_mask *mask,
124 const struct snd_mask *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 int i;
127 for (i = 0; i < SNDRV_MASK_SIZE; i++)
128 mask->bits[i] &= v->bits[i];
129}
130
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200131static inline int snd_mask_eq(const struct snd_mask *mask,
132 const struct snd_mask *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 return ! memcmp(mask, v, SNDRV_MASK_SIZE * sizeof(u_int32_t));
135}
136
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200137static inline void snd_mask_copy(struct snd_mask *mask,
138 const struct snd_mask *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 *mask = *v;
141}
142
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200143static inline int snd_mask_test(const struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return mask->bits[MASK_OFS(val)] & MASK_BIT(val);
146}
147
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200148static inline int snd_mask_single(const struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 int i, c = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 for (i = 0; i < SNDRV_MASK_SIZE; i++) {
152 if (! mask->bits[i])
153 continue;
154 if (mask->bits[i] & (mask->bits[i] - 1))
155 return 0;
156 if (c)
157 return 0;
158 c++;
159 }
160 return 1;
161}
162
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200163static inline int snd_mask_refine(struct snd_mask *mask,
164 const struct snd_mask *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Takashi Iwai877211f2005-11-17 13:59:38 +0100166 struct snd_mask old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 snd_mask_copy(&old, mask);
168 snd_mask_intersect(mask, v);
169 if (snd_mask_empty(mask))
170 return -EINVAL;
171 return !snd_mask_eq(mask, &old);
172}
173
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200174static inline int snd_mask_refine_first(struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (snd_mask_single(mask))
177 return 0;
178 snd_mask_leave(mask, snd_mask_min(mask));
179 return 1;
180}
181
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200182static inline int snd_mask_refine_last(struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (snd_mask_single(mask))
185 return 0;
186 snd_mask_leave(mask, snd_mask_max(mask));
187 return 1;
188}
189
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200190static inline int snd_mask_refine_min(struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (snd_mask_min(mask) >= val)
193 return 0;
194 snd_mask_reset_range(mask, 0, val - 1);
195 if (snd_mask_empty(mask))
196 return -EINVAL;
197 return 1;
198}
199
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200200static inline int snd_mask_refine_max(struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (snd_mask_max(mask) <= val)
203 return 0;
204 snd_mask_reset_range(mask, val + 1, SNDRV_MASK_BITS);
205 if (snd_mask_empty(mask))
206 return -EINVAL;
207 return 1;
208}
209
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200210static inline int snd_mask_refine_set(struct snd_mask *mask, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 changed = !snd_mask_single(mask);
214 snd_mask_leave(mask, val);
215 if (snd_mask_empty(mask))
216 return -EINVAL;
217 return changed;
218}
219
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200220static inline int snd_mask_value(const struct snd_mask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return snd_mask_min(mask);
223}
224
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200225static inline void snd_interval_any(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 i->min = 0;
228 i->openmin = 0;
229 i->max = UINT_MAX;
230 i->openmax = 0;
231 i->integer = 0;
232 i->empty = 0;
233}
234
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200235static inline void snd_interval_none(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 i->empty = 1;
238}
239
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200240static inline int snd_interval_checkempty(const struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 return (i->min > i->max ||
243 (i->min == i->max && (i->openmin || i->openmax)));
244}
245
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200246static inline int snd_interval_empty(const struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 return i->empty;
249}
250
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200251static inline int snd_interval_single(const struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return (i->min == i->max ||
Takashi Iwai14743952018-11-29 12:05:19 +0100254 (i->min + 1 == i->max && (i->openmin || i->openmax)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200257static inline int snd_interval_value(const struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Takashi Iwai14743952018-11-29 12:05:19 +0100259 if (i->openmin && !i->openmax)
260 return i->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return i->min;
262}
263
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200264static inline int snd_interval_min(const struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return i->min;
267}
268
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200269static inline int snd_interval_max(const struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 unsigned int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 v = i->max;
273 if (i->openmax)
274 v--;
275 return v;
276}
277
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200278static inline int snd_interval_test(const struct snd_interval *i, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 return !((i->min > val || (i->min == val && i->openmin) ||
281 i->max < val || (i->max == val && i->openmax)));
282}
283
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200284static inline void snd_interval_copy(struct snd_interval *d, const struct snd_interval *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 *d = *s;
287}
288
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200289static inline int snd_interval_setinteger(struct snd_interval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 if (i->integer)
292 return 0;
293 if (i->openmin && i->openmax && i->min == i->max)
294 return -EINVAL;
295 i->integer = 1;
296 return 1;
297}
298
Takashi Iwai9bb22e22006-04-28 15:13:39 +0200299static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 if (i1->empty)
302 return i2->empty;
303 if (i2->empty)
304 return i1->empty;
305 return i1->min == i2->min && i1->openmin == i2->openmin &&
306 i1->max == i2->max && i1->openmax == i2->openmax;
307}
308
Lars-Peter Clausen89827ca2014-12-29 19:41:42 +0100309/**
310 * params_access - get the access type from the hw params
311 * @p: hw params
312 */
Lars-Peter Clausen744c2ad2014-12-29 19:41:41 +0100313static inline snd_pcm_access_t params_access(const struct snd_pcm_hw_params *p)
314{
315 return (__force snd_pcm_access_t)snd_mask_min(hw_param_mask_c(p,
316 SNDRV_PCM_HW_PARAM_ACCESS));
317}
318
Lars-Peter Clausen89827ca2014-12-29 19:41:42 +0100319/**
320 * params_format - get the sample format from the hw params
321 * @p: hw params
322 */
Lars-Peter Clausen744c2ad2014-12-29 19:41:41 +0100323static inline snd_pcm_format_t params_format(const struct snd_pcm_hw_params *p)
324{
325 return (__force snd_pcm_format_t)snd_mask_min(hw_param_mask_c(p,
326 SNDRV_PCM_HW_PARAM_FORMAT));
327}
328
Lars-Peter Clausen89827ca2014-12-29 19:41:42 +0100329/**
330 * params_subformat - get the sample subformat from the hw params
331 * @p: hw params
332 */
Lars-Peter Clausen744c2ad2014-12-29 19:41:41 +0100333static inline snd_pcm_subformat_t
334params_subformat(const struct snd_pcm_hw_params *p)
335{
336 return (__force snd_pcm_subformat_t)snd_mask_min(hw_param_mask_c(p,
337 SNDRV_PCM_HW_PARAM_SUBFORMAT));
338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Lars-Peter Clausen89827ca2014-12-29 19:41:42 +0100340/**
341 * params_period_bytes - get the period size (in bytes) from the hw params
342 * @p: hw params
343 */
Takashi Iwaib51beb72011-07-26 12:02:56 +0200344static inline unsigned int
345params_period_bytes(const struct snd_pcm_hw_params *p)
346{
Lars-Peter Clausencd9978f2014-12-29 19:41:43 +0100347 return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIOD_BYTES)->min;
Takashi Iwaib51beb72011-07-26 12:02:56 +0200348}
349
Lars-Peter Clausen89827ca2014-12-29 19:41:42 +0100350/**
351 * params_width - get the number of bits of the sample format from the hw params
352 * @p: hw params
353 *
354 * This function returns the number of bits per sample that the selected sample
355 * format of the hw params has.
356 */
357static inline int params_width(const struct snd_pcm_hw_params *p)
Mark Brown8c5178f2013-12-24 12:24:28 +0000358{
359 return snd_pcm_format_width(params_format(p));
360}
361
Lars-Peter Clausen89827ca2014-12-29 19:41:42 +0100362/*
363 * params_physical_width - get the storage size of the sample format from the hw params
364 * @p: hw params
365 *
366 * This functions returns the number of bits per sample that the selected sample
367 * format of the hw params takes up in memory. This will be equal or larger than
368 * params_width().
369 */
370static inline int params_physical_width(const struct snd_pcm_hw_params *p)
Mark Brown8c5178f2013-12-24 12:24:28 +0000371{
372 return snd_pcm_format_physical_width(params_format(p));
373}
374
Fang, Yang A052a9f62015-02-09 00:18:11 -0800375static inline void
376params_set_format(struct snd_pcm_hw_params *p, snd_pcm_format_t fmt)
377{
378 snd_mask_set(hw_param_mask(p, SNDRV_PCM_HW_PARAM_FORMAT),
379 (__force int)fmt);
380}
381
Takashi Iwaib51beb72011-07-26 12:02:56 +0200382#endif /* __SOUND_PCM_PARAMS_H */