[Intel-gfx] ✓ Fi.CI.BAT: success for Add support for loadable OA configs

2017-07-30 Thread Patchwork
== Series Details == Series: Add support for loadable OA configs URL : https://patchwork.freedesktop.org/series/28054/ State : success == Summary == Series 28054v1 Add support for loadable OA configs https://patchwork.freedesktop.org/api/1.0/series/28054/revisions/1/mbox/ Test gem_exec_flush:

[Intel-gfx] ✗ Fi.CI.BAT: warning for Kernel PSR Fix-ups (rev2)

2017-07-30 Thread Patchwork
== Series Details == Series: Kernel PSR Fix-ups (rev2) URL : https://patchwork.freedesktop.org/series/27879/ State : warning == Summary == Series 27879v2 Kernel PSR Fix-ups https://patchwork.freedesktop.org/api/1.0/series/27879/revisions/2/mbox/ Test gem_exec_flush: Subgroup basic-bat

[Intel-gfx] ✓ Fi.CI.BAT: success for dma-buf/sync_file: Allow multiple sync_files to wrap a single dma-fence

2017-07-30 Thread Patchwork
== Series Details == Series: dma-buf/sync_file: Allow multiple sync_files to wrap a single dma-fence URL : https://patchwork.freedesktop.org/series/28064/ State : success == Summary == Series 28064v1 dma-buf/sync_file: Allow multiple sync_files to wrap a single dma-fence https://patchwork.fre

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: enable WaDisableDopClkGating for SKL GT4

2017-07-30 Thread Patchwork
== Series Details == Series: drm/i915: enable WaDisableDopClkGating for SKL GT4 URL : https://patchwork.freedesktop.org/series/28068/ State : success == Summary == Series 28068v1 drm/i915: enable WaDisableDopClkGating for SKL GT4 https://patchwork.freedesktop.org/api/1.0/series/28068/revisions

[Intel-gfx] Performance regression with debug logs spammed with lots of warnings/errors

2017-07-30 Thread Greg Stark
I updated my kernel to 4.11.0 and my laptop is now very slow and laggy. I'm not sure if the graphics driver are directly causing the slowdown or it's just systemd having trouble keeping up with the debug messages though (systemd is consuming 4% of cpu just dealing with messages which is impressivel

Re: [Intel-gfx] Performance regression with debug logs spammed with lots of warnings/errors

2017-07-30 Thread Greg Stark
On 30 July 2017 at 13:23, Greg Stark wrote: > [drm:i915_hotplug_work_func [i915]] running encoder hotplug functions > Jul 30 13:17:17 pixel kernel: [ 3221.929831] > [drm:i915_hotplug_work_func [i915]] Connector HDMI-A-1 (pin 7) > received hotplug event. > Jul 30 13:17:17 pixel kernel: [ 3221.9298

Re: [Intel-gfx] [PATCH v13 5/7] vfio: ABI for mdev display dma-buf operation

2017-07-30 Thread Zhang, Tina
> -Original Message- > From: intel-gvt-dev [mailto:intel-gvt-dev-boun...@lists.freedesktop.org] On > Behalf Of Gerd Hoffmann > Sent: Friday, July 28, 2017 4:27 PM > To: Zhang, Tina ; intel-gfx@lists.freedesktop.org; > intel- > gvt-...@lists.freedesktop.org; dri-de...@lists.freedesktop.or

Re: [Intel-gfx] [PATCH 5/8] drm/i915: Upscale scaler max scale for NV12

2017-07-30 Thread Srinivas, Vidya
> -Original Message- > From: Paauwe, Bob J > Sent: Saturday, July 29, 2017 1:55 AM > To: Srinivas, Vidya > Cc: intel-gfx@lists.freedesktop.org > Subject: Re: [Intel-gfx] [PATCH 5/8] drm/i915: Upscale scaler max scale for > NV12 > > On Mon, 24 Jul 2017 09:57:46 +0530 > Vidya Srinivas wr

[Intel-gfx] [PATCH 1/8] drm/i915: Implement .get_format_info() hook for CCS

2017-07-30 Thread Vidya Srinivas
From: Ville Syrjälä SKL+ display engine can scan out certain kinds of compressed surfaces produced by the render engine. This involved telling the display engine the location of the color control surfae (CCS) which describes which parts of the main surface are compressed and which are not. The lo

[Intel-gfx] [PATCH 6/8] drm/i915: Add NV12 as supported format for primary plane

2017-07-30 Thread Vidya Srinivas
From: Chandra Konduru This patch adds NV12 to list of supported formats for primary plane v2: Rebased (Chandra Konduru) v3: Rebased (me) v4: Review comments by Ville addressed Removed the skl_primary_formats_with_nv12 and added NV12 case in existing skl_primary_formats v5: Reb

[Intel-gfx] [PATCH 3/8] drm/i915: Set scaler mode for NV12

2017-07-30 Thread Vidya Srinivas
From: Chandra Konduru This patch sets appropriate scaler mode for NV12 format. In this mode, skylake scaler does either chroma-upsampling or chroma-upsampling and resolution scaling v2: Review comments from Ville addressed NV12 case to be checked first for setting the scaler v3:

[Intel-gfx] [PATCH 0/8] Adding NV12 support

2017-07-30 Thread Vidya Srinivas
This patch series is adding NV12 support for Broxton display after rebasing on latest drm-intel-nightly. Initial series of the patches can be found here: https://lists.freedesktop.org/archives/intel-gfx/2015-May/066786.html Feature has been currently tested with custom linux based test tool IGT te

[Intel-gfx] [PATCH 7/8] drm/i915: Add NV12 as supported format for sprite plane

2017-07-30 Thread Vidya Srinivas
From: Chandra Konduru This patch adds NV12 to list of supported formats for sprite plane. v2: Rebased (me) v3: Review comments by Ville addressed - Removed skl_plane_formats_with_nv12 and added NV12 case in existing skl_plane_formats - Added the 10bpc RGB formats v4: Ad

[Intel-gfx] [PATCH 4/8] drm/i915: Update format_is_yuv() to include NV12

2017-07-30 Thread Vidya Srinivas
From: Chandra Konduru This patch adds NV12 to format_is_yuv() function for sprite planes. v2: -Use intel_ prefix for format_is_yuv (Ville) v3: Rebased (me) v4: Rebased and addressed review comments from Clinton A Taylor. "static function in intel_sprite.c is not available to th

[Intel-gfx] [PATCH 8/8] drm/i915: Add NV12 support to intel_framebuffer_init

2017-07-30 Thread Vidya Srinivas
From: Chandra Konduru This patch adds NV12 as supported format to intel_framebuffer_init and performs various checks. v2: -Fix an issue in checks added (Chandra Konduru) v3: rebased (me) v4: Review comments by Ville addressed Added platform check for NV12 in intel_framebuffer_init

[Intel-gfx] [PATCH 2/8] SKL+ display engine can scan out certain kinds of compressed surfaces produced by the render engine. This involved telling the display engine the location of the color control

2017-07-30 Thread Vidya Srinivas
From: Ville Syrjälä Add the required stuff to validate the user provided AUX plane metadata and convert the user provided linear offset into something the hardware can consume. Due to hardware limitations we require that the main surface and the AUX surface (CCS) be part of the same bo. The hard

[Intel-gfx] [PATCH 5/8] drm/i915: Upscale scaler max scale for NV12

2017-07-30 Thread Vidya Srinivas
From: Chandra Konduru This patch updates scaler max limit support for NV12 v2: Rebased (me) v3: Rebased (me) v4: Missed the Tested-by/Reviewed-by in the previous series Adding the same to commit message in this version. v5: Addressed review comments from Ville and rebased - ca