diff options
author | fulup <fulup.arfoll@iot.bzh> | 2017-07-01 00:23:13 +0200 |
---|---|---|
committer | fulup <fulup.arfoll@iot.bzh> | 2017-07-01 00:23:13 +0200 |
commit | 1abf42ee54f669b523bb1a6f4d57d15d78ce0255 (patch) | |
tree | c47ddc036f88c8c83f72f9f68d40cef64fe0549f /conf.d/alsa/ucm.sample/HiFi.conf | |
parent | c326a053cdf8a4a9ce0fb02448293b45083d553c (diff) | |
parent | 21cd84156657e2f5be2115d90f3d4dbb50cc1509 (diff) |
Merge branch 'fulup-dev' of github.com:iotbzh/audio-bindings into fulup-dev
Diffstat (limited to 'conf.d/alsa/ucm.sample/HiFi.conf')
-rw-r--r-- | conf.d/alsa/ucm.sample/HiFi.conf | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/conf.d/alsa/ucm.sample/HiFi.conf b/conf.d/alsa/ucm.sample/HiFi.conf new file mode 100644 index 0000000..9a53c8c --- /dev/null +++ b/conf.d/alsa/ucm.sample/HiFi.conf @@ -0,0 +1,84 @@ +SectionVerb { + EnableSequence [ + cdev "hw:PCH" + + cset "name='Master Playback Switch' on" + cset "name='Headphone Playback Switch' off" + cset "name='Speaker Playback Switch' on" + + cset "name='Capture Switch' on" + cset "name='Capture Volume' 39" + cset "name='Mic Boost Volume' 2" + cset "name='Internal Mic Boost Volume' 0" + #cset "name='Capture Source' 0" + ] + DisableSequence [ + ] + Value { + TQ "Music" + OutputDspName "speaker_eq" + PlaybackPCM "hw:PCH,0" + } +} + +SectionDevice."Headphone".0 { + Value { + JackName "Headphone Jack" + OutputDspName "Jheadphone" + } + EnableSequence [ + cdev "hw:PCH" + + cset "name='Speaker Playback Switch' off" + cset "name='Headphone Playback Switch' on" + ] + DisableSequence [ + cdev "hw:PCH" + + cset "name='Headphone Playback Switch' off" + cset "name='Speaker Playback Switch' on" + ] +} + +SectionDevice."Mic".0 { + Value { + JackName "Mic Jack" + } + EnableSequence [ + cdev "hw:PCH" + + #cset "name='Capture Source' 1" + ] + DisableSequence [ + cdev "hw:PCH" + + cset "name='Capture Source' 0" + ] +} + +SectionModifier."RecordMedia".0 { + SupportedDevice [ + "Headphone" + ] + EnableSequence [ + cdev "hw:PCH" + ] + + DisableSequence [ + cdev "hw:PCH" + ] + + TransitionSequence."ToModifierName" [ + cdev "hw:PCH" + ] + + # Optional TQ and ALSA PCMs + Value { + TQ Voice + CapturePCM "hw:1" + PlaybackVolume "name='Master Playback Volume',index=2" + PlaybackSwitch "name='Master Playback Switch',index=2" + } + +} + |