[Bug 22022] 2.6.32 regression: sometimes Suspend-To-RAM causes system hangup - ATI RS480

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22022 --- Comment #26 from Jonathan Nieder 2013-04-08 07:06:49 --- (In reply to comment #25) > [ 270.715016] radeon_cp: Failed to load firmware "radeon/R300_cp.bin" > [ 270.715045] [drm: r100_cp.init] *ERROR* Failed to load firmware! > [ 270.71

[Bug 22022] 2.6.32 regression: sometimes Suspend-To-RAM causes system hangup - ATI RS480

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22022 --- Comment #27 from Jonathan Nieder 2013-04-08 07:08:01 --- s/is/was, a year ago/ -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are watching the assignee

[Bug 22022] 2.6.32 regression: sometimes Suspend-To-RAM causes system hangup - ATI RS480

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22022 --- Comment #28 from Aaron Lu 2013-04-08 07:20:40 --- Hi Jonathan, Rolf's comment seems suggest radeon driver is the problem: https://bugs.freedesktop.org/show_bug.cgi?id=43278#c18 If this is the case, then there is not much we can do in PM

[Bug 22022] 2.6.32 regression: sometimes Suspend-To-RAM causes system hangup - ATI RS480

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22022 --- Comment #29 from Jonathan Nieder 2013-04-08 07:32:22 --- Yes, I agree with that. Just wanted to make sure anyone stumbling on this later doesn't get confused by the request_firmware() stuff. Rolf, can you still reproduce this with a 3.

Re: [RFC][PATCH] drm/radeon: add helpers for masking and setting bits in regs

2013-04-08 Thread Michel Dänzer
On Son, 2013-04-07 at 15:49 +0200, Rafał Miłecki wrote: > --- > drivers/gpu/drm/radeon/r600_hdmi.c | 16 ++-- > drivers/gpu/drm/radeon/radeon.h|2 ++ > 2 files changed, 8 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/radeon/r600_hdmi.c > b/drivers/gpu/drm

[Bug 22022] 2.6.32 regression: sometimes Suspend-To-RAM causes system hangup - ATI RS480

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22022 --- Comment #30 from rolf 2013-04-08 08:27:04 --- On 08.04.2013 09:32, bugzilla-dae...@bugzilla.kernel.org wrote: > https://bugzilla.kernel.org/show_bug.cgi?id=22022 > > > > > > --- Comment #29 from Jonathan Nieder 2013-04-08 > 07:32:22 --

[Bug 43278] RS482: Hibernation reliably hangs, suspend-to-RAM unreliably hangs

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43278 --- Comment #21 from Jonathan Nieder --- >From https://bugzilla.kernel.org/show_bug.cgi?id=22022#c30: > Yes, it can be reproduced with kernel Debian 3.8.5-1~experimental.1 . -- You are receiving this mail because: You are the assignee for the

Re: [PATCH v2 2/3] mutex: add support for reservation style locks, v2

2013-04-08 Thread Peter Zijlstra
On Thu, 2013-04-04 at 18:56 +0200, Daniel Vetter wrote: > On Thu, Apr 4, 2013 at 3:31 PM, Daniel Vetter wrote: > >> In this case when O blocks Y isn't actually blocked, so our > >> TASK_DEADLOCK wakeup doesn't actually achieve anything. > >> > >> This means we also have to track (task) state so th

[PATCH 01/11] drm/radeon: UVD doesn't needs VM on SI v2

2013-04-08 Thread Christian König
v2: update error message and comment Signed-off-by: Christian König --- drivers/gpu/drm/radeon/radeon_cs.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c index 70d3824..a3dd04d 100644 ---

[PATCH 00/11] basic UVD support v3

2013-04-08 Thread Christian König
Hello everyone, Third round of this patchset, and only some stupid typos fixed. I've uploaded this patchset as branch uvd-3.9 to git://people.freedesktop.org/~deathsimple/linux. Please review, Christian. ___ dri-devel mailing list dri-devel@lists.fre

[PATCH 01/11] drm/radeon: UVD doesn't needs VM on SI v2

2013-04-08 Thread Christian König
v2: update error message and comment Signed-off-by: Christian König --- drivers/gpu/drm/radeon/radeon_cs.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c index 70d3824..a3dd04d 100644 ---

[PATCH 02/11] drm/radeon: rework fallback handling v2

2013-04-08 Thread Christian König
From: Christian König Let the CS module decide if we can fall back to VRAM or not. v2: remove unintended change Signed-off-by: Christian König --- drivers/gpu/drm/radeon/radeon.h|5 ++-- drivers/gpu/drm/radeon/radeon_cs.c | 49 ++-- drivers/gpu/dr

[PATCH 04/11] drm/radeon: add pm callback for setting uvd clocks

2013-04-08 Thread Christian König
From: Alex Deucher Signed-off-by: Alex Deucher Signed-off-by: Christian König Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/radeon.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 051b8fd..8c5b7e8 100644

[PATCH 05/11] drm/radeon: add radeon_atom_get_clock_dividers helper

2013-04-08 Thread Christian König
Signed-off-by: Christian König Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/radeon.h |5 ++ drivers/gpu/drm/radeon/radeon_atombios.c | 107 ++ drivers/gpu/drm/radeon/radeon_mode.h | 23 +++ 3 files changed, 135 insertions(+) diff --gi

[PATCH 06/11] drm/radeon: add set_uvd_clocks callback for ON/LN/TN (v4)

2013-04-08 Thread Christian König
From: Alex Deucher v2: write clk registers only once! v3: update cg scratch register properly v4: add TN support Signed-off-by: Alex Deucher Signed-off-by: Christian König Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/evergreen.c | 47 ++ drivers/g

[PATCH 07/11] drm/radeon: add set_uvd_clocks callback for evergreen

2013-04-08 Thread Christian König
From: Alex Deucher v2: remove unneeded register definitions Signed-off-by: Alex Deucher Signed-off-by: Christian König Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/evergreen.c | 164 ++ drivers/gpu/drm/radeon/evergreend.h | 27 ++ drivers/gp

[PATCH 08/11] drm/radeon: add set_uvd_clocks callback for SI

2013-04-08 Thread Christian König
Signed-off-by: Christian König Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/radeon_asic.c |1 + drivers/gpu/drm/radeon/radeon_asic.h |1 + drivers/gpu/drm/radeon/si.c | 167 ++ drivers/gpu/drm/radeon/sid.h | 29 ++ 4 files

[PATCH 09/11] drm/radeon: add set_uvd_clocks callback for r7xx v3

2013-04-08 Thread Christian König
v2: avoid 64bit divide v3: rv740 uses the evegreen upll configuration Signed-off-by: Christian König Signed-off-by: Alex Deucher Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/radeon_asic.c |1 + drivers/gpu/drm/radeon/radeon_asic.h |1 + drivers/gpu/drm/radeon/rv770.c |

[PATCH 10/11] drm/radeon: init UVD clocks to sane defaults

2013-04-08 Thread Christian König
Just until we get proper DPM for that. Signed-off-by: Christian König Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/radeon_uvd.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/radeon/radeon_uvd.c b/drivers/gpu/drm/radeon/radeon_uvd.c index 05a192e..30a9460 100

[PATCH 11/11] drm/radeon: add UVD tiling addr config v2

2013-04-08 Thread Christian König
v2: set UVD tiling config for rv730 Signed-off-by: Christian König Signed-off-by: Alex Deucher Reviewed-by: Jerome Glisse --- drivers/gpu/drm/radeon/evergreen.c |3 +++ drivers/gpu/drm/radeon/evergreend.h |3 +++ drivers/gpu/drm/radeon/ni.c |3 +++ drivers/gpu/drm/radeon/n

[Bug 63236] kwin crashes when some desktop effects are used

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63236 --- Comment #1 from Michel Dänzer --- Does this still happen with the current master branch of Tom Stellard's LLVM repository? -- You are receiving this mail because: You are the assignee for the bug. ___

Re: [PATCH v4] drm: Add struct drm_rect and assorted utility functions

2013-04-08 Thread Ville Syrjälä
On Sat, Apr 06, 2013 at 02:00:31AM +0200, Laurent Pinchart wrote: > Hi Ville, > > Thanks for the patch. > > On Friday 05 April 2013 16:19:36 ville.syrj...@linux.intel.com wrote: > > From: Ville Syrjälä > > > > struct drm_rect represents a simple rectangle. The utility > > functions are there to

Re: [RFC][PATCH V2 1/2] drm: add drm_edid_to_eld helper extracting SADs from EDID

2013-04-08 Thread Ville Syrjälä
On Sun, Apr 07, 2013 at 08:18:31PM +0200, Rafał Miłecki wrote: > Some devices (ATI/AMD cards) don't support passing ELD struct to the > hardware but just require filling specific registers and then the > hardware/firmware does the rest. In such cases we need to read the info > from SAD blocks and p

Re: [PATCH v2 2/3] mutex: add support for reservation style locks, v2

2013-04-08 Thread Daniel Vetter
On Mon, Apr 08, 2013 at 12:39:24PM +0200, Peter Zijlstra wrote: > On Thu, 2013-04-04 at 18:56 +0200, Daniel Vetter wrote: > > Presuming I'm still following we should be able to fix this with the > > new sleep state TASK_DEADLOCK and a flag somewhere in the thread info > > (let's call it PF_GTFO for

Re: [RFC][PATCH V2 1/2] drm: add drm_edid_to_eld helper extracting SADs from EDID

2013-04-08 Thread Rafał Miłecki
2013/4/8 Ville Syrjälä : >> + *sads = kzalloc(count * sizeof(*sads), GFP_KERNEL); > > Still looks a bit wrong. > > kcalloc(count, sizeof(**sads), GFP_KERNEL); > > Also a minor nit, but the scope of some variables is needlessly large. > db and dbl are only needed inside the outer

Re: [PATCH v5 4/9] video: Add generic HDMI infoframe helpers

2013-04-08 Thread Ville Syrjälä
On Thu, Mar 07, 2013 at 02:44:12PM +0100, Thierry Reding wrote: > On Thu, Mar 07, 2013 at 02:32:51PM +0100, Lucas Stach wrote: > > Am Montag, den 04.03.2013, 16:02 +0100 schrieb Thierry Reding: > > > On Mon, Mar 04, 2013 at 04:49:46PM +0200, Ville Syrjälä wrote: > > > > On Fri, Feb 22, 2013 at 08:0

[PATCH] drm/nouveau: idle all channels before suspending

2013-04-08 Thread Maarten Lankhorst
Seems to make suspend slightly more reliable on my system. Cc: sta...@vger.kernel.org [3.7+] Signed-off-by: Maarten Lankhorst --- diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c index b6bdc9f..5032c31 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drm.c +

Re: [PATCH] drm/kms-helper: disable hpd_irq handling when poll=0

2013-04-08 Thread Alex Deucher
On Sat, Apr 6, 2013 at 12:05 PM, Daniel Vetter wrote: > When inlining the actual hpd output probing in > > commit 69787f7da6b2adc4054357a661aaa1701a9ca76f > Author: Daniel Vetter > Date: Tue Oct 23 18:23:34 2012 + > > drm: run the hpd irq event code directly > > the check for the drm_km

Re: [PATCH] drm/kms-helper: disable hpd_irq handling when poll=0

2013-04-08 Thread Daniel Vetter
On Mon, Apr 8, 2013 at 2:28 PM, Alex Deucher wrote: > On Sat, Apr 6, 2013 at 12:05 PM, Daniel Vetter wrote: >> When inlining the actual hpd output probing in >> >> commit 69787f7da6b2adc4054357a661aaa1701a9ca76f >> Author: Daniel Vetter >> Date: Tue Oct 23 18:23:34 2012 + >> >> drm: ru

[PATCH] video: hdmi: Relicense under MIT

2013-04-08 Thread Thierry Reding
In order to make it easier to port the code to other operating systems (like the BSDs), relicense the HDMI helpers under the more permissive MIT license. Signed-off-by: Thierry Reding --- drivers/video/hdmi.c | 21 ++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --gi

Re: [PATCH v5 4/9] video: Add generic HDMI infoframe helpers

2013-04-08 Thread Thierry Reding
On Mon, Apr 08, 2013 at 02:52:40PM +0300, Ville Syrjälä wrote: > On Thu, Mar 07, 2013 at 02:44:12PM +0100, Thierry Reding wrote: > > On Thu, Mar 07, 2013 at 02:32:51PM +0100, Lucas Stach wrote: > > > Am Montag, den 04.03.2013, 16:02 +0100 schrieb Thierry Reding: > > > > On Mon, Mar 04, 2013 at 04:4

[PATCH v4] drm/exynos: prepare FIMD clocks

2013-04-08 Thread Vikas Sajjan
While migrating to common clock framework (CCF), I found that the FIMD clocks were pulled down by the CCF. If CCF finds any clock(s) which has NOT been claimed by any of the drivers, then such clock(s) are PULLed low by CCF. Calling clk_prepare() for FIMD clocks fixes the issue. This patch also r

Re: [PATCH v4] drm/exynos: prepare FIMD clocks

2013-04-08 Thread Viresh Kumar
On 8 April 2013 16:37, Vikas Sajjan wrote: > While migrating to common clock framework (CCF), I found that the FIMD clocks > were pulled down by the CCF. > If CCF finds any clock(s) which has NOT been claimed by any of the > drivers, then such clock(s) are PULLed low by CCF. > > Calling clk_prepar

Re: Is there IGP DCE5?

2013-04-08 Thread Alex Deucher
On Sat, Apr 6, 2013 at 6:21 PM, Rafał Miłecki wrote: > I was surprised that my BARTS in a Samsung notebook doesn't have a > RADEON_IS_IGP flag. Barts is a discrete chip. the IGP flag is only set for integrated parts and APUs. > > Are there any DCE5 devices that are IGP? No. Ontario and and ll

Re: Radeon lockup on 3.8.5-201.fc18.x86_64

2013-04-08 Thread Alex Deucher
On Fri, Apr 5, 2013 at 5:11 PM, Andy Lutomirski wrote: > Every day or so, I'll click something and my screens go blank for a > second or two. dmesg complains about a lockup, and afterwards > everything is painfully slow. (Even switching focus to other emacs > windows takes a second or two.) Onc

Re: [PATCH 00/11] basic UVD support v3

2013-04-08 Thread Jerome Glisse
On Mon, Apr 08, 2013 at 12:41:26PM +0200, Christian König wrote: > Hello everyone, > > Third round of this patchset, and only some stupid typos fixed. I've uploaded > this patchset as branch uvd-3.9 to > git://people.freedesktop.org/~deathsimple/linux. > > Please review, > Christian. Looks go

Re: [PATCH] drm/kms-helper: disable hpd_irq handling when poll=0

2013-04-08 Thread Alex Deucher
On Mon, Apr 8, 2013 at 8:43 AM, Daniel Vetter wrote: > On Mon, Apr 8, 2013 at 2:28 PM, Alex Deucher wrote: >> On Sat, Apr 6, 2013 at 12:05 PM, Daniel Vetter >> wrote: >>> When inlining the actual hpd output probing in >>> >>> commit 69787f7da6b2adc4054357a661aaa1701a9ca76f >>> Author: Daniel Ve

[Bug 57567] 3.7 radeonfb broken on efivga screens

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57567 Alex Deucher changed: What|Removed |Added Attachment #77441|0 |1 is obsolete|

[Bug 61182] r600g causes KWin crashes with kernel 3.8

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61182 --- Comment #30 from Jerome Glisse --- Well this is also a kwin bug, kwin should not pick MSAA visual. I fixed cogl so that it does not pick msaa visual for gnome-shell. -- You are receiving this mail because: You are the assignee for the bug.

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #14 from Jerome Glisse --- Created attachment 77607 --> https://bugs.freedesktop.org/attachment.cgi?id=77607&action=edit Full flush on vm flush Can you try this patch ? -- You are receiving this mail because: You are the assignee

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #15 from Jerome Glisse --- Created attachment 77608 --> https://bugs.freedesktop.org/attachment.cgi?id=77608&action=edit Always vm flush Or this one, or both patch together. I am hoping this one is enough -- You are receiving thi

[PATCH 1/7] staging: drm/imx: ipu-dc: add 24-bit GBR support to DC

2013-04-08 Thread Philipp Zabel
24-bit GBR order is needed on the display interface connected to the Television Encoder (TVEv2) on i.MX53. Signed-off-by: Philipp Zabel --- drivers/staging/imx-drm/imx-drm.h | 10 ++ drivers/staging/imx-drm/ipu-v3/ipu-dc.c | 10 ++ 2 files changed, 20 insertions(+) diff --

[PATCH 5/7] staging: drm/imx: ipu-dc: add WCLK/WRG opcodes

2013-04-08 Thread Philipp Zabel
Add WRG and WCLK opcodes to the display controller microcode, and allow multi instruction codes. Signed-off-by: Philipp Zabel --- drivers/staging/imx-drm/ipu-v3/ipu-dc.c | 39 - 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/drivers/staging/imx-dr

[PATCH 4/7] staging: drm/imx: Add support for VGA via TVE on i.MX53

2013-04-08 Thread Philipp Zabel
This adds display interface timings for the Television Encoder connected to IPU DI1 on i.MX53 and adds some configuration glue code to select which IPU signal generators / pins are to be used for HSYNC/VSYNC signals. The default configuration is pin2/pin3 for hsync/vsync. The VGA connector on i.MX

[PATCH 2/7] staging: drm/imx: ipuv3-crtc: use external clock for TV Encoder

2013-04-08 Thread Philipp Zabel
Signed-off-by: Philipp Zabel --- drivers/staging/imx-drm/ipuv3-crtc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/imx-drm/ipuv3-crtc.c b/drivers/staging/imx-drm/ipuv3-crtc.c index b028b0d..620e571 100644 --- a/drivers/staging/imx-drm/ipuv3-crtc.c +++ b/drivers/staging/i

[PATCH 7/7] staging: drm/imx: Add support for Television Encoder (TVEv2)

2013-04-08 Thread Philipp Zabel
This driver adds support for the Television Encoder integrated on i.MX53 SoCs (TVEv2). Currently only the VGA output mode is supported, which only uses the TVDAC to generate RGB levels. HSYNC and VSYNC signals are routed directly from the IPU signal generator pins through IOMUXC. Signed-off-by: P

[PATCH 6/7] staging: drm/imx: ipu-dc: force black output during blanking

2013-04-08 Thread Philipp Zabel
Signed-off-by: Philipp Zabel --- drivers/staging/imx-drm/ipu-v3/ipu-dc.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/staging/imx-drm/ipu-v3/ipu-dc.c b/drivers/staging/imx-drm/ipu-v3/ipu-dc.c index 355b8a2..1cb0631 100644 --- a/drivers/staging/imx-dr

[PATCH 0/7] i.MX53 IPU + TVE patches

2013-04-08 Thread Philipp Zabel
Hi, the following patches allow to use the integrated Television Encoder (TVEv2) on the i.MX53 SoC as VGA output encoder for the IPU. This is useful for the Freescale i.MX53-QSB and TQ MBa53 boards, which have VGA and DVI-I connectors, respectively. regards Philipp --- drivers/staging/imx-drm/K

[PATCH 3/7] staging: drm/imx: ipu-di: add comments explaining signal generator configuration

2013-04-08 Thread Philipp Zabel
Signed-off-by: Philipp Zabel --- drivers/staging/imx-drm/ipu-v3/ipu-di.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/staging/imx-drm/ipu-v3/ipu-di.c b/drivers/staging/imx-drm/ipu-v3/ipu-di.c index ec340da..26534b7 100644 --- a/drivers/staging/imx-drm/ipu-v

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #16 from Alex Deucher --- We shouldn't need to flush the caches in vm_flush() since that is already handled in fence_ring_emit(). I think attachment 72794 from bug 58354 may actually do the trick. -- You are receiving this mail bec

[Bug 62889] ColorTiling results in glitches on Radeon HD 7970 + Glamor

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62889 --- Comment #15 from Alex Deucher --- Created attachment 77614 --> https://bugs.freedesktop.org/attachment.cgi?id=77614&action=edit possible fix Does this kernel patch fix the issue? -- You are receiving this mail because: You are the assign

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

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57919 --- Comment #13 from Alex Deucher --- Created attachment 77616 --> https://bugs.freedesktop.org/attachment.cgi?id=77616&action=edit possible fix Does this kernel patch fix the issue? -- You are receiving this mail because: You are the assign

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #17 from Jerome Glisse --- Yes this patch should do the trick -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mailing list dri-devel@lists.freedeskt

[PATCH 1/2] radeon: update radeon_drm.h to kernel last API additions

2013-04-08 Thread j . glisse
From: Jerome Glisse Signed-off-by: Jerome Glisse --- include/drm/radeon_drm.h | 61 1 file changed, 61 insertions(+) diff --git a/include/drm/radeon_drm.h b/include/drm/radeon_drm.h index 00d66b3..ff3ce3a 100644 --- a/include/drm/radeon_drm.h ++

[PATCH 2/2] radeon: add si tiling support v4

2013-04-08 Thread j . glisse
From: Jerome Glisse v2: Only writte tile index if flags for it is set v3: Remove useless allow2d scanout flags v4: Split radeon_drm.h update to its own patch Signed-off-by: Jerome Glisse --- radeon/radeon_surface.c | 658 radeon/radeon_surface.h

[Bug 57567] 3.7 radeonfb broken on efivga screens

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57567 --- Comment #28 from Vladimir --- Created attachment 77625 --> https://bugs.freedesktop.org/attachment.cgi?id=77625&action=edit New screenshot It actually became worse, hard to replicate scenario with shifted screen(most of time looks like 3.8

[Bug 63279] New: xf86-video-savage-2.3.6 driver does not work

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63279 Priority: medium Bug ID: 63279 Assignee: dri-devel@lists.freedesktop.org Summary: xf86-video-savage-2.3.6 driver does not work Severity: normal Classification: Unclassified O

[Bug 63279] xf86-video-savage-2.3.6 driver does not work

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63279 Musikolo changed: What|Removed |Added Hardware|Other |x86 (IA32) OS|All

Re: [PATCH] drm/i915: drop the coditional mutex

2013-04-08 Thread Daniel Vetter
On Mon, Apr 8, 2013 at 8:58 PM, Sebastian Andrzej Siewior wrote: > * Daniel Vetter | 2013-04-02 15:47:02 [+0200]: >>On Tue, Apr 02, 2013 at 03:30:58PM +0200, Sebastian Andrzej Siewior wrote: >>> mutex_is_locked_by() checks the owner of the lock against current. This >>> is done by accessing a priv

[Bug 63279] xf86-video-savage-2.3.6 driver does not work

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63279 Tormod Volden changed: What|Removed |Added See Also||https://launchpad.net/bugs/

Re: [PATCH] drm/nouveau: idle all channels before suspending

2013-04-08 Thread Ben Skeggs
On Mon, Apr 8, 2013 at 10:04 PM, Maarten Lankhorst < maarten.lankho...@canonical.com> wrote: > Seems to make suspend slightly more reliable on my system. > NACK. "Seems to", and "slightly" don't make a very good argument for this. Likely all you've done is change the timing of certain things hap

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #18 from Alexandre Demers --- Attachment 72794 applied on kernel 3.9-rc6 hangs (2 on 2) at spec/glsl-1.10/execution/built-in-functions/vs-max-vec2-vec2 Applying [...] @@ -459,6 +459,7 @@ static int radeon_cs_ib_vm_chunk(struct radeo

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #19 from Marek Olšák --- (In reply to comment #18) > Attachment 72794 [details] applied on kernel 3.9-rc6 hangs (2 on 2) at > spec/glsl-1.10/execution/built-in-functions/vs-max-vec2-vec2 > > > Applying [...] @@ -459,6 +459,7 @@ stat

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #20 from Marek Olšák --- Sorry I meant to say the "order" test hangs and is unrelated to the other hangs and the patches posted here won't help you with it. Anyway, I have committed the fix for the "order" test now. -- You are recei

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #21 from Alexandre Demers --- (In reply to comment #20) > Sorry I meant to say the "order" test hangs and is unrelated to the other > hangs and the patches posted here won't help you with it. Anyway, I have > committed the fix for the

[Bug 62959] r600g (HD 6950 Cayman) fails piglit tests and hangs system

2013-04-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62959 --- Comment #22 from Alexandre Demers --- It seems running kernel 3.9-rc6 with attachment 72794 with latest mesa (UMAD fixed on Cayman, thanks to commit pushed by Marek) allowed me to run all r600 piglit tests without any issue. -- You are rece

[PATCH] drm:exynos: Fix messages in exynos_drm_gsc.c

2013-04-08 Thread Masanari Iida
It is better to remove "occured" from messages. Signed-off-by: Masanari Iida --- drivers/gpu/drm/exynos/exynos_drm_gsc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_drm_gsc.c b/drivers/gpu/drm/exynos/exynos_drm_gsc.c index 7841c3b..898b3

Re: [PATCH 0/7] i.MX53 IPU + TVE patches

2013-04-08 Thread Greg Kroah-Hartman
On Mon, Apr 08, 2013 at 06:04:31PM +0200, Philipp Zabel wrote: > Hi, > > the following patches allow to use the integrated Television Encoder > (TVEv2) on the i.MX53 SoC as VGA output encoder for the IPU. This is > useful for the Freescale i.MX53-QSB and TQ MBa53 boards, which have > VGA and DVI-I

Re: [PATCH] drm/i915: drop the coditional mutex

2013-04-08 Thread Sebastian Andrzej Siewior
* Daniel Vetter | 2013-04-02 15:47:02 [+0200]: >On Tue, Apr 02, 2013 at 03:30:58PM +0200, Sebastian Andrzej Siewior wrote: >> mutex_is_locked_by() checks the owner of the lock against current. This >> is done by accessing a private member of struct mutex which works on >> mainline but does not on

[Bug 10319] MacBookPro1, 1: on resume (from console) s2ram -f -p does not anymore give me my display back - 2.6.25 regression

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=10319 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 12434] Resume from suspend to RAM broken on ThinkPad R500

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=12434 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 12778] suspend regression from 29rc5 to 29rc6

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=12778 yury changed: What|Removed |Added Status|NEEDINFO|CLOSED Resolution|

[Bug 13170] Macbook 5,2 only boots with acpi=off, or nosmp, or maxcpus=1

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=13170 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 13446] resume after suspend-to-ram broken on Toshiba Satellite A100 with 2.6.30-rc8 (works in 2.6.28)

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=13446 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 13880] repeated freezes after bios update - Toshiba Satellite L300

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=13880 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 14993] suspend-to-ram broken on my d630 since 2.6.31

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=14993 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 15120] laptop hangs up on s2disk - Lenovo thinkpad T61

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=15120 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 16560] nvidia video card not working

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=16560 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 20432] NVIDIA GPU doesn't work if loaded at last after all other device drivers have already been loaded

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=20432 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 21002] external monitor don't turn on at boot

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=21002 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 22022] 2.6.32 regression: sometimes Suspend-To-RAM causes system hangup - ATI RS480

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22022 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 42627] Hibernation fails to resume - Toshiba Satellite L755-161 notebook

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=42627 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 43276] Screen black after suspending/resuming Toshiba Satellite C675D-S7109 laptop

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=43276 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

[Bug 43741] /sys/class/backlight/ is empty with AMD (ATI) Radeon HD 4350

2013-04-08 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=43741 Zhang Rui changed: What|Removed |Added Blocks||56331 -- Configure bugmail: https://bugz

Re: [PATCH] drm/nouveau: idle all channels before suspending

2013-04-08 Thread Maarten Lankhorst
Op 09-04-13 01:14, Ben Skeggs schreef: > On Mon, Apr 8, 2013 at 10:04 PM, Maarten Lankhorst < > maarten.lankho...@canonical.com> wrote: > >> Seems to make suspend slightly more reliable on my system. >> > NACK. > > "Seems to", and "slightly" don't make a very good argument for this. > Likely all y