Re: [Intel-gfx] [PATCH 3/5] drm/i915: nonblocking commit

2016-06-14 Thread Maarten Lankhorst
Op 13-06-16 om 16:13 schreef Daniel Vetter: > Simply split intel_atomic_commit in half and place the new > nonblocking commit helpers at the right spots. > > NOTE: There's still trouble with obj->frontbuffer bits getting mangled > when pipelining atomic commits. > > v2: > - Remove the check for non

Re: [Intel-gfx] [PATCH 11/62] drm/i915: Clean up GPU hang message

2016-06-14 Thread Mika Kuoppala
Chris Wilson writes: > Remove some redundant kernel messages as we deduce a hung GPU and > capture the error state. > > v2: Fix "hang" vs "no progress" message whilst I was there > > Signed-off-by: Chris Wilson > --- > drivers/gpu/drm/i915/i915_irq.c | 41 > ++--

Re: [Intel-gfx] [PATCH 1/5] drm/i915: Signal drm events for atomic

2016-06-14 Thread Maarten Lankhorst
Op 13-06-16 om 16:13 schreef Daniel Vetter: > This is part of what atomic must implement. And it's also required > to be able to use the helper nonblocking support. > > v2: Always send out the drm event, remove the planes_changed check. Hey, There used to be a patch to add a test in kms_atomic for

[Intel-gfx] [PATCH 1/3] RFC: drm: Restrict vblank ioctl to master

2016-06-14 Thread Daniel Vetter
Somehow this escaped us, this is a KMS ioctl which should only be used by the master (which is the thing that's also in control of kms resources). Everything else is bound to result in fail. Clients shouldn't have a trouble coping with this, since a pile of drivers don't support vblank waits (or j

[Intel-gfx] [PATCH 2/3] drm: Mark authmagic ioctls as unlocked

2016-06-14 Thread Daniel Vetter
All protected by dev->master_mutex. And there's no driver callbacks, which means no need to sync with old dri1 horror show drivers at all. Hence safe to drop the drm legacy BKL from these paths. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_ioctl.c | 4 ++-- 1 file changed, 2 insertions(+

[Intel-gfx] [PATCH 3/3] drm: Mark set/drop master ioctl as unlocked.

2016-06-14 Thread Daniel Vetter
Again this is neatly protected by the dev->master_mutex now. There is a driver callback both for set and drop, but it's only used by vmwgfx. And vmwgfx has it's own solid locking for shared resources (besides dev->master_mutex), hence is all safe. Let's drop another place where the drm legacy bkl i

[Intel-gfx] ✗ Ro.CI.BAT: failure for series starting with [1/3] RFC: drm: Restrict vblank ioctl to master

2016-06-14 Thread Patchwork
== Series Details == Series: series starting with [1/3] RFC: drm: Restrict vblank ioctl to master URL : https://patchwork.freedesktop.org/series/8674/ State : failure == Summary == Applying: RFC: drm: Restrict vblank ioctl to master Applying: drm: Mark authmagic ioctls as unlocked fatal: sha1

Re: [Intel-gfx] ✗ Ro.CI.BAT: warning for BXT Pooled EU kernel support and WA patches (rev3)

2016-06-14 Thread Tvrtko Ursulin
On 06/06/16 07:26, Arun Siluvery wrote: On 03/06/2016 16:28, Patchwork wrote: == Series Details == Series: BXT Pooled EU kernel support and WA patches (rev3) URL : https://patchwork.freedesktop.org/series/8200/ State : warning == Summary == Series 8200v3 BXT Pooled EU kernel support and WA

Re: [Intel-gfx] [PATCH v9 4/6] drm/i915: Interrupt driven fences

2016-06-14 Thread Tvrtko Ursulin
On 13/06/16 16:51, John Harrison wrote: [snip] diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 07edaed..f8f60bb 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c @@ -1019,9 +1019,13 @@ static int i915_workqueues_init(struct

Re: [Intel-gfx] [PATCH v3 5/7] drm/i915/guc: refactor doorbell management code

2016-06-14 Thread Tvrtko Ursulin
On 13/06/16 17:57, Dave Gordon wrote: This patch refactors the driver's handling and tracking of doorbells, in preparation for a later one which will resolve a suspend-resume issue. There are three resources to be managed: 1. Cachelines: a single line within the client-object's page 0 is sn

Re: [Intel-gfx] [PATCH v3 6/7] drm/i915/guc: replace assign_doorbell() with select_doorbell_register()

2016-06-14 Thread Tvrtko Ursulin
On 13/06/16 17:57, Dave Gordon wrote: This version doesn't update the doorbell bitmap, as that will be done when the selected doorbell is associated with a client. The call is now slightly earlier, just on the general principle that potentially-failing operations should be done as early as poss

[Intel-gfx] [PATCH 2.5/5] Reapply "drm/i915: Pass atomic states to fbc update, functions."

2016-06-14 Thread Maarten Lankhorst
The patch was reverted as part of the original nonblocking commit support, but is required for any kind of nonblocking commit. This is required to let fbc updates run async. It has a lot of checks whether certain locks are taken, which can be removed when the relevant states are passed in as point

Re: [Intel-gfx] [PATCH 2.5/5] Reapply "drm/i915: Pass atomic states to fbc update, functions."

2016-06-14 Thread Daniel Vetter
On Tue, Jun 14, 2016 at 02:24:20PM +0200, Maarten Lankhorst wrote: > The patch was reverted as part of the original nonblocking commit > support, but is required for any kind of nonblocking commit. > > This is required to let fbc updates run async. It has a lot of > checks whether certain locks ar

Re: [Intel-gfx] [PATCH 1/5] drm/i915: Signal drm events for atomic

2016-06-14 Thread Daniel Vetter
On Tue, Jun 14, 2016 at 10:21:02AM +0200, Maarten Lankhorst wrote: > Op 13-06-16 om 16:13 schreef Daniel Vetter: > > This is part of what atomic must implement. And it's also required > > to be able to use the helper nonblocking support. > > > > v2: Always send out the drm event, remove the planes_

Re: [Intel-gfx] [PATCH 1/2] drm/i915/guc: prefer 'dev_priv' to 'dev' for static functions

2016-06-14 Thread Dave Gordon
On 13/06/16 10:13, Tvrtko Ursulin wrote: On 10/06/16 18:29, Dave Gordon wrote: Convert all static functions in i915_guc_submission.c that currently take a 'dev' pointer to take 'dev_priv' instead (there are three, guc_client_alloc(), guc_client_free(), and gem_allocate_guc_obj(). Signed-off-by

[Intel-gfx] [PATCH v11 0/9] Introduce the implementation of GVT context

2016-06-14 Thread Zhi Wang
This patchset introduces the implementation of GVT context. GVT context is a special GEM context used by GVT-g. GVT-g uses it as the shadow context.It doesn't have a drm client nor a PPGTT. And it requires a larger ring buffer with several special features need by GVT-g workload scheduler like cont

[Intel-gfx] [PATCH v11 1/9] drm/i915: Factor out i915_pvinfo.h

2016-06-14 Thread Zhi Wang
As the PVINFO page definition is used by both GVT-g guest (vGPU) and GVT-g host (GVT-g kernel device model), factor it out for better code structure. v7: - Split the "offsetof" modification into a dedicated patch. (Joonas) v3: - Use offsetof to calculate the member offset of PVINFO structure (Joo

[Intel-gfx] [PATCH v11 2/9] drm/i915: Use offsetof() to calculate the offset of members in PVINFO page

2016-06-14 Thread Zhi Wang
To get the offset of the members in PVINFO page, offsetof() looks much better than the tricky approach in current code. v7: - Move "offsetof()" modification into a dedicated patch. (Joonas) Suggested-by: Joonas Lahtinen Reviewed-by: Joonas Lahtinen Cc: Joonas Lahtinen Signed-off-by: Zhi Wang

[Intel-gfx] [PATCH v11 4/9] drm/i915: gvt: Introduce the basic architecture of GVT-g

2016-06-14 Thread Zhi Wang
This patch introduces the very basic framework of GVT-g device model, includes basic prototypes, definitions, initialization. v8: - Remove the GVT idr and mutex in intel_gvt_host. (Joonas) v7: - Refine the URL link in Kconfig. (Joonas) - Refine the introduction of GVT-g host support in Kconfig. (

[Intel-gfx] [PATCH v11 7/9] drm/i915: Introduce execlist context status change notification

2016-06-14 Thread Zhi Wang
This patch introduces an approach to track the execlist context status change. GVT-g uses GVT context as the "shadow context". The content inside GVT context will be copied back to guest after the context is idle. And GVT-g has to know the status of the execlist context. This function is configur

[Intel-gfx] [PATCH v11 3/9] drm/i915: Fold vGPU active check into inner functions

2016-06-14 Thread Zhi Wang
v5: - Let functions take struct drm_i915_private *. (Tvrtko) - Fold vGPU related active check into the inner functions. (Kevin) Reviewed-by: Tvrtko Ursulin Reviewed-by: Joonas Lahtinen Suggested-by: Kevin Tian Cc: Tvrtko Ursulin Cc: Joonas Lahtinen Cc: Kevin Tian Signed-off-by: Zhi Wang --

[Intel-gfx] [PATCH v11 6/9] drm/i915: Make addressing mode bits in context descriptor configurable

2016-06-14 Thread Zhi Wang
Currently the addressing mode bit in context descriptor is statically generated from the configuration of system-wide PPGTT usage model. GVT-g will load the PPGTT shadow page table by itself and probably one guest is using a different addressing mode with i915 host. The addressing mode bits of a L

[Intel-gfx] [PATCH v11 9/9] drm/i915: Introduce GVT context creation API

2016-06-14 Thread Zhi Wang
GVT workload scheduler needs special host LRC contexts, the so called "shadow LRC context" to submit guest workload to host i915. During the guest workload submission, workload scheduler fills the shadow LRC context with the content of guest LRC context: engine context is copied without changes, ri

[Intel-gfx] [PATCH v11 8/9] drm/i915: Support LRC context single submission

2016-06-14 Thread Zhi Wang
This patch introduces the support of LRC context single submission. As GVT context may come from different guests, which require different configuration of render registers. It can't be combined into a dual ELSP submission combo. Only GVT-g will create this kinds of GEM context currently. v8: -

[Intel-gfx] [PATCH v11 5/9] drm/i915: Make ring buffer size of a LRC context configurable

2016-06-14 Thread Zhi Wang
This patch introduces an option for configuring the ring buffer size of a LRC context after the context creation. v9: - Fix an identation issue. (Chris) v8: - Rename the data member in i915_gem_context. (Chris) Reviewed-by: Joonas Lahtinen Cc: Joonas Lahtinen Cc: Chris Wilson Signed-off-by: Z

Re: [Intel-gfx] [PATCH v2 4/6] drm/i915/guc: remove writes to GEN8_DRBREG registers

2016-06-14 Thread Dave Gordon
On 13/06/16 10:35, Tvrtko Ursulin wrote: On 10/06/16 17:50, Dave Gordon wrote: These registers are not actually writable by the CPU; only the GuC can actually program them. So let's not do writes that have no effect. Signed-off-by: Dave Gordon --- drivers/gpu/drm/i915/i915_guc_submission.c

Re: [Intel-gfx] ✗ Ro.CI.BAT: failure for drm/i915/guc: updates to GuC doorbell handling (rev2)

2016-06-14 Thread Dave Gordon
On 14/06/16 06:27, Patchwork wrote: == Series Details == Series: drm/i915/guc: updates to GuC doorbell handling (rev2) URL : https://patchwork.freedesktop.org/series/8553/ State : failure == Summary == Series 8553v2 drm/i915/guc: updates to GuC doorbell handling http://patchwork.freedesktop.

[Intel-gfx] ✗ Ro.CI.BAT: warning for Introduce the implementation of GVT context (rev9)

2016-06-14 Thread Patchwork
== Series Details == Series: Introduce the implementation of GVT context (rev9) URL : https://patchwork.freedesktop.org/series/7208/ State : warning == Summary == Series 7208v9 Introduce the implementation of GVT context http://patchwork.freedesktop.org/api/1.0/series/7208/revisions/9/mbox Te

Re: [Intel-gfx] ✗ Ro.CI.BAT: failure for drm/i915/guc: updates to GuC doorbell handling (rev2)

2016-06-14 Thread Tvrtko Ursulin
On 14/06/16 14:42, Dave Gordon wrote: On 14/06/16 06:27, Patchwork wrote: == Series Details == Series: drm/i915/guc: updates to GuC doorbell handling (rev2) URL : https://patchwork.freedesktop.org/series/8553/ State : failure == Summary == Series 8553v2 drm/i915/guc: updates to GuC doorbel

Re: [Intel-gfx] ✗ Ro.CI.BAT: warning for Introduce the implementation of GVT context (rev9)

2016-06-14 Thread Wang, Zhi A
The dmesg warning message issue has been reported at: https://bugs.freedesktop.org/show_bug.cgi?id=96448 > -Original Message- > From: Patchwork [mailto:patchw...@emeril.freedesktop.org] > Sent: Tuesday, June 14, 2016 4:52 PM > To: Wang, Zhi A > Cc: intel-gfx@lists.freedesktop.org > Subje

Re: [Intel-gfx] [PATCH 7/7] drm/i915: Allow DP ports to set/readout infoframe state (WIP)

2016-06-14 Thread Ville Syrjälä
On Mon, Jun 13, 2016 at 06:58:19PM +0530, Sharma, Shashank wrote: > Regards > Shashank > > On 6/3/2016 1:25 AM, ville.syrj...@linux.intel.com wrote: > > From: Ville Syrjälä > > > > The video DIP can be used with DP ports as well. So let's at least read > > out the state, and disable all infoframe

Re: [Intel-gfx] [PATCH 7/7] drm/i915: Allow DP ports to set/readout infoframe state (WIP)

2016-06-14 Thread Sharma, Shashank
Regards Shashank On 6/14/2016 7:46 PM, Ville Syrjälä wrote: On Mon, Jun 13, 2016 at 06:58:19PM +0530, Sharma, Shashank wrote: Regards Shashank On 6/3/2016 1:25 AM, ville.syrj...@linux.intel.com wrote: From: Ville Syrjälä The video DIP can be used with DP ports as well. So let's at least rea

[Intel-gfx] [PATCH] drm/i915: Serialise presentation with imported dmabufs

2016-06-14 Thread Chris Wilson
obj->base.dma_buf represents a dma-buf exported from this object (for use by others). On the contrary, ob->base.import_attach represents the source dma-buf that was used to create this object (if any). When serialising with third parties, we want to wait on their rendering via the import attachment

[Intel-gfx] [PATCH v5] drm/i915/ilk: Don't disable SSC source if it's in use

2016-06-14 Thread Lyude
Thanks to Ville Syrjälä for pointing me towards the cause of this issue. Unfortunately one of the sideaffects of having the refclk for a DPLL set to SSC is that as long as it's set to SSC, the GPU will prevent us from powering down any of the pipes or transcoders using it. A couple of BIOSes enabl

[Intel-gfx] ✓ Ro.CI.BAT: success for drm/i915: Serialise presentation with imported dmabufs

2016-06-14 Thread Patchwork
== Series Details == Series: drm/i915: Serialise presentation with imported dmabufs URL : https://patchwork.freedesktop.org/series/8689/ State : success == Summary == Series 8689v1 drm/i915: Serialise presentation with imported dmabufs http://patchwork.freedesktop.org/api/1.0/series/8689/revis

Re: [Intel-gfx] [PATCH] drm/i915: Serialise presentation with imported dmabufs

2016-06-14 Thread Daniel Vetter
On Tue, Jun 14, 2016 at 04:03:57PM +0100, Chris Wilson wrote: > obj->base.dma_buf represents a dma-buf exported from this object (for > use by others). On the contrary, ob->base.import_attach represents the > source dma-buf that was used to create this object (if any). When > serialising with third

Re: [Intel-gfx] [PATCH] drm/i915: Force vblanks around evasion when i915.watermark_test is set.

2016-06-14 Thread Daniel Vetter
On Tue, Jun 14, 2016 at 08:27:57AM +0200, Maarten Lankhorst wrote: > Op 13-06-16 om 16:45 schreef Daniel Vetter: > > On Thu, Jun 09, 2016 at 01:36:50PM +0200, Maarten Lankhorst wrote: > >> This will make it more likely that intermediary watermarks cause fifo > >> underruns, which is useful when wri

[Intel-gfx] ✓ Ro.CI.BAT: success for drm/i915/ilk: Don't disable SSC source if it's in use

2016-06-14 Thread Patchwork
== Series Details == Series: drm/i915/ilk: Don't disable SSC source if it's in use URL : https://patchwork.freedesktop.org/series/8690/ State : success == Summary == Series 8690v1 drm/i915/ilk: Don't disable SSC source if it's in use http://patchwork.freedesktop.org/api/1.0/series/8690/revisio

[Intel-gfx] [PATCH] drm/i915: nonblocking commit

2016-06-14 Thread Daniel Vetter
Simply split intel_atomic_commit in half and place the new nonblocking commit helpers at the right spots. NOTE: There's still trouble with obj->frontbuffer bits getting mangled when pipelining atomic commits. v2: - Remove the check for nonblocking which returned -EINVAL. - Do wait for requests in

[Intel-gfx] [PATCH 00/14] Cruft removal around drm_master

2016-06-14 Thread Daniel Vetter
Hi all, These are the final bits of my dev->struct_mutex crusade, taking care of a few things related to drm_master. Since I just couldnt' grok this dense web of legacy dungeons, also includes some cleanups. On top of that also patches to mark auth and master ioctls as DRM_UNLOCKED, which means th

[Intel-gfx] [PATCH 05/14] drm: Extract drm_master_open

2016-06-14 Thread Daniel Vetter
And pull out the primary_client check to make it really obvious that this can't happen on control/render nodes. Bonus that we can avoid the master lock in this case. v2: Don't leak locks on error path (and simplify control flow while at it), reported by Julia. Cc: Julia Lawall Signed-off-by: Dan

[Intel-gfx] [PATCH 02/14] drm: Hide hw.lock cleanup in filp->release better

2016-06-14 Thread Daniel Vetter
A few things: - Rename the cleanup function from drm_master_release to drm_legacy_lock_release. It doesn't relase any master stuff, but just the legacy hw lock. - Hide it in drm_lock.c, which allows us to make a few more functions static in there. To avoid forward decl we need to shuffle the

[Intel-gfx] [PATCH 07/14] drm: Only do the hw.lock cleanup in master_relase for !MODESET

2016-06-14 Thread Daniel Vetter
Another place gone where modern drivers could have hit dev->struct_mutex. To avoid too deeply nesting control flow rework it a bit. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_auth.c | 20 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/drivers/gpu/d

[Intel-gfx] [PATCH 04/14] drm: Move master functions into drm_auth.c

2016-06-14 Thread Daniel Vetter
For modern drivers pretty much the only thing drm_master does is handling authentication for the primary/legacy drm_minor node. Instead of having it all over drm files, move it all together into drm_auth.c. This patch just does code-motion, follow up patches will also extract the master logic from

[Intel-gfx] [PATCH 09/14] drm: Protect authmagic with master_mutex

2016-06-14 Thread Daniel Vetter
Simplifies cleanup, and there's no reason drivers should ever care about authmagic at all - it's all handled in the core. And with that, Ladies and Gentlemen, it's time to pop the champagen and celebrate: dev->struct_mutex is now officially gone from modern drivers, and if a driver is using gem_fr

[Intel-gfx] [PATCH 13/14] drm: Clean up drm_crtc.h

2016-06-14 Thread Daniel Vetter
- Group declarations for separate files (drm_bridge.c, drm_edid.c) - Move declarations only used within drm.ko to drm_crtc_internal.h - drm_property_type_valid to drm_crtc.c, its only callsite Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_crtc.c | 7 ++ drivers/gpu/drm/drm_crtc

[Intel-gfx] [PATCH 01/14] drm: Nuke legacy maps debugfs files

2016-06-14 Thread Daniel Vetter
GEM stopped using those a while ago, and no one should ever need to use them again to debug legacy horror show drivers. Nuke it all. Aside: It would kinda be nice if we'd have some generic debugfs dumps for at least kms ... Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_debugfs.c | 3 --

[Intel-gfx] [PATCH 10/14] drm: Mark authmagic ioctls as unlocked

2016-06-14 Thread Daniel Vetter
All protected by dev->master_mutex. And there's no driver callbacks, which means no need to sync with old dri1 horror show drivers at all. Hence safe to drop the drm legacy BKL from these paths. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_ioctl.c | 4 ++-- 1 file changed, 2 insertions(+

[Intel-gfx] [PATCH 11/14] drm: Mark set/drop master ioctl as unlocked.

2016-06-14 Thread Daniel Vetter
Again this is neatly protected by the dev->master_mutex now. There is a driver callback both for set and drop, but it's only used by vmwgfx. And vmwgfx has it's own solid locking for shared resources (besides dev->master_mutex), hence is all safe. Let's drop another place where the drm legacy bkl i

[Intel-gfx] [PATCH 14/14] drm: Use dev->name as fallback for dev->unique

2016-06-14 Thread Daniel Vetter
Lots of arm drivers get this wrong and for most arm boards this is the right thing actually. And anyway with most loaders you want to chase sysfs links anyway to figure out which dri device you want. This will fix dmesg noise for rockchip and sti. Also add a fallback to driver->name for entirely

[Intel-gfx] [PATCH 12/14] drm: Move master pointer from drm_minor to drm_device

2016-06-14 Thread Daniel Vetter
There can only be one current master, and it's for the overall device. Render/control minors don't support master-based auth at all. This simplifies the master logic a lot, at least in my eyes: All these additional pointer chases are just confusing. While doing the conversion I spotted some locki

[Intel-gfx] [PATCH 03/14] drm: Link directly from drm_master to drm_device

2016-06-14 Thread Daniel Vetter
Master-based auth only exists for the legacy/primary drm_minor, hence there can only be one per device. The goal here is to untangle the epic dereference games of minor->master and master->minor which is just massively confusing. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_drv.c |

[Intel-gfx] [PATCH 08/14] drm: Move authmagic cleanup into drm_master_release

2016-06-14 Thread Daniel Vetter
It's related, and soon authmagic will also use the master_mutex. There is an ever-so-slightly semantic change here: - authmagic will only be cleaned up for primary_client drm_minors. But it's impossible to create authmagic on render/control nodes, so this is fine. - The cleanup is moved down a

[Intel-gfx] [PATCH 06/14] drm: Extract drm_master_relase

2016-06-14 Thread Daniel Vetter
Like with drm_master_open protect it with a check for primary_client to make it clear that this can't happen on render/control nodes. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_auth.c | 37 + drivers/gpu/drm/drm_fops.c | 35 ++

Re: [Intel-gfx] [PATCH] drm/i915: Serialise presentation with imported dmabufs

2016-06-14 Thread Chris Wilson
On Tue, Jun 14, 2016 at 05:45:24PM +0200, Daniel Vetter wrote: > On Tue, Jun 14, 2016 at 04:03:57PM +0100, Chris Wilson wrote: > > obj->base.dma_buf represents a dma-buf exported from this object (for > > use by others). On the contrary, ob->base.import_attach represents the > > source dma-buf that

[Intel-gfx] [PATCH v2] drm/i915: Serialise presentation with imported dmabufs

2016-06-14 Thread Chris Wilson
obj->base.dma_buf represents a dma-buf exported from this object (for use by others). On the contrary, obj->base.import_attach represents the source dma-buf that was used to create this object (if any). When serialising with third parties, we need to wait on their rendering via the import attachmen

[Intel-gfx] [PULL] drm-intel-fixes

2016-06-14 Thread Daniel Vetter
Hi Dave, Jani's out sick, so pull request from me as an exception. Most of it prepped by Jani, I just smashed Lyude's fix on top. Pretty much all regression fixes, or black screens. There's the 8/6bpc dither regression fix from Mario outstanding - I pinged you about acking the drm core part earli

[Intel-gfx] [PULL] topic/drm-misc

2016-06-14 Thread Daniel Vetter
Hi Dave, More misc stuff all over: - best_encoder cleanup from Boris. - drm_simple_display_pipe helpers from Noralf. Looks really neat imo, and there's 2-3 in-flight drivers which look like they could/should use it. Anyway, with this we have now helpers and everything in place to write drive

Re: [Intel-gfx] [isg-gms] [RFC 3/6] drm/i915/vlv: Move fifo_size from intel_plane_wm_parameters to vlv_wm_state

2016-06-14 Thread Matt Roper
On Wed, Jun 08, 2016 at 05:22:41PM +0200, Chi Ding wrote: > From: Maarten Lankhorst > > This commit saves watermark for each plane in vlv_wm_state to prepare > for two-level watermark because we'll compute and save intermediate and > optimal watermark and fifo size for each plane. > > Signed-off

Re: [Intel-gfx] [RFC 4/6] drm/i915/vlv: Change to use intel_crtc_state instead of base CRTC object

2016-06-14 Thread Matt Roper
On Wed, Jun 08, 2016 at 05:22:42PM +0200, Chi Ding wrote: > From: Maarten Lankhorst > > This commit changs some functions to operate on intel_crtc_state rather > than the base CRTC objects in order to transit to atomic I'd add a little bit more justification to this message. The reason we want

Re: [Intel-gfx] [isg-gms] [RFC 5/6] drm/i915/vlv: Add optimal field in intel_crtc_wm_state

2016-06-14 Thread Matt Roper
On Wed, Jun 08, 2016 at 05:22:43PM +0200, Chi Ding wrote: > From: Maarten Lankhorst > This patch needs a commit message. Those of us actively working on watermarks right now understand the end goal for two-stage watermarks, but I don't think most other developers looking at this code (or bisect

Re: [Intel-gfx] [RFC 6/6] drm/i915/vlv: Add intermediate field in intel_crtc_wm_state and handlers for two-level watermark

2016-06-14 Thread Matt Roper
On Tue, Jun 14, 2016 at 07:40:54AM -0700, Ding, ChiX wrote: > Hi Maarten > Thanks for the reply. Please correct me if I'm wrong : > If the intermediate watermark is bigger than any of the old and the new, then > it's not really safe. > It could be bigger than the FIFO size. > > I did some tests

Re: [Intel-gfx] [PATCH v2] drm/i915/dmc: Step away from symbolic links

2016-06-14 Thread Vivi, Rodrigo
On Mon, 2016-05-23 at 10:57 +0200, Patrik Jakobsson wrote: > On Wed, May 18, 2016 at 01:24:12PM +0300, Mika Kuoppala wrote: > > Patrik Jakobsson writes: > > > > > [ text/plain ] > > > Load specific firmware versions for the DMC instead of using > > > symbolic > > > links. The currently recommende

Re: [Intel-gfx] [PATCH 3/3] drm/i915/psr: Do not activate PSR when vblank interrupts are enabled

2016-06-14 Thread Pandiyan, Dhinakaran
On Tue, 2016-06-14 at 00:09 +, Vivi, Rodrigo wrote: > On Wed, 2016-06-08 at 18:46 -0700, Dhinakaran Pandiyan wrote: > > PSR in CHV, unlike HSW, can get activated even if vblanks interrupts > > are > > enabled. But, the pipe is not expected to generate timings signals > > when PSR is active. Spe

Re: [Intel-gfx] [PATCH v11 0/9] Introduce the implementation of GVT context

2016-06-14 Thread Tian, Kevin
> From: Wang, Zhi A > Sent: Tuesday, June 14, 2016 9:21 PM > > This patchset introduces the implementation of GVT context. GVT > context is a special GEM context used by GVT-g. GVT-g uses it as the shadow > context.It doesn't have a drm client nor a PPGTT. And it requires a larger > ring buffer wi

[Intel-gfx] [4.6.2] Unclaimed register detected after reading register 0x65f10

2016-06-14 Thread Daniel J Blueman
Hi all, Booting 4.6.2 on a Dell XPS 15 9550, nouveau dynamically powers down the discrete GPU [1], tripping an interesting i915 warning [2]. Let me know if more information or debug is useful! Thanks, Daniel -- [1] # cat /sys/kernel/debug/vgaswitcheroo/switch 0:IGD:+:Pwr::00:02.0 1:DIS:

[Intel-gfx] ✓ Ro.CI.BAT: success for Cruft removal around drm_master

2016-06-14 Thread Patchwork
== Series Details == Series: Cruft removal around drm_master URL : https://patchwork.freedesktop.org/series/8700/ State : success == Summary == Series 8700v1 Cruft removal around drm_master http://patchwork.freedesktop.org/api/1.0/series/8700/revisions/1/mbox Test kms_flip: Subgroup b

Re: [Intel-gfx] [isg-gms] [RFC 3/6] drm/i915/vlv: Move fifo_size from intel_plane_wm_parameters to vlv_wm_state

2016-06-14 Thread Maarten Lankhorst
Op 14-06-16 om 23:52 schreef Matt Roper: > On Wed, Jun 08, 2016 at 05:22:41PM +0200, Chi Ding wrote: >> From: Maarten Lankhorst >> >> This commit saves watermark for each plane in vlv_wm_state to prepare >> for two-level watermark because we'll compute and save intermediate and >> optimal watermar

[Intel-gfx] ✗ Ro.CI.BAT: failure for drm/i915: Serialise presentation with imported dmabufs (rev2)

2016-06-14 Thread Patchwork
== Series Details == Series: drm/i915: Serialise presentation with imported dmabufs (rev2) URL : https://patchwork.freedesktop.org/series/8689/ State : failure == Summary == Series 8689v2 drm/i915: Serialise presentation with imported dmabufs http://patchwork.freedesktop.org/api/1.0/series/868

[Intel-gfx] [PATCH] Runtime: set the sub slice according to kernel pooled EU configure.

2016-06-14 Thread Yang Rong
If BXT pooled EU enable, the 3*6 EUs is split into 2 pooled, so change the sub slice to 2. For min no. of eu in pool, only affact fused down 2*6 BXT devices, because beignet don't support these devices now, add assert only. assert. This patch is based on kernel patch: https://patchwork.freedeskto

[Intel-gfx] [PATCH] intel: Export pooled EU and min no. of eus in a pool.

2016-06-14 Thread Yang Rong
Update kernel interface with new I915_GETPARAM ioctl entries for pooled EU and min no. of eus in a pool. Add a wrapping function for each parameter. Userspace drivers need these values when decide the thread count. This kernel enabled pooled eu by default for BXT and for fused down 2x6 parts it is