[RFC v2 6/8] gpu: drm: tegra: Remove redundant host1x

2012-12-05 Thread Terje Bergström
On 05.12.2012 14:04, Thierry Reding wrote: > On Wed, Dec 05, 2012 at 01:47:38PM +0200, Terje Bergstr?m wrote: > Yes, but there's more. For instance I went to great lengths to make sure > there's no global data whatsoever. So all the data is bound to the > host1x device in the current code. I know m

[Bug 36554] Amnesia game causes black screen or kernel locks

2012-12-05 Thread bugzilla-dae...@freedesktop.org
are black :/ -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/9002e45c/attachment.html>

[Bug 34097] Screen clearing issues in Minecraft and Blender

2012-12-05 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/7c706cda/attachment.html>

[Bug 36554] Amnesia game causes black screen or kernel locks

2012-12-05 Thread bugzilla-dae...@freedesktop.org
Arch linux x64 , mesa-git, xorg-server-git, xf86-video-ati-git ,kernel 3.6.9, kde 4.9.90 -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/

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

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/7177c2de/attachment.html>

[Bug 36952] segfault in crackberg xscreensaver on ATI RS482 in mesa git running kms & gallium

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/76872415/attachment-0001.html>

[Bug 41579] R300 Segfaults when using mupen64plus

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/03871eba/attachment.html>

[Bug 42622] [r300g] mupen64plus invalid command stream

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/6a0b3dde/attachment.html>

[Bug 42002] graphical glitches when using Xorg state tracker and 2D acceleration enabled

2012-12-05 Thread bugzilla-dae...@freedesktop.org
scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/72241c0b/attachment.html>

[Bug 42002] graphical glitches when using Xorg state tracker and 2D acceleration enabled

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |WONTFIX -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/315e0829/attachment.html>

[Bug 42009] audio stutters with xorg state tracker and 2D acceleration enabled

2012-12-05 Thread bugzilla-dae...@freedesktop.org
scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/cdb2a5be/attachment.html>

[Bug 42009] audio stutters with xorg state tracker and 2D acceleration enabled

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |WONTFIX -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/9cc8aa40/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121205/87e15901/attachment.html>

[RFC v2 6/8] gpu: drm: tegra: Remove redundant host1x

2012-12-05 Thread Daniel Vetter
On Wed, Dec 5, 2012 at 2:28 PM, Thierry Reding wrote: >> Imo that's worse, since now drm manages even more of the driver->hw >> binding process. In my dream world the drm driver just registers a >> normal driver at module load time directly with whatever bus it's >> interested in, and then, from i

[Bug 54767] [r300g] 298 failures on WebGL Conformance Test

2012-12-05 Thread bugzilla-dae...@freedesktop.org
scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/573b1b8c/attachment.html>

[RFC v2 0/5] Add HDMI infoframe helpers

2012-12-05 Thread Thierry Reding
During the development of this series I ran into a couple of build failures caused by missing forward declarations. They are added in the first patch of this series. Patch 2 adds generic helpers to pack a structures that describe HDMI AVI, audio, vendor-specific or SPD infoframes into the binary f

[RFC v2 1/5] drm: Add some missing forward declarations

2012-12-05 Thread Thierry Reding
The drm_file and drm_clip_rect structures are used throughout the file but they are never declared nor pulled in through an include. Add forward declarations to make them available. Signed-off-by: Thierry Reding --- include/drm/drm_crtc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)

[RFC v2 2/5] video: Add generic HDMI infoframe helpers

2012-12-05 Thread Thierry Reding
Add generic helpers to pack HDMI infoframes into binary buffers. Signed-off-by: Thierry Reding --- Changes in v2: - add support for audio, vendor-specific and SPD infoframes - add various validity checks on infoframes - factor out checksum computation drivers/video/Kconfig | 3 + drivers/vid

[RFC v2 3/5] drm: Add HDMI infoframe helpers

2012-12-05 Thread Thierry Reding
Add a generic helper to fill in an HDMI AVI infoframe with data extracted from a DRM display mode. Signed-off-by: Thierry Reding --- Changes in v2: - reuse CEA modes defined in drm_edid_modes.h drivers/gpu/drm/Kconfig| 7 + drivers/gpu/drm/Makefile | 1 + drivers/gpu/drm/drm_hdmi.c

[RFC v2 5/5] drm/i915: Use generic HDMI infoframe helpers

2012-12-05 Thread Thierry Reding
Use the generic HDMI infoframe helpers to get rid of the duplicate implementation in the i915 driver. Signed-off-by: Thierry Reding --- drivers/gpu/drm/Kconfig | 2 + drivers/gpu/drm/i915/intel_drv.h | 62 + drivers/gpu/drm/i915/intel_hdmi.c | 268 +-

[RFC v2 4/5] drm: tegra: Use generic HDMI infoframe helpers

2012-12-05 Thread Thierry Reding
Use the generic HDMI infoframe helpers to get rid of the NVIDIA Tegra reimplementation. Signed-off-by: Thierry Reding --- drivers/gpu/drm/tegra/Kconfig | 1 + drivers/gpu/drm/tegra/hdmi.c | 226 -- drivers/gpu/drm/tegra/hdmi.h | 189 ---

[Bug 30401] starting programs with Qt 4.7 opengl es2 graphicssystem fail

2012-12-05 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/cf1732d8/attachment.html>

[Bug 36554] Amnesia game causes black screen or kernel locks

2012-12-05 Thread bugzilla-dae...@freedesktop.org
An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/55846d6d/attachment.html>

[Bug 55606] r300_dri.so.tmp: tries to link to yylex

2012-12-05 Thread bugzilla-dae...@freedesktop.org
: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/1e31f9a6/attachment.html>

[Bug 35446] Problem with Blender and big textures

2012-12-05 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121205/b1887ab7/attachment.html>

[RFC v2 3/5] drm: Add HDMI infoframe helpers

2012-12-05 Thread Lars-Peter Clausen
On 12/05/2012 05:45 PM, Thierry Reding wrote: > Add a generic helper to fill in an HDMI AVI infoframe with data > extracted from a DRM display mode. That's a very nice patch series, comes in pretty handy. Thanks :) I've just one comment. > [...] > +static inline enum hdmi_picture_aspect > +drm_d

[Bug 57918] New: Amnesia causes shader compiler errors on RV350 with high graphics settings

2012-12-05 Thread bugzilla-dae...@freedesktop.org
You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/b31144b8/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
bug report for it here https://bugs.freedesktop.org/show_bug.cgi?id=57918 -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/63880c68/attachment-0001.html>

[Bug 57919] New: Visual glitches in unity with Radeon HD 7600M

2012-12-05 Thread bugzilla-dae...@freedesktop.org
tona.ro/~ephraim/public/Radeon_7600M.ogv -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/e30daa52/attachment.html>

[Bug 57919] Visual glitches in unity with Radeon HD 7600M

2012-12-05 Thread bugzilla-dae...@freedesktop.org
this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/9d489e19/attachment.html>

[Bug 57919] Visual glitches in unity with Radeon HD 7600M

2012-12-05 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/71030450/attachment.html>

[Bug 57919] Visual glitches in unity with Radeon HD 7600M

2012-12-05 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/ae6a68bf/attachment.html>

[Bug 35446] Problem with Blender and big textures

2012-12-05 Thread bugzilla-dae...@freedesktop.org
laptop I have Nvidia card -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/a5029669/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
e the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/88191eec/attachment.html>

[Bug 38692] Massive graphical distortion on resume

2012-12-05 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121205/b15b5069/attachment-0001.html>

[Bug 36723] [r300g, bisected] Unigine Sanctuary: fog is not rendered properly

2012-12-05 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121205/cecdd3f2/attachment.html>

[Bug 36723] [r300g, bisected] Unigine Sanctuary: fog is not rendered properly

2012-12-05 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/aa9f22b4/attachment.html>

[Bug 36723] [r300g, bisected] Unigine Sanctuary: fog is not rendered properly

2012-12-05 Thread bugzilla-dae...@freedesktop.org
a lot of other things. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/b061c2e6/attachment.html>

[RFC v2 6/8] gpu: drm: tegra: Remove redundant host1x

2012-12-05 Thread Thierry Reding
er systems without the drm/i915 driver loaded, > but still always have the support for interacting with it compiled in > (to make distros happy). It's all rather awkward though ... Hehe, indeed. Adding a dummy platform device suddenly doesn't sound that bad. =) Thierry -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/a39c93a1/attachment.pgp>

[Bug 55919] fatal error: nouveau/nouveau_device.h: No such file or directory

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |INVALID -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/d7ea1608/attachment.html>

[Bug 35446] Problem with Blender and big textures

2012-12-05 Thread bugzilla-dae...@freedesktop.org
|--- |NOTABUG -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/8cd76158/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/9d881b64/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
re receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/d7a4293d/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/1dea47b8/attachment.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/e4ebf2a7/attachment-0001.html>

[Bug 57888] Amnesia shader compiler errors on RV350

2012-12-05 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121205/67f526aa/attachment.html>

[PATCH 0/6] drm/ttm: lru lock atomicity removal

2012-12-05 Thread Jerome Glisse
On Fri, Nov 30, 2012 at 7:11 AM, Maarten Lankhorst wrote: > With all the previous patches there shouldn't be anything lying on the > reservations being atomic > with removal of the bo's from the lru lists any more. > > As such we can finally fix the locking primitives and make it act like normal

[PATCH 1/6] drm/ttm: remove lru_lock around ttm_bo_reserve

2012-12-05 Thread Jerome Glisse
On Fri, Nov 30, 2012 at 7:12 AM, Maarten Lankhorst wrote: > There should no longer be assumptions that reserve will always succeed > with the lru lock held, so we can safely break the whole atomic > reserve/lru thing. As a bonus this fixes most lockdep annotations for > reservations. > > Signed-of

[PATCH 4/6] drm/ttm: use ttm_bo_reserve_slowpath_nolru in ttm_eu_reserve_buffers

2012-12-05 Thread Jerome Glisse
On Fri, Nov 30, 2012 at 7:12 AM, Maarten Lankhorst wrote: > This requires re-use of the seqno, which increases fairness slightly. > Instead of spinning with a new seqno every time we keep the current one, > but still drop all other reservations we hold. Only when we succeed, > we try to get back o

[PATCH 0/6] drm/ttm: lru lock atomicity removal

2012-12-05 Thread Jerome Glisse
On Wed, Dec 5, 2012 at 8:15 PM, Jerome Glisse wrote: > On Fri, Nov 30, 2012 at 7:11 AM, Maarten Lankhorst > wrote: >> With all the previous patches there shouldn't be anything lying on the >> reservations being atomic >> with removal of the bo's from the lru lists any more. >> >> As such we can

[PATCH 3.7-rc8] drm: Fix possible EDID memory allocation oops

2012-12-05 Thread Tim Gardner
The result of drm_property_create_blob() is not checked for success which could lead to a NULL pointer dereference. I was led to this by a smatch warning: drivers/gpu/drm/drm_crtc.c:3186 drm_mode_connector_update_edid_property() error: potential null dereference 'connector->edid_blob_ptr'. (dr

<    1   2