mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 12:36:41 +07:00
ALSA: hda - Overwrite pin config on intel DG45ID board.
The pin config provided by BIOS have some problems: 0x0221401f: [Jack] HP Out at Ext Front <-- other association and sequence 0x02a19020: [Jack] Mic at Ext Front <-- other association 0x01113014: [Jack] Speaker at Ext Rear <-- line out (not speaker) 0x01114010: [Jack] Speaker at Ext Rear <-- line out 0x01a19030: [Jack] Mic at Ext Rear <-- other association 0x01111012: [Jack] Speaker at Ext Rear <-- line out 0x01116011: [Jack] Speaker at Ext Rear <-- line out 0x40f000f0: [N/A] Other at Ext N/A 0x40f000f0: [N/A] Other at Ext N/A 0x40f000f0: [N/A] Other at Ext N/A 0x40f000f0: [N/A] Other at Ext N/A 0x40f000f0: [N/A] Other at Ext N/A 0x01451140: [Jack] SPDIF Out at Ext Rear 0x40f000f0: [N/A] Other at Ext N/A just overwrite it. Signed-off-by: Alexey Fisher <bug-track@fisher-privat.net> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
0287d97065
commit
52dc438606
@ -1539,6 +1539,13 @@ static unsigned int alienware_m17x_pin_configs[13] = {
|
||||
0x904601b0,
|
||||
};
|
||||
|
||||
static unsigned int intel_dg45id_pin_configs[14] = {
|
||||
0x02214230, 0x02A19240, 0x01013214, 0x01014210,
|
||||
0x01A19250, 0x01011212, 0x01016211, 0x40f000f0,
|
||||
0x40f000f0, 0x40f000f0, 0x40f000f0, 0x014510A0,
|
||||
0x074510B0, 0x40f000f0
|
||||
};
|
||||
|
||||
static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
|
||||
[STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
|
||||
[STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
|
||||
@ -1546,6 +1553,7 @@ static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
|
||||
[STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
|
||||
[STAC_DELL_EQ] = dell_m6_pin_configs,
|
||||
[STAC_ALIENWARE_M17X] = alienware_m17x_pin_configs,
|
||||
[STAC_92HD73XX_INTEL] = intel_dg45id_pin_configs,
|
||||
};
|
||||
|
||||
static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
|
||||
|
Loading…
Reference in New Issue
Block a user