[PATCH] drm/radeon/kms/atom: fix PHY init

2011-06-03 Thread Ari Savolainen
I tested the patch and it fixed the problem. Thanks, Ari 2011/6/3 Alex Deucher : > The PHY was not initialized correctly after > ac89af1e1010640db072416c786f97391b85790f since > the function bailed early as an encoder was not > assigned. ?The encoder isn't necessary for PHY init > so just assign

[Bug 37911] New: supertuxkart crashes with r300g

2011-06-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37911 Summary: supertuxkart crashes with r300g Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[Bug 37911] New: supertuxkart crashes with r300g

2011-06-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37911 Summary: supertuxkart crashes with r300g Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Ari Savolainen
I'm using ASUS EAH3650SILENTMG/HTDP. I got the feeling that in my case, radeon_atom_encoder_prepare needed to be called before radeon_atom_encoder_init (the call occurred during radeon_fbdev_init). That ensured radeon_encoder->enc_priv->dig_encoder to have a value other than -1 in the first call o

[PATCH]remove warning for drivers/gpu/drm/i915/intel_ringbuffer.c

2011-06-03 Thread Harry Wei
From: Harry Wei When i compile kernel, it shows me two warnings like below, so this patch can fix them. [...] CC [M] drivers/gpu/drm/i915/intel_dvo.o CC [M] drivers/gpu/drm/i915/intel_ringbuffer.o drivers/gpu/drm/i915/intel_ringbuffer.c:603: warning: ?ring_get_irq? defined but

Re: Semantics of the 'dumb' interface

2011-06-03 Thread Dave Airlie
On Fri, Jun 3, 2011 at 4:37 AM, Alan Cox wrote: > I have GEM allocation working on the GMA 500 and I can scribble in a > framebuffer (minus an odd 'last page' bug which is an off by one > somewhere I imagine) and display it with nice modetest stripes. > > If I kill the program however it all goes

Re: Questions about libdrm_intel and way to share physical memory between CPU and GPU

2011-06-03 Thread Eric Anholt
On Thu, 2 Jun 2011 19:42:03 +0100, Alan Cox wrote: > On Sat, 28 May 2011 09:54:01 +0100 > Chris Wilson wrote: > > > On Fri, 27 May 2011 14:37:45 -0700, "Segovia, Benjamin" > > wrote: > > > Hello gurus, > > > > > > I have two question mostly regarding libdrm_intel > > > > > > 1/ What is the d

Questions about libdrm_intel and way to share physical memory between CPU and GPU

2011-06-03 Thread Eric Anholt
-- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20110603/c296ad8e/attachment.pgp>

[Bug 28622] radeon video lockup

2011-06-03 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=28622 --- Comment #10 from Daniel Poelzleithner 2011-06-04 00:36:02 --- Created an attachment (id=60712) --> (https://bugzilla.kernel.org/attachment.cgi?id=60712) 2.6.39 lockup -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab

[Bug 28622] radeon video lockup

2011-06-03 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=28622 --- Comment #9 from Daniel Poelzleithner 2011-06-04 00:34:36 --- the 2.6.38 was sligthly more stable then the 2.6.39 is. the current lockup shows: [17052.294941] runnable tasks: [17052.294942] task PID tree-key switc

Re: [PULL] drm-intel-next

2011-06-03 Thread Keith Packard
Here's another handful of fixes that I had merged to drm-intel-next. Once these are merged, I'll move drm-intel-fixes and start putting stuff there for 3.0. The following changes since commit 9e3c256d7d56a12a324945ce8e6347f93fa0: drm/i915: initialize gen6 rps work queue on Sandy Bridge and

[PULL] drm-intel-next

2011-06-03 Thread Keith Packard
/pgp-signature Size: 189 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20110603/df92d7d5/attachment.pgp>

[PATCH] drm/radeon/kms/atom: fix PHY init

2011-06-03 Thread Alex Deucher
The PHY was not initialized correctly after ac89af1e1010640db072416c786f97391b85790f since the function bailed early as an encoder was not assigned. The encoder isn't necessary for PHY init so just assign to 0 for init so that the table is executed. Reported-by: Ari Savolainen Cc: Ari Savolaine

[PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Alex Deucher
On Fri, Jun 3, 2011 at 4:03 PM, Ari Savolainen wrote: > I'm using ASUS EAH3650SILENTMG/HTDP. > > I got the feeling that in my case, radeon_atom_encoder_prepare needed to be > called before radeon_atom_encoder_init (the call occurred during > radeon_fbdev_init). That ensured radeon_encoder->enc_pri

3D support for Displaylink devices

2011-06-03 Thread Prasanna Kumar T S M
On 03-06-2011 00:16, Alan Cox wrote: >> The window system needs support for splitting rendering and display. >> In X these are currently tied together. The only real obstacle is >> fixing this in X. However, this is a lot of work. Dave Airlie has >> started working on this, but it's not really u

[Bug 36812] GPU lockup in Team Fortress 2

2011-06-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36812 --- Comment #9 from Sven Arvidsson 2011-06-03 13:54:28 PDT --- I noticed that a few piglit tests causes GPU hang/resets when run with MESA_GLSL=nopt. Is this to be expected or is it worth to file bugs? The failing tests are glsl-fs-atan-2, glsl-

Re: [PATCH] drm/radeon/kms/atom: fix PHY init

2011-06-03 Thread Ari Savolainen
I tested the patch and it fixed the problem. Thanks, Ari 2011/6/3 Alex Deucher : > The PHY was not initialized correctly after > ac89af1e1010640db072416c786f97391b85790f since > the function bailed early as an encoder was not > assigned.  The encoder isn't necessary for PHY init > so just assign

[Bug 36812] GPU lockup in Team Fortress 2

2011-06-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=36812 --- Comment #9 from Sven Arvidsson 2011-06-03 13:54:28 PDT --- I noticed that a few piglit tests causes GPU hang/resets when run with MESA_GLSL=nopt. Is this to be expected or is it worth to file bugs? The failing tests are glsl-fs-atan-2, glsl-

[Bug 30052] Fails to start X with intel+Ati video, whith modeset=1

2011-06-03 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=30052 --- Comment #16 from Seth Forshee 2011-06-03 13:53:31 --- Adding here some of the information that I added to the freedesktop.org bugzilla here: https://bugs.freedesktop.org/show_bug.cgi?id=36003 It seems to me that nothing being done curr

[PATCH] drm/radeon/kms/atom: fix PHY init

2011-06-03 Thread Alex Deucher
The PHY was not initialized correctly after ac89af1e1010640db072416c786f97391b85790f since the function bailed early as an encoder was not assigned. The encoder isn't necessary for PHY init so just assign to 0 for init so that the table is executed. Reported-by: Ari Savolainen Cc: Ari Savolaine

Re: [PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Alex Deucher
On Fri, Jun 3, 2011 at 4:03 PM, Ari Savolainen wrote: > I'm using ASUS EAH3650SILENTMG/HTDP. > > I got the feeling that in my case, radeon_atom_encoder_prepare needed to be > called before radeon_atom_encoder_init (the call occurred during > radeon_fbdev_init). That ensured radeon_encoder->enc_pri

Re: [PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Ari Savolainen
I'm using ASUS EAH3650SILENTMG/HTDP. I got the feeling that in my case, radeon_atom_encoder_prepare needed to be called before radeon_atom_encoder_init (the call occurred during radeon_fbdev_init). That ensured radeon_encoder->enc_priv->dig_encoder to have a value other than -1 in the first call o

[PATCH] drm: fix fbs in DRM_IOCTL_MODE_GETRESOURCES ioctl

2011-06-03 Thread Sascha Hauer
The DRM_IOCTL_MODE_GETRESOURCES ioctl just returns bogus framebuffers. That is because the framebuffers for each file are in the filp_head member of struct drm_framebuffer, not in the head member. Signed-off-by: Sascha Hauer --- drivers/gpu/drm/drm_crtc.c |2 +- 1 files changed, 1 insertion

[PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Alex Deucher
On Thu, Jun 2, 2011 at 5:20 PM, Ari Savolainen wrote: > Commit ac89af1e1010640db072416c786f97391b85790f caused one of the monitors > attached to a dual head radeon gpu to have inverted colors (until the first > suspend/resume). Initializing dig phy a bit later fixes the problem. Strange, I don't

[Bug 37785] [r600g Evergreen] GPU lockup on Blender 2.57 when moving objects

2011-06-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37785 Antti Lahtinen changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 37785] [r600g Evergreen] GPU lockup on Blender 2.57 when moving objects

2011-06-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37785 Antti Lahtinen changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

3D support for Displaylink devices

2011-06-03 Thread Alex Deucher
On Fri, Jun 3, 2011 at 5:00 AM, Prasanna Kumar T S M wrote: > On 03-06-2011 00:16, Alan Cox wrote: >>> >>> The window system needs support for splitting rendering and display. >>> In X these are currently tied together. ?The only real obstacle is >>> fixing this in X. ?However, this is a lot of wo

[Bug 37220] RS482: Screen starts flashing after screensaver with KDE KWin desktop effects enabled

2011-06-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37220 --- Comment #4 from Jure Repinc 2011-06-03 10:52:24 PDT --- I compiled latest mesa (git-51d0892) on my other, desktop computer with ATI Technologies Inc RV350 AR [Radeon 9600] and it has the same problem. Xorg server is 1.10.2, Linux kernel is 2.

[Bug 37220] RS482: Screen starts flashing after screensaver with KDE KWin desktop effects enabled

2011-06-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37220 --- Comment #4 from Jure Repinc 2011-06-03 10:52:24 PDT --- I compiled latest mesa (git-51d0892) on my other, desktop computer with ATI Technologies Inc RV350 AR [Radeon 9600] and it has the same problem. Xorg server is 1.10.2, Linux kernel is 2

Re: [PATCH]remove warning for drivers/gpu/drm/i915/intel_ringbuffer.c

2011-06-03 Thread Keith Packard
On Fri, 3 Jun 2011 21:09:39 +0800, Harry Wei wrote: (process:18294): gmime-CRITICAL **: g_mime_stream_filter_add: assertion `GMIME_IS_FILTER (filter)' failed > From: Harry Wei > When i compile kernel, it shows me two warnings > like below, so this patch can fix them. This fix is already upstre

[PATCH]remove warning for drivers/gpu/drm/i915/intel_ringbuffer.c

2011-06-03 Thread Keith Packard
as scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20110603/5715ca05/attachment.pgp>

Re: [Trivial PATCH 2/5] drm: Use angle brackets for system includes

2011-06-03 Thread Keith Packard
On Fri, 3 Jun 2011 02:28:47 -0700, Joe Perches wrote: > drivers/gpu/drm/i915/i915_gem_tiling.c|4 ++-- Acked-by: Keith Packard Dave -- if you want to just merge this to your tree, that's fine with me. -- keith.pack...@intel.com pgpfKcfQohl1E.pgp Description: PGP signature

[Trivial PATCH 2/5] drm: Use angle brackets for system includes

2011-06-03 Thread Keith Packard
-- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20110603/5f738a51/attachment.pgp>

Re: [PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Alex Deucher
On Thu, Jun 2, 2011 at 5:20 PM, Ari Savolainen wrote: > Commit ac89af1e1010640db072416c786f97391b85790f caused one of the monitors > attached to a dual head radeon gpu to have inverted colors (until the first > suspend/resume). Initializing dig phy a bit later fixes the problem. Strange, I don't

Re: 3D support for Displaylink devices

2011-06-03 Thread Alex Deucher
On Fri, Jun 3, 2011 at 5:00 AM, Prasanna Kumar T S M wrote: > On 03-06-2011 00:16, Alan Cox wrote: >>> >>> The window system needs support for splitting rendering and display. >>> In X these are currently tied together.  The only real obstacle is >>> fixing this in X.  However, this is a lot of wo

[Bug 30052] Fails to start X with intel+Ati video, whith modeset=1

2011-06-03 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=30052 --- Comment #16 from Seth Forshee 2011-06-03 13:53:31 --- Adding here some of the information that I added to the freedesktop.org bugzilla here: https://bugs.freedesktop.org/show_bug.cgi?id=36003 It seems to me that nothing being done curr

[PATCH] drm: fix fbs in DRM_IOCTL_MODE_GETRESOURCES ioctl

2011-06-03 Thread Sascha Hauer
The DRM_IOCTL_MODE_GETRESOURCES ioctl just returns bogus framebuffers. That is because the framebuffers for each file are in the filp_head member of struct drm_framebuffer, not in the head member. Signed-off-by: Sascha Hauer --- drivers/gpu/drm/drm_crtc.c |2 +- 1 files changed, 1 insertion

[Trivial PATCH 2/5] drm: Use angle brackets for system includes

2011-06-03 Thread Joe Perches
Use the normal include style. Signed-off-by: Joe Perches --- drivers/gpu/drm/drm_ioctl.c |2 +- drivers/gpu/drm/i915/i915_gem_tiling.c|4 ++-- drivers/gpu/drm/nouveau/nouveau_drv.h | 10 +- drivers/gpu/drm/ttm/ttm_agp_backend.c |6 +

[Trivial PATCH 0/5] treewide: Use angle brackets for system includes

2011-06-03 Thread Joe Perches
Just neatening. Joe Perches (5): drbd: Use angle brackets for system includes drm: Use angle brackets for system includes aix94xx: Use angle brackets for system includes ALSA: asihpi: Use angle brackets for system includes staging: msm: Use angle brackets for system includes drivers/bl

[Trivial PATCH 2/5] drm: Use angle brackets for system includes

2011-06-03 Thread Joe Perches
Use the normal include style. Signed-off-by: Joe Perches --- drivers/gpu/drm/drm_ioctl.c |2 +- drivers/gpu/drm/i915/i915_gem_tiling.c|4 ++-- drivers/gpu/drm/nouveau/nouveau_drv.h | 10 +- drivers/gpu/drm/ttm/ttm_agp_backend.c |6 +

[Trivial PATCH 0/5] treewide: Use angle brackets for system includes

2011-06-03 Thread Joe Perches
Just neatening. Joe Perches (5): drbd: Use angle brackets for system includes drm: Use angle brackets for system includes aix94xx: Use angle brackets for system includes ALSA: asihpi: Use angle brackets for system includes staging: msm: Use angle brackets for system includes drivers/bl

Re: 3D support for Displaylink devices

2011-06-03 Thread Prasanna Kumar T S M
On 03-06-2011 00:16, Alan Cox wrote: The window system needs support for splitting rendering and display. In X these are currently tied together. The only real obstacle is fixing this in X. However, this is a lot of work. Dave Airlie has started working on this, but it's not really usable yet.

[PATCH] drm/radeon/kms/atom: initialize dig phy a bit later

2011-06-03 Thread Ari Savolainen
Commit ac89af1e1010640db072416c786f97391b85790f caused one of the monitors attached to a dual head radeon gpu to have inverted colors (until the first suspend/resume). Initializing dig phy a bit later fixes the problem. --- drivers/gpu/drm/radeon/radeon_display.c |8 1 files changed,