[PATCH 1/2 v6] of: add helper to parse display timings

2012-10-04 Thread Guennadi Liakhovetski
Hi Steffen Sorry for chiming in so late in the game, but I've long been wanting to have a look at this and compare with what we do for V4L2, so, this seems a great opportunity to me:-) On Thu, 4 Oct 2012, Steffen Trumtrar wrote: > Signed-off-by: Steffen Trumtrar > --- > .../devicetree/bindin

i915 problems with suspend to disk

2012-10-04 Thread Hugo Mills
xt attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 828 bytes Desc: Digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121004/22f9b4b3/attachment.pgp>

i915 problems with suspend to disk

2012-10-04 Thread Daniel Vetter
On Thu, Oct 04, 2012 at 08:20:17PM +0100, Hugo Mills wrote: >Hi, > >On 3.6, I've got a problem with my video driver after resuming from > suspend-to-disk: the lower part of the display flickers, rapidly but > irregularly (think of a neon sign in a bad film noir), flicking > between the cor

[PATCH v1 14/14] drm: exynos: hdmi: remove drm common hdmi platform data struct

2012-10-04 Thread Rahul Sharma
exynos-drm-hdmi need context pointers from hdmi and mixer. These pointers were expected from the plf data. Cleaned this dependency by exporting i/f which are called by hdmi, mixer driver probes for setting their context. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_drm_hdmi.c |

[PATCH v1 13/14] drm: exynos: hdmi: add support for exynos5 hdmi

2012-10-04 Thread Rahul Sharma
This patch adds support for exynos5 hdmi with device tree enabled. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmi.c | 83 -- 1 files changed, 79 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/d

[PATCH v1 12/14] drm: exynos: hdmi: replace is_v13 with version check in hdmi

2012-10-04 Thread Rahul Sharma
This patch removed the is_v13 variable from the hdmi driver context. It is replaced with condition check for the hdmi version. This cleans the way for handling further hdmi versions. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmi.c | 40 +- 1

[PATCH v1 11/14] drm: exynos: hdmi: add support for exynos5 mixer

2012-10-04 Thread Rahul Sharma
This patch adds support for exynos5 mixer with device tree enabled. Signed-off-by: Rahul Sharma Signed-off-by: Fahad Kunnathadi --- drivers/gpu/drm/exynos/exynos_mixer.c | 49 +++-- drivers/gpu/drm/exynos/regs-mixer.h |3 ++ 2 files changed, 49 insertions(+),

[PATCH v1 10/14] drm: exynos: hdmi: add support to disable video processor in mixer

2012-10-04 Thread Rahul Sharma
This patch adds support for disabling the video processor code based on the platform type. This is done based on a field in the mixer driver data which changes with the platform variant. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_mixer.c | 151 +---

[PATCH v1 09/14] drm: exynos: hdmi: add support for platform variants for mixer

2012-10-04 Thread Rahul Sharma
This patch adds the support for multiple mixer versions avaialble in various platform variants. Version is passed as a driver data field instead of paltform data. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_mixer.c | 28 1 files changed, 28 insert

[PATCH v1 08/14] drm: exynos: hdmi: add support for exynos5 hdmiphy

2012-10-04 Thread Rahul Sharma
This patch adds support for exynos5 hdmi phy with device tree enabled. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmiphy.c | 12 +++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_hdmiphy.c b/drivers/gpu/drm/exynos/ex

[PATCH v1 07/14] drm: exynos: hdmi: add support for exynos5 ddc

2012-10-04 Thread Rahul Sharma
This patch adds support for exynos5 ddc with device tree enabled. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_ddc.c | 22 +- 1 files changed, 17 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_ddc.c b/drivers/gpu/drm/exynos/exyno

[PATCH v1 06/14] drm: exynos: remove drm hdmi platform data struct

2012-10-04 Thread Rahul Sharma
This patch removes the drm hdmi platform data structure which is no longer in use by drm hdmi driver after this patch set get merged. s5p hdmi platform data structure is used instead. Signed-off-by: Rahul Sharma --- include/drm/exynos_drm.h | 13 - 1 files changed, 0 insertions(+),

[PATCH v1 05/14] drm: exynos: hdmi: turn off HPD interrupt in HDMI chip

2012-10-04 Thread Rahul Sharma
From: Tomasz Stanislawski The plug/unplug interrupt are handled by a separate interrupt. So there is no need to replicate this mechanism in HDMI core. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/gpu/drm/exynos/exynos_hdmi.c |5 + 1 files changed, 1 inse

[PATCH v1 04/14] drm: exynos: hdmi: use s5p-hdmi platform data

2012-10-04 Thread Rahul Sharma
From: Tomasz Stanislawski The 'exynos-drm-hdmi' driver makes use of s5p-tv platform devices. Therefore the driver should use the same platform data to prevent crashes caused by dereferencing incorrect types. This patch corrects the exynos-drm-hdmi driver to the platform data from s5p-hdmi. Sign

[PATCH v1 03/14] drm: exynos: hdmi: fix interrupt handling

2012-10-04 Thread Rahul Sharma
From: Tomasz Stanislawski This patch fixes 'unsigned < 0' check in probe. Moreover it releases an interrupt at remove. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/gpu/drm/exynos/exynos_hdmi.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff

[PATCH v1 02/14] drm: exynos: hdmi: support for platform variants

2012-10-04 Thread Rahul Sharma
From: Tomasz Stanislawski This patch implements check if HDMI is version 1.3 by using a driver variant instead of platform data. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- drivers/gpu/drm/exynos/exynos_hdmi.c | 25 - 1 files changed, 24 inser

[PATCH v1 01/14] media: s5p-hdmi: add HPD GPIO to platform data

2012-10-04 Thread Rahul Sharma
From: Tomasz Stanislawski This patch extends s5p-hdmi platform data by a GPIO identifier for Hot-Plug-Detection pin. Signed-off-by: Tomasz Stanislawski Signed-off-by: Kyungmin Park --- include/media/s5p_hdmi.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/m

[PATCH v1 00/14] drm: exynos: hdmi: add dt based support for exynos5 hdmi

2012-10-04 Thread Rahul Sharma
This patch set adds the DT based support for Samsung's Exynos5250 in DRM-HDMI. It includes disabling of hdmi internal interrupt, suppport for platform variants for hdmi and mixer, support to disable video processor based on platform type and removal of drm common platform data. This patchset is ba

i915 problems with suspend to disk

2012-10-04 Thread Hugo Mills
- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 828 bytes Desc: Digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121004/765775b2/attachment-0001.pgp>

[PATCH 2/2 v6] of: add generic videomode description

2012-10-04 Thread Steffen Trumtrar
Get videomode from devicetree in a format appropriate for the backend. drm_display_mode and fb_videomode are supported atm. Uses the display signal timings from of_display_timings Signed-off-by: Steffen Trumtrar --- drivers/of/Kconfig |5 + drivers/of/Makefile |1 + dr

[PATCH 1/2 v6] of: add helper to parse display timings

2012-10-04 Thread Steffen Trumtrar
Signed-off-by: Steffen Trumtrar --- .../devicetree/bindings/video/display-timings.txt | 222 drivers/of/Kconfig |5 + drivers/of/Makefile|1 + drivers/of/of_display_timings.c| 183 +

[PATCH 0/2 v6] of: add display helper

2012-10-04 Thread Steffen Trumtrar
Hi! In accordance with Stepehn Warren, I downsized the binding. Now, just the display-timing is described, as I think, it is way easier to agree on those and have a complete binding. Regards, Steffen Steffen Trumtrar (2): of: add helper to parse display timings of: add generic videomode desc

[RFC] [PATCH 00/14] HPD/connector-polling rework

2012-10-04 Thread Daniel Vetter
On Thu, Oct 04, 2012 at 12:07:01PM -0400, Alex Deucher wrote: > On Thu, May 24, 2012 at 3:26 PM, Daniel Vetter > wrote: > > Hi all, > > > > I've got fed up with our sorry state of connector detection and rampant > > edid re > > and rere-reading. > > > > This patch series lays the groundwork in t

[pull] drm-intel-fixes

2012-10-04 Thread Daniel Vetter
On Thu, Oct 04, 2012 at 03:21:47PM +0200, Daniel Vetter wrote: > Hi Dave, > > One more, as discussed on irc. > > Bigger -fixes pile, mostly because I've included Ajax' DP dongle stuff, > as discussed on irc. Otherwise just small things: > - regression fix to finally make 6bpc auto-dither on dp wo

[RFC] drm/radeon: make dynamic allocation of page tables on demand in radeon_vm_update_pte v2

2012-10-04 Thread Dmitry Cherkasov
v2: setup and alloc number of contiguous PTs if possible Warning: Heaven benchmark /sometimes/ fails with this patch after 10 or 15 minutes of working, so any insight is greatly appreciated. The code is a bit bloated because it's a question how a decent optimization should be made: via macros? us

[PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread Paul Menzel
Thanks, Paul -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121004/44cca606/attachment-0001.pgp>

[PATCH] gma600: Enable HDMI support

2012-10-04 Thread Alan Cox
From: Alan Cox There are still some mysteries left, in particular how (and in fact if) the EDID is supposed to work on the HDMI port. However the basic stuff now works and I can plug my Q550 into an HDMI display and get the expected results. [v2: cleans up space/tab and other formatting as per D

[Intel-gfx] [PATCH 1/3] drm: Add an "expose 3d modes" property

2012-10-04 Thread Imre Deak
On Thu, 2012-10-04 at 15:35 +0200, Daniel Vetter wrote: > On Thu, Sep 27, 2012 at 07:41:06PM +0100, Damien Lespiau wrote: > > From: Damien Lespiau > > > > The "expose 3D modes" property can be attached to connectors to allow > > user space to indicate it can deal with 3D modes and that the drm dr

[Bug 49943] radeon/drm: Hotplug udev events stop working

2012-10-04 Thread bugzilla-dae...@freedesktop.org
se: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121004/b328e339/attachment.html>

[Bug 49943] radeon/drm: Hotplug udev events stop working

2012-10-04 Thread bugzilla-dae...@freedesktop.org
e infrastructure in the common drm code. Daniel's patches have not been merged upstream yet. -- 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

[Intel-gfx] [PATCH 1/3] drm: Add an "expose 3d modes" property

2012-10-04 Thread Daniel Vetter
On Thu, Sep 27, 2012 at 07:41:06PM +0100, Damien Lespiau wrote: > From: Damien Lespiau > > The "expose 3D modes" property can be attached to connectors to allow > user space to indicate it can deal with 3D modes and that the drm driver > should expose those 3D modes. > > Signed-off-by: Damien Le

[pull] drm-intel-fixes

2012-10-04 Thread Daniel Vetter
Hi Dave, One more, as discussed on irc. Bigger -fixes pile, mostly because I've included Ajax' DP dongle stuff, as discussed on irc. Otherwise just small things: - regression fix to finally make 6bpc auto-dither on dp work (Jani) - reinstate an snb ctx w/a that accidentally got lost in a rework (

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

2012-10-04 Thread bugzilla-dae...@freedesktop.org
scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121004/e88e0cbe/attachment.html>

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-04 Thread Guennadi Liakhovetski
Hi Steffen Sorry for chiming in so late in the game, but I've long been wanting to have a look at this and compare with what we do for V4L2, so, this seems a great opportunity to me:-) On Thu, 4 Oct 2012, Steffen Trumtrar wrote: > Signed-off-by: Steffen Trumtrar > --- > .../devicetree/bindin

[RFC] [PATCH 00/14] HPD/connector-polling rework

2012-10-04 Thread Alex Deucher
On Thu, Oct 4, 2012 at 1:16 PM, Daniel Vetter wrote: > On Thu, Oct 04, 2012 at 12:07:01PM -0400, Alex Deucher wrote: >> On Thu, May 24, 2012 at 3:26 PM, Daniel Vetter >> wrote: >> > Hi all, >> > >> > I've got fed up with our sorry state of connector detection and rampant >> > edid re >> > and r

[PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread mika.kuopp...@intel.com
From: Mika Kuoppala Add description for drm_kms_helper.poll module parameter introduced by commit: e58f637bb96d5a0ae0919b9998b891d1ba7e47c9 Signed-off-by: Mika Kuoppala --- Documentation/kernel-parameters.txt | 11 +++ 1 file changed, 11 insertions(+) diff --git a/Documentation/kern

[PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread Daniel Vetter
On Thu, Oct 4, 2012 at 12:34 PM, wrote: > From: Mika Kuoppala > > Add description for drm_kms_helper.poll module parameter introduced > by commit: e58f637bb96d5a0ae0919b9998b891d1ba7e47c9 > > Signed-off-by: Mika Kuoppala Actually I've noticed even with just hdmi it stalls for long enough to mi

[Linaro-mm-sig] [RFC] New dma_buf -> EGLImage EGL extension

2012-10-04 Thread Tom Cooksey
Hi Rob, > -Original Message- > From: robdclark at gmail.com [mailto:robdclark at gmail.com] On Behalf Of Rob > Clark > Sent: 03 October 2012 13:39 > To: Maarten Lankhorst > Cc: Tom Cooksey; mesa-dev at lists.freedesktop.org; linaro-mm-sig at > lists.linaro.org; dri- > devel at lists.free

[RFC] New dma_buf -> EGLImage EGL extension - New draft!

2012-10-04 Thread Tom Cooksey
Hi All, After receiving a fair bit of feedback (thanks!), I've updated the EGL_EXT_image_dma_buf_import spec and expanded it to resolve a number of the issues. Please find the latest draft below and let me know any additional feedback you might have, either on the lists or by private e-mail - I

[PATCH 2/2 v6] of: add generic videomode description

2012-10-04 Thread Stephen Warren
On 10/04/2012 11:59 AM, Steffen Trumtrar wrote: > Get videomode from devicetree in a format appropriate for the > backend. drm_display_mode and fb_videomode are supported atm. > Uses the display signal timings from of_display_timings > +++ b/drivers/of/of_videomode.c > +int videomode_from_timing(

[PATCH 1/2 v6] of: add helper to parse display timings

2012-10-04 Thread Stephen Warren
On 10/04/2012 11:59 AM, Steffen Trumtrar wrote: A patch description would be useful for something like this. > diff --git a/Documentation/devicetree/bindings/video/display-timings.txt > b/Documentation/devicetree/bindings/video/display-timings.txt > new file mode 100644 ... > +Usage in backend >

Re: i915 problems with suspend to disk

2012-10-04 Thread Daniel Vetter
On Thu, Oct 04, 2012 at 08:20:17PM +0100, Hugo Mills wrote: >Hi, > >On 3.6, I've got a problem with my video driver after resuming from > suspend-to-disk: the lower part of the display flickers, rapidly but > irregularly (think of a neon sign in a bad film noir), flicking > between the cor

[PATCH 1/2] radeon: don't force stencil tile split to 0

2012-10-04 Thread Alex Deucher
For the series: Reviewed-by: Alex Deucher On Wed, Oct 3, 2012 at 5:15 PM, Marek Ol??k wrote: > --- > radeon/radeon_surface.c |2 -- > 1 file changed, 2 deletions(-) > > diff --git a/radeon/radeon_surface.c b/radeon/radeon_surface.c > index 03b1c5d..c62cbf9 100644 > --- a/radeon/radeon_surf

[RFC] [PATCH 00/14] HPD/connector-polling rework

2012-10-04 Thread Alex Deucher
On Thu, May 24, 2012 at 3:26 PM, Daniel Vetter wrote: > Hi all, > > I've got fed up with our sorry state of connector detection and rampant edid > re > and rere-reading. > > This patch series lays the groundwork in the drm helpers so that drivers can > avoid all this madness (at least on working

Re: [PATCH 2/2 v6] of: add generic videomode description

2012-10-04 Thread Stephen Warren
On 10/04/2012 11:59 AM, Steffen Trumtrar wrote: > Get videomode from devicetree in a format appropriate for the > backend. drm_display_mode and fb_videomode are supported atm. > Uses the display signal timings from of_display_timings > +++ b/drivers/of/of_videomode.c > +int videomode_from_timing(

Re: [PATCH 1/2 v6] of: add helper to parse display timings

2012-10-04 Thread Stephen Warren
On 10/04/2012 11:59 AM, Steffen Trumtrar wrote: A patch description would be useful for something like this. > diff --git a/Documentation/devicetree/bindings/video/display-timings.txt > b/Documentation/devicetree/bindings/video/display-timings.txt > new file mode 100644 ... > +Usage in backend >

[git pull] drm merge for rc1 (part 1)

2012-10-04 Thread David Howells
David Howells wrote: > Linus Torvalds wrote: > > > Ok, as usual I actually wanted to do the merge myself despite the > > annoying conflicts (this *really* is the last time I will ever accept > > any header file "cleanups" - they simply aren't worth the pain). > > There was a reason I asked you

[PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread Alex Deucher
On Thu, Oct 4, 2012 at 11:28 AM, Paul Menzel wrote: > Am Donnerstag, den 04.10.2012, 13:16 +0200 schrieb Daniel Vetter: >> On Thu, Oct 4, 2012 at 12:34 PM, wrote: >> > From: Mika Kuoppala >> > >> > Add description for drm_kms_helper.poll module parameter introduced >> > by commit: e58f637bb96d5

[PATCH v3] configure.ac: Allow forcible disabling of Cairo support

2012-10-04 Thread Daniel Stone
We don't want to build libdrm tests with Cairo support under Poky, since they're never used and also cause a build loop from libdrm -> cairo -> mesa-dri -> libdrm. To avoid variance in build results, introduce a --disable-cairo-tests switch. Signed-off-by: Daniel Stone --- configure.ac

[pull] drm-intel-fixes

2012-10-04 Thread Daniel Vetter
Hi Dave, Bigger -fixes pile, mostly because I've included Ajax' DP dongle stuff, as discussed on irc. Otherwise just small things: - regression fix to finally make 6bpc auto-dither on dp work (Jani) - reinstate an snb ctx w/a that accidentally got lost in a rework (Chris) - fixup the DP train sequ

[GIT PULL] exynos-drm-next

2012-10-04 Thread Inki Dae
Hello Dave, this patch set updates exynos drm framework and includes minor fixups. and this pull request except hdmi device tree support patch set posted by Rahul Sharma because that includes media side patch so for this patch set, we may have git pull one more time in addition, if we get an agree

[Bug 53544] [915GM] Incorrect modeline due to incorrect EDID block for LG SL80 TV

2012-10-04 Thread bugzilla-dae...@freedesktop.org
iving 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/20121004/e26e2345/attachment.html>

[PATCH 2/2 v6] of: add generic videomode description

2012-10-04 Thread Steffen Trumtrar
Get videomode from devicetree in a format appropriate for the backend. drm_display_mode and fb_videomode are supported atm. Uses the display signal timings from of_display_timings Signed-off-by: Steffen Trumtrar --- drivers/of/Kconfig |5 + drivers/of/Makefile |1 + dr

[PATCH v2] configure.ac: Allow forcible disabling of Cairo support

2012-10-04 Thread Daniel Stone
We don't want to build libdrm tests with Cairo support under Poky, since they're never used and also cause a build loop from libdrm -> cairo -> mesa-dri -> libdrm. To avoid variance in build results, introduce a --disable-cairo-tests switch. Signed-off-by: Daniel Stone --- configure.ac | 18 +

[PATCH 1/2 v6] of: add helper to parse display timings

2012-10-04 Thread Steffen Trumtrar
Signed-off-by: Steffen Trumtrar --- .../devicetree/bindings/video/display-timings.txt | 222 drivers/of/Kconfig |5 + drivers/of/Makefile|1 + drivers/of/of_display_timings.c| 183 +

[PATCH 0/2 v6] of: add display helper

2012-10-04 Thread Steffen Trumtrar
Hi! In accordance with Stepehn Warren, I downsized the binding. Now, just the display-timing is described, as I think, it is way easier to agree on those and have a complete binding. Regards, Steffen Steffen Trumtrar (2): of: add helper to parse display timings of: add generic videomode desc

[Bug 53544] [915GM] Incorrect modeline due to incorrect EDID block for LG SL80 TV

2012-10-04 Thread bugzilla-dae...@freedesktop.org
A1 --mode 1920x1080R $ xrandr --output VGA1 --mode 1920x1080R --output LVDS1 --off $ dmesg > 20121004--eeepc-701-4g-VGA-1--mode--LVDS-off.dmesg -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... U

[git pull] drm merge for rc1 (part 1)

2012-10-04 Thread David Howells
Linus Torvalds wrote: > Ok, as usual I actually wanted to do the merge myself despite the > annoying conflicts (this *really* is the last time I will ever accept > any header file "cleanups" - they simply aren't worth the pain). There was a reason I asked you to pull the patches at the *end* of

Re: [RFC] [PATCH 00/14] HPD/connector-polling rework

2012-10-04 Thread Alex Deucher
On Thu, Oct 4, 2012 at 1:16 PM, Daniel Vetter wrote: > On Thu, Oct 04, 2012 at 12:07:01PM -0400, Alex Deucher wrote: >> On Thu, May 24, 2012 at 3:26 PM, Daniel Vetter >> wrote: >> > Hi all, >> > >> > I've got fed up with our sorry state of connector detection and rampant >> > edid re >> > and r

[PATCH] configure.ac: Allow forcible disabling of Cairo support

2012-10-04 Thread Daniel Stone
We don't want to build libdrm tests with Cairo support under Poky, since they're never used and also cause a build loop from libdrm -> cairo -> mesa-dri -> libdrm. To avoid variance in build results, introduce a --disable-cairo-tests switch. Signed-off-by: Daniel Stone --- configure.ac | 14 +

Re: [RFC] [PATCH 00/14] HPD/connector-polling rework

2012-10-04 Thread Daniel Vetter
On Thu, Oct 04, 2012 at 12:07:01PM -0400, Alex Deucher wrote: > On Thu, May 24, 2012 at 3:26 PM, Daniel Vetter wrote: > > Hi all, > > > > I've got fed up with our sorry state of connector detection and rampant > > edid re > > and rere-reading. > > > > This patch series lays the groundwork in the

Re: [pull] drm-intel-fixes

2012-10-04 Thread Daniel Vetter
On Thu, Oct 04, 2012 at 03:21:47PM +0200, Daniel Vetter wrote: > Hi Dave, > > One more, as discussed on irc. > > Bigger -fixes pile, mostly because I've included Ajax' DP dongle stuff, > as discussed on irc. Otherwise just small things: > - regression fix to finally make 6bpc auto-dither on dp wo

[drm-intel:drm-intel-fixes 15/18] drivers/gpu/drm/i915/intel_ringbuffer.c:1405:24: error: 'I915_GEM_SCRATCH_INDEX' undeclared

2012-10-04 Thread Jesse Barnes
On Wed, 3 Oct 2012 17:12:18 +0200 Daniel Vetter wrote: > On Wed, Oct 03, 2012 at 10:15:38PM +0800, Fengguang Wu wrote: > > Hi Jesse, > > > > FYI, kernel build failed on > > > > tree: git://people.freedesktop.org/~danvet/drm-intel.git drm-intel-fixes > > head: 2cb47a9c6d49f2961dcf57f69ff968e

[Bug 49943] radeon/drm: Hotplug udev events stop working

2012-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49943 --- Comment #10 from Harald Judt --- I didn't disable polling. However, if the patches haven't been merged upstream yet, then it's clear that it will not work. Thanks for clarification. -- You are receiving this mail because: You are the assign

[PATCH] gma600: Enable HDMI support

2012-10-04 Thread Alan Cox
From: Alan Cox There are still some mysteries left, in particular how (and in fact if) the EDID is supposed to work on the HDMI port. However the basic stuff now works and I can plug my Q550 into an HDMI display and get the expected results. [v2: cleans up space/tab and other formatting as per D

Re: [PATCH 1/2] radeon: don't force stencil tile split to 0

2012-10-04 Thread Alex Deucher
For the series: Reviewed-by: Alex Deucher On Wed, Oct 3, 2012 at 5:15 PM, Marek Olšák wrote: > --- > radeon/radeon_surface.c |2 -- > 1 file changed, 2 deletions(-) > > diff --git a/radeon/radeon_surface.c b/radeon/radeon_surface.c > index 03b1c5d..c62cbf9 100644 > --- a/radeon/radeon_surf

[PATCH 2/2] drm/radeon: fix compilation with backlight disabled

2012-10-04 Thread alexdeuc...@gmail.com
From: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_acpi.c|2 + drivers/gpu/drm/radeon/radeon_legacy_encoders.c | 42 +++--- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/dr

[PATCH 1/2] drm/radeon: use %zu for formatting size_t

2012-10-04 Thread alexdeuc...@gmail.com
From: Luca Tettamanti Fixes compiler warnings on 32bit. Signed-off-by: Luca Tettamanti Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_acpi.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/drivers/gpu/drm/radeo

Re: [RFC] [PATCH 00/14] HPD/connector-polling rework

2012-10-04 Thread Alex Deucher
On Thu, May 24, 2012 at 3:26 PM, Daniel Vetter wrote: > Hi all, > > I've got fed up with our sorry state of connector detection and rampant edid > re > and rere-reading. > > This patch series lays the groundwork in the drm helpers so that drivers can > avoid all this madness (at least on working

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

2012-10-04 Thread bugzilla-dae...@freedesktop.org
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/20121004/ca073316/attachment-0001.html>

[RFC] drm/radeon: make dynamic allocation of page tables on demand in radeon_vm_update_pte v2

2012-10-04 Thread Dmitry Cherkasov
v2: setup and alloc number of contiguous PTs if possible Warning: Heaven benchmark /sometimes/ fails with this patch after 10 or 15 minutes of working, so any insight is greatly appreciated. The code is a bit bloated because it's a question how a decent optimization should be made: via macros? us

[Bug 49943] radeon/drm: Hotplug udev events stop working

2012-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49943 --- Comment #9 from Alex Deucher --- (In reply to comment #8) > Reproducible with linux-3.6.0-rc6. If it is a duplicate of bug 51042, > shouldn't this be fixed now, or have the patches referenced in that bug not > been committed yet > (http://com

Re: [PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread Alex Deucher
On Thu, Oct 4, 2012 at 11:28 AM, Paul Menzel wrote: > Am Donnerstag, den 04.10.2012, 13:16 +0200 schrieb Daniel Vetter: >> On Thu, Oct 4, 2012 at 12:34 PM, wrote: >> > From: Mika Kuoppala >> > >> > Add description for drm_kms_helper.poll module parameter introduced >> > by commit: e58f637bb96d5

[Bug 55604] New: r600_shader.c compile fails to compile with gcc-4.7.2

2012-10-04 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121004/dc5605a6/attachment.html>

Re: [PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread Paul Menzel
Am Donnerstag, den 04.10.2012, 13:16 +0200 schrieb Daniel Vetter: > On Thu, Oct 4, 2012 at 12:34 PM, wrote: > > From: Mika Kuoppala > > > > Add description for drm_kms_helper.poll module parameter introduced > > by commit: e58f637bb96d5a0ae0919b9998b891d1ba7e47c9 Commit hashes are hard to remem

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

2012-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55606 --- Comment #1 from Tomasz P. --- I am using mesa-git from today and it works but I use also libdrm-git -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mailing

Re: [drm-intel:drm-intel-fixes 15/18] drivers/gpu/drm/i915/intel_ringbuffer.c:1405:24: error: 'I915_GEM_SCRATCH_INDEX' undeclared

2012-10-04 Thread Jesse Barnes
On Wed, 3 Oct 2012 17:12:18 +0200 Daniel Vetter wrote: > On Wed, Oct 03, 2012 at 10:15:38PM +0800, Fengguang Wu wrote: > > Hi Jesse, > > > > FYI, kernel build failed on > > > > tree: git://people.freedesktop.org/~danvet/drm-intel.git drm-intel-fixes > > head: 2cb47a9c6d49f2961dcf57f69ff968e

[Bug 53544] [915GM] Incorrect modeline due to incorrect EDID block for LG SL80 TV

2012-10-04 Thread bugzilla-dae...@freedesktop.org
hat too. $ xrandr --newmode "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 +hsync -vsync $ xrandr --addmode VGA1 1920x1080R $ xrandr --output VGA1 --mode 1920x1080R $ xrandr --output VGA1 --mode 1920x1080R --output LVDS1 --off $ dmesg > 20121004--eeepc-701-4g-VGA-1--mod

Re: [Intel-gfx] [PATCH 1/3] drm: Add an "expose 3d modes" property

2012-10-04 Thread Imre Deak
On Thu, 2012-10-04 at 15:35 +0200, Daniel Vetter wrote: > On Thu, Sep 27, 2012 at 07:41:06PM +0100, Damien Lespiau wrote: > > From: Damien Lespiau > > > > The "expose 3D modes" property can be attached to connectors to allow > > user space to indicate it can deal with 3D modes and that the drm dr

Re: [Intel-gfx] [PATCH 1/3] drm: Add an "expose 3d modes" property

2012-10-04 Thread Daniel Vetter
On Thu, Sep 27, 2012 at 07:41:06PM +0100, Damien Lespiau wrote: > From: Damien Lespiau > > The "expose 3D modes" property can be attached to connectors to allow > user space to indicate it can deal with 3D modes and that the drm driver > should expose those 3D modes. > > Signed-off-by: Damien Le

Re: [pull] drm-intel-fixes

2012-10-04 Thread Daniel Vetter
Hi Dave, One more, as discussed on irc. Bigger -fixes pile, mostly because I've included Ajax' DP dongle stuff, as discussed on irc. Otherwise just small things: - regression fix to finally make 6bpc auto-dither on dp work (Jani) - reinstate an snb ctx w/a that accidentally got lost in a rework (

[PATCH 2/2] drm/radeon: fix compilation with backlight disabled

2012-10-04 Thread alexdeucher
From: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_acpi.c|2 + drivers/gpu/drm/radeon/radeon_legacy_encoders.c | 42 +++--- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/dr

[PATCH 1/2] drm/radeon: use %zu for formatting size_t

2012-10-04 Thread alexdeucher
From: Luca Tettamanti Fixes compiler warnings on 32bit. Signed-off-by: Luca Tettamanti Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_acpi.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/drivers/gpu/drm/radeo

RE: [Linaro-mm-sig] [RFC] New dma_buf -> EGLImage EGL extension

2012-10-04 Thread Tom Cooksey
Hi Rob, > -Original Message- > From: robdcl...@gmail.com [mailto:robdcl...@gmail.com] On Behalf Of Rob Clark > Sent: 03 October 2012 13:39 > To: Maarten Lankhorst > Cc: Tom Cooksey; mesa-...@lists.freedesktop.org; > linaro-mm-...@lists.linaro.org; dri- > de...@lists.freedesktop.org; Jesse

[RFC] New dma_buf -> EGLImage EGL extension - New draft!

2012-10-04 Thread Tom Cooksey
Hi All, After receiving a fair bit of feedback (thanks!), I've updated the EGL_EXT_image_dma_buf_import spec and expanded it to resolve a number of the issues. Please find the latest draft below and let me know any additional feedback you might have, either on the lists or by private e-mail - I

[git pull] drm merge for rc1 (part 1)

2012-10-04 Thread Dave Airlie
Hi Linus, So first of all my tree and uapi stuff has a conflict mess, its my fault as the nouveau stuff didn't hit -next as were trying to rebase regressions out of it before we merged. So this pull is for my drm-next-merged branch which is my drm-next branch merged with your tree, and some f

Re: [PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread Daniel Vetter
On Thu, Oct 4, 2012 at 12:34 PM, wrote: > From: Mika Kuoppala > > Add description for drm_kms_helper.poll module parameter introduced > by commit: e58f637bb96d5a0ae0919b9998b891d1ba7e47c9 > > Signed-off-by: Mika Kuoppala Actually I've noticed even with just hdmi it stalls for long enough to mi

[Bug 53544] [915GM] Incorrect modeline due to incorrect EDID block for LG SL80 TV

2012-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53544 --- Comment #13 from Paul Menzel --- Created attachment 68073 --> https://bugs.freedesktop.org/attachment.cgi?id=68073&action=edit T60 (945GM): output of Linux kernel 3.2.23 ring buffer (dmesg) Here is the output from `dmesg` from the T60 havi

[Bug 53544] [915GM] Incorrect modeline due to incorrect EDID block for LG SL80 TV

2012-10-04 Thread bugzilla-daemon
A1 --mode 1920x1080R $ xrandr --output VGA1 --mode 1920x1080R --output LVDS1 --off $ dmesg > 20121004--eeepc-701-4g-VGA-1--mode--LVDS-off.dmesg -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mailing list dri-dev

Re: [git pull] drm merge for rc1 (part 1)

2012-10-04 Thread David Howells
David Howells wrote: > Linus Torvalds wrote: > > > Ok, as usual I actually wanted to do the merge myself despite the > > annoying conflicts (this *really* is the last time I will ever accept > > any header file "cleanups" - they simply aren't worth the pain). > > There was a reason I asked you

[PATCH] Documentation: kernel-parameters.txt Add drm_kms_helper.poll

2012-10-04 Thread mika . kuoppala
From: Mika Kuoppala Add description for drm_kms_helper.poll module parameter introduced by commit: e58f637bb96d5a0ae0919b9998b891d1ba7e47c9 Signed-off-by: Mika Kuoppala --- Documentation/kernel-parameters.txt | 11 +++ 1 file changed, 11 insertions(+) diff --git a/Documentation/kern

Re: [git pull] drm merge for rc1 (part 1)

2012-10-04 Thread David Howells
Linus Torvalds wrote: > Ok, as usual I actually wanted to do the merge myself despite the > annoying conflicts (this *really* is the last time I will ever accept > any header file "cleanups" - they simply aren't worth the pain). There was a reason I asked you to pull the patches at the *end* of

[pull] drm-intel-fixes

2012-10-04 Thread Daniel Vetter
Hi Dave, Bigger -fixes pile, mostly because I've included Ajax' DP dongle stuff, as discussed on irc. Otherwise just small things: - regression fix to finally make 6bpc auto-dither on dp work (Jani) - reinstate an snb ctx w/a that accidentally got lost in a rework (Chris) - fixup the DP train sequ

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

2012-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55606 Priority: medium Bug ID: 55606 Assignee: dri-devel@lists.freedesktop.org Summary: r300_dri.so.tmp: tries to link to yylex Severity: blocker Classification: Unclassified OS: L

[Bug 55604] New: r600_shader.c compile fails to compile with gcc-4.7.2

2012-10-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55604 Priority: medium Bug ID: 55604 Assignee: dri-devel@lists.freedesktop.org Summary: r600_shader.c compile fails to compile with gcc-4.7.2 Severity: blocker Classification: Unclassified

[Bug 53544] [915GM] Incorrect modeline due to incorrect EDID block for LG SL80 TV

2012-10-04 Thread bugzilla-daemon
hat too. $ xrandr --newmode "1920x1080R" 138.50 1920 1968 2000 2080 1080 1083 1088 +hsync -vsync $ xrandr --addmode VGA1 1920x1080R $ xrandr --output VGA1 --mode 1920x1080R $ xrandr --output VGA1 --mode 1920x1080R --output LVDS1 --off $ dmesg > 20121004--eeepc-701-4g-VGA-1--mod

[PATCH v1 11/14] drm: exynos: hdmi: add support for exynos5 mixer

2012-10-04 Thread Rahul Sharma
This patch adds support for exynos5 mixer with device tree enabled. Signed-off-by: Rahul Sharma Signed-off-by: Fahad Kunnathadi --- drivers/gpu/drm/exynos/exynos_mixer.c | 49 +++-- drivers/gpu/drm/exynos/regs-mixer.h |3 ++ 2 files changed, 49 insertions(+),

[PATCH v1 12/14] drm: exynos: hdmi: replace is_v13 with version check in hdmi

2012-10-04 Thread Rahul Sharma
This patch removed the is_v13 variable from the hdmi driver context. It is replaced with condition check for the hdmi version. This cleans the way for handling further hdmi versions. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmi.c | 40 +- 1

[PATCH v1 14/14] drm: exynos: hdmi: remove drm common hdmi platform data struct

2012-10-04 Thread Rahul Sharma
exynos-drm-hdmi need context pointers from hdmi and mixer. These pointers were expected from the plf data. Cleaned this dependency by exporting i/f which are called by hdmi, mixer driver probes for setting their context. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_drm_hdmi.c |

[PATCH v1 08/14] drm: exynos: hdmi: add support for exynos5 hdmiphy

2012-10-04 Thread Rahul Sharma
This patch adds support for exynos5 hdmi phy with device tree enabled. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmiphy.c | 12 +++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_hdmiphy.c b/drivers/gpu/drm/exynos/ex

  1   2   >