2 * card driver for models with PCM1796 DACs (Xonar D2/D2X/HDAV1.3/ST/STX)
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this driver; if not, see <http://www.gnu.org/licenses/>.
25 * SPI 0 -> 1st PCM1796 (front)
26 * SPI 1 -> 2nd PCM1796 (surround)
27 * SPI 2 -> 3rd PCM1796 (center/LFE)
28 * SPI 4 -> 4th PCM1796 (back)
30 * GPIO 2 -> M0 of CS5381
31 * GPIO 3 -> M1 of CS5381
32 * GPIO 5 <- external power present (D2X only)
34 * GPIO 8 -> enable output to speakers
38 * LINE_OUT -> input of ADC
44 * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input
48 * Xonar HDAV1.3 (Deluxe)
49 * ----------------------
53 * I²C <-> PCM1796 (addr 1001100) (front)
55 * GPI 0 <- external power present
57 * GPIO 0 -> enable HDMI (0) or speaker (1) output
58 * GPIO 2 -> M0 of CS5381
59 * GPIO 3 -> M1 of CS5381
60 * GPIO 4 <- daughterboard detection
61 * GPIO 5 <- daughterboard detection
64 * GPIO 8 -> route input jack to line-in (0) or mic-in (1)
66 * UART <-> HDMI controller
70 * LINE_OUT -> input of ADC
76 * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input
89 * I²C <-> PCM1796 (addr 1001101) (surround)
90 * <-> PCM1796 (addr 1001110) (center/LFE)
91 * <-> PCM1796 (addr 1001111) (back)
93 * unknown daughterboard
94 * ---------------------
99 * I²C <-> CS4362A (addr 0011000) (surround, center/LFE, back)
103 * Xonar Essence ST (Deluxe)/STX
104 * -----------------------------
108 * I²C <-> PCM1792A (addr 1001100)
109 * <-> CS2000 (addr 1001110) (ST only)
111 * ADC1 MCLK -> REF_CLK of CS2000 (ST only)
113 * GPI 0 <- external power present (STX only)
115 * GPIO 0 -> enable output to speakers
116 * GPIO 1 -> route HP to front panel (0) or rear jack (1)
117 * GPIO 2 -> M0 of CS5381
118 * GPIO 3 -> M1 of CS5381
119 * GPIO 4 <- daughterboard detection
120 * GPIO 5 <- daughterboard detection
122 * GPIO 7 -> route output to speaker jacks (0) or HP (1)
123 * GPIO 8 -> route input jack to line-in (0) or mic-in (1)
127 * SCK <- CLK_OUT of CS2000 (ST only)
131 * LINE_OUT -> input of ADC
136 * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input
151 * I²C <-> PCM1796 (addr 1001100) (front)
152 * <-> CS4362A (addr 0011000) (surround, center/LFE, back)
153 * <-> CS2000 (addr 1001110)
155 * ADC1 MCLK -> REF_CLK of CS2000
157 * GPI 0 <- external power present
159 * GPIO 0 -> enable output
160 * GPIO 1 -> route HP to front panel (0) or rear jack (1)
161 * GPIO 2 -> M0 of CS5381
162 * GPIO 3 -> M1 of CS5381
163 * GPIO 4 -> enable output
164 * GPIO 5 -> enable output
166 * GPIO 7 -> route output to HP (0) or speaker (1)
167 * GPIO 8 -> route input jack to mic-in (0) or line-in (1)
171 * LINE_OUT -> input of ADC
177 * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input
178 * GPO 1 -> route mic-in from input jack (0) or front panel header (1)
181 #include <linux/pci.h>
182 #include <linux/delay.h>
183 #include <linux/mutex.h>
184 #include <sound/ac97_codec.h>
185 #include <sound/control.h>
186 #include <sound/core.h>
187 #include <sound/info.h>
188 #include <sound/pcm.h>
189 #include <sound/pcm_params.h>
190 #include <sound/tlv.h>
197 #define GPIO_D2X_EXT_POWER 0x0020
198 #define GPIO_D2_ALT 0x0080
199 #define GPIO_D2_OUTPUT_ENABLE 0x0100
201 #define GPI_EXT_POWER 0x01
202 #define GPIO_INPUT_ROUTE 0x0100
204 #define GPIO_HDAV_OUTPUT_ENABLE 0x0001
205 #define GPIO_HDAV_MAGIC 0x00c0
207 #define GPIO_DB_MASK 0x0030
208 #define GPIO_DB_H6 0x0000
210 #define GPIO_ST_OUTPUT_ENABLE 0x0001
211 #define GPIO_ST_HP_REAR 0x0002
212 #define GPIO_ST_MAGIC 0x0040
213 #define GPIO_ST_HP 0x0080
215 #define I2C_DEVICE_PCM1796(i) (0x98 + ((i) << 1)) /* 10011, ii, /W=0 */
216 #define I2C_DEVICE_CS2000 0x9c /* 100111, 0, /W=0 */
218 #define PCM1796_REG_BASE 16
221 struct xonar_pcm179x
{
222 struct xonar_generic generic
;
224 u8 pcm1796_regs
[4][5];
225 unsigned int current_rate
;
230 u8 cs2000_regs
[0x1f];
235 struct xonar_pcm179x pcm179x
;
236 struct xonar_hdmi hdmi
;
240 static inline void pcm1796_write_spi(struct oxygen
*chip
, unsigned int codec
,
243 /* maps ALSA channel pair number to SPI output */
244 static const u8 codec_map
[4] = {
247 oxygen_write_spi(chip
, OXYGEN_SPI_TRIGGER
|
248 OXYGEN_SPI_DATA_LENGTH_2
|
249 OXYGEN_SPI_CLOCK_160
|
250 (codec_map
[codec
] << OXYGEN_SPI_CODEC_SHIFT
) |
251 OXYGEN_SPI_CEN_LATCH_CLOCK_HI
,
255 static inline void pcm1796_write_i2c(struct oxygen
*chip
, unsigned int codec
,
258 oxygen_write_i2c(chip
, I2C_DEVICE_PCM1796(codec
), reg
, value
);
261 static void pcm1796_write(struct oxygen
*chip
, unsigned int codec
,
264 struct xonar_pcm179x
*data
= chip
->model_data
;
266 if ((chip
->model
.function_flags
& OXYGEN_FUNCTION_2WIRE_SPI_MASK
) ==
268 pcm1796_write_spi(chip
, codec
, reg
, value
);
270 pcm1796_write_i2c(chip
, codec
, reg
, value
);
271 if ((unsigned int)(reg
- PCM1796_REG_BASE
)
272 < ARRAY_SIZE(data
->pcm1796_regs
[codec
]))
273 data
->pcm1796_regs
[codec
][reg
- PCM1796_REG_BASE
] = value
;
276 static void pcm1796_write_cached(struct oxygen
*chip
, unsigned int codec
,
279 struct xonar_pcm179x
*data
= chip
->model_data
;
281 if (value
!= data
->pcm1796_regs
[codec
][reg
- PCM1796_REG_BASE
])
282 pcm1796_write(chip
, codec
, reg
, value
);
285 static void cs2000_write(struct oxygen
*chip
, u8 reg
, u8 value
)
287 struct xonar_pcm179x
*data
= chip
->model_data
;
289 oxygen_write_i2c(chip
, I2C_DEVICE_CS2000
, reg
, value
);
290 data
->cs2000_regs
[reg
] = value
;
293 static void cs2000_write_cached(struct oxygen
*chip
, u8 reg
, u8 value
)
295 struct xonar_pcm179x
*data
= chip
->model_data
;
297 if (value
!= data
->cs2000_regs
[reg
])
298 cs2000_write(chip
, reg
, value
);
301 static void pcm1796_registers_init(struct oxygen
*chip
)
303 struct xonar_pcm179x
*data
= chip
->model_data
;
308 gain_offset
= data
->hp_active
? data
->hp_gain_offset
: 0;
309 for (i
= 0; i
< data
->dacs
; ++i
) {
310 /* set ATLD before ATL/ATR */
311 pcm1796_write(chip
, i
, 18,
312 data
->pcm1796_regs
[0][18 - PCM1796_REG_BASE
]);
313 pcm1796_write(chip
, i
, 16, chip
->dac_volume
[i
* 2]
315 pcm1796_write(chip
, i
, 17, chip
->dac_volume
[i
* 2 + 1]
317 pcm1796_write(chip
, i
, 19,
318 data
->pcm1796_regs
[0][19 - PCM1796_REG_BASE
]);
319 pcm1796_write(chip
, i
, 20,
320 data
->pcm1796_regs
[0][20 - PCM1796_REG_BASE
]);
321 pcm1796_write(chip
, i
, 21, 0);
326 static void pcm1796_init(struct oxygen
*chip
)
328 struct xonar_pcm179x
*data
= chip
->model_data
;
330 data
->pcm1796_regs
[0][18 - PCM1796_REG_BASE
] =
331 PCM1796_DMF_DISABLED
| PCM1796_FMT_24_I2S
| PCM1796_ATLD
;
332 if (!data
->broken_i2c
)
333 data
->pcm1796_regs
[0][18 - PCM1796_REG_BASE
] |= PCM1796_MUTE
;
334 data
->pcm1796_regs
[0][19 - PCM1796_REG_BASE
] =
335 PCM1796_FLT_SHARP
| PCM1796_ATS_1
;
336 data
->pcm1796_regs
[0][20 - PCM1796_REG_BASE
] =
337 data
->h6
? PCM1796_OS_64
: PCM1796_OS_128
;
338 pcm1796_registers_init(chip
);
339 data
->current_rate
= 48000;
342 static void xonar_d2_init(struct oxygen
*chip
)
344 struct xonar_pcm179x
*data
= chip
->model_data
;
346 data
->generic
.anti_pop_delay
= 300;
347 data
->generic
.output_enable_bit
= GPIO_D2_OUTPUT_ENABLE
;
352 oxygen_set_bits16(chip
, OXYGEN_GPIO_CONTROL
, GPIO_D2_ALT
);
353 oxygen_clear_bits16(chip
, OXYGEN_GPIO_DATA
, GPIO_D2_ALT
);
355 oxygen_ac97_set_bits(chip
, 0, CM9780_JACK
, CM9780_FMIC2MIC
);
357 xonar_init_cs53x1(chip
);
358 xonar_enable_output(chip
);
360 snd_component_add(chip
->card
, "PCM1796");
361 snd_component_add(chip
->card
, "CS5381");
364 static void xonar_d2x_init(struct oxygen
*chip
)
366 struct xonar_pcm179x
*data
= chip
->model_data
;
368 data
->generic
.ext_power_reg
= OXYGEN_GPIO_DATA
;
369 data
->generic
.ext_power_int_reg
= OXYGEN_GPIO_INTERRUPT_MASK
;
370 data
->generic
.ext_power_bit
= GPIO_D2X_EXT_POWER
;
371 oxygen_clear_bits16(chip
, OXYGEN_GPIO_CONTROL
, GPIO_D2X_EXT_POWER
);
372 xonar_init_ext_power(chip
);
376 static void xonar_hdav_init(struct oxygen
*chip
)
378 struct xonar_hdav
*data
= chip
->model_data
;
380 oxygen_write16(chip
, OXYGEN_2WIRE_BUS_STATUS
,
381 OXYGEN_2WIRE_LENGTH_8
|
382 OXYGEN_2WIRE_INTERRUPT_MASK
|
383 OXYGEN_2WIRE_SPEED_STANDARD
);
385 data
->pcm179x
.generic
.anti_pop_delay
= 100;
386 data
->pcm179x
.generic
.output_enable_bit
= GPIO_HDAV_OUTPUT_ENABLE
;
387 data
->pcm179x
.generic
.ext_power_reg
= OXYGEN_GPI_DATA
;
388 data
->pcm179x
.generic
.ext_power_int_reg
= OXYGEN_GPI_INTERRUPT_MASK
;
389 data
->pcm179x
.generic
.ext_power_bit
= GPI_EXT_POWER
;
390 data
->pcm179x
.dacs
= chip
->model
.dac_channels_mixer
/ 2;
391 data
->pcm179x
.h6
= chip
->model
.dac_channels_mixer
> 2;
395 oxygen_set_bits16(chip
, OXYGEN_GPIO_CONTROL
,
396 GPIO_HDAV_MAGIC
| GPIO_INPUT_ROUTE
);
397 oxygen_clear_bits16(chip
, OXYGEN_GPIO_DATA
, GPIO_INPUT_ROUTE
);
399 xonar_init_cs53x1(chip
);
400 xonar_init_ext_power(chip
);
401 xonar_hdmi_init(chip
, &data
->hdmi
);
402 xonar_enable_output(chip
);
404 snd_component_add(chip
->card
, "PCM1796");
405 snd_component_add(chip
->card
, "CS5381");
408 static void xonar_st_init_i2c(struct oxygen
*chip
)
410 oxygen_write16(chip
, OXYGEN_2WIRE_BUS_STATUS
,
411 OXYGEN_2WIRE_LENGTH_8
|
412 OXYGEN_2WIRE_INTERRUPT_MASK
|
413 OXYGEN_2WIRE_SPEED_STANDARD
);
416 static void xonar_st_init_common(struct oxygen
*chip
)
418 struct xonar_pcm179x
*data
= chip
->model_data
;
420 data
->generic
.output_enable_bit
= GPIO_ST_OUTPUT_ENABLE
;
421 data
->dacs
= chip
->model
.dac_channels_mixer
/ 2;
422 data
->hp_gain_offset
= 2*-18;
426 oxygen_set_bits16(chip
, OXYGEN_GPIO_CONTROL
,
427 GPIO_INPUT_ROUTE
| GPIO_ST_HP_REAR
|
428 GPIO_ST_MAGIC
| GPIO_ST_HP
);
429 oxygen_clear_bits16(chip
, OXYGEN_GPIO_DATA
,
430 GPIO_INPUT_ROUTE
| GPIO_ST_HP_REAR
| GPIO_ST_HP
);
432 xonar_init_cs53x1(chip
);
433 xonar_enable_output(chip
);
435 snd_component_add(chip
->card
, "PCM1792A");
436 snd_component_add(chip
->card
, "CS5381");
439 static void cs2000_registers_init(struct oxygen
*chip
)
441 struct xonar_pcm179x
*data
= chip
->model_data
;
443 cs2000_write(chip
, CS2000_GLOBAL_CFG
, CS2000_FREEZE
);
444 cs2000_write(chip
, CS2000_DEV_CTRL
, 0);
445 cs2000_write(chip
, CS2000_DEV_CFG_1
,
447 (0 << CS2000_R_SEL_SHIFT
) |
448 CS2000_AUX_OUT_SRC_REF_CLK
|
449 CS2000_EN_DEV_CFG_1
);
450 cs2000_write(chip
, CS2000_DEV_CFG_2
,
451 (0 << CS2000_LOCK_CLK_SHIFT
) |
452 CS2000_FRAC_N_SRC_STATIC
);
453 cs2000_write(chip
, CS2000_RATIO_0
+ 0, 0x00); /* 1.0 */
454 cs2000_write(chip
, CS2000_RATIO_0
+ 1, 0x10);
455 cs2000_write(chip
, CS2000_RATIO_0
+ 2, 0x00);
456 cs2000_write(chip
, CS2000_RATIO_0
+ 3, 0x00);
457 cs2000_write(chip
, CS2000_FUN_CFG_1
,
458 data
->cs2000_regs
[CS2000_FUN_CFG_1
]);
459 cs2000_write(chip
, CS2000_FUN_CFG_2
, 0);
460 cs2000_write(chip
, CS2000_GLOBAL_CFG
, CS2000_EN_DEV_CFG_2
);
461 msleep(3); /* PLL lock delay */
464 static void xonar_st_init(struct oxygen
*chip
)
466 struct xonar_pcm179x
*data
= chip
->model_data
;
468 data
->generic
.anti_pop_delay
= 100;
469 data
->h6
= chip
->model
.dac_channels_mixer
> 2;
470 data
->has_cs2000
= 1;
471 data
->cs2000_regs
[CS2000_FUN_CFG_1
] = CS2000_REF_CLK_DIV_1
;
472 data
->broken_i2c
= true;
474 oxygen_write16(chip
, OXYGEN_I2S_A_FORMAT
,
476 OXYGEN_I2S_FORMAT_I2S
|
477 OXYGEN_I2S_MCLK(data
->h6
? MCLK_256
: MCLK_512
) |
482 xonar_st_init_i2c(chip
);
483 cs2000_registers_init(chip
);
484 xonar_st_init_common(chip
);
486 snd_component_add(chip
->card
, "CS2000");
489 static void xonar_stx_init(struct oxygen
*chip
)
491 struct xonar_pcm179x
*data
= chip
->model_data
;
493 xonar_st_init_i2c(chip
);
494 data
->generic
.anti_pop_delay
= 800;
495 data
->generic
.ext_power_reg
= OXYGEN_GPI_DATA
;
496 data
->generic
.ext_power_int_reg
= OXYGEN_GPI_INTERRUPT_MASK
;
497 data
->generic
.ext_power_bit
= GPI_EXT_POWER
;
498 xonar_init_ext_power(chip
);
499 xonar_st_init_common(chip
);
502 static void xonar_d2_cleanup(struct oxygen
*chip
)
504 xonar_disable_output(chip
);
507 static void xonar_hdav_cleanup(struct oxygen
*chip
)
509 xonar_hdmi_cleanup(chip
);
510 xonar_disable_output(chip
);
514 static void xonar_st_cleanup(struct oxygen
*chip
)
516 xonar_disable_output(chip
);
519 static void xonar_d2_suspend(struct oxygen
*chip
)
521 xonar_d2_cleanup(chip
);
524 static void xonar_hdav_suspend(struct oxygen
*chip
)
526 xonar_hdav_cleanup(chip
);
529 static void xonar_st_suspend(struct oxygen
*chip
)
531 xonar_st_cleanup(chip
);
534 static void xonar_d2_resume(struct oxygen
*chip
)
536 pcm1796_registers_init(chip
);
537 xonar_enable_output(chip
);
540 static void xonar_hdav_resume(struct oxygen
*chip
)
542 struct xonar_hdav
*data
= chip
->model_data
;
544 pcm1796_registers_init(chip
);
545 xonar_hdmi_resume(chip
, &data
->hdmi
);
546 xonar_enable_output(chip
);
549 static void xonar_stx_resume(struct oxygen
*chip
)
551 pcm1796_registers_init(chip
);
552 xonar_enable_output(chip
);
555 static void xonar_st_resume(struct oxygen
*chip
)
557 cs2000_registers_init(chip
);
558 xonar_stx_resume(chip
);
561 static void update_pcm1796_oversampling(struct oxygen
*chip
)
563 struct xonar_pcm179x
*data
= chip
->model_data
;
567 if (data
->current_rate
<= 48000 && !data
->h6
)
568 reg
= PCM1796_OS_128
;
571 for (i
= 0; i
< data
->dacs
; ++i
)
572 pcm1796_write_cached(chip
, i
, 20, reg
);
575 static void set_pcm1796_params(struct oxygen
*chip
,
576 struct snd_pcm_hw_params
*params
)
578 struct xonar_pcm179x
*data
= chip
->model_data
;
581 data
->current_rate
= params_rate(params
);
582 update_pcm1796_oversampling(chip
);
585 static void update_pcm1796_volume(struct oxygen
*chip
)
587 struct xonar_pcm179x
*data
= chip
->model_data
;
591 gain_offset
= data
->hp_active
? data
->hp_gain_offset
: 0;
592 for (i
= 0; i
< data
->dacs
; ++i
) {
593 pcm1796_write_cached(chip
, i
, 16, chip
->dac_volume
[i
* 2]
595 pcm1796_write_cached(chip
, i
, 17, chip
->dac_volume
[i
* 2 + 1]
601 static void update_pcm1796_mute(struct oxygen
*chip
)
603 struct xonar_pcm179x
*data
= chip
->model_data
;
607 value
= PCM1796_DMF_DISABLED
| PCM1796_FMT_24_I2S
| PCM1796_ATLD
;
609 value
|= PCM1796_MUTE
;
610 for (i
= 0; i
< data
->dacs
; ++i
)
611 pcm1796_write_cached(chip
, i
, 18, value
);
614 static void update_cs2000_rate(struct oxygen
*chip
, unsigned int rate
)
616 struct xonar_pcm179x
*data
= chip
->model_data
;
622 rate_mclk
= OXYGEN_RATE_32000
;
627 rate_mclk
= OXYGEN_RATE_44100
;
633 rate_mclk
= OXYGEN_RATE_48000
;
637 if (rate
<= 96000 && (rate
> 48000 || data
->h6
)) {
638 rate_mclk
|= OXYGEN_I2S_MCLK(MCLK_256
);
639 reg
= CS2000_REF_CLK_DIV_1
;
641 rate_mclk
|= OXYGEN_I2S_MCLK(MCLK_512
);
642 reg
= CS2000_REF_CLK_DIV_2
;
645 oxygen_write16_masked(chip
, OXYGEN_I2S_A_FORMAT
, rate_mclk
,
646 OXYGEN_I2S_RATE_MASK
| OXYGEN_I2S_MCLK_MASK
);
647 cs2000_write_cached(chip
, CS2000_FUN_CFG_1
, reg
);
648 msleep(3); /* PLL lock delay */
651 static void set_st_params(struct oxygen
*chip
,
652 struct snd_pcm_hw_params
*params
)
654 update_cs2000_rate(chip
, params_rate(params
));
655 set_pcm1796_params(chip
, params
);
658 static void set_hdav_params(struct oxygen
*chip
,
659 struct snd_pcm_hw_params
*params
)
661 struct xonar_hdav
*data
= chip
->model_data
;
663 set_pcm1796_params(chip
, params
);
664 xonar_set_hdmi_params(chip
, &data
->hdmi
, params
);
667 static const struct snd_kcontrol_new alt_switch
= {
668 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
669 .name
= "Analog Loopback Switch",
670 .info
= snd_ctl_boolean_mono_info
,
671 .get
= xonar_gpio_bit_switch_get
,
672 .put
= xonar_gpio_bit_switch_put
,
673 .private_value
= GPIO_D2_ALT
,
676 static int rolloff_info(struct snd_kcontrol
*ctl
,
677 struct snd_ctl_elem_info
*info
)
679 static const char *const names
[2] = {
680 "Sharp Roll-off", "Slow Roll-off"
683 return snd_ctl_enum_info(info
, 1, 2, names
);
686 static int rolloff_get(struct snd_kcontrol
*ctl
,
687 struct snd_ctl_elem_value
*value
)
689 struct oxygen
*chip
= ctl
->private_data
;
690 struct xonar_pcm179x
*data
= chip
->model_data
;
692 value
->value
.enumerated
.item
[0] =
693 (data
->pcm1796_regs
[0][19 - PCM1796_REG_BASE
] &
694 PCM1796_FLT_MASK
) != PCM1796_FLT_SHARP
;
698 static int rolloff_put(struct snd_kcontrol
*ctl
,
699 struct snd_ctl_elem_value
*value
)
701 struct oxygen
*chip
= ctl
->private_data
;
702 struct xonar_pcm179x
*data
= chip
->model_data
;
707 mutex_lock(&chip
->mutex
);
708 reg
= data
->pcm1796_regs
[0][19 - PCM1796_REG_BASE
];
709 reg
&= ~PCM1796_FLT_MASK
;
710 if (!value
->value
.enumerated
.item
[0])
711 reg
|= PCM1796_FLT_SHARP
;
713 reg
|= PCM1796_FLT_SLOW
;
714 changed
= reg
!= data
->pcm1796_regs
[0][19 - PCM1796_REG_BASE
];
716 for (i
= 0; i
< data
->dacs
; ++i
)
717 pcm1796_write(chip
, i
, 19, reg
);
719 mutex_unlock(&chip
->mutex
);
723 static const struct snd_kcontrol_new rolloff_control
= {
724 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
725 .name
= "DAC Filter Playback Enum",
726 .info
= rolloff_info
,
731 static const struct snd_kcontrol_new hdav_hdmi_control
= {
732 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
733 .name
= "HDMI Playback Switch",
734 .info
= snd_ctl_boolean_mono_info
,
735 .get
= xonar_gpio_bit_switch_get
,
736 .put
= xonar_gpio_bit_switch_put
,
737 .private_value
= GPIO_HDAV_OUTPUT_ENABLE
| XONAR_GPIO_BIT_INVERT
,
740 static int st_output_switch_info(struct snd_kcontrol
*ctl
,
741 struct snd_ctl_elem_info
*info
)
743 static const char *const names
[3] = {
744 "Speakers", "Headphones", "FP Headphones"
747 return snd_ctl_enum_info(info
, 1, 3, names
);
750 static int st_output_switch_get(struct snd_kcontrol
*ctl
,
751 struct snd_ctl_elem_value
*value
)
753 struct oxygen
*chip
= ctl
->private_data
;
756 gpio
= oxygen_read16(chip
, OXYGEN_GPIO_DATA
);
757 if (!(gpio
& GPIO_ST_HP
))
758 value
->value
.enumerated
.item
[0] = 0;
759 else if (gpio
& GPIO_ST_HP_REAR
)
760 value
->value
.enumerated
.item
[0] = 1;
762 value
->value
.enumerated
.item
[0] = 2;
767 static int st_output_switch_put(struct snd_kcontrol
*ctl
,
768 struct snd_ctl_elem_value
*value
)
770 struct oxygen
*chip
= ctl
->private_data
;
771 struct xonar_pcm179x
*data
= chip
->model_data
;
774 mutex_lock(&chip
->mutex
);
775 gpio_old
= oxygen_read16(chip
, OXYGEN_GPIO_DATA
);
777 switch (value
->value
.enumerated
.item
[0]) {
779 gpio
&= ~(GPIO_ST_HP
| GPIO_ST_HP_REAR
);
782 gpio
|= GPIO_ST_HP
| GPIO_ST_HP_REAR
;
785 gpio
= (gpio
| GPIO_ST_HP
) & ~GPIO_ST_HP_REAR
;
788 oxygen_write16(chip
, OXYGEN_GPIO_DATA
, gpio
);
789 data
->hp_active
= gpio
& GPIO_ST_HP
;
790 update_pcm1796_volume(chip
);
791 mutex_unlock(&chip
->mutex
);
792 return gpio
!= gpio_old
;
795 static int st_hp_volume_offset_info(struct snd_kcontrol
*ctl
,
796 struct snd_ctl_elem_info
*info
)
798 static const char *const names
[3] = {
799 "< 64 ohms", "64-300 ohms", "300-600 ohms"
802 return snd_ctl_enum_info(info
, 1, 3, names
);
805 static int st_hp_volume_offset_get(struct snd_kcontrol
*ctl
,
806 struct snd_ctl_elem_value
*value
)
808 struct oxygen
*chip
= ctl
->private_data
;
809 struct xonar_pcm179x
*data
= chip
->model_data
;
811 mutex_lock(&chip
->mutex
);
812 if (data
->hp_gain_offset
< 2*-6)
813 value
->value
.enumerated
.item
[0] = 0;
814 else if (data
->hp_gain_offset
< 0)
815 value
->value
.enumerated
.item
[0] = 1;
817 value
->value
.enumerated
.item
[0] = 2;
818 mutex_unlock(&chip
->mutex
);
823 static int st_hp_volume_offset_put(struct snd_kcontrol
*ctl
,
824 struct snd_ctl_elem_value
*value
)
826 static const s8 offsets
[] = { 2*-18, 2*-6, 0 };
827 struct oxygen
*chip
= ctl
->private_data
;
828 struct xonar_pcm179x
*data
= chip
->model_data
;
832 if (value
->value
.enumerated
.item
[0] > 2)
834 offset
= offsets
[value
->value
.enumerated
.item
[0]];
835 mutex_lock(&chip
->mutex
);
836 changed
= offset
!= data
->hp_gain_offset
;
838 data
->hp_gain_offset
= offset
;
839 update_pcm1796_volume(chip
);
841 mutex_unlock(&chip
->mutex
);
845 static const struct snd_kcontrol_new st_controls
[] = {
847 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
848 .name
= "Analog Output",
849 .info
= st_output_switch_info
,
850 .get
= st_output_switch_get
,
851 .put
= st_output_switch_put
,
854 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
855 .name
= "Headphones Impedance Playback Enum",
856 .info
= st_hp_volume_offset_info
,
857 .get
= st_hp_volume_offset_get
,
858 .put
= st_hp_volume_offset_put
,
862 static void xonar_line_mic_ac97_switch(struct oxygen
*chip
,
863 unsigned int reg
, unsigned int mute
)
865 if (reg
== AC97_LINE
) {
866 spin_lock_irq(&chip
->reg_lock
);
867 oxygen_write16_masked(chip
, OXYGEN_GPIO_DATA
,
868 mute
? GPIO_INPUT_ROUTE
: 0,
870 spin_unlock_irq(&chip
->reg_lock
);
874 static const DECLARE_TLV_DB_SCALE(pcm1796_db_scale
, -6000, 50, 0);
876 static int xonar_d2_control_filter(struct snd_kcontrol_new
*template)
878 if (!strncmp(template->name
, "CD Capture ", 11))
879 /* CD in is actually connected to the video in pin */
880 template->private_value
^= AC97_CD
^ AC97_VIDEO
;
884 static int xonar_st_h6_control_filter(struct snd_kcontrol_new
*template)
886 if (!strncmp(template->name
, "Master Playback ", 16))
887 /* no volume/mute, as I²C to the third DAC does not work */
892 static int add_pcm1796_controls(struct oxygen
*chip
)
894 struct xonar_pcm179x
*data
= chip
->model_data
;
897 if (!data
->broken_i2c
) {
898 err
= snd_ctl_add(chip
->card
,
899 snd_ctl_new1(&rolloff_control
, chip
));
906 static int xonar_d2_mixer_init(struct oxygen
*chip
)
910 err
= snd_ctl_add(chip
->card
, snd_ctl_new1(&alt_switch
, chip
));
913 err
= add_pcm1796_controls(chip
);
919 static int xonar_hdav_mixer_init(struct oxygen
*chip
)
923 err
= snd_ctl_add(chip
->card
, snd_ctl_new1(&hdav_hdmi_control
, chip
));
926 err
= add_pcm1796_controls(chip
);
932 static int xonar_st_mixer_init(struct oxygen
*chip
)
937 for (i
= 0; i
< ARRAY_SIZE(st_controls
); ++i
) {
938 err
= snd_ctl_add(chip
->card
,
939 snd_ctl_new1(&st_controls
[i
], chip
));
943 err
= add_pcm1796_controls(chip
);
949 static void dump_pcm1796_registers(struct oxygen
*chip
,
950 struct snd_info_buffer
*buffer
)
952 struct xonar_pcm179x
*data
= chip
->model_data
;
955 for (dac
= 0; dac
< data
->dacs
; ++dac
) {
956 snd_iprintf(buffer
, "\nPCM1796 %u:", dac
+ 1);
957 for (i
= 0; i
< 5; ++i
)
958 snd_iprintf(buffer
, " %02x",
959 data
->pcm1796_regs
[dac
][i
]);
961 snd_iprintf(buffer
, "\n");
964 static void dump_cs2000_registers(struct oxygen
*chip
,
965 struct snd_info_buffer
*buffer
)
967 struct xonar_pcm179x
*data
= chip
->model_data
;
970 if (data
->has_cs2000
) {
971 snd_iprintf(buffer
, "\nCS2000:\n00: ");
972 for (i
= 1; i
< 0x10; ++i
)
973 snd_iprintf(buffer
, " %02x", data
->cs2000_regs
[i
]);
974 snd_iprintf(buffer
, "\n10:");
975 for (i
= 0x10; i
< 0x1f; ++i
)
976 snd_iprintf(buffer
, " %02x", data
->cs2000_regs
[i
]);
977 snd_iprintf(buffer
, "\n");
981 static void dump_st_registers(struct oxygen
*chip
,
982 struct snd_info_buffer
*buffer
)
984 dump_pcm1796_registers(chip
, buffer
);
985 dump_cs2000_registers(chip
, buffer
);
988 static const struct oxygen_model model_xonar_d2
= {
989 .longname
= "Asus Virtuoso 200",
991 .init
= xonar_d2_init
,
992 .control_filter
= xonar_d2_control_filter
,
993 .mixer_init
= xonar_d2_mixer_init
,
994 .cleanup
= xonar_d2_cleanup
,
995 .suspend
= xonar_d2_suspend
,
996 .resume
= xonar_d2_resume
,
997 .set_dac_params
= set_pcm1796_params
,
998 .set_adc_params
= xonar_set_cs53x1_params
,
999 .update_dac_volume
= update_pcm1796_volume
,
1000 .update_dac_mute
= update_pcm1796_mute
,
1001 .dump_registers
= dump_pcm1796_registers
,
1002 .dac_tlv
= pcm1796_db_scale
,
1003 .model_data_size
= sizeof(struct xonar_pcm179x
),
1004 .device_config
= PLAYBACK_0_TO_I2S
|
1005 PLAYBACK_1_TO_SPDIF
|
1006 CAPTURE_0_FROM_I2S_2
|
1007 CAPTURE_1_FROM_SPDIF
|
1011 .dac_channels_pcm
= 8,
1012 .dac_channels_mixer
= 8,
1013 .dac_volume_min
= 255 - 2*60,
1014 .dac_volume_max
= 255,
1015 .misc_flags
= OXYGEN_MISC_MIDI
,
1016 .function_flags
= OXYGEN_FUNCTION_SPI
|
1017 OXYGEN_FUNCTION_ENABLE_SPI_4_5
,
1018 .dac_mclks
= OXYGEN_MCLKS(512, 128, 128),
1019 .adc_mclks
= OXYGEN_MCLKS(256, 128, 128),
1020 .dac_i2s_format
= OXYGEN_I2S_FORMAT_I2S
,
1021 .adc_i2s_format
= OXYGEN_I2S_FORMAT_LJUST
,
1024 static const struct oxygen_model model_xonar_hdav
= {
1025 .longname
= "Asus Virtuoso 200",
1027 .init
= xonar_hdav_init
,
1028 .mixer_init
= xonar_hdav_mixer_init
,
1029 .cleanup
= xonar_hdav_cleanup
,
1030 .suspend
= xonar_hdav_suspend
,
1031 .resume
= xonar_hdav_resume
,
1032 .pcm_hardware_filter
= xonar_hdmi_pcm_hardware_filter
,
1033 .set_dac_params
= set_hdav_params
,
1034 .set_adc_params
= xonar_set_cs53x1_params
,
1035 .update_dac_volume
= update_pcm1796_volume
,
1036 .update_dac_mute
= update_pcm1796_mute
,
1037 .uart_input
= xonar_hdmi_uart_input
,
1038 .ac97_switch
= xonar_line_mic_ac97_switch
,
1039 .dump_registers
= dump_pcm1796_registers
,
1040 .dac_tlv
= pcm1796_db_scale
,
1041 .model_data_size
= sizeof(struct xonar_hdav
),
1042 .device_config
= PLAYBACK_0_TO_I2S
|
1043 PLAYBACK_1_TO_SPDIF
|
1044 CAPTURE_0_FROM_I2S_2
|
1045 CAPTURE_1_FROM_SPDIF
,
1046 .dac_channels_pcm
= 8,
1047 .dac_channels_mixer
= 2,
1048 .dac_volume_min
= 255 - 2*60,
1049 .dac_volume_max
= 255,
1050 .misc_flags
= OXYGEN_MISC_MIDI
,
1051 .function_flags
= OXYGEN_FUNCTION_2WIRE
,
1052 .dac_mclks
= OXYGEN_MCLKS(512, 128, 128),
1053 .adc_mclks
= OXYGEN_MCLKS(256, 128, 128),
1054 .dac_i2s_format
= OXYGEN_I2S_FORMAT_I2S
,
1055 .adc_i2s_format
= OXYGEN_I2S_FORMAT_LJUST
,
1058 static const struct oxygen_model model_xonar_st
= {
1059 .longname
= "Asus Virtuoso 100",
1061 .init
= xonar_st_init
,
1062 .mixer_init
= xonar_st_mixer_init
,
1063 .cleanup
= xonar_st_cleanup
,
1064 .suspend
= xonar_st_suspend
,
1065 .resume
= xonar_st_resume
,
1066 .set_dac_params
= set_st_params
,
1067 .set_adc_params
= xonar_set_cs53x1_params
,
1068 .update_dac_volume
= update_pcm1796_volume
,
1069 .update_dac_mute
= update_pcm1796_mute
,
1070 .ac97_switch
= xonar_line_mic_ac97_switch
,
1071 .dump_registers
= dump_st_registers
,
1072 .dac_tlv
= pcm1796_db_scale
,
1073 .model_data_size
= sizeof(struct xonar_pcm179x
),
1074 .device_config
= PLAYBACK_0_TO_I2S
|
1075 PLAYBACK_1_TO_SPDIF
|
1076 CAPTURE_0_FROM_I2S_2
|
1078 .dac_channels_pcm
= 2,
1079 .dac_channels_mixer
= 2,
1080 .dac_volume_min
= 255 - 2*60,
1081 .dac_volume_max
= 255,
1082 .function_flags
= OXYGEN_FUNCTION_2WIRE
,
1083 .dac_mclks
= OXYGEN_MCLKS(512, 128, 128),
1084 .adc_mclks
= OXYGEN_MCLKS(256, 128, 128),
1085 .dac_i2s_format
= OXYGEN_I2S_FORMAT_I2S
,
1086 .adc_i2s_format
= OXYGEN_I2S_FORMAT_LJUST
,
1089 int __devinit
get_xonar_pcm179x_model(struct oxygen
*chip
,
1090 const struct pci_device_id
*id
)
1092 switch (id
->subdevice
) {
1094 chip
->model
= model_xonar_d2
;
1095 chip
->model
.shortname
= "Xonar D2";
1098 chip
->model
= model_xonar_d2
;
1099 chip
->model
.shortname
= "Xonar D2X";
1100 chip
->model
.init
= xonar_d2x_init
;
1103 chip
->model
= model_xonar_hdav
;
1104 oxygen_clear_bits16(chip
, OXYGEN_GPIO_CONTROL
, GPIO_DB_MASK
);
1105 switch (oxygen_read16(chip
, OXYGEN_GPIO_DATA
) & GPIO_DB_MASK
) {
1107 chip
->model
.shortname
= "Xonar HDAV1.3";
1110 chip
->model
.shortname
= "Xonar HDAV1.3+H6";
1111 chip
->model
.dac_channels_mixer
= 8;
1112 chip
->model
.dac_mclks
= OXYGEN_MCLKS(256, 128, 128);
1117 chip
->model
= model_xonar_st
;
1118 oxygen_clear_bits16(chip
, OXYGEN_GPIO_CONTROL
, GPIO_DB_MASK
);
1119 switch (oxygen_read16(chip
, OXYGEN_GPIO_DATA
) & GPIO_DB_MASK
) {
1121 chip
->model
.shortname
= "Xonar ST";
1124 chip
->model
.shortname
= "Xonar ST+H6";
1125 chip
->model
.control_filter
= xonar_st_h6_control_filter
;
1126 chip
->model
.dac_channels_pcm
= 8;
1127 chip
->model
.dac_channels_mixer
= 8;
1128 chip
->model
.dac_volume_min
= 255;
1129 chip
->model
.dac_mclks
= OXYGEN_MCLKS(256, 128, 128);
1134 chip
->model
= model_xonar_st
;
1135 chip
->model
.shortname
= "Xonar STX";
1136 chip
->model
.init
= xonar_stx_init
;
1137 chip
->model
.resume
= xonar_stx_resume
;
1138 chip
->model
.set_dac_params
= set_pcm1796_params
;