From 50212fde09291eeffc7e48082d7bf4b7d713a80b Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Fri, 10 Jan 2003 17:51:03 +0000 Subject: [PATCH] added the configurations for VIA8233 and VIA8233A. --- src/conf/cards/Makefile.am | 4 +- src/conf/cards/VIA8233.conf | 91 ++++++++++++++++++++++++++++++++++++ src/conf/cards/VIA8233A.conf | 86 ++++++++++++++++++++++++++++++++++ 3 files changed, 180 insertions(+), 1 deletion(-) create mode 100644 src/conf/cards/VIA8233.conf create mode 100644 src/conf/cards/VIA8233A.conf diff --git a/src/conf/cards/Makefile.am b/src/conf/cards/Makefile.am index db7c52a2..66c89cba 100644 --- a/src/conf/cards/Makefile.am +++ b/src/conf/cards/Makefile.am @@ -15,7 +15,9 @@ cfg_files = aliases.conf \ RME9652.conf \ SI7018.conf \ TRID4DWAVENX.conf \ - YMF744.conf + YMF744.conf \ + VIA8233.conf \ + VIA8233A.conf EXTRA_DIST = $(cfg_files) alsa_DATA = $(cfg_files) diff --git a/src/conf/cards/VIA8233.conf b/src/conf/cards/VIA8233.conf new file mode 100644 index 00000000..59581cc6 --- /dev/null +++ b/src/conf/cards/VIA8233.conf @@ -0,0 +1,91 @@ +# +# Configuration for the VIA8233/VIA8233C/VIA8235 chip with 4/6 multi-channel support +# + + + +VIA8233.pcm.front.0 { + @args [ CARD ] + @args.CARD { + type string + } + type hw + card $CARD + device 0 +} + + + +VIA8233.pcm.surround40.0 { + @args [ CARD ] + @args.CARD { + type string + } + type hw + card $CARD + device 1 +} + + + +VIA8233.pcm.surround51.0 "cards.VIA8233.pcm.surround40.0" + + + +VIA8233.pcm.iec958.0 { + @args [ CARD AES0 AES1 AES2 AES3 ] + @args.CARD { + type string + } + @args.DEV { + type integer + } + @args.AES0 { + type integer + } + @args.AES1 { + type integer + } + @args.AES2 { + type integer + } + @args.AES3 { + type integer + } + type hooks + slave.pcm { + type hw + card $CARD + device 0 + subdevice 3 + } + hooks.0 { + type ctl_elems + hook_args [ + { + name "IEC958 Playback AC97-SPSA" + lock true + preserve true + value 0 + } + { + name "IEC958 Playback Default" + lock true + preserve true + value [ $AES0 $AES1 $AES2 $AES3 ] + } + { + name "IEC958 Playback Switch" + lock true + preserve true + value true + } + { + name "IEC958 Output Switch" + lock true + preserve true + value true + } + ] + } +} diff --git a/src/conf/cards/VIA8233A.conf b/src/conf/cards/VIA8233A.conf new file mode 100644 index 00000000..41d8cddb --- /dev/null +++ b/src/conf/cards/VIA8233A.conf @@ -0,0 +1,86 @@ +# +# Configuration for the VIA8233A chip with 4/6 multi-channel support +# + + + +VIA8233A.pcm.front.0 { + @args [ CARD ] + @args.CARD { + type string + } + type hw + card $CARD + device 0 +} + + + +VIA8233A.pcm.surround51.0 "cards.VIA8233A.pcm.surround40.0" + + + +VIA8233A.pcm.surround51.0 "cards.VIA8233A.pcm.surround40.0" + + + +VIA8233A.pcm.iec958.0 { + @args [ CARD AES0 AES1 AES2 AES3 ] + @args.CARD { + type string + } + @args.DEV { + type integer + } + @args.AES0 { + type integer + } + @args.AES1 { + type integer + } + @args.AES2 { + type integer + } + @args.AES3 { + type integer + } + type hooks + slave.pcm { + type hw + card $CARD + device 1 + } + hooks.0 { + type ctl_elems + hook_args [ + { + name "IEC958 Playback AC97-SPSA" + device 0 + lock true + preserve true + value 0 + } + { + name "IEC958 Playback Default" + device 0 + lock true + preserve true + value [ $AES0 $AES1 $AES2 $AES3 ] + } + { + name "IEC958 Playback Switch" + device 0 + lock true + preserve true + value true + } + { + name "IEC958 Output Switch" + device 0 + lock true + preserve true + value true + } + ] + } +} -- 2.47.1