]> git.alsa-project.org Git - alsa-ucm-conf.git/commitdiff
conf/ucm: Add Gigabyte mobo UCM profile with dual HD-audio codecs
authorTakashi Iwai <tiwai@suse.de>
Tue, 5 Dec 2017 14:08:01 +0000 (15:08 +0100)
committerJaroslav Kysela <perex@perex.cz>
Tue, 24 Sep 2019 10:47:36 +0000 (12:47 +0200)
Like the previous Lenovo laptops, some Gigabyte mobos have dual
HD-audio codecs and need to switch dynamically via UCM profile.
Reuse the same profile as Lenovo dual codecs, so far.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
ucm/HDAudio-Gigabyte-ALC1220DualCodecs/HDAudio-Gigabyte-ALC1220DualCodecs.conf [new file with mode: 0644]
ucm/HDAudio-Gigabyte-ALC1220DualCodecs/HiFi.conf [new file with mode: 0644]

diff --git a/ucm/HDAudio-Gigabyte-ALC1220DualCodecs/HDAudio-Gigabyte-ALC1220DualCodecs.conf b/ucm/HDAudio-Gigabyte-ALC1220DualCodecs/HDAudio-Gigabyte-ALC1220DualCodecs.conf
new file mode 100644 (file)
index 0000000..492eebf
--- /dev/null
@@ -0,0 +1,5 @@
+Comment "Gigabyte mobo with dual HD-audio codecs"
+SectionUseCase."HiFi" {
+       File "HiFi.conf"
+       Comment "Default"
+}
diff --git a/ucm/HDAudio-Gigabyte-ALC1220DualCodecs/HiFi.conf b/ucm/HDAudio-Gigabyte-ALC1220DualCodecs/HiFi.conf
new file mode 100644 (file)
index 0000000..5096789
--- /dev/null
@@ -0,0 +1,145 @@
+SectionVerb {
+       Value {
+               TQ "HiFi"
+       }
+
+       EnableSequence [
+               cdev "hw:PCH"
+               cset "name='Front Playback Volume' 100%"
+               cset "name='Front Playback Switch' on"
+               cset "name='Rear-Panel Capture Volume' 100%"
+               cset "name='Rear-Panel Capture Switch' on"
+       ]
+
+       DisableSequence [
+               cdev "hw:PCH"
+               cset "name='Front Playback Volume' 0"
+               cset "name='Front Playback Switch' off"
+               cset "name='Rear-Panel Capture Volume' 0"
+               cset "name='Rear-Panel Capture Switch' off"
+       ]
+}
+
+SectionDevice."Speaker" {
+       Comment "Speaker"
+
+       Value {
+               PlaybackChannels "2"
+               PlaybackPCM "hw:PCH,4"
+       }
+
+       ConflictingDevice [
+               "Headphone"
+       ]
+
+       EnableSequence [
+               cdev "hw:PCH"
+               cset "name='Speaker Playback Switch' on"
+               cset "name='Speaker Playback Volume' 100%"
+       ]
+
+       DisableSequence [
+               cdev "hw:PCH"
+               cset "name='Speaker Playback Volume' 0"
+               cset "name='Speaker Playback Switch' off"
+       ]
+}
+
+SectionDevice."LineOut" {
+       Comment "Line Out"
+
+       Value {
+               PlaybackChannels "2"
+               PlaybackPCM "hw:PCH,0"
+               JackControl "Line Out Jack"
+               JackHWMute "Speaker"
+       }
+}
+
+SectionDevice."Headphone" {
+       Comment "Headphone"
+
+       Value {
+               PlaybackChannels "2"
+               PlaybackPCM "hw:PCH,4"
+               JackControl "Front Headphone Jack"
+               JackHWMute "Speaker"
+       }
+
+       ConflictingDevice [
+               "Speaker"
+       ]
+
+       EnableSequence [
+               cdev "hw:PCH"
+               cset "name='Headphone Playback Switch' on"
+               cset "name='Headphone Playback Volume' 100%"
+       ]
+
+       DisableSequence [
+               cdev "hw:PCH"
+               cset "name='Headphone Playback Volume' 0"
+               cset "name='Headphone Playback Switch' off"
+       ]
+}
+
+SectionDevice."LineIn" {
+       Comment "Rear Line In"
+
+       Value {
+               CaptureChannels "2"
+               CapturePCM "hw:PCH,0"
+               JackControl "Line Jack"
+       }
+
+       ConflictingDevice [
+               "RearMic"
+       ]
+
+       EnableSequence [
+               cdev "hw:PCH"
+               cset "name='Input Source' Line"
+       ]
+}
+
+SectionDevice."RearMic" {
+       Comment "Rear Microphone"
+
+       Value {
+               CaptureChannels "2"
+               CapturePCM "hw:PCH,0"
+               # CapturePriority "150"
+               JackHWMute "LineIn"
+       }
+
+       ConflictingDevice [
+               "LineIn"
+       ]
+
+       EnableSequence [
+               cdev "hw:PCH"
+               cset "name='Input Source' Rear Mic"
+       ]
+}
+
+SectionDevice."FrontMic" {
+       Comment "Front Microphone"
+
+       Value {
+               CaptureChannels "2"
+               CapturePCM "hw:PCH,4"
+               JackControl "Front Mic Jack"
+       }
+
+       EnableSequence [
+               cdev "hw:PCH"
+               cset "name='Front-Panel Capture Volume' 100%"
+               cset "name='Front-Panel Capture Switch' on"
+       ]
+
+       DisableSequence [
+               cdev "hw:PCH"
+               cset "name='Front-Panel Capture Volume' 0"
+               cset "name='Front-Panel Capture Switch' off"
+       ]
+}