Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __SOUND_PCM_PARAMS_H |
| 3 | #define __SOUND_PCM_PARAMS_H |
| 4 | |
| 5 | /* |
| 6 | * PCM params helpers |
| 7 | * Copyright (c) by Abramo Bagnara <abramo@alsa-project.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Mark Brown | f3761c3 | 2012-06-19 19:31:48 +0100 | [diff] [blame] | 10 | #include <sound/pcm.h> |
| 11 | |
Takashi Iwai | e88e8ae6 | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 12 | int snd_pcm_hw_param_first(struct snd_pcm_substream *pcm, |
| 13 | struct snd_pcm_hw_params *params, |
| 14 | snd_pcm_hw_param_t var, int *dir); |
| 15 | int snd_pcm_hw_param_last(struct snd_pcm_substream *pcm, |
| 16 | struct snd_pcm_hw_params *params, |
| 17 | snd_pcm_hw_param_t var, int *dir); |
| 18 | int snd_pcm_hw_param_value(const struct snd_pcm_hw_params *params, |
| 19 | snd_pcm_hw_param_t var, int *dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #define SNDRV_MASK_BITS 64 /* we use so far 64bits only */ |
| 22 | #define SNDRV_MASK_SIZE (SNDRV_MASK_BITS / 32) |
| 23 | #define MASK_OFS(i) ((i) >> 5) |
| 24 | #define MASK_BIT(i) (1U << ((i) & 31)) |
| 25 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 26 | static inline size_t snd_mask_sizeof(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 28 | return sizeof(struct snd_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | } |
| 30 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 31 | static inline void snd_mask_none(struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
| 33 | memset(mask, 0, sizeof(*mask)); |
| 34 | } |
| 35 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 36 | static inline void snd_mask_any(struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
| 38 | memset(mask, 0xff, SNDRV_MASK_SIZE * sizeof(u_int32_t)); |
| 39 | } |
| 40 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 41 | static inline int snd_mask_empty(const struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
| 43 | int i; |
| 44 | for (i = 0; i < SNDRV_MASK_SIZE; i++) |
| 45 | if (mask->bits[i]) |
| 46 | return 0; |
| 47 | return 1; |
| 48 | } |
| 49 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 50 | static inline unsigned int snd_mask_min(const struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
| 52 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | for (i = 0; i < SNDRV_MASK_SIZE; i++) { |
| 54 | if (mask->bits[i]) |
Lars-Peter Clausen | 599ee32 | 2014-12-29 19:41:44 +0100 | [diff] [blame] | 55 | return __ffs(mask->bits[i]) + (i << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
| 57 | return 0; |
| 58 | } |
| 59 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 60 | static inline unsigned int snd_mask_max(const struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | for (i = SNDRV_MASK_SIZE - 1; i >= 0; i--) { |
| 64 | if (mask->bits[i]) |
Lars-Peter Clausen | 757b037 | 2014-12-29 19:41:46 +0100 | [diff] [blame] | 65 | return __fls(mask->bits[i]) + (i << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | return 0; |
| 68 | } |
| 69 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 70 | static inline void snd_mask_set(struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | mask->bits[MASK_OFS(val)] |= MASK_BIT(val); |
| 73 | } |
| 74 | |
Takashi Iwai | 0b62834 | 2018-07-25 23:17:17 +0200 | [diff] [blame] | 75 | /* Most of drivers need only this one */ |
| 76 | static inline void snd_mask_set_format(struct snd_mask *mask, |
| 77 | snd_pcm_format_t format) |
| 78 | { |
| 79 | snd_mask_set(mask, (__force unsigned int)format); |
| 80 | } |
| 81 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 82 | static inline void snd_mask_reset(struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | mask->bits[MASK_OFS(val)] &= ~MASK_BIT(val); |
| 85 | } |
| 86 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 87 | static inline void snd_mask_set_range(struct snd_mask *mask, |
| 88 | unsigned int from, unsigned int to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
| 90 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | for (i = from; i <= to; i++) |
| 92 | mask->bits[MASK_OFS(i)] |= MASK_BIT(i); |
| 93 | } |
| 94 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 95 | static inline void snd_mask_reset_range(struct snd_mask *mask, |
| 96 | unsigned int from, unsigned int to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
| 98 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | for (i = from; i <= to; i++) |
| 100 | mask->bits[MASK_OFS(i)] &= ~MASK_BIT(i); |
| 101 | } |
| 102 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 103 | static inline void snd_mask_leave(struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
| 105 | unsigned int v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | v = mask->bits[MASK_OFS(val)] & MASK_BIT(val); |
| 107 | snd_mask_none(mask); |
| 108 | mask->bits[MASK_OFS(val)] = v; |
| 109 | } |
| 110 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 111 | static inline void snd_mask_intersect(struct snd_mask *mask, |
| 112 | const struct snd_mask *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | int i; |
| 115 | for (i = 0; i < SNDRV_MASK_SIZE; i++) |
| 116 | mask->bits[i] &= v->bits[i]; |
| 117 | } |
| 118 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 119 | static inline int snd_mask_eq(const struct snd_mask *mask, |
| 120 | const struct snd_mask *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
| 122 | return ! memcmp(mask, v, SNDRV_MASK_SIZE * sizeof(u_int32_t)); |
| 123 | } |
| 124 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 125 | static inline void snd_mask_copy(struct snd_mask *mask, |
| 126 | const struct snd_mask *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
| 128 | *mask = *v; |
| 129 | } |
| 130 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 131 | static inline int snd_mask_test(const struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | return mask->bits[MASK_OFS(val)] & MASK_BIT(val); |
| 134 | } |
| 135 | |
Takashi Iwai | b9c7d41 | 2020-02-06 17:39:39 +0100 | [diff] [blame^] | 136 | /* Most of drivers need only this one */ |
| 137 | static inline int snd_mask_test_format(const struct snd_mask *mask, |
| 138 | snd_pcm_format_t format) |
| 139 | { |
| 140 | return snd_mask_test(mask, (__force unsigned int)format); |
| 141 | } |
| 142 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 143 | static inline int snd_mask_single(const struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
| 145 | int i, c = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | for (i = 0; i < SNDRV_MASK_SIZE; i++) { |
| 147 | if (! mask->bits[i]) |
| 148 | continue; |
| 149 | if (mask->bits[i] & (mask->bits[i] - 1)) |
| 150 | return 0; |
| 151 | if (c) |
| 152 | return 0; |
| 153 | c++; |
| 154 | } |
| 155 | return 1; |
| 156 | } |
| 157 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 158 | static inline int snd_mask_refine(struct snd_mask *mask, |
| 159 | const struct snd_mask *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 161 | struct snd_mask old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | snd_mask_copy(&old, mask); |
| 163 | snd_mask_intersect(mask, v); |
| 164 | if (snd_mask_empty(mask)) |
| 165 | return -EINVAL; |
| 166 | return !snd_mask_eq(mask, &old); |
| 167 | } |
| 168 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 169 | static inline int snd_mask_refine_first(struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | if (snd_mask_single(mask)) |
| 172 | return 0; |
| 173 | snd_mask_leave(mask, snd_mask_min(mask)); |
| 174 | return 1; |
| 175 | } |
| 176 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 177 | static inline int snd_mask_refine_last(struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (snd_mask_single(mask)) |
| 180 | return 0; |
| 181 | snd_mask_leave(mask, snd_mask_max(mask)); |
| 182 | return 1; |
| 183 | } |
| 184 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 185 | static inline int snd_mask_refine_min(struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | if (snd_mask_min(mask) >= val) |
| 188 | return 0; |
| 189 | snd_mask_reset_range(mask, 0, val - 1); |
| 190 | if (snd_mask_empty(mask)) |
| 191 | return -EINVAL; |
| 192 | return 1; |
| 193 | } |
| 194 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 195 | static inline int snd_mask_refine_max(struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | if (snd_mask_max(mask) <= val) |
| 198 | return 0; |
| 199 | snd_mask_reset_range(mask, val + 1, SNDRV_MASK_BITS); |
| 200 | if (snd_mask_empty(mask)) |
| 201 | return -EINVAL; |
| 202 | return 1; |
| 203 | } |
| 204 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 205 | static inline int snd_mask_refine_set(struct snd_mask *mask, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
| 207 | int changed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | changed = !snd_mask_single(mask); |
| 209 | snd_mask_leave(mask, val); |
| 210 | if (snd_mask_empty(mask)) |
| 211 | return -EINVAL; |
| 212 | return changed; |
| 213 | } |
| 214 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 215 | static inline int snd_mask_value(const struct snd_mask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | return snd_mask_min(mask); |
| 218 | } |
| 219 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 220 | static inline void snd_interval_any(struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
| 222 | i->min = 0; |
| 223 | i->openmin = 0; |
| 224 | i->max = UINT_MAX; |
| 225 | i->openmax = 0; |
| 226 | i->integer = 0; |
| 227 | i->empty = 0; |
| 228 | } |
| 229 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 230 | static inline void snd_interval_none(struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
| 232 | i->empty = 1; |
| 233 | } |
| 234 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 235 | static inline int snd_interval_checkempty(const struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | { |
| 237 | return (i->min > i->max || |
| 238 | (i->min == i->max && (i->openmin || i->openmax))); |
| 239 | } |
| 240 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 241 | static inline int snd_interval_empty(const struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
| 243 | return i->empty; |
| 244 | } |
| 245 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 246 | static inline int snd_interval_single(const struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return (i->min == i->max || |
Takashi Iwai | 5363857 | 2018-11-29 12:05:19 +0100 | [diff] [blame] | 249 | (i->min + 1 == i->max && (i->openmin || i->openmax))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 252 | static inline int snd_interval_value(const struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
Takashi Iwai | 5363857 | 2018-11-29 12:05:19 +0100 | [diff] [blame] | 254 | if (i->openmin && !i->openmax) |
| 255 | return i->max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | return i->min; |
| 257 | } |
| 258 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 259 | static inline int snd_interval_min(const struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return i->min; |
| 262 | } |
| 263 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 264 | static inline int snd_interval_max(const struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
| 266 | unsigned int v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | v = i->max; |
| 268 | if (i->openmax) |
| 269 | v--; |
| 270 | return v; |
| 271 | } |
| 272 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 273 | static inline int snd_interval_test(const struct snd_interval *i, unsigned int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | return !((i->min > val || (i->min == val && i->openmin) || |
| 276 | i->max < val || (i->max == val && i->openmax))); |
| 277 | } |
| 278 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 279 | static inline void snd_interval_copy(struct snd_interval *d, const struct snd_interval *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
| 281 | *d = *s; |
| 282 | } |
| 283 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 284 | static inline int snd_interval_setinteger(struct snd_interval *i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { |
| 286 | if (i->integer) |
| 287 | return 0; |
| 288 | if (i->openmin && i->openmax && i->min == i->max) |
| 289 | return -EINVAL; |
| 290 | i->integer = 1; |
| 291 | return 1; |
| 292 | } |
| 293 | |
Takashi Iwai | 9bb22e2 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 294 | static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
| 296 | if (i1->empty) |
| 297 | return i2->empty; |
| 298 | if (i2->empty) |
| 299 | return i1->empty; |
| 300 | return i1->min == i2->min && i1->openmin == i2->openmin && |
| 301 | i1->max == i2->max && i1->openmax == i2->openmax; |
| 302 | } |
| 303 | |
Lars-Peter Clausen | 89827ca | 2014-12-29 19:41:42 +0100 | [diff] [blame] | 304 | /** |
| 305 | * params_access - get the access type from the hw params |
| 306 | * @p: hw params |
| 307 | */ |
Lars-Peter Clausen | 744c2ad | 2014-12-29 19:41:41 +0100 | [diff] [blame] | 308 | static inline snd_pcm_access_t params_access(const struct snd_pcm_hw_params *p) |
| 309 | { |
| 310 | return (__force snd_pcm_access_t)snd_mask_min(hw_param_mask_c(p, |
| 311 | SNDRV_PCM_HW_PARAM_ACCESS)); |
| 312 | } |
| 313 | |
Lars-Peter Clausen | 89827ca | 2014-12-29 19:41:42 +0100 | [diff] [blame] | 314 | /** |
| 315 | * params_format - get the sample format from the hw params |
| 316 | * @p: hw params |
| 317 | */ |
Lars-Peter Clausen | 744c2ad | 2014-12-29 19:41:41 +0100 | [diff] [blame] | 318 | static inline snd_pcm_format_t params_format(const struct snd_pcm_hw_params *p) |
| 319 | { |
| 320 | return (__force snd_pcm_format_t)snd_mask_min(hw_param_mask_c(p, |
| 321 | SNDRV_PCM_HW_PARAM_FORMAT)); |
| 322 | } |
| 323 | |
Lars-Peter Clausen | 89827ca | 2014-12-29 19:41:42 +0100 | [diff] [blame] | 324 | /** |
| 325 | * params_subformat - get the sample subformat from the hw params |
| 326 | * @p: hw params |
| 327 | */ |
Lars-Peter Clausen | 744c2ad | 2014-12-29 19:41:41 +0100 | [diff] [blame] | 328 | static inline snd_pcm_subformat_t |
| 329 | params_subformat(const struct snd_pcm_hw_params *p) |
| 330 | { |
| 331 | return (__force snd_pcm_subformat_t)snd_mask_min(hw_param_mask_c(p, |
| 332 | SNDRV_PCM_HW_PARAM_SUBFORMAT)); |
| 333 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Lars-Peter Clausen | 89827ca | 2014-12-29 19:41:42 +0100 | [diff] [blame] | 335 | /** |
| 336 | * params_period_bytes - get the period size (in bytes) from the hw params |
| 337 | * @p: hw params |
| 338 | */ |
Takashi Iwai | b51beb7 | 2011-07-26 12:02:56 +0200 | [diff] [blame] | 339 | static inline unsigned int |
| 340 | params_period_bytes(const struct snd_pcm_hw_params *p) |
| 341 | { |
Lars-Peter Clausen | cd9978f | 2014-12-29 19:41:43 +0100 | [diff] [blame] | 342 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIOD_BYTES)->min; |
Takashi Iwai | b51beb7 | 2011-07-26 12:02:56 +0200 | [diff] [blame] | 343 | } |
| 344 | |
Lars-Peter Clausen | 89827ca | 2014-12-29 19:41:42 +0100 | [diff] [blame] | 345 | /** |
| 346 | * params_width - get the number of bits of the sample format from the hw params |
| 347 | * @p: hw params |
| 348 | * |
| 349 | * This function returns the number of bits per sample that the selected sample |
| 350 | * format of the hw params has. |
| 351 | */ |
| 352 | static inline int params_width(const struct snd_pcm_hw_params *p) |
Mark Brown | 8c5178f | 2013-12-24 12:24:28 +0000 | [diff] [blame] | 353 | { |
| 354 | return snd_pcm_format_width(params_format(p)); |
| 355 | } |
| 356 | |
Lars-Peter Clausen | 89827ca | 2014-12-29 19:41:42 +0100 | [diff] [blame] | 357 | /* |
| 358 | * params_physical_width - get the storage size of the sample format from the hw params |
| 359 | * @p: hw params |
| 360 | * |
| 361 | * This functions returns the number of bits per sample that the selected sample |
| 362 | * format of the hw params takes up in memory. This will be equal or larger than |
| 363 | * params_width(). |
| 364 | */ |
| 365 | static inline int params_physical_width(const struct snd_pcm_hw_params *p) |
Mark Brown | 8c5178f | 2013-12-24 12:24:28 +0000 | [diff] [blame] | 366 | { |
| 367 | return snd_pcm_format_physical_width(params_format(p)); |
| 368 | } |
| 369 | |
Fang, Yang A | 052a9f6 | 2015-02-09 00:18:11 -0800 | [diff] [blame] | 370 | static inline void |
| 371 | params_set_format(struct snd_pcm_hw_params *p, snd_pcm_format_t fmt) |
| 372 | { |
Takashi Iwai | 0b62834 | 2018-07-25 23:17:17 +0200 | [diff] [blame] | 373 | snd_mask_set_format(hw_param_mask(p, SNDRV_PCM_HW_PARAM_FORMAT), fmt); |
Fang, Yang A | 052a9f6 | 2015-02-09 00:18:11 -0800 | [diff] [blame] | 374 | } |
| 375 | |
Takashi Iwai | b51beb7 | 2011-07-26 12:02:56 +0200 | [diff] [blame] | 376 | #endif /* __SOUND_PCM_PARAMS_H */ |