aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_realtek.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 53aa57f5a1a1..65903812b307 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -111,6 +111,7 @@ enum {
111 ALC883_3ST_6ch, 111 ALC883_3ST_6ch,
112 ALC883_6ST_DIG, 112 ALC883_6ST_DIG,
113 ALC888_DEMO_BOARD, 113 ALC888_DEMO_BOARD,
114 ALC883_ACER,
114 ALC883_AUTO, 115 ALC883_AUTO,
115 ALC883_MODEL_LAST, 116 ALC883_MODEL_LAST,
116}; 117};
@@ -5069,6 +5070,9 @@ static struct hda_board_config alc883_cfg_tbl[] = {
5069 { .pci_subvendor = 0x105b, .pci_subdevice = 0x6668, 5070 { .pci_subvendor = 0x105b, .pci_subdevice = 0x6668,
5070 .config = ALC883_6ST_DIG }, /* Foxconn */ 5071 .config = ALC883_6ST_DIG }, /* Foxconn */
5071 { .modelname = "6stack-dig-demo", .config = ALC888_DEMO_BOARD }, 5072 { .modelname = "6stack-dig-demo", .config = ALC888_DEMO_BOARD },
5073 { .modelname = "acer", .config = ALC883_ACER },
5074 { .pci_subvendor = 0x1025, .pci_subdevice = 0/*0x0102*/,
5075 .config = ALC883_ACER },
5072 { .modelname = "auto", .config = ALC883_AUTO }, 5076 { .modelname = "auto", .config = ALC883_AUTO },
5073 {} 5077 {}
5074}; 5078};
@@ -5139,6 +5143,23 @@ static struct alc_config_preset alc883_presets[] = {
5139 .channel_mode = alc883_sixstack_modes, 5143 .channel_mode = alc883_sixstack_modes,
5140 .input_mux = &alc883_capture_source, 5144 .input_mux = &alc883_capture_source,
5141 }, 5145 },
5146 [ALC883_ACER] = {
5147 .mixers = { alc883_base_mixer,
5148 alc883_chmode_mixer },
5149 /* On TravelMate laptops, GPIO 0 enables the internal speaker
5150 * and the headphone jack. Turn this on and rely on the
5151 * standard mute methods whenever the user wants to turn
5152 * these outputs off.
5153 */
5154 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
5155 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5156 .dac_nids = alc883_dac_nids,
5157 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5158 .adc_nids = alc883_adc_nids,
5159 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
5160 .channel_mode = alc883_3ST_2ch_modes,
5161 .input_mux = &alc883_capture_source,
5162 },
5142}; 5163};
5143 5164
5144 5165