[pull] fb helper cleanups

2013-02-14 Thread Daniel Vetter
Hi Dave, [Andrew: Pull contains the patch "drm/fb-helper: don't sleep for screen unblank when an oopps is in progress" which is also in your tree, hence the cc.] I've figured a pull request is easier to handle ;-) This is the drm fb helper cleanup, mostly motivated by strange things I've seen in

Re: [Linaro-mm-sig] [PATCH 2/3] mutex: add support for reservation style locks

2013-02-14 Thread Arnd Bergmann
On Thursday 07 February 2013, Maarten Lankhorst wrote: Hi Maarten, I cannot help a lot on this patch set, but there are a few things that I noticed when reading it. > Functions: > -- > > mutex_reserve_lock, and mutex_reserve_lock_interruptible: > Lock a buffer with a reservation_id se

[Bug 60073] [bisected] Bad rendering in Path of Exile

2013-02-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60073 --- Comment #6 from Wojciech Pyczak --- I'm currently using latest version (cb4616d3) and the issue is gone. -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mai

Re: [Linaro-mm-sig] [PATCH 2/3] mutex: add support for reservation style locks

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 11:22 AM, Arnd Bergmann wrote: > >> These functions will return -EDEADLK instead of -EAGAIN if >> reservation_id is the same as the reservation_id that's attempted to >> lock the mutex with, since in that case you presumably attempted to >> lock the same lock twice.

[PATCH] omapdrm: Make fixed resolution panels work

2013-02-14 Thread Archit Taneja
The omapdrm driver requires omapdss panel drivers to expose ops like detect, set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI and SDI drivers. At some places, there are no checks to see if the panel driver has these ops or not, and that leads to a crash. The following

Re: [PATCH] drm/i915: Set i9xx lvds clock limits according to specifications

2013-02-14 Thread Chris Wilson
On Wed, Feb 13, 2013 at 10:20:21PM +0100, Patrik Jakobsson wrote: > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > 5-9. > Since we do all calculations based on them being register values (which are > subtracted by 2) we need to specify them accordingly. > > Signed-o

Including drm-intel tree to linux-next

2013-02-14 Thread Daniel Vetter
Hi Steven, Since about a year ago we've switched drm/i915 to buffer around 2 weeks worth of patches so that we can do decent QA before breaking everyone's tree when things land in Dave's drm-next. But that also means we'll miss out a bit in the integration testing -next provides, which did hurt a

Re: CDF meeting @FOSDEM report

2013-02-14 Thread Tomi Valkeinen
On 2013-02-13 00:45, Stéphane Marchesin wrote: > So, a part which is completely omitted in this thread is how to handle > suspend/resume ordering. If you have multiple encoders which need to > be turned on/off in a given order at suspend/resume, how do you handle > that given the current scheme wh

Re: [RFC v2 3/3] video: exynos: Making s6e8ax0 panel driver compliant with CDF

2013-02-14 Thread Vikas Sajjan
Hi Mr. Lee, thanks for the review. On 14 February 2013 07:30, Donghwa Lee wrote: > On Wed, Feb 13, 2013 at 19:01, Vikas Sajjan wrote: >> >> Made necessary changes in s6e8ax0 panel driver as per the CDF-T. >> It also removes the dependency on backlight and lcd framework >> >> Signed-off-by: Vika

[PATCH] drm/exynos: modify condition in mixer and hdmi resume

2013-02-14 Thread Rahul Sharma
From: Prathyush K If mixer is runtime suspended (by DPMS OFF), mixer_suspend does not call mixer_poweroff and just returns. Similarily the mixer_resume should not resume the mixer if mixer is runtime_suspended. It should be done through DPMS ON. The existing check is stopping the resume. This is

Re: [Linaro-mm-sig] [PATCH 2/3] mutex: add support for reservation style locks

2013-02-14 Thread Maarten Lankhorst
Hey, Op 14-02-13 11:22, Arnd Bergmann schreef: > On Thursday 07 February 2013, Maarten Lankhorst wrote: > > Hi Maarten, > > I cannot help a lot on this patch set, but there are a few things that > I noticed when reading it. > >> Functions: >> -- >> >> mutex_reserve_lock, and mutex_reserve_

Re: Including drm-intel tree to linux-next

2013-02-14 Thread Borislav Petkov
On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: > Hi Steven, > > Since about a year ago we've switched drm/i915 to buffer around 2 > weeks worth of patches so that we can do decent QA before breaking > everyone's tree when things land in Dave's drm-next. But that also > means we'll

Re: Including drm-intel tree to linux-next

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 3:28 PM, Steven Rostedt wrote: > On Thu, 2013-02-14 at 15:19 +0100, Borislav Petkov wrote: >> On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: >> > Hi Steven, >> > >> > Since about a year ago we've switched drm/i915 to buffer around 2 >> > weeks worth of patch

[Bug 60848] New: [bisected] r600g: add htile support cause gpu lockup in Dishonored wine.

2013-02-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60848 Priority: medium Bug ID: 60848 Assignee: dri-devel@lists.freedesktop.org Summary: [bisected] r600g: add htile support cause gpu lockup in Dishonored wine. Severity: normal

[Bug 60073] [bisected] Bad rendering in Path of Exile

2013-02-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60073 Jerome Glisse changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 60848] [bisected] r600g: add htile support cause gpu lockup in Dishonored wine.

2013-02-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60848 --- Comment #1 from Jerome Glisse --- Does it happen without --enable-gallium-llvm also does it happen when running with R600_HTILE=0 env variable ? -- You are receiving this mail because: You are the assignee for the bug. _

Re: [PATCH] omapdrm: Make fixed resolution panels work

2013-02-14 Thread Rob Clark
On Thu, Feb 14, 2013 at 6:52 AM, Archit Taneja wrote: > The omapdrm driver requires omapdss panel drivers to expose ops like detect, > set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI > and SDI drivers. At some places, there are no checks to see if the panel > driver

Re: gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Brian Paul
On 02/14/2013 01:10 PM, Sedat Dilek wrote: Hi, noticed when polishing up my build-scripts fot libdrm | mesa | xf86-video-intel (last one requires gl.h). /* * Mesa 3-D graphics library * Version: 7.6<--- ??? I could remove that obsolete line. * * Copyright (C) 1999-2006 Brian Paul

Re: [PATCH v2 1/2] [media] s5p-g2d: Add DT based discovery support

2013-02-14 Thread Sachin Kamat
On Thursday, 14 February 2013, Sylwester Nawrocki < sylvester.nawro...@gmail.com> wrote: > On 02/12/2013 06:30 PM, Sachin Kamat wrote: >> >> Hi Sylwester, >> >> On Wednesday, 6 February 2013, Sachin Kamat wrote: >>> >>> This patch adds device tree based discovery support to G2D driver >>> >>> Si

Re: Including drm-intel tree to linux-next

2013-02-14 Thread Steven Rostedt
On Thu, 2013-02-14 at 15:19 +0100, Borislav Petkov wrote: > On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: > > Hi Steven, > > > > Since about a year ago we've switched drm/i915 to buffer around 2 > > weeks worth of patches so that we can do decent QA before breaking > > everyone's

gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Sedat Dilek
Hi, noticed when polishing up my build-scripts fot libdrm | mesa | xf86-video-intel (last one requires gl.h). /* * Mesa 3-D graphics library * Version: 7.6 <--- ??? * * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. <--- ??? * Copyright (C) 2009 VMware, Inc. All Rights Reserve

Re: gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Sedat Dilek
On Thu, Feb 14, 2013 at 9:26 PM, Brian Paul wrote: > On 02/14/2013 01:10 PM, Sedat Dilek wrote: >> >> Hi, >> >> noticed when polishing up my build-scripts fot libdrm | mesa | >> xf86-video-intel (last one requires gl.h). >> >> /* >> * Mesa 3-D graphics library >> * Version: 7.6<--- ??? > > >

Re: [PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Chris Wilson
On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > 5-9. > Since we do all calculations based on them being register values (which are > subtracted by 2) we need to specify them accordingly. > > Signed-o

Re: [PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 08:50:25PM +, Chris Wilson wrote: > On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: > > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > > 5-9. > > Since we do all calculations based on them being register values (which are

Re: [PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Dave Airlie
On Fri, Feb 15, 2013 at 6:59 AM, Daniel Vetter wrote: > On Thu, Feb 14, 2013 at 08:50:25PM +, Chris Wilson wrote: >> On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: >> > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 >> > and 5-9. >> > Since we do al

Re: [PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 10:45 PM, Dave Airlie wrote: > On Fri, Feb 15, 2013 at 6:59 AM, Daniel Vetter wrote: >> On Thu, Feb 14, 2013 at 08:50:25PM +, Chris Wilson wrote: >>> On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: >>> > The Intel PRM says the M1 and M2 divisors must

Re: gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Ian Romanick
On 02/14/2013 12:29 PM, Sedat Dilek wrote: On Thu, Feb 14, 2013 at 9:26 PM, Brian Paul wrote: On 02/14/2013 01:10 PM, Sedat Dilek wrote: Hi, noticed when polishing up my build-scripts fot libdrm | mesa | xf86-video-intel (last one requires gl.h). /* * Mesa 3-D graphics library * Versi

Re: Including drm-intel tree to linux-next

2013-02-14 Thread Stephen Rothwell
Hi Daniel, On Thu, 14 Feb 2013 15:19:53 +0100 Borislav Petkov wrote: > > On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: > > > > Since about a year ago we've switched drm/i915 to buffer around 2 > > weeks worth of patches so that we can do decent QA before breaking > > everyone's

Re: [PATCH] drm/i915: Set i9xx lvds clock limits according to specifications

2013-02-14 Thread Chris Wilson
On Wed, Feb 13, 2013 at 10:20:21PM +0100, Patrik Jakobsson wrote: > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > 5-9. > Since we do all calculations based on them being register values (which are > subtracted by 2) we need to specify them accordingly. One thing I'

linux-next: build failure after merge of the drm-intel tree

2013-02-14 Thread Stephen Rothwell
Hi all, After merging the drm-intel tree, today's linux-next build (x86_64 allmodconfig) failed like this: ERROR: "pm_vt_switch_unregister" [drivers/video/fb.ko] undefined! I have dropped the tree for today. -- Cheers, Stephen Rothwells...@canb.auug.org.au pgpbVHZH4ZWzz.pg

Re: [PATCH v5 1/1] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-14 Thread Inki Dae
2013/2/6 Vikas Sajjan : > Add support for parsing the display-timing node using video helper > function. > > The DT node parsing and pinctrl selection is done only if 'dev.of_node' > exists and the NON-DT logic is still maintained under the 'else' part. > > Signed-off-by: Leela Krishna Amudala > S

[GIT PULL] exynos-drm-next

2013-02-14 Thread Inki Dae
Hi Dave, This pull-request includes hdmi mode relevant some improvements, bug fixes and code cleanups. The summary: . Add display mode check operaion to mixer driver - Mixer IP also can put certain restrictions on the proposed display modes and these restrictions need to be considered d

[Bug 56659] DRI_PRIME: triangle, rendering inside of which occurs with a noticeable delay

2013-02-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56659 --- Comment #3 from runetmem...@gmail.com --- Still reproducible with radeon 7.0.0 and newer git snapshots. -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel maili

Re: [PATCH v5 1/1] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-14 Thread Vikas Sajjan
Hi Mr. Inki Dae, Thanks for review. On 15 February 2013 08:50, Inki Dae wrote: > 2013/2/6 Vikas Sajjan : >> Add support for parsing the display-timing node using video helper >> function. >> >> The DT node parsing and pinctrl selection is done only if 'dev.of_node' >> exists and the NON-DT logic

[PATCH 2/2] drm: Use C8 instead of RGB332 when determining the format from depth/bpp

2013-02-14 Thread Daniel Vetter
On Wed, Feb 13, 2013 at 01:40:56PM +0100, Daniel Vetter wrote: > On Tue, Feb 05, 2013 at 01:07:01PM +1000, Dave Airlie wrote: > > On Tue, Feb 5, 2013 at 12:55 AM, Daniel Vetter wrote: > > > On Thu, Jan 31, 2013 at 07:43:38PM +0200, ville.syrjala at > > > linux.intel.com wrote: > > >> From: Ville

[Bug 60802] Kernel 3.8-rc7 breaks rendering on Radeon (confirmed on Cayman)

2013-02-14 Thread bugzilla-dae...@freedesktop.org
ou are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130214/ba19c43b/attachment.html>

[Bug 60802] Kernel 3.8-rc7 breaks rendering on Radeon (confirmed on Cayman)

2013-02-14 Thread bugzilla-dae...@freedesktop.org
ng 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/20130214/868197c0/attachment.html>

[Bug 60802] Kernel 3.8-rc7 breaks rendering on Radeon (confirmed on Cayman)

2013-02-14 Thread bugzilla-dae...@freedesktop.org
ceiving 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/20130214/e0cdbd34/attachment.html>

[PATCH v2 1/2] [media] s5p-g2d: Add DT based discovery support

2013-02-14 Thread Sylwester Nawrocki
On 02/12/2013 06:30 PM, Sachin Kamat wrote: > > Hi Sylwester, > > On Wednesday, 6 February 2013, Sachin Kamat > wrote: >> This patch adds device tree based discovery support to G2D driver >> >> Signed-off-by: Sachin Kamat >> --- >> Based on for_v3.9 branch of below tree: >> git://linuxtv.or

[PATCH 2/3] drm: Renesas R-Car Display Unit DRM driver

2013-02-14 Thread Simon Horman
On Wed, Feb 13, 2013 at 07:18:33PM +0100, Laurent Pinchart wrote: > Hi Simon, > > On Wednesday 13 February 2013 21:28:20 Simon Horman wrote: > > On Thu, Jan 31, 2013 at 02:45:02AM +0100, Laurent Pinchart wrote: > > > The R-Car Display Unit (DU) DRM driver supports both superposition > > > processo

[RFC v2 3/3] video: exynos: Making s6e8ax0 panel driver compliant with CDF

2013-02-14 Thread Donghwa Lee
On Wed, Feb 13, 2013 at 19:01, Vikas Sajjan wrote: > Made necessary changes in s6e8ax0 panel driver as per the CDF-T. > It also removes the dependency on backlight and lcd framework > > Signed-off-by: Vikas Sajjan > --- > drivers/video/exynos/s6e8ax0.c | 848 > +

[pull] fb helper cleanups

2013-02-14 Thread Daniel Vetter
Hi Dave, [Andrew: Pull contains the patch "drm/fb-helper: don't sleep for screen unblank when an oopps is in progress" which is also in your tree, hence the cc.] I've figured a pull request is easier to handle ;-) This is the drm fb helper cleanup, mostly motivated by strange things I've seen in

[Linaro-mm-sig] [PATCH 2/3] mutex: add support for reservation style locks

2013-02-14 Thread Arnd Bergmann
On Thursday 07 February 2013, Maarten Lankhorst wrote: Hi Maarten, I cannot help a lot on this patch set, but there are a few things that I noticed when reading it. > Functions: > -- > > mutex_reserve_lock, and mutex_reserve_lock_interruptible: > Lock a buffer with a reservation_id se

[Bug 60073] [bisected] Bad rendering in Path of Exile

2013-02-14 Thread bugzilla-dae...@freedesktop.org
hment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130214/3a272d1b/attachment.html>

[Linaro-mm-sig] [PATCH 2/3] mutex: add support for reservation style locks

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 11:22 AM, Arnd Bergmann wrote: > >> These functions will return -EDEADLK instead of -EAGAIN if >> reservation_id is the same as the reservation_id that's attempted to >> lock the mutex with, since in that case you presumably attempted to >> lock the same lock twice.

[PATCH] omapdrm: Make fixed resolution panels work

2013-02-14 Thread Archit Taneja
The omapdrm driver requires omapdss panel drivers to expose ops like detect, set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI and SDI drivers. At some places, there are no checks to see if the panel driver has these ops or not, and that leads to a crash. The following

[PATCH] drm/i915: Set i9xx lvds clock limits according to specifications

2013-02-14 Thread Chris Wilson
On Wed, Feb 13, 2013 at 10:20:21PM +0100, Patrik Jakobsson wrote: > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > 5-9. > Since we do all calculations based on them being register values (which are > subtracted by 2) we need to specify them accordingly. > > Signed-o

Including drm-intel tree to linux-next

2013-02-14 Thread Daniel Vetter
Hi Steven, Since about a year ago we've switched drm/i915 to buffer around 2 weeks worth of patches so that we can do decent QA before breaking everyone's tree when things land in Dave's drm-next. But that also means we'll miss out a bit in the integration testing -next provides, which did hurt a

[Linaro-mm-sig] [PATCH 2/3] mutex: add support for reservation style locks

2013-02-14 Thread Maarten Lankhorst
Hey, Op 14-02-13 11:22, Arnd Bergmann schreef: > On Thursday 07 February 2013, Maarten Lankhorst wrote: > > Hi Maarten, > > I cannot help a lot on this patch set, but there are a few things that > I noticed when reading it. > >> Functions: >> -- >> >> mutex_reserve_lock, and mutex_reserve_

CDF meeting @FOSDEM report

2013-02-14 Thread Tomi Valkeinen
application/pgp-signature Size: 899 bytes Desc: OpenPGP digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130214/51e11dab/attachment.pgp>

[RFC v2 3/3] video: exynos: Making s6e8ax0 panel driver compliant with CDF

2013-02-14 Thread Vikas Sajjan
Hi Mr. Lee, thanks for the review. On 14 February 2013 07:30, Donghwa Lee wrote: > On Wed, Feb 13, 2013 at 19:01, Vikas Sajjan wrote: >> >> Made necessary changes in s6e8ax0 panel driver as per the CDF-T. >> It also removes the dependency on backlight and lcd framework >> >> Signed-off-by: Vika

[PATCH] drm/exynos: modify condition in mixer and hdmi resume

2013-02-14 Thread Rahul Sharma
From: Prathyush K If mixer is runtime suspended (by DPMS OFF), mixer_suspend does not call mixer_poweroff and just returns. Similarily the mixer_resume should not resume the mixer if mixer is runtime_suspended. It should be done through DPMS ON. The existing check is stopping the resume. This is

Including drm-intel tree to linux-next

2013-02-14 Thread Borislav Petkov
On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: > Hi Steven, > > Since about a year ago we've switched drm/i915 to buffer around 2 > weeks worth of patches so that we can do decent QA before breaking > everyone's tree when things land in Dave's drm-next. But that also > means we'll

Including drm-intel tree to linux-next

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 3:28 PM, Steven Rostedt wrote: > On Thu, 2013-02-14 at 15:19 +0100, Borislav Petkov wrote: >> On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: >> > Hi Steven, >> > >> > Since about a year ago we've switched drm/i915 to buffer around 2 >> > weeks worth of patch

[Bug 60848] New: [bisected] r600g: add htile support cause gpu lockup in Dishonored wine.

2013-02-14 Thread bugzilla-dae...@freedesktop.org
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/20130214/469148da/attachment-0001.html>

[Bug 60073] [bisected] Bad rendering in Path of Exile

2013-02-14 Thread bugzilla-dae...@freedesktop.org
nts/20130214/cd70692a/attachment.html>

[Bug 60848] [bisected] r600g: add htile support cause gpu lockup in Dishonored wine.

2013-02-14 Thread bugzilla-dae...@freedesktop.org
part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130214/beab3727/attachment.html>

[PATCH] omapdrm: Make fixed resolution panels work

2013-02-14 Thread Rob Clark
On Thu, Feb 14, 2013 at 6:52 AM, Archit Taneja wrote: > The omapdrm driver requires omapdss panel drivers to expose ops like detect, > set_timings and check_timings. These can be NULL for fixed panel DPI, DBI, DSI > and SDI drivers. At some places, there are no checks to see if the panel > driver

gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Brian Paul
On 02/14/2013 01:10 PM, Sedat Dilek wrote: > Hi, > > noticed when polishing up my build-scripts fot libdrm | mesa | > xf86-video-intel (last one requires gl.h). > > /* > * Mesa 3-D graphics library > * Version: 7.6<--- ??? I could remove that obsolete line. > * > * Copyright (C) 1999-20

[PATCH v2 1/2] [media] s5p-g2d: Add DT based discovery support

2013-02-14 Thread Sachin Kamat
> e.g. { "sclk", "gate" }. This could simplify a bit subsystems like devfreq. Yes. That makes sense. > > Also I noticed there are some issues caused by splitting mux + div + gate > clocks into 3 different clocks. One solution to this might be to use the > new composite clock type. Ok. > > [1] http://www.spinics.net/lists/arm-kernel/msg214149.html > -- With warm regards, Sachin -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130214/446beb86/attachment.html>

Including drm-intel tree to linux-next

2013-02-14 Thread Steven Rostedt
On Thu, 2013-02-14 at 15:19 +0100, Borislav Petkov wrote: > On Thu, Feb 14, 2013 at 03:12:02PM +0100, Daniel Vetter wrote: > > Hi Steven, > > > > Since about a year ago we've switched drm/i915 to buffer around 2 > > weeks worth of patches so that we can do decent QA before breaking > > everyone's

gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Sedat Dilek
Hi, noticed when polishing up my build-scripts fot libdrm | mesa | xf86-video-intel (last one requires gl.h). /* * Mesa 3-D graphics library * Version: 7.6 <--- ??? * * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. <--- ??? * Copyright (C) 2009 VMware, Inc. All Rights Reserve

gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Sedat Dilek
On Thu, Feb 14, 2013 at 9:26 PM, Brian Paul wrote: > On 02/14/2013 01:10 PM, Sedat Dilek wrote: >> >> Hi, >> >> noticed when polishing up my build-scripts fot libdrm | mesa | >> xf86-video-intel (last one requires gl.h). >> >> /* >> * Mesa 3-D graphics library >> * Version: 7.6<--- ??? > > >

[PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Chris Wilson
On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > 5-9. > Since we do all calculations based on them being register values (which are > subtracted by 2) we need to specify them accordingly. > > Signed-o

[PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 08:50:25PM +, Chris Wilson wrote: > On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: > > The Intel PRM says the M1 and M2 divisors must be in the range of 10-20 and > > 5-9. > > Since we do all calculations based on them being register values (which are

[PATCH] drm/i915: Set i9xx sdvo clock limits according to specifications

2013-02-14 Thread Daniel Vetter
On Thu, Feb 14, 2013 at 10:45 PM, Dave Airlie wrote: > On Fri, Feb 15, 2013 at 6:59 AM, Daniel Vetter wrote: >> On Thu, Feb 14, 2013 at 08:50:25PM +, Chris Wilson wrote: >>> On Wed, Feb 13, 2013 at 10:20:22PM +0100, Patrik Jakobsson wrote: >>> > The Intel PRM says the M1 and M2 divisors must

gl.h: Version mumbo-jumbo and Copyright?

2013-02-14 Thread Ian Romanick
On 02/14/2013 12:29 PM, Sedat Dilek wrote: > On Thu, Feb 14, 2013 at 9:26 PM, Brian Paul wrote: >> On 02/14/2013 01:10 PM, Sedat Dilek wrote: >>> >>> Hi, >>> >>> noticed when polishing up my build-scripts fot libdrm | mesa | >>> xf86-video-intel (last one requires gl.h). >>> >>> /* >>>* Mesa 3