!!################################ !!ALSA Information Script v 0.4.58 !!################################ !!Script ran on: Fri Dec 18 22:46:42 UTC 2009 !!Linux Distribution !!------------------ Welcome to openSUSE 11.2 "Emerald" - Kernel \r (\l). openSUSE 11.2 (x86_64) LSB_VERSION="core-2.0-noarch:core-3.2-noarch:core-4.0-noarch:core-2.0-x86_64:core-3.2-x86_64:core-4.0-x86_64" !!DMI Information !!--------------- Manufacturer: System manufacturer Product Name: System Product Name !!Kernel Information !!------------------ Kernel release: 2.6.31.5-0.1-desktop Operating System: GNU/Linux Architecture: x86_64 Processor: x86_64 SMP Enabled: Yes !!ALSA Version !!------------ Driver version: Library version: Utilities version: 1.0.21 !!Loaded ALSA modules !!------------------- !!Sound Servers on this system !!---------------------------- Pulseaudio: Installed - Yes (/usr/bin/pulseaudio) Running - Yes ESound Daemon: Installed - Yes (/usr/bin/esd) Running - No aRts: Installed - Yes (/opt/kde3/bin/artsd) Running - No !!Soundcards recognised by ALSA !!----------------------------- !!PCI Soundcards installed in the system !!-------------------------------------- 00:07.0 Audio device: nVidia Corporation MCP72XE/MCP72P/MCP78U/MCP78S High Definition Audio (rev a1) 01:06.0 Multimedia video controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder (rev 05) 01:06.1 Multimedia controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] (rev 05) 01:06.2 Multimedia controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [MPEG Port] (rev 05) 01:06.4 Multimedia controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [IR Port] (rev 05) !!Advanced information - PCI Vendor/Device/Susbsystem ID's !!-------------------------------------------------------- 00:07.0 0403: 10de:0774 (rev a1) Subsystem: 1043:8345 !!Loaded sound module options !!-------------------------- !!ALSA Device nodes !!----------------- !!ALSA configuration files !!------------------------ !!System wide config file (/etc/asound.conf) #ALSA configuration file ##### USAGE ##### # Save this file as "~/.asoundrc" (for user-specific sound configuration) or # "/etc/asound.conf" (for system-wide sound configuration) and specify ALSA # device names ad described in the next section. ##### DEVICE NAMES ##### # This configuration file defines four devices for use by the user. Those # devices are "analog", "mixed-analog", "digital", and "mixed-digital". The # user may also re-define "default" to be identical to one of the above-named # devices (i.e. to send all sound output to the digital output unless otherwise # specified). Use the device names as described below: # - "analog" outputs to the analog output directly and (at least on software # sound cards) blocks other audio output. After playback completes, "queued" # sounds are output in sequence. # - "mixed-analog" mixes audio output from multiple programs into the analog # output (so you can hear beeps, alerts, and other noises while playing back # an audio stream). # - "digital" outputs to the digital output directly. Since most (all?) # digital outputs expect 48kHz PCM audio, this may not work for some playback # (i.e. CD's--which are 44.1kHz PCM audio--or 32kHz audio streams from TV # recordings, etc.). # - "mixed-digital" # All other devices created within this file are used only by the configuration # file itself and should /not/ be used directly. In other words, do not use # the devices "analog-hw", "dmix-analog", "digital-hw", or "dmix-digital". ##### IMPORTANT ##### # To make this ALSA configuration file work with your sound card, you will need # to define the appropriate card and device information for the "analog-hw" and # "digital-hw" devices below. You can find the card and device information # using "aplay -l". ##### Configuration File ##### # Override the default output used by ALSA. If you do not override the # default, your default device is identical to the (unmixed) "analog" device # shown below. If you prefer mixed and/or digital output, uncomment the # appropriate four lines below (only one slave.pcm line). # # Note, also, that as of ALSA 1.0.9, "software" sound cards have been modified # such that their default "default" device is identical to the "mixed-analog" # device. Whether using an ALSA version before or after 1.0.9, it does no harm # and has no affect on performance to redefine the device (even if the # redefinition does not change anything). Also, by using this ALSA # configuration file, you once again have access to unmixed analog output using # the "analog" device. pcm.!default { type plug ## Uncomment the following to use (unmixed) "analog" by default # slave.pcm "analog-hw" ## Uncomment the following to use "mixed-analog" by default # slave.pcm "dmix-analog" ## Uncomment the following to use (unmixed) "digital" by default slave.pcm "digital-hw" ## Uncomment the following to use "mixed-digital" by default slave.pcm "dmix-digital" } # Control device (mixer, etc.) for the card ctl.!default { type hw card 0 } # Alias for (converted) analog output on the card # - This is identical to the device named "default"--which always exists and # refers to hw:0,0 (unless overridden) # - Therefore, we can specify "hw:0,0", "default", or "analog" to access analog # output on the card # - Note that as of ALSA 1.0.9, "software" sound card definitions redefine # "default" to do mixing, meaning this device is different from "default" and # allows playback while blocking other sound sources (until playback # completes). pcm.analog { type plug slave.pcm "analog-hw" } # Control device (mixer, etc.) for the card ctl.analog { type hw card 0 } # Alias for (converted) mixed analog output on the card # - This will accept audio input--regardless of rate--and convert to the rate # required for the dmix plugin (in this case 48000Hz) # - Note that as of ALSA 1.0.9, "software" sound card definitions redefine # "default" to do mixing, meaning this device is identical to "default" for # "software" sound cards. pcm.mixed-analog { type plug slave.pcm "dmix-analog" } # Control device (mixer, etc.) for the card ctl.mixed-analog { type hw card 0 } # Alias for (converted) digital (S/PDIF) output on the card # - This will accept audio input--regardless of rate--and convert to the rate # required for the S/PDIF hardware (in this case 48000Hz) pcm.digital { type plug slave.pcm "digital-hw" } # Control device (mixer, etc.) for the card ctl.digital { type hw card 0 } # Alias for mixed (converted) digital (S/PDIF) output on the card # - This will accept audio input--regardless of rate--and convert to the rate # required for the S/PDIF hardware (in this case 48000Hz) pcm.mixed-digital { type plug slave.pcm "dmix-digital" } # Control device (mixer, etc.) for the card ctl.mixed-digital { type hw card 0 } # The following devices are not useful by themselves. They require specific # rates, channels, and formats. Therefore, you probably do not want to use # them directly. Instead use of of the devices defined above. # Alias for analog output on the card # Do not use this directly--it requires specific rate, channels, and format pcm.analog-hw { type hw card 0 # The default value for device is 0, so no need to specify # - Uncomment one of the below or create a new "device N" line as appropriate # for your sound card or # device 1 # device 4 } # Control device (mixer, etc.) for the card ctl.analog-hw { type hw card 0 } # Alias for digital (S/PDIF) output on the card # Do not use this directly--it requires specific rate, channels, and format pcm.digital-hw { type hw card 0 device 3 # - Comment out "device 1" above and uncomment one of the below or create a # new "device N" line as appropriate for your sound card or # device 2 # device 4 } # Control device (mixer, etc.) for the card ctl.digital-hw { type hw card 0 } # Direct software mixing plugin for analog output on the card # Do not use this directly--it requires specific rate, channels, and format pcm.dmix-analog { type dmix ipc_key 1234 slave { pcm "analog-hw" period_time 0 period_size 1024 buffer_size 4096 rate 48000 } } # Control device (mixer, etc.) for the card ctl.dmix-analog { type hw card 0 } # Direct software mixing plugin for digital (S/PDIF) output on the card # Do not use this directly--it requires specific rate, channels, and format pcm.dmix-digital { type dmix ipc_key 1235 slave { pcm "digital-hw" period_time 0 period_size 1024 buffer_size 4096 rate 48000 } } # Control device (mixer, etc.) for the card ctl.dmix-digital { type hw card 0 } A A A A A A A A !!Aplay/Arecord output !!------------ APLAY aplay: device_list:223: no soundcards found... ARECORD arecord: device_list:223: no soundcards found... !!Amixer output !!------------- !!Alsactl output !!------------- --startcollapse-- --endcollapse-- !!All Loaded Modules !!------------------ Module cx8800 nvidia ip6t_LOG xt_tcpudp xt_pkttype ipt_LOG xt_limit cpufreq_conservative cpufreq_userspace cpufreq_powersave powernow_k8 nfs nfsd fscache lockd nfs_acl auth_rpcgss sunrpc ip6t_REJECT nf_conntrack_ipv6 ip6table_raw xt_NOTRACK ipt_REJECT xt_state iptable_raw iptable_filter ip6table_mangle nf_conntrack_netbios_ns nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 ip_tables ip6table_filter ip6_tables x_tables fuse xfs exportfs nls_utf8 loop dm_mod lgdt330x dv1394 raw1394 cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core tuner_simple tuner_types tda9887 tda8290 tuner amd64_edac_mod ppdev cx8802 ohci1394 joydev serio_raw pcspkr lirc_imon cx88xx lirc_dev edac_core sg ir_common i2c_algo_bit tveeprom v4l2_common videodev v4l1_compat v4l2_compat_ioctl32 videobuf_dma_sg videobuf_core btcx_risc ieee1394 sr_mod cdrom forcedeth shpchp pci_hotplug parport_pc wmi floppy parport asus_atk0110 button i2c_nforce2 edd fan processor ide_pci_generic amd74xx ide_core ata_generic thermal thermal_sys pata_amd !!ALSA/HDA dmesg !!------------------ [ 6.694334] cx88/0: cx2388x v4l2 driver version 0.0.7 loaded [ 6.694630] HDA Intel 0000:00:07.0: power state changed by ACPI to D0 [ 6.695155] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21 [ 6.695253] HDA Intel 0000:00:07.0: PCI INT A -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21 [ 6.695444] HDA Intel 0000:00:07.0: setting latency timer to 64 [ 6.697905] cx2388x alsa driver version 0.0.7 loaded -- [ 6.855053] cx88[0]: Test OK [ 7.281895] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3881: autoconfig: line_outs=4 (0x1c/0x19/0x22/0x23/0x0) [ 7.281901] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3885: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 7.281905] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3889: hp_outs=1 (0x1d/0x0/0x0/0x0/0x0) [ 7.281908] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3890: mono: mono_out=0x0 [ 7.281911] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3893: dig-out=0x20/0x0 [ 7.281913] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3901: inputs: mic=0x1a, fmic=0x1e, line=0x1b, fline=0x0, cd=0x1f, aux=0x0 [ 7.547889] tuner 1-0043: chip found @ 0x86 (cx88[0]) -- [ 7.804193] IRQ 16/cx88[0]: IRQF_DISABLED is not guaranteed on shared IRQs [ 7.804306] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards [ 7.974702] cx88/2: cx2388x dvb driver version 0.0.7 loaded -- [116484.063102] SFW2-INext-ACC-RPC IN=eth0 OUT= MAC=00:24:8c:be:6e:b8:00:11:11:47:cd:0d:08:00 SRC=192.168.100.233 DST=192.168.100.223 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=51584 DF PROTO=TCP SPT=812 DPT=2049 WINDOW=5840 RES=0x00 SYN URGP=0 OPT (020405B40402080A014858C00000000001030306) [142544.018293] HDA Intel 0000:00:07.0: PCI INT A disabled [142654.958129] HDA Intel 0000:00:07.0: power state changed by ACPI to D0 [142654.958141] HDA Intel 0000:00:07.0: PCI INT A -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21 [142654.958191] HDA Intel 0000:00:07.0: setting latency timer to 64 [142655.227418] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3881: autoconfig: line_outs=4 (0x1c/0x19/0x22/0x23/0x0) [142655.227425] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3885: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [142655.227429] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3889: hp_outs=1 (0x1d/0x0/0x0/0x0/0x0) [142655.227433] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3890: mono: mono_out=0x0 [142655.227435] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3893: dig-out=0x20/0x0 [142655.227438] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3901: inputs: mic=0x1a, fmic=0x1e, line=0x1b, fline=0x0, cd=0x1f, aux=0x0 [142761.681982] HDA Intel 0000:00:07.0: PCI INT A disabled [142761.788747] HDA Intel 0000:00:07.0: power state changed by ACPI to D0 [142761.788760] HDA Intel 0000:00:07.0: PCI INT A -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21 [142761.788987] HDA Intel 0000:00:07.0: setting latency timer to 64 [142762.058678] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3881: autoconfig: line_outs=4 (0x1c/0x19/0x22/0x23/0x0) [142762.058683] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3885: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [142762.058687] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3889: hp_outs=1 (0x1d/0x0/0x0/0x0/0x0) [142762.058690] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3890: mono: mono_out=0x0 [142762.058693] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3893: dig-out=0x20/0x0 [142762.058696] ALSA /usr/src/packages/BUILD/kernel-desktop-2.6.31.5/linux-2.6.31/sound/pci/hda/hda_codec.c:3901: inputs: mic=0x1a, fmic=0x1e, line=0x1b, fline=0x0, cd=0x1f, aux=0x0 [142876.020558] cx88_audio 0000:01:06.1: PCI INT A disabled -- [142876.668801] cx88[0]/0: registered device vbi0 [142943.468946] HDA Intel 0000:00:07.0: PCI INT A disabled