pcm_params.h 8.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef __SOUND_PCM_PARAMS_H
#define __SOUND_PCM_PARAMS_H

/*
 *  PCM params helpers
 *  Copyright (c) by Abramo Bagnara <abramo@alsa-project.org>
 *
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 */

25 26
#include <sound/pcm.h>

27 28 29 30 31 32 33 34
int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm, 
			   struct snd_pcm_hw_params *params,
			   snd_pcm_hw_param_t var, int *dir);
int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm, 
			  struct snd_pcm_hw_params *params,
			  snd_pcm_hw_param_t var, int *dir);
int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params,
			   snd_pcm_hw_param_t var, int *dir);
L
Linus Torvalds 已提交
35 36 37 38 39 40

#define SNDRV_MASK_BITS	64	/* we use so far 64bits only */
#define SNDRV_MASK_SIZE	(SNDRV_MASK_BITS / 32)
#define MASK_OFS(i)	((i) >> 5)
#define MASK_BIT(i)	(1U << ((i) & 31))

41
static inline size_t snd_mask_sizeof(void)
L
Linus Torvalds 已提交
42
{
T
Takashi Iwai 已提交
43
	return sizeof(struct snd_mask);
L
Linus Torvalds 已提交
44 45
}

46
static inline void snd_mask_none(struct snd_mask *mask)
L
Linus Torvalds 已提交
47 48 49 50
{
	memset(mask, 0, sizeof(*mask));
}

51
static inline void snd_mask_any(struct snd_mask *mask)
L
Linus Torvalds 已提交
52 53 54 55
{
	memset(mask, 0xff, SNDRV_MASK_SIZE * sizeof(u_int32_t));
}

56
static inline int snd_mask_empty(const struct snd_mask *mask)
L
Linus Torvalds 已提交
57 58 59 60 61 62 63 64
{
	int i;
	for (i = 0; i < SNDRV_MASK_SIZE; i++)
		if (mask->bits[i])
			return 0;
	return 1;
}

65
static inline unsigned int snd_mask_min(const struct snd_mask *mask)
L
Linus Torvalds 已提交
66 67 68 69
{
	int i;
	for (i = 0; i < SNDRV_MASK_SIZE; i++) {
		if (mask->bits[i])
70
			return __ffs(mask->bits[i]) + (i << 5);
L
Linus Torvalds 已提交
71 72 73 74
	}
	return 0;
}

75
static inline unsigned int snd_mask_max(const struct snd_mask *mask)
L
Linus Torvalds 已提交
76 77 78 79
{
	int i;
	for (i = SNDRV_MASK_SIZE - 1; i >= 0; i--) {
		if (mask->bits[i])
80
			return __fls(mask->bits[i]) + (i << 5);
L
Linus Torvalds 已提交
81 82 83 84
	}
	return 0;
}

85
static inline void snd_mask_set(struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
86 87 88 89
{
	mask->bits[MASK_OFS(val)] |= MASK_BIT(val);
}

90
static inline void snd_mask_reset(struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
91 92 93 94
{
	mask->bits[MASK_OFS(val)] &= ~MASK_BIT(val);
}

95 96
static inline void snd_mask_set_range(struct snd_mask *mask,
				      unsigned int from, unsigned int to)
L
Linus Torvalds 已提交
97 98 99 100 101 102
{
	unsigned int i;
	for (i = from; i <= to; i++)
		mask->bits[MASK_OFS(i)] |= MASK_BIT(i);
}

103 104
static inline void snd_mask_reset_range(struct snd_mask *mask,
					unsigned int from, unsigned int to)
L
Linus Torvalds 已提交
105 106 107 108 109 110
{
	unsigned int i;
	for (i = from; i <= to; i++)
		mask->bits[MASK_OFS(i)] &= ~MASK_BIT(i);
}

111
static inline void snd_mask_leave(struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
112 113 114 115 116 117 118
{
	unsigned int v;
	v = mask->bits[MASK_OFS(val)] & MASK_BIT(val);
	snd_mask_none(mask);
	mask->bits[MASK_OFS(val)] = v;
}

119 120
static inline void snd_mask_intersect(struct snd_mask *mask,
				      const struct snd_mask *v)
L
Linus Torvalds 已提交
121 122 123 124 125 126
{
	int i;
	for (i = 0; i < SNDRV_MASK_SIZE; i++)
		mask->bits[i] &= v->bits[i];
}

127 128
static inline int snd_mask_eq(const struct snd_mask *mask,
			      const struct snd_mask *v)
L
Linus Torvalds 已提交
129 130 131 132
{
	return ! memcmp(mask, v, SNDRV_MASK_SIZE * sizeof(u_int32_t));
}

133 134
static inline void snd_mask_copy(struct snd_mask *mask,
				 const struct snd_mask *v)
L
Linus Torvalds 已提交
135 136 137 138
{
	*mask = *v;
}

139
static inline int snd_mask_test(const struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
140 141 142 143
{
	return mask->bits[MASK_OFS(val)] & MASK_BIT(val);
}

144
static inline int snd_mask_single(const struct snd_mask *mask)
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158
{
	int i, c = 0;
	for (i = 0; i < SNDRV_MASK_SIZE; i++) {
		if (! mask->bits[i])
			continue;
		if (mask->bits[i] & (mask->bits[i] - 1))
			return 0;
		if (c)
			return 0;
		c++;
	}
	return 1;
}

159 160
static inline int snd_mask_refine(struct snd_mask *mask,
				  const struct snd_mask *v)
L
Linus Torvalds 已提交
161
{
T
Takashi Iwai 已提交
162
	struct snd_mask old;
L
Linus Torvalds 已提交
163 164 165 166 167 168 169
	snd_mask_copy(&old, mask);
	snd_mask_intersect(mask, v);
	if (snd_mask_empty(mask))
		return -EINVAL;
	return !snd_mask_eq(mask, &old);
}

170
static inline int snd_mask_refine_first(struct snd_mask *mask)
L
Linus Torvalds 已提交
171 172 173 174 175 176 177
{
	if (snd_mask_single(mask))
		return 0;
	snd_mask_leave(mask, snd_mask_min(mask));
	return 1;
}

178
static inline int snd_mask_refine_last(struct snd_mask *mask)
L
Linus Torvalds 已提交
179 180 181 182 183 184 185
{
	if (snd_mask_single(mask))
		return 0;
	snd_mask_leave(mask, snd_mask_max(mask));
	return 1;
}

186
static inline int snd_mask_refine_min(struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
187 188 189 190 191 192 193 194 195
{
	if (snd_mask_min(mask) >= val)
		return 0;
	snd_mask_reset_range(mask, 0, val - 1);
	if (snd_mask_empty(mask))
		return -EINVAL;
	return 1;
}

196
static inline int snd_mask_refine_max(struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205
{
	if (snd_mask_max(mask) <= val)
		return 0;
	snd_mask_reset_range(mask, val + 1, SNDRV_MASK_BITS);
	if (snd_mask_empty(mask))
		return -EINVAL;
	return 1;
}

206
static inline int snd_mask_refine_set(struct snd_mask *mask, unsigned int val)
L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214 215
{
	int changed;
	changed = !snd_mask_single(mask);
	snd_mask_leave(mask, val);
	if (snd_mask_empty(mask))
		return -EINVAL;
	return changed;
}

216
static inline int snd_mask_value(const struct snd_mask *mask)
L
Linus Torvalds 已提交
217 218 219 220
{
	return snd_mask_min(mask);
}

221
static inline void snd_interval_any(struct snd_interval *i)
L
Linus Torvalds 已提交
222 223 224 225 226 227 228 229 230
{
	i->min = 0;
	i->openmin = 0;
	i->max = UINT_MAX;
	i->openmax = 0;
	i->integer = 0;
	i->empty = 0;
}

231
static inline void snd_interval_none(struct snd_interval *i)
L
Linus Torvalds 已提交
232 233 234 235
{
	i->empty = 1;
}

236
static inline int snd_interval_checkempty(const struct snd_interval *i)
L
Linus Torvalds 已提交
237 238 239 240 241
{
	return (i->min > i->max ||
		(i->min == i->max && (i->openmin || i->openmax)));
}

242
static inline int snd_interval_empty(const struct snd_interval *i)
L
Linus Torvalds 已提交
243 244 245 246
{
	return i->empty;
}

247
static inline int snd_interval_single(const struct snd_interval *i)
L
Linus Torvalds 已提交
248 249 250 251 252
{
	return (i->min == i->max || 
		(i->min + 1 == i->max && i->openmax));
}

253
static inline int snd_interval_value(const struct snd_interval *i)
L
Linus Torvalds 已提交
254 255 256 257
{
	return i->min;
}

258
static inline int snd_interval_min(const struct snd_interval *i)
L
Linus Torvalds 已提交
259 260 261 262
{
	return i->min;
}

263
static inline int snd_interval_max(const struct snd_interval *i)
L
Linus Torvalds 已提交
264 265 266 267 268 269 270 271
{
	unsigned int v;
	v = i->max;
	if (i->openmax)
		v--;
	return v;
}

272
static inline int snd_interval_test(const struct snd_interval *i, unsigned int val)
L
Linus Torvalds 已提交
273 274 275 276 277
{
	return !((i->min > val || (i->min == val && i->openmin) ||
		  i->max < val || (i->max == val && i->openmax)));
}

278
static inline void snd_interval_copy(struct snd_interval *d, const struct snd_interval *s)
L
Linus Torvalds 已提交
279 280 281 282
{
	*d = *s;
}

283
static inline int snd_interval_setinteger(struct snd_interval *i)
L
Linus Torvalds 已提交
284 285 286 287 288 289 290 291 292
{
	if (i->integer)
		return 0;
	if (i->openmin && i->openmax && i->min == i->max)
		return -EINVAL;
	i->integer = 1;
	return 1;
}

293
static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2)
L
Linus Torvalds 已提交
294 295 296 297 298 299 300 301 302
{
	if (i1->empty)
		return i2->empty;
	if (i2->empty)
		return i1->empty;
	return i1->min == i2->min && i1->openmin == i2->openmin &&
		i1->max == i2->max && i1->openmax == i2->openmax;
}

303 304 305 306
/**
 * params_access - get the access type from the hw params
 * @p: hw params
 */
307 308 309 310 311 312
static inline snd_pcm_access_t params_access(const struct snd_pcm_hw_params *p)
{
	return (__force snd_pcm_access_t)snd_mask_min(hw_param_mask_c(p,
		SNDRV_PCM_HW_PARAM_ACCESS));
}

313 314 315 316
/**
 * params_format - get the sample format from the hw params
 * @p: hw params
 */
317 318 319 320 321 322
static inline snd_pcm_format_t params_format(const struct snd_pcm_hw_params *p)
{
	return (__force snd_pcm_format_t)snd_mask_min(hw_param_mask_c(p,
		SNDRV_PCM_HW_PARAM_FORMAT));
}

323 324 325 326
/**
 * params_subformat - get the sample subformat from the hw params
 * @p: hw params
 */
327 328 329 330 331 332
static inline snd_pcm_subformat_t
params_subformat(const struct snd_pcm_hw_params *p)
{
	return (__force snd_pcm_subformat_t)snd_mask_min(hw_param_mask_c(p,
		SNDRV_PCM_HW_PARAM_SUBFORMAT));
}
L
Linus Torvalds 已提交
333

334 335 336 337
/**
 * params_period_bytes - get the period size (in bytes) from the hw params
 * @p: hw params
 */
T
Takashi Iwai 已提交
338 339 340
static inline unsigned int
params_period_bytes(const struct snd_pcm_hw_params *p)
{
341
	return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIOD_BYTES)->min;
T
Takashi Iwai 已提交
342 343
}

344 345 346 347 348 349 350 351
/**
 * params_width - get the number of bits of the sample format from the hw params
 * @p: hw params
 *
 * This function returns the number of bits per sample that the selected sample
 * format of the hw params has.
 */
static inline int params_width(const struct snd_pcm_hw_params *p)
M
Mark Brown 已提交
352 353 354 355
{
	return snd_pcm_format_width(params_format(p));
}

356 357 358 359 360 361 362 363 364
/*
 * params_physical_width - get the storage size of the sample format from the hw params
 * @p: hw params
 *
 * This functions returns the number of bits per sample that the selected sample
 * format of the hw params takes up in memory. This will be equal or larger than
 * params_width().
 */
static inline int params_physical_width(const struct snd_pcm_hw_params *p)
M
Mark Brown 已提交
365 366 367 368
{
	return snd_pcm_format_physical_width(params_format(p));
}

T
Takashi Iwai 已提交
369
#endif /* __SOUND_PCM_PARAMS_H */