Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: Nog geen geluid met HP TX2550 tablet pc  (gelezen 1324 keer)

frank.van.es

  • Gast
Nog geen geluid met HP TX2550 tablet pc
« Gepost op: 2008/11/02, 10:17:13 »
Hallo allemaal ik heb na de 8.10 beta nu de final geinstalleerd maar ik heb nu steeds geen geluid. Wel krijg ik een beep te horen als ik bij een regel in bv firefox de backspace ingedrukt houd of bij het afmelden.
De uitkomst van lspci is:
frank@frank-laptop:~$ lspci
00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (int gfx)
00:04.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 0)
00:05.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 1)
00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 2)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:13.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
00:14.1 IDE interface: ATI Technologies Inc SB700/SB800 IDE Controller
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
00:14.5 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI2 Controller
00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 11h HyperTransport Configuration (rev 40)
00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 11h Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 11h DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 11h Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 11h Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc RS780M/RS780MN [Radeon HD 3200 Graphics]
08:00.0 Network controller: Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller (rev 01)
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)

Wie weet er een oplossing voor??

En weet iemand of ubuntu ook toutchscreen ondersteund??

Al vast bedankt en de groeten

Offline tabasco

  • Lid
Nog geen geluid met HP TX2550 tablet pc
« Reactie #1 Gepost op: 2008/11/04, 15:27:58 »

frank.van.es

  • Gast
Nog geen geluid met HP TX2550 tablet pc
« Reactie #2 Gepost op: 2008/11/04, 18:21:18 »
bedankt voor je reaktie ik ben er nog een tijd mee aan het stoeien geweest naar helaas heeft dat ook nog niets opgeleverd. Enig idee of ubuntu ook tablet pc's ondersteund zodat je via het scherm kunt bedienen??

DarkEra

  • Gast
Nog geen geluid met HP TX2550 tablet pc
« Reactie #3 Gepost op: 2008/11/05, 02:14:18 »
Hier ook nog steeds geen geluid sinds 8.04. Laatst 8.10 getest, wederom geen succes. Die bug is al gemeld geweest vanaf 8.04 maar ze hebben er schijnbaar nog steeds geen oplossing voor. Erg jammer dan.

Het zal zeker niet liggen aan die Intel HDA geluidskaarten want in Ubuntu 7.10 werkte het namelijk wel. Men moet denk ik het probleem gaan zoeken bij Alsa en Pulsaudio drivers, het is namelijk niet alleen bij Ubuntu zo maar bij alle Linux varianten. Denk bv aan Opensuse, Mandriva, Fedora etc, allemaal hetzelfde geluids probleem. Ik heb de hoop opgegeven in ieder geval na al die maanden.

Nog geen geluid met HP TX2550 tablet pc
« Reactie #4 Gepost op: 2008/11/05, 02:58:12 »
Citaat
Enig idee of ubuntu ook tablet pc's ondersteund zodat je via het scherm kunt bedienen??
Dit is al mogelijk vanaf 2003, voor zover ik heb kunnen terug vinden.
Was er zelf tijdelijk mee bezig geweest maar kon het projectje niet afronden....

Maagoe hier is een soort How To ervoor, dus dit kan je proberen:

The touchscreen now works, thanks to the efforts of Chris Bare who wrote a custom driver for the purpose. It took a little head-scratching and a few dirty reboots to get his driver installed properly, but here was the magic formula that worked for me:

Action: Add the following line to /etc/modules.conf (if this is not done, the evdev module will not be loaded when needed and you will probably have to hard-reboot):
alias /dev/input/event* evdev

Action: Copy usbtouch_drv.o from Chris's package to:

/usr/X11R6/lib/modules/input/usbtouch_drv.o

Action: Add the following lines to /etc/X11/XF86Config-4 (and remove or comment out any old attempts to get the touch screen working!):

Section "InputDevice"
        Identifier "Touch Screen"
        Driver "usbtouch"
        Option "Device"        "/dev/input/event0"
        Option "DeviceName"    "touchscreen"
        Option "ReportingMode" "scaled"
        Option "SendCoreEvents"
        Option "MinX"   "900"
        Option "MinY"  "1090"
        Option "MaxX" "16090"
        Option "MaxY" "16000"
EndSection

And make sure the ServerLayout section has the touch screen enabled:

Section "ServerLayout"
    Identifier  "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Clittormouse" "CorePointer"
    InputDevice "Touch Screen" "SendCoreEvents"
    Screen      "screen1"
EndSection

And that's it. I used his usbtouch_drv.o file as provided (I did not recompile it myself) and it worked fine against my custom-compiled kernel. It is critical that the evdev module gets loaded, or the display manager will just hang in a bad way. I just made a semi-educated guess with that modules.conf line, but it seems to work so I'm not complaining. The calibration numbers provided above (MinX, etc..) are from Chris Bare but they work just fine on my machine.



Links:
http://forum.ubuntu-nl.org/message/283721#p283721

http://ariescomputing.com/lifebook/

http://coffee.geek.nz/content/070207/ux17-touchscreen-howto
I don't suffer from insanity, I enjoy every minute of it.
Microsoft geeft je een raam, Linux geeft je een heel huis :D

frank.van.es

  • Gast
Nog geen geluid met HP TX2550 tablet pc
« Reactie #5 Gepost op: 2008/11/05, 12:16:23 »
Citaat van: DarkEra
Hier ook nog steeds geen geluid sinds 8.04. Laatst 8.10 getest, wederom geen succes. Die bug is al gemeld geweest vanaf 8.04 maar ze hebben er schijnbaar nog steeds geen oplossing voor. Erg jammer dan.

Het zal zeker niet liggen aan die Intel HDA geluidskaarten want in Ubuntu 7.10 werkte het namelijk wel. Men moet denk ik het probleem gaan zoeken bij Alsa en Pulsaudio drivers, het is namelijk niet alleen bij Ubuntu zo maar bij alle Linux varianten. Denk bv aan Opensuse, Mandriva, Fedora etc, allemaal hetzelfde geluids probleem. Ik heb de hoop opgegeven in ieder geval na al die maanden.
Nou dan ga ik vanavond eens kijken wat 7.10 gaat doen, Wat wel jammer is is dat die waarschijnlijk een acpi fout geeft..
Toch bedankt voor de tip

frank.van.es

  • Gast
Nog geen geluid met HP TX2550 tablet pc
« Reactie #6 Gepost op: 2008/11/07, 20:10:22 »
Nou dat werkt hier ook niet hoor.
Helaas ik heb ook inderdaad een live cd van suse 11.0 geptobeert en dat lukt ook niet.
Jammer maar ik denk dat het wachten word tot april als dan 9.04 uitkomt. (stond ergens op internet)