[Bug 30616] New: r600g glitching in tunnel demo

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30616 Summary: r600g glitching in tunnel demo Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[PATCH 0/2] vmwgfx updates for drm-next

2010-10-05 Thread Thomas Hellstrom
This patch series contains a number of bugfixes and brings the vmwgfx driver up-to-date with the standalone repo. Note that the patches are against drm-fixes as of 2010-10-05, since that branch contain vmwgfx fixes that these patches depend upon. Patch 04/11 contains a modesetting driver API chan

[PATCH 01/11] vmwgfx: Really support other depths than 32

2010-10-05 Thread Thomas Hellstrom
Also add some sanity checks. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 106 --- 1 files changed, 85 insertions(+), 21 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c index e882b

[PATCH 02/11] vmwgfx: Fix ACPI S3 & S4 functionality.

2010-10-05 Thread Thomas Hellstrom
Don't suspend or hibernate when there are 3D resources active since we can't restore the device's 3D state. Instead fail with an error message. In other cases, make sure we re-enable the fifo and unlock ttm on resume. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 3

[PATCH 03/11] vmwgfx: Add new-style PM hooks to improve hibernation behavior

2010-10-05 Thread Thomas Hellstrom
Add the new-style PM hooks prepare and complete. This allows us to power up the device again after the hibernation image has been created, and display output will thus be active until the VM is finally powered off. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 113 ++

[PATCH 04/11] drm: vmwgfx: Add a struct drm_file parameter to the dirty framebuffer callback

2010-10-05 Thread Thomas Hellstrom
This is needed for the callback to identify the caller and take appropriate locks if needed. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/drm_crtc.c |3 ++- drivers/gpu/drm/vmwgfx/vmwgfx_kms.c |2 ++ include/drm/drm_crtc.h |3 ++- 3 files changed, 6 inser

[PATCH 05/11] vmwgfx: Take the ttm lock around the dirty ioctl

2010-10-05 Thread Thomas Hellstrom
This makes sure noone accesses the fifo while it's taken down using the dirty ioctl. Also make sure all workqueues are idled before the fifo is taken down. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c |5 ++- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |3 + drivers/gp

[PATCH 06/11] vmwgfx: Prune modes based on available VRAM size

2010-10-05 Thread Thomas Hellstrom
This needs to be reviewed once we support screen objects and don't rely on VRAM for the frame-buffer. Also fix some integer overflow issues pointed out by Michel Daenzer. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |3 +++ drivers/gpu/drm/vmwgfx/vmwgfx_fb.c |

[PATCH 07/11] vmwgfx: Don't flush fb if we're in the suspended state.

2010-10-05 Thread Thomas Hellstrom
Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_fb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c b/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c index 086ef04..b27a9f2 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c +++ b/d

[PATCH 08/11] vmwgfx: Add a parameter to get the max fb size

2010-10-05 Thread Thomas Hellstrom
This can be used by the X server to restrict mode resolutions and size of root pixmap. Bump minor to announce this availability. Bump driver date. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |4 ++-- drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c |3 +++ include/drm

[PATCH 09/11] vmwgfx: Add modinfo version

2010-10-05 Thread Thomas Hellstrom
Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 9350d48..131c7f7 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c ++

[PATCH 10/11] vmwgfx: Save at least one screen layout

2010-10-05 Thread Thomas Hellstrom
Save at least one screen layout during vga save to avoid odd things happening during restore. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_kms.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/

[PATCH 11/11] vmwgfx: Bump minor and driver date

2010-10-05 Thread Thomas Hellstrom
Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h index 217ba1f..9d55fa8 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h ++

[Bug 30620] New: KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 Summary: KMS on RS100: no display on VGA Product: DRI Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Co

[Bug 30626] New: bisected nexuiz issue since r600g: don't double count dirty block

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30626 Summary: bisected nexuiz issue since r600g: don't double count dirty block Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #1 from Alex Deucher 2010-10-05 08:12:07 PDT --- Can you attach the kms dmesg output and the Xorg log? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- Y

[Bug 30188] X server crashes with a SIGBUS on Evergreen

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30188 --- Comment #9 from Felix Blanke 2010-10-05 08:42:50 PDT --- Are there any kind of information I (we) can provide to help to solve this bug? I'm getting this bug a lot and it is really frustrating losing some work etc. while X is crashing :/ -

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #2 from Alex Deucher 2010-10-05 09:15:37 PDT --- Also, please attach a copy of your video bios. To get a copy, do the following as root: cd /sys/bus/pci/devices/ echo 1 > rom cat rom > /tmp/vbios.rom echo 0 > rom -- Configure bugm

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #3 from Rafał Miłecki 2010-10-05 10:24:22 PDT --- Created an attachment (id=39185) --> (https://bugs.freedesktop.org/attachment.cgi?id=39185) dmesg for KMS I didn't want to explain how to blacklist module, test, then remove it so I

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #4 from Rafał Miłecki 2010-10-05 10:25:18 PDT --- Created an attachment (id=39186) --> (https://bugs.freedesktop.org/attachment.cgi?id=39186) [UMS] Xorg.0.log Xorg.0.log form *UMS* as problem seems to be shared between KMS and UMS.

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #5 from Alex Deucher 2010-10-05 10:42:02 PDT --- Everything looks correct. Can you dump the regs using radeontool with kms and with radeonfb? As root: with radeonfb: radeontool regmatch '*' > working.regs with kms: radeontool regmat

[Bug 30483] r600g makes kwin (ab)use 100% CPU

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30483 Fredrik Höglund changed: What|Removed |Added CC||fred...@kde.org --- Comment #3 from Fr

[Bug 30483] r600g makes kwin (ab)use 100% CPU

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30483 Alex Deucher changed: What|Removed |Added Component|Drivers/DRI/R600|Drivers/Gallium/r600 -- Configure bugmai

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #6 from Rafał Miłecki 2010-10-05 12:29:10 PDT --- Created an attachment (id=39189) --> (https://bugs.freedesktop.org/attachment.cgi?id=39189) regs dump when using KMS -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #7 from Rafał Miłecki 2010-10-05 12:29:37 PDT --- Created an attachment (id=39190) --> (https://bugs.freedesktop.org/attachment.cgi?id=39190) regs dump when using radeonfb -- Configure bugmail: https://bugs.freedesktop.org/userpref

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #8 from Rafał Miłecki 2010-10-05 12:31:36 PDT --- Created an attachment (id=39192) --> (https://bugs.freedesktop.org/attachment.cgi?id=39192) diff -u broken.regs working.regs -- Configure bugmail: https://bugs.freedesktop.org/userp

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 Alex Deucher changed: What|Removed |Added Attachment #39192|text/x-diff |text/plain mime type|

[Bug 30626] bisected nexuiz issue since r600g: don't double count dirty block

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30626 Andy Furniss changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 30626] bisected nexuiz issue since r600g: don't double count dirty block

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30626 --- Comment #2 from Andy Furniss 2010-10-05 13:14:38 PDT --- (In reply to comment #1) > Fixed by > 12d16e5f14237d86315bf5a5d6a7cf0619a7334e > r600g: store reloc information in bo structure Oops - it wasn't that one that fixed, it was - 585e40

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #9 from Alex Deucher 2010-10-05 14:43:25 PDT --- Does the following fix kms/ums? radeontool regset 0x0284 0x0023 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail beca

[Bug 30638] New: Flash doesn't work in fullscreen with r300 using Mesa 7.9

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30638 Summary: Flash doesn't work in fullscreen with r300 using Mesa 7.9 Product: Mesa Version: unspecified Platform: Other OS/Version: All Status: NEW Severity

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #10 from Alex Deucher 2010-10-05 15:10:25 PDT --- Created an attachment (id=39197) View: https://bugs.freedesktop.org/attachment.cgi?id=39197 Review: https://bugs.freedesktop.org/review?bug=30620&attachment=39197 disable alt timing

[PATCH 1/2] KMS/Radeon: Add function for display scanout position query.

2010-10-05 Thread Alex Deucher
From: Mario Kleiner radeon_get_crtc_scanoutpos() returns the current horizontal and vertical scanout position of a crtc. It also reports if the display scanout is currently inside the vblank area. hpos reports current horizontal pixel scanout position. vpos reports the current scanned out line a

[PATCH 2/2] KMS/Radeon: Modify radeon_pm_in_vbl to use radeon_get_crtc_scanoutpos()

2010-10-05 Thread Alex Deucher
From: Mario Kleiner radeon_pm_in_vbl() didn't report in vblank status accurately. Make it a wrapper around radeon_get_crtc_scanoutpos() which corrects for biases, so it reports accurately. radeon_pm_in_vbl() will only report in_vbl if all active crtc's are currently inside vblank. agd5f: use rd

[Bug 29738] SIGBUS after upgrade to 2.6.36-rc1-git4 [full stacktrace]

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29738 --- Comment #23 from Maggioni Marcello 2010-10-05 17:42:51 PDT --- Created an attachment (id=39199) --> (https://bugs.freedesktop.org/attachment.cgi?id=39199) Xorg backtrace -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab

[Bug 30188] X server crashes with a SIGBUS on Evergreen

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30188 --- Comment #10 from Maggioni Marcello 2010-10-05 17:47:06 PDT --- same problem here with similar backtrace. (I'll attach the backtrace) The mouse freezes and X restarts. Okular is the only application that seems to trigger easily this bug. --

[Bug 30188] X server crashes with a SIGBUS on Evergreen

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30188 --- Comment #11 from Maggioni Marcello 2010-10-05 17:47:36 PDT --- Created an attachment (id=39200) --> (https://bugs.freedesktop.org/attachment.cgi?id=39200) Xorg backtrace -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab

[Bug 30638] Flash doesn't work in fullscreen with r300 using Mesa 7.9

2010-10-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30638 --- Comment #1 from Frédéric L. W. Meunier 2010-10-05 19:30:11 PDT --- I forgot to report that I have 00:00.0 Host bridge: ATI Technologies Inc RS690 Host Bridge 00:01.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge (Internal gfx) 01

[PATCH] drm/radeon/kms: make sure blit addr masks are 64 bit

2010-10-05 Thread Alex Deucher
Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/evergreen_blit_kms.c |8 drivers/gpu/drm/radeon/r600_blit_kms.c |8 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/gpu/drm/radeon/evergreen_blit_kms.c b/drivers/gpu/drm/radeon/evergreen_

[BUG][PATCH] 2.6.36-rc showstopper (at least for me) in vmwgfx

2010-10-05 Thread Nigel Cunningham
Running a kernel based on the Rafael's -next tree, under VMware, I get the following oops while booting: Entering kdb (current=0xd73e2f70, pid 1024) on processor 0 Oops: (null) due to oops @ 0xc108bc94 Modules linked in: ext4 jbd2 crc16 mptspi mptscsih mptbase Pid: 1024, comm: plymouthd Not tain

[PATCH v2 1/1] nouveau: ratelimit IRQ messages

2010-10-05 Thread Ben Skeggs
On Mon, 2010-10-04 at 15:11 +0200, Jiri Slaby wrote: > There are two messages in the ISR of nouveau which might be printed out > hundred times in a second. Ratelimit them. (We need to move > nouveau_ratelimit to the top of the file.) Looks good to me. If you could rebase this on nouveau git (git.f

[BUG][PATCH] 2.6.36-rc showstopper (at least for me) in vmwgfx

2010-10-05 Thread Dave Airlie
On Tue, Oct 5, 2010 at 8:57 AM, Nigel Cunningham wrote: > Running a kernel based on the Rafael's -next tree, under VMware, I get the > following oops while booting: Should already be fixed in Linus tree by, http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f1a28ee238bdd

[BUG][PATCH] 2.6.36-rc showstopper (at least for me) in vmwgfx

2010-10-05 Thread Nigel Cunningham
Hi. On 05/10/10 12:51, Dave Airlie wrote: > On Tue, Oct 5, 2010 at 8:57 AM, Nigel Cunningham > wrote: >> Running a kernel based on the Rafael's -next tree, under VMware, I get the >> following oops while booting: > > Should already be fixed in Linus tree by, > http://git.kernel.org/?p=linux/ker

[Bug 30616] New: r600g glitching in tunnel demo

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30616 Summary: r600g glitching in tunnel demo Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[PATCH 0/2] vmwgfx updates for drm-next

2010-10-05 Thread Thomas Hellstrom
This patch series contains a number of bugfixes and brings the vmwgfx driver up-to-date with the standalone repo. Note that the patches are against drm-fixes as of 2010-10-05, since that branch contain vmwgfx fixes that these patches depend upon. Patch 04/11 contains a modesetting driver API chan

[PATCH 01/11] vmwgfx: Really support other depths than 32

2010-10-05 Thread Thomas Hellstrom
Also add some sanity checks. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 106 --- 1 files changed, 85 insertions(+), 21 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c index e882b

[PATCH 02/11] vmwgfx: Fix ACPI S3 & S4 functionality.

2010-10-05 Thread Thomas Hellstrom
Don't suspend or hibernate when there are 3D resources active since we can't restore the device's 3D state. Instead fail with an error message. In other cases, make sure we re-enable the fifo and unlock ttm on resume. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 3

[PATCH 03/11] vmwgfx: Add new-style PM hooks to improve hibernation behavior

2010-10-05 Thread Thomas Hellstrom
Add the new-style PM hooks prepare and complete. This allows us to power up the device again after the hibernation image has been created, and display output will thus be active until the VM is finally powered off. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 113 ++

[PATCH 04/11] drm: vmwgfx: Add a struct drm_file parameter to the dirty framebuffer callback

2010-10-05 Thread Thomas Hellstrom
This is needed for the callback to identify the caller and take appropriate locks if needed. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/drm_crtc.c |3 ++- drivers/gpu/drm/vmwgfx/vmwgfx_kms.c |2 ++ include/drm/drm_crtc.h |3 ++- 3 files changed, 6 inser

[PATCH 05/11] vmwgfx: Take the ttm lock around the dirty ioctl

2010-10-05 Thread Thomas Hellstrom
This makes sure noone accesses the fifo while it's taken down using the dirty ioctl. Also make sure all workqueues are idled before the fifo is taken down. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c |5 ++- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |3 + drivers/gp

[PATCH 06/11] vmwgfx: Prune modes based on available VRAM size

2010-10-05 Thread Thomas Hellstrom
This needs to be reviewed once we support screen objects and don't rely on VRAM for the frame-buffer. Also fix some integer overflow issues pointed out by Michel Daenzer. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |3 +++ drivers/gpu/drm/vmwgfx/vmwgfx_fb.c |

[PATCH 07/11] vmwgfx: Don't flush fb if we're in the suspended state.

2010-10-05 Thread Thomas Hellstrom
Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_fb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c b/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c index 086ef04..b27a9f2 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c +++ b/d

[PATCH 08/11] vmwgfx: Add a parameter to get the max fb size

2010-10-05 Thread Thomas Hellstrom
This can be used by the X server to restrict mode resolutions and size of root pixmap. Bump minor to announce this availability. Bump driver date. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |4 ++-- drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c |3 +++ include/drm

[PATCH 09/11] vmwgfx: Add modinfo version

2010-10-05 Thread Thomas Hellstrom
Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 9350d48..131c7f7 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c ++

[PATCH 10/11] vmwgfx: Save at least one screen layout

2010-10-05 Thread Thomas Hellstrom
Save at least one screen layout during vga save to avoid odd things happening during restore. Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_kms.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/

[PATCH 11/11] vmwgfx: Bump minor and driver date

2010-10-05 Thread Thomas Hellstrom
Signed-off-by: Thomas Hellstrom --- drivers/gpu/drm/vmwgfx/vmwgfx_drv.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h index 217ba1f..9d55fa8 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h ++

[Bug 30620] New: KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 Summary: KMS on RS100: no display on VGA Product: DRI Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Co

[Bug 30626] New: bisected nexuiz issue since r600g: don't double count dirty block

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30626 Summary: bisected nexuiz issue since r600g: don't double count dirty block Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #1 from Alex Deucher 2010-10-05 08:12:07 PDT --- Can you attach the kms dmesg output and the Xorg log? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Bug 30188] X server crashes with a SIGBUS on Evergreen

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30188 --- Comment #9 from Felix Blanke 2010-10-05 08:42:50 PDT --- Are there any kind of information I (we) can provide to help to solve this bug? I'm getting this bug a lot and it is really frustrating losing some work etc. while X is crashing :/ -

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #2 from Alex Deucher 2010-10-05 09:15:37 PDT --- Also, please attach a copy of your video bios. To get a copy, do the following as root: cd /sys/bus/pci/devices/ echo 1 > rom cat rom > /tmp/vbios.rom echo 0 > rom -- Configure bug

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #3 from Rafa? Mi?ecki 2010-10-05 10:24:22 PDT --- Created an attachment (id=39185) --> (https://bugs.freedesktop.org/attachment.cgi?id=39185) dmesg for KMS I didn't want to explain how to blacklist module, test, then remove it so I

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #4 from Rafa? Mi?ecki 2010-10-05 10:25:18 PDT --- Created an attachment (id=39186) --> (https://bugs.freedesktop.org/attachment.cgi?id=39186) [UMS] Xorg.0.log Xorg.0.log form *UMS* as problem seems to be shared between KMS and UMS.

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #5 from Alex Deucher 2010-10-05 10:42:02 PDT --- Everything looks correct. Can you dump the regs using radeontool with kms and with radeonfb? As root: with radeonfb: radeontool regmatch '*' > working.regs with kms: radeontool regma

[Bug 30483] r600g makes kwin (ab)use 100% CPU

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30483 Fredrik H?glund changed: What|Removed |Added CC||fredrik at kde.org --- Comment #3 from

[Bug 30483] r600g makes kwin (ab)use 100% CPU

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30483 Alex Deucher changed: What|Removed |Added Component|Drivers/DRI/R600|Drivers/Gallium/r600 -- Configure bugmai

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #6 from Rafa? Mi?ecki 2010-10-05 12:29:10 PDT --- Created an attachment (id=39189) --> (https://bugs.freedesktop.org/attachment.cgi?id=39189) regs dump when using KMS -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cg

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #7 from Rafa? Mi?ecki 2010-10-05 12:29:37 PDT --- Created an attachment (id=39190) --> (https://bugs.freedesktop.org/attachment.cgi?id=39190) regs dump when using radeonfb -- Configure bugmail: https://bugs.freedesktop.org/userpre

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #8 from Rafa? Mi?ecki 2010-10-05 12:31:36 PDT --- Created an attachment (id=39192) --> (https://bugs.freedesktop.org/attachment.cgi?id=39192) diff -u broken.regs working.regs -- Configure bugmail: https://bugs.freedesktop.org/user

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 Alex Deucher changed: What|Removed |Added Attachment #39192|text/x-diff |text/plain mime type|

[Bug 30626] bisected nexuiz issue since r600g: don't double count dirty block

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30626 Andy Furniss changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 30626] bisected nexuiz issue since r600g: don't double count dirty block

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30626 --- Comment #2 from Andy Furniss 2010-10-05 13:14:38 PDT --- (In reply to comment #1) > Fixed by > 12d16e5f14237d86315bf5a5d6a7cf0619a7334e > r600g: store reloc information in bo structure Oops - it wasn't that one that fixed, it was - 585e40

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #9 from Alex Deucher 2010-10-05 14:43:25 PDT --- Does the following fix kms/ums? radeontool regset 0x0284 0x0023 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail bec

[Bug 30638] New: Flash doesn't work in fullscreen with r300 using Mesa 7.9

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30638 Summary: Flash doesn't work in fullscreen with r300 using Mesa 7.9 Product: Mesa Version: unspecified Platform: Other OS/Version: All Status: NEW Severity

[Bug 30620] KMS on RS100: no display on VGA

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30620 --- Comment #10 from Alex Deucher 2010-10-05 15:10:25 PDT --- Created an attachment (id=39197) View: https://bugs.freedesktop.org/attachment.cgi?id=39197 Review: https://bugs.freedesktop.org/review?bug=30620&attachment=39197 disable alt timin

[PATCH 1/2] KMS/Radeon: Add function for display scanout position query.

2010-10-05 Thread Alex Deucher
From: Mario Kleiner radeon_get_crtc_scanoutpos() returns the current horizontal and vertical scanout position of a crtc. It also reports if the display scanout is currently inside the vblank area. hpos reports current horizontal pixel scanout position. vpos reports the current scanned out line a

[PATCH 2/2] KMS/Radeon: Modify radeon_pm_in_vbl to use radeon_get_crtc_scanoutpos()

2010-10-05 Thread Alex Deucher
From: Mario Kleiner radeon_pm_in_vbl() didn't report in vblank status accurately. Make it a wrapper around radeon_get_crtc_scanoutpos() which corrects for biases, so it reports accurately. radeon_pm_in_vbl() will only report in_vbl if all active crtc's are currently inside vblank. agd5f: use rd

[Bug 29738] SIGBUS after upgrade to 2.6.36-rc1-git4 [full stacktrace]

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29738 --- Comment #23 from Maggioni Marcello 2010-10-05 17:42:51 PDT --- Created an attachment (id=39199) --> (https://bugs.freedesktop.org/attachment.cgi?id=39199) Xorg backtrace -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab

[Bug 30188] X server crashes with a SIGBUS on Evergreen

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30188 --- Comment #10 from Maggioni Marcello 2010-10-05 17:47:06 PDT --- same problem here with similar backtrace. (I'll attach the backtrace) The mouse freezes and X restarts. Okular is the only application that seems to trigger easily this bug. --

[Bug 30188] X server crashes with a SIGBUS on Evergreen

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30188 --- Comment #11 from Maggioni Marcello 2010-10-05 17:47:36 PDT --- Created an attachment (id=39200) --> (https://bugs.freedesktop.org/attachment.cgi?id=39200) Xorg backtrace -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab

[Bug 30638] Flash doesn't work in fullscreen with r300 using Mesa 7.9

2010-10-05 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=30638 --- Comment #1 from Fr?d?ric L. W. Meunier 2010-10-05 19:30:11 PDT --- I forgot to report that I have 00:00.0 Host bridge: ATI Technologies Inc RS690 Host Bridge 00:01.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge (Internal gfx) 01