All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: VIA8233/8235 testers wanted
@ 2003-01-14 21:48 Anton Worshevsky
  2003-01-16  9:21 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Anton Worshevsky @ 2003-01-14 21:48 UTC (permalink / raw)
  To: alsa-devel; +Cc: gbdj

Hello ,

>  if someone has VIA8233, VIA8233A, VIA8233C or VIA8235 chipset, could
>  you help the testing of the new driver?
>  the new driver code is found at
>
>         http://www.alsa-project.org/~iwai/via82xx.c

i has VIA8235 and ALC650 codec. After installing new driver from cvs from
20030113, there is following problem:

In 5.1-channel dvd playback with xine using surround51 device,
i has swapped Rear and Center/lfe channels.
RL <-> Center, RR <-> LFE
i fixed this with following patch for via82xx.c

812,813c812,815
<       case 5: slots = (1<<0) | (2<<4) | (5<<8) | (3<<12) | (4<<16); break;
<       case 6: slots = (1<<0) | (2<<4) | (5<<8) | (6<<12) | (3<<16) | (4<<20); break;
---
> //    case 5: slots = (1<<0) | (2<<4) | (5<<8) | (3<<12) | (4<<16); break;
> //    case 6: slots = (1<<0) | (2<<4) | (5<<8) | (6<<12) | (3<<16) | (4<<20); break;
>       case 5: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16); break;
>       case 6: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16) | (6<<20); break;

please note that 5ch mode is untested.
I'm not sure that it is alsa problem, xine' may be.
It will be nice to have a small prog for channel position testing in different
playback modes, because now i know no 5.1ch source other then video player.
In general multichannel playback has good quality now (with rc6 sound was
cracking).

>  the new driver can (hopefully) play multiple streams simultaneously on
>  VIA8233, VIA8233C and VIA8235, but NOT on VIA8233A.

It's worked, but second stream plays only left channel.

Almost all OSS application such as games (UT, tux-racer and other) now producing
cracking and skipping sound. Only XMMS OSS-plugin plays good. OSS-sound was good
with rc6.

Best regards,

Anton Worshevsky




-------------------------------------------------------
This SF.NET email is sponsored by: Take your first step towards giving 
your online business a competitive advantage. Test-drive a Thawte SSL 
certificate - our easy online guide will show you how. Click here to get 
started: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0027en

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Re: VIA8233/8235 testers wanted
  2003-01-14 21:48 VIA8233/8235 testers wanted Anton Worshevsky
@ 2003-01-16  9:21 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2003-01-16  9:21 UTC (permalink / raw)
  To: Anton Worshevsky; +Cc: alsa-devel

[-- Attachment #1: Type: text/plain, Size: 2028 bytes --]

Hi,

At Wed, 15 Jan 2003 00:48:46 +0300,
Anton Worshevsky wrote:
> 
> Hello ,
> 
> >  if someone has VIA8233, VIA8233A, VIA8233C or VIA8235 chipset, could
> >  you help the testing of the new driver?
> >  the new driver code is found at
> >
> >         http://www.alsa-project.org/~iwai/via82xx.c
> 
> i has VIA8235 and ALC650 codec. After installing new driver from cvs from
> 20030113, there is following problem:
> 
> In 5.1-channel dvd playback with xine using surround51 device,
> i has swapped Rear and Center/lfe channels.
> RL <-> Center, RR <-> LFE
> i fixed this with following patch for via82xx.c
> 
> 812,813c812,815
> <       case 5: slots = (1<<0) | (2<<4) | (5<<8) | (3<<12) | (4<<16); break;
> <       case 6: slots = (1<<0) | (2<<4) | (5<<8) | (6<<12) | (3<<16) | (4<<20); break;
> ---
> > //    case 5: slots = (1<<0) | (2<<4) | (5<<8) | (3<<12) | (4<<16); break;
> > //    case 6: slots = (1<<0) | (2<<4) | (5<<8) | (6<<12) | (3<<16) | (4<<20); break;
> >       case 5: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16); break;
> >       case 6: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16) | (6<<20); break;
> 
> please note that 5ch mode is untested.
> I'm not sure that it is alsa problem, xine' may be.

hmm, it could be due to the setting of ALC650.  how is the status of
"Exchange Center/LFE" mixer switch?


> It will be nice to have a small prog for channel position testing in different
> playback modes, because now i know no 5.1ch source other then video player.
> In general multichannel playback has good quality now (with rc6 sound was
> cracking).
> 
> >  the new driver can (hopefully) play multiple streams simultaneously on
> >  VIA8233, VIA8233C and VIA8235, but NOT on VIA8233A.
> 
> It's worked, but second stream plays only left channel.
> 
> Almost all OSS application such as games (UT, tux-racer and other) now producing
> cracking and skipping sound. Only XMMS OSS-plugin plays good. OSS-sound was good
> with rc6.

does the patch below change something?


ciao,

Takashi

[-- Attachment #2: via-frag-fix.dif --]
[-- Type: application/octet-stream, Size: 806 bytes --]

Index: alsa-kernel/pci/via82xx.c
===================================================================
RCS file: /suse/tiwai/cvs/alsa/alsa-kernel/pci/via82xx.c,v
retrieving revision 1.17
diff -u -r1.17 via82xx.c
--- alsa-kernel/pci/via82xx.c	13 Jan 2003 09:07:53 -0000	1.17
+++ alsa-kernel/pci/via82xx.c	16 Jan 2003 09:19:57 -0000
@@ -773,7 +773,8 @@
 	outb(0 , VIAREG(chip, PLAYBACK_VOLUME_R));
 	outl((runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA8233_REG_TYPE_16BIT : 0) | /* format */
 	     (runtime->channels > 1 ? VIA8233_REG_TYPE_STEREO : 0) | /* stereo */
-	     (0xffff * runtime->rate)/(48000/16) | /* rate */
+	     // (0xffff * runtime->rate)/(48000/16) | /* rate */
+	     0xfffff |
 	     0xff000000,    /* STOP index is never reached */
 	     port + VIA_REG_OFFSET_STOP_IDX);
 	return 0;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-01-16  9:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-14 21:48 VIA8233/8235 testers wanted Anton Worshevsky
2003-01-16  9:21 ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.