[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2020-05-06 Thread Marcus Tomlinson
This issue has sat incomplete for more than 60 days now. I'm going to
close it as invalid. Please feel free re-open if this is still an issue
for you. Thank you.

** Changed in: alsa-driver (Ubuntu)
   Status: Incomplete => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2020-03-05 Thread Marcus Tomlinson
This release of Ubuntu is no longer receiving maintenance updates. If
this is still an issue on a maintained version of Ubuntu please let us
know.

** Changed in: alsa-driver (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2015-06-17 Thread Bjorn Helgaas
In comment #40, I mistakenly said "we reassign 80:01.0 to an address
that is under PCI0, not PCI1."  I had misread the address 0xfd
as 0xfd00, but it is actually 0xfd__, which is just after
the [mem 0x8000-0xfc] range from amd_bus.c, and is not in
any of the apertures of either PCI host bridge.

I also mis-typed the boot option in comment #41.  The workaround should
be "pci=use_crs" (not "pcie=use_crs").

I'm planning to merge this patch, which should fix the problem:

  http://lkml.kernel.org/r/20150616165543.9306.88230.stgit@bhelgaas-
glaptop2.roam.corp.google.com

If all goes well, this will appear in v4.2-rc1.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2015-06-09 Thread Bjorn Helgaas
FichdlMaa, you said in comment #12 that "pcie=use_crs" didn't make a
difference.  Can you attach a complete dmesg log with "pci=use_crs"?  I
think it should make some difference (it should change the address
assigned to the 80:01.0 sound device), but that may not be enough to fix
the whole problem.

Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2015-03-03 Thread Bjorn Helgaas
I see two problems in the initial report from FichdlMaa:

1) Linux ignores ACPI _CRS information and consequently assigns addresses to 
the 80:01.0 device that may not work.
2) The page fault: "BUG: unable to handle kernel paging request at 
c9378000"

Booting with "pci=use_crs" should work around the first problem.  This
is only a workaround, not a real fix  because we don't expect users to
have to use that option.

If "pci=use_crs" makes a difference, and if it still fixes a problem in
the current upstream kernel (v4.0-rcX), please open a bug report at
http://bugzilla.kernel.org (in drivers/pci category), attaching a
complete dmesg log, and we can add a quirk to turn on that option
automatically.

I don't have a theory about the page fault problem.

Details about the _CRS problem:

bus: 00 index 2 [mem 0x8000-0xfc]

The range above is from amd_bus.c.  Note that it covers the mem windows
for both PCI0 and PCI1 below.

PCI: Ignoring host bridge windows from ACPI; if necessary, use 
"pci=use_crs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain  [bus 00-7f])
pci_root PNP0A08:00: host bridge window [mem 0x8000-0xbfef] 
(ignored)
pci_root PNP0A08:00: host bridge window [mem 0xc000-0xdfff] 
(ignored)
pci_root PNP0A08:00: host bridge window [mem 0xf000-0xfebf] 
(ignored)
ACPI: PCI Root Bridge [PCI1] (domain  [bus 80-ff])
pci_root PNP0A08:01: host bridge window [mem 0x000a-0x000b] 
(ignored)
pci_root PNP0A08:01: host bridge window [mem 0xbff0-0xbfff] 
(ignored)
pci :80:01.0: [1106:3288] type 0 class 0x000403
pci :80:01.0: reg 10: [mem 0xbfffc000-0xbfff 64bit]

The initial configuration from BIOS (above) looks correct.  The 80:01.0
BAR 0 is inside the PCI1 host bridge window reported by ACPI _CRS.

pci :80:01.0: address space collision: [mem 0xbfffc000-0xbfff 
64bit] conflicts with PCI Bus #00 [mem 0x8000-0xfc]
pci :80:01.0: BAR 0: assigned [mem 0xfd-0xfd3fff 64bit]

But we're ignoring _CRS and using the information from amd_bus.c, so we
think there's a conflict with the PCI0 window.  We reassign 80:01.0 to
an address that is under PCI0, not PCI1.  If the ACPI _CRS description
is correct, this means MMIO accesses intended for 80:01.0 will never
reach the device.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2014-07-23 Thread Iron Bishop
I still have this on Ubuntu 14.04 LTS, kernel 3.13.0-24 generic (32
bit).

Releases where this audio work are beyond EOL by now.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2014-04-25 Thread Raymond
0.143205] pci :80:01.0: [1106:3288] type 0 class 0x000403
[0.143223] pci :80:01.0: reg 10: [mem 0xbfffc000-0xbfff 64bit]
[0.143290] pci :80:01.0: PME# supported from D0 D3hot D3cold
[0.143294] pci :80:01.0: PME# disabled

[0.143531]  pci:80: Unable to request _OSC control (_OSC support
mask: 0x0f)


[0.153137] pci :00:00.0: address space collision: [mem 
0xd000-0xd7ff pref] conflicts with GART [mem 0xd000-0xd7ff]
[0.153199] pci :80:01.0: address space collision: [mem 
0xbfffc000-0xbfff 64bit] conflicts with PCI Bus #00 [mem 
0x8000-0xfc]


80:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA
Controller (rev 10)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-12-19 Thread Stella Delichatsiou
This bug is still present on Ubuntu 12.04 and on 3.2.0-4-686 kernel in
Crunchbang (Ubuntu-Debian based) regarding the HP Mini 2133. (motherboad
HP 3030 KBC Version 07.17)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-05-24 Thread Norbert Schulze
... the bug is also in lubuntu 13.04

my favorite fix:

sudo leafpad /etc/modprobe.d/alsa-base.conf
... and added this line to the bottom of the file:
options snd_hda_intel index=1
... then reboot

From: http://www.lubuntutips.com/2012/05/lubuntu-sound-on-msi-x370.html

or

sudo apt-get install pulseaudio

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-05-17 Thread Robert Kiesel
still present in ubuntu 13.04 with Kernel 3.8. Still alsa 1.0.25
Headphones are working, but not the integrated Speaker of my Laptop.
Only Workaround is to install Kernel 3.0...
Would be cool if there is at least a better workaround with a newer Kernel.

thx

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-03-09 Thread Raymond
https://bugzilla.kernel.org/show_bug.cgi?id=18512

** Bug watch added: Linux Kernel Bug Tracker #18512
   http://bugzilla.kernel.org/show_bug.cgi?id=18512

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-03-09 Thread FichdlMaa
Yeah! Status changed from reported to confirmed only *six* month later. 

Beg your pardon for my sarcasm. - I know - Shuttleworth is the only real 
financial winner..
Your/Our work is free and without any fee. *** Many Tnx for it! ***

The FichdlMaa

via Linux Mint Debian Edition instead of Ubuntu ...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-03-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: alsa-driver-1.0.25-dkms (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-02-02 Thread Thiago
I added the PPA "ppa: ubuntu-audio-dev/ppa" and updated. Nothing
resolved. I added "pci = use_crs" setup Grub. Nothing resolved. Kernel
3.2.0-37-generic-pae and Alsa v1.0.25.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-02-02 Thread Thiago
** Also affects: alsa-driver-1.0.25-dkms (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Thiago
Without the card tv situation is the same: sound works in some
situations and not in others works.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Raymond
did you get sound working without TV card ?


[   14.363029] saa7134[0]: registered device radio0
[   14.576180] saa7134 ALSA driver for DMA sound loaded
[   14.576405] saa7134[0]/alsa: saa7134[0] at 0xdfaff000 irq 18 registered as 
card -2



http://git.kernel.org/?p=linux/kernel/git/tiwai/sound.git;a=blob;f=Documentation/sound/alsa/HD-Audio.txt;hb=HEAD

you  may need to ask the expert in always devel mailing list for the
following messages


[   14.646548] snd_hda_intel :80:01.0: PCI INT A -> GSI 17 (level, low) -> 
IRQ 17
[   14.646612] snd_hda_intel :80:01.0: setting latency timer to 64
[   14.646617] snd_hda_intel :80:01.0: PCI: Disallowing DAC for device
[   14.687642] type=1400 audit(1359665993.039:7): apparmor="STATUS" 
operation="profile_load" 
name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=927 
comm="apparmor_parser"
--
[   14.733105] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.758922] hda_codec: invalid CONNECT_LIST verb 1f[4]:0
[   14.759021] hda_codec: invalid CONNECT_LIST verb 17[2]:0
[   14.759057] hda_codec: invalid CONNECT_LIST verb 20[2]:0
[   14.759102] hda_codec: invalid CONNECT_LIST verb 15[2]:0
[   14.759146] hda_codec: invalid CONNECT_LIST verb 27[3]:0
[   14.759230] hda_codec: invalid CONNECT_LIST verb 25[3]:0
[   14.759265] hda_codec: invalid CONNECT_LIST verb 16[3]:0
[   14.759313] hda_codec: formats == 0 (nid=0x15, val=0x400101, ovrd=1, 
streams=0x400101)
[   14.759317] hda_codec: cannot attach PCM stream 0 for codec #0
[   14.759681] hda-intel: spurious response 0x22140f0:0x0, last cmd=0x26f000c
[   14.759701] hda-intel: spurious response 0x40:0x0, last cmd=0x26f000c
[   14.759723] hda-intel: spurious response 0x2a190f0:0x0, last cmd=0x26f000c
[   14.759744] hda-intel: spurious response 0x0:0x0, last cmd=0x26f000c
[   14.759764] hda-intel: spurious response 0x410160f1:0x0, last cmd=0x26f000c

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Thiago
Follow generated file via alsa-info.sh with the sound working and not
having sound.

** Attachment added: "no sound alsa-info.txt"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+attachment/3509500/+files/no%20sound%20alsa-info.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Thiago
Second file generated by alsa-info.sh "sound working."

** Attachment added: "sound working alsa-info.txt"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+attachment/3509501/+files/sound%20working%20alsa-info.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Raymond
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/662299

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Raymond
please post the output of alsa-info.sh when it is working and not
working

diff -u working-info.txt and nonworking-info.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-31 Thread Thiago
"80:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA
Controller (rev 10)"

On board card. I did not understand very well your question.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-30 Thread Raymond
80:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA
Controller (rev 10) <--- !!!

20:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA
Controller (rev 10)

did you boot with pci=crs  or pci=nocrs?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2013-01-30 Thread Thiago
The sound plate concerned is unstable. At certain times it works and
some do not, and restart the operating system or run the command "sudo
alsa force-reload" to return the sound as before. This bug for this
audio card is inconvenient this earlier versions of ubuntu. What to do?
Thankful now.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-12-30 Thread emerald_knight
I had sound, and it was choppy. I had issues with my Vcard, and once I
got those squared away some what I lost sound in the process.

$ lspci
00:00.0 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
00:00.1 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
00:00.2 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
00:00.3 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
00:00.4 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
00:00.5 PIC: VIA Technologies, Inc. K8M890CE I/O APIC Interrupt Controller
00:00.7 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
00:01.0 PCI bridge: VIA Technologies, Inc. VT8237/8251 PCI bridge 
[K8M890/K8T800/K8T890 South]
00:02.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:03.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:0f.0 IDE interface: VIA Technologies, Inc. VT8237/8251 Serial ATA Controller
00:0f.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 07)
00:10.0 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev b0)
00:10.1 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev b0)
00:10.2 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev b0)
00:10.3 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev b0)
00:10.4 USB controller: VIA Technologies, Inc. USB 2.0 (rev 90)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8237S PCI to ISA Bridge
00:11.7 Host bridge: VIA Technologies, Inc. VT8237/8251 Ultra VLINK Controller
00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 7c)
00:13.0 Host bridge: VIA Technologies, Inc. VT8237A Host Bridge
00:13.1 PCI bridge: VIA Technologies, Inc. VT8237A PCI to PCI Bridge
00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
HyperTransport Technology Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address 
Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM 
Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
Miscellaneous Control
01:00.0 VGA compatible controller: VIA Technologies, Inc. K8M890CE/K8N890CE 
[Chrome 9] (rev 11)
04:07.0 Network controller: Ralink corp. RT2561/RT61 802.11g PCI
20:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA Controller (rev 
10)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-12-05 Thread Raymond
you need to send email to kernel mailing 

[0.143205] pci :80:01.0: [1106:3288] type 0 class 0x000403
[0.143223] pci :80:01.0: reg 10: [mem 0xbfffc000-0xbfff 64bit]
[0.143290] pci :80:01.0: PME# supported from D0 D3hot D3cold
[0.143294] pci :80:01.0: PME# disabled

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-12-05 Thread FichdlMaa
Still no solution for this bug?

As a workaround I deactivated onboard sound after I installed an old 
soundblaster pci card. 
Works fine, but I need *this* PCI slot for other purposes!
Let me know, when it's time to free this slot for its real destiny ;-)

Tnx from 
The FichdlMaa

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-11-30 Thread Raymond
02:01.0 Audio device [0403]: VIA Technologies, Inc. VT8237A/VT8251 HDA 
Controller [1106:3288] (rev 10)
Subsystem: Foxconn International, Inc. Device [105b:0cf4]


http://git.kernel.org/?p=linux/kernel/git/tiwai/sound.git;a=commit;h=4f8b6c7dc80ac9619db033c7f6fc355eab9514f5

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-11-30 Thread waterbong
Sound doesn't work in my laptop too. It's an old one with VT8237A/VT8251
HDA Controller. Just installed Lubuntu 12.04 and i'm affected by the
same problem. Kernel was 3.2.0-33, i tried to upgrade it to -34 but the
bug is still present. No sound at all, even connecting external
speakers...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-11-28 Thread alfalive
Sound works in my wifes account. But when I login into mine it doesn't
work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-11-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: alsa-driver (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-10-21 Thread Raymond
it is oops , you have to report this bug to alsa developer or file a bug
report at kernel.org

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-10-13 Thread FichdlMaa
removed ATI Radeon card and switched to onboard vga, but same result: no sound:
aplay -l still reports "aplay: device_list:252: keine Soundkarten gefunden ..."

reinstalled ATI card (as before without closed source ATI drivers); no sound, 
but 
the same when starting this bug report:

aplay -l
 Liste der Hardware-Geräte (PLAYBACK) 
Karte 0: HDMI [HDA ATI HDMI], Gerät 3: HDMI 0 [HDMI 0]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0

-> ??? the Radeon graphics card has got NO HDMI (only VGA, DVI and composite)
-> only sound device is the onboard chip "Azalia HDA Controller"

Still no sound :-(  
... but not a Ubuntu or Debian Problem: It's ALSA or the Kernel itself. 
Same Problem with Live CDs of Ubuntu based Mint 13, but not Ubuntu based 
Magaeia 2 too.


Any suggestion?  
- 10.04 'til security support ends? And afterwards?
- External sound card (empty PCI Slot available; onboard Sound could be 
switched off)?

I am really frustrated...

The FichdlMaa

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-10-13 Thread FichdlMaa
This bug is still present in kernel 3.2.0-30. NO SOUND!

I tried workaround mentioned by Anish Asokan (asokan-anish) [wrote on 
2011-04-30: ] 
   GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=use_crs"
->  https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/662299
  see also https://bugzilla.kernel.org/show_bug.cgi?id=16921#c5

but no success: "Dummy Ausgabe" in Volume Contol;

aplay -l still reports "aplay: device_list:252: keine Soundkarten
gefunden ..."

!!! Same hardware base has full functionality with 10.04 LTS inclusive
10.04.4 !!!


** Bug watch added: Linux Kernel Bug Tracker #16921
   http://bugzilla.kernel.org/show_bug.cgi?id=16921

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-09-28 Thread mjunker
** Also affects: alsa-driver
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-08-11 Thread Raymond
you better report this  bug to alsa-devel mailing list

[   36.301296] snd_hda_intel :02:00.1: PCI INT B -> GSI 25 (level, low) -> 
IRQ 25
[   36.301355] snd_hda_intel :02:00.1: setting latency timer to 64
[   36.301368] snd_hda_intel :02:00.1: PCI: Disallowing DAC for device
[   36.359184] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[   36.359292] input: HDA ATI HDMI HDMI/DP,pcm=3 as 
/devices/pci:00/:00:02.0/:02:00.1/sound/card0/input6
[   36.361182] snd_hda_intel :80:01.0: PCI INT A -> GSI 17 (level, low) -> 
IRQ 17
[   36.361223] snd_hda_intel :80:01.0: setting latency timer to 64
[   36.361239] BUG: unable to handle kernel paging request at c9378000
[   36.361362] IP: [] azx_create+0x37c/0x822 [snd_hda_intel]
[   36.361488] PGD 7d01a067 PUD 7d01b067 PMD 7be1f067 PTE 80fd0173
[   36.361605] Oops: 0009 [#1] SMP 
[   36.361663] CPU 0 
[   36.361697] Modules linked in: snd_hda_codec_hdmi snd_hda_intel(+) 
snd_hda_codec snd_hwdep snd_pcm snd_seq_midi joydev snd_rawmidi 
snd_seq_midi_event snd_seq snd_timer snd_seq_device snd edac_core soundcore 
snd_page_alloc edac_mce_amd i2c_viapro k8temp psmouse serio_raw shpchp mac_hid 
lp parport btrfs zlib_deflate libcrc32c radeon ttm drm_kms_helper 8139too 
usbhid hid drm aic7xxx 8139cp sata_via pata_via i2c_algo_bit floppy
[   36.362424] 
[   36.362451] Pid: 903, comm: work_for_cpu Not tainted 3.2.0-27-generic 
#43-Ubuntu Foxconn OEM/K8M890-8237A
[   36.362619] RIP: 0010:[]  [] 
azx_create+0x37c/0x822 [snd_hda_intel]
[   36.362782] RSP: 0018:88007756de00  EFLAGS: 00010286
[   36.362872] RAX: c9378000 RBX: 88007756de68 RCX: fffa
[   36.362992] RDX: 0016 RSI: 0282 RDI: 0282
[   36.363112] RBP: 88007756de50 R08: 88003691d000 R09: 88007cc000a0
[   36.363232] R10: 88007a761000 R11:  R12: 88007b974000
[   36.363351] R13: 88007a760400 R14:  R15: 0001
[   36.363472] FS:  7f362b42b700() GS:88007fc0() 
knlGS:
[   36.363609] CS:  0010 DS:  ES:  CR0: 8005003b
[   36.363706] CR2: c9378000 CR3: 77b29000 CR4: 06f0
[   36.363825] DR0:  DR1:  DR2: 
[   36.363945] DR3:  DR6: 0ff0 DR7: 0400
[   36.364011] Process work_for_cpu (pid: 903, threadinfo 88007756c000, 
task 88007755ade0)
[   36.364011] Stack:
[   36.364011]  88007756de50 a02e836d 8800 
88007a761000
[   36.364011]  0282 88007b974000 a0348040 
88007b974090
[   36.364011]    88007756de90 
a03466cf
[   36.364011] Call Trace:
[   36.364011]  [] ? snd_card_create+0x1ad/0x3a0 [snd]
[   36.364011]  [] azx_probe+0xab/0x25e [snd_hda_intel]
[   36.364011]  [] local_pci_probe+0x5c/0xd0
[   36.364011]  [] ? wake_up_worker+0x30/0x30
[   36.364011]  [] do_work_for_cpu+0x18/0x30
[   36.364011]  [] kthread+0x8c/0xa0
[   36.364011]  [] kernel_thread_helper+0x4/0x10
[   36.364011]  [] ? flush_kthread_worker+0xa0/0xa0
[   36.364011]  [] ? gs_change+0x13/0x13
[   36.364011] Code: ff ff 85 c0 4c 8b 55 c8 0f 88 9f 04 00 00 4c 89 e7 e8 62 
b9 fe e0 4c 8b 55 c8 41 8b 7a 40 e8 65 36 d9 e0 4c 8b 55 c8 49 8b 42 38 <66> 44 
8b 30 49 8b 42 08 8b 4d c0 66 81 78 3c 02 10 75 3e 31 d2 
[   36.364011] RIP  [] azx_create+0x37c/0x822 [snd_hda_intel]
[   36.364011]  RSP 
[   36.364011] CR2: c9378000
[   36.364011] ---[ end trace 5f53ab2dc00821fa ]---

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-08-10 Thread FichdlMaa
Oh. Fine. 1. went to Alsa Project, 2. auto-generated above attchment
postings :-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs



[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-08-10 Thread FichdlMaa
Hello Dave,

1. I have run the script on https://wiki.ubuntu.com/Audio/AlsaInfo as mentioned 
by you in the questions section #198785.
Afterwards I sent the result to Alsa Project; a copy is attached here.

2. I started above apport-collect script and gave access to my launchpad
account. Didn't know that this would generate a second bug report for
als project. Hope this doesn't confuse the als team ;-)

Bye

The FichdlMaa



** Attachment added: "result of https://wiki.ubuntu.com/Audio/AlsaInfo";
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+attachment/3256209/+files/alsa-info.txt.zNpq4Ty4AX

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-08-10 Thread FichdlMaa
apport information

** Tags added: apport-collected precise running-unity

** Description changed:

  (3.2.0-27-generic #43-Ubuntu SMP Fri Jul 6 14:25:57 UTC 2012 x86_64 x86_64 
x86_64 GNU/Linux)
  [0.00] DMI: Foxconn OEM/K8M890-8237A, BIOS 6.00 PG 02/10/2007
  
!!! Same hardware base had full function with 10.04 LTS  inclusive
  10.04.3 !!!
  
  see also:  https://answers.launchpad.net/ubuntu/+source/alsa-
  driver/+question/198785
  
  
  Sound chip recognized ...
  
 80:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA
  Controller (rev 10)
  
  ... but no driver installed => no sound :-(
  
  
  Output of lspci:
  
  00:00.0 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
  00:00.1 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
  00:00.2 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
  00:00.3 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
  00:00.4 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
  00:00.5 PIC: VIA Technologies, Inc. K8M890CE I/O APIC Interrupt Controller
  00:00.7 Host bridge: VIA Technologies, Inc. K8M890CE Host Bridge
  00:01.0 PCI bridge: VIA Technologies, Inc. VT8237/8251 PCI bridge 
[K8M890/K8T800/K8T890 South]
  00:02.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
  00:03.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
  00:0f.0 IDE interface: VIA Technologies, Inc. Device 5337 (rev 80)
  00:0f.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 07)
  00:10.0 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
  00:10.1 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
  00:10.2 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
  00:10.3 USB controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
  00:10.4 USB controller: VIA Technologies, Inc. USB 2.0 (rev 86)
  00:11.0 ISA bridge: VIA Technologies, Inc. VT8237A PCI to ISA Bridge
  00:11.7 Host bridge: VIA Technologies, Inc. VT8237/8251 Ultra VLINK Controller
  00:13.0 Host bridge: VIA Technologies, Inc. VT8237A Host Bridge
  00:13.1 PCI bridge: VIA Technologies, Inc. VT8237A PCI to PCI Bridge
  00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
HyperTransport Technology Configuration
  00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
Address Map
  00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM 
Controller
  00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
Miscellaneous Control
  02:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV710 
[Radeon HD 4350]
  02:00.1 Audio device: Advanced Micro Devices [AMD] nee ATI RV710/730 HDMI 
Audio [Radeon HD 4000 series]
  04:04.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL-8139/8139C/8139C+ (rev 10)
  04:07.0 SCSI storage controller: Adaptec AIC-7861 (rev 03)
  80:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA Controller 
(rev 10) <--- !!!
  
  Output of dmesg | grep sound:
  
  [   39.637127] input: HDA ATI HDMI HDMI/DP,pcm=3 as 
/devices/pci:00/:00:02.0/:02:00.1/sound/card0/input6
  [   39.639261] Modules linked in: snd_hda_codec_hdmi snd_hda_intel(+) 
snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event 
joydev snd_seq snd_timer psmouse serio_raw snd_seq_device edac_core 
edac_mce_amd i2c_viapro snd k8temp soundcore snd_page_alloc shpchp mac_hid lp 
parport btrfs zlib_deflate libcrc32c radeon ttm 8139too drm_kms_helper usbhid 
hid aic7xxx drm 8139cp sata_via pata_via i2c_algo_bit floppy
  
  -> ??? the Radeon graphics card has got NO HDMI (only VGA, DVI and composite)
  ->  only sound device is the onboard chip
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
+ AplayDevices:
+   List of PLAYBACK Hardware Devices 
+  card 0: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ ApportVersion: 2.0.1-0ubuntu11
+ Architecture: amd64
+ ArecordDevices:  List of CAPTURE Hardware Devices 
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  maico  2609 F pulseaudio
+ Card0.Amixer.info:
+  Card hw:0 'HDMI'/'HDA ATI HDMI at 0xdfdfc000 irq 25'
+Mixer name : 'ATI R6xx HDMI'
+Components : 'HDA:1002aa01,00aa0100,00100100'
+Controls  : 6
+Simple ctrls  : 1
+ Card0.Amixer.values:
+  Simple mixer control 'IEC958',0
+Capabilities: pswitch pswitch-joined penum
+Playback channels: Mono
+Mono: Playback [on]
+ DistroRelease: Ubuntu 12.04
+ InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
+ Package: alsa-driver (not installed)
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=de_DE.UTF-8
+  SHELL=/bin/bash
+ ProcVer

[Bug 1033299] Re: Ubuntu 12.04 - no sound with VT8237A/VT8251

2012-08-05 Thread Dave Lentz
Please run the following command to collect audio information: 
apport-collect 1033299

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033299

Title:
  Ubuntu 12.04 - no sound with VT8237A/VT8251

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1033299/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs