diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-11-02 14:02:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-11-02 14:02:52 -0400 |
commit | 54480aa7fac324c1c50519e69287cf49aa2f3afc (patch) | |
tree | 37289cb1de0e450fb44c7704e37779c8ed167a5c | |
parent | bc6080ae38b3b0c6e8166f8561e993298095f7be (diff) | |
parent | 826b5de90c0bca4e9de6231da9e1730480621588 (diff) |
Merge tag 'sound-fix-4.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
Pull sound fixes from Takashi Iwai:
"A few device-specific fixes: a fix for SPDIF on old Creative PCI
board, and two additional fixes for the recent changes in FireWire
audio stack"
* tag 'sound-fix-4.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound:
ALSA: firewire-lib: fix insufficient PCM rule for period/buffer size
ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops
ALSA: dice: fix to wait for releases of all ALSA character devices
-rw-r--r-- | sound/firewire/amdtp-stream.c | 57 | ||||
-rw-r--r-- | sound/firewire/dice/dice.c | 4 | ||||
-rw-r--r-- | sound/pci/ca0106/ca0106.h | 2 |
3 files changed, 12 insertions, 51 deletions
diff --git a/sound/firewire/amdtp-stream.c b/sound/firewire/amdtp-stream.c index fcd965f1d69e..9be76c808fcc 100644 --- a/sound/firewire/amdtp-stream.c +++ b/sound/firewire/amdtp-stream.c | |||
@@ -146,53 +146,22 @@ static int apply_constraint_to_size(struct snd_pcm_hw_params *params, | |||
146 | struct snd_interval *s = hw_param_interval(params, rule->var); | 146 | struct snd_interval *s = hw_param_interval(params, rule->var); |
147 | const struct snd_interval *r = | 147 | const struct snd_interval *r = |
148 | hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_RATE); | 148 | hw_param_interval_c(params, SNDRV_PCM_HW_PARAM_RATE); |
149 | struct snd_interval t = { | 149 | struct snd_interval t = {0}; |
150 | .min = s->min, .max = s->max, .integer = 1, | 150 | unsigned int step = 0; |
151 | }; | ||
152 | int i; | 151 | int i; |
153 | 152 | ||
154 | for (i = 0; i < CIP_SFC_COUNT; ++i) { | 153 | for (i = 0; i < CIP_SFC_COUNT; ++i) { |
155 | unsigned int rate = amdtp_rate_table[i]; | 154 | if (snd_interval_test(r, amdtp_rate_table[i])) |
156 | unsigned int step = amdtp_syt_intervals[i]; | 155 | step = max(step, amdtp_syt_intervals[i]); |
157 | |||
158 | if (!snd_interval_test(r, rate)) | ||
159 | continue; | ||
160 | |||
161 | t.min = roundup(t.min, step); | ||
162 | t.max = rounddown(t.max, step); | ||
163 | } | 156 | } |
164 | 157 | ||
165 | if (snd_interval_checkempty(&t)) | 158 | t.min = roundup(s->min, step); |
166 | return -EINVAL; | 159 | t.max = rounddown(s->max, step); |
160 | t.integer = 1; | ||
167 | 161 | ||
168 | return snd_interval_refine(s, &t); | 162 | return snd_interval_refine(s, &t); |
169 | } | 163 | } |
170 | 164 | ||
171 | static int apply_constraint_to_rate(struct snd_pcm_hw_params *params, | ||
172 | struct snd_pcm_hw_rule *rule) | ||
173 | { | ||
174 | struct snd_interval *r = | ||
175 | hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE); | ||
176 | const struct snd_interval *s = hw_param_interval_c(params, rule->deps[0]); | ||
177 | struct snd_interval t = { | ||
178 | .min = UINT_MAX, .max = 0, .integer = 1, | ||
179 | }; | ||
180 | int i; | ||
181 | |||
182 | for (i = 0; i < CIP_SFC_COUNT; ++i) { | ||
183 | unsigned int step = amdtp_syt_intervals[i]; | ||
184 | unsigned int rate = amdtp_rate_table[i]; | ||
185 | |||
186 | if (s->min % step || s->max % step) | ||
187 | continue; | ||
188 | |||
189 | t.min = min(t.min, rate); | ||
190 | t.max = max(t.max, rate); | ||
191 | } | ||
192 | |||
193 | return snd_interval_refine(r, &t); | ||
194 | } | ||
195 | |||
196 | /** | 165 | /** |
197 | * amdtp_stream_add_pcm_hw_constraints - add hw constraints for PCM substream | 166 | * amdtp_stream_add_pcm_hw_constraints - add hw constraints for PCM substream |
198 | * @s: the AMDTP stream, which must be initialized. | 167 | * @s: the AMDTP stream, which must be initialized. |
@@ -250,24 +219,16 @@ int amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream *s, | |||
250 | */ | 219 | */ |
251 | err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, | 220 | err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, |
252 | apply_constraint_to_size, NULL, | 221 | apply_constraint_to_size, NULL, |
222 | SNDRV_PCM_HW_PARAM_PERIOD_SIZE, | ||
253 | SNDRV_PCM_HW_PARAM_RATE, -1); | 223 | SNDRV_PCM_HW_PARAM_RATE, -1); |
254 | if (err < 0) | 224 | if (err < 0) |
255 | goto end; | 225 | goto end; |
256 | err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, | ||
257 | apply_constraint_to_rate, NULL, | ||
258 | SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1); | ||
259 | if (err < 0) | ||
260 | goto end; | ||
261 | err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, | 226 | err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, |
262 | apply_constraint_to_size, NULL, | 227 | apply_constraint_to_size, NULL, |
228 | SNDRV_PCM_HW_PARAM_BUFFER_SIZE, | ||
263 | SNDRV_PCM_HW_PARAM_RATE, -1); | 229 | SNDRV_PCM_HW_PARAM_RATE, -1); |
264 | if (err < 0) | 230 | if (err < 0) |
265 | goto end; | 231 | goto end; |
266 | err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, | ||
267 | apply_constraint_to_rate, NULL, | ||
268 | SNDRV_PCM_HW_PARAM_BUFFER_SIZE, -1); | ||
269 | if (err < 0) | ||
270 | goto end; | ||
271 | end: | 232 | end: |
272 | return err; | 233 | return err; |
273 | } | 234 | } |
diff --git a/sound/firewire/dice/dice.c b/sound/firewire/dice/dice.c index 0f6dbcffe711..ed50b222d36e 100644 --- a/sound/firewire/dice/dice.c +++ b/sound/firewire/dice/dice.c | |||
@@ -240,8 +240,8 @@ static void dice_remove(struct fw_unit *unit) | |||
240 | cancel_delayed_work_sync(&dice->dwork); | 240 | cancel_delayed_work_sync(&dice->dwork); |
241 | 241 | ||
242 | if (dice->registered) { | 242 | if (dice->registered) { |
243 | /* No need to wait for releasing card object in this context. */ | 243 | // Block till all of ALSA character devices are released. |
244 | snd_card_free_when_closed(dice->card); | 244 | snd_card_free(dice->card); |
245 | } | 245 | } |
246 | 246 | ||
247 | mutex_destroy(&dice->mutex); | 247 | mutex_destroy(&dice->mutex); |
diff --git a/sound/pci/ca0106/ca0106.h b/sound/pci/ca0106/ca0106.h index 04402c14cb23..9847b669cf3c 100644 --- a/sound/pci/ca0106/ca0106.h +++ b/sound/pci/ca0106/ca0106.h | |||
@@ -582,7 +582,7 @@ | |||
582 | #define SPI_PL_BIT_R_R (2<<7) /* right channel = right */ | 582 | #define SPI_PL_BIT_R_R (2<<7) /* right channel = right */ |
583 | #define SPI_PL_BIT_R_C (3<<7) /* right channel = (L+R)/2 */ | 583 | #define SPI_PL_BIT_R_C (3<<7) /* right channel = (L+R)/2 */ |
584 | #define SPI_IZD_REG 2 | 584 | #define SPI_IZD_REG 2 |
585 | #define SPI_IZD_BIT (1<<4) /* infinite zero detect */ | 585 | #define SPI_IZD_BIT (0<<4) /* infinite zero detect */ |
586 | 586 | ||
587 | #define SPI_FMT_REG 3 | 587 | #define SPI_FMT_REG 3 |
588 | #define SPI_FMT_BIT_RJ (0<<0) /* right justified mode */ | 588 | #define SPI_FMT_BIT_RJ (0<<0) /* right justified mode */ |