[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #25 from Dominique Parisot  2012-09-19 14:52:28 UTC 
---
Created attachment 67392
  --> https://bugs.freedesktop.org/attachment.cgi?id=67392
Mplayer and Totem outputs

In attachment, you will find the same video output with MPlayer (which is OK)
and with Totem (which is wrong).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #24 from Dominique Parisot  2012-09-12 17:37:17 UTC 
---
(In reply to comment #23)
> Created attachment 66993 [details] [review]
> Fix CN400 Xv on IGA2 (v2)

With the second patch :

- if I play a video with MPlayer with XV output, the result is good :-)

- if I play the same video with totem, the result is bad with differents colors
stripes (diagonal)

- with Skype, colors seems to be inverted but the correspondant is visible.

I can't send you screenshots because the computer is 60 km far from me...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #23 from Xavier Bachelot  2012-09-11 19:33:08 
UTC ---
Created attachment 66993
  --> https://bugs.freedesktop.org/attachment.cgi?id=66993
Fix CN400 Xv on IGA2 (v2)

Does that patch work better ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #22 from Dominique Parisot  2012-09-10 16:08:02 UTC 
---
(In reply to comment #21)

Bad news...

With your patch, the video is displayed on the LCD screen, but the content of
the totem window is very bad : something with yellow and black lines...

Sorry, I can't send you a screenshot because I'm not in front of the computer
(which is 60km far from me)...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #21 from Xavier Bachelot  2012-09-08 21:40:04 
UTC ---
Created attachment 66850
  --> https://bugs.freedesktop.org/attachment.cgi?id=66850
Fix CN400 Xv on IGA2

Your findings plus some cleanup are in the attached patch. I tested it on a VGA
only CN400, it works fine. Please confirm the same patch on top of git master
works too on your CN400 laptop.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #20 from Bartosz Kosiorek  2012-09-08 
15:33:40 UTC ---
Great news.
To fix this issue you have to modify viaSetColorSpace function.
Your chipset ID is PCI_CHIP_VT3259.

Replace following code:
void
viaSetColorSpace(VIAPtr pVia, int hue, int saturation, int brightness,
 int contrast, Bool reset)
{
CARD32 col1, col2;

viaCalculateVideoColor(pVia, hue, saturation, brightness, contrast, reset,
   &col1, &col2);
switch (pVia->ChipId) {
case PCI_CHIP_VT3205:
case PCI_CHIP_VT3204:
case PCI_CHIP_VT3259:
case PCI_CHIP_VT3314:
VIASETREG(V3_ColorSpaceReg_1, col1);
VIASETREG(V3_ColorSpaceReg_2, col2);
DBG_DD(ErrorF("02C4 %08lx\n", col1));
DBG_DD(ErrorF("02C8 %08lx\n", col2));
break;
case PCI_CHIP_VT3327:
case PCI_CHIP_VT3336:
case PCI_CHIP_VT3324:

with:

void
viaSetColorSpace(VIAPtr pVia, int hue, int saturation, int brightness,
 int contrast, Bool reset)
{
CARD32 col1, col2;

viaCalculateVideoColor(pVia, hue, saturation, brightness, contrast, reset,
   &col1, &col2);
switch (pVia->ChipId) {
case PCI_CHIP_VT3205:
case PCI_CHIP_VT3204:
case PCI_CHIP_VT3314:
VIASETREG(V3_ColorSpaceReg_1, col1);
VIASETREG(V3_ColorSpaceReg_2, col2);
DBG_DD(ErrorF("02C4 %08lx\n", col1));
DBG_DD(ErrorF("02C8 %08lx\n", col2));
break;
case PCI_CHIP_VT3259:
case PCI_CHIP_VT3327:
case PCI_CHIP_VT3336:
case PCI_CHIP_VT3324:

(In reply to comment #18)
> Created attachment 66846 [details]
> Wrong colors when forcing video output on LCD screen
> 
> SOME RELATIVE GOOD NEWS :
> =
> 
> In the ViaInitVideoStatusFlag function (src/via_xv_overlay.c), I have replaced
> :
> 
> static unsigned long
> ViaInitVideoStatusFlag(VIAPtr pVia)
> {
> switch (pVia->ChipId) {
> case PCI_CHIP_VT3205:
> case PCI_CHIP_VT3204:
> case PCI_CHIP_VT3259:
> case PCI_CHIP_VT3314:
> return VIDEO_HQV_INUSE | SW_USE_HQV | VIDEO_3_INUSE;
> 
> By :
> 
> static unsigned long
> ViaInitVideoStatusFlag(VIAPtr pVia)
> {
> switch (pVia->ChipId) {
> case PCI_CHIP_VT3205:
> case PCI_CHIP_VT3204:
> case PCI_CHIP_VT3259:
> case PCI_CHIP_VT3314:
> return VIDEO_HQV_INUSE | SW_USE_HQV | VIDEO_1_INUSE;
> 
> Now the XV video output is on the LCD screen but the colors are wrong. You 
> will
> find in attachment a screenshot of the same video with X11 output and with XV
> output.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #19 from Dominique Parisot  2012-09-08 14:44:34 UTC 
---
(In reply to comment #17)

Sorry, but the following modification does not work :
> 
> /*
>  * Enable video on secondary
>  */
> if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
>  pVia->Chipset == VIA_VM800)) {
> /* V1_ON_SND_DISPLAY */
> vidCtl |= V1_ON_SND_DISPLAY;
> /* SECOND_DISPLAY_COLOR_KEY_ENABLE */
> compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
> }

With a VGA screen connected, the XV output goes on the VGA screen and the
content of the window of the LCD screen is black.

When the VGA screen is disconnected (and GDM restarted), the content of the
window on the LCD screen is black...

For your information, I have tried to remove the if condition to be sure that
`vidCtl' and `compose' variables are set and I still have the same bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #18 from Dominique Parisot  2012-09-08 14:25:00 UTC 
---
Created attachment 66846
  --> https://bugs.freedesktop.org/attachment.cgi?id=66846
Wrong colors when forcing video output on LCD screen

SOME RELATIVE GOOD NEWS :
=

In the ViaInitVideoStatusFlag function (src/via_xv_overlay.c), I have replaced
:

static unsigned long
ViaInitVideoStatusFlag(VIAPtr pVia)
{
switch (pVia->ChipId) {
case PCI_CHIP_VT3205:
case PCI_CHIP_VT3204:
case PCI_CHIP_VT3259:
case PCI_CHIP_VT3314:
return VIDEO_HQV_INUSE | SW_USE_HQV | VIDEO_3_INUSE;

By :

static unsigned long
ViaInitVideoStatusFlag(VIAPtr pVia)
{
switch (pVia->ChipId) {
case PCI_CHIP_VT3205:
case PCI_CHIP_VT3204:
case PCI_CHIP_VT3259:
case PCI_CHIP_VT3314:
return VIDEO_HQV_INUSE | SW_USE_HQV | VIDEO_1_INUSE;

Now the XV video output is on the LCD screen but the colors are wrong. You will
find in attachment a screenshot of the same video with X11 output and with XV
output.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #17 from Bartosz Kosiorek  2012-09-08 
14:22:07 UTC ---
Thanks for information. It is very useful.

Localize following code:
/*
 * Enable video on secondary
 */
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_VM800) && iga->index) {
/* V1_ON_SND_DISPLAY */
vidCtl |= V1_ON_SND_DISPLAY;
/* SECOND_DISPLAY_COLOR_KEY_ENABLE */
compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
}

Replace it with following and check if it works:

/*
 * Enable video on secondary
 */
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_VM800)) {
/* V1_ON_SND_DISPLAY */
vidCtl |= V1_ON_SND_DISPLAY;
/* SECOND_DISPLAY_COLOR_KEY_ENABLE */
compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
}

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #16 from Dominique Parisot  2012-09-08 13:41:50 UTC 
---
Created attachment 66845
  --> https://bugs.freedesktop.org/attachment.cgi?id=66845
XV video displayed on VGA screen and not on LCD screen

When a VGA screen is plugged, the XV video is displayed on the VGA screen and
not on the LCD screen (where the content of the window is a black screen).
I presume it's the same thing when VGA screen is disconnected : XV video is
sended on the VGA port and not on the LCD.

With the following option, the two screen are disabled :
Option "ModeSwitchMethod" "legacy"

With this option, the VGA screen is disabled, but the content of mplayer window
on the LCD screen is a black scare.
Option "ActiveDevice" "LCD"

The following options don't change anything : 
Option "ForcePanel" "true"
Option "NoXVDMA" "false"
Option "EnableAGPDMA" "false"

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #15 from Dominique Parisot  2012-09-08 08:00:30 UTC 
---
As you suggest, I have replaced :
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_VM800) && iga->index) {
By :
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_PM800 ||
 pVia->Chipset == VIA_VM800) && iga->index) {

After compiling, installing and video playing, it's always the same thing : the
content of totem is a black window...

For your information, I'm sure that this modification was successfully
considered, because I have added a debug message in via_xv_overlay.c (just
before the modification) and I can see this message in Xorg.0.log.

I also tried to delete the following code but it doesn't change anything : 
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_VM800) && iga->index) {
/* V1_ON_SND_DISPLAY */
vidCtl |= V1_ON_SND_DISPLAY;
/* SECOND_DISPLAY_COLOR_KEY_ENABLE */
compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
}

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #14 from Dominique Parisot  2012-09-08 07:16:27 UTC 
---
(In reply to comment #13)
> Another thing to try, add Option "ModeSwitchMethod" "legacy" to your conf 
> file.

After adding this option and restarting GDM, I have a black screen.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

Xavier Bachelot  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED
 CC||xav...@bachelot.org

--- Comment #19 from Xavier Bachelot  2012-09-07 14:22:41 
UTC ---
Closing the bug now you're all set.

Thanks,
Xavier

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #18 from Sergey Schwartz  2012-09-07 05:54:52 
UTC ---
Morning Xavier,

Please find attached Xorg.0.log of a working openbox session with
ForcePanel=yes.
OpenBox has no perfomance issues.

I've just updated the pc with apt-get and noticed that
xserver-xorg-video-openchrome 0.3.1 was installed. That is pretty fast I guess
:).


Thanks,
Sergey

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #17 from Sergey Schwartz  2012-09-07 05:48:57 
UTC ---
Created attachment 66763
  --> https://bugs.freedesktop.org/attachment.cgi?id=66763
Xorg log with ForcePanel=yes

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #16 from Xavier Bachelot  2012-09-06 13:07:43 
UTC ---
Great to hear it works. The LVDS detection code is currently not as good as it
could be. Please provide the xorg log, I'd like to take a look.

About 3D being slow, that is expected. The unichrome 3D driver has been dropped
from Mesa because it is not yet ported to DRI2, so you are running on software
rendering over LLVM pipe. Currently, the only way to improve the desktop
experience would be to use another desktop manager which is not making such
heavy use of 3D.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #15 from Sergey Schwartz  2012-09-06 12:02:20 
UTC ---
Xavier,

PC specs are here http://www.wincomm.com.tw/product/pdf/WLP-6821-15.pdf

Besides VBE in xorg.conf I have modified grub configuration:
GRUB_GFXMODE=1024x768
GRUB_GFXPAYLOAD_LINUX=keep

This was supposed to make smooth handover from plymouth to xorg.

UPD: X now start using "ForcePanel", but Unity is so slow.

Thanks,
Sergey

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #14 from Xavier Bachelot  2012-09-06 11:44:11 
UTC ---
Rather than using VBE, try to force LVDS panel detection with Option
"ForcePanel"

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #13 from Xavier Bachelot  2012-09-06 09:37:15 
UTC ---
What is the exact brand and model of the hardware ? Also, if you have a link to
the manufacturer website, it could help.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #12 from Sergey Schwartz  2012-09-06 08:50:25 
UTC ---
Xavier,

I don't actually know how the display is connected. The PC is a monoblock.
Initially it never worked without VBE mode.

Thanks,
Sergey

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #11 from Xavier Bachelot  2012-09-06 08:39:24 
UTC ---
@Bartosz : you were quicker than me ;-) The X log from 0.3.1 with VBE is in
comment 5.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #10 from Xavier Bachelot  2012-09-06 08:37:45 
UTC ---
Ok, so the 0.3.0 crash is gone and it was the breakage I suspected.

Now, let's address the other issue. What is your screen and how is it connected
to the board ? Why do you use VBE ? What happens if you remove the X conf,
which basically will just not force VBE mode ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #9 from Bartosz Kosiorek  2012-09-06 
08:15:19 UTC ---
Try to disable VBE mode, and attach Xorg.0.log from openchrome 0.3.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #8 from Sergey Schwartz  2012-09-06 07:01:29 
UTC ---
Created attachment 66711
  --> https://bugs.freedesktop.org/attachment.cgi?id=66711
xorg.conf

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #7 from Sergey Schwartz  2012-09-06 07:01:07 
UTC ---
Created attachment 66710
  --> https://bugs.freedesktop.org/attachment.cgi?id=66710
Xorg crashed log with openchrome v0.3.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #6 from Sergey Schwartz  2012-09-06 06:51:22 
UTC ---
Hi Xavier,

I've managed to build openchrome 0.3.1 driver and now after X is started the
screen gets black and I can't even get console (Ctrl+Alt+F1). I've checked
Xorg.0.log(attached) but couldn't find any error message. Could it be something
special with my system using VBE mode ?

Thanks,
Sergey

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #5 from Sergey Schwartz  2012-09-06 06:51:01 
UTC ---
Created attachment 66704
  --> https://bugs.freedesktop.org/attachment.cgi?id=66704
Xorg log

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #4 from Xavier Bachelot  2012-09-05 13:45:02 
UTC ---
It depends on how fast you want to confirm this is actually fixed or not. I'm
not surprised Ubuntu doesn't have an updated package yet, I've uploaded the new
release less than 24 hours ago ;-)

If you want to build from source, you might want to look at this :
http://www.openchrome.org/trac/wiki/Installation#Installfromareleasetarball

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #3 from Sergey Schwartz  2012-09-05 13:33:36 
UTC ---
Hi Xavier,

It looks like ubuntu 12.10 doesn't have the updated version yet.
Should I build the new version from source code or I can wait for ubuntu
maintainers to build it? 

Thanks for support,
Sergey

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #13 from Xavier Bachelot  2012-09-05 12:05:04 
UTC ---
Another thing to try, add Option "ModeSwitchMethod" "legacy" to your conf file.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #2 from Xavier Bachelot  2012-09-05 11:52:14 
UTC ---
openchrome 0.3.1 has been released. I believe it should fix this issue. Can you
please confirm ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #12 from Bartosz Kosiorek  2012-09-04 
21:18:04 UTC ---
If solution above will not work, try to comment out/delete following lines:

/*
 * Enable video on secondary
 */
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_VM800) && iga->index) {
/* V1_ON_SND_DISPLAY */
vidCtl |= V1_ON_SND_DISPLAY;
/* SECOND_DISPLAY_COLOR_KEY_ENABLE */
compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
}

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #11 from gan...@poczta.onet.pl 2012-09-04 20:42:03 UTC ---
In openchrome, master source code, open src/via_xv_overlay.c file.
Then localize following code:
/*
 * Enable video on secondary
 */
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_VM800) && iga->index) {
/* V1_ON_SND_DISPLAY */
vidCtl |= V1_ON_SND_DISPLAY;
/* SECOND_DISPLAY_COLOR_KEY_ENABLE */
compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
}

Replace it with following and check if it works:

/*
 * Enable video on secondary
 */
if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
 pVia->Chipset == VIA_PM800 ||
 pVia->Chipset == VIA_VM800) && iga->index) {
/* V1_ON_SND_DISPLAY */
vidCtl |= V1_ON_SND_DISPLAY;
/* SECOND_DISPLAY_COLOR_KEY_ENABLE */
compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
}

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #10 from Dominique Parisot  2012-09-01 12:50:21 UTC 
---
I have the same bug after adding the following options in xorg.conf : 
Option "ForcePanel" "true"
Option "ActiveDevice" "LCD"

I have removed VIA_DEVICE_CRT in the following line of via_id.c :
{"Packard Bell Easynote
R1100",VIA_PM800,0x1631,0xC015,VIA_DEVICE_CRT|VIA_DEVICE_LCD}

After compiling and installing, it doesn't change anything...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53307] xf86-video-openchrome 0.3.0 locks system

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53307

--- Comment #4 from fatneckbeard...@mailinator.com 2012-09-01 01:24:28 UTC ---
Apparently no Xorg log is actually created with 0.3.0 upon "startx" and then
subsequent system freeze. Attached dmesg, but I'm not sure how useful it will
be since I can't "startx" and there is no mention of drm.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53307] xf86-video-openchrome 0.3.0 locks system

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53307

--- Comment #3 from fatneckbeard...@mailinator.com 2012-09-01 01:23:24 UTC ---
Created attachment 66429
  --> https://bugs.freedesktop.org/attachment.cgi?id=66429
dmesg

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53307] xf86-video-openchrome 0.3.0 locks system

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53307

--- Comment #2 from James Simmons  2012-08-31 13:41:37 
UTC ---
>From reading the bug report from Arch linux I get the impression you attempting
to run with the new drm KMS driver. Is this true? Can you attach your dmesg
log.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #9 from Dominique Parisot  2012-08-29 17:16:15 UTC 
---
I have the same bug with Skype which can only play video with XV.

I can't try to connect a screen on the VGA port of the laptop because it's not
my computer and it's 60 km far from my home...

Maybe you can add an option in the Xorg.conf to force the CRTC.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #8 from Xavier Bachelot  2012-08-28 20:06:18 
UTC ---
ould you please try with another video player not based on gstreamer, like xine
or mplayer ? This is just to make sure, as I suspect the issue is something
else. I have Xv working on a similar chipset, but on the VGA port. I guess in
your case, the Xv window is not enabled on the proper CRTC.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53307] xf86-video-openchrome 0.3.0 locks system

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53307

--- Comment #1 from Xavier Bachelot  2012-08-28 19:26:35 
UTC ---
This log really is from 0.2.906. Can you please provide the 0.3.0 log ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

--- Comment #1 from Xavier Bachelot  2012-08-28 19:02:02 
UTC ---
Can you please provide the xorg log with the crash ?
Anyway, I suspect this is already fixed by this commit :
http://cgit.freedesktop.org/openchrome/xf86-video-openchrome/commit/?id=131175a7163a9189d70ed3118b45eaceb27898c0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #7 from Dominique Parisot  2012-08-26 17:50:33 UTC 
---
Since my window manager (Metacity) is a compositing window manager, I have
tried to kill its process and to play a video : I have the same bug : the
content of Totem is a black window...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #6 from Dominique Parisot  2012-08-26 17:36:32 UTC 
---
Created attachment 66144
  --> https://bugs.freedesktop.org/attachment.cgi?id=66144
output of the xvinfo command

In attachment, you will find the output of the xvinfo command.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #5 from Dominique Parisot  2012-08-26 17:35:31 UTC 
---
Created attachment 66143
  --> https://bugs.freedesktop.org/attachment.cgi?id=66143
xdpyinfo command output

In attachment, you will find the output of the xdpyinfo command.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

Dominique Parisot  changed:

   What|Removed |Added

  Attachment #66125|0   |1
is obsolete||

--- Comment #4 from Dominique Parisot  2012-08-26 16:26:01 UTC 
---
Created attachment 66141
  --> https://bugs.freedesktop.org/attachment.cgi?id=66141
Xorg log with debug support enabled

I have compiled openchrome-0.3.0 with debug support with the following commands
: 
./configure  --prefix=/usr  --enable-debug --enable-xv-debug
make 
make install

You will find the Xorg log after GDM restart and video playing (with totem).

Thank you for your help :-)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #3 from Dominique Parisot  2012-08-26 07:06:46 UTC 
---
Thank you for your response.
You will find the Xorg log in attachment.

Here is the Xorg configuration file :
Section "Device"
Identifier "devname"
Driver "openchrome"
#Option "NoXVDMA" "false"
#Option "EnableAGPDMA" "false"
EndSection

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #2 from Dominique Parisot  2012-08-26 07:04:35 UTC 
---
Created attachment 66125
  --> https://bugs.freedesktop.org/attachment.cgi?id=66125
Xorg log

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #1 from Xavier Bachelot  2012-08-25 23:52:25 
UTC ---
Can you please provide the full xorg log and the xorg conf ?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54063] New: XV video output does not work with S3 UniChrome Pro

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54063

 Bug #: 54063
   Summary: XV video output does not work with S3 UniChrome Pro
Classification: Unclassified
   Product: xorg
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Driver/openchrome
AssignedTo: openchrome-devel@lists.freedesktop.org
ReportedBy: zio...@free.fr


XV video output is a black screen on my notebook (Packard Bell Easy Note
R1800).

I use a Debian Squeeze distribution. I get the same bug with Ubuntu 12.04.

I have compiled the lastest release of openchrome (0.3.0) but the bug still
exists.

Here is the output of the 'lscpi' command :
01:00.0 VGA compatible controller: VIA Technologies, Inc.
CN400/PM800/PM880/PN800/PN880 [S3 UniChrome Pro] (rev 02)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 54051] New: via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at startup - Segmentation fault

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54051

 Bug #: 54051
   Summary: via p4n800 with openchrome 0.3.0 xorg 7.7 crashes at
startup - Segmentation fault
Classification: Unclassified
   Product: xorg
   Version: 7.7 (2011)
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: blocker
  Priority: medium
 Component: Driver/openchrome
AssignedTo: openchrome-devel@lists.freedesktop.org
ReportedBy: svschwa...@gmail.com


Evaluating ubuntu 12.10 alpha on Via c7 platform. Initially worked fine using
VBE mode for xorg driver and grub_gfx_payload=keep. After installing latest
updates of ubuntu Xorg didn't work anymore.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53307] New: xf86-video-openchrome 0.3.0 locks system

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53307

 Bug #: 53307
   Summary: xf86-video-openchrome 0.3.0 locks system
Classification: Unclassified
   Product: xorg
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Driver/openchrome
AssignedTo: openchrome-devel@lists.freedesktop.org
ReportedBy: fatneckbeard...@mailinator.com


Created attachment 65356
  --> https://bugs.freedesktop.org/attachment.cgi?id=65356
Xorg log

Upgrading from 0.2.906 to 0.3.0 causes the system to become unresponsive
(including SSH sessions). Reverting back to 0.2.906 works as expected.

Watching Xorg.0.log and dmesg during "startx" on remote via SSH with tail did
not create any output but I will provide what I can.

$ lspci | grep VGA
01:00.0 VGA compatible controller: VIA Technologies, Inc. CN896/VN896/P4M900
[Chrome 9 HC] (rev 01)

$ dmesg | grep -e agp -e drm
[5.702201] Linux agpgart interface v0.103
[5.708516] agpgart: Detected VIA P4M900 chipset
[5.717737] agpgart-via :00:00.0: AGP aperture is 128M @ 0xc000
[  876.025413] [drm] Initialized drm 1.1.0 20060810

$ grep openchrome /var/log/Xorg.0.log
[   875.678] (II) LoadModule: "openchrome"
[   875.703] (II) Loading /usr/lib/xorg/modules/drivers/openchrome_drv.so
[   875.703] (II) Module openchrome: vendor="http://openchrome.org/";
[   875.707] (!!) For support, please refer to http://www.openchrome.org/.
[   875.707] (!!) (openchrome 0.2.906 release)
$ grep rendering /var/log/Xorg.0.log
[   876.225] (II) CHROME(0): direct rendering disabled

$ grep "^(EE)" /var/log/Xorg.0.log

$ grep "^(WW)" /var/log/Xorg.0.log

$ uname -a
Linux sasquatch 3.4.7-1-ARCH #1 SMP PREEMPT Sun Jul 29 20:05:01 UTC 2012 i686
GNU/Linux

Attached is the complete Xorg.0.log. Although it mentions 0.2.906 I was using
0.3.0 at the time of the log creation (unless somehow the log is still from
0.2.906).

Please let me know if I am missing anything obvious and I will provide it. I
have no .xsession-errors file.

Originally reported to Arch Linux:
https://bugs.archlinux.org/task/30868

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53000] openchrome 0.3.0 won't build on RHEL5

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53000

--- Comment #1 from Xavier Bachelot  2012-07-31 12:34:18 
UTC ---
Created attachment 64988
  --> https://bugs.freedesktop.org/attachment.cgi?id=64988
Build log

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


[Openchrome-devel] [Bug 53000] New: openchrome 0.3.0 won't build on RHEL5

2012-10-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53000

 Bug #: 53000
   Summary: openchrome 0.3.0 won't build on RHEL5
Classification: Unclassified
   Product: xorg
   Version: unspecified
  Platform: Other
OS/Version: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: Driver/openchrome
AssignedTo: openchrome-devel@lists.freedesktop.org
ReportedBy: xav...@bachelot.org


-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel


Re: [Openchrome-devel] [Openchrome-users] Mailing lists' move

2012-10-29 Thread Xavier Bachelot
Hi,

On 10/22/2012 10:39 PM, Xavier Bachelot wrote:
> Starting Monday, October 29th, sometime in the evening (West Europa
> time), mails sent to openchrome-us...@openchrome.org and
> openchrome-de...@openchrome.org will be redirected to
> openchrome-us...@lists.freedesktop.org and
> openchrome-devel@lists.freedesktop.org, respectively. The change will
> take a couple hours to be propagated through name servers.
> 
> The archives from the openchrome.org mailing lists will be imported into
> the freedesktop.org mailing lists in the days following the redirection.

The MX has been changed and should now have propagated everywhere.
The old mailing lists archives will be imported soon.
Kudos to Thomas, Ivor and the freedesktop admins for the help with both
the old and new infrastructure.

Regards,
Xavier
___
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel