2 * HD audio interface patch for Creative CA0132 chip
4 * Copyright (c) 2011, Creative Technology Ltd.
6 * Based on patch_ca0110.c
9 * This driver is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This driver is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/init.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/mutex.h>
28 #include <linux/module.h>
29 #include <linux/firmware.h>
30 #include <linux/kernel.h>
31 #include <linux/types.h>
33 #include <linux/pci.h>
35 #include <sound/core.h>
36 #include <sound/hda_codec.h>
37 #include "hda_local.h"
38 #include "hda_auto_parser.h"
41 #include "ca0132_regs.h"
43 /* Enable this to see controls for tuning purpose. */
44 /*#define ENABLE_TUNING_CONTROLS*/
46 #ifdef ENABLE_TUNING_CONTROLS
47 #include <sound/tlv.h>
50 #define FLOAT_ZERO 0x00000000
51 #define FLOAT_ONE 0x3f800000
52 #define FLOAT_TWO 0x40000000
53 #define FLOAT_THREE 0x40400000
54 #define FLOAT_EIGHT 0x41000000
55 #define FLOAT_MINUS_5 0xc0a00000
57 #define UNSOL_TAG_DSP 0x16
59 #define DSP_DMA_WRITE_BUFLEN_INIT (1UL<<18)
60 #define DSP_DMA_WRITE_BUFLEN_OVLY (1UL<<15)
62 #define DMA_TRANSFER_FRAME_SIZE_NWORDS 8
63 #define DMA_TRANSFER_MAX_FRAME_SIZE_NWORDS 32
64 #define DMA_OVERLAY_FRAME_SIZE_NWORDS 2
66 #define MASTERCONTROL 0x80
67 #define MASTERCONTROL_ALLOC_DMA_CHAN 10
68 #define MASTERCONTROL_QUERY_SPEAKER_EQ_ADDRESS 60
70 #define WIDGET_CHIP_CTRL 0x15
71 #define WIDGET_DSP_CTRL 0x16
73 #define MEM_CONNID_MICIN1 3
74 #define MEM_CONNID_MICIN2 5
75 #define MEM_CONNID_MICOUT1 12
76 #define MEM_CONNID_MICOUT2 14
77 #define MEM_CONNID_WUH 10
78 #define MEM_CONNID_DSP 16
79 #define MEM_CONNID_DMIC 100
84 #define EFX_FILE "ctefx.bin"
85 #define DESKTOP_EFX_FILE "ctefx-desktop.bin"
86 #define R3DI_EFX_FILE "ctefx-r3di.bin"
88 #ifdef CONFIG_SND_HDA_CODEC_CA0132_DSP
89 MODULE_FIRMWARE(EFX_FILE);
90 MODULE_FIRMWARE(DESKTOP_EFX_FILE);
91 MODULE_FIRMWARE(R3DI_EFX_FILE);
94 static const char *const dirstr[2] = { "Playback", "Capture" };
96 #define NUM_OF_OUTPUTS 3
108 /* Strings for Input Source Enum Control */
109 static const char *const in_src_str[3] = {"Rear Mic", "Line", "Front Mic" };
110 #define IN_SRC_NUM_OF_INPUTS 3
118 #define VNODE_START_NID 0x80
119 VNID_SPK = VNODE_START_NID, /* Speaker vnid */
126 #define VNODES_COUNT (VNODE_END_NID - VNODE_START_NID)
128 #define EFFECT_START_NID 0x90
129 #define OUT_EFFECT_START_NID EFFECT_START_NID
130 SURROUND = OUT_EFFECT_START_NID,
137 #define OUT_EFFECTS_COUNT (OUT_EFFECT_END_NID - OUT_EFFECT_START_NID)
139 #define IN_EFFECT_START_NID OUT_EFFECT_END_NID
140 ECHO_CANCELLATION = IN_EFFECT_START_NID,
145 #define IN_EFFECTS_COUNT (IN_EFFECT_END_NID - IN_EFFECT_START_NID)
147 VOICEFX = IN_EFFECT_END_NID,
157 AE5_HEADPHONE_GAIN_ENUM,
158 AE5_SOUND_FILTER_ENUM,
160 #define EFFECTS_COUNT (EFFECT_END_NID - EFFECT_START_NID)
163 /* Effects values size*/
164 #define EFFECT_VALS_MAX_COUNT 12
167 * Default values for the effect slider controls, they are in order of their
168 * effect NID's. Surround, Crystalizer, Dialog Plus, Smart Volume, and then
171 static const unsigned int effect_slider_defaults[] = {67, 65, 50, 74, 50};
172 /* Amount of effect level sliders for ca0132_alt controls. */
173 #define EFFECT_LEVEL_SLIDERS 5
175 /* Latency introduced by DSP blocks in milliseconds. */
176 #define DSP_CAPTURE_INIT_LATENCY 0
177 #define DSP_CRYSTAL_VOICE_LATENCY 124
178 #define DSP_PLAYBACK_INIT_LATENCY 13
179 #define DSP_PLAY_ENHANCEMENT_LATENCY 30
180 #define DSP_SPEAKER_OUT_LATENCY 7
183 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
185 int mid; /*effect module ID*/
186 int reqs[EFFECT_VALS_MAX_COUNT]; /*effect module request*/
187 int direct; /* 0:output; 1:input*/
188 int params; /* number of default non-on/off params */
189 /*effect default values, 1st is on/off. */
190 unsigned int def_vals[EFFECT_VALS_MAX_COUNT];
193 #define EFX_DIR_OUT 0
196 static const struct ct_effect ca0132_effects[EFFECTS_COUNT] = {
197 { .name = "Surround",
201 .direct = EFX_DIR_OUT,
203 .def_vals = {0x3F800000, 0x3F2B851F}
205 { .name = "Crystalizer",
209 .direct = EFX_DIR_OUT,
211 .def_vals = {0x3F800000, 0x3F266666}
213 { .name = "Dialog Plus",
217 .direct = EFX_DIR_OUT,
219 .def_vals = {0x00000000, 0x3F000000}
221 { .name = "Smart Volume",
225 .direct = EFX_DIR_OUT,
227 .def_vals = {0x3F800000, 0x3F3D70A4, 0x00000000}
232 .reqs = {24, 23, 25},
233 .direct = EFX_DIR_OUT,
235 .def_vals = {0x3F800000, 0x42A00000, 0x3F000000}
237 { .name = "Equalizer",
240 .reqs = {9, 10, 11, 12, 13, 14,
241 15, 16, 17, 18, 19, 20},
242 .direct = EFX_DIR_OUT,
244 .def_vals = {0x00000000, 0x00000000, 0x00000000, 0x00000000,
245 0x00000000, 0x00000000, 0x00000000, 0x00000000,
246 0x00000000, 0x00000000, 0x00000000, 0x00000000}
248 { .name = "Echo Cancellation",
249 .nid = ECHO_CANCELLATION,
251 .reqs = {0, 1, 2, 3},
252 .direct = EFX_DIR_IN,
254 .def_vals = {0x00000000, 0x3F3A9692, 0x00000000, 0x00000000}
256 { .name = "Voice Focus",
259 .reqs = {6, 7, 8, 9},
260 .direct = EFX_DIR_IN,
262 .def_vals = {0x3F800000, 0x3D7DF3B6, 0x41F00000, 0x41F00000}
268 .direct = EFX_DIR_IN,
270 .def_vals = {0x00000000, 0x3F3D70A4}
272 { .name = "Noise Reduction",
273 .nid = NOISE_REDUCTION,
276 .direct = EFX_DIR_IN,
278 .def_vals = {0x3F800000, 0x3F000000}
283 .reqs = {10, 11, 12, 13, 14, 15, 16, 17, 18},
284 .direct = EFX_DIR_IN,
286 .def_vals = {0x00000000, 0x43C80000, 0x44AF0000, 0x44FA0000,
287 0x3F800000, 0x3F800000, 0x3F800000, 0x00000000,
292 /* Tuning controls */
293 #ifdef ENABLE_TUNING_CONTROLS
296 #define TUNING_CTL_START_NID 0xC0
297 WEDGE_ANGLE = TUNING_CTL_START_NID,
310 #define TUNING_CTLS_COUNT (TUNING_CTL_END_NID - TUNING_CTL_START_NID)
313 struct ct_tuning_ctl {
314 char name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
315 hda_nid_t parent_nid;
317 int mid; /*effect module ID*/
318 int req; /*effect module request*/
319 int direct; /* 0:output; 1:input*/
320 unsigned int def_val;/*effect default values*/
323 static const struct ct_tuning_ctl ca0132_tuning_ctls[] = {
324 { .name = "Wedge Angle",
325 .parent_nid = VOICE_FOCUS,
329 .direct = EFX_DIR_IN,
330 .def_val = 0x41F00000
332 { .name = "SVM Level",
333 .parent_nid = MIC_SVM,
337 .direct = EFX_DIR_IN,
338 .def_val = 0x3F3D70A4
340 { .name = "EQ Band0",
341 .parent_nid = EQUALIZER,
342 .nid = EQUALIZER_BAND_0,
345 .direct = EFX_DIR_OUT,
346 .def_val = 0x00000000
348 { .name = "EQ Band1",
349 .parent_nid = EQUALIZER,
350 .nid = EQUALIZER_BAND_1,
353 .direct = EFX_DIR_OUT,
354 .def_val = 0x00000000
356 { .name = "EQ Band2",
357 .parent_nid = EQUALIZER,
358 .nid = EQUALIZER_BAND_2,
361 .direct = EFX_DIR_OUT,
362 .def_val = 0x00000000
364 { .name = "EQ Band3",
365 .parent_nid = EQUALIZER,
366 .nid = EQUALIZER_BAND_3,
369 .direct = EFX_DIR_OUT,
370 .def_val = 0x00000000
372 { .name = "EQ Band4",
373 .parent_nid = EQUALIZER,
374 .nid = EQUALIZER_BAND_4,
377 .direct = EFX_DIR_OUT,
378 .def_val = 0x00000000
380 { .name = "EQ Band5",
381 .parent_nid = EQUALIZER,
382 .nid = EQUALIZER_BAND_5,
385 .direct = EFX_DIR_OUT,
386 .def_val = 0x00000000
388 { .name = "EQ Band6",
389 .parent_nid = EQUALIZER,
390 .nid = EQUALIZER_BAND_6,
393 .direct = EFX_DIR_OUT,
394 .def_val = 0x00000000
396 { .name = "EQ Band7",
397 .parent_nid = EQUALIZER,
398 .nid = EQUALIZER_BAND_7,
401 .direct = EFX_DIR_OUT,
402 .def_val = 0x00000000
404 { .name = "EQ Band8",
405 .parent_nid = EQUALIZER,
406 .nid = EQUALIZER_BAND_8,
409 .direct = EFX_DIR_OUT,
410 .def_val = 0x00000000
412 { .name = "EQ Band9",
413 .parent_nid = EQUALIZER,
414 .nid = EQUALIZER_BAND_9,
417 .direct = EFX_DIR_OUT,
418 .def_val = 0x00000000
423 /* Voice FX Presets */
424 #define VOICEFX_MAX_PARAM_COUNT 9
430 int reqs[VOICEFX_MAX_PARAM_COUNT]; /*effect module request*/
433 struct ct_voicefx_preset {
434 char *name; /*preset name*/
435 unsigned int vals[VOICEFX_MAX_PARAM_COUNT];
438 static const struct ct_voicefx ca0132_voicefx = {
439 .name = "VoiceFX Capture Switch",
442 .reqs = {10, 11, 12, 13, 14, 15, 16, 17, 18}
445 static const struct ct_voicefx_preset ca0132_voicefx_presets[] = {
447 .vals = { 0x00000000, 0x43C80000, 0x44AF0000,
448 0x44FA0000, 0x3F800000, 0x3F800000,
449 0x3F800000, 0x00000000, 0x00000000 }
451 { .name = "Female2Male",
452 .vals = { 0x3F800000, 0x43C80000, 0x44AF0000,
453 0x44FA0000, 0x3F19999A, 0x3F866666,
454 0x3F800000, 0x00000000, 0x00000000 }
456 { .name = "Male2Female",
457 .vals = { 0x3F800000, 0x43C80000, 0x44AF0000,
458 0x450AC000, 0x4017AE14, 0x3F6B851F,
459 0x3F800000, 0x00000000, 0x00000000 }
461 { .name = "ScrappyKid",
462 .vals = { 0x3F800000, 0x43C80000, 0x44AF0000,
463 0x44FA0000, 0x40400000, 0x3F28F5C3,
464 0x3F800000, 0x00000000, 0x00000000 }
467 .vals = { 0x3F800000, 0x44324000, 0x44BB8000,
468 0x44E10000, 0x3FB33333, 0x3FB9999A,
469 0x3F800000, 0x3E3A2E43, 0x00000000 }
472 .vals = { 0x3F800000, 0x43EA0000, 0x44A52000,
473 0x45098000, 0x3F266666, 0x3FC00000,
474 0x3F800000, 0x00000000, 0x00000000 }
477 .vals = { 0x3F800000, 0x43C70000, 0x44AE6000,
478 0x45193000, 0x3F8E147B, 0x3F75C28F,
479 0x3F800000, 0x00000000, 0x00000000 }
482 .vals = { 0x3F800000, 0x43930000, 0x44BEE000,
483 0x45007000, 0x3F451EB8, 0x3F7851EC,
484 0x3F800000, 0x00000000, 0x00000000 }
486 { .name = "AlienBrute",
487 .vals = { 0x3F800000, 0x43BFC5AC, 0x44B28FDF,
488 0x451F6000, 0x3F266666, 0x3FA7D945,
489 0x3F800000, 0x3CF5C28F, 0x00000000 }
492 .vals = { 0x3F800000, 0x43C80000, 0x44AF0000,
493 0x44FA0000, 0x3FB2718B, 0x3F800000,
494 0xBC07010E, 0x00000000, 0x00000000 }
497 .vals = { 0x3F800000, 0x43C20000, 0x44906000,
498 0x44E70000, 0x3F4CCCCD, 0x3F8A3D71,
499 0x3F0A3D71, 0x00000000, 0x00000000 }
502 .vals = { 0x3F800000, 0x43C80000, 0x44AF0000,
503 0x44FA0000, 0x3F800000, 0x3F800000,
504 0x3E4CCCCD, 0x00000000, 0x00000000 }
506 { .name = "DeepVoice",
507 .vals = { 0x3F800000, 0x43A9C5AC, 0x44AA4FDF,
508 0x44FFC000, 0x3EDBB56F, 0x3F99C4CA,
509 0x3F800000, 0x00000000, 0x00000000 }
511 { .name = "Munchkin",
512 .vals = { 0x3F800000, 0x43C80000, 0x44AF0000,
513 0x44FA0000, 0x3F800000, 0x3F1A043C,
514 0x3F800000, 0x00000000, 0x00000000 }
518 /* ca0132 EQ presets, taken from Windows Sound Blaster Z Driver */
520 #define EQ_PRESET_MAX_PARAM_COUNT 11
526 int reqs[EQ_PRESET_MAX_PARAM_COUNT]; /*effect module request*/
529 struct ct_eq_preset {
530 char *name; /*preset name*/
531 unsigned int vals[EQ_PRESET_MAX_PARAM_COUNT];
534 static const struct ct_eq ca0132_alt_eq_enum = {
535 .name = "FX: Equalizer Preset Switch",
536 .nid = EQ_PRESET_ENUM,
538 .reqs = {10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}
542 static const struct ct_eq_preset ca0132_alt_eq_presets[] = {
544 .vals = { 0x00000000, 0x00000000, 0x00000000,
545 0x00000000, 0x00000000, 0x00000000,
546 0x00000000, 0x00000000, 0x00000000,
547 0x00000000, 0x00000000 }
549 { .name = "Acoustic",
550 .vals = { 0x00000000, 0x00000000, 0x3F8CCCCD,
551 0x40000000, 0x00000000, 0x00000000,
552 0x00000000, 0x00000000, 0x40000000,
553 0x40000000, 0x40000000 }
555 { .name = "Classical",
556 .vals = { 0x00000000, 0x00000000, 0x40C00000,
557 0x40C00000, 0x40466666, 0x00000000,
558 0x00000000, 0x00000000, 0x00000000,
559 0x40466666, 0x40466666 }
562 .vals = { 0x00000000, 0xBF99999A, 0x00000000,
563 0x3FA66666, 0x3FA66666, 0x3F8CCCCD,
564 0x00000000, 0x00000000, 0x40000000,
565 0x40466666, 0x40800000 }
568 .vals = { 0x00000000, 0xBF99999A, 0x40000000,
569 0x40466666, 0x40866666, 0xBF99999A,
570 0xBF99999A, 0x00000000, 0x00000000,
571 0x40800000, 0x40800000 }
574 .vals = { 0x00000000, 0x00000000, 0x00000000,
575 0x3F8CCCCD, 0x40800000, 0x40800000,
576 0x40800000, 0x00000000, 0x3F8CCCCD,
577 0x40466666, 0x40466666 }
580 .vals = { 0x00000000, 0x00000000, 0x40000000,
581 0x40000000, 0x00000000, 0x00000000,
582 0x00000000, 0x3F8CCCCD, 0x40000000,
583 0x40000000, 0x40000000 }
586 .vals = { 0x00000000, 0xBFCCCCCD, 0x00000000,
587 0x40000000, 0x40000000, 0x00000000,
588 0xBF99999A, 0xBF99999A, 0x00000000,
589 0x40466666, 0x40C00000 }
592 .vals = { 0x00000000, 0xBF99999A, 0xBF99999A,
593 0x3F8CCCCD, 0x40000000, 0xBF99999A,
594 0xBF99999A, 0x00000000, 0x00000000,
595 0x40800000, 0x40800000 }
598 .vals = { 0x00000000, 0xC0000000, 0xBF99999A,
599 0xBF99999A, 0x00000000, 0x40466666,
600 0x40800000, 0x40466666, 0x00000000,
601 0x00000000, 0x3F8CCCCD }
605 /* DSP command sequences for ca0132_alt_select_out */
606 #define ALT_OUT_SET_MAX_COMMANDS 9 /* Max number of commands in sequence */
607 struct ca0132_alt_out_set {
608 char *name; /*preset name*/
609 unsigned char commands;
610 unsigned int mids[ALT_OUT_SET_MAX_COMMANDS];
611 unsigned int reqs[ALT_OUT_SET_MAX_COMMANDS];
612 unsigned int vals[ALT_OUT_SET_MAX_COMMANDS];
615 static const struct ca0132_alt_out_set alt_out_presets[] = {
616 { .name = "Line Out",
618 .mids = { 0x96, 0x96, 0x96, 0x8F,
620 .reqs = { 0x19, 0x17, 0x18, 0x01,
622 .vals = { 0x3F000000, 0x42A00000, 0x00000000,
623 0x00000000, 0x00000000, 0x00000000,
626 { .name = "Headphone",
628 .mids = { 0x96, 0x96, 0x96, 0x8F,
630 .reqs = { 0x19, 0x17, 0x18, 0x01,
632 .vals = { 0x3F000000, 0x42A00000, 0x00000000,
633 0x00000000, 0x00000000, 0x00000000,
636 { .name = "Surround",
638 .mids = { 0x96, 0x8F, 0x96, 0x96,
639 0x96, 0x96, 0x96, 0x96 },
640 .reqs = { 0x18, 0x01, 0x1F, 0x15,
641 0x3A, 0x1A, 0x1B, 0x1C },
642 .vals = { 0x00000000, 0x00000000, 0x00000000,
643 0x00000000, 0x00000000, 0x00000000,
644 0x00000000, 0x00000000 }
649 * DSP volume setting structs. Req 1 is left volume, req 2 is right volume,
650 * and I don't know what the third req is, but it's always zero. I assume it's
651 * some sort of update or set command to tell the DSP there's new volume info.
653 #define DSP_VOL_OUT 0
656 struct ct_dsp_volume_ctl {
658 int mid; /* module ID*/
659 unsigned int reqs[3]; /* scp req ID */
662 static const struct ct_dsp_volume_ctl ca0132_alt_vol_ctls[] = {
673 /* Values for ca0113_mmio_command_set for selecting output. */
674 #define AE5_CA0113_OUT_SET_COMMANDS 6
675 struct ae5_ca0113_output_set {
676 unsigned int group[AE5_CA0113_OUT_SET_COMMANDS];
677 unsigned int target[AE5_CA0113_OUT_SET_COMMANDS];
678 unsigned int vals[AE5_CA0113_OUT_SET_COMMANDS];
681 static const struct ae5_ca0113_output_set ae5_ca0113_output_presets[] = {
682 { .group = { 0x30, 0x30, 0x48, 0x48, 0x48, 0x30 },
683 .target = { 0x2e, 0x30, 0x0d, 0x17, 0x19, 0x32 },
684 .vals = { 0x00, 0x00, 0x40, 0x00, 0x00, 0x3f }
686 { .group = { 0x30, 0x30, 0x48, 0x48, 0x48, 0x30 },
687 .target = { 0x2e, 0x30, 0x0d, 0x17, 0x19, 0x32 },
688 .vals = { 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00 }
690 { .group = { 0x30, 0x30, 0x48, 0x48, 0x48, 0x30 },
691 .target = { 0x2e, 0x30, 0x0d, 0x17, 0x19, 0x32 },
692 .vals = { 0x00, 0x00, 0x40, 0x00, 0x00, 0x3f }
696 /* ae5 ca0113 command sequences to set headphone gain levels. */
697 #define AE5_HEADPHONE_GAIN_PRESET_MAX_COMMANDS 4
698 struct ae5_headphone_gain_set {
700 unsigned int vals[AE5_HEADPHONE_GAIN_PRESET_MAX_COMMANDS];
703 static const struct ae5_headphone_gain_set ae5_headphone_gain_presets[] = {
704 { .name = "Low (16-31",
705 .vals = { 0xff, 0x2c, 0xf5, 0x32 }
707 { .name = "Medium (32-149",
708 .vals = { 0x38, 0xa8, 0x3e, 0x4c }
710 { .name = "High (150-600",
711 .vals = { 0xff, 0xff, 0xff, 0x7f }
715 struct ae5_filter_set {
720 static const struct ae5_filter_set ae5_filter_presets[] = {
721 { .name = "Slow Roll Off",
724 { .name = "Minimum Phase",
727 { .name = "Fast Roll Off",
732 enum hda_cmd_vendor_io {
734 VENDOR_DSPIO_SCP_WRITE_DATA_LOW = 0x000,
735 VENDOR_DSPIO_SCP_WRITE_DATA_HIGH = 0x100,
737 VENDOR_DSPIO_STATUS = 0xF01,
738 VENDOR_DSPIO_SCP_POST_READ_DATA = 0x702,
739 VENDOR_DSPIO_SCP_READ_DATA = 0xF02,
740 VENDOR_DSPIO_DSP_INIT = 0x703,
741 VENDOR_DSPIO_SCP_POST_COUNT_QUERY = 0x704,
742 VENDOR_DSPIO_SCP_READ_COUNT = 0xF04,
744 /* for ChipIO node */
745 VENDOR_CHIPIO_ADDRESS_LOW = 0x000,
746 VENDOR_CHIPIO_ADDRESS_HIGH = 0x100,
747 VENDOR_CHIPIO_STREAM_FORMAT = 0x200,
748 VENDOR_CHIPIO_DATA_LOW = 0x300,
749 VENDOR_CHIPIO_DATA_HIGH = 0x400,
751 VENDOR_CHIPIO_8051_WRITE_DIRECT = 0x500,
752 VENDOR_CHIPIO_8051_READ_DIRECT = 0xD00,
754 VENDOR_CHIPIO_GET_PARAMETER = 0xF00,
755 VENDOR_CHIPIO_STATUS = 0xF01,
756 VENDOR_CHIPIO_HIC_POST_READ = 0x702,
757 VENDOR_CHIPIO_HIC_READ_DATA = 0xF03,
759 VENDOR_CHIPIO_8051_DATA_WRITE = 0x707,
760 VENDOR_CHIPIO_8051_DATA_READ = 0xF07,
761 VENDOR_CHIPIO_8051_PMEM_READ = 0xF08,
762 VENDOR_CHIPIO_8051_IRAM_WRITE = 0x709,
763 VENDOR_CHIPIO_8051_IRAM_READ = 0xF09,
765 VENDOR_CHIPIO_CT_EXTENSIONS_ENABLE = 0x70A,
766 VENDOR_CHIPIO_CT_EXTENSIONS_GET = 0xF0A,
768 VENDOR_CHIPIO_PLL_PMU_WRITE = 0x70C,
769 VENDOR_CHIPIO_PLL_PMU_READ = 0xF0C,
770 VENDOR_CHIPIO_8051_ADDRESS_LOW = 0x70D,
771 VENDOR_CHIPIO_8051_ADDRESS_HIGH = 0x70E,
772 VENDOR_CHIPIO_FLAG_SET = 0x70F,
773 VENDOR_CHIPIO_FLAGS_GET = 0xF0F,
774 VENDOR_CHIPIO_PARAM_SET = 0x710,
775 VENDOR_CHIPIO_PARAM_GET = 0xF10,
777 VENDOR_CHIPIO_PORT_ALLOC_CONFIG_SET = 0x711,
778 VENDOR_CHIPIO_PORT_ALLOC_SET = 0x712,
779 VENDOR_CHIPIO_PORT_ALLOC_GET = 0xF12,
780 VENDOR_CHIPIO_PORT_FREE_SET = 0x713,
782 VENDOR_CHIPIO_PARAM_EX_ID_GET = 0xF17,
783 VENDOR_CHIPIO_PARAM_EX_ID_SET = 0x717,
784 VENDOR_CHIPIO_PARAM_EX_VALUE_GET = 0xF18,
785 VENDOR_CHIPIO_PARAM_EX_VALUE_SET = 0x718,
787 VENDOR_CHIPIO_DMIC_CTL_SET = 0x788,
788 VENDOR_CHIPIO_DMIC_CTL_GET = 0xF88,
789 VENDOR_CHIPIO_DMIC_PIN_SET = 0x789,
790 VENDOR_CHIPIO_DMIC_PIN_GET = 0xF89,
791 VENDOR_CHIPIO_DMIC_MCLK_SET = 0x78A,
792 VENDOR_CHIPIO_DMIC_MCLK_GET = 0xF8A,
794 VENDOR_CHIPIO_EAPD_SEL_SET = 0x78D
800 enum control_flag_id {
801 /* Connection manager stream setup is bypassed/enabled */
802 CONTROL_FLAG_C_MGR = 0,
803 /* DSP DMA is bypassed/enabled */
804 CONTROL_FLAG_DMA = 1,
805 /* 8051 'idle' mode is disabled/enabled */
806 CONTROL_FLAG_IDLE_ENABLE = 2,
807 /* Tracker for the SPDIF-in path is bypassed/enabled */
808 CONTROL_FLAG_TRACKER = 3,
809 /* DigitalOut to Spdif2Out connection is disabled/enabled */
810 CONTROL_FLAG_SPDIF2OUT = 4,
811 /* Digital Microphone is disabled/enabled */
812 CONTROL_FLAG_DMIC = 5,
813 /* ADC_B rate is 48 kHz/96 kHz */
814 CONTROL_FLAG_ADC_B_96KHZ = 6,
815 /* ADC_C rate is 48 kHz/96 kHz */
816 CONTROL_FLAG_ADC_C_96KHZ = 7,
817 /* DAC rate is 48 kHz/96 kHz (affects all DACs) */
818 CONTROL_FLAG_DAC_96KHZ = 8,
819 /* DSP rate is 48 kHz/96 kHz */
820 CONTROL_FLAG_DSP_96KHZ = 9,
821 /* SRC clock is 98 MHz/196 MHz (196 MHz forces rate to 96 KHz) */
822 CONTROL_FLAG_SRC_CLOCK_196MHZ = 10,
823 /* SRC rate is 48 kHz/96 kHz (48 kHz disabled when clock is 196 MHz) */
824 CONTROL_FLAG_SRC_RATE_96KHZ = 11,
825 /* Decode Loop (DSP->SRC->DSP) is disabled/enabled */
826 CONTROL_FLAG_DECODE_LOOP = 12,
827 /* De-emphasis filter on DAC-1 disabled/enabled */
828 CONTROL_FLAG_DAC1_DEEMPHASIS = 13,
829 /* De-emphasis filter on DAC-2 disabled/enabled */
830 CONTROL_FLAG_DAC2_DEEMPHASIS = 14,
831 /* De-emphasis filter on DAC-3 disabled/enabled */
832 CONTROL_FLAG_DAC3_DEEMPHASIS = 15,
833 /* High-pass filter on ADC_B disabled/enabled */
834 CONTROL_FLAG_ADC_B_HIGH_PASS = 16,
835 /* High-pass filter on ADC_C disabled/enabled */
836 CONTROL_FLAG_ADC_C_HIGH_PASS = 17,
837 /* Common mode on Port_A disabled/enabled */
838 CONTROL_FLAG_PORT_A_COMMON_MODE = 18,
839 /* Common mode on Port_D disabled/enabled */
840 CONTROL_FLAG_PORT_D_COMMON_MODE = 19,
841 /* Impedance for ramp generator on Port_A 16 Ohm/10K Ohm */
842 CONTROL_FLAG_PORT_A_10KOHM_LOAD = 20,
843 /* Impedance for ramp generator on Port_D, 16 Ohm/10K Ohm */
844 CONTROL_FLAG_PORT_D_10KOHM_LOAD = 21,
845 /* ASI rate is 48kHz/96kHz */
846 CONTROL_FLAG_ASI_96KHZ = 22,
847 /* DAC power settings able to control attached ports no/yes */
848 CONTROL_FLAG_DACS_CONTROL_PORTS = 23,
849 /* Clock Stop OK reporting is disabled/enabled */
850 CONTROL_FLAG_CONTROL_STOP_OK_ENABLE = 24,
851 /* Number of control flags */
852 CONTROL_FLAGS_MAX = (CONTROL_FLAG_CONTROL_STOP_OK_ENABLE+1)
856 * Control parameter IDs
858 enum control_param_id {
859 /* 0: None, 1: Mic1In*/
860 CONTROL_PARAM_VIP_SOURCE = 1,
861 /* 0: force HDA, 1: allow DSP if HDA Spdif1Out stream is idle */
862 CONTROL_PARAM_SPDIF1_SOURCE = 2,
863 /* Port A output stage gain setting to use when 16 Ohm output
864 * impedance is selected*/
865 CONTROL_PARAM_PORTA_160OHM_GAIN = 8,
866 /* Port D output stage gain setting to use when 16 Ohm output
867 * impedance is selected*/
868 CONTROL_PARAM_PORTD_160OHM_GAIN = 10,
871 * This control param name was found in the 8051 memory, and makes
872 * sense given the fact the AE-5 uses it and has the ASI flag set.
874 CONTROL_PARAM_ASI = 23,
878 /* Select stream with the given ID */
879 CONTROL_PARAM_STREAM_ID = 24,
880 /* Source connection point for the selected stream */
881 CONTROL_PARAM_STREAM_SOURCE_CONN_POINT = 25,
882 /* Destination connection point for the selected stream */
883 CONTROL_PARAM_STREAM_DEST_CONN_POINT = 26,
884 /* Number of audio channels in the selected stream */
885 CONTROL_PARAM_STREAMS_CHANNELS = 27,
886 /*Enable control for the selected stream */
887 CONTROL_PARAM_STREAM_CONTROL = 28,
889 /* Connection Point Control */
891 /* Select connection point with the given ID */
892 CONTROL_PARAM_CONN_POINT_ID = 29,
893 /* Connection point sample rate */
894 CONTROL_PARAM_CONN_POINT_SAMPLE_RATE = 30,
898 /* Select HDA node with the given ID */
899 CONTROL_PARAM_NODE_ID = 31
903 * Dsp Io Status codes
905 enum hda_vendor_status_dspio {
907 VENDOR_STATUS_DSPIO_OK = 0x00,
908 /* Busy, unable to accept new command, the host must retry */
909 VENDOR_STATUS_DSPIO_BUSY = 0x01,
910 /* SCP command queue is full */
911 VENDOR_STATUS_DSPIO_SCP_COMMAND_QUEUE_FULL = 0x02,
912 /* SCP response queue is empty */
913 VENDOR_STATUS_DSPIO_SCP_RESPONSE_QUEUE_EMPTY = 0x03
917 * Chip Io Status codes
919 enum hda_vendor_status_chipio {
921 VENDOR_STATUS_CHIPIO_OK = 0x00,
922 /* Busy, unable to accept new command, the host must retry */
923 VENDOR_STATUS_CHIPIO_BUSY = 0x01
929 enum ca0132_sample_rate {
949 SR_RATE_UNKNOWN = 0x1F
952 enum dsp_download_state {
953 DSP_DOWNLOAD_FAILED = -1,
954 DSP_DOWNLOAD_INIT = 0,
959 /* retrieve parameters from hda format */
960 #define get_hdafmt_chs(fmt) (fmt & 0xf)
961 #define get_hdafmt_bits(fmt) ((fmt >> 4) & 0x7)
962 #define get_hdafmt_rate(fmt) ((fmt >> 8) & 0x7f)
963 #define get_hdafmt_type(fmt) ((fmt >> 15) & 0x1)
970 const struct snd_kcontrol_new *mixers[5];
971 unsigned int num_mixers;
972 const struct hda_verb *base_init_verbs;
973 const struct hda_verb *base_exit_verbs;
974 const struct hda_verb *chip_init_verbs;
975 const struct hda_verb *desktop_init_verbs;
976 struct hda_verb *spec_init_verbs;
977 struct auto_pin_cfg autocfg;
979 /* Nodes configurations */
980 struct hda_multi_out multiout;
981 hda_nid_t out_pins[AUTO_CFG_MAX_OUTS];
982 hda_nid_t dacs[AUTO_CFG_MAX_OUTS];
983 unsigned int num_outputs;
984 hda_nid_t input_pins[AUTO_PIN_LAST];
985 hda_nid_t adcs[AUTO_PIN_LAST];
988 unsigned int num_inputs;
989 hda_nid_t shared_mic_nid;
990 hda_nid_t shared_out_nid;
991 hda_nid_t unsol_tag_hp;
992 hda_nid_t unsol_tag_front_hp; /* for desktop ca0132 codecs */
993 hda_nid_t unsol_tag_amic1;
996 struct mutex chipio_mutex; /* chip access mutex */
999 /* DSP download related */
1000 enum dsp_download_state dsp_state;
1001 unsigned int dsp_stream_id;
1002 unsigned int wait_scp;
1003 unsigned int wait_scp_header;
1004 unsigned int wait_num_data;
1005 unsigned int scp_resp_header;
1006 unsigned int scp_resp_data[4];
1007 unsigned int scp_resp_count;
1008 bool alt_firmware_present;
1009 bool startup_check_entered;
1012 /* mixer and effects related */
1013 unsigned char dmic_ctl;
1016 long vnode_lvol[VNODES_COUNT];
1017 long vnode_rvol[VNODES_COUNT];
1018 long vnode_lswitch[VNODES_COUNT];
1019 long vnode_rswitch[VNODES_COUNT];
1020 long effects_switch[EFFECTS_COUNT];
1023 /* ca0132_alt control related values */
1024 unsigned char in_enum_val;
1025 unsigned char out_enum_val;
1026 unsigned char mic_boost_enum_val;
1027 unsigned char smart_volume_setting;
1028 long fx_ctl_val[EFFECT_LEVEL_SLIDERS];
1029 long xbass_xover_freq;
1031 unsigned int tlv[4];
1032 struct hda_vmaster_mute_hook vmaster_mute;
1033 /* AE-5 Control values */
1034 unsigned char ae5_headphone_gain_val;
1035 unsigned char ae5_filter_val;
1036 /* ZxR Control Values */
1037 unsigned char zxr_gain_set;
1039 struct hda_codec *codec;
1040 struct delayed_work unsol_hp_work;
1043 #ifdef ENABLE_TUNING_CONTROLS
1044 long cur_ctl_vals[TUNING_CTLS_COUNT];
1047 * The Recon3D, Sound Blaster Z, Sound Blaster ZxR, and Sound Blaster
1048 * AE-5 all use PCI region 2 to toggle GPIO and other currently unknown
1052 void __iomem *mem_base;
1055 * Whether or not to use the alt functions like alt_select_out,
1056 * alt_select_in, etc. Only used on desktop codecs for now, because of
1057 * surround sound support.
1059 bool use_alt_functions;
1062 * Whether or not to use alt controls: volume effect sliders, EQ
1063 * presets, smart volume presets, and new control names with FX prefix.
1064 * Renames PlayEnhancement and CrystalVoice too.
1066 bool use_alt_controls;
1070 * CA0132 quirks table
1075 QUIRK_ALIENWARE_M17XR4,
1084 static const struct hda_pintbl alienware_pincfgs[] = {
1085 { 0x0b, 0x90170110 }, /* Builtin Speaker */
1086 { 0x0c, 0x411111f0 }, /* N/A */
1087 { 0x0d, 0x411111f0 }, /* N/A */
1088 { 0x0e, 0x411111f0 }, /* N/A */
1089 { 0x0f, 0x0321101f }, /* HP */
1090 { 0x10, 0x411111f0 }, /* Headset? disabled for now */
1091 { 0x11, 0x03a11021 }, /* Mic */
1092 { 0x12, 0xd5a30140 }, /* Builtin Mic */
1093 { 0x13, 0x411111f0 }, /* N/A */
1094 { 0x18, 0x411111f0 }, /* N/A */
1098 /* Sound Blaster Z pin configs taken from Windows Driver */
1099 static const struct hda_pintbl sbz_pincfgs[] = {
1100 { 0x0b, 0x01017010 }, /* Port G -- Lineout FRONT L/R */
1101 { 0x0c, 0x014510f0 }, /* SPDIF Out 1 */
1102 { 0x0d, 0x014510f0 }, /* Digital Out */
1103 { 0x0e, 0x01c510f0 }, /* SPDIF In */
1104 { 0x0f, 0x0221701f }, /* Port A -- BackPanel HP */
1105 { 0x10, 0x01017012 }, /* Port D -- Center/LFE or FP Hp */
1106 { 0x11, 0x01017014 }, /* Port B -- LineMicIn2 / Rear L/R */
1107 { 0x12, 0x01a170f0 }, /* Port C -- LineIn1 */
1108 { 0x13, 0x908700f0 }, /* What U Hear In*/
1109 { 0x18, 0x50d000f0 }, /* N/A */
1113 /* Sound Blaster ZxR pin configs taken from Windows Driver */
1114 static const struct hda_pintbl zxr_pincfgs[] = {
1115 { 0x0b, 0x01047110 }, /* Port G -- Lineout FRONT L/R */
1116 { 0x0c, 0x414510f0 }, /* SPDIF Out 1 - Disabled*/
1117 { 0x0d, 0x014510f0 }, /* Digital Out */
1118 { 0x0e, 0x41c520f0 }, /* SPDIF In - Disabled*/
1119 { 0x0f, 0x0122711f }, /* Port A -- BackPanel HP */
1120 { 0x10, 0x01017111 }, /* Port D -- Center/LFE */
1121 { 0x11, 0x01017114 }, /* Port B -- LineMicIn2 / Rear L/R */
1122 { 0x12, 0x01a271f0 }, /* Port C -- LineIn1 */
1123 { 0x13, 0x908700f0 }, /* What U Hear In*/
1124 { 0x18, 0x50d000f0 }, /* N/A */
1128 /* Recon3D pin configs taken from Windows Driver */
1129 static const struct hda_pintbl r3d_pincfgs[] = {
1130 { 0x0b, 0x01014110 }, /* Port G -- Lineout FRONT L/R */
1131 { 0x0c, 0x014510f0 }, /* SPDIF Out 1 */
1132 { 0x0d, 0x014510f0 }, /* Digital Out */
1133 { 0x0e, 0x01c520f0 }, /* SPDIF In */
1134 { 0x0f, 0x0221401f }, /* Port A -- BackPanel HP */
1135 { 0x10, 0x01016011 }, /* Port D -- Center/LFE or FP Hp */
1136 { 0x11, 0x01011014 }, /* Port B -- LineMicIn2 / Rear L/R */
1137 { 0x12, 0x02a090f0 }, /* Port C -- LineIn1 */
1138 { 0x13, 0x908700f0 }, /* What U Hear In*/
1139 { 0x18, 0x50d000f0 }, /* N/A */
1143 /* Sound Blaster AE-5 pin configs taken from Windows Driver */
1144 static const struct hda_pintbl ae5_pincfgs[] = {
1145 { 0x0b, 0x01017010 }, /* Port G -- Lineout FRONT L/R */
1146 { 0x0c, 0x014510f0 }, /* SPDIF Out 1 */
1147 { 0x0d, 0x014510f0 }, /* Digital Out */
1148 { 0x0e, 0x01c510f0 }, /* SPDIF In */
1149 { 0x0f, 0x01017114 }, /* Port A -- Rear L/R. */
1150 { 0x10, 0x01017012 }, /* Port D -- Center/LFE or FP Hp */
1151 { 0x11, 0x01a170ff }, /* Port B -- LineMicIn2 / Rear Headphone */
1152 { 0x12, 0x01a170f0 }, /* Port C -- LineIn1 */
1153 { 0x13, 0x908700f0 }, /* What U Hear In*/
1154 { 0x18, 0x50d000f0 }, /* N/A */
1158 /* Recon3D integrated pin configs taken from Windows Driver */
1159 static const struct hda_pintbl r3di_pincfgs[] = {
1160 { 0x0b, 0x01014110 }, /* Port G -- Lineout FRONT L/R */
1161 { 0x0c, 0x014510f0 }, /* SPDIF Out 1 */
1162 { 0x0d, 0x014510f0 }, /* Digital Out */
1163 { 0x0e, 0x41c520f0 }, /* SPDIF In */
1164 { 0x0f, 0x0221401f }, /* Port A -- BackPanel HP */
1165 { 0x10, 0x01016011 }, /* Port D -- Center/LFE or FP Hp */
1166 { 0x11, 0x01011014 }, /* Port B -- LineMicIn2 / Rear L/R */
1167 { 0x12, 0x02a090f0 }, /* Port C -- LineIn1 */
1168 { 0x13, 0x908700f0 }, /* What U Hear In*/
1169 { 0x18, 0x500000f0 }, /* N/A */
1173 static const struct snd_pci_quirk ca0132_quirks[] = {
1174 SND_PCI_QUIRK(0x1028, 0x057b, "Alienware M17x R4", QUIRK_ALIENWARE_M17XR4),
1175 SND_PCI_QUIRK(0x1028, 0x0685, "Alienware 15 2015", QUIRK_ALIENWARE),
1176 SND_PCI_QUIRK(0x1028, 0x0688, "Alienware 17 2015", QUIRK_ALIENWARE),
1177 SND_PCI_QUIRK(0x1028, 0x0708, "Alienware 15 R2 2016", QUIRK_ALIENWARE),
1178 SND_PCI_QUIRK(0x1102, 0x0010, "Sound Blaster Z", QUIRK_SBZ),
1179 SND_PCI_QUIRK(0x1102, 0x0023, "Sound Blaster Z", QUIRK_SBZ),
1180 SND_PCI_QUIRK(0x1458, 0xA016, "Recon3Di", QUIRK_R3DI),
1181 SND_PCI_QUIRK(0x1458, 0xA026, "Gigabyte G1.Sniper Z97", QUIRK_R3DI),
1182 SND_PCI_QUIRK(0x1458, 0xA036, "Gigabyte GA-Z170X-Gaming 7", QUIRK_R3DI),
1183 SND_PCI_QUIRK(0x1102, 0x0013, "Recon3D", QUIRK_R3D),
1184 SND_PCI_QUIRK(0x1102, 0x0051, "Sound Blaster AE-5", QUIRK_AE5),
1189 * CA0132 codec access
1191 static unsigned int codec_send_command(struct hda_codec *codec, hda_nid_t nid,
1192 unsigned int verb, unsigned int parm, unsigned int *res)
1194 unsigned int response;
1195 response = snd_hda_codec_read(codec, nid, 0, verb, parm);
1198 return ((response == -1) ? -1 : 0);
1201 static int codec_set_converter_format(struct hda_codec *codec, hda_nid_t nid,
1202 unsigned short converter_format, unsigned int *res)
1204 return codec_send_command(codec, nid, VENDOR_CHIPIO_STREAM_FORMAT,
1205 converter_format & 0xffff, res);
1208 static int codec_set_converter_stream_channel(struct hda_codec *codec,
1209 hda_nid_t nid, unsigned char stream,
1210 unsigned char channel, unsigned int *res)
1212 unsigned char converter_stream_channel = 0;
1214 converter_stream_channel = (stream << 4) | (channel & 0x0f);
1215 return codec_send_command(codec, nid, AC_VERB_SET_CHANNEL_STREAMID,
1216 converter_stream_channel, res);
1219 /* Chip access helper function */
1220 static int chipio_send(struct hda_codec *codec,
1225 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
1227 /* send bits of data specified by reg */
1229 res = snd_hda_codec_read(codec, WIDGET_CHIP_CTRL, 0,
1231 if (res == VENDOR_STATUS_CHIPIO_OK)
1234 } while (time_before(jiffies, timeout));
1240 * Write chip address through the vendor widget -- NOT protected by the Mutex!
1242 static int chipio_write_address(struct hda_codec *codec,
1243 unsigned int chip_addx)
1245 struct ca0132_spec *spec = codec->spec;
1248 if (spec->curr_chip_addx == chip_addx)
1251 /* send low 16 bits of the address */
1252 res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_LOW,
1253 chip_addx & 0xffff);
1256 /* send high 16 bits of the address */
1257 res = chipio_send(codec, VENDOR_CHIPIO_ADDRESS_HIGH,
1261 spec->curr_chip_addx = (res < 0) ? ~0U : chip_addx;
1267 * Write data through the vendor widget -- NOT protected by the Mutex!
1269 static int chipio_write_data(struct hda_codec *codec, unsigned int data)
1271 struct ca0132_spec *spec = codec->spec;
1274 /* send low 16 bits of the data */
1275 res = chipio_send(codec, VENDOR_CHIPIO_DATA_LOW, data & 0xffff);
1278 /* send high 16 bits of the data */
1279 res = chipio_send(codec, VENDOR_CHIPIO_DATA_HIGH,
1283 /*If no error encountered, automatically increment the address
1284 as per chip behaviour*/
1285 spec->curr_chip_addx = (res != -EIO) ?
1286 (spec->curr_chip_addx + 4) : ~0U;
1291 * Write multiple data through the vendor widget -- NOT protected by the Mutex!
1293 static int chipio_write_data_multiple(struct hda_codec *codec,
1300 codec_dbg(codec, "chipio_write_data null ptr\n");
1304 while ((count-- != 0) && (status == 0))
1305 status = chipio_write_data(codec, *data++);
1312 * Read data through the vendor widget -- NOT protected by the Mutex!
1314 static int chipio_read_data(struct hda_codec *codec, unsigned int *data)
1316 struct ca0132_spec *spec = codec->spec;
1320 res = chipio_send(codec, VENDOR_CHIPIO_HIC_POST_READ, 0);
1324 res = chipio_send(codec, VENDOR_CHIPIO_STATUS, 0);
1329 *data = snd_hda_codec_read(codec, WIDGET_CHIP_CTRL, 0,
1330 VENDOR_CHIPIO_HIC_READ_DATA,
1334 /*If no error encountered, automatically increment the address
1335 as per chip behaviour*/
1336 spec->curr_chip_addx = (res != -EIO) ?
1337 (spec->curr_chip_addx + 4) : ~0U;
1342 * Write given value to the given address through the chip I/O widget.
1343 * protected by the Mutex
1345 static int chipio_write(struct hda_codec *codec,
1346 unsigned int chip_addx, const unsigned int data)
1348 struct ca0132_spec *spec = codec->spec;
1351 mutex_lock(&spec->chipio_mutex);
1353 /* write the address, and if successful proceed to write data */
1354 err = chipio_write_address(codec, chip_addx);
1358 err = chipio_write_data(codec, data);
1363 mutex_unlock(&spec->chipio_mutex);
1368 * Write given value to the given address through the chip I/O widget.
1369 * not protected by the Mutex
1371 static int chipio_write_no_mutex(struct hda_codec *codec,
1372 unsigned int chip_addx, const unsigned int data)
1377 /* write the address, and if successful proceed to write data */
1378 err = chipio_write_address(codec, chip_addx);
1382 err = chipio_write_data(codec, data);
1391 * Write multiple values to the given address through the chip I/O widget.
1392 * protected by the Mutex
1394 static int chipio_write_multiple(struct hda_codec *codec,
1399 struct ca0132_spec *spec = codec->spec;
1402 mutex_lock(&spec->chipio_mutex);
1403 status = chipio_write_address(codec, chip_addx);
1407 status = chipio_write_data_multiple(codec, data, count);
1409 mutex_unlock(&spec->chipio_mutex);
1415 * Read the given address through the chip I/O widget
1416 * protected by the Mutex
1418 static int chipio_read(struct hda_codec *codec,
1419 unsigned int chip_addx, unsigned int *data)
1421 struct ca0132_spec *spec = codec->spec;
1424 mutex_lock(&spec->chipio_mutex);
1426 /* write the address, and if successful proceed to write data */
1427 err = chipio_write_address(codec, chip_addx);
1431 err = chipio_read_data(codec, data);
1436 mutex_unlock(&spec->chipio_mutex);
1441 * Set chip control flags through the chip I/O widget.
1443 static void chipio_set_control_flag(struct hda_codec *codec,
1444 enum control_flag_id flag_id,
1448 unsigned int flag_bit;
1450 flag_bit = (flag_state ? 1 : 0);
1451 val = (flag_bit << 7) | (flag_id);
1452 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1453 VENDOR_CHIPIO_FLAG_SET, val);
1457 * Set chip parameters through the chip I/O widget.
1459 static void chipio_set_control_param(struct hda_codec *codec,
1460 enum control_param_id param_id, int param_val)
1462 struct ca0132_spec *spec = codec->spec;
1465 if ((param_id < 32) && (param_val < 8)) {
1466 val = (param_val << 5) | (param_id);
1467 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1468 VENDOR_CHIPIO_PARAM_SET, val);
1470 mutex_lock(&spec->chipio_mutex);
1471 if (chipio_send(codec, VENDOR_CHIPIO_STATUS, 0) == 0) {
1472 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1473 VENDOR_CHIPIO_PARAM_EX_ID_SET,
1475 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1476 VENDOR_CHIPIO_PARAM_EX_VALUE_SET,
1479 mutex_unlock(&spec->chipio_mutex);
1484 * Set chip parameters through the chip I/O widget. NO MUTEX.
1486 static void chipio_set_control_param_no_mutex(struct hda_codec *codec,
1487 enum control_param_id param_id, int param_val)
1491 if ((param_id < 32) && (param_val < 8)) {
1492 val = (param_val << 5) | (param_id);
1493 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1494 VENDOR_CHIPIO_PARAM_SET, val);
1496 if (chipio_send(codec, VENDOR_CHIPIO_STATUS, 0) == 0) {
1497 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1498 VENDOR_CHIPIO_PARAM_EX_ID_SET,
1500 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1501 VENDOR_CHIPIO_PARAM_EX_VALUE_SET,
1507 * Connect stream to a source point, and then connect
1508 * that source point to a destination point.
1510 static void chipio_set_stream_source_dest(struct hda_codec *codec,
1511 int streamid, int source_point, int dest_point)
1513 chipio_set_control_param_no_mutex(codec,
1514 CONTROL_PARAM_STREAM_ID, streamid);
1515 chipio_set_control_param_no_mutex(codec,
1516 CONTROL_PARAM_STREAM_SOURCE_CONN_POINT, source_point);
1517 chipio_set_control_param_no_mutex(codec,
1518 CONTROL_PARAM_STREAM_DEST_CONN_POINT, dest_point);
1522 * Set number of channels in the selected stream.
1524 static void chipio_set_stream_channels(struct hda_codec *codec,
1525 int streamid, unsigned int channels)
1527 chipio_set_control_param_no_mutex(codec,
1528 CONTROL_PARAM_STREAM_ID, streamid);
1529 chipio_set_control_param_no_mutex(codec,
1530 CONTROL_PARAM_STREAMS_CHANNELS, channels);
1534 * Enable/Disable audio stream.
1536 static void chipio_set_stream_control(struct hda_codec *codec,
1537 int streamid, int enable)
1539 chipio_set_control_param_no_mutex(codec,
1540 CONTROL_PARAM_STREAM_ID, streamid);
1541 chipio_set_control_param_no_mutex(codec,
1542 CONTROL_PARAM_STREAM_CONTROL, enable);
1547 * Set sampling rate of the connection point. NO MUTEX.
1549 static void chipio_set_conn_rate_no_mutex(struct hda_codec *codec,
1550 int connid, enum ca0132_sample_rate rate)
1552 chipio_set_control_param_no_mutex(codec,
1553 CONTROL_PARAM_CONN_POINT_ID, connid);
1554 chipio_set_control_param_no_mutex(codec,
1555 CONTROL_PARAM_CONN_POINT_SAMPLE_RATE, rate);
1559 * Set sampling rate of the connection point.
1561 static void chipio_set_conn_rate(struct hda_codec *codec,
1562 int connid, enum ca0132_sample_rate rate)
1564 chipio_set_control_param(codec, CONTROL_PARAM_CONN_POINT_ID, connid);
1565 chipio_set_control_param(codec, CONTROL_PARAM_CONN_POINT_SAMPLE_RATE,
1570 * Writes to the 8051's internal address space directly instead of indirectly,
1571 * giving access to the special function registers located at addresses
1574 static void chipio_8051_write_direct(struct hda_codec *codec,
1575 unsigned int addr, unsigned int data)
1579 verb = VENDOR_CHIPIO_8051_WRITE_DIRECT | data;
1580 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0, verb, addr);
1586 static void chipio_enable_clocks(struct hda_codec *codec)
1588 struct ca0132_spec *spec = codec->spec;
1590 mutex_lock(&spec->chipio_mutex);
1591 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1592 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0);
1593 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1594 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xff);
1595 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1596 VENDOR_CHIPIO_8051_ADDRESS_LOW, 5);
1597 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1598 VENDOR_CHIPIO_PLL_PMU_WRITE, 0x0b);
1599 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1600 VENDOR_CHIPIO_8051_ADDRESS_LOW, 6);
1601 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
1602 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xff);
1603 mutex_unlock(&spec->chipio_mutex);
1607 * CA0132 DSP IO stuffs
1609 static int dspio_send(struct hda_codec *codec, unsigned int reg,
1613 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
1615 /* send bits of data specified by reg to dsp */
1617 res = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0, reg, data);
1618 if ((res >= 0) && (res != VENDOR_STATUS_DSPIO_BUSY))
1621 } while (time_before(jiffies, timeout));
1627 * Wait for DSP to be ready for commands
1629 static void dspio_write_wait(struct hda_codec *codec)
1632 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
1635 status = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0,
1636 VENDOR_DSPIO_STATUS, 0);
1637 if ((status == VENDOR_STATUS_DSPIO_OK) ||
1638 (status == VENDOR_STATUS_DSPIO_SCP_RESPONSE_QUEUE_EMPTY))
1641 } while (time_before(jiffies, timeout));
1645 * Write SCP data to DSP
1647 static int dspio_write(struct hda_codec *codec, unsigned int scp_data)
1649 struct ca0132_spec *spec = codec->spec;
1652 dspio_write_wait(codec);
1654 mutex_lock(&spec->chipio_mutex);
1655 status = dspio_send(codec, VENDOR_DSPIO_SCP_WRITE_DATA_LOW,
1660 status = dspio_send(codec, VENDOR_DSPIO_SCP_WRITE_DATA_HIGH,
1665 /* OK, now check if the write itself has executed*/
1666 status = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0,
1667 VENDOR_DSPIO_STATUS, 0);
1669 mutex_unlock(&spec->chipio_mutex);
1671 return (status == VENDOR_STATUS_DSPIO_SCP_COMMAND_QUEUE_FULL) ?
1676 * Write multiple SCP data to DSP
1678 static int dspio_write_multiple(struct hda_codec *codec,
1679 unsigned int *buffer, unsigned int size)
1688 while (count < size) {
1689 status = dspio_write(codec, *buffer++);
1698 static int dspio_read(struct hda_codec *codec, unsigned int *data)
1702 status = dspio_send(codec, VENDOR_DSPIO_SCP_POST_READ_DATA, 0);
1706 status = dspio_send(codec, VENDOR_DSPIO_STATUS, 0);
1707 if (status == -EIO ||
1708 status == VENDOR_STATUS_DSPIO_SCP_RESPONSE_QUEUE_EMPTY)
1711 *data = snd_hda_codec_read(codec, WIDGET_DSP_CTRL, 0,
1712 VENDOR_DSPIO_SCP_READ_DATA, 0);
1717 static int dspio_read_multiple(struct hda_codec *codec, unsigned int *buffer,
1718 unsigned int *buf_size, unsigned int size_count)
1721 unsigned int size = *buf_size;
1723 unsigned int skip_count;
1730 while (count < size && count < size_count) {
1731 status = dspio_read(codec, buffer++);
1739 while (skip_count < size) {
1740 status = dspio_read(codec, &dummy);
1752 * Construct the SCP header using corresponding fields
1754 static inline unsigned int
1755 make_scp_header(unsigned int target_id, unsigned int source_id,
1756 unsigned int get_flag, unsigned int req,
1757 unsigned int device_flag, unsigned int resp_flag,
1758 unsigned int error_flag, unsigned int data_size)
1760 unsigned int header = 0;
1762 header = (data_size & 0x1f) << 27;
1763 header |= (error_flag & 0x01) << 26;
1764 header |= (resp_flag & 0x01) << 25;
1765 header |= (device_flag & 0x01) << 24;
1766 header |= (req & 0x7f) << 17;
1767 header |= (get_flag & 0x01) << 16;
1768 header |= (source_id & 0xff) << 8;
1769 header |= target_id & 0xff;
1775 * Extract corresponding fields from SCP header
1778 extract_scp_header(unsigned int header,
1779 unsigned int *target_id, unsigned int *source_id,
1780 unsigned int *get_flag, unsigned int *req,
1781 unsigned int *device_flag, unsigned int *resp_flag,
1782 unsigned int *error_flag, unsigned int *data_size)
1785 *data_size = (header >> 27) & 0x1f;
1787 *error_flag = (header >> 26) & 0x01;
1789 *resp_flag = (header >> 25) & 0x01;
1791 *device_flag = (header >> 24) & 0x01;
1793 *req = (header >> 17) & 0x7f;
1795 *get_flag = (header >> 16) & 0x01;
1797 *source_id = (header >> 8) & 0xff;
1799 *target_id = header & 0xff;
1802 #define SCP_MAX_DATA_WORDS (16)
1804 /* Structure to contain any SCP message */
1807 unsigned int data[SCP_MAX_DATA_WORDS];
1810 static void dspio_clear_response_queue(struct hda_codec *codec)
1812 unsigned int dummy = 0;
1815 /* clear all from the response queue */
1817 status = dspio_read(codec, &dummy);
1818 } while (status == 0);
1821 static int dspio_get_response_data(struct hda_codec *codec)
1823 struct ca0132_spec *spec = codec->spec;
1824 unsigned int data = 0;
1827 if (dspio_read(codec, &data) < 0)
1830 if ((data & 0x00ffffff) == spec->wait_scp_header) {
1831 spec->scp_resp_header = data;
1832 spec->scp_resp_count = data >> 27;
1833 count = spec->wait_num_data;
1834 dspio_read_multiple(codec, spec->scp_resp_data,
1835 &spec->scp_resp_count, count);
1843 * Send SCP message to DSP
1845 static int dspio_send_scp_message(struct hda_codec *codec,
1846 unsigned char *send_buf,
1847 unsigned int send_buf_size,
1848 unsigned char *return_buf,
1849 unsigned int return_buf_size,
1850 unsigned int *bytes_returned)
1852 struct ca0132_spec *spec = codec->spec;
1854 unsigned int scp_send_size = 0;
1855 unsigned int total_size;
1856 bool waiting_for_resp = false;
1857 unsigned int header;
1858 struct scp_msg *ret_msg;
1859 unsigned int resp_src_id, resp_target_id;
1860 unsigned int data_size, src_id, target_id, get_flag, device_flag;
1863 *bytes_returned = 0;
1865 /* get scp header from buffer */
1866 header = *((unsigned int *)send_buf);
1867 extract_scp_header(header, &target_id, &src_id, &get_flag, NULL,
1868 &device_flag, NULL, NULL, &data_size);
1869 scp_send_size = data_size + 1;
1870 total_size = (scp_send_size * 4);
1872 if (send_buf_size < total_size)
1875 if (get_flag || device_flag) {
1876 if (!return_buf || return_buf_size < 4 || !bytes_returned)
1879 spec->wait_scp_header = *((unsigned int *)send_buf);
1881 /* swap source id with target id */
1882 resp_target_id = src_id;
1883 resp_src_id = target_id;
1884 spec->wait_scp_header &= 0xffff0000;
1885 spec->wait_scp_header |= (resp_src_id << 8) | (resp_target_id);
1886 spec->wait_num_data = return_buf_size/sizeof(unsigned int) - 1;
1888 waiting_for_resp = true;
1891 status = dspio_write_multiple(codec, (unsigned int *)send_buf,
1898 if (waiting_for_resp) {
1899 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
1900 memset(return_buf, 0, return_buf_size);
1903 } while (spec->wait_scp && time_before(jiffies, timeout));
1904 waiting_for_resp = false;
1905 if (!spec->wait_scp) {
1906 ret_msg = (struct scp_msg *)return_buf;
1907 memcpy(&ret_msg->hdr, &spec->scp_resp_header, 4);
1908 memcpy(&ret_msg->data, spec->scp_resp_data,
1909 spec->wait_num_data);
1910 *bytes_returned = (spec->scp_resp_count + 1) * 4;
1922 * Prepare and send the SCP message to DSP
1923 * @codec: the HDA codec
1924 * @mod_id: ID of the DSP module to send the command
1925 * @req: ID of request to send to the DSP module
1927 * @data: pointer to the data to send with the request, request specific
1928 * @len: length of the data, in bytes
1929 * @reply: point to the buffer to hold data returned for a reply
1930 * @reply_len: length of the reply buffer returned from GET
1932 * Returns zero or a negative error code.
1934 static int dspio_scp(struct hda_codec *codec,
1935 int mod_id, int src_id, int req, int dir, const void *data,
1936 unsigned int len, void *reply, unsigned int *reply_len)
1939 struct scp_msg scp_send, scp_reply;
1940 unsigned int ret_bytes, send_size, ret_size;
1941 unsigned int send_get_flag, reply_resp_flag, reply_error_flag;
1942 unsigned int reply_data_size;
1944 memset(&scp_send, 0, sizeof(scp_send));
1945 memset(&scp_reply, 0, sizeof(scp_reply));
1947 if ((len != 0 && data == NULL) || (len > SCP_MAX_DATA_WORDS))
1950 if (dir == SCP_GET && reply == NULL) {
1951 codec_dbg(codec, "dspio_scp get but has no buffer\n");
1955 if (reply != NULL && (reply_len == NULL || (*reply_len == 0))) {
1956 codec_dbg(codec, "dspio_scp bad resp buf len parms\n");
1960 scp_send.hdr = make_scp_header(mod_id, src_id, (dir == SCP_GET), req,
1961 0, 0, 0, len/sizeof(unsigned int));
1962 if (data != NULL && len > 0) {
1963 len = min((unsigned int)(sizeof(scp_send.data)), len);
1964 memcpy(scp_send.data, data, len);
1968 send_size = sizeof(unsigned int) + len;
1969 status = dspio_send_scp_message(codec, (unsigned char *)&scp_send,
1970 send_size, (unsigned char *)&scp_reply,
1971 sizeof(scp_reply), &ret_bytes);
1974 codec_dbg(codec, "dspio_scp: send scp msg failed\n");
1978 /* extract send and reply headers members */
1979 extract_scp_header(scp_send.hdr, NULL, NULL, &send_get_flag,
1980 NULL, NULL, NULL, NULL, NULL);
1981 extract_scp_header(scp_reply.hdr, NULL, NULL, NULL, NULL, NULL,
1982 &reply_resp_flag, &reply_error_flag,
1988 if (reply_resp_flag && !reply_error_flag) {
1989 ret_size = (ret_bytes - sizeof(scp_reply.hdr))
1990 / sizeof(unsigned int);
1992 if (*reply_len < ret_size*sizeof(unsigned int)) {
1993 codec_dbg(codec, "reply too long for buf\n");
1995 } else if (ret_size != reply_data_size) {
1996 codec_dbg(codec, "RetLen and HdrLen .NE.\n");
1998 } else if (!reply) {
1999 codec_dbg(codec, "NULL reply\n");
2002 *reply_len = ret_size*sizeof(unsigned int);
2003 memcpy(reply, scp_reply.data, *reply_len);
2006 codec_dbg(codec, "reply ill-formed or errflag set\n");
2014 * Set DSP parameters
2016 static int dspio_set_param(struct hda_codec *codec, int mod_id,
2017 int src_id, int req, const void *data, unsigned int len)
2019 return dspio_scp(codec, mod_id, src_id, req, SCP_SET, data, len, NULL,
2023 static int dspio_set_uint_param(struct hda_codec *codec, int mod_id,
2024 int req, const unsigned int data)
2026 return dspio_set_param(codec, mod_id, 0x20, req, &data,
2027 sizeof(unsigned int));
2030 static int dspio_set_uint_param_no_source(struct hda_codec *codec, int mod_id,
2031 int req, const unsigned int data)
2033 return dspio_set_param(codec, mod_id, 0x00, req, &data,
2034 sizeof(unsigned int));
2038 * Allocate a DSP DMA channel via an SCP message
2040 static int dspio_alloc_dma_chan(struct hda_codec *codec, unsigned int *dma_chan)
2043 unsigned int size = sizeof(dma_chan);
2045 codec_dbg(codec, " dspio_alloc_dma_chan() -- begin\n");
2046 status = dspio_scp(codec, MASTERCONTROL, 0x20,
2047 MASTERCONTROL_ALLOC_DMA_CHAN, SCP_GET, NULL, 0,
2051 codec_dbg(codec, "dspio_alloc_dma_chan: SCP Failed\n");
2055 if ((*dma_chan + 1) == 0) {
2056 codec_dbg(codec, "no free dma channels to allocate\n");
2060 codec_dbg(codec, "dspio_alloc_dma_chan: chan=%d\n", *dma_chan);
2061 codec_dbg(codec, " dspio_alloc_dma_chan() -- complete\n");
2067 * Free a DSP DMA via an SCP message
2069 static int dspio_free_dma_chan(struct hda_codec *codec, unsigned int dma_chan)
2072 unsigned int dummy = 0;
2074 codec_dbg(codec, " dspio_free_dma_chan() -- begin\n");
2075 codec_dbg(codec, "dspio_free_dma_chan: chan=%d\n", dma_chan);
2077 status = dspio_scp(codec, MASTERCONTROL, 0x20,
2078 MASTERCONTROL_ALLOC_DMA_CHAN, SCP_SET, &dma_chan,
2079 sizeof(dma_chan), NULL, &dummy);
2082 codec_dbg(codec, "dspio_free_dma_chan: SCP Failed\n");
2086 codec_dbg(codec, " dspio_free_dma_chan() -- complete\n");
2094 static int dsp_set_run_state(struct hda_codec *codec)
2096 unsigned int dbg_ctrl_reg;
2097 unsigned int halt_state;
2100 err = chipio_read(codec, DSP_DBGCNTL_INST_OFFSET, &dbg_ctrl_reg);
2104 halt_state = (dbg_ctrl_reg & DSP_DBGCNTL_STATE_MASK) >>
2105 DSP_DBGCNTL_STATE_LOBIT;
2107 if (halt_state != 0) {
2108 dbg_ctrl_reg &= ~((halt_state << DSP_DBGCNTL_SS_LOBIT) &
2109 DSP_DBGCNTL_SS_MASK);
2110 err = chipio_write(codec, DSP_DBGCNTL_INST_OFFSET,
2115 dbg_ctrl_reg |= (halt_state << DSP_DBGCNTL_EXEC_LOBIT) &
2116 DSP_DBGCNTL_EXEC_MASK;
2117 err = chipio_write(codec, DSP_DBGCNTL_INST_OFFSET,
2129 static int dsp_reset(struct hda_codec *codec)
2134 codec_dbg(codec, "dsp_reset\n");
2136 res = dspio_send(codec, VENDOR_DSPIO_DSP_INIT, 0);
2138 } while (res == -EIO && retry);
2141 codec_dbg(codec, "dsp_reset timeout\n");
2149 * Convert chip address to DSP address
2151 static unsigned int dsp_chip_to_dsp_addx(unsigned int chip_addx,
2152 bool *code, bool *yram)
2154 *code = *yram = false;
2156 if (UC_RANGE(chip_addx, 1)) {
2158 return UC_OFF(chip_addx);
2159 } else if (X_RANGE_ALL(chip_addx, 1)) {
2160 return X_OFF(chip_addx);
2161 } else if (Y_RANGE_ALL(chip_addx, 1)) {
2163 return Y_OFF(chip_addx);
2166 return INVALID_CHIP_ADDRESS;
2170 * Check if the DSP DMA is active
2172 static bool dsp_is_dma_active(struct hda_codec *codec, unsigned int dma_chan)
2174 unsigned int dma_chnlstart_reg;
2176 chipio_read(codec, DSPDMAC_CHNLSTART_INST_OFFSET, &dma_chnlstart_reg);
2178 return ((dma_chnlstart_reg & (1 <<
2179 (DSPDMAC_CHNLSTART_EN_LOBIT + dma_chan))) != 0);
2182 static int dsp_dma_setup_common(struct hda_codec *codec,
2183 unsigned int chip_addx,
2184 unsigned int dma_chan,
2185 unsigned int port_map_mask,
2189 unsigned int chnl_prop;
2190 unsigned int dsp_addx;
2191 unsigned int active;
2194 codec_dbg(codec, "-- dsp_dma_setup_common() -- Begin ---------\n");
2196 if (dma_chan >= DSPDMAC_DMA_CFG_CHANNEL_COUNT) {
2197 codec_dbg(codec, "dma chan num invalid\n");
2201 if (dsp_is_dma_active(codec, dma_chan)) {
2202 codec_dbg(codec, "dma already active\n");
2206 dsp_addx = dsp_chip_to_dsp_addx(chip_addx, &code, &yram);
2208 if (dsp_addx == INVALID_CHIP_ADDRESS) {
2209 codec_dbg(codec, "invalid chip addr\n");
2213 chnl_prop = DSPDMAC_CHNLPROP_AC_MASK;
2216 codec_dbg(codec, " dsp_dma_setup_common() start reg pgm\n");
2219 status = chipio_read(codec, DSPDMAC_CHNLPROP_INST_OFFSET,
2223 codec_dbg(codec, "read CHNLPROP Reg fail\n");
2226 codec_dbg(codec, "dsp_dma_setup_common() Read CHNLPROP\n");
2230 chnl_prop &= ~(1 << (DSPDMAC_CHNLPROP_MSPCE_LOBIT + dma_chan));
2232 chnl_prop |= (1 << (DSPDMAC_CHNLPROP_MSPCE_LOBIT + dma_chan));
2234 chnl_prop &= ~(1 << (DSPDMAC_CHNLPROP_DCON_LOBIT + dma_chan));
2236 status = chipio_write(codec, DSPDMAC_CHNLPROP_INST_OFFSET, chnl_prop);
2238 codec_dbg(codec, "write CHNLPROP Reg fail\n");
2241 codec_dbg(codec, " dsp_dma_setup_common() Write CHNLPROP\n");
2244 status = chipio_read(codec, DSPDMAC_ACTIVE_INST_OFFSET,
2248 codec_dbg(codec, "read ACTIVE Reg fail\n");
2251 codec_dbg(codec, "dsp_dma_setup_common() Read ACTIVE\n");
2254 active &= (~(1 << (DSPDMAC_ACTIVE_AAR_LOBIT + dma_chan))) &
2255 DSPDMAC_ACTIVE_AAR_MASK;
2257 status = chipio_write(codec, DSPDMAC_ACTIVE_INST_OFFSET, active);
2259 codec_dbg(codec, "write ACTIVE Reg fail\n");
2263 codec_dbg(codec, " dsp_dma_setup_common() Write ACTIVE\n");
2265 status = chipio_write(codec, DSPDMAC_AUDCHSEL_INST_OFFSET(dma_chan),
2268 codec_dbg(codec, "write AUDCHSEL Reg fail\n");
2271 codec_dbg(codec, " dsp_dma_setup_common() Write AUDCHSEL\n");
2273 status = chipio_write(codec, DSPDMAC_IRQCNT_INST_OFFSET(dma_chan),
2274 DSPDMAC_IRQCNT_BICNT_MASK | DSPDMAC_IRQCNT_CICNT_MASK);
2276 codec_dbg(codec, "write IRQCNT Reg fail\n");
2279 codec_dbg(codec, " dsp_dma_setup_common() Write IRQCNT\n");
2282 "ChipA=0x%x,DspA=0x%x,dmaCh=%u, "
2283 "CHSEL=0x%x,CHPROP=0x%x,Active=0x%x\n",
2284 chip_addx, dsp_addx, dma_chan,
2285 port_map_mask, chnl_prop, active);
2287 codec_dbg(codec, "-- dsp_dma_setup_common() -- Complete ------\n");
2293 * Setup the DSP DMA per-transfer-specific registers
2295 static int dsp_dma_setup(struct hda_codec *codec,
2296 unsigned int chip_addx,
2298 unsigned int dma_chan)
2302 unsigned int dsp_addx;
2303 unsigned int addr_field;
2304 unsigned int incr_field;
2305 unsigned int base_cnt;
2306 unsigned int cur_cnt;
2307 unsigned int dma_cfg = 0;
2308 unsigned int adr_ofs = 0;
2309 unsigned int xfr_cnt = 0;
2310 const unsigned int max_dma_count = 1 << (DSPDMAC_XFRCNT_BCNT_HIBIT -
2311 DSPDMAC_XFRCNT_BCNT_LOBIT + 1);
2313 codec_dbg(codec, "-- dsp_dma_setup() -- Begin ---------\n");
2315 if (count > max_dma_count) {
2316 codec_dbg(codec, "count too big\n");
2320 dsp_addx = dsp_chip_to_dsp_addx(chip_addx, &code, &yram);
2321 if (dsp_addx == INVALID_CHIP_ADDRESS) {
2322 codec_dbg(codec, "invalid chip addr\n");
2326 codec_dbg(codec, " dsp_dma_setup() start reg pgm\n");
2328 addr_field = dsp_addx << DSPDMAC_DMACFG_DBADR_LOBIT;
2334 addr_field |= (1 << DSPDMAC_DMACFG_DBADR_LOBIT);
2336 incr_field = (1 << DSPDMAC_DMACFG_AINCR_LOBIT);
2339 dma_cfg = addr_field + incr_field;
2340 status = chipio_write(codec, DSPDMAC_DMACFG_INST_OFFSET(dma_chan),
2343 codec_dbg(codec, "write DMACFG Reg fail\n");
2346 codec_dbg(codec, " dsp_dma_setup() Write DMACFG\n");
2348 adr_ofs = (count - 1) << (DSPDMAC_DSPADROFS_BOFS_LOBIT +
2351 status = chipio_write(codec, DSPDMAC_DSPADROFS_INST_OFFSET(dma_chan),
2354 codec_dbg(codec, "write DSPADROFS Reg fail\n");
2357 codec_dbg(codec, " dsp_dma_setup() Write DSPADROFS\n");
2359 base_cnt = (count - 1) << DSPDMAC_XFRCNT_BCNT_LOBIT;
2361 cur_cnt = (count - 1) << DSPDMAC_XFRCNT_CCNT_LOBIT;
2363 xfr_cnt = base_cnt | cur_cnt;
2365 status = chipio_write(codec,
2366 DSPDMAC_XFRCNT_INST_OFFSET(dma_chan), xfr_cnt);
2368 codec_dbg(codec, "write XFRCNT Reg fail\n");
2371 codec_dbg(codec, " dsp_dma_setup() Write XFRCNT\n");
2374 "ChipA=0x%x, cnt=0x%x, DMACFG=0x%x, "
2375 "ADROFS=0x%x, XFRCNT=0x%x\n",
2376 chip_addx, count, dma_cfg, adr_ofs, xfr_cnt);
2378 codec_dbg(codec, "-- dsp_dma_setup() -- Complete ---------\n");
2386 static int dsp_dma_start(struct hda_codec *codec,
2387 unsigned int dma_chan, bool ovly)
2389 unsigned int reg = 0;
2392 codec_dbg(codec, "-- dsp_dma_start() -- Begin ---------\n");
2395 status = chipio_read(codec,
2396 DSPDMAC_CHNLSTART_INST_OFFSET, ®);
2399 codec_dbg(codec, "read CHNLSTART reg fail\n");
2402 codec_dbg(codec, "-- dsp_dma_start() Read CHNLSTART\n");
2404 reg &= ~(DSPDMAC_CHNLSTART_EN_MASK |
2405 DSPDMAC_CHNLSTART_DIS_MASK);
2408 status = chipio_write(codec, DSPDMAC_CHNLSTART_INST_OFFSET,
2409 reg | (1 << (dma_chan + DSPDMAC_CHNLSTART_EN_LOBIT)));
2411 codec_dbg(codec, "write CHNLSTART reg fail\n");
2414 codec_dbg(codec, "-- dsp_dma_start() -- Complete ---------\n");
2422 static int dsp_dma_stop(struct hda_codec *codec,
2423 unsigned int dma_chan, bool ovly)
2425 unsigned int reg = 0;
2428 codec_dbg(codec, "-- dsp_dma_stop() -- Begin ---------\n");
2431 status = chipio_read(codec,
2432 DSPDMAC_CHNLSTART_INST_OFFSET, ®);
2435 codec_dbg(codec, "read CHNLSTART reg fail\n");
2438 codec_dbg(codec, "-- dsp_dma_stop() Read CHNLSTART\n");
2439 reg &= ~(DSPDMAC_CHNLSTART_EN_MASK |
2440 DSPDMAC_CHNLSTART_DIS_MASK);
2443 status = chipio_write(codec, DSPDMAC_CHNLSTART_INST_OFFSET,
2444 reg | (1 << (dma_chan + DSPDMAC_CHNLSTART_DIS_LOBIT)));
2446 codec_dbg(codec, "write CHNLSTART reg fail\n");
2449 codec_dbg(codec, "-- dsp_dma_stop() -- Complete ---------\n");
2455 * Allocate router ports
2457 * @codec: the HDA codec
2458 * @num_chans: number of channels in the stream
2459 * @ports_per_channel: number of ports per channel
2460 * @start_device: start device
2461 * @port_map: pointer to the port list to hold the allocated ports
2463 * Returns zero or a negative error code.
2465 static int dsp_allocate_router_ports(struct hda_codec *codec,
2466 unsigned int num_chans,
2467 unsigned int ports_per_channel,
2468 unsigned int start_device,
2469 unsigned int *port_map)
2475 status = chipio_send(codec, VENDOR_CHIPIO_STATUS, 0);
2479 val = start_device << 6;
2480 val |= (ports_per_channel - 1) << 4;
2481 val |= num_chans - 1;
2483 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
2484 VENDOR_CHIPIO_PORT_ALLOC_CONFIG_SET,
2487 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
2488 VENDOR_CHIPIO_PORT_ALLOC_SET,
2491 status = chipio_send(codec, VENDOR_CHIPIO_STATUS, 0);
2495 res = snd_hda_codec_read(codec, WIDGET_CHIP_CTRL, 0,
2496 VENDOR_CHIPIO_PORT_ALLOC_GET, 0);
2500 return (res < 0) ? res : 0;
2506 static int dsp_free_router_ports(struct hda_codec *codec)
2510 status = chipio_send(codec, VENDOR_CHIPIO_STATUS, 0);
2514 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
2515 VENDOR_CHIPIO_PORT_FREE_SET,
2518 status = chipio_send(codec, VENDOR_CHIPIO_STATUS, 0);
2524 * Allocate DSP ports for the download stream
2526 static int dsp_allocate_ports(struct hda_codec *codec,
2527 unsigned int num_chans,
2528 unsigned int rate_multi, unsigned int *port_map)
2532 codec_dbg(codec, " dsp_allocate_ports() -- begin\n");
2534 if ((rate_multi != 1) && (rate_multi != 2) && (rate_multi != 4)) {
2535 codec_dbg(codec, "bad rate multiple\n");
2539 status = dsp_allocate_router_ports(codec, num_chans,
2540 rate_multi, 0, port_map);
2542 codec_dbg(codec, " dsp_allocate_ports() -- complete\n");
2547 static int dsp_allocate_ports_format(struct hda_codec *codec,
2548 const unsigned short fmt,
2549 unsigned int *port_map)
2552 unsigned int num_chans;
2554 unsigned int sample_rate_div = ((get_hdafmt_rate(fmt) >> 0) & 3) + 1;
2555 unsigned int sample_rate_mul = ((get_hdafmt_rate(fmt) >> 3) & 3) + 1;
2556 unsigned int rate_multi = sample_rate_mul / sample_rate_div;
2558 if ((rate_multi != 1) && (rate_multi != 2) && (rate_multi != 4)) {
2559 codec_dbg(codec, "bad rate multiple\n");
2563 num_chans = get_hdafmt_chs(fmt) + 1;
2565 status = dsp_allocate_ports(codec, num_chans, rate_multi, port_map);
2573 static int dsp_free_ports(struct hda_codec *codec)
2577 codec_dbg(codec, " dsp_free_ports() -- begin\n");
2579 status = dsp_free_router_ports(codec);
2581 codec_dbg(codec, "free router ports fail\n");
2584 codec_dbg(codec, " dsp_free_ports() -- complete\n");
2590 * HDA DMA engine stuffs for DSP code download
2593 struct hda_codec *codec;
2594 unsigned short m_converter_format;
2595 struct snd_dma_buffer *dmab;
2596 unsigned int buf_size;
2605 static int dma_convert_to_hda_format(struct hda_codec *codec,
2606 unsigned int sample_rate,
2607 unsigned short channels,
2608 unsigned short *hda_format)
2610 unsigned int format_val;
2612 format_val = snd_hdac_calc_stream_format(sample_rate,
2613 channels, SNDRV_PCM_FORMAT_S32_LE, 32, 0);
2616 *hda_format = (unsigned short)format_val;
2622 * Reset DMA for DSP download
2624 static int dma_reset(struct dma_engine *dma)
2626 struct hda_codec *codec = dma->codec;
2627 struct ca0132_spec *spec = codec->spec;
2630 if (dma->dmab->area)
2631 snd_hda_codec_load_dsp_cleanup(codec, dma->dmab);
2633 status = snd_hda_codec_load_dsp_prepare(codec,
2634 dma->m_converter_format,
2639 spec->dsp_stream_id = status;
2643 static int dma_set_state(struct dma_engine *dma, enum dma_state state)
2648 case DMA_STATE_STOP:
2658 snd_hda_codec_load_dsp_trigger(dma->codec, cmd);
2662 static unsigned int dma_get_buffer_size(struct dma_engine *dma)
2664 return dma->dmab->bytes;
2667 static unsigned char *dma_get_buffer_addr(struct dma_engine *dma)
2669 return dma->dmab->area;
2672 static int dma_xfer(struct dma_engine *dma,
2673 const unsigned int *data,
2676 memcpy(dma->dmab->area, data, count);
2680 static void dma_get_converter_format(
2681 struct dma_engine *dma,
2682 unsigned short *format)
2685 *format = dma->m_converter_format;
2688 static unsigned int dma_get_stream_id(struct dma_engine *dma)
2690 struct ca0132_spec *spec = dma->codec->spec;
2692 return spec->dsp_stream_id;
2695 struct dsp_image_seg {
2702 static const u32 g_magic_value = 0x4c46584d;
2703 static const u32 g_chip_addr_magic_value = 0xFFFFFF01;
2705 static bool is_valid(const struct dsp_image_seg *p)
2707 return p->magic == g_magic_value;
2710 static bool is_hci_prog_list_seg(const struct dsp_image_seg *p)
2712 return g_chip_addr_magic_value == p->chip_addr;
2715 static bool is_last(const struct dsp_image_seg *p)
2717 return p->count == 0;
2720 static size_t dsp_sizeof(const struct dsp_image_seg *p)
2722 return sizeof(*p) + p->count*sizeof(u32);
2725 static const struct dsp_image_seg *get_next_seg_ptr(
2726 const struct dsp_image_seg *p)
2728 return (struct dsp_image_seg *)((unsigned char *)(p) + dsp_sizeof(p));
2732 * CA0132 chip DSP transfer stuffs. For DSP download.
2734 #define INVALID_DMA_CHANNEL (~0U)
2737 * Program a list of address/data pairs via the ChipIO widget.
2738 * The segment data is in the format of successive pairs of words.
2739 * These are repeated as indicated by the segment's count field.
2741 static int dspxfr_hci_write(struct hda_codec *codec,
2742 const struct dsp_image_seg *fls)
2748 if (fls == NULL || fls->chip_addr != g_chip_addr_magic_value) {
2749 codec_dbg(codec, "hci_write invalid params\n");
2754 data = (u32 *)(fls->data);
2755 while (count >= 2) {
2756 status = chipio_write(codec, data[0], data[1]);
2758 codec_dbg(codec, "hci_write chipio failed\n");
2768 * Write a block of data into DSP code or data RAM using pre-allocated
2771 * @codec: the HDA codec
2772 * @fls: pointer to a fast load image
2773 * @reloc: Relocation address for loading single-segment overlays, or 0 for
2775 * @dma_engine: pointer to DMA engine to be used for DSP download
2776 * @dma_chan: The number of DMA channels used for DSP download
2777 * @port_map_mask: port mapping
2778 * @ovly: TRUE if overlay format is required
2780 * Returns zero or a negative error code.
2782 static int dspxfr_one_seg(struct hda_codec *codec,
2783 const struct dsp_image_seg *fls,
2785 struct dma_engine *dma_engine,
2786 unsigned int dma_chan,
2787 unsigned int port_map_mask,
2791 bool comm_dma_setup_done = false;
2792 const unsigned int *data;
2793 unsigned int chip_addx;
2794 unsigned int words_to_write;
2795 unsigned int buffer_size_words;
2796 unsigned char *buffer_addx;
2797 unsigned short hda_format;
2798 unsigned int sample_rate_div;
2799 unsigned int sample_rate_mul;
2800 unsigned int num_chans;
2801 unsigned int hda_frame_size_words;
2802 unsigned int remainder_words;
2803 const u32 *data_remainder;
2804 u32 chip_addx_remainder;
2805 unsigned int run_size_words;
2806 const struct dsp_image_seg *hci_write = NULL;
2807 unsigned long timeout;
2812 if (is_hci_prog_list_seg(fls)) {
2814 fls = get_next_seg_ptr(fls);
2817 if (hci_write && (!fls || is_last(fls))) {
2818 codec_dbg(codec, "hci_write\n");
2819 return dspxfr_hci_write(codec, hci_write);
2822 if (fls == NULL || dma_engine == NULL || port_map_mask == 0) {
2823 codec_dbg(codec, "Invalid Params\n");
2828 chip_addx = fls->chip_addr,
2829 words_to_write = fls->count;
2831 if (!words_to_write)
2832 return hci_write ? dspxfr_hci_write(codec, hci_write) : 0;
2834 chip_addx = (chip_addx & (0xFFFF0000 << 2)) + (reloc << 2);
2836 if (!UC_RANGE(chip_addx, words_to_write) &&
2837 !X_RANGE_ALL(chip_addx, words_to_write) &&
2838 !Y_RANGE_ALL(chip_addx, words_to_write)) {
2839 codec_dbg(codec, "Invalid chip_addx Params\n");
2843 buffer_size_words = (unsigned int)dma_get_buffer_size(dma_engine) /
2846 buffer_addx = dma_get_buffer_addr(dma_engine);
2848 if (buffer_addx == NULL) {
2849 codec_dbg(codec, "dma_engine buffer NULL\n");
2853 dma_get_converter_format(dma_engine, &hda_format);
2854 sample_rate_div = ((get_hdafmt_rate(hda_format) >> 0) & 3) + 1;
2855 sample_rate_mul = ((get_hdafmt_rate(hda_format) >> 3) & 3) + 1;
2856 num_chans = get_hdafmt_chs(hda_format) + 1;
2858 hda_frame_size_words = ((sample_rate_div == 0) ? 0 :
2859 (num_chans * sample_rate_mul / sample_rate_div));
2861 if (hda_frame_size_words == 0) {
2862 codec_dbg(codec, "frmsz zero\n");
2866 buffer_size_words = min(buffer_size_words,
2867 (unsigned int)(UC_RANGE(chip_addx, 1) ?
2869 buffer_size_words -= buffer_size_words % hda_frame_size_words;
2871 "chpadr=0x%08x frmsz=%u nchan=%u "
2872 "rate_mul=%u div=%u bufsz=%u\n",
2873 chip_addx, hda_frame_size_words, num_chans,
2874 sample_rate_mul, sample_rate_div, buffer_size_words);
2876 if (buffer_size_words < hda_frame_size_words) {
2877 codec_dbg(codec, "dspxfr_one_seg:failed\n");
2881 remainder_words = words_to_write % hda_frame_size_words;
2882 data_remainder = data;
2883 chip_addx_remainder = chip_addx;
2885 data += remainder_words;
2886 chip_addx += remainder_words*sizeof(u32);
2887 words_to_write -= remainder_words;
2889 while (words_to_write != 0) {
2890 run_size_words = min(buffer_size_words, words_to_write);
2891 codec_dbg(codec, "dspxfr (seg loop)cnt=%u rs=%u remainder=%u\n",
2892 words_to_write, run_size_words, remainder_words);
2893 dma_xfer(dma_engine, data, run_size_words*sizeof(u32));
2894 if (!comm_dma_setup_done) {
2895 status = dsp_dma_stop(codec, dma_chan, ovly);
2898 status = dsp_dma_setup_common(codec, chip_addx,
2899 dma_chan, port_map_mask, ovly);
2902 comm_dma_setup_done = true;
2905 status = dsp_dma_setup(codec, chip_addx,
2906 run_size_words, dma_chan);
2909 status = dsp_dma_start(codec, dma_chan, ovly);
2912 if (!dsp_is_dma_active(codec, dma_chan)) {
2913 codec_dbg(codec, "dspxfr:DMA did not start\n");
2916 status = dma_set_state(dma_engine, DMA_STATE_RUN);
2919 if (remainder_words != 0) {
2920 status = chipio_write_multiple(codec,
2921 chip_addx_remainder,
2926 remainder_words = 0;
2929 status = dspxfr_hci_write(codec, hci_write);
2935 timeout = jiffies + msecs_to_jiffies(2000);
2937 dma_active = dsp_is_dma_active(codec, dma_chan);
2941 } while (time_before(jiffies, timeout));
2945 codec_dbg(codec, "+++++ DMA complete\n");
2946 dma_set_state(dma_engine, DMA_STATE_STOP);
2947 status = dma_reset(dma_engine);
2952 data += run_size_words;
2953 chip_addx += run_size_words*sizeof(u32);
2954 words_to_write -= run_size_words;
2957 if (remainder_words != 0) {
2958 status = chipio_write_multiple(codec, chip_addx_remainder,
2959 data_remainder, remainder_words);
2966 * Write the entire DSP image of a DSP code/data overlay to DSP memories
2968 * @codec: the HDA codec
2969 * @fls_data: pointer to a fast load image
2970 * @reloc: Relocation address for loading single-segment overlays, or 0 for
2972 * @sample_rate: sampling rate of the stream used for DSP download
2973 * @channels: channels of the stream used for DSP download
2974 * @ovly: TRUE if overlay format is required
2976 * Returns zero or a negative error code.
2978 static int dspxfr_image(struct hda_codec *codec,
2979 const struct dsp_image_seg *fls_data,
2981 unsigned int sample_rate,
2982 unsigned short channels,
2985 struct ca0132_spec *spec = codec->spec;
2987 unsigned short hda_format = 0;
2988 unsigned int response;
2989 unsigned char stream_id = 0;
2990 struct dma_engine *dma_engine;
2991 unsigned int dma_chan;
2992 unsigned int port_map_mask;
2994 if (fls_data == NULL)
2997 dma_engine = kzalloc(sizeof(*dma_engine), GFP_KERNEL);
3001 dma_engine->dmab = kzalloc(sizeof(*dma_engine->dmab), GFP_KERNEL);
3002 if (!dma_engine->dmab) {
3007 dma_engine->codec = codec;
3008 dma_convert_to_hda_format(codec, sample_rate, channels, &hda_format);
3009 dma_engine->m_converter_format = hda_format;
3010 dma_engine->buf_size = (ovly ? DSP_DMA_WRITE_BUFLEN_OVLY :
3011 DSP_DMA_WRITE_BUFLEN_INIT) * 2;
3013 dma_chan = ovly ? INVALID_DMA_CHANNEL : 0;
3015 status = codec_set_converter_format(codec, WIDGET_CHIP_CTRL,
3016 hda_format, &response);
3019 codec_dbg(codec, "set converter format fail\n");
3023 status = snd_hda_codec_load_dsp_prepare(codec,
3024 dma_engine->m_converter_format,
3025 dma_engine->buf_size,
3029 spec->dsp_stream_id = status;
3032 status = dspio_alloc_dma_chan(codec, &dma_chan);
3034 codec_dbg(codec, "alloc dmachan fail\n");
3035 dma_chan = INVALID_DMA_CHANNEL;
3041 status = dsp_allocate_ports_format(codec, hda_format,
3044 codec_dbg(codec, "alloc ports fail\n");
3048 stream_id = dma_get_stream_id(dma_engine);
3049 status = codec_set_converter_stream_channel(codec,
3050 WIDGET_CHIP_CTRL, stream_id, 0, &response);
3052 codec_dbg(codec, "set stream chan fail\n");
3056 while ((fls_data != NULL) && !is_last(fls_data)) {
3057 if (!is_valid(fls_data)) {
3058 codec_dbg(codec, "FLS check fail\n");
3062 status = dspxfr_one_seg(codec, fls_data, reloc,
3063 dma_engine, dma_chan,
3064 port_map_mask, ovly);
3068 if (is_hci_prog_list_seg(fls_data))
3069 fls_data = get_next_seg_ptr(fls_data);
3071 if ((fls_data != NULL) && !is_last(fls_data))
3072 fls_data = get_next_seg_ptr(fls_data);
3075 if (port_map_mask != 0)
3076 status = dsp_free_ports(codec);
3081 status = codec_set_converter_stream_channel(codec,
3082 WIDGET_CHIP_CTRL, 0, 0, &response);
3085 if (ovly && (dma_chan != INVALID_DMA_CHANNEL))
3086 dspio_free_dma_chan(codec, dma_chan);
3088 if (dma_engine->dmab->area)
3089 snd_hda_codec_load_dsp_cleanup(codec, dma_engine->dmab);
3090 kfree(dma_engine->dmab);
3097 * CA0132 DSP download stuffs.
3099 static void dspload_post_setup(struct hda_codec *codec)
3101 struct ca0132_spec *spec = codec->spec;
3102 codec_dbg(codec, "---- dspload_post_setup ------\n");
3103 if (!spec->use_alt_functions) {
3104 /*set DSP speaker to 2.0 configuration*/
3105 chipio_write(codec, XRAM_XRAM_INST_OFFSET(0x18), 0x08080080);
3106 chipio_write(codec, XRAM_XRAM_INST_OFFSET(0x19), 0x3f800000);
3108 /*update write pointer*/
3109 chipio_write(codec, XRAM_XRAM_INST_OFFSET(0x29), 0x00000002);
3114 * dspload_image - Download DSP from a DSP Image Fast Load structure.
3116 * @codec: the HDA codec
3117 * @fls: pointer to a fast load image
3118 * @ovly: TRUE if overlay format is required
3119 * @reloc: Relocation address for loading single-segment overlays, or 0 for
3121 * @autostart: TRUE if DSP starts after loading; ignored if ovly is TRUE
3122 * @router_chans: number of audio router channels to be allocated (0 means use
3123 * internal defaults; max is 32)
3125 * Download DSP from a DSP Image Fast Load structure. This structure is a
3126 * linear, non-constant sized element array of structures, each of which
3127 * contain the count of the data to be loaded, the data itself, and the
3128 * corresponding starting chip address of the starting data location.
3129 * Returns zero or a negative error code.
3131 static int dspload_image(struct hda_codec *codec,
3132 const struct dsp_image_seg *fls,
3139 unsigned int sample_rate;
3140 unsigned short channels;
3142 codec_dbg(codec, "---- dspload_image begin ------\n");
3143 if (router_chans == 0) {
3145 router_chans = DMA_TRANSFER_FRAME_SIZE_NWORDS;
3147 router_chans = DMA_OVERLAY_FRAME_SIZE_NWORDS;
3150 sample_rate = 48000;
3151 channels = (unsigned short)router_chans;
3153 while (channels > 16) {
3159 codec_dbg(codec, "Ready to program DMA\n");
3161 status = dsp_reset(codec);
3166 codec_dbg(codec, "dsp_reset() complete\n");
3167 status = dspxfr_image(codec, fls, reloc, sample_rate, channels,
3173 codec_dbg(codec, "dspxfr_image() complete\n");
3174 if (autostart && !ovly) {
3175 dspload_post_setup(codec);
3176 status = dsp_set_run_state(codec);
3179 codec_dbg(codec, "LOAD FINISHED\n");
3185 #ifdef CONFIG_SND_HDA_CODEC_CA0132_DSP
3186 static bool dspload_is_loaded(struct hda_codec *codec)
3188 unsigned int data = 0;
3191 status = chipio_read(codec, 0x40004, &data);
3192 if ((status < 0) || (data != 1))
3198 #define dspload_is_loaded(codec) false
3201 static bool dspload_wait_loaded(struct hda_codec *codec)
3203 unsigned long timeout = jiffies + msecs_to_jiffies(2000);
3206 if (dspload_is_loaded(codec)) {
3207 codec_info(codec, "ca0132 DSP downloaded and running\n");
3211 } while (time_before(jiffies, timeout));
3213 codec_err(codec, "ca0132 failed to download DSP\n");
3218 * ca0113 related functions. The ca0113 acts as the HDA bus for the pci-e
3219 * based cards, and has a second mmio region, region2, that's used for special
3224 * For cards with PCI-E region2 (Sound Blaster Z/ZxR, Recon3D, and AE-5)
3225 * the mmio address 0x320 is used to set GPIO pins. The format for the data
3226 * The first eight bits are just the number of the pin. So far, I've only seen
3227 * this number go to 7.
3228 * AE-5 note: The AE-5 seems to use pins 2 and 3 to somehow set the color value
3229 * of the on-card LED. It seems to use pin 2 for data, then toggles 3 to on and
3230 * then off to send that bit.
3232 static void ca0113_mmio_gpio_set(struct hda_codec *codec, unsigned int gpio_pin,
3235 struct ca0132_spec *spec = codec->spec;
3236 unsigned short gpio_data;
3238 gpio_data = gpio_pin & 0xF;
3239 gpio_data |= ((enable << 8) & 0x100);
3241 writew(gpio_data, spec->mem_base + 0x320);
3245 * Special pci region2 commands that are only used by the AE-5. They follow
3246 * a set format, and require reads at certain points to seemingly 'clear'
3247 * the response data. My first tests didn't do these reads, and would cause
3248 * the card to get locked up until the memory was read. These commands
3249 * seem to work with three distinct values that I've taken to calling group,
3250 * target-id, and value.
3252 static void ca0113_mmio_command_set(struct hda_codec *codec, unsigned int group,
3253 unsigned int target, unsigned int value)
3255 struct ca0132_spec *spec = codec->spec;
3256 unsigned int write_val;
3258 writel(0x0000007e, spec->mem_base + 0x210);
3259 readl(spec->mem_base + 0x210);
3260 writel(0x0000005a, spec->mem_base + 0x210);
3261 readl(spec->mem_base + 0x210);
3262 readl(spec->mem_base + 0x210);
3264 writel(0x00800005, spec->mem_base + 0x20c);
3265 writel(group, spec->mem_base + 0x804);
3267 writel(0x00800005, spec->mem_base + 0x20c);
3268 write_val = (target & 0xff);
3269 write_val |= (value << 8);
3272 writel(write_val, spec->mem_base + 0x204);
3274 * Need delay here or else it goes too fast and works inconsistently.
3278 readl(spec->mem_base + 0x860);
3279 readl(spec->mem_base + 0x854);
3280 readl(spec->mem_base + 0x840);
3282 writel(0x00800004, spec->mem_base + 0x20c);
3283 writel(0x00000000, spec->mem_base + 0x210);
3284 readl(spec->mem_base + 0x210);
3285 readl(spec->mem_base + 0x210);
3289 * This second type of command is used for setting the sound filter type.
3291 static void ca0113_mmio_command_set_type2(struct hda_codec *codec,
3292 unsigned int group, unsigned int target, unsigned int value)
3294 struct ca0132_spec *spec = codec->spec;
3295 unsigned int write_val;
3297 writel(0x0000007e, spec->mem_base + 0x210);
3298 readl(spec->mem_base + 0x210);
3299 writel(0x0000005a, spec->mem_base + 0x210);
3300 readl(spec->mem_base + 0x210);
3301 readl(spec->mem_base + 0x210);
3303 writel(0x00800003, spec->mem_base + 0x20c);
3304 writel(group, spec->mem_base + 0x804);
3306 writel(0x00800005, spec->mem_base + 0x20c);
3307 write_val = (target & 0xff);
3308 write_val |= (value << 8);
3311 writel(write_val, spec->mem_base + 0x204);
3313 readl(spec->mem_base + 0x860);
3314 readl(spec->mem_base + 0x854);
3315 readl(spec->mem_base + 0x840);
3317 writel(0x00800004, spec->mem_base + 0x20c);
3318 writel(0x00000000, spec->mem_base + 0x210);
3319 readl(spec->mem_base + 0x210);
3320 readl(spec->mem_base + 0x210);
3324 * Setup GPIO for the other variants of Core3D.
3328 * Sets up the GPIO pins so that they are discoverable. If this isn't done,
3329 * the card shows as having no GPIO pins.
3331 static void ca0132_gpio_init(struct hda_codec *codec)
3333 struct ca0132_spec *spec = codec->spec;
3335 switch (spec->quirk) {
3338 snd_hda_codec_write(codec, 0x01, 0, 0x793, 0x00);
3339 snd_hda_codec_write(codec, 0x01, 0, 0x794, 0x53);
3340 snd_hda_codec_write(codec, 0x01, 0, 0x790, 0x23);
3343 snd_hda_codec_write(codec, 0x01, 0, 0x793, 0x00);
3344 snd_hda_codec_write(codec, 0x01, 0, 0x794, 0x5B);
3350 /* Sets the GPIO for audio output. */
3351 static void ca0132_gpio_setup(struct hda_codec *codec)
3353 struct ca0132_spec *spec = codec->spec;
3355 switch (spec->quirk) {
3357 snd_hda_codec_write(codec, 0x01, 0,
3358 AC_VERB_SET_GPIO_DIRECTION, 0x07);
3359 snd_hda_codec_write(codec, 0x01, 0,
3360 AC_VERB_SET_GPIO_MASK, 0x07);
3361 snd_hda_codec_write(codec, 0x01, 0,
3362 AC_VERB_SET_GPIO_DATA, 0x04);
3363 snd_hda_codec_write(codec, 0x01, 0,
3364 AC_VERB_SET_GPIO_DATA, 0x06);
3367 snd_hda_codec_write(codec, 0x01, 0,
3368 AC_VERB_SET_GPIO_DIRECTION, 0x1E);
3369 snd_hda_codec_write(codec, 0x01, 0,
3370 AC_VERB_SET_GPIO_MASK, 0x1F);
3371 snd_hda_codec_write(codec, 0x01, 0,
3372 AC_VERB_SET_GPIO_DATA, 0x0C);
3378 * GPIO control functions for the Recon3D integrated.
3381 enum r3di_gpio_bit {
3382 /* Bit 1 - Switch between front/rear mic. 0 = rear, 1 = front */
3383 R3DI_MIC_SELECT_BIT = 1,
3384 /* Bit 2 - Switch between headphone/line out. 0 = Headphone, 1 = Line */
3385 R3DI_OUT_SELECT_BIT = 2,
3387 * I dunno what this actually does, but it stays on until the dsp
3390 R3DI_GPIO_DSP_DOWNLOADING = 3,
3392 * Same as above, no clue what it does, but it comes on after the dsp
3395 R3DI_GPIO_DSP_DOWNLOADED = 4
3398 enum r3di_mic_select {
3399 /* Set GPIO bit 1 to 0 for rear mic */
3401 /* Set GPIO bit 1 to 1 for front microphone*/
3405 enum r3di_out_select {
3406 /* Set GPIO bit 2 to 0 for headphone */
3407 R3DI_HEADPHONE_OUT = 0,
3408 /* Set GPIO bit 2 to 1 for speaker */
3411 enum r3di_dsp_status {
3412 /* Set GPIO bit 3 to 1 until DSP is downloaded */
3413 R3DI_DSP_DOWNLOADING = 0,
3414 /* Set GPIO bit 4 to 1 once DSP is downloaded */
3415 R3DI_DSP_DOWNLOADED = 1
3419 static void r3di_gpio_mic_set(struct hda_codec *codec,
3420 enum r3di_mic_select cur_mic)
3422 unsigned int cur_gpio;
3424 /* Get the current GPIO Data setup */
3425 cur_gpio = snd_hda_codec_read(codec, 0x01, 0, AC_VERB_GET_GPIO_DATA, 0);
3429 cur_gpio &= ~(1 << R3DI_MIC_SELECT_BIT);
3431 case R3DI_FRONT_MIC:
3432 cur_gpio |= (1 << R3DI_MIC_SELECT_BIT);
3435 snd_hda_codec_write(codec, codec->core.afg, 0,
3436 AC_VERB_SET_GPIO_DATA, cur_gpio);
3439 static void r3di_gpio_out_set(struct hda_codec *codec,
3440 enum r3di_out_select cur_out)
3442 unsigned int cur_gpio;
3444 /* Get the current GPIO Data setup */
3445 cur_gpio = snd_hda_codec_read(codec, 0x01, 0, AC_VERB_GET_GPIO_DATA, 0);
3448 case R3DI_HEADPHONE_OUT:
3449 cur_gpio &= ~(1 << R3DI_OUT_SELECT_BIT);
3452 cur_gpio |= (1 << R3DI_OUT_SELECT_BIT);
3455 snd_hda_codec_write(codec, codec->core.afg, 0,
3456 AC_VERB_SET_GPIO_DATA, cur_gpio);
3459 static void r3di_gpio_dsp_status_set(struct hda_codec *codec,
3460 enum r3di_dsp_status dsp_status)
3462 unsigned int cur_gpio;
3464 /* Get the current GPIO Data setup */
3465 cur_gpio = snd_hda_codec_read(codec, 0x01, 0, AC_VERB_GET_GPIO_DATA, 0);
3467 switch (dsp_status) {
3468 case R3DI_DSP_DOWNLOADING:
3469 cur_gpio |= (1 << R3DI_GPIO_DSP_DOWNLOADING);
3470 snd_hda_codec_write(codec, codec->core.afg, 0,
3471 AC_VERB_SET_GPIO_DATA, cur_gpio);
3473 case R3DI_DSP_DOWNLOADED:
3474 /* Set DOWNLOADING bit to 0. */
3475 cur_gpio &= ~(1 << R3DI_GPIO_DSP_DOWNLOADING);
3477 snd_hda_codec_write(codec, codec->core.afg, 0,
3478 AC_VERB_SET_GPIO_DATA, cur_gpio);
3480 cur_gpio |= (1 << R3DI_GPIO_DSP_DOWNLOADED);
3484 snd_hda_codec_write(codec, codec->core.afg, 0,
3485 AC_VERB_SET_GPIO_DATA, cur_gpio);
3491 static int ca0132_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
3492 struct hda_codec *codec,
3493 unsigned int stream_tag,
3494 unsigned int format,
3495 struct snd_pcm_substream *substream)
3497 struct ca0132_spec *spec = codec->spec;
3499 snd_hda_codec_setup_stream(codec, spec->dacs[0], stream_tag, 0, format);
3504 static int ca0132_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
3505 struct hda_codec *codec,
3506 struct snd_pcm_substream *substream)
3508 struct ca0132_spec *spec = codec->spec;
3510 if (spec->dsp_state == DSP_DOWNLOADING)
3513 /*If Playback effects are on, allow stream some time to flush
3515 if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID])
3518 snd_hda_codec_cleanup_stream(codec, spec->dacs[0]);
3523 static unsigned int ca0132_playback_pcm_delay(struct hda_pcm_stream *info,
3524 struct hda_codec *codec,
3525 struct snd_pcm_substream *substream)
3527 struct ca0132_spec *spec = codec->spec;
3528 unsigned int latency = DSP_PLAYBACK_INIT_LATENCY;
3529 struct snd_pcm_runtime *runtime = substream->runtime;
3531 if (spec->dsp_state != DSP_DOWNLOADED)
3534 /* Add latency if playback enhancement and either effect is enabled. */
3535 if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID]) {
3536 if ((spec->effects_switch[SURROUND - EFFECT_START_NID]) ||
3537 (spec->effects_switch[DIALOG_PLUS - EFFECT_START_NID]))
3538 latency += DSP_PLAY_ENHANCEMENT_LATENCY;
3541 /* Applying Speaker EQ adds latency as well. */
3542 if (spec->cur_out_type == SPEAKER_OUT)
3543 latency += DSP_SPEAKER_OUT_LATENCY;
3545 return (latency * runtime->rate) / 1000;
3551 static int ca0132_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
3552 struct hda_codec *codec,
3553 struct snd_pcm_substream *substream)
3555 struct ca0132_spec *spec = codec->spec;
3556 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
3559 static int ca0132_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
3560 struct hda_codec *codec,
3561 unsigned int stream_tag,
3562 unsigned int format,
3563 struct snd_pcm_substream *substream)
3565 struct ca0132_spec *spec = codec->spec;
3566 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
3567 stream_tag, format, substream);
3570 static int ca0132_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
3571 struct hda_codec *codec,
3572 struct snd_pcm_substream *substream)
3574 struct ca0132_spec *spec = codec->spec;
3575 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
3578 static int ca0132_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
3579 struct hda_codec *codec,
3580 struct snd_pcm_substream *substream)
3582 struct ca0132_spec *spec = codec->spec;
3583 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
3589 static int ca0132_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
3590 struct hda_codec *codec,
3591 unsigned int stream_tag,
3592 unsigned int format,
3593 struct snd_pcm_substream *substream)
3595 snd_hda_codec_setup_stream(codec, hinfo->nid,
3596 stream_tag, 0, format);
3601 static int ca0132_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
3602 struct hda_codec *codec,
3603 struct snd_pcm_substream *substream)
3605 struct ca0132_spec *spec = codec->spec;
3607 if (spec->dsp_state == DSP_DOWNLOADING)
3610 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
3614 static unsigned int ca0132_capture_pcm_delay(struct hda_pcm_stream *info,
3615 struct hda_codec *codec,
3616 struct snd_pcm_substream *substream)
3618 struct ca0132_spec *spec = codec->spec;
3619 unsigned int latency = DSP_CAPTURE_INIT_LATENCY;
3620 struct snd_pcm_runtime *runtime = substream->runtime;
3622 if (spec->dsp_state != DSP_DOWNLOADED)
3625 if (spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID])
3626 latency += DSP_CRYSTAL_VOICE_LATENCY;
3628 return (latency * runtime->rate) / 1000;
3636 * Mixer controls helpers.
3638 #define CA0132_CODEC_VOL_MONO(xname, nid, channel, dir) \
3639 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3641 .subdevice = HDA_SUBDEV_AMP_FLAG, \
3642 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
3643 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
3644 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
3645 .info = ca0132_volume_info, \
3646 .get = ca0132_volume_get, \
3647 .put = ca0132_volume_put, \
3648 .tlv = { .c = ca0132_volume_tlv }, \
3649 .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, 0, dir) }
3652 * Creates a mixer control that uses defaults of HDA_CODEC_VOL except for the
3653 * volume put, which is used for setting the DSP volume. This was done because
3654 * the ca0132 functions were taking too much time and causing lag.
3656 #define CA0132_ALT_CODEC_VOL_MONO(xname, nid, channel, dir) \
3657 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3659 .subdevice = HDA_SUBDEV_AMP_FLAG, \
3660 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
3661 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
3662 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
3663 .info = snd_hda_mixer_amp_volume_info, \
3664 .get = snd_hda_mixer_amp_volume_get, \
3665 .put = ca0132_alt_volume_put, \
3666 .tlv = { .c = snd_hda_mixer_amp_tlv }, \
3667 .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, 0, dir) }
3669 #define CA0132_CODEC_MUTE_MONO(xname, nid, channel, dir) \
3670 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3672 .subdevice = HDA_SUBDEV_AMP_FLAG, \
3673 .info = snd_hda_mixer_amp_switch_info, \
3674 .get = ca0132_switch_get, \
3675 .put = ca0132_switch_put, \
3676 .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, 0, dir) }
3679 #define CA0132_CODEC_VOL(xname, nid, dir) \
3680 CA0132_CODEC_VOL_MONO(xname, nid, 3, dir)
3681 #define CA0132_ALT_CODEC_VOL(xname, nid, dir) \
3682 CA0132_ALT_CODEC_VOL_MONO(xname, nid, 3, dir)
3683 #define CA0132_CODEC_MUTE(xname, nid, dir) \
3684 CA0132_CODEC_MUTE_MONO(xname, nid, 3, dir)
3688 * Lookup table with decibel values for the DSP. When volume is changed in
3689 * Windows, the DSP is also sent the dB value in floating point. In Windows,
3690 * these values have decimal points, probably because the Windows driver
3691 * actually uses floating point. We can't here, so I made a lookup table of
3692 * values -90 to 9. -90 is the lowest decibel value for both the ADC's and the
3693 * DAC's, and 9 is the maximum.
3695 static const unsigned int float_vol_db_lookup[] = {
3696 0xC2B40000, 0xC2B20000, 0xC2B00000, 0xC2AE0000, 0xC2AC0000, 0xC2AA0000,
3697 0xC2A80000, 0xC2A60000, 0xC2A40000, 0xC2A20000, 0xC2A00000, 0xC29E0000,
3698 0xC29C0000, 0xC29A0000, 0xC2980000, 0xC2960000, 0xC2940000, 0xC2920000,
3699 0xC2900000, 0xC28E0000, 0xC28C0000, 0xC28A0000, 0xC2880000, 0xC2860000,
3700 0xC2840000, 0xC2820000, 0xC2800000, 0xC27C0000, 0xC2780000, 0xC2740000,
3701 0xC2700000, 0xC26C0000, 0xC2680000, 0xC2640000, 0xC2600000, 0xC25C0000,
3702 0xC2580000, 0xC2540000, 0xC2500000, 0xC24C0000, 0xC2480000, 0xC2440000,
3703 0xC2400000, 0xC23C0000, 0xC2380000, 0xC2340000, 0xC2300000, 0xC22C0000,
3704 0xC2280000, 0xC2240000, 0xC2200000, 0xC21C0000, 0xC2180000, 0xC2140000,
3705 0xC2100000, 0xC20C0000, 0xC2080000, 0xC2040000, 0xC2000000, 0xC1F80000,
3706 0xC1F00000, 0xC1E80000, 0xC1E00000, 0xC1D80000, 0xC1D00000, 0xC1C80000,
3707 0xC1C00000, 0xC1B80000, 0xC1B00000, 0xC1A80000, 0xC1A00000, 0xC1980000,
3708 0xC1900000, 0xC1880000, 0xC1800000, 0xC1700000, 0xC1600000, 0xC1500000,
3709 0xC1400000, 0xC1300000, 0xC1200000, 0xC1100000, 0xC1000000, 0xC0E00000,
3710 0xC0C00000, 0xC0A00000, 0xC0800000, 0xC0400000, 0xC0000000, 0xBF800000,
3711 0x00000000, 0x3F800000, 0x40000000, 0x40400000, 0x40800000, 0x40A00000,
3712 0x40C00000, 0x40E00000, 0x41000000, 0x41100000
3716 * This table counts from float 0 to 1 in increments of .01, which is
3717 * useful for a few different sliders.
3719 static const unsigned int float_zero_to_one_lookup[] = {
3720 0x00000000, 0x3C23D70A, 0x3CA3D70A, 0x3CF5C28F, 0x3D23D70A, 0x3D4CCCCD,
3721 0x3D75C28F, 0x3D8F5C29, 0x3DA3D70A, 0x3DB851EC, 0x3DCCCCCD, 0x3DE147AE,
3722 0x3DF5C28F, 0x3E051EB8, 0x3E0F5C29, 0x3E19999A, 0x3E23D70A, 0x3E2E147B,
3723 0x3E3851EC, 0x3E428F5C, 0x3E4CCCCD, 0x3E570A3D, 0x3E6147AE, 0x3E6B851F,
3724 0x3E75C28F, 0x3E800000, 0x3E851EB8, 0x3E8A3D71, 0x3E8F5C29, 0x3E947AE1,
3725 0x3E99999A, 0x3E9EB852, 0x3EA3D70A, 0x3EA8F5C3, 0x3EAE147B, 0x3EB33333,
3726 0x3EB851EC, 0x3EBD70A4, 0x3EC28F5C, 0x3EC7AE14, 0x3ECCCCCD, 0x3ED1EB85,
3727 0x3ED70A3D, 0x3EDC28F6, 0x3EE147AE, 0x3EE66666, 0x3EEB851F, 0x3EF0A3D7,
3728 0x3EF5C28F, 0x3EFAE148, 0x3F000000, 0x3F028F5C, 0x3F051EB8, 0x3F07AE14,
3729 0x3F0A3D71, 0x3F0CCCCD, 0x3F0F5C29, 0x3F11EB85, 0x3F147AE1, 0x3F170A3D,
3730 0x3F19999A, 0x3F1C28F6, 0x3F1EB852, 0x3F2147AE, 0x3F23D70A, 0x3F266666,
3731 0x3F28F5C3, 0x3F2B851F, 0x3F2E147B, 0x3F30A3D7, 0x3F333333, 0x3F35C28F,
3732 0x3F3851EC, 0x3F3AE148, 0x3F3D70A4, 0x3F400000, 0x3F428F5C, 0x3F451EB8,
3733 0x3F47AE14, 0x3F4A3D71, 0x3F4CCCCD, 0x3F4F5C29, 0x3F51EB85, 0x3F547AE1,
3734 0x3F570A3D, 0x3F59999A, 0x3F5C28F6, 0x3F5EB852, 0x3F6147AE, 0x3F63D70A,
3735 0x3F666666, 0x3F68F5C3, 0x3F6B851F, 0x3F6E147B, 0x3F70A3D7, 0x3F733333,
3736 0x3F75C28F, 0x3F7851EC, 0x3F7AE148, 0x3F7D70A4, 0x3F800000
3740 * This table counts from float 10 to 1000, which is the range of the x-bass
3741 * crossover slider in Windows.
3743 static const unsigned int float_xbass_xover_lookup[] = {
3744 0x41200000, 0x41A00000, 0x41F00000, 0x42200000, 0x42480000, 0x42700000,
3745 0x428C0000, 0x42A00000, 0x42B40000, 0x42C80000, 0x42DC0000, 0x42F00000,
3746 0x43020000, 0x430C0000, 0x43160000, 0x43200000, 0x432A0000, 0x43340000,
3747 0x433E0000, 0x43480000, 0x43520000, 0x435C0000, 0x43660000, 0x43700000,
3748 0x437A0000, 0x43820000, 0x43870000, 0x438C0000, 0x43910000, 0x43960000,
3749 0x439B0000, 0x43A00000, 0x43A50000, 0x43AA0000, 0x43AF0000, 0x43B40000,
3750 0x43B90000, 0x43BE0000, 0x43C30000, 0x43C80000, 0x43CD0000, 0x43D20000,
3751 0x43D70000, 0x43DC0000, 0x43E10000, 0x43E60000, 0x43EB0000, 0x43F00000,
3752 0x43F50000, 0x43FA0000, 0x43FF0000, 0x44020000, 0x44048000, 0x44070000,
3753 0x44098000, 0x440C0000, 0x440E8000, 0x44110000, 0x44138000, 0x44160000,
3754 0x44188000, 0x441B0000, 0x441D8000, 0x44200000, 0x44228000, 0x44250000,
3755 0x44278000, 0x442A0000, 0x442C8000, 0x442F0000, 0x44318000, 0x44340000,
3756 0x44368000, 0x44390000, 0x443B8000, 0x443E0000, 0x44408000, 0x44430000,
3757 0x44458000, 0x44480000, 0x444A8000, 0x444D0000, 0x444F8000, 0x44520000,
3758 0x44548000, 0x44570000, 0x44598000, 0x445C0000, 0x445E8000, 0x44610000,
3759 0x44638000, 0x44660000, 0x44688000, 0x446B0000, 0x446D8000, 0x44700000,
3760 0x44728000, 0x44750000, 0x44778000, 0x447A0000
3763 /* The following are for tuning of products */
3764 #ifdef ENABLE_TUNING_CONTROLS
3766 static unsigned int voice_focus_vals_lookup[] = {
3767 0x41A00000, 0x41A80000, 0x41B00000, 0x41B80000, 0x41C00000, 0x41C80000,
3768 0x41D00000, 0x41D80000, 0x41E00000, 0x41E80000, 0x41F00000, 0x41F80000,
3769 0x42000000, 0x42040000, 0x42080000, 0x420C0000, 0x42100000, 0x42140000,
3770 0x42180000, 0x421C0000, 0x42200000, 0x42240000, 0x42280000, 0x422C0000,
3771 0x42300000, 0x42340000, 0x42380000, 0x423C0000, 0x42400000, 0x42440000,
3772 0x42480000, 0x424C0000, 0x42500000, 0x42540000, 0x42580000, 0x425C0000,
3773 0x42600000, 0x42640000, 0x42680000, 0x426C0000, 0x42700000, 0x42740000,
3774 0x42780000, 0x427C0000, 0x42800000, 0x42820000, 0x42840000, 0x42860000,
3775 0x42880000, 0x428A0000, 0x428C0000, 0x428E0000, 0x42900000, 0x42920000,
3776 0x42940000, 0x42960000, 0x42980000, 0x429A0000, 0x429C0000, 0x429E0000,
3777 0x42A00000, 0x42A20000, 0x42A40000, 0x42A60000, 0x42A80000, 0x42AA0000,
3778 0x42AC0000, 0x42AE0000, 0x42B00000, 0x42B20000, 0x42B40000, 0x42B60000,
3779 0x42B80000, 0x42BA0000, 0x42BC0000, 0x42BE0000, 0x42C00000, 0x42C20000,
3780 0x42C40000, 0x42C60000, 0x42C80000, 0x42CA0000, 0x42CC0000, 0x42CE0000,
3781 0x42D00000, 0x42D20000, 0x42D40000, 0x42D60000, 0x42D80000, 0x42DA0000,
3782 0x42DC0000, 0x42DE0000, 0x42E00000, 0x42E20000, 0x42E40000, 0x42E60000,
3783 0x42E80000, 0x42EA0000, 0x42EC0000, 0x42EE0000, 0x42F00000, 0x42F20000,
3784 0x42F40000, 0x42F60000, 0x42F80000, 0x42FA0000, 0x42FC0000, 0x42FE0000,
3785 0x43000000, 0x43010000, 0x43020000, 0x43030000, 0x43040000, 0x43050000,
3786 0x43060000, 0x43070000, 0x43080000, 0x43090000, 0x430A0000, 0x430B0000,
3787 0x430C0000, 0x430D0000, 0x430E0000, 0x430F0000, 0x43100000, 0x43110000,
3788 0x43120000, 0x43130000, 0x43140000, 0x43150000, 0x43160000, 0x43170000,
3789 0x43180000, 0x43190000, 0x431A0000, 0x431B0000, 0x431C0000, 0x431D0000,
3790 0x431E0000, 0x431F0000, 0x43200000, 0x43210000, 0x43220000, 0x43230000,
3791 0x43240000, 0x43250000, 0x43260000, 0x43270000, 0x43280000, 0x43290000,
3792 0x432A0000, 0x432B0000, 0x432C0000, 0x432D0000, 0x432E0000, 0x432F0000,
3793 0x43300000, 0x43310000, 0x43320000, 0x43330000, 0x43340000
3796 static unsigned int mic_svm_vals_lookup[] = {
3797 0x00000000, 0x3C23D70A, 0x3CA3D70A, 0x3CF5C28F, 0x3D23D70A, 0x3D4CCCCD,
3798 0x3D75C28F, 0x3D8F5C29, 0x3DA3D70A, 0x3DB851EC, 0x3DCCCCCD, 0x3DE147AE,
3799 0x3DF5C28F, 0x3E051EB8, 0x3E0F5C29, 0x3E19999A, 0x3E23D70A, 0x3E2E147B,
3800 0x3E3851EC, 0x3E428F5C, 0x3E4CCCCD, 0x3E570A3D, 0x3E6147AE, 0x3E6B851F,
3801 0x3E75C28F, 0x3E800000, 0x3E851EB8, 0x3E8A3D71, 0x3E8F5C29, 0x3E947AE1,
3802 0x3E99999A, 0x3E9EB852, 0x3EA3D70A, 0x3EA8F5C3, 0x3EAE147B, 0x3EB33333,
3803 0x3EB851EC, 0x3EBD70A4, 0x3EC28F5C, 0x3EC7AE14, 0x3ECCCCCD, 0x3ED1EB85,
3804 0x3ED70A3D, 0x3EDC28F6, 0x3EE147AE, 0x3EE66666, 0x3EEB851F, 0x3EF0A3D7,
3805 0x3EF5C28F, 0x3EFAE148, 0x3F000000, 0x3F028F5C, 0x3F051EB8, 0x3F07AE14,
3806 0x3F0A3D71, 0x3F0CCCCD, 0x3F0F5C29, 0x3F11EB85, 0x3F147AE1, 0x3F170A3D,
3807 0x3F19999A, 0x3F1C28F6, 0x3F1EB852, 0x3F2147AE, 0x3F23D70A, 0x3F266666,
3808 0x3F28F5C3, 0x3F2B851F, 0x3F2E147B, 0x3F30A3D7, 0x3F333333, 0x3F35C28F,
3809 0x3F3851EC, 0x3F3AE148, 0x3F3D70A4, 0x3F400000, 0x3F428F5C, 0x3F451EB8,
3810 0x3F47AE14, 0x3F4A3D71, 0x3F4CCCCD, 0x3F4F5C29, 0x3F51EB85, 0x3F547AE1,
3811 0x3F570A3D, 0x3F59999A, 0x3F5C28F6, 0x3F5EB852, 0x3F6147AE, 0x3F63D70A,
3812 0x3F666666, 0x3F68F5C3, 0x3F6B851F, 0x3F6E147B, 0x3F70A3D7, 0x3F733333,
3813 0x3F75C28F, 0x3F7851EC, 0x3F7AE148, 0x3F7D70A4, 0x3F800000
3816 static unsigned int equalizer_vals_lookup[] = {
3817 0xC1C00000, 0xC1B80000, 0xC1B00000, 0xC1A80000, 0xC1A00000, 0xC1980000,
3818 0xC1900000, 0xC1880000, 0xC1800000, 0xC1700000, 0xC1600000, 0xC1500000,
3819 0xC1400000, 0xC1300000, 0xC1200000, 0xC1100000, 0xC1000000, 0xC0E00000,
3820 0xC0C00000, 0xC0A00000, 0xC0800000, 0xC0400000, 0xC0000000, 0xBF800000,
3821 0x00000000, 0x3F800000, 0x40000000, 0x40400000, 0x40800000, 0x40A00000,
3822 0x40C00000, 0x40E00000, 0x41000000, 0x41100000, 0x41200000, 0x41300000,
3823 0x41400000, 0x41500000, 0x41600000, 0x41700000, 0x41800000, 0x41880000,
3824 0x41900000, 0x41980000, 0x41A00000, 0x41A80000, 0x41B00000, 0x41B80000,
3828 static int tuning_ctl_set(struct hda_codec *codec, hda_nid_t nid,
3829 unsigned int *lookup, int idx)
3833 for (i = 0; i < TUNING_CTLS_COUNT; i++)
3834 if (nid == ca0132_tuning_ctls[i].nid)
3837 snd_hda_power_up(codec);
3838 dspio_set_param(codec, ca0132_tuning_ctls[i].mid, 0x20,
3839 ca0132_tuning_ctls[i].req,
3840 &(lookup[idx]), sizeof(unsigned int));
3841 snd_hda_power_down(codec);
3846 static int tuning_ctl_get(struct snd_kcontrol *kcontrol,
3847 struct snd_ctl_elem_value *ucontrol)
3849 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3850 struct ca0132_spec *spec = codec->spec;
3851 hda_nid_t nid = get_amp_nid(kcontrol);
3852 long *valp = ucontrol->value.integer.value;
3853 int idx = nid - TUNING_CTL_START_NID;
3855 *valp = spec->cur_ctl_vals[idx];
3859 static int voice_focus_ctl_info(struct snd_kcontrol *kcontrol,
3860 struct snd_ctl_elem_info *uinfo)
3862 int chs = get_amp_channels(kcontrol);
3863 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3864 uinfo->count = chs == 3 ? 2 : 1;
3865 uinfo->value.integer.min = 20;
3866 uinfo->value.integer.max = 180;
3867 uinfo->value.integer.step = 1;
3872 static int voice_focus_ctl_put(struct snd_kcontrol *kcontrol,
3873 struct snd_ctl_elem_value *ucontrol)
3875 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3876 struct ca0132_spec *spec = codec->spec;
3877 hda_nid_t nid = get_amp_nid(kcontrol);
3878 long *valp = ucontrol->value.integer.value;
3881 idx = nid - TUNING_CTL_START_NID;
3883 if (spec->cur_ctl_vals[idx] == *valp)
3886 spec->cur_ctl_vals[idx] = *valp;
3889 tuning_ctl_set(codec, nid, voice_focus_vals_lookup, idx);
3894 static int mic_svm_ctl_info(struct snd_kcontrol *kcontrol,
3895 struct snd_ctl_elem_info *uinfo)
3897 int chs = get_amp_channels(kcontrol);
3898 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3899 uinfo->count = chs == 3 ? 2 : 1;
3900 uinfo->value.integer.min = 0;
3901 uinfo->value.integer.max = 100;
3902 uinfo->value.integer.step = 1;
3907 static int mic_svm_ctl_put(struct snd_kcontrol *kcontrol,
3908 struct snd_ctl_elem_value *ucontrol)
3910 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3911 struct ca0132_spec *spec = codec->spec;
3912 hda_nid_t nid = get_amp_nid(kcontrol);
3913 long *valp = ucontrol->value.integer.value;
3916 idx = nid - TUNING_CTL_START_NID;
3918 if (spec->cur_ctl_vals[idx] == *valp)
3921 spec->cur_ctl_vals[idx] = *valp;
3924 tuning_ctl_set(codec, nid, mic_svm_vals_lookup, idx);
3929 static int equalizer_ctl_info(struct snd_kcontrol *kcontrol,
3930 struct snd_ctl_elem_info *uinfo)
3932 int chs = get_amp_channels(kcontrol);
3933 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3934 uinfo->count = chs == 3 ? 2 : 1;
3935 uinfo->value.integer.min = 0;
3936 uinfo->value.integer.max = 48;
3937 uinfo->value.integer.step = 1;
3942 static int equalizer_ctl_put(struct snd_kcontrol *kcontrol,
3943 struct snd_ctl_elem_value *ucontrol)
3945 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3946 struct ca0132_spec *spec = codec->spec;
3947 hda_nid_t nid = get_amp_nid(kcontrol);
3948 long *valp = ucontrol->value.integer.value;
3951 idx = nid - TUNING_CTL_START_NID;
3953 if (spec->cur_ctl_vals[idx] == *valp)
3956 spec->cur_ctl_vals[idx] = *valp;
3959 tuning_ctl_set(codec, nid, equalizer_vals_lookup, idx);
3964 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(voice_focus_db_scale, 2000, 100, 0);
3965 static const SNDRV_CTL_TLVD_DECLARE_DB_SCALE(eq_db_scale, -2400, 100, 0);
3967 static int add_tuning_control(struct hda_codec *codec,
3968 hda_nid_t pnid, hda_nid_t nid,
3969 const char *name, int dir)
3971 char namestr[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
3972 int type = dir ? HDA_INPUT : HDA_OUTPUT;
3973 struct snd_kcontrol_new knew =
3974 HDA_CODEC_VOLUME_MONO(namestr, nid, 1, 0, type);
3976 knew.access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
3977 SNDRV_CTL_ELEM_ACCESS_TLV_READ;
3982 knew.info = voice_focus_ctl_info;
3983 knew.get = tuning_ctl_get;
3984 knew.put = voice_focus_ctl_put;
3985 knew.tlv.p = voice_focus_db_scale;
3988 knew.info = mic_svm_ctl_info;
3989 knew.get = tuning_ctl_get;
3990 knew.put = mic_svm_ctl_put;
3993 knew.info = equalizer_ctl_info;
3994 knew.get = tuning_ctl_get;
3995 knew.put = equalizer_ctl_put;
3996 knew.tlv.p = eq_db_scale;
4001 knew.private_value =
4002 HDA_COMPOSE_AMP_VAL(nid, 1, 0, type);
4003 sprintf(namestr, "%s %s Volume", name, dirstr[dir]);
4004 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
4007 static int add_tuning_ctls(struct hda_codec *codec)
4012 for (i = 0; i < TUNING_CTLS_COUNT; i++) {
4013 err = add_tuning_control(codec,
4014 ca0132_tuning_ctls[i].parent_nid,
4015 ca0132_tuning_ctls[i].nid,
4016 ca0132_tuning_ctls[i].name,
4017 ca0132_tuning_ctls[i].direct);
4025 static void ca0132_init_tuning_defaults(struct hda_codec *codec)
4027 struct ca0132_spec *spec = codec->spec;
4030 /* Wedge Angle defaults to 30. 10 below is 30 - 20. 20 is min. */
4031 spec->cur_ctl_vals[WEDGE_ANGLE - TUNING_CTL_START_NID] = 10;
4032 /* SVM level defaults to 0.74. */
4033 spec->cur_ctl_vals[SVM_LEVEL - TUNING_CTL_START_NID] = 74;
4035 /* EQ defaults to 0dB. */
4036 for (i = 2; i < TUNING_CTLS_COUNT; i++)
4037 spec->cur_ctl_vals[i] = 24;
4039 #endif /*ENABLE_TUNING_CONTROLS*/
4042 * Select the active output.
4043 * If autodetect is enabled, output will be selected based on jack detection.
4044 * If jack inserted, headphone will be selected, else built-in speakers
4045 * If autodetect is disabled, output will be selected based on selection.
4047 static int ca0132_select_out(struct hda_codec *codec)
4049 struct ca0132_spec *spec = codec->spec;
4050 unsigned int pin_ctl;
4056 codec_dbg(codec, "ca0132_select_out\n");
4058 snd_hda_power_up_pm(codec);
4060 auto_jack = spec->vnode_lswitch[VNID_HP_ASEL - VNODE_START_NID];
4063 jack_present = snd_hda_jack_detect(codec, spec->unsol_tag_hp);
4066 spec->vnode_lswitch[VNID_HP_SEL - VNODE_START_NID];
4069 spec->cur_out_type = HEADPHONE_OUT;
4071 spec->cur_out_type = SPEAKER_OUT;
4073 if (spec->cur_out_type == SPEAKER_OUT) {
4074 codec_dbg(codec, "ca0132_select_out speaker\n");
4075 /*speaker out config*/
4077 err = dspio_set_uint_param(codec, 0x80, 0x04, tmp);
4080 /*enable speaker EQ*/
4082 err = dspio_set_uint_param(codec, 0x8f, 0x00, tmp);
4087 snd_hda_codec_write(codec, spec->out_pins[1], 0,
4088 VENDOR_CHIPIO_EAPD_SEL_SET, 0x02);
4089 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4090 AC_VERB_SET_EAPD_BTLENABLE, 0x00);
4091 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4092 VENDOR_CHIPIO_EAPD_SEL_SET, 0x00);
4093 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4094 AC_VERB_SET_EAPD_BTLENABLE, 0x02);
4096 /* disable headphone node */
4097 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[1], 0,
4098 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4099 snd_hda_set_pin_ctl(codec, spec->out_pins[1],
4101 /* enable speaker node */
4102 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[0], 0,
4103 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4104 snd_hda_set_pin_ctl(codec, spec->out_pins[0],
4107 codec_dbg(codec, "ca0132_select_out hp\n");
4108 /*headphone out config*/
4110 err = dspio_set_uint_param(codec, 0x80, 0x04, tmp);
4113 /*disable speaker EQ*/
4115 err = dspio_set_uint_param(codec, 0x8f, 0x00, tmp);
4120 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4121 VENDOR_CHIPIO_EAPD_SEL_SET, 0x00);
4122 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4123 AC_VERB_SET_EAPD_BTLENABLE, 0x00);
4124 snd_hda_codec_write(codec, spec->out_pins[1], 0,
4125 VENDOR_CHIPIO_EAPD_SEL_SET, 0x02);
4126 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4127 AC_VERB_SET_EAPD_BTLENABLE, 0x02);
4129 /* disable speaker*/
4130 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[0], 0,
4131 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4132 snd_hda_set_pin_ctl(codec, spec->out_pins[0],
4134 /* enable headphone*/
4135 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[1], 0,
4136 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4137 snd_hda_set_pin_ctl(codec, spec->out_pins[1],
4142 snd_hda_power_down_pm(codec);
4144 return err < 0 ? err : 0;
4147 static int ae5_headphone_gain_set(struct hda_codec *codec, long val);
4148 static int zxr_headphone_gain_set(struct hda_codec *codec, long val);
4149 static int ca0132_effects_set(struct hda_codec *codec, hda_nid_t nid, long val);
4151 static void ae5_mmio_select_out(struct hda_codec *codec)
4153 struct ca0132_spec *spec = codec->spec;
4156 for (i = 0; i < AE5_CA0113_OUT_SET_COMMANDS; i++)
4157 ca0113_mmio_command_set(codec,
4158 ae5_ca0113_output_presets[spec->cur_out_type].group[i],
4159 ae5_ca0113_output_presets[spec->cur_out_type].target[i],
4160 ae5_ca0113_output_presets[spec->cur_out_type].vals[i]);
4164 * These are the commands needed to setup output on each of the different card
4167 static void ca0132_alt_select_out_quirk_handler(struct hda_codec *codec)
4169 struct ca0132_spec *spec = codec->spec;
4172 switch (spec->cur_out_type) {
4174 switch (spec->quirk) {
4176 ca0113_mmio_gpio_set(codec, 7, false);
4177 ca0113_mmio_gpio_set(codec, 4, true);
4178 ca0113_mmio_gpio_set(codec, 1, true);
4179 chipio_set_control_param(codec, 0x0d, 0x18);
4182 ca0113_mmio_gpio_set(codec, 2, true);
4183 ca0113_mmio_gpio_set(codec, 3, true);
4184 ca0113_mmio_gpio_set(codec, 5, false);
4185 zxr_headphone_gain_set(codec, 0);
4186 chipio_set_control_param(codec, 0x0d, 0x24);
4189 chipio_set_control_param(codec, 0x0d, 0x24);
4190 r3di_gpio_out_set(codec, R3DI_LINE_OUT);
4193 chipio_set_control_param(codec, 0x0d, 0x24);
4194 ca0113_mmio_gpio_set(codec, 1, true);
4197 ae5_mmio_select_out(codec);
4198 ae5_headphone_gain_set(codec, 2);
4200 dspio_set_uint_param(codec, 0x96, 0x29, tmp);
4201 dspio_set_uint_param(codec, 0x96, 0x2a, tmp);
4202 chipio_set_control_param(codec, 0x0d, 0xa4);
4203 chipio_write(codec, 0x18b03c, 0x00000012);
4208 switch (spec->quirk) {
4210 ca0113_mmio_gpio_set(codec, 7, true);
4211 ca0113_mmio_gpio_set(codec, 4, true);
4212 ca0113_mmio_gpio_set(codec, 1, false);
4213 chipio_set_control_param(codec, 0x0d, 0x12);
4216 ca0113_mmio_gpio_set(codec, 2, false);
4217 ca0113_mmio_gpio_set(codec, 3, false);
4218 ca0113_mmio_gpio_set(codec, 5, true);
4219 zxr_headphone_gain_set(codec, spec->zxr_gain_set);
4220 chipio_set_control_param(codec, 0x0d, 0x21);
4223 chipio_set_control_param(codec, 0x0d, 0x21);
4224 r3di_gpio_out_set(codec, R3DI_HEADPHONE_OUT);
4227 chipio_set_control_param(codec, 0x0d, 0x21);
4228 ca0113_mmio_gpio_set(codec, 0x1, false);
4231 ae5_mmio_select_out(codec);
4232 ae5_headphone_gain_set(codec,
4233 spec->ae5_headphone_gain_val);
4235 dspio_set_uint_param(codec, 0x96, 0x29, tmp);
4236 dspio_set_uint_param(codec, 0x96, 0x2a, tmp);
4237 chipio_set_control_param(codec, 0x0d, 0xa1);
4238 chipio_write(codec, 0x18b03c, 0x00000012);
4243 switch (spec->quirk) {
4245 ca0113_mmio_gpio_set(codec, 7, false);
4246 ca0113_mmio_gpio_set(codec, 4, true);
4247 ca0113_mmio_gpio_set(codec, 1, true);
4248 chipio_set_control_param(codec, 0x0d, 0x18);
4251 ca0113_mmio_gpio_set(codec, 2, true);
4252 ca0113_mmio_gpio_set(codec, 3, true);
4253 ca0113_mmio_gpio_set(codec, 5, false);
4254 zxr_headphone_gain_set(codec, 0);
4255 chipio_set_control_param(codec, 0x0d, 0x24);
4258 chipio_set_control_param(codec, 0x0d, 0x24);
4259 r3di_gpio_out_set(codec, R3DI_LINE_OUT);
4262 ca0113_mmio_gpio_set(codec, 1, true);
4263 chipio_set_control_param(codec, 0x0d, 0x24);
4266 ae5_mmio_select_out(codec);
4267 ae5_headphone_gain_set(codec, 2);
4269 dspio_set_uint_param(codec, 0x96, 0x29, tmp);
4270 dspio_set_uint_param(codec, 0x96, 0x2a, tmp);
4271 chipio_set_control_param(codec, 0x0d, 0xa4);
4272 chipio_write(codec, 0x18b03c, 0x00000012);
4280 * This function behaves similarly to the ca0132_select_out funciton above,
4281 * except with a few differences. It adds the ability to select the current
4282 * output with an enumerated control "output source" if the auto detect
4283 * mute switch is set to off. If the auto detect mute switch is enabled, it
4284 * will detect either headphone or lineout(SPEAKER_OUT) from jack detection.
4285 * It also adds the ability to auto-detect the front headphone port. The only
4286 * way to select surround is to disable auto detect, and set Surround with the
4287 * enumerated control.
4289 static int ca0132_alt_select_out(struct hda_codec *codec)
4291 struct ca0132_spec *spec = codec->spec;
4292 unsigned int pin_ctl;
4298 /* Default Headphone is rear headphone */
4299 hda_nid_t headphone_nid = spec->out_pins[1];
4301 codec_dbg(codec, "%s\n", __func__);
4303 snd_hda_power_up_pm(codec);
4305 auto_jack = spec->vnode_lswitch[VNID_HP_ASEL - VNODE_START_NID];
4308 * If headphone rear or front is plugged in, set to headphone.
4309 * If neither is plugged in, set to rear line out. Only if
4310 * hp/speaker auto detect is enabled.
4313 jack_present = snd_hda_jack_detect(codec, spec->unsol_tag_hp) ||
4314 snd_hda_jack_detect(codec, spec->unsol_tag_front_hp);
4317 spec->cur_out_type = HEADPHONE_OUT;
4319 spec->cur_out_type = SPEAKER_OUT;
4321 spec->cur_out_type = spec->out_enum_val;
4323 /* Begin DSP output switch */
4325 err = dspio_set_uint_param(codec, 0x96, 0x3A, tmp);
4329 ca0132_alt_select_out_quirk_handler(codec);
4331 switch (spec->cur_out_type) {
4333 codec_dbg(codec, "%s speaker\n", __func__);
4335 /* disable headphone node */
4336 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[1], 0,
4337 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4338 snd_hda_set_pin_ctl(codec, spec->out_pins[1],
4340 /* enable line-out node */
4341 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[0], 0,
4342 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4343 snd_hda_set_pin_ctl(codec, spec->out_pins[0],
4346 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4347 AC_VERB_SET_EAPD_BTLENABLE, 0x01);
4349 /* If PlayEnhancement is enabled, set different source */
4350 if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID])
4351 dspio_set_uint_param(codec, 0x80, 0x04, FLOAT_ONE);
4353 dspio_set_uint_param(codec, 0x80, 0x04, FLOAT_EIGHT);
4356 codec_dbg(codec, "%s hp\n", __func__);
4358 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4359 AC_VERB_SET_EAPD_BTLENABLE, 0x00);
4361 /* disable speaker*/
4362 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[0], 0,
4363 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4364 snd_hda_set_pin_ctl(codec, spec->out_pins[0],
4367 /* enable headphone, either front or rear */
4369 if (snd_hda_jack_detect(codec, spec->unsol_tag_front_hp))
4370 headphone_nid = spec->out_pins[2];
4371 else if (snd_hda_jack_detect(codec, spec->unsol_tag_hp))
4372 headphone_nid = spec->out_pins[1];
4374 pin_ctl = snd_hda_codec_read(codec, headphone_nid, 0,
4375 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4376 snd_hda_set_pin_ctl(codec, headphone_nid,
4379 if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID])
4380 dspio_set_uint_param(codec, 0x80, 0x04, FLOAT_ONE);
4382 dspio_set_uint_param(codec, 0x80, 0x04, FLOAT_ZERO);
4385 codec_dbg(codec, "%s surround\n", __func__);
4387 /* enable line out node */
4388 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[0], 0,
4389 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4390 snd_hda_set_pin_ctl(codec, spec->out_pins[0],
4392 /* Disable headphone out */
4393 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[1], 0,
4394 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4395 snd_hda_set_pin_ctl(codec, spec->out_pins[1],
4397 /* Enable EAPD on line out */
4398 snd_hda_codec_write(codec, spec->out_pins[0], 0,
4399 AC_VERB_SET_EAPD_BTLENABLE, 0x01);
4400 /* enable center/lfe out node */
4401 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[2], 0,
4402 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4403 snd_hda_set_pin_ctl(codec, spec->out_pins[2],
4405 /* Now set rear surround node as out. */
4406 pin_ctl = snd_hda_codec_read(codec, spec->out_pins[3], 0,
4407 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4408 snd_hda_set_pin_ctl(codec, spec->out_pins[3],
4411 dspio_set_uint_param(codec, 0x80, 0x04, FLOAT_EIGHT);
4415 * Surround always sets it's scp command to req 0x04 to FLOAT_EIGHT.
4416 * With this set though, X_BASS cannot be enabled. So, if we have OutFX
4417 * enabled, we need to make sure X_BASS is off, otherwise everything
4418 * sounds all muffled. Running ca0132_effects_set with X_BASS as the
4419 * effect should sort this out.
4421 if (spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID])
4422 ca0132_effects_set(codec, X_BASS,
4423 spec->effects_switch[X_BASS - EFFECT_START_NID]);
4425 /* run through the output dsp commands for the selected output. */
4426 for (i = 0; i < alt_out_presets[spec->cur_out_type].commands; i++) {
4427 err = dspio_set_uint_param(codec,
4428 alt_out_presets[spec->cur_out_type].mids[i],
4429 alt_out_presets[spec->cur_out_type].reqs[i],
4430 alt_out_presets[spec->cur_out_type].vals[i]);
4437 snd_hda_power_down_pm(codec);
4439 return err < 0 ? err : 0;
4442 static void ca0132_unsol_hp_delayed(struct work_struct *work)
4444 struct ca0132_spec *spec = container_of(
4445 to_delayed_work(work), struct ca0132_spec, unsol_hp_work);
4446 struct hda_jack_tbl *jack;
4448 if (spec->use_alt_functions)
4449 ca0132_alt_select_out(spec->codec);
4451 ca0132_select_out(spec->codec);
4453 jack = snd_hda_jack_tbl_get(spec->codec, spec->unsol_tag_hp);
4455 jack->block_report = 0;
4456 snd_hda_jack_report_sync(spec->codec);
4460 static void ca0132_set_dmic(struct hda_codec *codec, int enable);
4461 static int ca0132_mic_boost_set(struct hda_codec *codec, long val);
4462 static void resume_mic1(struct hda_codec *codec, unsigned int oldval);
4463 static int stop_mic1(struct hda_codec *codec);
4464 static int ca0132_cvoice_switch_set(struct hda_codec *codec);
4465 static int ca0132_alt_mic_boost_set(struct hda_codec *codec, long val);
4468 * Select the active VIP source
4470 static int ca0132_set_vipsource(struct hda_codec *codec, int val)
4472 struct ca0132_spec *spec = codec->spec;
4475 if (spec->dsp_state != DSP_DOWNLOADED)
4478 /* if CrystalVoice if off, vipsource should be 0 */
4479 if (!spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID] ||
4481 chipio_set_control_param(codec, CONTROL_PARAM_VIP_SOURCE, 0);
4482 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
4483 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
4484 if (spec->cur_mic_type == DIGITAL_MIC)
4488 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4490 dspio_set_uint_param(codec, 0x80, 0x05, tmp);
4492 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_16_000);
4493 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_16_000);
4494 if (spec->cur_mic_type == DIGITAL_MIC)
4498 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4500 dspio_set_uint_param(codec, 0x80, 0x05, tmp);
4502 chipio_set_control_param(codec, CONTROL_PARAM_VIP_SOURCE, val);
4508 static int ca0132_alt_set_vipsource(struct hda_codec *codec, int val)
4510 struct ca0132_spec *spec = codec->spec;
4513 if (spec->dsp_state != DSP_DOWNLOADED)
4516 codec_dbg(codec, "%s\n", __func__);
4518 chipio_set_stream_control(codec, 0x03, 0);
4519 chipio_set_stream_control(codec, 0x04, 0);
4521 /* if CrystalVoice is off, vipsource should be 0 */
4522 if (!spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID] ||
4523 (val == 0) || spec->in_enum_val == REAR_LINE_IN) {
4524 codec_dbg(codec, "%s: off.", __func__);
4525 chipio_set_control_param(codec, CONTROL_PARAM_VIP_SOURCE, 0);
4528 dspio_set_uint_param(codec, 0x80, 0x05, tmp);
4530 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
4531 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
4532 if (spec->quirk == QUIRK_R3DI)
4533 chipio_set_conn_rate(codec, 0x0F, SR_96_000);
4536 if (spec->in_enum_val == REAR_LINE_IN)
4539 if (spec->quirk == QUIRK_SBZ)
4545 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4548 codec_dbg(codec, "%s: on.", __func__);
4549 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_16_000);
4550 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_16_000);
4551 if (spec->quirk == QUIRK_R3DI)
4552 chipio_set_conn_rate(codec, 0x0F, SR_16_000);
4554 if (spec->effects_switch[VOICE_FOCUS - EFFECT_START_NID])
4558 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4561 dspio_set_uint_param(codec, 0x80, 0x05, tmp);
4564 chipio_set_control_param(codec, CONTROL_PARAM_VIP_SOURCE, val);
4567 chipio_set_stream_control(codec, 0x03, 1);
4568 chipio_set_stream_control(codec, 0x04, 1);
4574 * Select the active microphone.
4575 * If autodetect is enabled, mic will be selected based on jack detection.
4576 * If jack inserted, ext.mic will be selected, else built-in mic
4577 * If autodetect is disabled, mic will be selected based on selection.
4579 static int ca0132_select_mic(struct hda_codec *codec)
4581 struct ca0132_spec *spec = codec->spec;
4585 codec_dbg(codec, "ca0132_select_mic\n");
4587 snd_hda_power_up_pm(codec);
4589 auto_jack = spec->vnode_lswitch[VNID_AMIC1_ASEL - VNODE_START_NID];
4592 jack_present = snd_hda_jack_detect(codec, spec->unsol_tag_amic1);
4595 spec->vnode_lswitch[VNID_AMIC1_SEL - VNODE_START_NID];
4598 spec->cur_mic_type = LINE_MIC_IN;
4600 spec->cur_mic_type = DIGITAL_MIC;
4602 if (spec->cur_mic_type == DIGITAL_MIC) {
4603 /* enable digital Mic */
4604 chipio_set_conn_rate(codec, MEM_CONNID_DMIC, SR_32_000);
4605 ca0132_set_dmic(codec, 1);
4606 ca0132_mic_boost_set(codec, 0);
4607 /* set voice focus */
4608 ca0132_effects_set(codec, VOICE_FOCUS,
4609 spec->effects_switch
4610 [VOICE_FOCUS - EFFECT_START_NID]);
4612 /* disable digital Mic */
4613 chipio_set_conn_rate(codec, MEM_CONNID_DMIC, SR_96_000);
4614 ca0132_set_dmic(codec, 0);
4615 ca0132_mic_boost_set(codec, spec->cur_mic_boost);
4616 /* disable voice focus */
4617 ca0132_effects_set(codec, VOICE_FOCUS, 0);
4620 snd_hda_power_down_pm(codec);
4626 * Select the active input.
4627 * Mic detection isn't used, because it's kind of pointless on the SBZ.
4628 * The front mic has no jack-detection, so the only way to switch to it
4629 * is to do it manually in alsamixer.
4631 static int ca0132_alt_select_in(struct hda_codec *codec)
4633 struct ca0132_spec *spec = codec->spec;
4636 codec_dbg(codec, "%s\n", __func__);
4638 snd_hda_power_up_pm(codec);
4640 chipio_set_stream_control(codec, 0x03, 0);
4641 chipio_set_stream_control(codec, 0x04, 0);
4643 spec->cur_mic_type = spec->in_enum_val;
4645 switch (spec->cur_mic_type) {
4647 switch (spec->quirk) {
4650 ca0113_mmio_gpio_set(codec, 0, false);
4657 r3di_gpio_mic_set(codec, R3DI_REAR_MIC);
4661 ca0113_mmio_command_set(codec, 0x48, 0x28, 0x00);
4669 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
4670 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
4671 if (spec->quirk == QUIRK_R3DI)
4672 chipio_set_conn_rate(codec, 0x0F, SR_96_000);
4674 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4676 chipio_set_stream_control(codec, 0x03, 1);
4677 chipio_set_stream_control(codec, 0x04, 1);
4678 switch (spec->quirk) {
4680 chipio_write(codec, 0x18B098, 0x0000000C);
4681 chipio_write(codec, 0x18B09C, 0x0000000C);
4684 chipio_write(codec, 0x18B098, 0x0000000C);
4685 chipio_write(codec, 0x18B09C, 0x000000CC);
4688 chipio_write(codec, 0x18B098, 0x0000000C);
4689 chipio_write(codec, 0x18B09C, 0x0000004C);
4692 ca0132_alt_mic_boost_set(codec, spec->mic_boost_enum_val);
4695 ca0132_mic_boost_set(codec, 0);
4696 switch (spec->quirk) {
4699 ca0113_mmio_gpio_set(codec, 0, false);
4702 r3di_gpio_mic_set(codec, R3DI_REAR_MIC);
4705 ca0113_mmio_command_set(codec, 0x48, 0x28, 0x00);
4709 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
4710 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
4711 if (spec->quirk == QUIRK_R3DI)
4712 chipio_set_conn_rate(codec, 0x0F, SR_96_000);
4715 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4717 switch (spec->quirk) {
4720 chipio_write(codec, 0x18B098, 0x00000000);
4721 chipio_write(codec, 0x18B09C, 0x00000000);
4724 chipio_set_stream_control(codec, 0x03, 1);
4725 chipio_set_stream_control(codec, 0x04, 1);
4728 switch (spec->quirk) {
4731 ca0113_mmio_gpio_set(codec, 0, true);
4732 ca0113_mmio_gpio_set(codec, 5, false);
4736 r3di_gpio_mic_set(codec, R3DI_FRONT_MIC);
4740 ca0113_mmio_command_set(codec, 0x48, 0x28, 0x3f);
4748 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
4749 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
4750 if (spec->quirk == QUIRK_R3DI)
4751 chipio_set_conn_rate(codec, 0x0F, SR_96_000);
4753 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4755 chipio_set_stream_control(codec, 0x03, 1);
4756 chipio_set_stream_control(codec, 0x04, 1);
4758 switch (spec->quirk) {
4760 chipio_write(codec, 0x18B098, 0x0000000C);
4761 chipio_write(codec, 0x18B09C, 0x000000CC);
4764 chipio_write(codec, 0x18B098, 0x0000000C);
4765 chipio_write(codec, 0x18B09C, 0x0000004C);
4768 ca0132_alt_mic_boost_set(codec, spec->mic_boost_enum_val);
4771 ca0132_cvoice_switch_set(codec);
4773 snd_hda_power_down_pm(codec);
4778 * Check if VNODE settings take effect immediately.
4780 static bool ca0132_is_vnode_effective(struct hda_codec *codec,
4782 hda_nid_t *shared_nid)
4784 struct ca0132_spec *spec = codec->spec;
4789 nid = spec->shared_out_nid;
4792 nid = spec->shared_mic_nid;
4805 * The following functions are control change helpers.
4806 * They return 0 if no changed. Return 1 if changed.
4808 static int ca0132_voicefx_set(struct hda_codec *codec, int enable)
4810 struct ca0132_spec *spec = codec->spec;
4813 /* based on CrystalVoice state to enable VoiceFX. */
4815 tmp = spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID] ?
4816 FLOAT_ONE : FLOAT_ZERO;
4821 dspio_set_uint_param(codec, ca0132_voicefx.mid,
4822 ca0132_voicefx.reqs[0], tmp);
4828 * Set the effects parameters
4830 static int ca0132_effects_set(struct hda_codec *codec, hda_nid_t nid, long val)
4832 struct ca0132_spec *spec = codec->spec;
4833 unsigned int on, tmp;
4834 int num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT;
4836 int idx = nid - EFFECT_START_NID;
4838 if ((idx < 0) || (idx >= num_fx))
4839 return 0; /* no changed */
4841 /* for out effect, qualify with PE */
4842 if ((nid >= OUT_EFFECT_START_NID) && (nid < OUT_EFFECT_END_NID)) {
4843 /* if PE if off, turn off out effects. */
4844 if (!spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID])
4846 if (spec->cur_out_type == SURROUND_OUT && nid == X_BASS)
4850 /* for in effect, qualify with CrystalVoice */
4851 if ((nid >= IN_EFFECT_START_NID) && (nid < IN_EFFECT_END_NID)) {
4852 /* if CrystalVoice if off, turn off in effects. */
4853 if (!spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID])
4856 /* Voice Focus applies to 2-ch Mic, Digital Mic */
4857 if ((nid == VOICE_FOCUS) && (spec->cur_mic_type != DIGITAL_MIC))
4860 /* If Voice Focus on SBZ, set to two channel. */
4861 if ((nid == VOICE_FOCUS) && (spec->use_pci_mmio)
4862 && (spec->cur_mic_type != REAR_LINE_IN)) {
4863 if (spec->effects_switch[CRYSTAL_VOICE -
4864 EFFECT_START_NID]) {
4866 if (spec->effects_switch[VOICE_FOCUS -
4867 EFFECT_START_NID]) {
4873 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
4877 * For SBZ noise reduction, there's an extra command
4878 * to module ID 0x47. No clue why.
4880 if ((nid == NOISE_REDUCTION) && (spec->use_pci_mmio)
4881 && (spec->cur_mic_type != REAR_LINE_IN)) {
4882 if (spec->effects_switch[CRYSTAL_VOICE -
4883 EFFECT_START_NID]) {
4884 if (spec->effects_switch[NOISE_REDUCTION -
4892 dspio_set_uint_param(codec, 0x47, 0x00, tmp);
4895 /* If rear line in disable effects. */
4896 if (spec->use_alt_functions &&
4897 spec->in_enum_val == REAR_LINE_IN)
4901 codec_dbg(codec, "ca0132_effect_set: nid=0x%x, val=%ld\n",
4904 on = (val == 0) ? FLOAT_ZERO : FLOAT_ONE;
4905 err = dspio_set_uint_param(codec, ca0132_effects[idx].mid,
4906 ca0132_effects[idx].reqs[0], on);
4909 return 0; /* no changed */
4915 * Turn on/off Playback Enhancements
4917 static int ca0132_pe_switch_set(struct hda_codec *codec)
4919 struct ca0132_spec *spec = codec->spec;
4923 codec_dbg(codec, "ca0132_pe_switch_set: val=%ld\n",
4924 spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID]);
4926 if (spec->use_alt_functions)
4927 ca0132_alt_select_out(codec);
4929 i = OUT_EFFECT_START_NID - EFFECT_START_NID;
4930 nid = OUT_EFFECT_START_NID;
4931 /* PE affects all out effects */
4932 for (; nid < OUT_EFFECT_END_NID; nid++, i++)
4933 ret |= ca0132_effects_set(codec, nid, spec->effects_switch[i]);
4938 /* Check if Mic1 is streaming, if so, stop streaming */
4939 static int stop_mic1(struct hda_codec *codec)
4941 struct ca0132_spec *spec = codec->spec;
4942 unsigned int oldval = snd_hda_codec_read(codec, spec->adcs[0], 0,
4943 AC_VERB_GET_CONV, 0);
4945 snd_hda_codec_write(codec, spec->adcs[0], 0,
4946 AC_VERB_SET_CHANNEL_STREAMID,
4951 /* Resume Mic1 streaming if it was stopped. */
4952 static void resume_mic1(struct hda_codec *codec, unsigned int oldval)
4954 struct ca0132_spec *spec = codec->spec;
4955 /* Restore the previous stream and channel */
4957 snd_hda_codec_write(codec, spec->adcs[0], 0,
4958 AC_VERB_SET_CHANNEL_STREAMID,
4963 * Turn on/off CrystalVoice
4965 static int ca0132_cvoice_switch_set(struct hda_codec *codec)
4967 struct ca0132_spec *spec = codec->spec;
4970 unsigned int oldval;
4972 codec_dbg(codec, "ca0132_cvoice_switch_set: val=%ld\n",
4973 spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID]);
4975 i = IN_EFFECT_START_NID - EFFECT_START_NID;
4976 nid = IN_EFFECT_START_NID;
4977 /* CrystalVoice affects all in effects */
4978 for (; nid < IN_EFFECT_END_NID; nid++, i++)
4979 ret |= ca0132_effects_set(codec, nid, spec->effects_switch[i]);
4981 /* including VoiceFX */
4982 ret |= ca0132_voicefx_set(codec, (spec->voicefx_val ? 1 : 0));
4984 /* set correct vipsource */
4985 oldval = stop_mic1(codec);
4986 if (spec->use_alt_functions)
4987 ret |= ca0132_alt_set_vipsource(codec, 1);
4989 ret |= ca0132_set_vipsource(codec, 1);
4990 resume_mic1(codec, oldval);
4994 static int ca0132_mic_boost_set(struct hda_codec *codec, long val)
4996 struct ca0132_spec *spec = codec->spec;
5000 ret = snd_hda_codec_amp_update(codec, spec->input_pins[0], 0,
5001 HDA_INPUT, 0, HDA_AMP_VOLMASK, 3);
5003 ret = snd_hda_codec_amp_update(codec, spec->input_pins[0], 0,
5004 HDA_INPUT, 0, HDA_AMP_VOLMASK, 0);
5009 static int ca0132_alt_mic_boost_set(struct hda_codec *codec, long val)
5011 struct ca0132_spec *spec = codec->spec;
5014 ret = snd_hda_codec_amp_update(codec, spec->input_pins[0], 0,
5015 HDA_INPUT, 0, HDA_AMP_VOLMASK, val);
5019 static int ae5_headphone_gain_set(struct hda_codec *codec, long val)
5023 for (i = 0; i < 4; i++)
5024 ca0113_mmio_command_set(codec, 0x48, 0x11 + i,
5025 ae5_headphone_gain_presets[val].vals[i]);
5030 * gpio pin 1 is a relay that switches on/off, apparently setting the headphone
5031 * amplifier to handle a 600 ohm load.
5033 static int zxr_headphone_gain_set(struct hda_codec *codec, long val)
5035 ca0113_mmio_gpio_set(codec, 1, val);
5040 static int ca0132_vnode_switch_set(struct snd_kcontrol *kcontrol,
5041 struct snd_ctl_elem_value *ucontrol)
5043 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5044 hda_nid_t nid = get_amp_nid(kcontrol);
5045 hda_nid_t shared_nid = 0;
5048 struct ca0132_spec *spec = codec->spec;
5051 if (nid == VNID_HP_SEL) {
5053 spec->vnode_lswitch[VNID_HP_ASEL - VNODE_START_NID];
5055 if (spec->use_alt_functions)
5056 ca0132_alt_select_out(codec);
5058 ca0132_select_out(codec);
5063 if (nid == VNID_AMIC1_SEL) {
5065 spec->vnode_lswitch[VNID_AMIC1_ASEL - VNODE_START_NID];
5067 ca0132_select_mic(codec);
5071 if (nid == VNID_HP_ASEL) {
5072 if (spec->use_alt_functions)
5073 ca0132_alt_select_out(codec);
5075 ca0132_select_out(codec);
5079 if (nid == VNID_AMIC1_ASEL) {
5080 ca0132_select_mic(codec);
5084 /* if effective conditions, then update hw immediately. */
5085 effective = ca0132_is_vnode_effective(codec, nid, &shared_nid);
5087 int dir = get_amp_direction(kcontrol);
5088 int ch = get_amp_channels(kcontrol);
5091 mutex_lock(&codec->control_mutex);
5092 pval = kcontrol->private_value;
5093 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(shared_nid, ch,
5095 ret = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
5096 kcontrol->private_value = pval;
5097 mutex_unlock(&codec->control_mutex);
5102 /* End of control change helpers. */
5104 * Below I've added controls to mess with the effect levels, I've only enabled
5105 * them on the Sound Blaster Z, but they would probably also work on the
5106 * Chromebook. I figured they were probably tuned specifically for it, and left
5110 /* Sets DSP effect level from the sliders above the controls */
5111 static int ca0132_alt_slider_ctl_set(struct hda_codec *codec, hda_nid_t nid,
5112 const unsigned int *lookup, int idx)
5117 * For X_BASS, req 2 is actually crossover freq instead of
5125 snd_hda_power_up(codec);
5126 if (nid == XBASS_XOVER) {
5127 for (i = 0; i < OUT_EFFECTS_COUNT; i++)
5128 if (ca0132_effects[i].nid == X_BASS)
5131 dspio_set_param(codec, ca0132_effects[i].mid, 0x20,
5132 ca0132_effects[i].reqs[1],
5133 &(lookup[idx - 1]), sizeof(unsigned int));
5135 /* Find the actual effect structure */
5136 for (i = 0; i < OUT_EFFECTS_COUNT; i++)
5137 if (nid == ca0132_effects[i].nid)
5140 dspio_set_param(codec, ca0132_effects[i].mid, 0x20,
5141 ca0132_effects[i].reqs[y],
5142 &(lookup[idx]), sizeof(unsigned int));
5145 snd_hda_power_down(codec);
5150 static int ca0132_alt_xbass_xover_slider_ctl_get(struct snd_kcontrol *kcontrol,
5151 struct snd_ctl_elem_value *ucontrol)
5153 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5154 struct ca0132_spec *spec = codec->spec;
5155 long *valp = ucontrol->value.integer.value;
5157 *valp = spec->xbass_xover_freq;
5161 static int ca0132_alt_slider_ctl_get(struct snd_kcontrol *kcontrol,
5162 struct snd_ctl_elem_value *ucontrol)
5164 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5165 struct ca0132_spec *spec = codec->spec;
5166 hda_nid_t nid = get_amp_nid(kcontrol);
5167 long *valp = ucontrol->value.integer.value;
5168 int idx = nid - OUT_EFFECT_START_NID;
5170 *valp = spec->fx_ctl_val[idx];
5175 * The X-bass crossover starts at 10hz, so the min is 1. The
5176 * frequency is set in multiples of 10.
5178 static int ca0132_alt_xbass_xover_slider_info(struct snd_kcontrol *kcontrol,
5179 struct snd_ctl_elem_info *uinfo)
5181 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
5183 uinfo->value.integer.min = 1;
5184 uinfo->value.integer.max = 100;
5185 uinfo->value.integer.step = 1;
5190 static int ca0132_alt_effect_slider_info(struct snd_kcontrol *kcontrol,
5191 struct snd_ctl_elem_info *uinfo)
5193 int chs = get_amp_channels(kcontrol);
5195 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
5196 uinfo->count = chs == 3 ? 2 : 1;
5197 uinfo->value.integer.min = 0;
5198 uinfo->value.integer.max = 100;
5199 uinfo->value.integer.step = 1;
5204 static int ca0132_alt_xbass_xover_slider_put(struct snd_kcontrol *kcontrol,
5205 struct snd_ctl_elem_value *ucontrol)
5207 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5208 struct ca0132_spec *spec = codec->spec;
5209 hda_nid_t nid = get_amp_nid(kcontrol);
5210 long *valp = ucontrol->value.integer.value;
5214 if (spec->xbass_xover_freq == *valp)
5217 spec->xbass_xover_freq = *valp;
5220 ca0132_alt_slider_ctl_set(codec, nid, float_xbass_xover_lookup, idx);
5225 static int ca0132_alt_effect_slider_put(struct snd_kcontrol *kcontrol,
5226 struct snd_ctl_elem_value *ucontrol)
5228 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5229 struct ca0132_spec *spec = codec->spec;
5230 hda_nid_t nid = get_amp_nid(kcontrol);
5231 long *valp = ucontrol->value.integer.value;
5234 idx = nid - EFFECT_START_NID;
5236 if (spec->fx_ctl_val[idx] == *valp)
5239 spec->fx_ctl_val[idx] = *valp;
5242 ca0132_alt_slider_ctl_set(codec, nid, float_zero_to_one_lookup, idx);
5249 * Mic Boost Enum for alternative ca0132 codecs. I didn't like that the original
5250 * only has off or full 30 dB, and didn't like making a volume slider that has
5251 * traditional 0-100 in alsamixer that goes in big steps. I like enum better.
5253 #define MIC_BOOST_NUM_OF_STEPS 4
5254 #define MIC_BOOST_ENUM_MAX_STRLEN 10
5256 static int ca0132_alt_mic_boost_info(struct snd_kcontrol *kcontrol,
5257 struct snd_ctl_elem_info *uinfo)
5260 char namestr[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
5262 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5264 uinfo->value.enumerated.items = MIC_BOOST_NUM_OF_STEPS;
5265 if (uinfo->value.enumerated.item >= MIC_BOOST_NUM_OF_STEPS)
5266 uinfo->value.enumerated.item = MIC_BOOST_NUM_OF_STEPS - 1;
5267 sprintf(namestr, "%d %s", (uinfo->value.enumerated.item * 10), sfx);
5268 strcpy(uinfo->value.enumerated.name, namestr);
5272 static int ca0132_alt_mic_boost_get(struct snd_kcontrol *kcontrol,
5273 struct snd_ctl_elem_value *ucontrol)
5275 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5276 struct ca0132_spec *spec = codec->spec;
5278 ucontrol->value.enumerated.item[0] = spec->mic_boost_enum_val;
5282 static int ca0132_alt_mic_boost_put(struct snd_kcontrol *kcontrol,
5283 struct snd_ctl_elem_value *ucontrol)
5285 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5286 struct ca0132_spec *spec = codec->spec;
5287 int sel = ucontrol->value.enumerated.item[0];
5288 unsigned int items = MIC_BOOST_NUM_OF_STEPS;
5293 codec_dbg(codec, "ca0132_alt_mic_boost: boost=%d\n",
5296 spec->mic_boost_enum_val = sel;
5298 if (spec->in_enum_val != REAR_LINE_IN)
5299 ca0132_alt_mic_boost_set(codec, spec->mic_boost_enum_val);
5305 * Sound BlasterX AE-5 Headphone Gain Controls.
5307 #define AE5_HEADPHONE_GAIN_MAX 3
5308 static int ae5_headphone_gain_info(struct snd_kcontrol *kcontrol,
5309 struct snd_ctl_elem_info *uinfo)
5311 char *sfx = " Ohms)";
5312 char namestr[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
5314 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5316 uinfo->value.enumerated.items = AE5_HEADPHONE_GAIN_MAX;
5317 if (uinfo->value.enumerated.item >= AE5_HEADPHONE_GAIN_MAX)
5318 uinfo->value.enumerated.item = AE5_HEADPHONE_GAIN_MAX - 1;
5319 sprintf(namestr, "%s %s",
5320 ae5_headphone_gain_presets[uinfo->value.enumerated.item].name,
5322 strcpy(uinfo->value.enumerated.name, namestr);
5326 static int ae5_headphone_gain_get(struct snd_kcontrol *kcontrol,
5327 struct snd_ctl_elem_value *ucontrol)
5329 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5330 struct ca0132_spec *spec = codec->spec;
5332 ucontrol->value.enumerated.item[0] = spec->ae5_headphone_gain_val;
5336 static int ae5_headphone_gain_put(struct snd_kcontrol *kcontrol,
5337 struct snd_ctl_elem_value *ucontrol)
5339 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5340 struct ca0132_spec *spec = codec->spec;
5341 int sel = ucontrol->value.enumerated.item[0];
5342 unsigned int items = AE5_HEADPHONE_GAIN_MAX;
5347 codec_dbg(codec, "ae5_headphone_gain: boost=%d\n",
5350 spec->ae5_headphone_gain_val = sel;
5352 if (spec->out_enum_val == HEADPHONE_OUT)
5353 ae5_headphone_gain_set(codec, spec->ae5_headphone_gain_val);
5359 * Sound BlasterX AE-5 sound filter enumerated control.
5361 #define AE5_SOUND_FILTER_MAX 3
5363 static int ae5_sound_filter_info(struct snd_kcontrol *kcontrol,
5364 struct snd_ctl_elem_info *uinfo)
5366 char namestr[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
5368 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5370 uinfo->value.enumerated.items = AE5_SOUND_FILTER_MAX;
5371 if (uinfo->value.enumerated.item >= AE5_SOUND_FILTER_MAX)
5372 uinfo->value.enumerated.item = AE5_SOUND_FILTER_MAX - 1;
5373 sprintf(namestr, "%s",
5374 ae5_filter_presets[uinfo->value.enumerated.item].name);
5375 strcpy(uinfo->value.enumerated.name, namestr);
5379 static int ae5_sound_filter_get(struct snd_kcontrol *kcontrol,
5380 struct snd_ctl_elem_value *ucontrol)
5382 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5383 struct ca0132_spec *spec = codec->spec;
5385 ucontrol->value.enumerated.item[0] = spec->ae5_filter_val;
5389 static int ae5_sound_filter_put(struct snd_kcontrol *kcontrol,
5390 struct snd_ctl_elem_value *ucontrol)
5392 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5393 struct ca0132_spec *spec = codec->spec;
5394 int sel = ucontrol->value.enumerated.item[0];
5395 unsigned int items = AE5_SOUND_FILTER_MAX;
5400 codec_dbg(codec, "ae5_sound_filter: %s\n",
5401 ae5_filter_presets[sel].name);
5403 spec->ae5_filter_val = sel;
5405 ca0113_mmio_command_set_type2(codec, 0x48, 0x07,
5406 ae5_filter_presets[sel].val);
5412 * Input Select Control for alternative ca0132 codecs. This exists because
5413 * front microphone has no auto-detect, and we need a way to set the rear
5416 static int ca0132_alt_input_source_info(struct snd_kcontrol *kcontrol,
5417 struct snd_ctl_elem_info *uinfo)
5419 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5421 uinfo->value.enumerated.items = IN_SRC_NUM_OF_INPUTS;
5422 if (uinfo->value.enumerated.item >= IN_SRC_NUM_OF_INPUTS)
5423 uinfo->value.enumerated.item = IN_SRC_NUM_OF_INPUTS - 1;
5424 strcpy(uinfo->value.enumerated.name,
5425 in_src_str[uinfo->value.enumerated.item]);
5429 static int ca0132_alt_input_source_get(struct snd_kcontrol *kcontrol,
5430 struct snd_ctl_elem_value *ucontrol)
5432 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5433 struct ca0132_spec *spec = codec->spec;
5435 ucontrol->value.enumerated.item[0] = spec->in_enum_val;
5439 static int ca0132_alt_input_source_put(struct snd_kcontrol *kcontrol,
5440 struct snd_ctl_elem_value *ucontrol)
5442 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5443 struct ca0132_spec *spec = codec->spec;
5444 int sel = ucontrol->value.enumerated.item[0];
5445 unsigned int items = IN_SRC_NUM_OF_INPUTS;
5450 codec_dbg(codec, "ca0132_alt_input_select: sel=%d, preset=%s\n",
5451 sel, in_src_str[sel]);
5453 spec->in_enum_val = sel;
5455 ca0132_alt_select_in(codec);
5460 /* Sound Blaster Z Output Select Control */
5461 static int ca0132_alt_output_select_get_info(struct snd_kcontrol *kcontrol,
5462 struct snd_ctl_elem_info *uinfo)
5464 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5466 uinfo->value.enumerated.items = NUM_OF_OUTPUTS;
5467 if (uinfo->value.enumerated.item >= NUM_OF_OUTPUTS)
5468 uinfo->value.enumerated.item = NUM_OF_OUTPUTS - 1;
5469 strcpy(uinfo->value.enumerated.name,
5470 alt_out_presets[uinfo->value.enumerated.item].name);
5474 static int ca0132_alt_output_select_get(struct snd_kcontrol *kcontrol,
5475 struct snd_ctl_elem_value *ucontrol)
5477 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5478 struct ca0132_spec *spec = codec->spec;
5480 ucontrol->value.enumerated.item[0] = spec->out_enum_val;
5484 static int ca0132_alt_output_select_put(struct snd_kcontrol *kcontrol,
5485 struct snd_ctl_elem_value *ucontrol)
5487 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5488 struct ca0132_spec *spec = codec->spec;
5489 int sel = ucontrol->value.enumerated.item[0];
5490 unsigned int items = NUM_OF_OUTPUTS;
5491 unsigned int auto_jack;
5496 codec_dbg(codec, "ca0132_alt_output_select: sel=%d, preset=%s\n",
5497 sel, alt_out_presets[sel].name);
5499 spec->out_enum_val = sel;
5501 auto_jack = spec->vnode_lswitch[VNID_HP_ASEL - VNODE_START_NID];
5504 ca0132_alt_select_out(codec);
5510 * Smart Volume output setting control. Three different settings, Normal,
5511 * which takes the value from the smart volume slider. The two others, loud
5512 * and night, disregard the slider value and have uneditable values.
5514 #define NUM_OF_SVM_SETTINGS 3
5515 static const char *const out_svm_set_enum_str[3] = {"Normal", "Loud", "Night" };
5517 static int ca0132_alt_svm_setting_info(struct snd_kcontrol *kcontrol,
5518 struct snd_ctl_elem_info *uinfo)
5520 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5522 uinfo->value.enumerated.items = NUM_OF_SVM_SETTINGS;
5523 if (uinfo->value.enumerated.item >= NUM_OF_SVM_SETTINGS)
5524 uinfo->value.enumerated.item = NUM_OF_SVM_SETTINGS - 1;
5525 strcpy(uinfo->value.enumerated.name,
5526 out_svm_set_enum_str[uinfo->value.enumerated.item]);
5530 static int ca0132_alt_svm_setting_get(struct snd_kcontrol *kcontrol,
5531 struct snd_ctl_elem_value *ucontrol)
5533 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5534 struct ca0132_spec *spec = codec->spec;
5536 ucontrol->value.enumerated.item[0] = spec->smart_volume_setting;
5540 static int ca0132_alt_svm_setting_put(struct snd_kcontrol *kcontrol,
5541 struct snd_ctl_elem_value *ucontrol)
5543 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5544 struct ca0132_spec *spec = codec->spec;
5545 int sel = ucontrol->value.enumerated.item[0];
5546 unsigned int items = NUM_OF_SVM_SETTINGS;
5547 unsigned int idx = SMART_VOLUME - EFFECT_START_NID;
5553 codec_dbg(codec, "ca0132_alt_svm_setting: sel=%d, preset=%s\n",
5554 sel, out_svm_set_enum_str[sel]);
5556 spec->smart_volume_setting = sel;
5572 /* Req 2 is the Smart Volume Setting req. */
5573 dspio_set_uint_param(codec, ca0132_effects[idx].mid,
5574 ca0132_effects[idx].reqs[2], tmp);
5578 /* Sound Blaster Z EQ preset controls */
5579 static int ca0132_alt_eq_preset_info(struct snd_kcontrol *kcontrol,
5580 struct snd_ctl_elem_info *uinfo)
5582 unsigned int items = ARRAY_SIZE(ca0132_alt_eq_presets);
5584 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5586 uinfo->value.enumerated.items = items;
5587 if (uinfo->value.enumerated.item >= items)
5588 uinfo->value.enumerated.item = items - 1;
5589 strcpy(uinfo->value.enumerated.name,
5590 ca0132_alt_eq_presets[uinfo->value.enumerated.item].name);
5594 static int ca0132_alt_eq_preset_get(struct snd_kcontrol *kcontrol,
5595 struct snd_ctl_elem_value *ucontrol)
5597 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5598 struct ca0132_spec *spec = codec->spec;
5600 ucontrol->value.enumerated.item[0] = spec->eq_preset_val;
5604 static int ca0132_alt_eq_preset_put(struct snd_kcontrol *kcontrol,
5605 struct snd_ctl_elem_value *ucontrol)
5607 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5608 struct ca0132_spec *spec = codec->spec;
5610 int sel = ucontrol->value.enumerated.item[0];
5611 unsigned int items = ARRAY_SIZE(ca0132_alt_eq_presets);
5616 codec_dbg(codec, "%s: sel=%d, preset=%s\n", __func__, sel,
5617 ca0132_alt_eq_presets[sel].name);
5620 * Default needs to qualify with CrystalVoice state.
5622 for (i = 0; i < EQ_PRESET_MAX_PARAM_COUNT; i++) {
5623 err = dspio_set_uint_param(codec, ca0132_alt_eq_enum.mid,
5624 ca0132_alt_eq_enum.reqs[i],
5625 ca0132_alt_eq_presets[sel].vals[i]);
5631 spec->eq_preset_val = sel;
5636 static int ca0132_voicefx_info(struct snd_kcontrol *kcontrol,
5637 struct snd_ctl_elem_info *uinfo)
5639 unsigned int items = ARRAY_SIZE(ca0132_voicefx_presets);
5641 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5643 uinfo->value.enumerated.items = items;
5644 if (uinfo->value.enumerated.item >= items)
5645 uinfo->value.enumerated.item = items - 1;
5646 strcpy(uinfo->value.enumerated.name,
5647 ca0132_voicefx_presets[uinfo->value.enumerated.item].name);
5651 static int ca0132_voicefx_get(struct snd_kcontrol *kcontrol,
5652 struct snd_ctl_elem_value *ucontrol)
5654 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5655 struct ca0132_spec *spec = codec->spec;
5657 ucontrol->value.enumerated.item[0] = spec->voicefx_val;
5661 static int ca0132_voicefx_put(struct snd_kcontrol *kcontrol,
5662 struct snd_ctl_elem_value *ucontrol)
5664 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5665 struct ca0132_spec *spec = codec->spec;
5667 int sel = ucontrol->value.enumerated.item[0];
5669 if (sel >= ARRAY_SIZE(ca0132_voicefx_presets))
5672 codec_dbg(codec, "ca0132_voicefx_put: sel=%d, preset=%s\n",
5673 sel, ca0132_voicefx_presets[sel].name);
5677 * Default needs to qualify with CrystalVoice state.
5679 for (i = 0; i < VOICEFX_MAX_PARAM_COUNT; i++) {
5680 err = dspio_set_uint_param(codec, ca0132_voicefx.mid,
5681 ca0132_voicefx.reqs[i],
5682 ca0132_voicefx_presets[sel].vals[i]);
5688 spec->voicefx_val = sel;
5689 /* enable voice fx */
5690 ca0132_voicefx_set(codec, (sel ? 1 : 0));
5696 static int ca0132_switch_get(struct snd_kcontrol *kcontrol,
5697 struct snd_ctl_elem_value *ucontrol)
5699 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5700 struct ca0132_spec *spec = codec->spec;
5701 hda_nid_t nid = get_amp_nid(kcontrol);
5702 int ch = get_amp_channels(kcontrol);
5703 long *valp = ucontrol->value.integer.value;
5706 if ((nid >= VNODE_START_NID) && (nid < VNODE_END_NID)) {
5708 *valp = spec->vnode_lswitch[nid - VNODE_START_NID];
5712 *valp = spec->vnode_rswitch[nid - VNODE_START_NID];
5718 /* effects, include PE and CrystalVoice */
5719 if ((nid >= EFFECT_START_NID) && (nid < EFFECT_END_NID)) {
5720 *valp = spec->effects_switch[nid - EFFECT_START_NID];
5725 if (nid == spec->input_pins[0]) {
5726 *valp = spec->cur_mic_boost;
5733 static int ca0132_switch_put(struct snd_kcontrol *kcontrol,
5734 struct snd_ctl_elem_value *ucontrol)
5736 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5737 struct ca0132_spec *spec = codec->spec;
5738 hda_nid_t nid = get_amp_nid(kcontrol);
5739 int ch = get_amp_channels(kcontrol);
5740 long *valp = ucontrol->value.integer.value;
5743 codec_dbg(codec, "ca0132_switch_put: nid=0x%x, val=%ld\n",
5746 snd_hda_power_up(codec);
5748 if ((nid >= VNODE_START_NID) && (nid < VNODE_END_NID)) {
5750 spec->vnode_lswitch[nid - VNODE_START_NID] = *valp;
5754 spec->vnode_rswitch[nid - VNODE_START_NID] = *valp;
5757 changed = ca0132_vnode_switch_set(kcontrol, ucontrol);
5762 if (nid == PLAY_ENHANCEMENT) {
5763 spec->effects_switch[nid - EFFECT_START_NID] = *valp;
5764 changed = ca0132_pe_switch_set(codec);
5769 if (nid == CRYSTAL_VOICE) {
5770 spec->effects_switch[nid - EFFECT_START_NID] = *valp;
5771 changed = ca0132_cvoice_switch_set(codec);
5775 /* out and in effects */
5776 if (((nid >= OUT_EFFECT_START_NID) && (nid < OUT_EFFECT_END_NID)) ||
5777 ((nid >= IN_EFFECT_START_NID) && (nid < IN_EFFECT_END_NID))) {
5778 spec->effects_switch[nid - EFFECT_START_NID] = *valp;
5779 changed = ca0132_effects_set(codec, nid, *valp);
5784 if (nid == spec->input_pins[0]) {
5785 spec->cur_mic_boost = *valp;
5786 if (spec->use_alt_functions) {
5787 if (spec->in_enum_val != REAR_LINE_IN)
5788 changed = ca0132_mic_boost_set(codec, *valp);
5790 /* Mic boost does not apply to Digital Mic */
5791 if (spec->cur_mic_type != DIGITAL_MIC)
5792 changed = ca0132_mic_boost_set(codec, *valp);
5798 if (nid == ZXR_HEADPHONE_GAIN) {
5799 spec->zxr_gain_set = *valp;
5800 if (spec->cur_out_type == HEADPHONE_OUT)
5801 changed = zxr_headphone_gain_set(codec, *valp);
5809 snd_hda_power_down(codec);
5817 * Sets the internal DSP decibel level to match the DAC for output, and the
5818 * ADC for input. Currently only the SBZ sets dsp capture volume level, and
5819 * all alternative codecs set DSP playback volume.
5821 static void ca0132_alt_dsp_volume_put(struct hda_codec *codec, hda_nid_t nid)
5823 struct ca0132_spec *spec = codec->spec;
5824 unsigned int dsp_dir;
5825 unsigned int lookup_val;
5827 if (nid == VNID_SPK)
5828 dsp_dir = DSP_VOL_OUT;
5830 dsp_dir = DSP_VOL_IN;
5832 lookup_val = spec->vnode_lvol[nid - VNODE_START_NID];
5834 dspio_set_uint_param(codec,
5835 ca0132_alt_vol_ctls[dsp_dir].mid,
5836 ca0132_alt_vol_ctls[dsp_dir].reqs[0],
5837 float_vol_db_lookup[lookup_val]);
5839 lookup_val = spec->vnode_rvol[nid - VNODE_START_NID];
5841 dspio_set_uint_param(codec,
5842 ca0132_alt_vol_ctls[dsp_dir].mid,
5843 ca0132_alt_vol_ctls[dsp_dir].reqs[1],
5844 float_vol_db_lookup[lookup_val]);
5846 dspio_set_uint_param(codec,
5847 ca0132_alt_vol_ctls[dsp_dir].mid,
5848 ca0132_alt_vol_ctls[dsp_dir].reqs[2], FLOAT_ZERO);
5851 static int ca0132_volume_info(struct snd_kcontrol *kcontrol,
5852 struct snd_ctl_elem_info *uinfo)
5854 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5855 struct ca0132_spec *spec = codec->spec;
5856 hda_nid_t nid = get_amp_nid(kcontrol);
5857 int ch = get_amp_channels(kcontrol);
5858 int dir = get_amp_direction(kcontrol);
5864 /* follow shared_out info */
5865 nid = spec->shared_out_nid;
5866 mutex_lock(&codec->control_mutex);
5867 pval = kcontrol->private_value;
5868 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(nid, ch, 0, dir);
5869 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
5870 kcontrol->private_value = pval;
5871 mutex_unlock(&codec->control_mutex);
5874 /* follow shared_mic info */
5875 nid = spec->shared_mic_nid;
5876 mutex_lock(&codec->control_mutex);
5877 pval = kcontrol->private_value;
5878 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(nid, ch, 0, dir);
5879 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
5880 kcontrol->private_value = pval;
5881 mutex_unlock(&codec->control_mutex);
5884 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
5889 static int ca0132_volume_get(struct snd_kcontrol *kcontrol,
5890 struct snd_ctl_elem_value *ucontrol)
5892 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5893 struct ca0132_spec *spec = codec->spec;
5894 hda_nid_t nid = get_amp_nid(kcontrol);
5895 int ch = get_amp_channels(kcontrol);
5896 long *valp = ucontrol->value.integer.value;
5898 /* store the left and right volume */
5900 *valp = spec->vnode_lvol[nid - VNODE_START_NID];
5904 *valp = spec->vnode_rvol[nid - VNODE_START_NID];
5910 static int ca0132_volume_put(struct snd_kcontrol *kcontrol,
5911 struct snd_ctl_elem_value *ucontrol)
5913 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5914 struct ca0132_spec *spec = codec->spec;
5915 hda_nid_t nid = get_amp_nid(kcontrol);
5916 int ch = get_amp_channels(kcontrol);
5917 long *valp = ucontrol->value.integer.value;
5918 hda_nid_t shared_nid = 0;
5922 /* store the left and right volume */
5924 spec->vnode_lvol[nid - VNODE_START_NID] = *valp;
5928 spec->vnode_rvol[nid - VNODE_START_NID] = *valp;
5932 /* if effective conditions, then update hw immediately. */
5933 effective = ca0132_is_vnode_effective(codec, nid, &shared_nid);
5935 int dir = get_amp_direction(kcontrol);
5938 snd_hda_power_up(codec);
5939 mutex_lock(&codec->control_mutex);
5940 pval = kcontrol->private_value;
5941 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(shared_nid, ch,
5943 changed = snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
5944 kcontrol->private_value = pval;
5945 mutex_unlock(&codec->control_mutex);
5946 snd_hda_power_down(codec);
5953 * This function is the same as the one above, because using an if statement
5954 * inside of the above volume control for the DSP volume would cause too much
5955 * lag. This is a lot more smooth.
5957 static int ca0132_alt_volume_put(struct snd_kcontrol *kcontrol,
5958 struct snd_ctl_elem_value *ucontrol)
5960 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5961 struct ca0132_spec *spec = codec->spec;
5962 hda_nid_t nid = get_amp_nid(kcontrol);
5963 int ch = get_amp_channels(kcontrol);
5964 long *valp = ucontrol->value.integer.value;
5977 /* store the left and right volume */
5979 spec->vnode_lvol[vnid - VNODE_START_NID] = *valp;
5983 spec->vnode_rvol[vnid - VNODE_START_NID] = *valp;
5987 snd_hda_power_up(codec);
5988 ca0132_alt_dsp_volume_put(codec, vnid);
5989 mutex_lock(&codec->control_mutex);
5990 changed = snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
5991 mutex_unlock(&codec->control_mutex);
5992 snd_hda_power_down(codec);
5997 static int ca0132_volume_tlv(struct snd_kcontrol *kcontrol, int op_flag,
5998 unsigned int size, unsigned int __user *tlv)
6000 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6001 struct ca0132_spec *spec = codec->spec;
6002 hda_nid_t nid = get_amp_nid(kcontrol);
6003 int ch = get_amp_channels(kcontrol);
6004 int dir = get_amp_direction(kcontrol);
6010 /* follow shared_out tlv */
6011 nid = spec->shared_out_nid;
6012 mutex_lock(&codec->control_mutex);
6013 pval = kcontrol->private_value;
6014 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(nid, ch, 0, dir);
6015 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
6016 kcontrol->private_value = pval;
6017 mutex_unlock(&codec->control_mutex);
6020 /* follow shared_mic tlv */
6021 nid = spec->shared_mic_nid;
6022 mutex_lock(&codec->control_mutex);
6023 pval = kcontrol->private_value;
6024 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(nid, ch, 0, dir);
6025 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
6026 kcontrol->private_value = pval;
6027 mutex_unlock(&codec->control_mutex);
6030 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
6035 /* Add volume slider control for effect level */
6036 static int ca0132_alt_add_effect_slider(struct hda_codec *codec, hda_nid_t nid,
6037 const char *pfx, int dir)
6039 char namestr[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
6040 int type = dir ? HDA_INPUT : HDA_OUTPUT;
6041 struct snd_kcontrol_new knew =
6042 HDA_CODEC_VOLUME_MONO(namestr, nid, 1, 0, type);
6044 sprintf(namestr, "FX: %s %s Volume", pfx, dirstr[dir]);
6050 knew.info = ca0132_alt_xbass_xover_slider_info;
6051 knew.get = ca0132_alt_xbass_xover_slider_ctl_get;
6052 knew.put = ca0132_alt_xbass_xover_slider_put;
6055 knew.info = ca0132_alt_effect_slider_info;
6056 knew.get = ca0132_alt_slider_ctl_get;
6057 knew.put = ca0132_alt_effect_slider_put;
6058 knew.private_value =
6059 HDA_COMPOSE_AMP_VAL(nid, 1, 0, type);
6063 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
6067 * Added FX: prefix for the alternative codecs, because otherwise the surround
6068 * effect would conflict with the Surround sound volume control. Also seems more
6069 * clear as to what the switches do. Left alone for others.
6071 static int add_fx_switch(struct hda_codec *codec, hda_nid_t nid,
6072 const char *pfx, int dir)
6074 struct ca0132_spec *spec = codec->spec;
6075 char namestr[SNDRV_CTL_ELEM_ID_NAME_MAXLEN];
6076 int type = dir ? HDA_INPUT : HDA_OUTPUT;
6077 struct snd_kcontrol_new knew =
6078 CA0132_CODEC_MUTE_MONO(namestr, nid, 1, type);
6079 /* If using alt_controls, add FX: prefix. But, don't add FX:
6080 * prefix to OutFX or InFX enable controls.
6082 if ((spec->use_alt_controls) && (nid <= IN_EFFECT_END_NID))
6083 sprintf(namestr, "FX: %s %s Switch", pfx, dirstr[dir]);
6085 sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]);
6087 return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec));
6090 static int add_voicefx(struct hda_codec *codec)
6092 struct snd_kcontrol_new knew =
6093 HDA_CODEC_MUTE_MONO(ca0132_voicefx.name,
6094 VOICEFX, 1, 0, HDA_INPUT);
6095 knew.info = ca0132_voicefx_info;
6096 knew.get = ca0132_voicefx_get;
6097 knew.put = ca0132_voicefx_put;
6098 return snd_hda_ctl_add(codec, VOICEFX, snd_ctl_new1(&knew, codec));
6101 /* Create the EQ Preset control */
6102 static int add_ca0132_alt_eq_presets(struct hda_codec *codec)
6104 struct snd_kcontrol_new knew =
6105 HDA_CODEC_MUTE_MONO(ca0132_alt_eq_enum.name,
6106 EQ_PRESET_ENUM, 1, 0, HDA_OUTPUT);
6107 knew.info = ca0132_alt_eq_preset_info;
6108 knew.get = ca0132_alt_eq_preset_get;
6109 knew.put = ca0132_alt_eq_preset_put;
6110 return snd_hda_ctl_add(codec, EQ_PRESET_ENUM,
6111 snd_ctl_new1(&knew, codec));
6115 * Add enumerated control for the three different settings of the smart volume
6116 * output effect. Normal just uses the slider value, and loud and night are
6117 * their own things that ignore that value.
6119 static int ca0132_alt_add_svm_enum(struct hda_codec *codec)
6121 struct snd_kcontrol_new knew =
6122 HDA_CODEC_MUTE_MONO("FX: Smart Volume Setting",
6123 SMART_VOLUME_ENUM, 1, 0, HDA_OUTPUT);
6124 knew.info = ca0132_alt_svm_setting_info;
6125 knew.get = ca0132_alt_svm_setting_get;
6126 knew.put = ca0132_alt_svm_setting_put;
6127 return snd_hda_ctl_add(codec, SMART_VOLUME_ENUM,
6128 snd_ctl_new1(&knew, codec));
6133 * Create an Output Select enumerated control for codecs with surround
6136 static int ca0132_alt_add_output_enum(struct hda_codec *codec)
6138 struct snd_kcontrol_new knew =
6139 HDA_CODEC_MUTE_MONO("Output Select",
6140 OUTPUT_SOURCE_ENUM, 1, 0, HDA_OUTPUT);
6141 knew.info = ca0132_alt_output_select_get_info;
6142 knew.get = ca0132_alt_output_select_get;
6143 knew.put = ca0132_alt_output_select_put;
6144 return snd_hda_ctl_add(codec, OUTPUT_SOURCE_ENUM,
6145 snd_ctl_new1(&knew, codec));
6149 * Create an Input Source enumerated control for the alternate ca0132 codecs
6150 * because the front microphone has no auto-detect, and Line-in has to be set
6153 static int ca0132_alt_add_input_enum(struct hda_codec *codec)
6155 struct snd_kcontrol_new knew =
6156 HDA_CODEC_MUTE_MONO("Input Source",
6157 INPUT_SOURCE_ENUM, 1, 0, HDA_INPUT);
6158 knew.info = ca0132_alt_input_source_info;
6159 knew.get = ca0132_alt_input_source_get;
6160 knew.put = ca0132_alt_input_source_put;
6161 return snd_hda_ctl_add(codec, INPUT_SOURCE_ENUM,
6162 snd_ctl_new1(&knew, codec));
6166 * Add mic boost enumerated control. Switches through 0dB to 30dB. This adds
6167 * more control than the original mic boost, which is either full 30dB or off.
6169 static int ca0132_alt_add_mic_boost_enum(struct hda_codec *codec)
6171 struct snd_kcontrol_new knew =
6172 HDA_CODEC_MUTE_MONO("Mic Boost Capture Switch",
6173 MIC_BOOST_ENUM, 1, 0, HDA_INPUT);
6174 knew.info = ca0132_alt_mic_boost_info;
6175 knew.get = ca0132_alt_mic_boost_get;
6176 knew.put = ca0132_alt_mic_boost_put;
6177 return snd_hda_ctl_add(codec, MIC_BOOST_ENUM,
6178 snd_ctl_new1(&knew, codec));
6183 * Add headphone gain enumerated control for the AE-5. This switches between
6184 * three modes, low, medium, and high. When non-headphone outputs are selected,
6185 * it is automatically set to high. This is the same behavior as Windows.
6187 static int ae5_add_headphone_gain_enum(struct hda_codec *codec)
6189 struct snd_kcontrol_new knew =
6190 HDA_CODEC_MUTE_MONO("AE-5: Headphone Gain",
6191 AE5_HEADPHONE_GAIN_ENUM, 1, 0, HDA_OUTPUT);
6192 knew.info = ae5_headphone_gain_info;
6193 knew.get = ae5_headphone_gain_get;
6194 knew.put = ae5_headphone_gain_put;
6195 return snd_hda_ctl_add(codec, AE5_HEADPHONE_GAIN_ENUM,
6196 snd_ctl_new1(&knew, codec));
6200 * Add sound filter enumerated control for the AE-5. This adds three different
6201 * settings: Slow Roll Off, Minimum Phase, and Fast Roll Off. From what I've
6202 * read into it, it changes the DAC's interpolation filter.
6204 static int ae5_add_sound_filter_enum(struct hda_codec *codec)
6206 struct snd_kcontrol_new knew =
6207 HDA_CODEC_MUTE_MONO("AE-5: Sound Filter",
6208 AE5_SOUND_FILTER_ENUM, 1, 0, HDA_OUTPUT);
6209 knew.info = ae5_sound_filter_info;
6210 knew.get = ae5_sound_filter_get;
6211 knew.put = ae5_sound_filter_put;
6212 return snd_hda_ctl_add(codec, AE5_SOUND_FILTER_ENUM,
6213 snd_ctl_new1(&knew, codec));
6216 static int zxr_add_headphone_gain_switch(struct hda_codec *codec)
6218 struct snd_kcontrol_new knew =
6219 CA0132_CODEC_MUTE_MONO("ZxR: 600 Ohm Gain",
6220 ZXR_HEADPHONE_GAIN, 1, HDA_OUTPUT);
6222 return snd_hda_ctl_add(codec, ZXR_HEADPHONE_GAIN,
6223 snd_ctl_new1(&knew, codec));
6227 * Need to create slave controls for the alternate codecs that have surround
6230 static const char * const ca0132_alt_slave_pfxs[] = {
6231 "Front", "Surround", "Center", "LFE", NULL,
6235 * Also need special channel map, because the default one is incorrect.
6236 * I think this has to do with the pin for rear surround being 0x11,
6237 * and the center/lfe being 0x10. Usually the pin order is the opposite.
6239 static const struct snd_pcm_chmap_elem ca0132_alt_chmaps[] = {
6241 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
6243 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
6244 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
6246 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
6247 SNDRV_CHMAP_FC, SNDRV_CHMAP_LFE,
6248 SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
6252 /* Add the correct chmap for streams with 6 channels. */
6253 static void ca0132_alt_add_chmap_ctls(struct hda_codec *codec)
6256 struct hda_pcm *pcm;
6258 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
6259 struct hda_pcm_stream *hinfo =
6260 &pcm->stream[SNDRV_PCM_STREAM_PLAYBACK];
6261 struct snd_pcm_chmap *chmap;
6262 const struct snd_pcm_chmap_elem *elem;
6264 elem = ca0132_alt_chmaps;
6265 if (hinfo->channels_max == 6) {
6266 err = snd_pcm_add_chmap_ctls(pcm->pcm,
6267 SNDRV_PCM_STREAM_PLAYBACK,
6268 elem, hinfo->channels_max, 0, &chmap);
6270 codec_dbg(codec, "snd_pcm_add_chmap_ctls failed!");
6276 * When changing Node IDs for Mixer Controls below, make sure to update
6277 * Node IDs in ca0132_config() as well.
6279 static const struct snd_kcontrol_new ca0132_mixer[] = {
6280 CA0132_CODEC_VOL("Master Playback Volume", VNID_SPK, HDA_OUTPUT),
6281 CA0132_CODEC_MUTE("Master Playback Switch", VNID_SPK, HDA_OUTPUT),
6282 CA0132_CODEC_VOL("Capture Volume", VNID_MIC, HDA_INPUT),
6283 CA0132_CODEC_MUTE("Capture Switch", VNID_MIC, HDA_INPUT),
6284 HDA_CODEC_VOLUME("Analog-Mic2 Capture Volume", 0x08, 0, HDA_INPUT),
6285 HDA_CODEC_MUTE("Analog-Mic2 Capture Switch", 0x08, 0, HDA_INPUT),
6286 HDA_CODEC_VOLUME("What U Hear Capture Volume", 0x0a, 0, HDA_INPUT),
6287 HDA_CODEC_MUTE("What U Hear Capture Switch", 0x0a, 0, HDA_INPUT),
6288 CA0132_CODEC_MUTE_MONO("Mic1-Boost (30dB) Capture Switch",
6289 0x12, 1, HDA_INPUT),
6290 CA0132_CODEC_MUTE_MONO("HP/Speaker Playback Switch",
6291 VNID_HP_SEL, 1, HDA_OUTPUT),
6292 CA0132_CODEC_MUTE_MONO("AMic1/DMic Capture Switch",
6293 VNID_AMIC1_SEL, 1, HDA_INPUT),
6294 CA0132_CODEC_MUTE_MONO("HP/Speaker Auto Detect Playback Switch",
6295 VNID_HP_ASEL, 1, HDA_OUTPUT),
6296 CA0132_CODEC_MUTE_MONO("AMic1/DMic Auto Detect Capture Switch",
6297 VNID_AMIC1_ASEL, 1, HDA_INPUT),
6302 * Desktop specific control mixer. Removes auto-detect for mic, and adds
6303 * surround controls. Also sets both the Front Playback and Capture Volume
6304 * controls to alt so they set the DSP's decibel level.
6306 static const struct snd_kcontrol_new desktop_mixer[] = {
6307 CA0132_ALT_CODEC_VOL("Front Playback Volume", 0x02, HDA_OUTPUT),
6308 CA0132_CODEC_MUTE("Front Playback Switch", VNID_SPK, HDA_OUTPUT),
6309 HDA_CODEC_VOLUME("Surround Playback Volume", 0x04, 0, HDA_OUTPUT),
6310 HDA_CODEC_MUTE("Surround Playback Switch", 0x04, 0, HDA_OUTPUT),
6311 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x03, 1, 0, HDA_OUTPUT),
6312 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x03, 1, 0, HDA_OUTPUT),
6313 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x03, 2, 0, HDA_OUTPUT),
6314 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x03, 2, 0, HDA_OUTPUT),
6315 CA0132_ALT_CODEC_VOL("Capture Volume", 0x07, HDA_INPUT),
6316 CA0132_CODEC_MUTE("Capture Switch", VNID_MIC, HDA_INPUT),
6317 HDA_CODEC_VOLUME("What U Hear Capture Volume", 0x0a, 0, HDA_INPUT),
6318 HDA_CODEC_MUTE("What U Hear Capture Switch", 0x0a, 0, HDA_INPUT),
6319 CA0132_CODEC_MUTE_MONO("HP/Speaker Auto Detect Playback Switch",
6320 VNID_HP_ASEL, 1, HDA_OUTPUT),
6325 * Same as the Sound Blaster Z, except doesn't use the alt volume for capture
6326 * because it doesn't set decibel levels for the DSP for capture.
6328 static const struct snd_kcontrol_new r3di_mixer[] = {
6329 CA0132_ALT_CODEC_VOL("Front Playback Volume", 0x02, HDA_OUTPUT),
6330 CA0132_CODEC_MUTE("Front Playback Switch", VNID_SPK, HDA_OUTPUT),
6331 HDA_CODEC_VOLUME("Surround Playback Volume", 0x04, 0, HDA_OUTPUT),
6332 HDA_CODEC_MUTE("Surround Playback Switch", 0x04, 0, HDA_OUTPUT),
6333 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x03, 1, 0, HDA_OUTPUT),
6334 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x03, 1, 0, HDA_OUTPUT),
6335 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x03, 2, 0, HDA_OUTPUT),
6336 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x03, 2, 0, HDA_OUTPUT),
6337 CA0132_CODEC_VOL("Capture Volume", VNID_MIC, HDA_INPUT),
6338 CA0132_CODEC_MUTE("Capture Switch", VNID_MIC, HDA_INPUT),
6339 HDA_CODEC_VOLUME("What U Hear Capture Volume", 0x0a, 0, HDA_INPUT),
6340 HDA_CODEC_MUTE("What U Hear Capture Switch", 0x0a, 0, HDA_INPUT),
6341 CA0132_CODEC_MUTE_MONO("HP/Speaker Auto Detect Playback Switch",
6342 VNID_HP_ASEL, 1, HDA_OUTPUT),
6346 static int ca0132_build_controls(struct hda_codec *codec)
6348 struct ca0132_spec *spec = codec->spec;
6349 int i, num_fx, num_sliders;
6352 /* Add Mixer controls */
6353 for (i = 0; i < spec->num_mixers; i++) {
6354 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
6358 /* Setup vmaster with surround slaves for desktop ca0132 devices */
6359 if (spec->use_alt_functions) {
6360 snd_hda_set_vmaster_tlv(codec, spec->dacs[0], HDA_OUTPUT,
6362 snd_hda_add_vmaster(codec, "Master Playback Volume",
6363 spec->tlv, ca0132_alt_slave_pfxs,
6365 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
6366 NULL, ca0132_alt_slave_pfxs,
6368 true, &spec->vmaster_mute.sw_kctl);
6373 /* Add in and out effects controls.
6374 * VoiceFX, PE and CrystalVoice are added separately.
6376 num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT;
6377 for (i = 0; i < num_fx; i++) {
6378 /* Desktop cards break if Echo Cancellation is used. */
6379 if (spec->use_pci_mmio) {
6380 if (i == (ECHO_CANCELLATION - IN_EFFECT_START_NID +
6385 err = add_fx_switch(codec, ca0132_effects[i].nid,
6386 ca0132_effects[i].name,
6387 ca0132_effects[i].direct);
6392 * If codec has use_alt_controls set to true, add effect level sliders,
6393 * EQ presets, and Smart Volume presets. Also, change names to add FX
6394 * prefix, and change PlayEnhancement and CrystalVoice to match.
6396 if (spec->use_alt_controls) {
6397 err = ca0132_alt_add_svm_enum(codec);
6401 err = add_ca0132_alt_eq_presets(codec);
6405 err = add_fx_switch(codec, PLAY_ENHANCEMENT,
6410 err = add_fx_switch(codec, CRYSTAL_VOICE,
6415 num_sliders = OUT_EFFECTS_COUNT - 1;
6416 for (i = 0; i < num_sliders; i++) {
6417 err = ca0132_alt_add_effect_slider(codec,
6418 ca0132_effects[i].nid,
6419 ca0132_effects[i].name,
6420 ca0132_effects[i].direct);
6425 err = ca0132_alt_add_effect_slider(codec, XBASS_XOVER,
6426 "X-Bass Crossover", EFX_DIR_OUT);
6431 err = add_fx_switch(codec, PLAY_ENHANCEMENT,
6432 "PlayEnhancement", 0);
6436 err = add_fx_switch(codec, CRYSTAL_VOICE,
6441 err = add_voicefx(codec);
6446 * If the codec uses alt_functions, you need the enumerated controls
6447 * to select the new outputs and inputs, plus add the new mic boost
6450 if (spec->use_alt_functions) {
6451 err = ca0132_alt_add_output_enum(codec);
6454 err = ca0132_alt_add_mic_boost_enum(codec);
6458 * ZxR only has microphone input, there is no front panel
6459 * header on the card, and aux-in is handled by the DBPro board.
6461 if (spec->quirk != QUIRK_ZXR) {
6462 err = ca0132_alt_add_input_enum(codec);
6468 if (spec->quirk == QUIRK_AE5) {
6469 err = ae5_add_headphone_gain_enum(codec);
6472 err = ae5_add_sound_filter_enum(codec);
6477 if (spec->quirk == QUIRK_ZXR) {
6478 err = zxr_add_headphone_gain_switch(codec);
6482 #ifdef ENABLE_TUNING_CONTROLS
6483 add_tuning_ctls(codec);
6486 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
6490 if (spec->dig_out) {
6491 err = snd_hda_create_spdif_out_ctls(codec, spec->dig_out,
6495 err = snd_hda_create_spdif_share_sw(codec, &spec->multiout);
6498 /* spec->multiout.share_spdif = 1; */
6502 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in);
6507 if (spec->use_alt_functions)
6508 ca0132_alt_add_chmap_ctls(codec);
6513 static int dbpro_build_controls(struct hda_codec *codec)
6515 struct ca0132_spec *spec = codec->spec;
6518 if (spec->dig_out) {
6519 err = snd_hda_create_spdif_out_ctls(codec, spec->dig_out,
6526 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in);
6537 static const struct hda_pcm_stream ca0132_pcm_analog_playback = {
6542 .prepare = ca0132_playback_pcm_prepare,
6543 .cleanup = ca0132_playback_pcm_cleanup,
6544 .get_delay = ca0132_playback_pcm_delay,
6548 static const struct hda_pcm_stream ca0132_pcm_analog_capture = {
6553 .prepare = ca0132_capture_pcm_prepare,
6554 .cleanup = ca0132_capture_pcm_cleanup,
6555 .get_delay = ca0132_capture_pcm_delay,
6559 static const struct hda_pcm_stream ca0132_pcm_digital_playback = {
6564 .open = ca0132_dig_playback_pcm_open,
6565 .close = ca0132_dig_playback_pcm_close,
6566 .prepare = ca0132_dig_playback_pcm_prepare,
6567 .cleanup = ca0132_dig_playback_pcm_cleanup
6571 static const struct hda_pcm_stream ca0132_pcm_digital_capture = {
6577 static int ca0132_build_pcms(struct hda_codec *codec)
6579 struct ca0132_spec *spec = codec->spec;
6580 struct hda_pcm *info;
6582 info = snd_hda_codec_pcm_new(codec, "CA0132 Analog");
6585 if (spec->use_alt_functions) {
6586 info->own_chmap = true;
6587 info->stream[SNDRV_PCM_STREAM_PLAYBACK].chmap
6588 = ca0132_alt_chmaps;
6590 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ca0132_pcm_analog_playback;
6591 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dacs[0];
6592 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
6593 spec->multiout.max_channels;
6594 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ca0132_pcm_analog_capture;
6595 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = 1;
6596 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adcs[0];
6598 /* With the DSP enabled, desktops don't use this ADC. */
6599 if (!spec->use_alt_functions) {
6600 info = snd_hda_codec_pcm_new(codec, "CA0132 Analog Mic-In2");
6603 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
6604 ca0132_pcm_analog_capture;
6605 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = 1;
6606 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adcs[1];
6609 info = snd_hda_codec_pcm_new(codec, "CA0132 What U Hear");
6612 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ca0132_pcm_analog_capture;
6613 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = 1;
6614 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adcs[2];
6616 if (!spec->dig_out && !spec->dig_in)
6619 info = snd_hda_codec_pcm_new(codec, "CA0132 Digital");
6622 info->pcm_type = HDA_PCM_TYPE_SPDIF;
6623 if (spec->dig_out) {
6624 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
6625 ca0132_pcm_digital_playback;
6626 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dig_out;
6629 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
6630 ca0132_pcm_digital_capture;
6631 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in;
6637 static int dbpro_build_pcms(struct hda_codec *codec)
6639 struct ca0132_spec *spec = codec->spec;
6640 struct hda_pcm *info;
6642 info = snd_hda_codec_pcm_new(codec, "CA0132 Alt Analog");
6645 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ca0132_pcm_analog_capture;
6646 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = 1;
6647 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adcs[0];
6650 if (!spec->dig_out && !spec->dig_in)
6653 info = snd_hda_codec_pcm_new(codec, "CA0132 Digital");
6656 info->pcm_type = HDA_PCM_TYPE_SPDIF;
6657 if (spec->dig_out) {
6658 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
6659 ca0132_pcm_digital_playback;
6660 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->dig_out;
6663 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
6664 ca0132_pcm_digital_capture;
6665 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in;
6671 static void init_output(struct hda_codec *codec, hda_nid_t pin, hda_nid_t dac)
6674 snd_hda_set_pin_ctl(codec, pin, PIN_HP);
6675 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
6676 snd_hda_codec_write(codec, pin, 0,
6677 AC_VERB_SET_AMP_GAIN_MUTE,
6680 if (dac && (get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
6681 snd_hda_codec_write(codec, dac, 0,
6682 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO);
6685 static void init_input(struct hda_codec *codec, hda_nid_t pin, hda_nid_t adc)
6688 snd_hda_set_pin_ctl(codec, pin, PIN_VREF80);
6689 if (get_wcaps(codec, pin) & AC_WCAP_IN_AMP)
6690 snd_hda_codec_write(codec, pin, 0,
6691 AC_VERB_SET_AMP_GAIN_MUTE,
6694 if (adc && (get_wcaps(codec, adc) & AC_WCAP_IN_AMP)) {
6695 snd_hda_codec_write(codec, adc, 0, AC_VERB_SET_AMP_GAIN_MUTE,
6698 /* init to 0 dB and unmute. */
6699 snd_hda_codec_amp_stereo(codec, adc, HDA_INPUT, 0,
6700 HDA_AMP_VOLMASK, 0x5a);
6701 snd_hda_codec_amp_stereo(codec, adc, HDA_INPUT, 0,
6706 static void refresh_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir)
6710 caps = snd_hda_param_read(codec, nid, dir == HDA_OUTPUT ?
6711 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
6712 snd_hda_override_amp_caps(codec, nid, dir, caps);
6716 * Switch between Digital built-in mic and analog mic.
6718 static void ca0132_set_dmic(struct hda_codec *codec, int enable)
6720 struct ca0132_spec *spec = codec->spec;
6723 unsigned int oldval;
6725 codec_dbg(codec, "ca0132_set_dmic: enable=%d\n", enable);
6727 oldval = stop_mic1(codec);
6728 ca0132_set_vipsource(codec, 0);
6730 /* set DMic input as 2-ch */
6732 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
6734 val = spec->dmic_ctl;
6736 snd_hda_codec_write(codec, spec->input_pins[0], 0,
6737 VENDOR_CHIPIO_DMIC_CTL_SET, val);
6739 if (!(spec->dmic_ctl & 0x20))
6740 chipio_set_control_flag(codec, CONTROL_FLAG_DMIC, 1);
6742 /* set AMic input as mono */
6744 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
6746 val = spec->dmic_ctl;
6747 /* clear bit7 and bit5 to disable dmic */
6749 snd_hda_codec_write(codec, spec->input_pins[0], 0,
6750 VENDOR_CHIPIO_DMIC_CTL_SET, val);
6752 if (!(spec->dmic_ctl & 0x20))
6753 chipio_set_control_flag(codec, CONTROL_FLAG_DMIC, 0);
6755 ca0132_set_vipsource(codec, 1);
6756 resume_mic1(codec, oldval);
6760 * Initialization for Digital Mic.
6762 static void ca0132_init_dmic(struct hda_codec *codec)
6764 struct ca0132_spec *spec = codec->spec;
6767 /* Setup Digital Mic here, but don't enable.
6768 * Enable based on jack detect.
6771 /* MCLK uses MPIO1, set to enable.
6772 * Bit 2-0: MPIO select
6773 * Bit 3: set to disable
6777 snd_hda_codec_write(codec, spec->input_pins[0], 0,
6778 VENDOR_CHIPIO_DMIC_MCLK_SET, val);
6780 /* Data1 uses MPIO3. Data2 not use
6781 * Bit 2-0: Data1 MPIO select
6782 * Bit 3: set disable Data1
6783 * Bit 6-4: Data2 MPIO select
6784 * Bit 7: set disable Data2
6787 snd_hda_codec_write(codec, spec->input_pins[0], 0,
6788 VENDOR_CHIPIO_DMIC_PIN_SET, val);
6790 /* Use Ch-0 and Ch-1. Rate is 48K, mode 1. Disable DMic first.
6791 * Bit 3-0: Channel mask
6792 * Bit 4: set for 48KHz, clear for 32KHz
6794 * Bit 6: set to select Data2, clear for Data1
6795 * Bit 7: set to enable DMic, clear for AMic
6797 if (spec->quirk == QUIRK_ALIENWARE_M17XR4)
6801 /* keep a copy of dmic ctl val for enable/disable dmic purpuse */
6802 spec->dmic_ctl = val;
6803 snd_hda_codec_write(codec, spec->input_pins[0], 0,
6804 VENDOR_CHIPIO_DMIC_CTL_SET, val);
6808 * Initialization for Analog Mic 2
6810 static void ca0132_init_analog_mic2(struct hda_codec *codec)
6812 struct ca0132_spec *spec = codec->spec;
6814 mutex_lock(&spec->chipio_mutex);
6815 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
6816 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x20);
6817 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
6818 VENDOR_CHIPIO_8051_ADDRESS_HIGH, 0x19);
6819 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
6820 VENDOR_CHIPIO_8051_DATA_WRITE, 0x00);
6821 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
6822 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x2D);
6823 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
6824 VENDOR_CHIPIO_8051_ADDRESS_HIGH, 0x19);
6825 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
6826 VENDOR_CHIPIO_8051_DATA_WRITE, 0x00);
6827 mutex_unlock(&spec->chipio_mutex);
6830 static void ca0132_refresh_widget_caps(struct hda_codec *codec)
6832 struct ca0132_spec *spec = codec->spec;
6835 codec_dbg(codec, "ca0132_refresh_widget_caps.\n");
6836 snd_hda_codec_update_widgets(codec);
6838 for (i = 0; i < spec->multiout.num_dacs; i++)
6839 refresh_amp_caps(codec, spec->dacs[i], HDA_OUTPUT);
6841 for (i = 0; i < spec->num_outputs; i++)
6842 refresh_amp_caps(codec, spec->out_pins[i], HDA_OUTPUT);
6844 for (i = 0; i < spec->num_inputs; i++) {
6845 refresh_amp_caps(codec, spec->adcs[i], HDA_INPUT);
6846 refresh_amp_caps(codec, spec->input_pins[i], HDA_INPUT);
6851 * Creates a dummy stream to bind the output to. This seems to have to be done
6852 * after changing the main outputs source and destination streams.
6854 static void ca0132_alt_create_dummy_stream(struct hda_codec *codec)
6856 struct ca0132_spec *spec = codec->spec;
6857 unsigned int stream_format;
6859 stream_format = snd_hdac_calc_stream_format(48000, 2,
6860 SNDRV_PCM_FORMAT_S32_LE, 32, 0);
6862 snd_hda_codec_setup_stream(codec, spec->dacs[0], spec->dsp_stream_id,
6865 snd_hda_codec_cleanup_stream(codec, spec->dacs[0]);
6869 * Initialize mic for non-chromebook ca0132 implementations.
6871 static void ca0132_alt_init_analog_mics(struct hda_codec *codec)
6873 struct ca0132_spec *spec = codec->spec;
6877 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
6878 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
6879 if (spec->quirk == QUIRK_R3DI) {
6880 chipio_set_conn_rate(codec, 0x0F, SR_96_000);
6884 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
6886 /* Mic 2 setup (not present on desktop cards) */
6887 chipio_set_conn_rate(codec, MEM_CONNID_MICIN2, SR_96_000);
6888 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT2, SR_96_000);
6889 if (spec->quirk == QUIRK_R3DI)
6890 chipio_set_conn_rate(codec, 0x0F, SR_96_000);
6892 dspio_set_uint_param(codec, 0x80, 0x01, tmp);
6896 * Sets the source of stream 0x14 to connpointID 0x48, and the destination
6897 * connpointID to 0x91. If this isn't done, the destination is 0x71, and
6898 * you get no sound. I'm guessing this has to do with the Sound Blaster Z
6899 * having an updated DAC, which changes the destination to that DAC.
6901 static void sbz_connect_streams(struct hda_codec *codec)
6903 struct ca0132_spec *spec = codec->spec;
6905 mutex_lock(&spec->chipio_mutex);
6907 codec_dbg(codec, "Connect Streams entered, mutex locked and loaded.\n");
6909 chipio_set_stream_channels(codec, 0x0C, 6);
6910 chipio_set_stream_control(codec, 0x0C, 1);
6912 /* This value is 0x43 for 96khz, and 0x83 for 192khz. */
6913 chipio_write_no_mutex(codec, 0x18a020, 0x00000043);
6915 /* Setup stream 0x14 with it's source and destination points */
6916 chipio_set_stream_source_dest(codec, 0x14, 0x48, 0x91);
6917 chipio_set_conn_rate_no_mutex(codec, 0x48, SR_96_000);
6918 chipio_set_conn_rate_no_mutex(codec, 0x91, SR_96_000);
6919 chipio_set_stream_channels(codec, 0x14, 2);
6920 chipio_set_stream_control(codec, 0x14, 1);
6922 codec_dbg(codec, "Connect Streams exited, mutex released.\n");
6924 mutex_unlock(&spec->chipio_mutex);
6928 * Write data through ChipIO to setup proper stream destinations.
6929 * Not sure how it exactly works, but it seems to direct data
6930 * to different destinations. Example is f8 to c0, e0 to c0.
6931 * All I know is, if you don't set these, you get no sound.
6933 static void sbz_chipio_startup_data(struct hda_codec *codec)
6935 struct ca0132_spec *spec = codec->spec;
6937 mutex_lock(&spec->chipio_mutex);
6938 codec_dbg(codec, "Startup Data entered, mutex locked and loaded.\n");
6940 /* These control audio output */
6941 chipio_write_no_mutex(codec, 0x190060, 0x0001f8c0);
6942 chipio_write_no_mutex(codec, 0x190064, 0x0001f9c1);
6943 chipio_write_no_mutex(codec, 0x190068, 0x0001fac6);
6944 chipio_write_no_mutex(codec, 0x19006c, 0x0001fbc7);
6945 /* Signal to update I think */
6946 chipio_write_no_mutex(codec, 0x19042c, 0x00000001);
6948 chipio_set_stream_channels(codec, 0x0C, 6);
6949 chipio_set_stream_control(codec, 0x0C, 1);
6950 /* No clue what these control */
6951 if (spec->quirk == QUIRK_SBZ) {
6952 chipio_write_no_mutex(codec, 0x190030, 0x0001e0c0);
6953 chipio_write_no_mutex(codec, 0x190034, 0x0001e1c1);
6954 chipio_write_no_mutex(codec, 0x190038, 0x0001e4c2);
6955 chipio_write_no_mutex(codec, 0x19003c, 0x0001e5c3);
6956 chipio_write_no_mutex(codec, 0x190040, 0x0001e2c4);
6957 chipio_write_no_mutex(codec, 0x190044, 0x0001e3c5);
6958 chipio_write_no_mutex(codec, 0x190048, 0x0001e8c6);
6959 chipio_write_no_mutex(codec, 0x19004c, 0x0001e9c7);
6960 chipio_write_no_mutex(codec, 0x190050, 0x0001ecc8);
6961 chipio_write_no_mutex(codec, 0x190054, 0x0001edc9);
6962 chipio_write_no_mutex(codec, 0x190058, 0x0001eaca);
6963 chipio_write_no_mutex(codec, 0x19005c, 0x0001ebcb);
6964 } else if (spec->quirk == QUIRK_ZXR) {
6965 chipio_write_no_mutex(codec, 0x190038, 0x000140c2);
6966 chipio_write_no_mutex(codec, 0x19003c, 0x000141c3);
6967 chipio_write_no_mutex(codec, 0x190040, 0x000150c4);
6968 chipio_write_no_mutex(codec, 0x190044, 0x000151c5);
6969 chipio_write_no_mutex(codec, 0x190050, 0x000142c8);
6970 chipio_write_no_mutex(codec, 0x190054, 0x000143c9);
6971 chipio_write_no_mutex(codec, 0x190058, 0x000152ca);
6972 chipio_write_no_mutex(codec, 0x19005c, 0x000153cb);
6974 chipio_write_no_mutex(codec, 0x19042c, 0x00000001);
6976 codec_dbg(codec, "Startup Data exited, mutex released.\n");
6977 mutex_unlock(&spec->chipio_mutex);
6981 * Custom DSP SCP commands where the src value is 0x00 instead of 0x20. This is
6982 * done after the DSP is loaded.
6984 static void ca0132_alt_dsp_scp_startup(struct hda_codec *codec)
6986 struct ca0132_spec *spec = codec->spec;
6987 unsigned int tmp, i;
6990 * Gotta run these twice, or else mic works inconsistently. Not clear
6991 * why this is, but multiple tests have confirmed it.
6993 for (i = 0; i < 2; i++) {
6994 switch (spec->quirk) {
6998 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7000 dspio_set_uint_param_no_source(codec, 0x80, 0x0A, tmp);
7002 dspio_set_uint_param_no_source(codec, 0x80, 0x0B, tmp);
7004 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7006 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7008 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7013 dspio_set_uint_param_no_source(codec, 0x80, 0x0A, tmp);
7015 dspio_set_uint_param_no_source(codec, 0x80, 0x0B, tmp);
7017 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7019 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7021 dspio_set_uint_param_no_source(codec, 0x80, 0x0C, tmp);
7028 static void ca0132_alt_dsp_initial_mic_setup(struct hda_codec *codec)
7030 struct ca0132_spec *spec = codec->spec;
7033 chipio_set_stream_control(codec, 0x03, 0);
7034 chipio_set_stream_control(codec, 0x04, 0);
7036 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
7037 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
7040 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
7042 chipio_set_stream_control(codec, 0x03, 1);
7043 chipio_set_stream_control(codec, 0x04, 1);
7045 switch (spec->quirk) {
7047 chipio_write(codec, 0x18b098, 0x0000000c);
7048 chipio_write(codec, 0x18b09C, 0x0000000c);
7051 chipio_write(codec, 0x18b098, 0x0000000c);
7052 chipio_write(codec, 0x18b09c, 0x0000004c);
7057 static void ae5_post_dsp_register_set(struct hda_codec *codec)
7059 struct ca0132_spec *spec = codec->spec;
7061 chipio_8051_write_direct(codec, 0x93, 0x10);
7062 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7063 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x44);
7064 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7065 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xc2);
7067 writeb(0xff, spec->mem_base + 0x304);
7068 writeb(0xff, spec->mem_base + 0x304);
7069 writeb(0xff, spec->mem_base + 0x304);
7070 writeb(0xff, spec->mem_base + 0x304);
7071 writeb(0x00, spec->mem_base + 0x100);
7072 writeb(0xff, spec->mem_base + 0x304);
7073 writeb(0x00, spec->mem_base + 0x100);
7074 writeb(0xff, spec->mem_base + 0x304);
7075 writeb(0x00, spec->mem_base + 0x100);
7076 writeb(0xff, spec->mem_base + 0x304);
7077 writeb(0x00, spec->mem_base + 0x100);
7078 writeb(0xff, spec->mem_base + 0x304);
7080 ca0113_mmio_command_set(codec, 0x30, 0x2b, 0x3f);
7081 ca0113_mmio_command_set(codec, 0x30, 0x2d, 0x3f);
7082 ca0113_mmio_command_set(codec, 0x48, 0x07, 0x83);
7085 static void ae5_post_dsp_param_setup(struct hda_codec *codec)
7088 * Param3 in the 8051's memory is represented by the ascii string 'mch'
7089 * which seems to be 'multichannel'. This is also mentioned in the
7090 * AE-5's registry values in Windows.
7092 chipio_set_control_param(codec, 3, 0);
7094 * I believe ASI is 'audio serial interface' and that it's used to
7095 * change colors on the external LED strip connected to the AE-5.
7097 chipio_set_control_flag(codec, CONTROL_FLAG_ASI_96KHZ, 1);
7099 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0, 0x724, 0x83);
7100 chipio_set_control_param(codec, CONTROL_PARAM_ASI, 0);
7102 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7103 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x92);
7104 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7105 VENDOR_CHIPIO_8051_ADDRESS_HIGH, 0xfa);
7106 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7107 VENDOR_CHIPIO_8051_DATA_WRITE, 0x22);
7110 static void ae5_post_dsp_pll_setup(struct hda_codec *codec)
7112 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7113 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x41);
7114 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7115 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xc8);
7117 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7118 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x45);
7119 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7120 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xcc);
7122 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7123 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x40);
7124 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7125 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xcb);
7127 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7128 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x43);
7129 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7130 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xc7);
7132 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7133 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x51);
7134 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7135 VENDOR_CHIPIO_PLL_PMU_WRITE, 0x8d);
7138 static void ae5_post_dsp_stream_setup(struct hda_codec *codec)
7140 struct ca0132_spec *spec = codec->spec;
7142 mutex_lock(&spec->chipio_mutex);
7144 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0, 0x725, 0x81);
7146 chipio_set_conn_rate_no_mutex(codec, 0x70, SR_96_000);
7148 chipio_set_stream_channels(codec, 0x0C, 6);
7149 chipio_set_stream_control(codec, 0x0C, 1);
7151 chipio_set_stream_source_dest(codec, 0x5, 0x43, 0x0);
7153 chipio_set_stream_source_dest(codec, 0x18, 0x9, 0xd0);
7154 chipio_set_conn_rate_no_mutex(codec, 0xd0, SR_96_000);
7155 chipio_set_stream_channels(codec, 0x18, 6);
7156 chipio_set_stream_control(codec, 0x18, 1);
7158 chipio_set_control_param_no_mutex(codec, CONTROL_PARAM_ASI, 4);
7160 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7161 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x43);
7162 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
7163 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xc7);
7165 ca0113_mmio_command_set(codec, 0x48, 0x01, 0x80);
7167 mutex_unlock(&spec->chipio_mutex);
7170 static void ae5_post_dsp_startup_data(struct hda_codec *codec)
7172 struct ca0132_spec *spec = codec->spec;
7174 mutex_lock(&spec->chipio_mutex);
7176 chipio_write_no_mutex(codec, 0x189000, 0x0001f101);
7177 chipio_write_no_mutex(codec, 0x189004, 0x0001f101);
7178 chipio_write_no_mutex(codec, 0x189024, 0x00014004);
7179 chipio_write_no_mutex(codec, 0x189028, 0x0002000f);
7181 ca0113_mmio_command_set(codec, 0x48, 0x0a, 0x05);
7182 chipio_set_control_param_no_mutex(codec, CONTROL_PARAM_ASI, 7);
7183 ca0113_mmio_command_set(codec, 0x48, 0x0b, 0x12);
7184 ca0113_mmio_command_set(codec, 0x48, 0x04, 0x00);
7185 ca0113_mmio_command_set(codec, 0x48, 0x06, 0x48);
7186 ca0113_mmio_command_set(codec, 0x48, 0x0a, 0x05);
7187 ca0113_mmio_command_set(codec, 0x48, 0x07, 0x83);
7188 ca0113_mmio_command_set(codec, 0x48, 0x0f, 0x00);
7189 ca0113_mmio_command_set(codec, 0x48, 0x10, 0x00);
7190 ca0113_mmio_gpio_set(codec, 0, true);
7191 ca0113_mmio_gpio_set(codec, 1, true);
7192 ca0113_mmio_command_set(codec, 0x48, 0x07, 0x80);
7194 chipio_write_no_mutex(codec, 0x18b03c, 0x00000012);
7196 ca0113_mmio_command_set(codec, 0x48, 0x0f, 0x00);
7197 ca0113_mmio_command_set(codec, 0x48, 0x10, 0x00);
7199 mutex_unlock(&spec->chipio_mutex);
7203 * Setup default parameters for DSP
7205 static void ca0132_setup_defaults(struct hda_codec *codec)
7207 struct ca0132_spec *spec = codec->spec;
7212 if (spec->dsp_state != DSP_DOWNLOADED)
7215 /* out, in effects + voicefx */
7216 num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT + 1;
7217 for (idx = 0; idx < num_fx; idx++) {
7218 for (i = 0; i <= ca0132_effects[idx].params; i++) {
7219 dspio_set_uint_param(codec, ca0132_effects[idx].mid,
7220 ca0132_effects[idx].reqs[i],
7221 ca0132_effects[idx].def_vals[i]);
7225 /*remove DSP headroom*/
7227 dspio_set_uint_param(codec, 0x96, 0x3C, tmp);
7229 /*set speaker EQ bypass attenuation*/
7230 dspio_set_uint_param(codec, 0x8f, 0x01, tmp);
7232 /* set AMic1 and AMic2 as mono mic */
7234 dspio_set_uint_param(codec, 0x80, 0x00, tmp);
7235 dspio_set_uint_param(codec, 0x80, 0x01, tmp);
7237 /* set AMic1 as CrystalVoice input */
7239 dspio_set_uint_param(codec, 0x80, 0x05, tmp);
7241 /* set WUH source */
7243 dspio_set_uint_param(codec, 0x31, 0x00, tmp);
7247 * Setup default parameters for Recon3D/Recon3Di DSP.
7250 static void r3d_setup_defaults(struct hda_codec *codec)
7252 struct ca0132_spec *spec = codec->spec;
7257 if (spec->dsp_state != DSP_DOWNLOADED)
7260 ca0132_alt_dsp_scp_startup(codec);
7261 ca0132_alt_init_analog_mics(codec);
7263 /*remove DSP headroom*/
7265 dspio_set_uint_param(codec, 0x96, 0x3C, tmp);
7267 /* set WUH source */
7269 dspio_set_uint_param(codec, 0x31, 0x00, tmp);
7270 chipio_set_conn_rate(codec, MEM_CONNID_WUH, SR_48_000);
7272 /* Set speaker source? */
7273 dspio_set_uint_param(codec, 0x32, 0x00, tmp);
7275 if (spec->quirk == QUIRK_R3DI)
7276 r3di_gpio_dsp_status_set(codec, R3DI_DSP_DOWNLOADED);
7278 /* Setup effect defaults */
7279 num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT + 1;
7280 for (idx = 0; idx < num_fx; idx++) {
7281 for (i = 0; i <= ca0132_effects[idx].params; i++) {
7282 dspio_set_uint_param(codec,
7283 ca0132_effects[idx].mid,
7284 ca0132_effects[idx].reqs[i],
7285 ca0132_effects[idx].def_vals[i]);
7291 * Setup default parameters for the Sound Blaster Z DSP. A lot more going on
7292 * than the Chromebook setup.
7294 static void sbz_setup_defaults(struct hda_codec *codec)
7296 struct ca0132_spec *spec = codec->spec;
7301 if (spec->dsp_state != DSP_DOWNLOADED)
7304 ca0132_alt_dsp_scp_startup(codec);
7305 ca0132_alt_init_analog_mics(codec);
7306 sbz_connect_streams(codec);
7307 sbz_chipio_startup_data(codec);
7309 chipio_set_stream_control(codec, 0x03, 1);
7310 chipio_set_stream_control(codec, 0x04, 1);
7313 * Sets internal input loopback to off, used to have a switch to
7314 * enable input loopback, but turned out to be way too buggy.
7317 dspio_set_uint_param(codec, 0x37, 0x08, tmp);
7318 dspio_set_uint_param(codec, 0x37, 0x10, tmp);
7320 /*remove DSP headroom*/
7322 dspio_set_uint_param(codec, 0x96, 0x3C, tmp);
7324 /* set WUH source */
7326 dspio_set_uint_param(codec, 0x31, 0x00, tmp);
7327 chipio_set_conn_rate(codec, MEM_CONNID_WUH, SR_48_000);
7329 /* Set speaker source? */
7330 dspio_set_uint_param(codec, 0x32, 0x00, tmp);
7332 ca0132_alt_dsp_initial_mic_setup(codec);
7334 /* out, in effects + voicefx */
7335 num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT + 1;
7336 for (idx = 0; idx < num_fx; idx++) {
7337 for (i = 0; i <= ca0132_effects[idx].params; i++) {
7338 dspio_set_uint_param(codec,
7339 ca0132_effects[idx].mid,
7340 ca0132_effects[idx].reqs[i],
7341 ca0132_effects[idx].def_vals[i]);
7345 ca0132_alt_create_dummy_stream(codec);
7349 * Setup default parameters for the Sound BlasterX AE-5 DSP.
7351 static void ae5_setup_defaults(struct hda_codec *codec)
7353 struct ca0132_spec *spec = codec->spec;
7358 if (spec->dsp_state != DSP_DOWNLOADED)
7361 ca0132_alt_dsp_scp_startup(codec);
7362 ca0132_alt_init_analog_mics(codec);
7363 chipio_set_stream_control(codec, 0x03, 1);
7364 chipio_set_stream_control(codec, 0x04, 1);
7366 /* New, unknown SCP req's */
7368 dspio_set_uint_param(codec, 0x96, 0x29, tmp);
7369 dspio_set_uint_param(codec, 0x96, 0x2a, tmp);
7370 dspio_set_uint_param(codec, 0x80, 0x0d, tmp);
7371 dspio_set_uint_param(codec, 0x80, 0x0e, tmp);
7373 ca0113_mmio_command_set(codec, 0x30, 0x2e, 0x3f);
7374 ca0113_mmio_gpio_set(codec, 0, false);
7375 ca0113_mmio_command_set(codec, 0x30, 0x28, 0x00);
7377 /* Internal loopback off */
7379 dspio_set_uint_param(codec, 0x37, 0x08, tmp);
7380 dspio_set_uint_param(codec, 0x37, 0x10, tmp);
7382 /*remove DSP headroom*/
7384 dspio_set_uint_param(codec, 0x96, 0x3C, tmp);
7386 /* set WUH source */
7388 dspio_set_uint_param(codec, 0x31, 0x00, tmp);
7389 chipio_set_conn_rate(codec, MEM_CONNID_WUH, SR_48_000);
7391 /* Set speaker source? */
7392 dspio_set_uint_param(codec, 0x32, 0x00, tmp);
7394 ca0132_alt_dsp_initial_mic_setup(codec);
7395 ae5_post_dsp_register_set(codec);
7396 ae5_post_dsp_param_setup(codec);
7397 ae5_post_dsp_pll_setup(codec);
7398 ae5_post_dsp_stream_setup(codec);
7399 ae5_post_dsp_startup_data(codec);
7401 /* out, in effects + voicefx */
7402 num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT + 1;
7403 for (idx = 0; idx < num_fx; idx++) {
7404 for (i = 0; i <= ca0132_effects[idx].params; i++) {
7405 dspio_set_uint_param(codec,
7406 ca0132_effects[idx].mid,
7407 ca0132_effects[idx].reqs[i],
7408 ca0132_effects[idx].def_vals[i]);
7412 ca0132_alt_create_dummy_stream(codec);
7416 * Initialization of flags in chip
7418 static void ca0132_init_flags(struct hda_codec *codec)
7420 struct ca0132_spec *spec = codec->spec;
7422 if (spec->use_alt_functions) {
7423 chipio_set_control_flag(codec, CONTROL_FLAG_DSP_96KHZ, 1);
7424 chipio_set_control_flag(codec, CONTROL_FLAG_DAC_96KHZ, 1);
7425 chipio_set_control_flag(codec, CONTROL_FLAG_ADC_B_96KHZ, 1);
7426 chipio_set_control_flag(codec, CONTROL_FLAG_ADC_C_96KHZ, 1);
7427 chipio_set_control_flag(codec, CONTROL_FLAG_SRC_RATE_96KHZ, 1);
7428 chipio_set_control_flag(codec, CONTROL_FLAG_IDLE_ENABLE, 0);
7429 chipio_set_control_flag(codec, CONTROL_FLAG_SPDIF2OUT, 0);
7430 chipio_set_control_flag(codec,
7431 CONTROL_FLAG_PORT_D_10KOHM_LOAD, 0);
7432 chipio_set_control_flag(codec,
7433 CONTROL_FLAG_PORT_A_10KOHM_LOAD, 1);
7435 chipio_set_control_flag(codec, CONTROL_FLAG_IDLE_ENABLE, 0);
7436 chipio_set_control_flag(codec,
7437 CONTROL_FLAG_PORT_A_COMMON_MODE, 0);
7438 chipio_set_control_flag(codec,
7439 CONTROL_FLAG_PORT_D_COMMON_MODE, 0);
7440 chipio_set_control_flag(codec,
7441 CONTROL_FLAG_PORT_A_10KOHM_LOAD, 0);
7442 chipio_set_control_flag(codec,
7443 CONTROL_FLAG_PORT_D_10KOHM_LOAD, 0);
7444 chipio_set_control_flag(codec, CONTROL_FLAG_ADC_C_HIGH_PASS, 1);
7449 * Initialization of parameters in chip
7451 static void ca0132_init_params(struct hda_codec *codec)
7453 struct ca0132_spec *spec = codec->spec;
7455 if (spec->use_alt_functions) {
7456 chipio_set_conn_rate(codec, MEM_CONNID_WUH, SR_48_000);
7457 chipio_set_conn_rate(codec, 0x0B, SR_48_000);
7458 chipio_set_control_param(codec, CONTROL_PARAM_SPDIF1_SOURCE, 0);
7459 chipio_set_control_param(codec, 0, 0);
7460 chipio_set_control_param(codec, CONTROL_PARAM_VIP_SOURCE, 0);
7463 chipio_set_control_param(codec, CONTROL_PARAM_PORTA_160OHM_GAIN, 6);
7464 chipio_set_control_param(codec, CONTROL_PARAM_PORTD_160OHM_GAIN, 6);
7467 static void ca0132_set_dsp_msr(struct hda_codec *codec, bool is96k)
7469 chipio_set_control_flag(codec, CONTROL_FLAG_DSP_96KHZ, is96k);
7470 chipio_set_control_flag(codec, CONTROL_FLAG_DAC_96KHZ, is96k);
7471 chipio_set_control_flag(codec, CONTROL_FLAG_SRC_RATE_96KHZ, is96k);
7472 chipio_set_control_flag(codec, CONTROL_FLAG_SRC_CLOCK_196MHZ, is96k);
7473 chipio_set_control_flag(codec, CONTROL_FLAG_ADC_B_96KHZ, is96k);
7474 chipio_set_control_flag(codec, CONTROL_FLAG_ADC_C_96KHZ, is96k);
7476 chipio_set_conn_rate(codec, MEM_CONNID_MICIN1, SR_96_000);
7477 chipio_set_conn_rate(codec, MEM_CONNID_MICOUT1, SR_96_000);
7478 chipio_set_conn_rate(codec, MEM_CONNID_WUH, SR_48_000);
7481 static bool ca0132_download_dsp_images(struct hda_codec *codec)
7483 bool dsp_loaded = false;
7484 struct ca0132_spec *spec = codec->spec;
7485 const struct dsp_image_seg *dsp_os_image;
7486 const struct firmware *fw_entry;
7488 * Alternate firmwares for different variants. The Recon3Di apparently
7489 * can use the default firmware, but I'll leave the option in case
7490 * it needs it again.
7492 switch (spec->quirk) {
7496 if (request_firmware(&fw_entry, DESKTOP_EFX_FILE,
7497 codec->card->dev) != 0) {
7498 codec_dbg(codec, "Desktop firmware not found.");
7499 spec->alt_firmware_present = false;
7501 codec_dbg(codec, "Desktop firmware selected.");
7502 spec->alt_firmware_present = true;
7506 if (request_firmware(&fw_entry, R3DI_EFX_FILE,
7507 codec->card->dev) != 0) {
7508 codec_dbg(codec, "Recon3Di alt firmware not detected.");
7509 spec->alt_firmware_present = false;
7511 codec_dbg(codec, "Recon3Di firmware selected.");
7512 spec->alt_firmware_present = true;
7516 spec->alt_firmware_present = false;
7520 * Use default ctefx.bin if no alt firmware is detected, or if none
7521 * exists for your particular codec.
7523 if (!spec->alt_firmware_present) {
7524 codec_dbg(codec, "Default firmware selected.");
7525 if (request_firmware(&fw_entry, EFX_FILE,
7526 codec->card->dev) != 0)
7530 dsp_os_image = (struct dsp_image_seg *)(fw_entry->data);
7531 if (dspload_image(codec, dsp_os_image, 0, 0, true, 0)) {
7532 codec_err(codec, "ca0132 DSP load image failed\n");
7536 dsp_loaded = dspload_wait_loaded(codec);
7539 release_firmware(fw_entry);
7544 static void ca0132_download_dsp(struct hda_codec *codec)
7546 struct ca0132_spec *spec = codec->spec;
7548 #ifndef CONFIG_SND_HDA_CODEC_CA0132_DSP
7552 if (spec->dsp_state == DSP_DOWNLOAD_FAILED)
7553 return; /* don't retry failures */
7555 chipio_enable_clocks(codec);
7556 if (spec->dsp_state != DSP_DOWNLOADED) {
7557 spec->dsp_state = DSP_DOWNLOADING;
7559 if (!ca0132_download_dsp_images(codec))
7560 spec->dsp_state = DSP_DOWNLOAD_FAILED;
7562 spec->dsp_state = DSP_DOWNLOADED;
7565 /* For codecs using alt functions, this is already done earlier */
7566 if (spec->dsp_state == DSP_DOWNLOADED && (!spec->use_alt_functions))
7567 ca0132_set_dsp_msr(codec, true);
7570 static void ca0132_process_dsp_response(struct hda_codec *codec,
7571 struct hda_jack_callback *callback)
7573 struct ca0132_spec *spec = codec->spec;
7575 codec_dbg(codec, "ca0132_process_dsp_response\n");
7576 if (spec->wait_scp) {
7577 if (dspio_get_response_data(codec) >= 0)
7581 dspio_clear_response_queue(codec);
7584 static void hp_callback(struct hda_codec *codec, struct hda_jack_callback *cb)
7586 struct ca0132_spec *spec = codec->spec;
7587 struct hda_jack_tbl *tbl;
7589 /* Delay enabling the HP amp, to let the mic-detection
7590 * state machine run.
7592 cancel_delayed_work_sync(&spec->unsol_hp_work);
7593 schedule_delayed_work(&spec->unsol_hp_work, msecs_to_jiffies(500));
7594 tbl = snd_hda_jack_tbl_get(codec, cb->nid);
7596 tbl->block_report = 1;
7599 static void amic_callback(struct hda_codec *codec, struct hda_jack_callback *cb)
7601 struct ca0132_spec *spec = codec->spec;
7603 if (spec->use_alt_functions)
7604 ca0132_alt_select_in(codec);
7606 ca0132_select_mic(codec);
7609 static void ca0132_init_unsol(struct hda_codec *codec)
7611 struct ca0132_spec *spec = codec->spec;
7612 snd_hda_jack_detect_enable_callback(codec, spec->unsol_tag_hp, hp_callback);
7613 snd_hda_jack_detect_enable_callback(codec, spec->unsol_tag_amic1,
7615 snd_hda_jack_detect_enable_callback(codec, UNSOL_TAG_DSP,
7616 ca0132_process_dsp_response);
7617 /* Front headphone jack detection */
7618 if (spec->use_alt_functions)
7619 snd_hda_jack_detect_enable_callback(codec,
7620 spec->unsol_tag_front_hp, hp_callback);
7627 /* Sends before DSP download. */
7628 static struct hda_verb ca0132_base_init_verbs[] = {
7629 /*enable ct extension*/
7630 {0x15, VENDOR_CHIPIO_CT_EXTENSIONS_ENABLE, 0x1},
7635 static struct hda_verb ca0132_base_exit_verbs[] = {
7637 {0x01, AC_VERB_SET_POWER_STATE, 0x03},
7638 /*disable ct extension*/
7639 {0x15, VENDOR_CHIPIO_CT_EXTENSIONS_ENABLE, 0},
7643 /* Other verbs tables. Sends after DSP download. */
7645 static struct hda_verb ca0132_init_verbs0[] = {
7646 /* chip init verbs */
7647 {0x15, 0x70D, 0xF0},
7648 {0x15, 0x70E, 0xFE},
7649 {0x15, 0x707, 0x75},
7650 {0x15, 0x707, 0xD3},
7651 {0x15, 0x707, 0x09},
7652 {0x15, 0x707, 0x53},
7653 {0x15, 0x707, 0xD4},
7654 {0x15, 0x707, 0xEF},
7655 {0x15, 0x707, 0x75},
7656 {0x15, 0x707, 0xD3},
7657 {0x15, 0x707, 0x09},
7658 {0x15, 0x707, 0x02},
7659 {0x15, 0x707, 0x37},
7660 {0x15, 0x707, 0x78},
7661 {0x15, 0x53C, 0xCE},
7662 {0x15, 0x575, 0xC9},
7663 {0x15, 0x53D, 0xCE},
7664 {0x15, 0x5B7, 0xC9},
7665 {0x15, 0x70D, 0xE8},
7666 {0x15, 0x70E, 0xFE},
7667 {0x15, 0x707, 0x02},
7668 {0x15, 0x707, 0x68},
7669 {0x15, 0x707, 0x62},
7670 {0x15, 0x53A, 0xCE},
7671 {0x15, 0x546, 0xC9},
7672 {0x15, 0x53B, 0xCE},
7673 {0x15, 0x5E8, 0xC9},
7677 /* Extra init verbs for desktop cards. */
7678 static struct hda_verb ca0132_init_verbs1[] = {
7679 {0x15, 0x70D, 0x20},
7680 {0x15, 0x70E, 0x19},
7681 {0x15, 0x707, 0x00},
7682 {0x15, 0x539, 0xCE},
7683 {0x15, 0x546, 0xC9},
7684 {0x15, 0x70D, 0xB7},
7685 {0x15, 0x70E, 0x09},
7686 {0x15, 0x707, 0x10},
7687 {0x15, 0x70D, 0xAF},
7688 {0x15, 0x70E, 0x09},
7689 {0x15, 0x707, 0x01},
7690 {0x15, 0x707, 0x05},
7691 {0x15, 0x70D, 0x73},
7692 {0x15, 0x70E, 0x09},
7693 {0x15, 0x707, 0x14},
7694 {0x15, 0x6FF, 0xC4},
7698 static void ca0132_init_chip(struct hda_codec *codec)
7700 struct ca0132_spec *spec = codec->spec;
7705 mutex_init(&spec->chipio_mutex);
7707 spec->cur_out_type = SPEAKER_OUT;
7708 if (!spec->use_alt_functions)
7709 spec->cur_mic_type = DIGITAL_MIC;
7711 spec->cur_mic_type = REAR_MIC;
7713 spec->cur_mic_boost = 0;
7715 for (i = 0; i < VNODES_COUNT; i++) {
7716 spec->vnode_lvol[i] = 0x5a;
7717 spec->vnode_rvol[i] = 0x5a;
7718 spec->vnode_lswitch[i] = 0;
7719 spec->vnode_rswitch[i] = 0;
7723 * Default states for effects are in ca0132_effects[].
7725 num_fx = OUT_EFFECTS_COUNT + IN_EFFECTS_COUNT;
7726 for (i = 0; i < num_fx; i++) {
7727 on = (unsigned int)ca0132_effects[i].reqs[0];
7728 spec->effects_switch[i] = on ? 1 : 0;
7731 * Sets defaults for the effect slider controls, only for alternative
7732 * ca0132 codecs. Also sets x-bass crossover frequency to 80hz.
7734 if (spec->use_alt_controls) {
7735 spec->xbass_xover_freq = 8;
7736 for (i = 0; i < EFFECT_LEVEL_SLIDERS; i++)
7737 spec->fx_ctl_val[i] = effect_slider_defaults[i];
7740 spec->voicefx_val = 0;
7741 spec->effects_switch[PLAY_ENHANCEMENT - EFFECT_START_NID] = 1;
7742 spec->effects_switch[CRYSTAL_VOICE - EFFECT_START_NID] = 0;
7745 * The ZxR doesn't have a front panel header, and it's line-in is on
7746 * the daughter board. So, there is no input enum control, and we need
7747 * to make sure that spec->in_enum_val is set properly.
7749 if (spec->quirk == QUIRK_ZXR)
7750 spec->in_enum_val = REAR_MIC;
7752 #ifdef ENABLE_TUNING_CONTROLS
7753 ca0132_init_tuning_defaults(codec);
7758 * Recon3Di exit specific commands.
7760 /* prevents popping noise on shutdown */
7761 static void r3di_gpio_shutdown(struct hda_codec *codec)
7763 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 0x00);
7767 * Sound Blaster Z exit specific commands.
7769 static void sbz_region2_exit(struct hda_codec *codec)
7771 struct ca0132_spec *spec = codec->spec;
7774 for (i = 0; i < 4; i++)
7775 writeb(0x0, spec->mem_base + 0x100);
7776 for (i = 0; i < 8; i++)
7777 writeb(0xb3, spec->mem_base + 0x304);
7779 ca0113_mmio_gpio_set(codec, 0, false);
7780 ca0113_mmio_gpio_set(codec, 1, false);
7781 ca0113_mmio_gpio_set(codec, 4, true);
7782 ca0113_mmio_gpio_set(codec, 5, false);
7783 ca0113_mmio_gpio_set(codec, 7, false);
7786 static void sbz_set_pin_ctl_default(struct hda_codec *codec)
7788 hda_nid_t pins[5] = {0x0B, 0x0C, 0x0E, 0x12, 0x13};
7791 snd_hda_codec_write(codec, 0x11, 0,
7792 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40);
7794 for (i = 0; i < 5; i++)
7795 snd_hda_codec_write(codec, pins[i], 0,
7796 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00);
7799 static void ca0132_clear_unsolicited(struct hda_codec *codec)
7801 hda_nid_t pins[7] = {0x0B, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13};
7804 for (i = 0; i < 7; i++) {
7805 snd_hda_codec_write(codec, pins[i], 0,
7806 AC_VERB_SET_UNSOLICITED_ENABLE, 0x00);
7810 /* On shutdown, sends commands in sets of three */
7811 static void sbz_gpio_shutdown_commands(struct hda_codec *codec, int dir,
7815 snd_hda_codec_write(codec, 0x01, 0,
7816 AC_VERB_SET_GPIO_DIRECTION, dir);
7818 snd_hda_codec_write(codec, 0x01, 0,
7819 AC_VERB_SET_GPIO_MASK, mask);
7822 snd_hda_codec_write(codec, 0x01, 0,
7823 AC_VERB_SET_GPIO_DATA, data);
7826 static void zxr_dbpro_power_state_shutdown(struct hda_codec *codec)
7828 hda_nid_t pins[7] = {0x05, 0x0c, 0x09, 0x0e, 0x08, 0x11, 0x01};
7831 for (i = 0; i < 7; i++)
7832 snd_hda_codec_write(codec, pins[i], 0,
7833 AC_VERB_SET_POWER_STATE, 0x03);
7836 static void sbz_exit_chip(struct hda_codec *codec)
7838 chipio_set_stream_control(codec, 0x03, 0);
7839 chipio_set_stream_control(codec, 0x04, 0);
7841 /* Mess with GPIO */
7842 sbz_gpio_shutdown_commands(codec, 0x07, 0x07, -1);
7843 sbz_gpio_shutdown_commands(codec, 0x07, 0x07, 0x05);
7844 sbz_gpio_shutdown_commands(codec, 0x07, 0x07, 0x01);
7846 chipio_set_stream_control(codec, 0x14, 0);
7847 chipio_set_stream_control(codec, 0x0C, 0);
7849 chipio_set_conn_rate(codec, 0x41, SR_192_000);
7850 chipio_set_conn_rate(codec, 0x91, SR_192_000);
7852 chipio_write(codec, 0x18a020, 0x00000083);
7854 sbz_gpio_shutdown_commands(codec, 0x07, 0x07, 0x03);
7855 sbz_gpio_shutdown_commands(codec, 0x07, 0x07, 0x07);
7856 sbz_gpio_shutdown_commands(codec, 0x07, 0x07, 0x06);
7858 chipio_set_stream_control(codec, 0x0C, 0);
7860 chipio_set_control_param(codec, 0x0D, 0x24);
7862 ca0132_clear_unsolicited(codec);
7863 sbz_set_pin_ctl_default(codec);
7865 snd_hda_codec_write(codec, 0x0B, 0,
7866 AC_VERB_SET_EAPD_BTLENABLE, 0x00);
7868 sbz_region2_exit(codec);
7871 static void r3d_exit_chip(struct hda_codec *codec)
7873 ca0132_clear_unsolicited(codec);
7874 snd_hda_codec_write(codec, 0x01, 0, 0x793, 0x00);
7875 snd_hda_codec_write(codec, 0x01, 0, 0x794, 0x5b);
7878 static void ae5_exit_chip(struct hda_codec *codec)
7880 chipio_set_stream_control(codec, 0x03, 0);
7881 chipio_set_stream_control(codec, 0x04, 0);
7883 ca0113_mmio_command_set(codec, 0x30, 0x32, 0x3f);
7884 ca0113_mmio_command_set(codec, 0x48, 0x07, 0x83);
7885 ca0113_mmio_command_set(codec, 0x48, 0x07, 0x83);
7886 ca0113_mmio_command_set(codec, 0x30, 0x30, 0x00);
7887 ca0113_mmio_command_set(codec, 0x30, 0x2b, 0x00);
7888 ca0113_mmio_command_set(codec, 0x30, 0x2d, 0x00);
7889 ca0113_mmio_gpio_set(codec, 0, false);
7890 ca0113_mmio_gpio_set(codec, 1, false);
7892 snd_hda_codec_write(codec, 0x01, 0, 0x793, 0x00);
7893 snd_hda_codec_write(codec, 0x01, 0, 0x794, 0x53);
7895 chipio_set_control_param(codec, CONTROL_PARAM_ASI, 0);
7897 chipio_set_stream_control(codec, 0x18, 0);
7898 chipio_set_stream_control(codec, 0x0c, 0);
7900 snd_hda_codec_write(codec, 0x01, 0, 0x724, 0x83);
7903 static void zxr_exit_chip(struct hda_codec *codec)
7905 chipio_set_stream_control(codec, 0x03, 0);
7906 chipio_set_stream_control(codec, 0x04, 0);
7907 chipio_set_stream_control(codec, 0x14, 0);
7908 chipio_set_stream_control(codec, 0x0C, 0);
7910 chipio_set_conn_rate(codec, 0x41, SR_192_000);
7911 chipio_set_conn_rate(codec, 0x91, SR_192_000);
7913 chipio_write(codec, 0x18a020, 0x00000083);
7915 snd_hda_codec_write(codec, 0x01, 0, 0x793, 0x00);
7916 snd_hda_codec_write(codec, 0x01, 0, 0x794, 0x53);
7918 ca0132_clear_unsolicited(codec);
7919 sbz_set_pin_ctl_default(codec);
7920 snd_hda_codec_write(codec, 0x0B, 0, AC_VERB_SET_EAPD_BTLENABLE, 0x00);
7922 ca0113_mmio_gpio_set(codec, 5, false);
7923 ca0113_mmio_gpio_set(codec, 2, false);
7924 ca0113_mmio_gpio_set(codec, 3, false);
7925 ca0113_mmio_gpio_set(codec, 0, false);
7926 ca0113_mmio_gpio_set(codec, 4, true);
7927 ca0113_mmio_gpio_set(codec, 0, true);
7928 ca0113_mmio_gpio_set(codec, 5, true);
7929 ca0113_mmio_gpio_set(codec, 2, false);
7930 ca0113_mmio_gpio_set(codec, 3, false);
7933 static void ca0132_exit_chip(struct hda_codec *codec)
7935 /* put any chip cleanup stuffs here. */
7937 if (dspload_is_loaded(codec))
7942 * This fixes a problem that was hard to reproduce. Very rarely, I would
7943 * boot up, and there would be no sound, but the DSP indicated it had loaded
7944 * properly. I did a few memory dumps to see if anything was different, and
7945 * there were a few areas of memory uninitialized with a1a2a3a4. This function
7946 * checks if those areas are uninitialized, and if they are, it'll attempt to
7947 * reload the card 3 times. Usually it fixes by the second.
7949 static void sbz_dsp_startup_check(struct hda_codec *codec)
7951 struct ca0132_spec *spec = codec->spec;
7952 unsigned int dsp_data_check[4];
7953 unsigned int cur_address = 0x390;
7955 unsigned int failure = 0;
7956 unsigned int reload = 3;
7958 if (spec->startup_check_entered)
7961 spec->startup_check_entered = true;
7963 for (i = 0; i < 4; i++) {
7964 chipio_read(codec, cur_address, &dsp_data_check[i]);
7967 for (i = 0; i < 4; i++) {
7968 if (dsp_data_check[i] == 0xa1a2a3a4)
7972 codec_dbg(codec, "Startup Check: %d ", failure);
7974 codec_info(codec, "DSP not initialized properly. Attempting to fix.");
7976 * While the failure condition is true, and we haven't reached our
7977 * three reload limit, continue trying to reload the driver and
7980 while (failure && (reload != 0)) {
7981 codec_info(codec, "Reloading... Tries left: %d", reload);
7982 sbz_exit_chip(codec);
7983 spec->dsp_state = DSP_DOWNLOAD_INIT;
7984 codec->patch_ops.init(codec);
7986 for (i = 0; i < 4; i++) {
7987 chipio_read(codec, cur_address, &dsp_data_check[i]);
7990 for (i = 0; i < 4; i++) {
7991 if (dsp_data_check[i] == 0xa1a2a3a4)
7997 if (!failure && reload < 3)
7998 codec_info(codec, "DSP fixed.");
8003 codec_info(codec, "DSP failed to initialize properly. Either try a full shutdown or a suspend to clear the internal memory.");
8007 * This is for the extra volume verbs 0x797 (left) and 0x798 (right). These add
8008 * extra precision for decibel values. If you had the dB value in floating point
8009 * you would take the value after the decimal point, multiply by 64, and divide
8010 * by 2. So for 8.59, it's (59 * 64) / 100. Useful if someone wanted to
8011 * implement fixed point or floating point dB volumes. For now, I'll set them
8012 * to 0 just incase a value has lingered from a boot into Windows.
8014 static void ca0132_alt_vol_setup(struct hda_codec *codec)
8016 snd_hda_codec_write(codec, 0x02, 0, 0x797, 0x00);
8017 snd_hda_codec_write(codec, 0x02, 0, 0x798, 0x00);
8018 snd_hda_codec_write(codec, 0x03, 0, 0x797, 0x00);
8019 snd_hda_codec_write(codec, 0x03, 0, 0x798, 0x00);
8020 snd_hda_codec_write(codec, 0x04, 0, 0x797, 0x00);
8021 snd_hda_codec_write(codec, 0x04, 0, 0x798, 0x00);
8022 snd_hda_codec_write(codec, 0x07, 0, 0x797, 0x00);
8023 snd_hda_codec_write(codec, 0x07, 0, 0x798, 0x00);
8027 * Extra commands that don't really fit anywhere else.
8029 static void sbz_pre_dsp_setup(struct hda_codec *codec)
8031 struct ca0132_spec *spec = codec->spec;
8033 writel(0x00820680, spec->mem_base + 0x01C);
8034 writel(0x00820680, spec->mem_base + 0x01C);
8036 chipio_write(codec, 0x18b0a4, 0x000000c2);
8038 snd_hda_codec_write(codec, 0x11, 0,
8039 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x44);
8042 static void r3d_pre_dsp_setup(struct hda_codec *codec)
8044 chipio_write(codec, 0x18b0a4, 0x000000c2);
8046 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8047 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x1E);
8048 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8049 VENDOR_CHIPIO_8051_ADDRESS_HIGH, 0x1C);
8050 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8051 VENDOR_CHIPIO_8051_DATA_WRITE, 0x5B);
8053 snd_hda_codec_write(codec, 0x11, 0,
8054 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x44);
8057 static void r3di_pre_dsp_setup(struct hda_codec *codec)
8059 chipio_write(codec, 0x18b0a4, 0x000000c2);
8061 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8062 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x1E);
8063 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8064 VENDOR_CHIPIO_8051_ADDRESS_HIGH, 0x1C);
8065 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8066 VENDOR_CHIPIO_8051_DATA_WRITE, 0x5B);
8068 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8069 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x20);
8070 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8071 VENDOR_CHIPIO_8051_ADDRESS_HIGH, 0x19);
8072 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8073 VENDOR_CHIPIO_8051_DATA_WRITE, 0x00);
8074 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8075 VENDOR_CHIPIO_8051_DATA_WRITE, 0x40);
8077 snd_hda_codec_write(codec, 0x11, 0,
8078 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x04);
8082 * These are sent before the DSP is downloaded. Not sure
8083 * what they do, or if they're necessary. Could possibly
8084 * be removed. Figure they're better to leave in.
8086 static void ca0132_mmio_init(struct hda_codec *codec)
8088 struct ca0132_spec *spec = codec->spec;
8090 if (spec->quirk == QUIRK_AE5)
8091 writel(0x00000001, spec->mem_base + 0x400);
8093 writel(0x00000000, spec->mem_base + 0x400);
8095 if (spec->quirk == QUIRK_AE5)
8096 writel(0x00000001, spec->mem_base + 0x408);
8098 writel(0x00000000, spec->mem_base + 0x408);
8100 if (spec->quirk == QUIRK_AE5)
8101 writel(0x00000001, spec->mem_base + 0x40c);
8103 writel(0x00000000, spec->mem_base + 0x40C);
8105 if (spec->quirk == QUIRK_ZXR)
8106 writel(0x00880640, spec->mem_base + 0x01C);
8108 writel(0x00880680, spec->mem_base + 0x01C);
8110 if (spec->quirk == QUIRK_AE5)
8111 writel(0x00000080, spec->mem_base + 0xC0C);
8113 writel(0x00000083, spec->mem_base + 0xC0C);
8115 writel(0x00000030, spec->mem_base + 0xC00);
8116 writel(0x00000000, spec->mem_base + 0xC04);
8118 if (spec->quirk == QUIRK_AE5)
8119 writel(0x00000000, spec->mem_base + 0xC0C);
8121 writel(0x00000003, spec->mem_base + 0xC0C);
8123 writel(0x00000003, spec->mem_base + 0xC0C);
8124 writel(0x00000003, spec->mem_base + 0xC0C);
8125 writel(0x00000003, spec->mem_base + 0xC0C);
8127 if (spec->quirk == QUIRK_AE5)
8128 writel(0x00000001, spec->mem_base + 0xC08);
8130 writel(0x000000C1, spec->mem_base + 0xC08);
8132 writel(0x000000F1, spec->mem_base + 0xC08);
8133 writel(0x00000001, spec->mem_base + 0xC08);
8134 writel(0x000000C7, spec->mem_base + 0xC08);
8135 writel(0x000000C1, spec->mem_base + 0xC08);
8136 writel(0x00000080, spec->mem_base + 0xC04);
8138 if (spec->quirk == QUIRK_AE5) {
8139 writel(0x00000000, spec->mem_base + 0x42c);
8140 writel(0x00000000, spec->mem_base + 0x46c);
8141 writel(0x00000000, spec->mem_base + 0x4ac);
8142 writel(0x00000000, spec->mem_base + 0x4ec);
8143 writel(0x00000000, spec->mem_base + 0x43c);
8144 writel(0x00000000, spec->mem_base + 0x47c);
8145 writel(0x00000000, spec->mem_base + 0x4bc);
8146 writel(0x00000000, spec->mem_base + 0x4fc);
8147 writel(0x00000600, spec->mem_base + 0x100);
8148 writel(0x00000014, spec->mem_base + 0x410);
8149 writel(0x0000060f, spec->mem_base + 0x100);
8150 writel(0x0000070f, spec->mem_base + 0x100);
8151 writel(0x00000aff, spec->mem_base + 0x830);
8152 writel(0x00000000, spec->mem_base + 0x86c);
8153 writel(0x0000006b, spec->mem_base + 0x800);
8154 writel(0x00000001, spec->mem_base + 0x86c);
8155 writel(0x0000006b, spec->mem_base + 0x800);
8156 writel(0x00000057, spec->mem_base + 0x804);
8157 writel(0x00800000, spec->mem_base + 0x20c);
8162 * This function writes to some SFR's, does some region2 writes, and then
8163 * eventually resets the codec with the 0x7ff verb. Not quite sure why it does
8166 static void ae5_register_set(struct hda_codec *codec)
8168 struct ca0132_spec *spec = codec->spec;
8170 chipio_8051_write_direct(codec, 0x93, 0x10);
8171 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8172 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x44);
8173 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8174 VENDOR_CHIPIO_PLL_PMU_WRITE, 0xc2);
8176 writeb(0x0f, spec->mem_base + 0x304);
8177 writeb(0x0f, spec->mem_base + 0x304);
8178 writeb(0x0f, spec->mem_base + 0x304);
8179 writeb(0x0f, spec->mem_base + 0x304);
8180 writeb(0x0e, spec->mem_base + 0x100);
8181 writeb(0x1f, spec->mem_base + 0x304);
8182 writeb(0x0c, spec->mem_base + 0x100);
8183 writeb(0x3f, spec->mem_base + 0x304);
8184 writeb(0x08, spec->mem_base + 0x100);
8185 writeb(0x7f, spec->mem_base + 0x304);
8186 writeb(0x00, spec->mem_base + 0x100);
8187 writeb(0xff, spec->mem_base + 0x304);
8189 ca0113_mmio_command_set(codec, 0x30, 0x2d, 0x3f);
8191 chipio_8051_write_direct(codec, 0x90, 0x00);
8192 chipio_8051_write_direct(codec, 0x90, 0x10);
8194 ca0113_mmio_command_set(codec, 0x48, 0x07, 0x83);
8196 chipio_write(codec, 0x18b0a4, 0x000000c2);
8198 snd_hda_codec_write(codec, 0x01, 0, 0x7ff, 0x00);
8199 snd_hda_codec_write(codec, 0x01, 0, 0x7ff, 0x00);
8203 * Extra init functions for alternative ca0132 codecs. Done
8204 * here so they don't clutter up the main ca0132_init function
8205 * anymore than they have to.
8207 static void ca0132_alt_init(struct hda_codec *codec)
8209 struct ca0132_spec *spec = codec->spec;
8211 ca0132_alt_vol_setup(codec);
8213 switch (spec->quirk) {
8215 codec_dbg(codec, "SBZ alt_init");
8216 ca0132_gpio_init(codec);
8217 sbz_pre_dsp_setup(codec);
8218 snd_hda_sequence_write(codec, spec->chip_init_verbs);
8219 snd_hda_sequence_write(codec, spec->desktop_init_verbs);
8222 codec_dbg(codec, "R3DI alt_init");
8223 ca0132_gpio_init(codec);
8224 ca0132_gpio_setup(codec);
8225 r3di_gpio_dsp_status_set(codec, R3DI_DSP_DOWNLOADING);
8226 r3di_pre_dsp_setup(codec);
8227 snd_hda_sequence_write(codec, spec->chip_init_verbs);
8228 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0, 0x6FF, 0xC4);
8231 r3d_pre_dsp_setup(codec);
8232 snd_hda_sequence_write(codec, spec->chip_init_verbs);
8233 snd_hda_sequence_write(codec, spec->desktop_init_verbs);
8236 ca0132_gpio_init(codec);
8237 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8238 VENDOR_CHIPIO_8051_ADDRESS_LOW, 0x49);
8239 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8240 VENDOR_CHIPIO_PLL_PMU_WRITE, 0x88);
8241 chipio_write(codec, 0x18b030, 0x00000020);
8242 snd_hda_sequence_write(codec, spec->chip_init_verbs);
8243 snd_hda_sequence_write(codec, spec->desktop_init_verbs);
8244 ca0113_mmio_command_set(codec, 0x30, 0x32, 0x3f);
8247 snd_hda_sequence_write(codec, spec->chip_init_verbs);
8248 snd_hda_sequence_write(codec, spec->desktop_init_verbs);
8253 static int ca0132_init(struct hda_codec *codec)
8255 struct ca0132_spec *spec = codec->spec;
8256 struct auto_pin_cfg *cfg = &spec->autocfg;
8261 * If the DSP is already downloaded, and init has been entered again,
8262 * there's only two reasons for it. One, the codec has awaken from a
8263 * suspended state, and in that case dspload_is_loaded will return
8264 * false, and the init will be ran again. The other reason it gets
8265 * re entered is on startup for some reason it triggers a suspend and
8266 * resume state. In this case, it will check if the DSP is downloaded,
8267 * and not run the init function again. For codecs using alt_functions,
8268 * it will check if the DSP is loaded properly.
8270 if (spec->dsp_state == DSP_DOWNLOADED) {
8271 dsp_loaded = dspload_is_loaded(codec);
8273 spec->dsp_reload = true;
8274 spec->dsp_state = DSP_DOWNLOAD_INIT;
8276 if (spec->quirk == QUIRK_SBZ)
8277 sbz_dsp_startup_check(codec);
8282 if (spec->dsp_state != DSP_DOWNLOAD_FAILED)
8283 spec->dsp_state = DSP_DOWNLOAD_INIT;
8284 spec->curr_chip_addx = INVALID_CHIP_ADDRESS;
8286 if (spec->use_pci_mmio)
8287 ca0132_mmio_init(codec);
8289 snd_hda_power_up_pm(codec);
8291 if (spec->quirk == QUIRK_AE5)
8292 ae5_register_set(codec);
8294 ca0132_init_unsol(codec);
8295 ca0132_init_params(codec);
8296 ca0132_init_flags(codec);
8298 snd_hda_sequence_write(codec, spec->base_init_verbs);
8300 if (spec->use_alt_functions)
8301 ca0132_alt_init(codec);
8303 ca0132_download_dsp(codec);
8305 ca0132_refresh_widget_caps(codec);
8307 switch (spec->quirk) {
8310 r3d_setup_defaults(codec);
8314 sbz_setup_defaults(codec);
8317 ae5_setup_defaults(codec);
8320 ca0132_setup_defaults(codec);
8321 ca0132_init_analog_mic2(codec);
8322 ca0132_init_dmic(codec);
8326 for (i = 0; i < spec->num_outputs; i++)
8327 init_output(codec, spec->out_pins[i], spec->dacs[0]);
8329 init_output(codec, cfg->dig_out_pins[0], spec->dig_out);
8331 for (i = 0; i < spec->num_inputs; i++)
8332 init_input(codec, spec->input_pins[i], spec->adcs[i]);
8334 init_input(codec, cfg->dig_in_pin, spec->dig_in);
8336 if (!spec->use_alt_functions) {
8337 snd_hda_sequence_write(codec, spec->chip_init_verbs);
8338 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8339 VENDOR_CHIPIO_PARAM_EX_ID_SET, 0x0D);
8340 snd_hda_codec_write(codec, WIDGET_CHIP_CTRL, 0,
8341 VENDOR_CHIPIO_PARAM_EX_VALUE_SET, 0x20);
8344 if (spec->quirk == QUIRK_SBZ)
8345 ca0132_gpio_setup(codec);
8347 snd_hda_sequence_write(codec, spec->spec_init_verbs);
8348 if (spec->use_alt_functions) {
8349 ca0132_alt_select_out(codec);
8350 ca0132_alt_select_in(codec);
8352 ca0132_select_out(codec);
8353 ca0132_select_mic(codec);
8356 snd_hda_jack_report_sync(codec);
8359 * Re set the PlayEnhancement switch on a resume event, because the
8360 * controls will not be reloaded.
8362 if (spec->dsp_reload) {
8363 spec->dsp_reload = false;
8364 ca0132_pe_switch_set(codec);
8367 snd_hda_power_down_pm(codec);
8372 static int dbpro_init(struct hda_codec *codec)
8374 struct ca0132_spec *spec = codec->spec;
8375 struct auto_pin_cfg *cfg = &spec->autocfg;
8378 init_output(codec, cfg->dig_out_pins[0], spec->dig_out);
8379 init_input(codec, cfg->dig_in_pin, spec->dig_in);
8381 for (i = 0; i < spec->num_inputs; i++)
8382 init_input(codec, spec->input_pins[i], spec->adcs[i]);
8387 static void ca0132_free(struct hda_codec *codec)
8389 struct ca0132_spec *spec = codec->spec;
8391 cancel_delayed_work_sync(&spec->unsol_hp_work);
8392 snd_hda_power_up(codec);
8393 switch (spec->quirk) {
8395 sbz_exit_chip(codec);
8398 zxr_exit_chip(codec);
8401 r3d_exit_chip(codec);
8404 ae5_exit_chip(codec);
8407 r3di_gpio_shutdown(codec);
8411 snd_hda_sequence_write(codec, spec->base_exit_verbs);
8412 ca0132_exit_chip(codec);
8414 snd_hda_power_down(codec);
8416 iounmap(spec->mem_base);
8417 kfree(spec->spec_init_verbs);
8421 static void dbpro_free(struct hda_codec *codec)
8423 struct ca0132_spec *spec = codec->spec;
8425 zxr_dbpro_power_state_shutdown(codec);
8427 kfree(spec->spec_init_verbs);
8431 static void ca0132_reboot_notify(struct hda_codec *codec)
8433 codec->patch_ops.free(codec);
8436 static const struct hda_codec_ops ca0132_patch_ops = {
8437 .build_controls = ca0132_build_controls,
8438 .build_pcms = ca0132_build_pcms,
8439 .init = ca0132_init,
8440 .free = ca0132_free,
8441 .unsol_event = snd_hda_jack_unsol_event,
8442 .reboot_notify = ca0132_reboot_notify,
8445 static const struct hda_codec_ops dbpro_patch_ops = {
8446 .build_controls = dbpro_build_controls,
8447 .build_pcms = dbpro_build_pcms,
8452 static void ca0132_config(struct hda_codec *codec)
8454 struct ca0132_spec *spec = codec->spec;
8456 spec->dacs[0] = 0x2;
8457 spec->dacs[1] = 0x3;
8458 spec->dacs[2] = 0x4;
8460 spec->multiout.dac_nids = spec->dacs;
8461 spec->multiout.num_dacs = 3;
8463 if (!spec->use_alt_functions)
8464 spec->multiout.max_channels = 2;
8466 spec->multiout.max_channels = 6;
8468 switch (spec->quirk) {
8469 case QUIRK_ALIENWARE:
8470 codec_dbg(codec, "%s: QUIRK_ALIENWARE applied.\n", __func__);
8471 snd_hda_apply_pincfgs(codec, alienware_pincfgs);
8474 codec_dbg(codec, "%s: QUIRK_SBZ applied.\n", __func__);
8475 snd_hda_apply_pincfgs(codec, sbz_pincfgs);
8478 codec_dbg(codec, "%s: QUIRK_ZXR applied.\n", __func__);
8479 snd_hda_apply_pincfgs(codec, zxr_pincfgs);
8482 codec_dbg(codec, "%s: QUIRK_R3D applied.\n", __func__);
8483 snd_hda_apply_pincfgs(codec, r3d_pincfgs);
8486 codec_dbg(codec, "%s: QUIRK_R3DI applied.\n", __func__);
8487 snd_hda_apply_pincfgs(codec, r3di_pincfgs);
8490 codec_dbg(codec, "%s: QUIRK_AE5 applied.\n", __func__);
8491 snd_hda_apply_pincfgs(codec, r3di_pincfgs);
8495 switch (spec->quirk) {
8496 case QUIRK_ALIENWARE:
8497 spec->num_outputs = 2;
8498 spec->out_pins[0] = 0x0b; /* speaker out */
8499 spec->out_pins[1] = 0x0f;
8500 spec->shared_out_nid = 0x2;
8501 spec->unsol_tag_hp = 0x0f;
8503 spec->adcs[0] = 0x7; /* digital mic / analog mic1 */
8504 spec->adcs[1] = 0x8; /* analog mic2 */
8505 spec->adcs[2] = 0xa; /* what u hear */
8507 spec->num_inputs = 3;
8508 spec->input_pins[0] = 0x12;
8509 spec->input_pins[1] = 0x11;
8510 spec->input_pins[2] = 0x13;
8511 spec->shared_mic_nid = 0x7;
8512 spec->unsol_tag_amic1 = 0x11;
8516 spec->num_outputs = 2;
8517 spec->out_pins[0] = 0x0B; /* Line out */
8518 spec->out_pins[1] = 0x0F; /* Rear headphone out */
8519 spec->out_pins[2] = 0x10; /* Front Headphone / Center/LFE*/
8520 spec->out_pins[3] = 0x11; /* Rear surround */
8521 spec->shared_out_nid = 0x2;
8522 spec->unsol_tag_hp = spec->out_pins[1];
8523 spec->unsol_tag_front_hp = spec->out_pins[2];
8525 spec->adcs[0] = 0x7; /* Rear Mic / Line-in */
8526 spec->adcs[1] = 0x8; /* Front Mic, but only if no DSP */
8527 spec->adcs[2] = 0xa; /* what u hear */
8529 spec->num_inputs = 2;
8530 spec->input_pins[0] = 0x12; /* Rear Mic / Line-in */
8531 spec->input_pins[1] = 0x13; /* What U Hear */
8532 spec->shared_mic_nid = 0x7;
8533 spec->unsol_tag_amic1 = spec->input_pins[0];
8536 spec->dig_out = 0x05;
8537 spec->multiout.dig_out_nid = spec->dig_out;
8538 spec->dig_in = 0x09;
8541 spec->num_outputs = 2;
8542 spec->out_pins[0] = 0x0B; /* Line out */
8543 spec->out_pins[1] = 0x0F; /* Rear headphone out */
8544 spec->out_pins[2] = 0x10; /* Center/LFE */
8545 spec->out_pins[3] = 0x11; /* Rear surround */
8546 spec->shared_out_nid = 0x2;
8547 spec->unsol_tag_hp = spec->out_pins[1];
8548 spec->unsol_tag_front_hp = spec->out_pins[2];
8550 spec->adcs[0] = 0x7; /* Rear Mic / Line-in */
8551 spec->adcs[1] = 0x8; /* Not connected, no front mic */
8552 spec->adcs[2] = 0xa; /* what u hear */
8554 spec->num_inputs = 2;
8555 spec->input_pins[0] = 0x12; /* Rear Mic / Line-in */
8556 spec->input_pins[1] = 0x13; /* What U Hear */
8557 spec->shared_mic_nid = 0x7;
8558 spec->unsol_tag_amic1 = spec->input_pins[0];
8560 case QUIRK_ZXR_DBPRO:
8561 spec->adcs[0] = 0x8; /* ZxR DBPro Aux In */
8563 spec->num_inputs = 1;
8564 spec->input_pins[0] = 0x11; /* RCA Line-in */
8566 spec->dig_out = 0x05;
8567 spec->multiout.dig_out_nid = spec->dig_out;
8569 spec->dig_in = 0x09;
8572 spec->num_outputs = 2;
8573 spec->out_pins[0] = 0x0B; /* Line out */
8574 spec->out_pins[1] = 0x11; /* Rear headphone out */
8575 spec->out_pins[2] = 0x10; /* Front Headphone / Center/LFE*/
8576 spec->out_pins[3] = 0x0F; /* Rear surround */
8577 spec->shared_out_nid = 0x2;
8578 spec->unsol_tag_hp = spec->out_pins[1];
8579 spec->unsol_tag_front_hp = spec->out_pins[2];
8581 spec->adcs[0] = 0x7; /* Rear Mic / Line-in */
8582 spec->adcs[1] = 0x8; /* Front Mic, but only if no DSP */
8583 spec->adcs[2] = 0xa; /* what u hear */
8585 spec->num_inputs = 2;
8586 spec->input_pins[0] = 0x12; /* Rear Mic / Line-in */
8587 spec->input_pins[1] = 0x13; /* What U Hear */
8588 spec->shared_mic_nid = 0x7;
8589 spec->unsol_tag_amic1 = spec->input_pins[0];
8592 spec->dig_out = 0x05;
8593 spec->multiout.dig_out_nid = spec->dig_out;
8596 spec->num_outputs = 2;
8597 spec->out_pins[0] = 0x0B; /* Line out */
8598 spec->out_pins[1] = 0x0F; /* Rear headphone out */
8599 spec->out_pins[2] = 0x10; /* Front Headphone / Center/LFE*/
8600 spec->out_pins[3] = 0x11; /* Rear surround */
8601 spec->shared_out_nid = 0x2;
8602 spec->unsol_tag_hp = spec->out_pins[1];
8603 spec->unsol_tag_front_hp = spec->out_pins[2];
8605 spec->adcs[0] = 0x07; /* Rear Mic / Line-in */
8606 spec->adcs[1] = 0x08; /* Front Mic, but only if no DSP */
8607 spec->adcs[2] = 0x0a; /* what u hear */
8609 spec->num_inputs = 2;
8610 spec->input_pins[0] = 0x12; /* Rear Mic / Line-in */
8611 spec->input_pins[1] = 0x13; /* What U Hear */
8612 spec->shared_mic_nid = 0x7;
8613 spec->unsol_tag_amic1 = spec->input_pins[0];
8616 spec->dig_out = 0x05;
8617 spec->multiout.dig_out_nid = spec->dig_out;
8620 spec->num_outputs = 2;
8621 spec->out_pins[0] = 0x0b; /* speaker out */
8622 spec->out_pins[1] = 0x10; /* headphone out */
8623 spec->shared_out_nid = 0x2;
8624 spec->unsol_tag_hp = spec->out_pins[1];
8626 spec->adcs[0] = 0x7; /* digital mic / analog mic1 */
8627 spec->adcs[1] = 0x8; /* analog mic2 */
8628 spec->adcs[2] = 0xa; /* what u hear */
8630 spec->num_inputs = 3;
8631 spec->input_pins[0] = 0x12;
8632 spec->input_pins[1] = 0x11;
8633 spec->input_pins[2] = 0x13;
8634 spec->shared_mic_nid = 0x7;
8635 spec->unsol_tag_amic1 = spec->input_pins[0];
8638 spec->dig_out = 0x05;
8639 spec->multiout.dig_out_nid = spec->dig_out;
8640 spec->dig_in = 0x09;
8645 static int ca0132_prepare_verbs(struct hda_codec *codec)
8647 /* Verbs + terminator (an empty element) */
8648 #define NUM_SPEC_VERBS 2
8649 struct ca0132_spec *spec = codec->spec;
8651 spec->chip_init_verbs = ca0132_init_verbs0;
8653 * Since desktop cards use pci_mmio, this can be used to determine
8654 * whether or not to use these verbs instead of a separate bool.
8656 if (spec->use_pci_mmio)
8657 spec->desktop_init_verbs = ca0132_init_verbs1;
8658 spec->spec_init_verbs = kcalloc(NUM_SPEC_VERBS,
8659 sizeof(struct hda_verb),
8661 if (!spec->spec_init_verbs)
8665 spec->spec_init_verbs[0].nid = 0x0b;
8666 spec->spec_init_verbs[0].param = 0x78D;
8667 spec->spec_init_verbs[0].verb = 0x00;
8669 /* Previously commented configuration */
8671 spec->spec_init_verbs[2].nid = 0x0b;
8672 spec->spec_init_verbs[2].param = AC_VERB_SET_EAPD_BTLENABLE;
8673 spec->spec_init_verbs[2].verb = 0x02;
8675 spec->spec_init_verbs[3].nid = 0x10;
8676 spec->spec_init_verbs[3].param = 0x78D;
8677 spec->spec_init_verbs[3].verb = 0x02;
8679 spec->spec_init_verbs[4].nid = 0x10;
8680 spec->spec_init_verbs[4].param = AC_VERB_SET_EAPD_BTLENABLE;
8681 spec->spec_init_verbs[4].verb = 0x02;
8684 /* Terminator: spec->spec_init_verbs[NUM_SPEC_VERBS-1] */
8689 * The Sound Blaster ZxR shares the same PCI subsystem ID as some regular
8690 * Sound Blaster Z cards. However, they have different HDA codec subsystem
8691 * ID's. So, we check for the ZxR's subsystem ID, as well as the DBPro
8692 * daughter boards ID.
8694 static void sbz_detect_quirk(struct hda_codec *codec)
8696 struct ca0132_spec *spec = codec->spec;
8698 switch (codec->core.subsystem_id) {
8700 spec->quirk = QUIRK_ZXR;
8703 spec->quirk = QUIRK_ZXR_DBPRO;
8706 spec->quirk = QUIRK_SBZ;
8711 static int patch_ca0132(struct hda_codec *codec)
8713 struct ca0132_spec *spec;
8715 const struct snd_pci_quirk *quirk;
8717 codec_dbg(codec, "patch_ca0132\n");
8719 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8723 spec->codec = codec;
8725 /* Detect codec quirk */
8726 quirk = snd_pci_quirk_lookup(codec->bus->pci, ca0132_quirks);
8728 spec->quirk = quirk->value;
8730 spec->quirk = QUIRK_NONE;
8732 if (spec->quirk == QUIRK_SBZ)
8733 sbz_detect_quirk(codec);
8735 if (spec->quirk == QUIRK_ZXR_DBPRO)
8736 codec->patch_ops = dbpro_patch_ops;
8738 codec->patch_ops = ca0132_patch_ops;
8740 codec->pcm_format_first = 1;
8741 codec->no_sticky_stream = 1;
8744 spec->dsp_state = DSP_DOWNLOAD_INIT;
8745 spec->num_mixers = 1;
8747 /* Set which mixers each quirk uses. */
8748 switch (spec->quirk) {
8750 spec->mixers[0] = desktop_mixer;
8751 snd_hda_codec_set_name(codec, "Sound Blaster Z");
8754 spec->mixers[0] = desktop_mixer;
8755 snd_hda_codec_set_name(codec, "Sound Blaster ZxR");
8757 case QUIRK_ZXR_DBPRO:
8760 spec->mixers[0] = desktop_mixer;
8761 snd_hda_codec_set_name(codec, "Recon3D");
8764 spec->mixers[0] = r3di_mixer;
8765 snd_hda_codec_set_name(codec, "Recon3Di");
8768 spec->mixers[0] = desktop_mixer;
8769 snd_hda_codec_set_name(codec, "Sound BlasterX AE-5");
8772 spec->mixers[0] = ca0132_mixer;
8776 /* Setup whether or not to use alt functions/controls/pci_mmio */
8777 switch (spec->quirk) {
8782 spec->use_alt_controls = true;
8783 spec->use_alt_functions = true;
8784 spec->use_pci_mmio = true;
8787 spec->use_alt_controls = true;
8788 spec->use_alt_functions = true;
8789 spec->use_pci_mmio = false;
8792 spec->use_alt_controls = false;
8793 spec->use_alt_functions = false;
8794 spec->use_pci_mmio = false;
8798 if (spec->use_pci_mmio) {
8799 spec->mem_base = pci_iomap(codec->bus->pci, 2, 0xC20);
8800 if (spec->mem_base == NULL) {
8801 codec_warn(codec, "pci_iomap failed! Setting quirk to QUIRK_NONE.");
8802 spec->quirk = QUIRK_NONE;
8806 spec->base_init_verbs = ca0132_base_init_verbs;
8807 spec->base_exit_verbs = ca0132_base_exit_verbs;
8809 INIT_DELAYED_WORK(&spec->unsol_hp_work, ca0132_unsol_hp_delayed);
8811 ca0132_init_chip(codec);
8813 ca0132_config(codec);
8815 err = ca0132_prepare_verbs(codec);
8819 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
8833 static struct hda_device_id snd_hda_id_ca0132[] = {
8834 HDA_CODEC_ENTRY(0x11020011, "CA0132", patch_ca0132),
8837 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_ca0132);
8839 MODULE_LICENSE("GPL");
8840 MODULE_DESCRIPTION("Creative Sound Core3D codec");
8842 static struct hda_codec_driver ca0132_driver = {
8843 .id = snd_hda_id_ca0132,
8846 module_hda_codec_driver(ca0132_driver);