Am Dienstag, den 27.09.2011, 14:52 +0200 schrieb Takashi Iwai:
At Mon, 19 Sep 2011 20:39:58 +0200, Paul Menzel wrote:
Am Montag, den 19.09.2011, 15:19 +0200 schrieb Takashi Iwai:
At Mon, 19 Sep 2011 14:50:35 +0200, Paul Menzel wrote:
Am Montag, den 19.09.2011, 11:27 +0200 schrieb Takashi Iwai:
At Sun, 18 Sep 2011 20:28:03 +0200, Paul Menzel wrote:
Am Mittwoch, den 14.09.2011, 00:11 +0200 schrieb Paul Menzel: > Am Montag, den 12.09.2011, 11:28 +0200 schrieb Takashi Iwai: > > At Wed, 31 Aug 2011 12:37:28 +0200, Daniel Mack wrote: > > > > > > On Wed, Aug 31, 2011 at 12:19 PM, Paul Menzel wrote: > > > > > Am Donnerstag, den 25.08.2011, 17:01 +0200 schrieb Paul Menzel: > > > > > > > > […] > > > > > > > >> I just want to add that I also see these messages with Linux kernel > > > >> 3.0.2 and say seem to be related to suspend and resume. > > > >> > > > >> The values seem to differ though every time. > > > >> > > > >> [ 1130.984969] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 > > > >> [ 1130.984990] hda-intel: spurious response 0x1003c:0x0, last cmd=0x620000 > > > >> [ 1130.985011] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 > > > >> [ 1130.985032] hda-intel: spurious response 0x10034:0x0, last cmd=0x620000 > > > >> [ 1130.985053] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 > > > >> > > > >> [ … another suspend/resume … ] > > > >> > > > >> [ 2726.277102] hda-intel: spurious response 0x0:0x0, last cmd=0x1e70700 > > > >> [ 2726.277123] hda-intel: spurious response 0x0:0x0, last cmd=0x1e70700 > > > >> [ 2726.277144] hda-intel: spurious response 0x0:0x0, last cmd=0x1e70700 > > > >> [ 2726.277165] hda-intel: spurious response 0xb:0x0, last cmd=0x1e70700 > > > >> > > > >> Please find the output of `alsa-info.sh` [1] with this Linux version at > > > >> the end.
[…]
> > The verb 0x620000 is to set a stream format to NID 0x06. > > For further debugging, more detailed information is needed. > > > > I seem to have lost the original post, so could you attach > > alsa-info.sh output again, Paul? > > Unfortunately I have to compress them due to the size limit. (Could you > increase that to for example 150 kB?)
The output of `alsa-info.sh` with Linux 3.1-rc6 (3ab0fcd6c)
commit 3ab0fcd6cd45d0d0cac114e498848f37e7a463b2 Merge: 9183834 14515a0 Author: Takashi Iwai <tiwai@suse.de> Date: Fri Sep 16 08:34:05 2011 +0200 Merge branch 'topic/misc'
is as follows.
Thanks. Judging from the alsa-info.sh output, the relevant widgets are for the SPDIF output, and I guess the messages are harmless.
Anyway, could you try the patch below?
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 2a8bed9..ef7e8de 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2925,7 +2925,7 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = { .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, /* VIA VT8251/VT8237A */ { PCI_DEVICE(0x1106, 0x3288),
.driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA },
/* SIS966 */ { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS }, /* ULI M5461 */.driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA | AZX_DCAPS_SYNC_WRITE },
I applied your patch, did `make oldconfig`, `make -j2 deb-pkg`, installed the packages and rebooted. But the message are still there as far as I can see.
OK, then it's really spurious interrupts. This should be harmless, so you can ignore these messages.
Or, the patch below might work (just hide the messages).
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 2a8bed9..3449024 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -443,6 +443,7 @@ struct azx { unsigned int msi :1; unsigned int irq_pending_warned :1; unsigned int probing :1; /* codec probing phase */
unsigned int in_suspend:1;
/* for debugging */ unsigned int last_cmd[AZX_MAX_CODECS];
@@ -696,11 +697,15 @@ static void azx_update_rirb(struct azx *chip) chip->rirb.res[addr] = res; smp_wmb(); chip->rirb.cmds[addr]--;
} else
} else if (!chip->in_suspend) {
/* we ignore spurious response messages during susepnd,
sus*pe*nd
* as some chips actually send bogus messages
*/ snd_printk(KERN_ERR SFX "spurious response %#x:%#x, " "last cmd=%#08x\n", res, res_ex, chip->last_cmd[addr]);
}}
}
@@ -2267,6 +2272,7 @@ static int azx_suspend(struct pci_dev *pci, pm_message_t state) struct azx *chip = card->private_data; int i;
- chip->in_suspend = 1; snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); azx_clear_irq_pending(chip); for (i = 0; i < HDA_MAX_PCMS; i++)
@@ -2283,6 +2289,7 @@ static int azx_suspend(struct pci_dev *pci, pm_message_t state) pci_disable_device(pci); pci_save_state(pci); pci_set_power_state(pci, pci_choose_state(pci, state));
- chip->in_suspend = 0; return 0;
}
Takashi, thank you very much for help and bearing with me. I applied your patch on top of the other one. The messages after resuming are gone but I still get these messages on start up (I think logging into GNOME).
OK, so something must be done not only suppressing the PM warnings.
BTW, I'm checking the non-snooping mode, and it might help in some corner cases like yours, too. Could you test the patch below? It might be fuzzy to apply to 3.0, but should be trivial to edit by hand.
[…]
I applied your patch on top of 72179668d9bab7cc2d4ceb8de564f2e8835a1fdb. But I am still seeing these messages. Sound playback works though.
Thanks,
Paul
!!################################ !!ALSA Information Script v 0.4.60 !!################################
!!Script ran on: Thu Sep 29 13:19:37 UTC 2011
!!Linux Distribution !!------------------
Debian GNU/Linux wheezy/sid \n \l
!!DMI Information !!---------------
Manufacturer: System manufacturer Product Name: System Product Name Product Version: System Version
!!Kernel Information !!------------------
Kernel release: 3.1.0-rc1+ Operating System: GNU/Linux Architecture: i686 Processor: unknown SMP Enabled: Yes
!!ALSA Version !!------------
Driver version: 1.0.24 Library version: 1.0.24.1 Utilities version: 1.0.24.2
!!Loaded ALSA modules !!-------------------
snd_hda_intel
!!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 (/usr/bin/artsd) Running - No
Jack: Installed - Yes (/usr/bin/jackd) Running - No
!!Soundcards recognised by ALSA !!-----------------------------
0 [VT82xx ]: HDA-Intel - HDA VIA VT82xx HDA VIA VT82xx at 0xfbffc000 irq 17
!!PCI Soundcards installed in the system !!--------------------------------------
20:01.0 Audio device: VIA Technologies, Inc. VT1708/A [Azalia HDAC] (VIA High Definition Audio Controller) (rev 10)
!!Advanced information - PCI Vendor/Device/Subsystem ID's !!--------------------------------------------------------
20:01.0 0403: 1106:3288 (rev 10) Subsystem: 1043:8290
!!Modprobe options (Sound related) !!--------------------------------
snd-atiixp-modem: index=-2 snd-intel8x0m: index=-2 snd-via82xx-modem: index=-2 snd-pcsp: index=-2 snd-usb-audio: index=-2
!!Loaded sound module options !!--------------------------
!!Module: snd_hda_intel align_buffer_size : Y bdl_pos_adj : 32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 beep_mode : 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 enable : Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y enable_msi : -1 id : (null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null) index : -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 model : (null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null) patch : (null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null) position_fix : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 power_save : 0 power_save_controller : Y probe_mask : -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 probe_only : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 single_cmd : N snoop : N
!!HDA-Intel Codec information !!--------------------------- --startcollapse--
Codec: Realtek ALC662 rev1 Address: 0 AFG Function Id: 0x1 (unsol 1) Vendor Id: 0x10ec0662 Subsystem Id: 0x10438290 Revision Id: 0x100101 No Modem Function Group found Default PCM: rates [0x160]: 44100 48000 96000 bits [0xe]: 16 20 24 formats [0x1]: PCM Default Amp-In caps: N/A Default Amp-Out caps: N/A GPIO: io=2, o=0, i=0, unsolicited=1, wake=0 IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0 IO[1]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0 Node 0x02 [Audio Output] wcaps 0x1d: Stereo Amp-Out Control: name="Front Playback Volume", index=0, device=0 ControlAmp: chs=3, dir=Out, idx=0, ofs=0 Device: name="ALC662 rev1 Analog", type="Audio", device=0 Amp-Out caps: ofs=0x40, nsteps=0x40, stepsize=0x03, mute=0 Amp-Out vals: [0x40 0x40] Converter: stream=0, channel=0 PCM: rates [0x160]: 44100 48000 96000 bits [0xe]: 16 20 24 formats [0x1]: PCM Node 0x03 [Audio Output] wcaps 0x1d: Stereo Amp-Out Control: name="Surround Playback Volume", index=0, device=0 ControlAmp: chs=3, dir=Out, idx=0, ofs=0 Amp-Out caps: ofs=0x40, nsteps=0x40, stepsize=0x03, mute=0 Amp-Out vals: [0x40 0x40] Converter: stream=0, channel=0 PCM: rates [0x160]: 44100 48000 96000 bits [0xe]: 16 20 24 formats [0x1]: PCM Node 0x04 [Audio Output] wcaps 0x1d: Stereo Amp-Out Control: name="Center Playback Volume", index=0, device=0 ControlAmp: chs=1, dir=Out, idx=0, ofs=0 Control: name="LFE Playback Volume", index=0, device=0 ControlAmp: chs=2, dir=Out, idx=0, ofs=0 Amp-Out caps: ofs=0x40, nsteps=0x40, stepsize=0x03, mute=0 Amp-Out vals: [0x40 0x40] Converter: stream=0, channel=0 PCM: rates [0x160]: 44100 48000 96000 bits [0xe]: 16 20 24 formats [0x1]: PCM Node 0x05 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x06 [Audio Output] wcaps 0x211: Stereo Digital Control: name="IEC958 Playback Con Mask", index=0, device=0 Control: name="IEC958 Playback Pro Mask", index=0, device=0 Control: name="IEC958 Playback Default", index=0, device=0 Control: name="IEC958 Playback Switch", index=0, device=0 Control: name="IEC958 Default PCM Playback Switch", index=0, device=0 Device: name="ALC662 rev1 Digital", type="SPDIF", device=1 Converter: stream=0, channel=0 Digital: Enabled Digital category: 0x0 PCM: rates [0x160]: 44100 48000 96000 bits [0x1e]: 16 20 24 32 formats [0x1]: PCM Node 0x07 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x08 [Audio Input] wcaps 0x10011b: Stereo Amp-In Control: name="Capture Switch", index=0, device=0 Control: name="Capture Volume", index=0, device=0 Device: name="ALC662 rev1 Analog", type="Audio", device=0 Amp-In caps: ofs=0x09, nsteps=0x1f, stepsize=0x05, mute=1 Amp-In vals: [0x18 0x18] Converter: stream=0, channel=0 SDI-Select: 0 PCM: rates [0x160]: 44100 48000 96000 bits [0x6]: 16 20 formats [0x1]: PCM Connection: 1 0x23 Node 0x09 [Audio Input] wcaps 0x10011b: Stereo Amp-In Control: name="Capture Switch", index=1, device=0 Control: name="Capture Volume", index=1, device=0 Device: name="ALC662 rev1 Analog", type="Audio", device=2 Amp-In caps: ofs=0x09, nsteps=0x1f, stepsize=0x05, mute=1 Amp-In vals: [0x89 0x89] Converter: stream=0, channel=0 SDI-Select: 0 PCM: rates [0x160]: 44100 48000 96000 bits [0x6]: 16 20 formats [0x1]: PCM Connection: 1 0x22 Node 0x0a [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x0b [Audio Mixer] wcaps 0x20010b: Stereo Amp-In Control: name="Rear Mic Playback Volume", index=0, device=0 ControlAmp: chs=3, dir=In, idx=0, ofs=0 Control: name="Rear Mic Playback Switch", index=0, device=0 ControlAmp: chs=3, dir=In, idx=0, ofs=0 Control: name="Front Mic Playback Volume", index=0, device=0 ControlAmp: chs=3, dir=In, idx=1, ofs=0 Control: name="Front Mic Playback Switch", index=0, device=0 ControlAmp: chs=3, dir=In, idx=1, ofs=0 Control: name="Line Playback Volume", index=0, device=0 ControlAmp: chs=3, dir=In, idx=2, ofs=0 Control: name="Line Playback Switch", index=0, device=0 ControlAmp: chs=3, dir=In, idx=2, ofs=0 Amp-In caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1 Amp-In vals: [0x80 0x80] [0x14 0x14] [0x10 0x10] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] Connection: 9 0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 Node 0x0c [Audio Mixer] wcaps 0x20010b: Stereo Amp-In Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-In vals: [0x00 0x00] [0x00 0x00] Connection: 2 0x02 0x0b Node 0x0d [Audio Mixer] wcaps 0x20010b: Stereo Amp-In Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-In vals: [0x00 0x00] [0x80 0x80] Connection: 2 0x03 0x0b Node 0x0e [Audio Mixer] wcaps 0x20010b: Stereo Amp-In Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-In vals: [0x00 0x00] [0x80 0x80] Connection: 2 0x04 0x0b Node 0x0f [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x10 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x11 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x12 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x13 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x14 [Pin Complex] wcaps 0x40018d: Stereo Amp-Out Control: name="Front Playback Switch", index=0, device=0 ControlAmp: chs=3, dir=Out, idx=0, ofs=0 Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x00 0x00] Pincap 0x0001003c: IN OUT HP EAPD Detect EAPD 0x2: EAPD Pin Default 0x01014010: [Jack] Line Out at Ext Rear Conn = 1/8, Color = Green DefAssociation = 0x1, Sequence = 0x0 Pin-ctls: 0x40: OUT Unsolicited: tag=00, enabled=0 Connection: 1 0x0c Node 0x15 [Pin Complex] wcaps 0x40018d: Stereo Amp-Out Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x80 0x80] Pincap 0x00010034: IN OUT EAPD Detect EAPD 0x2: EAPD Pin Default 0x411111f0: [N/A] Speaker at Ext Rear Conn = 1/8, Color = Black DefAssociation = 0xf, Sequence = 0x0 Misc = NO_PRESENCE Pin-ctls: 0x20: IN Unsolicited: tag=00, enabled=0 Connection: 1 0x0d Node 0x16 [Pin Complex] wcaps 0x40018d: Stereo Amp-Out Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x80 0x80] Pincap 0x00000034: IN OUT Detect Pin Default 0x411111f0: [N/A] Speaker at Ext Rear Conn = 1/8, Color = Black DefAssociation = 0xf, Sequence = 0x0 Misc = NO_PRESENCE Pin-ctls: 0x20: IN Unsolicited: tag=00, enabled=0 Connection: 1 0x0e Node 0x17 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x18 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out Control: name="Center Playback Switch", index=0, device=0 ControlAmp: chs=1, dir=Out, idx=0, ofs=0 Control: name="LFE Playback Switch", index=0, device=0 ControlAmp: chs=2, dir=Out, idx=0, ofs=0 Control: name="Rear Mic Boost Volume", index=0, device=0 ControlAmp: chs=3, dir=In, idx=0, ofs=0 Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0 Amp-In vals: [0x00 0x00] Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x00 0x00] Pincap 0x00001734: IN OUT Detect Vref caps: HIZ 50 GRD 80 Pin Default 0x01a19840: [Jack] Mic at Ext Rear Conn = 1/8, Color = Pink DefAssociation = 0x4, Sequence = 0x0 Pin-ctls: 0x24: IN VREF_80 Unsolicited: tag=00, enabled=0 Connection: 1 0x0e Node 0x19 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out Control: name="Front Mic Boost Volume", index=0, device=0 ControlAmp: chs=3, dir=In, idx=0, ofs=0 Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0 Amp-In vals: [0x00 0x00] Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x80 0x80] Pincap 0x0000173c: IN OUT HP Detect Vref caps: HIZ 50 GRD 80 Pin Default 0x02a19950: [Jack] Mic at Ext Front Conn = 1/8, Color = Pink DefAssociation = 0x5, Sequence = 0x0 Misc = NO_PRESENCE Pin-ctls: 0x24: IN VREF_80 Unsolicited: tag=00, enabled=0 Connection: 2 0x0c* 0x0e Node 0x1a [Pin Complex] wcaps 0x40018d: Stereo Amp-Out Control: name="Surround Playback Switch", index=0, device=0 ControlAmp: chs=3, dir=Out, idx=0, ofs=0 Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x00 0x00] Pincap 0x00000034: IN OUT Detect Pin Default 0x0181304f: [Jack] Line In at Ext Rear Conn = 1/8, Color = Blue DefAssociation = 0x4, Sequence = 0xf Pin-ctls: 0x20: IN Unsolicited: tag=00, enabled=0 Connection: 1 0x0d Node 0x1b [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out Control: name="Headphone Playback Switch", index=0, device=0 ControlAmp: chs=3, dir=Out, idx=0, ofs=0 Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0 Amp-In vals: [0x00 0x00] Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-Out vals: [0x00 0x00] Pincap 0x0000173c: IN OUT HP Detect Vref caps: HIZ 50 GRD 80 Pin Default 0x02214120: [Jack] HP Out at Ext Front Conn = 1/8, Color = Green DefAssociation = 0x2, Sequence = 0x0 Misc = NO_PRESENCE Pin-ctls: 0xc0: OUT HP VREF_HIZ Unsolicited: tag=04, enabled=1 Connection: 2 0x0c* 0x0e Node 0x1c [Pin Complex] wcaps 0x400001: Stereo Pincap 0x00000020: IN Pin Default 0x593301f0: [N/A] CD at Int ATAPI Conn = ATAPI, Color = Unknown DefAssociation = 0xf, Sequence = 0x0 Misc = NO_PRESENCE Pin-ctls: 0x20: IN Node 0x1d [Pin Complex] wcaps 0x400000: Mono Pincap 0x00000020: IN Pin Default 0x4005c603: [N/A] Line Out at Ext N/A Conn = Optical, Color = UNKNOWN DefAssociation = 0x0, Sequence = 0x3 Pin-ctls: 0x20: IN Node 0x1e [Pin Complex] wcaps 0x400300: Mono Digital Pincap 0x00000010: OUT Pin Default 0x99430130: [Fixed] SPDIF Out at Int ATAPI Conn = ATAPI, Color = Unknown DefAssociation = 0x3, Sequence = 0x0 Misc = NO_PRESENCE Pin-ctls: 0x40: OUT Connection: 1 0x06 Node 0x1f [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x20 [Vendor Defined Widget] wcaps 0xf00040: Mono Processing caps: benign=0, ncoeff=12 Node 0x21 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x22 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In Control: name="Input Source", index=1, device=0 Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-In vals: [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] Connection: 10 0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x0b Node 0x23 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In Control: name="Input Source", index=0, device=0 Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1 Amp-In vals: [0x00 0x00] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] Connection: 10 0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x0b Node 0x24 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x25 [Vendor Defined Widget] wcaps 0xf00000: Mono Node 0x26 [Vendor Defined Widget] wcaps 0xf00000: Mono --endcollapse--
!!ALSA Device nodes !!-----------------
crw-rw----+ 1 root audio 116, 7 Sep 29 10:50 /dev/snd/controlC0 crw-rw----+ 1 root audio 116, 6 Sep 29 10:50 /dev/snd/hwC0D0 crw-rw----+ 1 root audio 116, 5 Sep 29 10:52 /dev/snd/pcmC0D0c crw-rw----+ 1 root audio 116, 4 Sep 29 12:00 /dev/snd/pcmC0D0p crw-rw----+ 1 root audio 116, 3 Sep 29 10:52 /dev/snd/pcmC0D1p crw-rw----+ 1 root audio 116, 2 Sep 29 10:50 /dev/snd/pcmC0D2c crw-rw----+ 1 root audio 116, 1 Sep 29 10:50 /dev/snd/seq crw-rw----+ 1 root audio 116, 33 Sep 29 10:50 /dev/snd/timer
/dev/snd/by-path: total 0 drwxr-xr-x 2 root root 60 Sep 29 10:50 . drwxr-xr-x 3 root root 220 Sep 29 10:50 .. lrwxrwxrwx 1 root root 12 Sep 29 10:50 pci-0000:20:01.0 -> ../controlC0
!!ALSA configuration files !!------------------------
!!System wide config file (/etc/asound.conf)
pcm.pulse { type pulse }
ctl.pulse { type pulse }
pcm.!default { type pulse } ctl.!default { type pulse }
!!Aplay/Arecord output !!------------
APLAY
**** List of PLAYBACK Hardware Devices **** card 0: VT82xx [HDA VIA VT82xx], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 0: VT82xx [HDA VIA VT82xx], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital] Subdevices: 1/1 Subdevice #0: subdevice #0
ARECORD
**** List of CAPTURE Hardware Devices **** card 0: VT82xx [HDA VIA VT82xx], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 0: VT82xx [HDA VIA VT82xx], device 2: ALC662 rev1 Analog [ALC662 rev1 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0
!!Amixer output !!-------------
!!-------Mixer controls for card 0 [VT82xx]
Card hw:0 'VT82xx'/'HDA VIA VT82xx at 0xfbffc000 irq 17' Mixer name : 'Realtek ALC662 rev1' Components : 'HDA:10ec0662,10438290,00100101' Controls : 34 Simple ctrls : 21 Simple mixer control 'Master',0 Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum Playback channels: Mono Limits: Playback 0 - 64 Mono: Playback 64 [100%] [0.00dB] [on] Simple mixer control 'Headphone',0 Capabilities: pswitch penum Playback channels: Front Left - Front Right Mono: Front Left: Playback [on] Front Right: Playback [on] Simple mixer control 'PCM',0 Capabilities: pvolume penum Playback channels: Front Left - Front Right Limits: Playback 0 - 255 Mono: Front Left: Playback 255 [100%] [0.00dB] Front Right: Playback 255 [100%] [0.00dB] Simple mixer control 'Front',0 Capabilities: pvolume pswitch penum Playback channels: Front Left - Front Right Limits: Playback 0 - 64 Mono: Front Left: Playback 64 [100%] [0.00dB] [on] Front Right: Playback 64 [100%] [0.00dB] [on] Simple mixer control 'Front Mic',0 Capabilities: pvolume pswitch penum Playback channels: Front Left - Front Right Limits: Playback 0 - 31 Mono: Front Left: Playback 20 [65%] [-4.50dB] [on] Front Right: Playback 20 [65%] [-4.50dB] [on] Simple mixer control 'Front Mic Boost',0 Capabilities: volume penum Playback channels: Front Left - Front Right Capture channels: Front Left - Front Right Limits: 0 - 3 Front Left: 0 [0%] [0.00dB] Front Right: 0 [0%] [0.00dB] Simple mixer control 'Surround',0 Capabilities: pvolume pswitch penum Playback channels: Front Left - Front Right Limits: Playback 0 - 64 Mono: Front Left: Playback 64 [100%] [0.00dB] [on] Front Right: Playback 64 [100%] [0.00dB] [on] Simple mixer control 'Center',0 Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum Playback channels: Mono Limits: Playback 0 - 64 Mono: Playback 64 [100%] [0.00dB] [on] Simple mixer control 'LFE',0 Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum Playback channels: Mono Limits: Playback 0 - 64 Mono: Playback 64 [100%] [0.00dB] [on] Simple mixer control 'Line',0 Capabilities: pvolume pswitch penum Playback channels: Front Left - Front Right Limits: Playback 0 - 31 Mono: Front Left: Playback 16 [52%] [-10.50dB] [on] Front Right: Playback 16 [52%] [-10.50dB] [on] Simple mixer control 'IEC958',0 Capabilities: pswitch pswitch-joined penum Playback channels: Mono Mono: Playback [on] Simple mixer control 'IEC958 Default PCM',0 Capabilities: pswitch pswitch-joined penum Playback channels: Mono Mono: Playback [off] Simple mixer control 'Capture',0 Capabilities: cvolume cswitch penum Capture channels: Front Left - Front Right Limits: Capture 0 - 31 Front Left: Capture 24 [77%] [22.50dB] [on] Front Right: Capture 24 [77%] [22.50dB] [on] Simple mixer control 'Capture',1 Capabilities: cvolume cswitch penum Capture channels: Front Left - Front Right Limits: Capture 0 - 31 Front Left: Capture 9 [29%] [0.00dB] [off] Front Right: Capture 9 [29%] [0.00dB] [off] Simple mixer control 'Auto-Mute Mode',0 Capabilities: enum Items: 'Disabled' 'Enabled' Item0: 'Enabled' Simple mixer control 'Channel Mode',0 Capabilities: enum Items: '2ch' '4ch' '6ch' Item0: '2ch' Simple mixer control 'Digital',0 Capabilities: cvolume penum Capture channels: Front Left - Front Right Limits: Capture 0 - 120 Front Left: Capture 66 [55%] [3.00dB] Front Right: Capture 66 [55%] [3.00dB] Simple mixer control 'Input Source',0 Capabilities: cenum Items: 'Rear Mic' 'Front Mic' 'Line' Item0: 'Rear Mic' Simple mixer control 'Input Source',1 Capabilities: cenum Items: 'Rear Mic' 'Front Mic' 'Line' Item0: 'Rear Mic' Simple mixer control 'Rear Mic',0 Capabilities: pvolume pswitch penum Playback channels: Front Left - Front Right Limits: Playback 0 - 31 Mono: Front Left: Playback 0 [0%] [-34.50dB] [off] Front Right: Playback 0 [0%] [-34.50dB] [off] Simple mixer control 'Rear Mic Boost',0 Capabilities: volume penum Playback channels: Front Left - Front Right Capture channels: Front Left - Front Right Limits: 0 - 3 Front Left: 0 [0%] [0.00dB] Front Right: 0 [0%] [0.00dB]
!!Alsactl output !!-------------
--startcollapse-- state.VT82xx { control.1 { iface MIXER name 'Channel Mode' value '2ch' comment { access 'read write' type ENUMERATED count 1 item.0 '2ch' item.1 '4ch' item.2 '6ch' } } control.2 { iface MIXER name 'Front Playback Volume' value.0 64 value.1 64 comment { access 'read write' type INTEGER count 2 range '0 - 64' dbmin -6400 dbmax 0 dbvalue.0 0 dbvalue.1 0 } } control.3 { iface MIXER name 'Front Playback Switch' value.0 true value.1 true comment { access 'read write' type BOOLEAN count 2 } } control.4 { iface MIXER name 'Surround Playback Volume' value.0 64 value.1 64 comment { access 'read write' type INTEGER count 2 range '0 - 64' dbmin -6400 dbmax 0 dbvalue.0 0 dbvalue.1 0 } } control.5 { iface MIXER name 'Surround Playback Switch' value.0 true value.1 true comment { access 'read write' type BOOLEAN count 2 } } control.6 { iface MIXER name 'Center Playback Volume' value 64 comment { access 'read write' type INTEGER count 1 range '0 - 64' dbmin -6400 dbmax 0 dbvalue.0 0 } } control.7 { iface MIXER name 'LFE Playback Volume' value 64 comment { access 'read write' type INTEGER count 1 range '0 - 64' dbmin -6400 dbmax 0 dbvalue.0 0 } } control.8 { iface MIXER name 'Center Playback Switch' value true comment { access 'read write' type BOOLEAN count 1 } } control.9 { iface MIXER name 'LFE Playback Switch' value true comment { access 'read write' type BOOLEAN count 1 } } control.10 { iface MIXER name 'Headphone Playback Switch' value.0 true value.1 true comment { access 'read write' type BOOLEAN count 2 } } control.11 { iface MIXER name 'Rear Mic Playback Volume' value.0 0 value.1 0 comment { access 'read write' type INTEGER count 2 range '0 - 31' dbmin -3450 dbmax 1200 dbvalue.0 -3450 dbvalue.1 -3450 } } control.12 { iface MIXER name 'Rear Mic Playback Switch' value.0 false value.1 false comment { access 'read write' type BOOLEAN count 2 } } control.13 { iface MIXER name 'Front Mic Playback Volume' value.0 20 value.1 20 comment { access 'read write' type INTEGER count 2 range '0 - 31' dbmin -3450 dbmax 1200 dbvalue.0 -450 dbvalue.1 -450 } } control.14 { iface MIXER name 'Front Mic Playback Switch' value.0 true value.1 true comment { access 'read write' type BOOLEAN count 2 } } control.15 { iface MIXER name 'Line Playback Volume' value.0 16 value.1 16 comment { access 'read write' type INTEGER count 2 range '0 - 31' dbmin -3450 dbmax 1200 dbvalue.0 -1050 dbvalue.1 -1050 } } control.16 { iface MIXER name 'Line Playback Switch' value.0 true value.1 true comment { access 'read write' type BOOLEAN count 2 } } control.17 { iface MIXER name 'Auto-Mute Mode' value Enabled comment { access 'read write' type ENUMERATED count 1 item.0 Disabled item.1 Enabled } } control.18 { iface MIXER name 'Rear Mic Boost Volume' value.0 0 value.1 0 comment { access 'read write' type INTEGER count 2 range '0 - 3' dbmin 0 dbmax 3000 dbvalue.0 0 dbvalue.1 0 } } control.19 { iface MIXER name 'Front Mic Boost Volume' value.0 0 value.1 0 comment { access 'read write' type INTEGER count 2 range '0 - 3' dbmin 0 dbmax 3000 dbvalue.0 0 dbvalue.1 0 } } control.20 { iface MIXER name 'Capture Switch' value.0 true value.1 true comment { access 'read write' type BOOLEAN count 2 } } control.21 { iface MIXER name 'Capture Switch' index 1 value.0 false value.1 false comment { access 'read write' type BOOLEAN count 2 } } control.22 { iface MIXER name 'Capture Volume' value.0 24 value.1 24 comment { access 'read write' type INTEGER count 2 range '0 - 31' dbmin -1350 dbmax 3300 dbvalue.0 2250 dbvalue.1 2250 } } control.23 { iface MIXER name 'Capture Volume' index 1 value.0 9 value.1 9 comment { access 'read write' type INTEGER count 2 range '0 - 31' dbmin -1350 dbmax 3300 dbvalue.0 0 dbvalue.1 0 } } control.24 { iface MIXER name 'Input Source' value 'Rear Mic' comment { access 'read write' type ENUMERATED count 1 item.0 'Rear Mic' item.1 'Front Mic' item.2 Line } } control.25 { iface MIXER name 'Input Source' index 1 value 'Rear Mic' comment { access 'read write' type ENUMERATED count 1 item.0 'Rear Mic' item.1 'Front Mic' item.2 Line } } control.26 { iface MIXER name 'IEC958 Playback Con Mask' value '0fff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' comment { access read type IEC958 count 1 } } control.27 { iface MIXER name 'IEC958 Playback Pro Mask' value '0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' comment { access read type IEC958 count 1 } } control.28 { iface MIXER name 'IEC958 Playback Default' value '0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' comment { access 'read write' type IEC958 count 1 } } control.29 { iface MIXER name 'IEC958 Playback Switch' value true comment { access 'read write' type BOOLEAN count 1 } } control.30 { iface MIXER name 'IEC958 Default PCM Playback Switch' value false comment { access 'read write' type BOOLEAN count 1 } } control.31 { iface MIXER name 'Master Playback Volume' value 64 comment { access 'read write' type INTEGER count 1 range '0 - 64' dbmin -6400 dbmax 0 dbvalue.0 0 } } control.32 { iface MIXER name 'Master Playback Switch' value true comment { access 'read write' type BOOLEAN count 1 } } control.33 { iface MIXER name 'PCM Playback Volume' value.0 255 value.1 255 comment { access 'read write user' type INTEGER count 2 range '0 - 255' tlv '0000000100000008ffffec1400000014' dbmin -5100 dbmax 0 dbvalue.0 0 dbvalue.1 0 } } control.34 { iface MIXER name 'Digital Capture Volume' value.0 66 value.1 66 comment { access 'read write user' type INTEGER count 2 range '0 - 120' tlv '0000000100000008fffff44800000032' dbmin -3000 dbmax 3000 dbvalue.0 300 dbvalue.1 300 } } } --endcollapse--
!!All Loaded Modules !!------------------
Module binfmt_misc via drm ip6table_filter ip6_tables iptable_filter ip_tables x_tables powernow_k8 mperf cpufreq_conservative cpufreq_userspace cpufreq_stats cpufreq_powersave reiserfs xfs fuse kvm_amd kvm loop firewire_sbp2 firewire_core crc_itu_t snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device psmouse snd i2c_viapro processor soundcore snd_page_alloc parport_pc i2c_core serio_raw evdev parport asus_atk0110 k8temp thermal_sys shpchp pci_hotplug button ext3 jbd mbcache sha256_generic aes_generic cbc dm_crypt dm_mod raid1 md_mod usbhid hid sg sr_mod cdrom sd_mod crc_t10dif ata_generic sata_via pata_via libata uhci_hcd ehci_hcd scsi_mod usbcore via_rhine mii
!!Sysfs Files !!-----------
/sys/class/sound/hwC0D0/init_pin_configs: 0x14 0x01014010 0x15 0x411111f0 0x16 0x411111f0 0x18 0x01a19840 0x19 0x02a19950 0x1a 0x0181304f 0x1b 0x02214120 0x1c 0x593301f0 0x1d 0x4005c603 0x1e 0x99430130
/sys/class/sound/hwC0D0/driver_pin_configs:
/sys/class/sound/hwC0D0/user_pin_configs:
/sys/class/sound/hwC0D0/init_verbs:
!!ALSA/HDA dmesg !!------------------
[ 15.795089] ACPI: acpi_idle registered with cpuidle [ 16.898551] snd_hda_intel 0000:20:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 [ 16.898605] snd_hda_intel 0000:20:01.0: setting latency timer to 64 [ 16.898611] snd_hda_intel 0000:20:01.0: PCI: Disallowing DAC for device [ 17.003228] input: HDA VIA VT82xx Headphone as /devices/pci0000:20/0000:20:01.0/sound/card0/input4 [ 17.093168] input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input5 -- [ 86.317804] pci 0000:01:00.0: putting AGP V3 device into 8x mode [ 129.135910] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj. [10625.021275] PM: Syncing filesystems ... done. -- [10625.600049] uhci_hcd 0000:00:10.1: PCI INT B disabled [10625.704466] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704486] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704507] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704527] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704548] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704569] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704590] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704611] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704632] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704653] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704673] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704694] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704715] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704736] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704757] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704778] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704799] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704819] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704840] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704861] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704882] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704902] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704923] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704944] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704965] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.704986] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705007] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705027] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705048] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705069] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705090] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705111] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705132] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705153] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705174] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705194] hda-intel: spurious response 0x50:0x0, last cmd=0x620000 [10625.705215] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705236] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705257] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705278] hda-intel: spurious response 0x50:0x0, last cmd=0x620000 [10625.705299] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705320] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705340] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705361] hda-intel: spurious response 0x50:0x0, last cmd=0x620000 [10625.705382] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705402] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705423] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705444] hda-intel: spurious response 0x10:0x0, last cmd=0x620000 [10625.705465] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705486] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705507] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705528] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705548] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705569] hda-intel: spurious response 0x50:0x0, last cmd=0x620000 [10625.705590] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705611] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705632] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705653] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705674] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705694] hda-intel: spurious response 0x4013:0x0, last cmd=0x620000 [10625.705715] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705736] hda-intel: spurious response 0x4013:0x0, last cmd=0x620000 [10625.705757] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705778] hda-intel: spurious response 0x50:0x0, last cmd=0x620000 [10625.705798] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705819] hda-intel: spurious response 0x4013:0x0, last cmd=0x620000 [10625.705840] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705861] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705882] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705902] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705923] hda-intel: spurious response 0x80:0x0, last cmd=0x620000 [10625.705944] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.705965] hda-intel: spurious response 0x4011:0x0, last cmd=0x620000 [10625.705986] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706007] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706028] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706049] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706069] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706090] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706111] hda-intel: spurious response 0x4015:0x0, last cmd=0x620000 [10625.706132] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706153] hda-intel: spurious response 0x52:0x0, last cmd=0x620000 [10625.706174] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706195] hda-intel: spurious response 0x4015:0x0, last cmd=0x620000 [10625.706215] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706236] hda-intel: spurious response 0x54:0x0, last cmd=0x620000 [10625.706257] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706277] hda-intel: spurious response 0x4015:0x0, last cmd=0x620000 [10625.706298] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706319] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706340] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706361] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706382] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706403] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706423] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706444] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706465] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706486] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706507] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706528] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706549] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706569] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706590] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706611] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706632] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706653] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706673] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706694] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706715] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706736] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706757] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706777] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706798] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706819] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.706840] hda-intel: spurious response 0x0:0x0, last cmd=0x620000 [10625.808071] snd_hda_intel 0000:20:01.0: PCI INT A disabled [10625.949451] sata_via 0000:00:0f.0: PCI INT B disabled -- [10626.150598] pci 0000:01:00.0: restoring config space at offset 0x1 (was 0x2300007, writing 0x2300003) [10626.150629] snd_hda_intel 0000:20:01.0: restoring config space at offset 0x3 (was 0x0, writing 0x10) [10626.150635] snd_hda_intel 0000:20:01.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002) [10626.150737] PM: early resume of devices complete after 0.859 msecs -- [10626.151045] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [10626.151058] snd_hda_intel 0000:20:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 [10626.151064] snd_hda_intel 0000:20:01.0: setting latency timer to 64 [10626.151536] sd 3:0:0:0: [sda] Starting disk