blob: f24659af53d36633a1e78edf31af7372e6c2f6b0 [file] [log] [blame]
Clemens Ladischd0ce9942007-12-23 19:50:57 +01001/*
2 * C-Media CMI8788 driver - PCM code
3 *
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 *
6 *
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License, version 2.
9 *
10 * This driver is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this driver; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Clemens Ladischd0ce9942007-12-23 19:50:57 +010020#include <linux/pci.h>
21#include <sound/control.h>
22#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
25#include "oxygen.h"
26
27static struct snd_pcm_hardware oxygen_hardware[PCM_COUNT] = {
28 [PCM_A] = {
29 .info = SNDRV_PCM_INFO_MMAP |
30 SNDRV_PCM_INFO_MMAP_VALID |
31 SNDRV_PCM_INFO_INTERLEAVED |
32 SNDRV_PCM_INFO_PAUSE |
33 SNDRV_PCM_INFO_SYNC_START,
34 .formats = SNDRV_PCM_FMTBIT_S16_LE |
35 SNDRV_PCM_FMTBIT_S32_LE,
Clemens Ladisch747c6012008-01-16 08:32:53 +010036 .rates = SNDRV_PCM_RATE_32000 |
37 SNDRV_PCM_RATE_44100 |
Clemens Ladischd0ce9942007-12-23 19:50:57 +010038 SNDRV_PCM_RATE_48000 |
Clemens Ladisch747c6012008-01-16 08:32:53 +010039 SNDRV_PCM_RATE_64000 |
40 SNDRV_PCM_RATE_88200 |
Clemens Ladischd0ce9942007-12-23 19:50:57 +010041 SNDRV_PCM_RATE_96000 |
Clemens Ladisch747c6012008-01-16 08:32:53 +010042 SNDRV_PCM_RATE_176400 |
Clemens Ladischd0ce9942007-12-23 19:50:57 +010043 SNDRV_PCM_RATE_192000,
Clemens Ladisch747c6012008-01-16 08:32:53 +010044 .rate_min = 32000,
Clemens Ladischd0ce9942007-12-23 19:50:57 +010045 .rate_max = 192000,
46 .channels_min = 2,
47 .channels_max = 2,
48 .buffer_bytes_max = 256 * 1024,
49 .period_bytes_min = 128,
50 .period_bytes_max = 128 * 1024,
51 .periods_min = 2,
52 .periods_max = 2048,
53 },
54 [PCM_B] = {
55 .info = SNDRV_PCM_INFO_MMAP |
56 SNDRV_PCM_INFO_MMAP_VALID |
57 SNDRV_PCM_INFO_INTERLEAVED |
58 SNDRV_PCM_INFO_PAUSE |
59 SNDRV_PCM_INFO_SYNC_START,
60 .formats = SNDRV_PCM_FMTBIT_S16_LE |
61 SNDRV_PCM_FMTBIT_S32_LE,
62 .rates = SNDRV_PCM_RATE_32000 |
63 SNDRV_PCM_RATE_44100 |
64 SNDRV_PCM_RATE_48000 |
65 SNDRV_PCM_RATE_64000 |
66 SNDRV_PCM_RATE_88200 |
67 SNDRV_PCM_RATE_96000 |
68 SNDRV_PCM_RATE_176400 |
69 SNDRV_PCM_RATE_192000,
70 .rate_min = 32000,
71 .rate_max = 192000,
72 .channels_min = 2,
73 .channels_max = 2,
74 .buffer_bytes_max = 256 * 1024,
75 .period_bytes_min = 128,
76 .period_bytes_max = 128 * 1024,
77 .periods_min = 2,
78 .periods_max = 2048,
79 },
80 [PCM_C] = {
81 .info = SNDRV_PCM_INFO_MMAP |
82 SNDRV_PCM_INFO_MMAP_VALID |
83 SNDRV_PCM_INFO_INTERLEAVED |
84 SNDRV_PCM_INFO_PAUSE |
85 SNDRV_PCM_INFO_SYNC_START,
86 .formats = SNDRV_PCM_FMTBIT_S16_LE |
87 SNDRV_PCM_FMTBIT_S32_LE,
88 .rates = SNDRV_PCM_RATE_44100 |
89 SNDRV_PCM_RATE_48000 |
90 SNDRV_PCM_RATE_88200 |
91 SNDRV_PCM_RATE_96000,
92 .rate_min = 44100,
93 .rate_max = 96000,
94 .channels_min = 2,
95 .channels_max = 2,
96 .buffer_bytes_max = 256 * 1024,
97 .period_bytes_min = 128,
98 .period_bytes_max = 128 * 1024,
99 .periods_min = 2,
100 .periods_max = 2048,
101 },
102 [PCM_SPDIF] = {
103 .info = SNDRV_PCM_INFO_MMAP |
104 SNDRV_PCM_INFO_MMAP_VALID |
105 SNDRV_PCM_INFO_INTERLEAVED |
106 SNDRV_PCM_INFO_PAUSE |
107 SNDRV_PCM_INFO_SYNC_START,
108 .formats = SNDRV_PCM_FMTBIT_S16_LE |
109 SNDRV_PCM_FMTBIT_S32_LE,
110 .rates = SNDRV_PCM_RATE_32000 |
111 SNDRV_PCM_RATE_44100 |
112 SNDRV_PCM_RATE_48000 |
113 SNDRV_PCM_RATE_64000 |
114 SNDRV_PCM_RATE_88200 |
115 SNDRV_PCM_RATE_96000 |
116 SNDRV_PCM_RATE_176400 |
117 SNDRV_PCM_RATE_192000,
118 .rate_min = 32000,
119 .rate_max = 192000,
120 .channels_min = 2,
121 .channels_max = 2,
122 .buffer_bytes_max = 256 * 1024,
123 .period_bytes_min = 128,
124 .period_bytes_max = 128 * 1024,
125 .periods_min = 2,
126 .periods_max = 2048,
127 },
128 [PCM_MULTICH] = {
129 .info = SNDRV_PCM_INFO_MMAP |
130 SNDRV_PCM_INFO_MMAP_VALID |
131 SNDRV_PCM_INFO_INTERLEAVED |
132 SNDRV_PCM_INFO_PAUSE |
133 SNDRV_PCM_INFO_SYNC_START,
134 .formats = SNDRV_PCM_FMTBIT_S16_LE |
135 SNDRV_PCM_FMTBIT_S32_LE,
136 .rates = SNDRV_PCM_RATE_32000 |
137 SNDRV_PCM_RATE_44100 |
138 SNDRV_PCM_RATE_48000 |
139 SNDRV_PCM_RATE_64000 |
140 SNDRV_PCM_RATE_88200 |
141 SNDRV_PCM_RATE_96000 |
142 SNDRV_PCM_RATE_176400 |
143 SNDRV_PCM_RATE_192000,
144 .rate_min = 32000,
145 .rate_max = 192000,
146 .channels_min = 2,
147 .channels_max = 8,
148 .buffer_bytes_max = 2048 * 1024,
149 .period_bytes_min = 128,
150 .period_bytes_max = 256 * 1024,
151 .periods_min = 2,
152 .periods_max = 16384,
153 },
154 [PCM_AC97] = {
155 .info = SNDRV_PCM_INFO_MMAP |
156 SNDRV_PCM_INFO_MMAP_VALID |
157 SNDRV_PCM_INFO_INTERLEAVED |
158 SNDRV_PCM_INFO_PAUSE |
159 SNDRV_PCM_INFO_SYNC_START,
160 .formats = SNDRV_PCM_FMTBIT_S16_LE,
161 .rates = SNDRV_PCM_RATE_48000,
162 .rate_min = 48000,
163 .rate_max = 48000,
164 .channels_min = 2,
165 .channels_max = 2,
166 .buffer_bytes_max = 256 * 1024,
167 .period_bytes_min = 128,
168 .period_bytes_max = 128 * 1024,
169 .periods_min = 2,
170 .periods_max = 2048,
171 },
172};
173
Clemens Ladisch740eb832008-01-04 09:22:20 +0100174static inline unsigned int
175oxygen_substream_channel(struct snd_pcm_substream *substream)
176{
177 return (unsigned int)(uintptr_t)substream->runtime->private_data;
178}
179
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100180static int oxygen_open(struct snd_pcm_substream *substream,
181 unsigned int channel)
182{
183 struct oxygen *chip = snd_pcm_substream_chip(substream);
184 struct snd_pcm_runtime *runtime = substream->runtime;
185 int err;
186
Clemens Ladisch740eb832008-01-04 09:22:20 +0100187 runtime->private_data = (void *)(uintptr_t)channel;
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100188 runtime->hw = oxygen_hardware[channel];
Clemens Ladisch747c6012008-01-16 08:32:53 +0100189 if (chip->model->pcm_hardware_filter)
190 chip->model->pcm_hardware_filter(channel, &runtime->hw);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100191 err = snd_pcm_hw_constraint_step(runtime, 0,
192 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
193 if (err < 0)
194 return err;
195 err = snd_pcm_hw_constraint_step(runtime, 0,
196 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 32);
197 if (err < 0)
198 return err;
199 if (runtime->hw.formats & SNDRV_PCM_FMTBIT_S32_LE) {
200 err = snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
201 if (err < 0)
202 return err;
203 }
204 if (runtime->hw.channels_max > 2) {
205 err = snd_pcm_hw_constraint_step(runtime, 0,
206 SNDRV_PCM_HW_PARAM_CHANNELS,
207 2);
208 if (err < 0)
209 return err;
210 }
211 snd_pcm_set_sync(substream);
212 chip->streams[channel] = substream;
213
214 mutex_lock(&chip->mutex);
215 chip->pcm_active |= 1 << channel;
216 if (channel == PCM_SPDIF) {
217 chip->spdif_pcm_bits = chip->spdif_bits;
Clemens Ladisch01a3aff2008-01-14 08:56:01 +0100218 chip->controls[CONTROL_SPDIF_PCM]->vd[0].access &=
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100219 ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
220 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE |
221 SNDRV_CTL_EVENT_MASK_INFO,
Clemens Ladisch01a3aff2008-01-14 08:56:01 +0100222 &chip->controls[CONTROL_SPDIF_PCM]->id);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100223 }
224 mutex_unlock(&chip->mutex);
225
226 return 0;
227}
228
229static int oxygen_rec_a_open(struct snd_pcm_substream *substream)
230{
231 return oxygen_open(substream, PCM_A);
232}
233
234static int oxygen_rec_b_open(struct snd_pcm_substream *substream)
235{
236 return oxygen_open(substream, PCM_B);
237}
238
239static int oxygen_rec_c_open(struct snd_pcm_substream *substream)
240{
241 return oxygen_open(substream, PCM_C);
242}
243
244static int oxygen_spdif_open(struct snd_pcm_substream *substream)
245{
246 return oxygen_open(substream, PCM_SPDIF);
247}
248
249static int oxygen_multich_open(struct snd_pcm_substream *substream)
250{
251 return oxygen_open(substream, PCM_MULTICH);
252}
253
254static int oxygen_ac97_open(struct snd_pcm_substream *substream)
255{
256 return oxygen_open(substream, PCM_AC97);
257}
258
259static int oxygen_close(struct snd_pcm_substream *substream)
260{
261 struct oxygen *chip = snd_pcm_substream_chip(substream);
Clemens Ladisch740eb832008-01-04 09:22:20 +0100262 unsigned int channel = oxygen_substream_channel(substream);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100263
264 mutex_lock(&chip->mutex);
265 chip->pcm_active &= ~(1 << channel);
266 if (channel == PCM_SPDIF) {
Clemens Ladisch01a3aff2008-01-14 08:56:01 +0100267 chip->controls[CONTROL_SPDIF_PCM]->vd[0].access |=
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100268 SNDRV_CTL_ELEM_ACCESS_INACTIVE;
269 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE |
270 SNDRV_CTL_EVENT_MASK_INFO,
Clemens Ladisch01a3aff2008-01-14 08:56:01 +0100271 &chip->controls[CONTROL_SPDIF_PCM]->id);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100272 }
273 if (channel == PCM_SPDIF || channel == PCM_MULTICH)
274 oxygen_update_spdif_source(chip);
275 mutex_unlock(&chip->mutex);
276
277 chip->streams[channel] = NULL;
278 return 0;
279}
280
281static unsigned int oxygen_format(struct snd_pcm_hw_params *hw_params)
282{
283 if (params_format(hw_params) == SNDRV_PCM_FORMAT_S32_LE)
284 return OXYGEN_FORMAT_24;
285 else
286 return OXYGEN_FORMAT_16;
287}
288
289static unsigned int oxygen_rate(struct snd_pcm_hw_params *hw_params)
290{
291 switch (params_rate(hw_params)) {
292 case 32000:
293 return OXYGEN_RATE_32000;
294 case 44100:
295 return OXYGEN_RATE_44100;
296 default: /* 48000 */
297 return OXYGEN_RATE_48000;
298 case 64000:
299 return OXYGEN_RATE_64000;
300 case 88200:
301 return OXYGEN_RATE_88200;
302 case 96000:
303 return OXYGEN_RATE_96000;
304 case 176400:
305 return OXYGEN_RATE_176400;
306 case 192000:
307 return OXYGEN_RATE_192000;
308 }
309}
310
311static unsigned int oxygen_i2s_magic2(struct snd_pcm_hw_params *hw_params)
312{
313 return params_rate(hw_params) <= 96000 ? 0x10 : 0x00;
314}
315
Clemens Ladisch05855ba2008-01-17 09:05:09 +0100316static unsigned int oxygen_i2s_bits(struct snd_pcm_hw_params *hw_params)
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100317{
318 if (params_format(hw_params) == SNDRV_PCM_FORMAT_S32_LE)
Clemens Ladisch05855ba2008-01-17 09:05:09 +0100319 return OXYGEN_I2S_BITS_24;
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100320 else
Clemens Ladisch05855ba2008-01-17 09:05:09 +0100321 return OXYGEN_I2S_BITS_16;
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100322}
323
324static unsigned int oxygen_play_channels(struct snd_pcm_hw_params *hw_params)
325{
326 switch (params_channels(hw_params)) {
327 default: /* 2 */
328 return OXYGEN_PLAY_CHANNELS_2;
329 case 4:
330 return OXYGEN_PLAY_CHANNELS_4;
331 case 6:
332 return OXYGEN_PLAY_CHANNELS_6;
333 case 8:
334 return OXYGEN_PLAY_CHANNELS_8;
335 }
336}
337
338static const unsigned int channel_base_registers[PCM_COUNT] = {
339 [PCM_A] = OXYGEN_DMA_A_ADDRESS,
340 [PCM_B] = OXYGEN_DMA_B_ADDRESS,
341 [PCM_C] = OXYGEN_DMA_C_ADDRESS,
342 [PCM_SPDIF] = OXYGEN_DMA_SPDIF_ADDRESS,
343 [PCM_MULTICH] = OXYGEN_DMA_MULTICH_ADDRESS,
344 [PCM_AC97] = OXYGEN_DMA_AC97_ADDRESS,
345};
346
347static int oxygen_hw_params(struct snd_pcm_substream *substream,
348 struct snd_pcm_hw_params *hw_params)
349{
350 struct oxygen *chip = snd_pcm_substream_chip(substream);
Clemens Ladisch740eb832008-01-04 09:22:20 +0100351 unsigned int channel = oxygen_substream_channel(substream);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100352 int err;
353
354 err = snd_pcm_lib_malloc_pages(substream,
355 params_buffer_bytes(hw_params));
356 if (err < 0)
357 return err;
358
359 oxygen_write32(chip, channel_base_registers[channel],
360 (u32)substream->runtime->dma_addr);
361 if (channel == PCM_MULTICH) {
362 oxygen_write32(chip, OXYGEN_DMA_MULTICH_COUNT,
363 params_buffer_bytes(hw_params) / 4 - 1);
364 oxygen_write32(chip, OXYGEN_DMA_MULTICH_TCOUNT,
365 params_period_bytes(hw_params) / 4 - 1);
366 } else {
367 oxygen_write16(chip, channel_base_registers[channel] + 4,
368 params_buffer_bytes(hw_params) / 4 - 1);
369 oxygen_write16(chip, channel_base_registers[channel] + 6,
370 params_period_bytes(hw_params) / 4 - 1);
371 }
372 return 0;
373}
374
375static int oxygen_rec_a_hw_params(struct snd_pcm_substream *substream,
376 struct snd_pcm_hw_params *hw_params)
377{
378 struct oxygen *chip = snd_pcm_substream_chip(substream);
379 int err;
380
381 err = oxygen_hw_params(substream, hw_params);
382 if (err < 0)
383 return err;
384
385 spin_lock_irq(&chip->reg_lock);
386 oxygen_write8_masked(chip, OXYGEN_REC_FORMAT,
387 oxygen_format(hw_params) << OXYGEN_REC_FORMAT_A_SHIFT,
388 OXYGEN_REC_FORMAT_A_MASK);
Clemens Ladisch05855ba2008-01-17 09:05:09 +0100389 oxygen_write16_masked(chip, OXYGEN_I2S_A_FORMAT,
390 oxygen_rate(hw_params) |
391 oxygen_i2s_magic2(hw_params) |
392 chip->model->adc_i2s_format |
393 oxygen_i2s_bits(hw_params),
394 OXYGEN_I2S_RATE_MASK |
395 OXYGEN_I2S_FORMAT_MASK |
396 OXYGEN_I2S_MAGIC2_MASK |
397 OXYGEN_I2S_BITS_MASK);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100398 oxygen_clear_bits8(chip, OXYGEN_REC_ROUTING, 0x08);
399 spin_unlock_irq(&chip->reg_lock);
400
401 mutex_lock(&chip->mutex);
402 chip->model->set_adc_params(chip, hw_params);
403 mutex_unlock(&chip->mutex);
404 return 0;
405}
406
407static int oxygen_rec_b_hw_params(struct snd_pcm_substream *substream,
408 struct snd_pcm_hw_params *hw_params)
409{
410 struct oxygen *chip = snd_pcm_substream_chip(substream);
411 int err;
412
413 err = oxygen_hw_params(substream, hw_params);
414 if (err < 0)
415 return err;
416
417 spin_lock_irq(&chip->reg_lock);
418 oxygen_write8_masked(chip, OXYGEN_REC_FORMAT,
419 oxygen_format(hw_params) << OXYGEN_REC_FORMAT_B_SHIFT,
420 OXYGEN_REC_FORMAT_B_MASK);
Clemens Ladisch05855ba2008-01-17 09:05:09 +0100421 oxygen_write16_masked(chip, OXYGEN_I2S_B_FORMAT,
422 oxygen_rate(hw_params) |
423 oxygen_i2s_magic2(hw_params) |
424 chip->model->adc_i2s_format |
425 oxygen_i2s_bits(hw_params),
426 OXYGEN_I2S_RATE_MASK |
427 OXYGEN_I2S_FORMAT_MASK |
428 OXYGEN_I2S_MAGIC2_MASK |
429 OXYGEN_I2S_BITS_MASK);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100430 oxygen_clear_bits8(chip, OXYGEN_REC_ROUTING, 0x10);
431 spin_unlock_irq(&chip->reg_lock);
432
433 mutex_lock(&chip->mutex);
434 chip->model->set_adc_params(chip, hw_params);
435 mutex_unlock(&chip->mutex);
436 return 0;
437}
438
439static int oxygen_rec_c_hw_params(struct snd_pcm_substream *substream,
440 struct snd_pcm_hw_params *hw_params)
441{
442 struct oxygen *chip = snd_pcm_substream_chip(substream);
443 int err;
444
445 err = oxygen_hw_params(substream, hw_params);
446 if (err < 0)
447 return err;
448
449 spin_lock_irq(&chip->reg_lock);
450 oxygen_write8_masked(chip, OXYGEN_REC_FORMAT,
451 oxygen_format(hw_params) << OXYGEN_REC_FORMAT_C_SHIFT,
452 OXYGEN_REC_FORMAT_C_MASK);
453 oxygen_clear_bits8(chip, OXYGEN_REC_ROUTING, 0x20);
454 spin_unlock_irq(&chip->reg_lock);
455 return 0;
456}
457
458static int oxygen_spdif_hw_params(struct snd_pcm_substream *substream,
459 struct snd_pcm_hw_params *hw_params)
460{
461 struct oxygen *chip = snd_pcm_substream_chip(substream);
462 int err;
463
464 err = oxygen_hw_params(substream, hw_params);
465 if (err < 0)
466 return err;
467
468 spin_lock_irq(&chip->reg_lock);
469 oxygen_clear_bits32(chip, OXYGEN_SPDIF_CONTROL,
470 OXYGEN_SPDIF_OUT_ENABLE);
471 oxygen_write8_masked(chip, OXYGEN_PLAY_FORMAT,
472 oxygen_format(hw_params) << OXYGEN_SPDIF_FORMAT_SHIFT,
473 OXYGEN_SPDIF_FORMAT_MASK);
474 oxygen_write32_masked(chip, OXYGEN_SPDIF_CONTROL,
475 oxygen_rate(hw_params) << OXYGEN_SPDIF_OUT_RATE_SHIFT,
476 OXYGEN_SPDIF_OUT_RATE_MASK);
477 oxygen_update_spdif_source(chip);
478 spin_unlock_irq(&chip->reg_lock);
479 return 0;
480}
481
482static int oxygen_multich_hw_params(struct snd_pcm_substream *substream,
483 struct snd_pcm_hw_params *hw_params)
484{
485 struct oxygen *chip = snd_pcm_substream_chip(substream);
486 int err;
487
488 err = oxygen_hw_params(substream, hw_params);
489 if (err < 0)
490 return err;
491
492 spin_lock_irq(&chip->reg_lock);
493 oxygen_write8_masked(chip, OXYGEN_PLAY_CHANNELS,
494 oxygen_play_channels(hw_params),
495 OXYGEN_PLAY_CHANNELS_MASK);
496 oxygen_write8_masked(chip, OXYGEN_PLAY_FORMAT,
497 oxygen_format(hw_params) << OXYGEN_MULTICH_FORMAT_SHIFT,
498 OXYGEN_MULTICH_FORMAT_MASK);
499 oxygen_write16_masked(chip, OXYGEN_I2S_MULTICH_FORMAT,
Clemens Ladisch05855ba2008-01-17 09:05:09 +0100500 oxygen_rate(hw_params) |
501 chip->model->dac_i2s_format |
502 oxygen_i2s_bits(hw_params),
503 OXYGEN_I2S_RATE_MASK |
504 OXYGEN_I2S_FORMAT_MASK |
505 OXYGEN_I2S_BITS_MASK);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100506 oxygen_clear_bits16(chip, OXYGEN_PLAY_ROUTING, 0x001f);
507 oxygen_update_dac_routing(chip);
508 oxygen_update_spdif_source(chip);
509 spin_unlock_irq(&chip->reg_lock);
510
511 mutex_lock(&chip->mutex);
512 chip->model->set_dac_params(chip, hw_params);
513 mutex_unlock(&chip->mutex);
514 return 0;
515}
516
517static int oxygen_ac97_hw_params(struct snd_pcm_substream *substream,
518 struct snd_pcm_hw_params *hw_params)
519{
520 struct oxygen *chip = snd_pcm_substream_chip(substream);
521 int err;
522
523 err = oxygen_hw_params(substream, hw_params);
524 if (err < 0)
525 return err;
526
527 spin_lock_irq(&chip->reg_lock);
528 oxygen_write8_masked(chip, OXYGEN_PLAY_FORMAT,
529 oxygen_format(hw_params) << OXYGEN_AC97_FORMAT_SHIFT,
530 OXYGEN_AC97_FORMAT_MASK);
531 spin_unlock_irq(&chip->reg_lock);
532 return 0;
533}
534
535static int oxygen_hw_free(struct snd_pcm_substream *substream)
536{
537 struct oxygen *chip = snd_pcm_substream_chip(substream);
Clemens Ladisch740eb832008-01-04 09:22:20 +0100538 unsigned int channel = oxygen_substream_channel(substream);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100539
540 spin_lock_irq(&chip->reg_lock);
541 chip->interrupt_mask &= ~(1 << channel);
542 oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, chip->interrupt_mask);
543 spin_unlock_irq(&chip->reg_lock);
544
545 return snd_pcm_lib_free_pages(substream);
546}
547
548static int oxygen_spdif_hw_free(struct snd_pcm_substream *substream)
549{
550 struct oxygen *chip = snd_pcm_substream_chip(substream);
551
552 spin_lock_irq(&chip->reg_lock);
553 oxygen_clear_bits32(chip, OXYGEN_SPDIF_CONTROL,
554 OXYGEN_SPDIF_OUT_ENABLE);
555 spin_unlock_irq(&chip->reg_lock);
556 return oxygen_hw_free(substream);
557}
558
559static int oxygen_prepare(struct snd_pcm_substream *substream)
560{
561 struct oxygen *chip = snd_pcm_substream_chip(substream);
Clemens Ladisch740eb832008-01-04 09:22:20 +0100562 unsigned int channel = oxygen_substream_channel(substream);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100563 unsigned int channel_mask = 1 << channel;
564
565 spin_lock_irq(&chip->reg_lock);
566 oxygen_set_bits8(chip, OXYGEN_DMA_FLUSH, channel_mask);
567 oxygen_clear_bits8(chip, OXYGEN_DMA_FLUSH, channel_mask);
568
569 chip->interrupt_mask |= channel_mask;
570 oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, chip->interrupt_mask);
571 spin_unlock_irq(&chip->reg_lock);
572 return 0;
573}
574
575static int oxygen_trigger(struct snd_pcm_substream *substream, int cmd)
576{
577 struct oxygen *chip = snd_pcm_substream_chip(substream);
578 struct snd_pcm_substream *s;
579 unsigned int mask = 0;
580 int running;
581
582 switch (cmd) {
583 case SNDRV_PCM_TRIGGER_STOP:
584 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
585 running = 0;
586 break;
587 case SNDRV_PCM_TRIGGER_START:
588 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
589 running = 1;
590 break;
591 default:
592 return -EINVAL;
593 }
594
595 snd_pcm_group_for_each_entry(s, substream) {
596 if (snd_pcm_substream_chip(s) == chip) {
Clemens Ladisch740eb832008-01-04 09:22:20 +0100597 mask |= 1 << oxygen_substream_channel(s);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100598 snd_pcm_trigger_done(s, substream);
599 }
600 }
601
602 spin_lock(&chip->reg_lock);
603 if (running)
604 chip->pcm_running |= mask;
605 else
606 chip->pcm_running &= ~mask;
607 oxygen_write8(chip, OXYGEN_DMA_STATUS, chip->pcm_running);
608 spin_unlock(&chip->reg_lock);
609 return 0;
610}
611
612static snd_pcm_uframes_t oxygen_pointer(struct snd_pcm_substream *substream)
613{
614 struct oxygen *chip = snd_pcm_substream_chip(substream);
615 struct snd_pcm_runtime *runtime = substream->runtime;
Clemens Ladisch740eb832008-01-04 09:22:20 +0100616 unsigned int channel = oxygen_substream_channel(substream);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100617 u32 curr_addr;
618
619 /* no spinlock, this read should be atomic */
620 curr_addr = oxygen_read32(chip, channel_base_registers[channel]);
621 return bytes_to_frames(runtime, curr_addr - (u32)runtime->dma_addr);
622}
623
624static struct snd_pcm_ops oxygen_rec_a_ops = {
625 .open = oxygen_rec_a_open,
626 .close = oxygen_close,
627 .ioctl = snd_pcm_lib_ioctl,
628 .hw_params = oxygen_rec_a_hw_params,
629 .hw_free = oxygen_hw_free,
630 .prepare = oxygen_prepare,
631 .trigger = oxygen_trigger,
632 .pointer = oxygen_pointer,
633};
634
635static struct snd_pcm_ops oxygen_rec_b_ops = {
636 .open = oxygen_rec_b_open,
637 .close = oxygen_close,
638 .ioctl = snd_pcm_lib_ioctl,
639 .hw_params = oxygen_rec_b_hw_params,
640 .hw_free = oxygen_hw_free,
641 .prepare = oxygen_prepare,
642 .trigger = oxygen_trigger,
643 .pointer = oxygen_pointer,
644};
645
646static struct snd_pcm_ops oxygen_rec_c_ops = {
647 .open = oxygen_rec_c_open,
648 .close = oxygen_close,
649 .ioctl = snd_pcm_lib_ioctl,
650 .hw_params = oxygen_rec_c_hw_params,
651 .hw_free = oxygen_hw_free,
652 .prepare = oxygen_prepare,
653 .trigger = oxygen_trigger,
654 .pointer = oxygen_pointer,
655};
656
657static struct snd_pcm_ops oxygen_spdif_ops = {
658 .open = oxygen_spdif_open,
659 .close = oxygen_close,
660 .ioctl = snd_pcm_lib_ioctl,
661 .hw_params = oxygen_spdif_hw_params,
662 .hw_free = oxygen_spdif_hw_free,
663 .prepare = oxygen_prepare,
664 .trigger = oxygen_trigger,
665 .pointer = oxygen_pointer,
666};
667
668static struct snd_pcm_ops oxygen_multich_ops = {
669 .open = oxygen_multich_open,
670 .close = oxygen_close,
671 .ioctl = snd_pcm_lib_ioctl,
672 .hw_params = oxygen_multich_hw_params,
673 .hw_free = oxygen_hw_free,
674 .prepare = oxygen_prepare,
675 .trigger = oxygen_trigger,
676 .pointer = oxygen_pointer,
677};
678
679static struct snd_pcm_ops oxygen_ac97_ops = {
680 .open = oxygen_ac97_open,
681 .close = oxygen_close,
682 .ioctl = snd_pcm_lib_ioctl,
683 .hw_params = oxygen_ac97_hw_params,
684 .hw_free = oxygen_hw_free,
685 .prepare = oxygen_prepare,
686 .trigger = oxygen_trigger,
687 .pointer = oxygen_pointer,
688};
689
690static void oxygen_pcm_free(struct snd_pcm *pcm)
691{
692 snd_pcm_lib_preallocate_free_for_all(pcm);
693}
694
695int __devinit oxygen_pcm_init(struct oxygen *chip)
696{
697 struct snd_pcm *pcm;
Clemens Ladische85e0922008-01-16 08:30:38 +0100698 int outs, ins;
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100699 int err;
700
Clemens Ladische85e0922008-01-16 08:30:38 +0100701 outs = 1; /* OXYGEN_CHANNEL_MULTICH is always used */
702 ins = !!(chip->model->used_channels & (OXYGEN_CHANNEL_A |
703 OXYGEN_CHANNEL_B));
704 err = snd_pcm_new(chip->card, "Analog", 0, outs, ins, &pcm);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100705 if (err < 0)
706 return err;
707 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &oxygen_multich_ops);
Clemens Ladische85e0922008-01-16 08:30:38 +0100708 if (chip->model->used_channels & OXYGEN_CHANNEL_A)
709 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
710 &oxygen_rec_a_ops);
711 else if (chip->model->used_channels & OXYGEN_CHANNEL_B)
712 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
713 &oxygen_rec_b_ops);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100714 pcm->private_data = chip;
715 pcm->private_free = oxygen_pcm_free;
716 strcpy(pcm->name, "Analog");
717 snd_pcm_lib_preallocate_pages(pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream,
718 SNDRV_DMA_TYPE_DEV,
719 snd_dma_pci_data(chip->pci),
720 512 * 1024, 2048 * 1024);
Clemens Ladische85e0922008-01-16 08:30:38 +0100721 if (ins)
722 snd_pcm_lib_preallocate_pages(pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream,
723 SNDRV_DMA_TYPE_DEV,
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100724 snd_dma_pci_data(chip->pci),
725 128 * 1024, 256 * 1024);
726
Clemens Ladische85e0922008-01-16 08:30:38 +0100727 outs = !!(chip->model->used_channels & OXYGEN_CHANNEL_SPDIF);
728 ins = !!(chip->model->used_channels & OXYGEN_CHANNEL_C);
729 if (outs | ins) {
730 err = snd_pcm_new(chip->card, "Digital", 1, outs, ins, &pcm);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100731 if (err < 0)
732 return err;
Clemens Ladische85e0922008-01-16 08:30:38 +0100733 if (outs)
734 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
735 &oxygen_spdif_ops);
736 if (ins)
737 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
738 &oxygen_rec_c_ops);
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100739 pcm->private_data = chip;
740 pcm->private_free = oxygen_pcm_free;
Clemens Ladische85e0922008-01-16 08:30:38 +0100741 strcpy(pcm->name, "Digital");
742 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
743 snd_dma_pci_data(chip->pci),
744 128 * 1024, 256 * 1024);
745 }
746
747 outs = chip->has_ac97_1 &&
748 (chip->model->used_channels & OXYGEN_CHANNEL_AC97);
749 ins = (chip->model->used_channels & (OXYGEN_CHANNEL_A |
750 OXYGEN_CHANNEL_B))
751 == (OXYGEN_CHANNEL_A | OXYGEN_CHANNEL_B);
752 if (outs | ins) {
753 err = snd_pcm_new(chip->card, ins ? "Analog2" : "AC97",
754 2, outs, ins, &pcm);
755 if (err < 0)
756 return err;
757 if (outs)
758 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
759 &oxygen_ac97_ops);
760 if (ins)
761 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
762 &oxygen_rec_b_ops);
763 pcm->private_data = chip;
764 pcm->private_free = oxygen_pcm_free;
765 strcpy(pcm->name, ins ? "Analog 2" : "Front Panel");
Clemens Ladischd0ce9942007-12-23 19:50:57 +0100766 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
767 snd_dma_pci_data(chip->pci),
768 128 * 1024, 256 * 1024);
769 }
770 return 0;
771}