1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * ALSA driver for ICEnsemble VT1724 (Envy24HT)
5 * Lowlevel functions for ONKYO WAVIO SE-90PCI and SE-200PCI
7 * Copyright (c) 2007 Shin-ya Okada sh_okada(at)d4.dion.ne.jp
11 #include <linux/delay.h>
12 #include <linux/interrupt.h>
13 #include <linux/init.h>
14 #include <linux/slab.h>
15 #include <sound/core.h>
16 #include <sound/tlv.h>
24 unsigned char ch1
, ch2
;
28 /****************************************************************************/
29 /* ONKYO WAVIO SE-200PCI */
30 /****************************************************************************/
32 * system configuration ICE_EEP2_SYSCONF=0x4b
35 * one stereo ADC and a S/PDIF receiver connected
36 * four stereo DACs connected
38 * AC-Link configuration ICE_EEP2_ACLINK=0x80
39 * use I2C, not use AC97
41 * I2S converters feature ICE_EEP2_I2S=0x78
42 * I2S codec has no volume/mute control feature
43 * I2S codec supports 96KHz and 192KHz
46 * S/PDIF configuration ICE_EEP2_SPDIF=0xc3
47 * Enable integrated S/PDIF transmitter
48 * internal S/PDIF out implemented
50 * External S/PDIF out implemented
53 * ** connected chips **
56 * A 2ch-DAC of main outputs.
57 * It setuped as I2S mode by wire, so no way to setup from software.
58 * The sample-rate are automatically changed.
59 * ML/I2S (28pin) --------+
60 * MC/DM1 (27pin) -- 5V |
61 * MD/DM0 (26pin) -- GND |
62 * MUTEB (25pin) -- NC |
63 * MODE (24pin) -- GND |
64 * CSBIW (23pin) --------+
66 * RSTB (22pin) --R(1K)-+
67 * Probably it reduce the noise from the control line.
70 * A 6ch-DAC for surrounds.
71 * It's control wire was connected to GPIOxx (3-wire serial interface)
72 * ML/I2S (11pin) -- GPIO18
73 * MC/IWL (12pin) -- GPIO17
74 * MD/DM (13pin) -- GPIO16
75 * MUTE (14pin) -- GPIO01
78 * A 2ch-ADC(with 10ch-selector) plus 2ch-DAC.
79 * It's control wire was connected to SDA/SCLK (2-wire serial interface)
80 * MODE (16pin) -- R(1K) -- GND
81 * CE (17pin) -- R(1K) -- GND 2-wire mode (address=0x34)
86 * ** output pins and device names **
88 * 7.1ch name -- output connector color -- device (-D option)
90 * FRONT 2ch -- green -- plughw:0,0
91 * CENTER(Lch) SUBWOOFER(Rch) -- black -- plughw:0,2,0
92 * SURROUND 2ch -- orange -- plughw:0,2,1
93 * SURROUND BACK 2ch -- white -- plughw:0,2,2
98 /****************************************************************************/
99 /* WM8740 interface */
100 /****************************************************************************/
102 static void se200pci_WM8740_init(struct snd_ice1712
*ice
)
108 static void se200pci_WM8740_set_pro_rate(struct snd_ice1712
*ice
,
115 /****************************************************************************/
116 /* WM8766 interface */
117 /****************************************************************************/
119 static void se200pci_WM8766_write(struct snd_ice1712
*ice
,
120 unsigned int addr
, unsigned int data
)
125 const unsigned int DATA
= 0x010000;
126 const unsigned int CLOCK
= 0x020000;
127 const unsigned int LOAD
= 0x040000;
128 const unsigned int ALL_MASK
= (DATA
| CLOCK
| LOAD
);
130 snd_ice1712_save_gpio_status(ice
);
132 st
= ((addr
& 0x7f) << 9) | (data
& 0x1ff);
133 snd_ice1712_gpio_set_dir(ice
, ice
->gpio
.direction
| ALL_MASK
);
134 snd_ice1712_gpio_set_mask(ice
, ice
->gpio
.write_mask
& ~ALL_MASK
);
135 bits
= snd_ice1712_gpio_read(ice
) & ~ALL_MASK
;
137 snd_ice1712_gpio_write(ice
, bits
);
138 for (i
= 0; i
< 16; i
++) {
147 snd_ice1712_gpio_write(ice
, bits
);
151 snd_ice1712_gpio_write(ice
, bits
);
156 snd_ice1712_gpio_write(ice
, bits
);
159 bits
|= (DATA
| CLOCK
);
160 snd_ice1712_gpio_write(ice
, bits
);
162 snd_ice1712_restore_gpio_status(ice
);
165 static void se200pci_WM8766_set_volume(struct snd_ice1712
*ice
, int ch
,
166 unsigned int vol1
, unsigned int vol2
)
170 se200pci_WM8766_write(ice
, 0x000, vol1
);
171 se200pci_WM8766_write(ice
, 0x001, vol2
| 0x100);
174 se200pci_WM8766_write(ice
, 0x004, vol1
);
175 se200pci_WM8766_write(ice
, 0x005, vol2
| 0x100);
178 se200pci_WM8766_write(ice
, 0x006, vol1
);
179 se200pci_WM8766_write(ice
, 0x007, vol2
| 0x100);
184 static void se200pci_WM8766_init(struct snd_ice1712
*ice
)
186 se200pci_WM8766_write(ice
, 0x1f, 0x000); /* RESET ALL */
189 se200pci_WM8766_set_volume(ice
, 0, 0, 0); /* volume L=0 R=0 */
190 se200pci_WM8766_set_volume(ice
, 1, 0, 0); /* volume L=0 R=0 */
191 se200pci_WM8766_set_volume(ice
, 2, 0, 0); /* volume L=0 R=0 */
193 se200pci_WM8766_write(ice
, 0x03, 0x022); /* serial mode I2S-24bits */
194 se200pci_WM8766_write(ice
, 0x0a, 0x080); /* MCLK=256fs */
195 se200pci_WM8766_write(ice
, 0x12, 0x000); /* MDP=0 */
196 se200pci_WM8766_write(ice
, 0x15, 0x000); /* MDP=0 */
197 se200pci_WM8766_write(ice
, 0x09, 0x000); /* demp=off mute=off */
199 se200pci_WM8766_write(ice
, 0x02, 0x124); /* ch-assign L=L R=R RESET */
200 se200pci_WM8766_write(ice
, 0x02, 0x120); /* ch-assign L=L R=R */
203 static void se200pci_WM8766_set_pro_rate(struct snd_ice1712
*ice
,
207 se200pci_WM8766_write(ice
, 0x0a, 0x000); /* MCLK=128fs */
209 se200pci_WM8766_write(ice
, 0x0a, 0x080); /* MCLK=256fs */
213 /****************************************************************************/
214 /* WM8776 interface */
215 /****************************************************************************/
217 static void se200pci_WM8776_write(struct snd_ice1712
*ice
,
218 unsigned int addr
, unsigned int data
)
222 val
= (addr
<< 9) | data
;
223 snd_vt1724_write_i2c(ice
, 0x34, val
>> 8, val
& 0xff);
227 static void se200pci_WM8776_set_output_volume(struct snd_ice1712
*ice
,
228 unsigned int vol1
, unsigned int vol2
)
230 se200pci_WM8776_write(ice
, 0x03, vol1
);
231 se200pci_WM8776_write(ice
, 0x04, vol2
| 0x100);
234 static void se200pci_WM8776_set_input_volume(struct snd_ice1712
*ice
,
235 unsigned int vol1
, unsigned int vol2
)
237 se200pci_WM8776_write(ice
, 0x0e, vol1
);
238 se200pci_WM8776_write(ice
, 0x0f, vol2
| 0x100);
241 static const char * const se200pci_sel
[] = {
242 "LINE-IN", "CD-IN", "MIC-IN", "ALL-MIX", NULL
245 static void se200pci_WM8776_set_input_selector(struct snd_ice1712
*ice
,
248 static const unsigned char vals
[] = {
249 /* LINE, CD, MIC, ALL, GND */
250 0x10, 0x04, 0x08, 0x1c, 0x03
254 se200pci_WM8776_write(ice
, 0x15, vals
[sel
]);
257 static void se200pci_WM8776_set_afl(struct snd_ice1712
*ice
, unsigned int afl
)
259 /* AFL -- After Fader Listening */
261 se200pci_WM8776_write(ice
, 0x16, 0x005);
263 se200pci_WM8776_write(ice
, 0x16, 0x001);
266 static const char * const se200pci_agc
[] = {
267 "Off", "LimiterMode", "ALCMode", NULL
270 static void se200pci_WM8776_set_agc(struct snd_ice1712
*ice
, unsigned int agc
)
272 /* AGC -- Auto Gain Control of the input */
275 se200pci_WM8776_write(ice
, 0x11, 0x000); /* Off */
278 se200pci_WM8776_write(ice
, 0x10, 0x07b);
279 se200pci_WM8776_write(ice
, 0x11, 0x100); /* LimiterMode */
282 se200pci_WM8776_write(ice
, 0x10, 0x1fb);
283 se200pci_WM8776_write(ice
, 0x11, 0x100); /* ALCMode */
288 static void se200pci_WM8776_init(struct snd_ice1712
*ice
)
291 static const unsigned short default_values
[] = {
294 0x000, 0x090, 0x000, 0x000,
296 0x008, 0x0cf, 0x0cf, 0x07b, 0x000,
297 0x032, 0x000, 0x0a6, 0x001, 0x001
300 se200pci_WM8776_write(ice
, 0x17, 0x000); /* reset all */
301 /* ADC and DAC interface is I2S 24bits mode */
302 /* The sample-rate are automatically changed */
304 /* BUT my board can not do reset all, so I load all by manually. */
305 for (i
= 0; i
< ARRAY_SIZE(default_values
); i
++)
306 se200pci_WM8776_write(ice
, i
, default_values
[i
]);
308 se200pci_WM8776_set_input_selector(ice
, 0);
309 se200pci_WM8776_set_afl(ice
, 0);
310 se200pci_WM8776_set_agc(ice
, 0);
311 se200pci_WM8776_set_input_volume(ice
, 0, 0);
312 se200pci_WM8776_set_output_volume(ice
, 0, 0);
314 /* head phone mute and power down */
315 se200pci_WM8776_write(ice
, 0x00, 0);
316 se200pci_WM8776_write(ice
, 0x01, 0);
317 se200pci_WM8776_write(ice
, 0x02, 0x100);
318 se200pci_WM8776_write(ice
, 0x0d, 0x080);
321 static void se200pci_WM8776_set_pro_rate(struct snd_ice1712
*ice
,
328 /****************************************************************************/
329 /* runtime interface */
330 /****************************************************************************/
332 static void se200pci_set_pro_rate(struct snd_ice1712
*ice
, unsigned int rate
)
334 se200pci_WM8740_set_pro_rate(ice
, rate
);
335 se200pci_WM8766_set_pro_rate(ice
, rate
);
336 se200pci_WM8776_set_pro_rate(ice
, rate
);
339 struct se200pci_control
{
349 enum { VOLUME1
, VOLUME2
, BOOLEAN
, ENUM
} type
;
351 const char * const *member
;
355 static const struct se200pci_control se200pci_cont
[] = {
357 .name
= "Front Playback Volume",
360 .comment
= "Front(green)"
363 .name
= "Side Playback Volume",
367 .comment
= "Surround(orange)"
370 .name
= "Surround Playback Volume",
374 .comment
= "SurroundBack(white)"
377 .name
= "CLFE Playback Volume",
381 .comment
= "Center(Lch)&SubWoofer(Rch)(black)"
384 .name
= "Capture Volume",
389 .name
= "Capture Select",
392 .member
= se200pci_sel
395 .name
= "AGC Capture Mode",
398 .member
= se200pci_agc
401 .name
= "AFL Bypass Playback Switch",
407 static int se200pci_get_enum_count(int n
)
409 const char * const *member
;
412 member
= se200pci_cont
[n
].member
;
415 for (c
= 0; member
[c
]; c
++)
420 static int se200pci_cont_volume_info(struct snd_kcontrol
*kc
,
421 struct snd_ctl_elem_info
*uinfo
)
423 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
425 uinfo
->value
.integer
.min
= 0; /* mute */
426 uinfo
->value
.integer
.max
= 0xff; /* 0dB */
430 #define se200pci_cont_boolean_info snd_ctl_boolean_mono_info
432 static int se200pci_cont_enum_info(struct snd_kcontrol
*kc
,
433 struct snd_ctl_elem_info
*uinfo
)
437 n
= kc
->private_value
;
438 c
= se200pci_get_enum_count(n
);
441 return snd_ctl_enum_info(uinfo
, 1, c
, se200pci_cont
[n
].member
);
444 static int se200pci_cont_volume_get(struct snd_kcontrol
*kc
,
445 struct snd_ctl_elem_value
*uc
)
447 struct snd_ice1712
*ice
= snd_kcontrol_chip(kc
);
448 struct se_spec
*spec
= ice
->spec
;
449 int n
= kc
->private_value
;
450 uc
->value
.integer
.value
[0] = spec
->vol
[n
].ch1
;
451 uc
->value
.integer
.value
[1] = spec
->vol
[n
].ch2
;
455 static int se200pci_cont_boolean_get(struct snd_kcontrol
*kc
,
456 struct snd_ctl_elem_value
*uc
)
458 struct snd_ice1712
*ice
= snd_kcontrol_chip(kc
);
459 struct se_spec
*spec
= ice
->spec
;
460 int n
= kc
->private_value
;
461 uc
->value
.integer
.value
[0] = spec
->vol
[n
].ch1
;
465 static int se200pci_cont_enum_get(struct snd_kcontrol
*kc
,
466 struct snd_ctl_elem_value
*uc
)
468 struct snd_ice1712
*ice
= snd_kcontrol_chip(kc
);
469 struct se_spec
*spec
= ice
->spec
;
470 int n
= kc
->private_value
;
471 uc
->value
.enumerated
.item
[0] = spec
->vol
[n
].ch1
;
475 static void se200pci_cont_update(struct snd_ice1712
*ice
, int n
)
477 struct se_spec
*spec
= ice
->spec
;
478 switch (se200pci_cont
[n
].target
) {
480 se200pci_WM8766_set_volume(ice
,
487 se200pci_WM8776_set_input_volume(ice
,
493 se200pci_WM8776_set_output_volume(ice
,
499 se200pci_WM8776_set_input_selector(ice
,
504 se200pci_WM8776_set_agc(ice
, spec
->vol
[n
].ch1
);
508 se200pci_WM8776_set_afl(ice
, spec
->vol
[n
].ch1
);
516 static int se200pci_cont_volume_put(struct snd_kcontrol
*kc
,
517 struct snd_ctl_elem_value
*uc
)
519 struct snd_ice1712
*ice
= snd_kcontrol_chip(kc
);
520 struct se_spec
*spec
= ice
->spec
;
521 int n
= kc
->private_value
;
522 unsigned int vol1
, vol2
;
526 vol1
= uc
->value
.integer
.value
[0] & 0xff;
527 vol2
= uc
->value
.integer
.value
[1] & 0xff;
528 if (spec
->vol
[n
].ch1
!= vol1
) {
529 spec
->vol
[n
].ch1
= vol1
;
532 if (spec
->vol
[n
].ch2
!= vol2
) {
533 spec
->vol
[n
].ch2
= vol2
;
537 se200pci_cont_update(ice
, n
);
542 static int se200pci_cont_boolean_put(struct snd_kcontrol
*kc
,
543 struct snd_ctl_elem_value
*uc
)
545 struct snd_ice1712
*ice
= snd_kcontrol_chip(kc
);
546 struct se_spec
*spec
= ice
->spec
;
547 int n
= kc
->private_value
;
550 vol1
= !!uc
->value
.integer
.value
[0];
551 if (spec
->vol
[n
].ch1
!= vol1
) {
552 spec
->vol
[n
].ch1
= vol1
;
553 se200pci_cont_update(ice
, n
);
559 static int se200pci_cont_enum_put(struct snd_kcontrol
*kc
,
560 struct snd_ctl_elem_value
*uc
)
562 struct snd_ice1712
*ice
= snd_kcontrol_chip(kc
);
563 struct se_spec
*spec
= ice
->spec
;
564 int n
= kc
->private_value
;
567 vol1
= uc
->value
.enumerated
.item
[0];
568 if (vol1
>= se200pci_get_enum_count(n
))
570 if (spec
->vol
[n
].ch1
!= vol1
) {
571 spec
->vol
[n
].ch1
= vol1
;
572 se200pci_cont_update(ice
, n
);
578 static const DECLARE_TLV_DB_SCALE(db_scale_gain1
, -12750, 50, 1);
579 static const DECLARE_TLV_DB_SCALE(db_scale_gain2
, -10350, 50, 1);
581 static int se200pci_add_controls(struct snd_ice1712
*ice
)
584 struct snd_kcontrol_new cont
;
587 memset(&cont
, 0, sizeof(cont
));
588 cont
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
589 for (i
= 0; i
< ARRAY_SIZE(se200pci_cont
); i
++) {
590 cont
.private_value
= i
;
591 cont
.name
= se200pci_cont
[i
].name
;
592 cont
.access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
;
594 switch (se200pci_cont
[i
].type
) {
597 cont
.info
= se200pci_cont_volume_info
;
598 cont
.get
= se200pci_cont_volume_get
;
599 cont
.put
= se200pci_cont_volume_put
;
600 cont
.access
|= SNDRV_CTL_ELEM_ACCESS_TLV_READ
;
601 if (se200pci_cont
[i
].type
== VOLUME1
)
602 cont
.tlv
.p
= db_scale_gain1
;
604 cont
.tlv
.p
= db_scale_gain2
;
607 cont
.info
= se200pci_cont_boolean_info
;
608 cont
.get
= se200pci_cont_boolean_get
;
609 cont
.put
= se200pci_cont_boolean_put
;
612 cont
.info
= se200pci_cont_enum_info
;
613 cont
.get
= se200pci_cont_enum_get
;
614 cont
.put
= se200pci_cont_enum_put
;
620 err
= snd_ctl_add(ice
->card
, snd_ctl_new1(&cont
, ice
));
629 /****************************************************************************/
630 /* ONKYO WAVIO SE-90PCI */
631 /****************************************************************************/
633 * system configuration ICE_EEP2_SYSCONF=0x4b
634 * AC-Link configuration ICE_EEP2_ACLINK=0x80
635 * I2S converters feature ICE_EEP2_I2S=0x78
636 * S/PDIF configuration ICE_EEP2_SPDIF=0xc3
638 * ** connected chip **
641 * A 2ch-DAC of main outputs.
642 * It setuped as I2S mode by wire, so no way to setup from software.
643 * ML/I2S (28pin) -- +5V
644 * MC/DM1 (27pin) -- GND
645 * MC/DM0 (26pin) -- GND
646 * MUTEB (25pin) -- open (internal pull-up)
647 * MODE (24pin) -- GND
648 * CSBIWO (23pin) -- +5V
652 /* Nothing to do for this chip. */
655 /****************************************************************************/
656 /* probe/initialize/setup */
657 /****************************************************************************/
659 static int se_init(struct snd_ice1712
*ice
)
661 struct se_spec
*spec
;
663 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
668 if (ice
->eeprom
.subvendor
== VT1724_SUBDEVICE_SE90PCI
) {
669 ice
->num_total_dacs
= 2;
670 ice
->num_total_adcs
= 0;
674 } else if (ice
->eeprom
.subvendor
== VT1724_SUBDEVICE_SE200PCI
) {
675 ice
->num_total_dacs
= 8;
676 ice
->num_total_adcs
= 2;
677 se200pci_WM8740_init(ice
);
678 se200pci_WM8766_init(ice
);
679 se200pci_WM8776_init(ice
);
680 ice
->gpio
.set_pro_rate
= se200pci_set_pro_rate
;
687 static int se_add_controls(struct snd_ice1712
*ice
)
692 /* nothing to do for VT1724_SUBDEVICE_SE90PCI */
693 if (ice
->eeprom
.subvendor
== VT1724_SUBDEVICE_SE200PCI
)
694 err
= se200pci_add_controls(ice
);
700 /****************************************************************************/
702 /****************************************************************************/
704 static const unsigned char se200pci_eeprom
[] = {
705 [ICE_EEP2_SYSCONF
] = 0x4b, /* 49.152Hz, spdif-in/ADC, 4DACs */
706 [ICE_EEP2_ACLINK
] = 0x80, /* I2S */
707 [ICE_EEP2_I2S
] = 0x78, /* 96k-ok, 24bit, 192k-ok */
708 [ICE_EEP2_SPDIF
] = 0xc3, /* out-en, out-int, spdif-in */
710 [ICE_EEP2_GPIO_DIR
] = 0x02, /* WM8766 mute 1=output */
711 [ICE_EEP2_GPIO_DIR1
] = 0x00, /* not used */
712 [ICE_EEP2_GPIO_DIR2
] = 0x07, /* WM8766 ML/MC/MD 1=output */
714 [ICE_EEP2_GPIO_MASK
] = 0x00, /* 0=writable */
715 [ICE_EEP2_GPIO_MASK1
] = 0x00, /* 0=writable */
716 [ICE_EEP2_GPIO_MASK2
] = 0x00, /* 0=writable */
718 [ICE_EEP2_GPIO_STATE
] = 0x00, /* WM8766 mute=0 */
719 [ICE_EEP2_GPIO_STATE1
] = 0x00, /* not used */
720 [ICE_EEP2_GPIO_STATE2
] = 0x07, /* WM8766 ML/MC/MD */
723 static const unsigned char se90pci_eeprom
[] = {
724 [ICE_EEP2_SYSCONF
] = 0x4b, /* 49.152Hz, spdif-in/ADC, 4DACs */
725 [ICE_EEP2_ACLINK
] = 0x80, /* I2S */
726 [ICE_EEP2_I2S
] = 0x78, /* 96k-ok, 24bit, 192k-ok */
727 [ICE_EEP2_SPDIF
] = 0xc3, /* out-en, out-int, spdif-in */
729 /* ALL GPIO bits are in input mode */
732 struct snd_ice1712_card_info snd_vt1724_se_cards
[] = {
734 .subvendor
= VT1724_SUBDEVICE_SE200PCI
,
735 .name
= "ONKYO SE200PCI",
737 .chip_init
= se_init
,
738 .build_controls
= se_add_controls
,
739 .eeprom_size
= sizeof(se200pci_eeprom
),
740 .eeprom_data
= se200pci_eeprom
,
743 .subvendor
= VT1724_SUBDEVICE_SE90PCI
,
744 .name
= "ONKYO SE90PCI",
746 .chip_init
= se_init
,
747 .build_controls
= se_add_controls
,
748 .eeprom_size
= sizeof(se90pci_eeprom
),
749 .eeprom_data
= se90pci_eeprom
,