Re: [Intel-gfx] [PATCH 3/3] Add egl_shader_runner to ease OpenGL ES 2.0 test case development

2010-10-20 Thread Shuang He

 Do you have any comment? :-) , or I'd try to commit them tomorrow

Thanks
--Shuang

On 2010-10-19 16:42, He, Shuang wrote:

---
  tests/CMakeLists.txt|3 +
  tests/gles2/CMakeLists.txt  |   22 ++
  tests/gles2/egl_shader_runner.c |  762 +++
  3 files changed, 787 insertions(+), 0 deletions(-)
  create mode 100644 tests/gles2/CMakeLists.txt
  create mode 100644 tests/gles2/egl_shader_runner.c

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 3d3a892..58f8070 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -13,6 +13,9 @@ add_subdirectory (spec)

  IF(OPENGL_egl_LIBRARY)
 add_subdirectory (egl)
+   IF(OPENGL_gles2_LIBRARY)
+   add_subdirectory (gles2)
+   ENDIF(OPENGL_gles2_LIBRARY)
  ENDIF(OPENGL_egl_LIBRARY)

  IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
diff --git a/tests/gles2/CMakeLists.txt b/tests/gles2/CMakeLists.txt
new file mode 100644
index 000..28c5bc7
--- /dev/null
+++ b/tests/gles2/CMakeLists.txt
@@ -0,0 +1,22 @@
+add_definitions ( -DSOURCE_DIR="${piglit_SOURCE_DIR}/" )
+
+include_directories(
+   ${OPENGL_INCLUDE_PATH}
+   ${piglit_SOURCE_DIR}/tests/util/egl
+)
+
+link_directories (
+   ${piglit_SOURCE_DIR}/tests/util/egl
+   ${piglit_SOURCE_DIR}/tests/util/eglut
+)
+
+link_libraries (
+   ${OPENGLES_gles2_LIBRARY}
+   ${OPENGL_egl_LIBRARY}
+   pigliteglut
+   pigliteglutil
+)
+
+
+add_executable (egl_shader_runner egl_shader_runner.c ../util/shader-load.c)
+target_link_libraries(egl_shader_runner X11)
diff --git a/tests/gles2/egl_shader_runner.c b/tests/gles2/egl_shader_runner.c
new file mode 100644
index 000..9a42d56
--- /dev/null
+++ b/tests/gles2/egl_shader_runner.c
@@ -0,0 +1,762 @@
+/*
+ * Copyright © 2010 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#define _GNU_SOURCE
+#if defined(_MSC_VER)
+#define bool BOOL
+#define true 1
+#define false 0
+#else
+#include
+#endif
+#include
+#include
+#include "piglit-egl-util.h"
+#include
+
+int piglit_width = 250, piglit_height = 250;
+
+static float gles_version = 0.0;
+static float essl_version = 0.0;
+
+const char *path = NULL;
+const char *test_start = NULL;
+
+GLuint vertex_shaders[256];
+unsigned num_vertex_shaders = 0;
+GLuint fragment_shaders[256];
+unsigned num_fragment_shaders = 0;
+
+/**
+ * List of strings loaded from files
+ *
+ * Some test script sections, such as "[vertex shader file]", can supply shader
+ * source code from multiple disk files.  This array stores those strings.
+ */
+
+char *shader_strings[256];
+GLsizei shader_string_sizes[256];
+unsigned num_shader_strings = 0;
+GLuint prog;
+
+enum states {
+   none = 0,
+   requirements,
+   vertex_shader,
+   vertex_shader_file,
+   vertex_program,
+   fragment_shader,
+   fragment_shader_file,
+   fragment_program,
+   test,
+};
+
+
+enum comparison {
+   equal = 0,
+   not_equal,
+   less,
+   greater_equal,
+   greater,
+   less_equal
+};
+
+
+void
+compile_glsl(GLenum target, bool release_text)
+{
+   GLuint shader = glCreateShader(target);
+   GLint ok;
+   unsigned i;
+
+   glShaderSource(shader, num_shader_strings,
+  (const GLchar **) shader_strings, shader_string_sizes);
+
+   glCompileShader(shader);
+
+   glGetShaderiv(shader, GL_COMPILE_STATUS,&ok);
+
+   if (!ok) {
+   GLchar *info;
+   GLint size;
+
+   glGetShaderiv(shader, GL_INFO_LOG_LENGTH,&size);
+   info = malloc(size);
+
+   glGetShaderInfoLog(shader, size, NULL, info);
+
+   fprintf(stderr, "Failed to compile %s: %s\n",
+   target == GL_FRAGMENT_SHADER ? "FS" : "VS",
+   info);
+
+   free(info);
+   piglit_report_result(PIGLIT_

Re: [Intel-gfx] Mesa (master): i965: Don't write mrf assignment for pointsize output

2010-11-25 Thread Shuang He

For you information:
This commit fixes 17 OpenGL ES 2.0 conformance cases on i965
And also another 1 commit from Ken also fixes 1 case
So We have 18 more passes on OpenGL ES 2.0 conformance on i965 these two 
days


Thanks
--Shuang

On 2010-11-25 0:29, Kristian Høgsberg wrote:

Module: Mesa
Branch: master
Commit: a889f9ee5cccee031c1090a6ef92cba894b1d77c
URL:
http://cgit.freedesktop.org/mesa/mesa/commit/?id=a889f9ee5cccee031c1090a6ef92cba894b1d77c

Author: Kristian Høgsberg
Date:   Wed Nov 24 10:12:20 2010 -0500

i965: Don't write mrf assignment for pointsize output

https://bugs.freedesktop.org/show_bug.cgi?id=31894

---

  src/mesa/drivers/dri/i965/brw_vs_emit.c |3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_vs_emit.c 
b/src/mesa/drivers/dri/i965/brw_vs_emit.c
index a13c3ca..89e4caf 100644
--- a/src/mesa/drivers/dri/i965/brw_vs_emit.c
+++ b/src/mesa/drivers/dri/i965/brw_vs_emit.c
@@ -281,7 +281,6 @@ static void brw_vs_alloc_regs( struct brw_vs_compile *c )
 else if (i == VERT_RESULT_PSIZ) {
c->regs[PROGRAM_OUTPUT][i] = brw_vec8_grf(reg, 0);
reg++;
-   mrf++;  /* just a placeholder?  XXX fix later stages&  
remove this */
 }
 else {
/* Two restrictions on our compute-to-MRF here.  The
@@ -1603,6 +1602,8 @@ static void emit_vertex_write( struct brw_vs_compile *c)
 break;
if (!(c->prog_data.outputs_written&  BITFIELD64_BIT(i)))
 continue;
+  if (i == VERT_RESULT_PSIZ)
+continue;

if (i>= VERT_RESULT_TEX0&&
c->regs[PROGRAM_OUTPUT][i].file == BRW_GENERAL_REGISTER_FILE) {

___
mesa-commit mailing list
mesa-com...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-commit


___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] pipe control notify removed?

2010-12-14 Thread Shuang He

Yeah, I also met this issue, and bisection point to this as well :)

32402  	19:05:15 
cri 	hig 	ch...@chris-wilson.co.uk 	shuang...@intel.com 	NEW 	

[piketon -next bisected] Many tests make GPU hang and reset


Thanks
--Shuang

On 2010-12-15 11:14, Zhenyu Wang wrote:

Chris, just notice you removed pipe control notify entirely on -next,
that seems wrong to me. In Ironlake time, we've seen interrupt stall issue
with user interrupt, and be warned user interrupt is deprecated, so we moved
on to use pipe control notify, although there's a workaround later covered
that's required on Ironlake. But it's stable finally. And for sandybridge,
there's no such workaround needed.

btw, could you also send mails for changes on -next? It'll be easy to be
notified.



___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] [WIP] i965: Use up to 80 WM threads on GT2.

2011-03-28 Thread Shuang He

On 2011/3/29 6:22, Ian Romanick wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 03/28/2011 10:55 AM, Eric Anholt wrote:


Here's an idea for an SNB performance improvement from the specs.  It
says that on GT2 you should be able to use 80 threads if "WIZ Hashing
Disable in GT_MODE register enabled".  On my system (supposedly GT2),
that bit (bit 6 of 0x20d0) is unset.  In testing, with intel_reg_write
0x20d0 0x00400040 (it only successfully took once, I suspect due to
FORCEWAKE, which also means that I can't necessarily trust that the
bit was unset originally), I got only hangs from 3D.

So, we're currently using too many threads in some cases?  Could this be
related to bug #35730?  In that case the failure seems to be limited to
SugarBay.  I believe that's GT1, but I can never get the code names for
these chips straight.


The system environment description section in bug #35730 already mention 
it's rev09 GT1


Thanks
--Shuang


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk2RCisACgkQX1gOwKyEAw8nRgCgnC1HMyfVwx5MLiaVF4mVzprQ
oD4An2DMFJdXfYKOyvehR7x6qAQnYix6
=4m/t
-END PGP SIGNATURE-
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/dp: add DPCD definitions from DP 1.1 and 1.2a

2015-03-02 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5849
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -9  278/278  269/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW -1  387/387  386/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(3)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(3)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(3)  FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(2)PASS(4)  CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  CRASH(2)PASS(3)  CRASH(2)
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(2)  
DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(3)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(6)  FAIL(2)
*PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  CRASH(1)PASS(3)   
   FAIL(1)CRASH(1)
*SNB  igt_gem_fenced_exec_thrash_no-spare-fences-interruptible  PASS(1) 
 DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_blt  PASS(3)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(7)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Extract context switch skip and add pd load logic

2015-03-02 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5853
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  278/278  278/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW -1  387/387  386/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*HSW  igt_gem_storedw_loop_vebox  PASS(1)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(8)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Do both mt and gen6 style forcewake reset on ivb probe

2015-03-02 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5861
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -4  278/278  274/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(3)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(3)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(3)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(7)  FAIL(1)PASS(1)
*SNB  igt_gem_flink_bad-open  PASS(4)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(9)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915/chv: Add CHV HW status to SSEU status

2015-03-02 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5863
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -7  278/278  271/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW -2  387/387  385/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(2)PASS(6)  CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  CRASH(2)PASS(5)  
CRASH(1)PASS(1)
*PNV  igt_gem_userptr_blits_create-destroy-sync  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_userptr_blits_minor-sync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(5)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(7)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(1)CRASH(1)PASS(3)  CRASH(1)PASS(1)
*SNB  igt_gem_fence_thrash_bo-write-verify-y  PASS(3)  
DMESG_WARN(1)PASS(1)
*HSW  igt_gem_bad_length  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_blt  PASS(3)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(10)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 7/7] drm/i915: Enable PSR by default.

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5865
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  278/278  273/278
ILK -8  308/308  300/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW -1  387/387  386/387
BDW -2  316/316  314/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(3)PASS(6)  CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  CRASH(2)PASS(5)  CRASH(2)
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(4)  
DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(5)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(8)  FAIL(2)
*ILK  igt_gem_bad_length  PASS(2)  DMESG_WARN(1)PASS(1)
*ILK  igt_gem_exec_params_no-blt  PASS(2)  DMESG_WARN(1)PASS(1)
*ILK  igt_gem_exec_params_sol-reset-not-gen7  PASS(2)  
DMESG_WARN(1)PASS(1)
*ILK  igt_gem_reloc_overflow_source-offset-negative-reloc-cpu  PASS(2)  
DMESG_WARN(2)
*ILK  igt_gem_reloc_overflow_source-offset-negative-reloc-gtt  PASS(2)  
DMESG_WARN(1)PASS(1)
*ILK  igt_gem_seqno_wrap  PASS(2)  DMESG_WARN(1)PASS(1)
 ILK  igt_gem_unfence_active_buffers  DMESG_WARN(1)PASS(2)  
DMESG_WARN(1)PASS(1)
*ILK  igt_kms_addfb_small-bo  PASS(2)  DMESG_WARN(1)PASS(1)
*SNB  igt_gem_flink_bad-open  PASS(4)  DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_blt  PASS(3)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(12)  TIMEOUT(1)PASS(1)
*BDW  igt_gem_ringfill_blitter-interruptible  PASS(2)  
NO_RESULT(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: Make for_each_sprite() take dev_priv as argument

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5866
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -9  278/278  269/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(4)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(4)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(4)  FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(3)PASS(6)  CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  CRASH(2)PASS(5)  CRASH(2)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(5)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(8)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(1)PASS(3)  CRASH(1)PASS(1)
*PNV  igt_gem_partial_pwrite_pread_reads  PASS(4)  CRASH(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(12)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] acpi/video: Propagate the error code for acpi_video_register

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5867
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -4  278/278  274/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(2)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(4)  
DMESG_WARN(2)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(6)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(9)  FAIL(2)
*SNB  igt_gem_flink_bad-open  PASS(4)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(12)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: gen4: work around hang during hibernation

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5868
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  278/278  273/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(4)PASS(7)  
CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(3)PASS(5)   
   CRASH(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(7)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(3)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(2)PASS(3)  CRASH(2)
*SNB  igt_gem_flink_basic  PASS(2)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(12)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915/skl: Only use the 800mV+2bB HDMI translation entry

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5870
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  278/278  273/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB -1  380/380  379/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(4)PASS(7)  CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(3)PASS(5)   
   CRASH(2)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(7)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(3)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(2)PASS(3)  CRASH(2)
 IVB  igt_gem_storedw_batches_loop_normal  DMESG_WARN(1)PASS(2)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(13)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Fix big cursors on snb

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5871
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  278/278  273/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(5)  FAIL(1)NRUN(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(5)  
FAIL(1)NO_RESULT(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(5)  FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(5)PASS(7)  CRASH(2)
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(4)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(15)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: Fix chv cdclk support

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5872
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -7  278/278  271/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(5)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(5)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(5)  
FAIL(1)NO_RESULT(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(5)NRUN(1)PASS(7)  
CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(4)PASS(6)   
   CRASH(1)PASS(1)
*PNV  igt_gen3_render_linear_blits  FAIL(3)DMESG_WARN(1)PASS(7)  
FAIL(1)NO_RESULT(1)
*PNV  igt_gen3_render_mixed_blits  FAIL(5)PASS(9)  FAIL(1)NO_RESULT(1)
*SNB  igt_gem_fence_thrash_bo-write-verify-y  PASS(5)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(16)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/skl: Restore the DDI translation tables when enabling PW1

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5873
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  278/278  273/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB -1  380/380  379/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(5)NRUN(1)PASS(7)  CRASH(1)NRUN(1)
*PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(4)PASS(6)   
   CRASH(1)NRUN(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)DMESG_WARN(1)PASS(7)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(5)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(3)PASS(4)  CRASH(2)
*SNB  igt_gem_flink_bad-flink  PASS(2)  DMESG_WARN(1)PASS(1)
 IVB  igt_gem_storedw_batches_loop_normal  DMESG_WARN(1)PASS(2)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(17)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Export total subslice and EU counts

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5874
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -4  278/278  274/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(5)NRUN(1)PASS(7)  CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(4)PASS(6)   
   CRASH(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(6)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(4)PASS(4)  CRASH(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(18)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Changes for calculating dsi clk for CHT

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5875
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  278/278  273/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW -1  387/387  386/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(5)NRUN(1)PASS(7)  CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(4)PASS(6)   
   CRASH(2)
 PNV  igt_gen3_render_linear_blits  FAIL(4)NRUN(1)DMESG_WARN(1)PASS(7)  
FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(7)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(4)PASS(4)  FAIL(1)CRASH(1)
*SNB  igt_gem_fence_thrash_bo-write-verify-x  PASS(2)  
DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_vebox  PASS(2)  DMESG_WARN(2)
*BDW  igt_gem_gtt_hog  PASS(18)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 23/23] drm/i915: Remove usage of encoder->new_crtc from clock computations

2015-03-03 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5876
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -8  278/278  270/278
ILK -5  307/307  302/307
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  NRUN(1)PASS(6)  
FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(7)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  NO_RESULT(1)PASS(6)  
FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(7)NRUN(1)PASS(7)  CRASH(2)
 PNV  igt_gem_userptr_blits_minor-sync-interruptible  DMESG_WARN(1)PASS(2)  
DMESG_WARN(2)
 PNV  igt_gen3_render_linear_blits  FAIL(5)NRUN(1)DMESG_WARN(1)PASS(9)  
FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(8)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(4)PASS(6)  CRASH(2)
*ILK  igt_drv_suspend_debugfs-reader  PASS(2)  NO_RESULT(1)
*ILK  igt_drv_suspend_fence-restore-tiled2untiled  PASS(2)  NO_RESULT(1)
*ILK  igt_drv_suspend_fence-restore-untiled  PASS(2)  NO_RESULT(1)
*ILK  igt_drv_suspend_forcewake  PASS(2)  NO_RESULT(1)
*ILK  igt_gem_workarounds_suspend-resume  PASS(2)  NO_RESULT(1)
*SNB  igt_gem_fenced_exec_thrash_no-spare-fences-interruptible  PASS(2) 
 DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(19)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 8/8] drm/i915/skl: Take 90/270 rotation into account in watermark calculations

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5877
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  278/278  276/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB -1  380/380  379/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gen3_render_linear_blits  FAIL(5)NRUN(1)DMESG_WARN(1)PASS(9)  
FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(8)PASS(9)  FAIL(2)
*SNB  igt_gem_fence_thrash_bo-write-verify-y  PASS(5)  
DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_secure-dispatch  PASS(3)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(19)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Setup all page directories for gen8

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5878
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -9  278/278  269/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  NRUN(1)PASS(6)  
FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(7)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  NO_RESULT(1)PASS(6)  
FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(7)NRUN(1)PASS(8)  CRASH(2)
 PNV  igt_gem_userptr_blits_coherency-unsync  NO_RESULT(1)CRASH(6)PASS(7)   
   CRASH(2)
*PNV  
igt_gem_userptr_blits_forked-unsync-swapping-multifd-mempressure-interruptible  
PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_userptr_blits_input-checking  PASS(2)  NRUN(1)PASS(1)
 PNV  igt_gem_userptr_blits_minor-unsync-interruptible  
DMESG_WARN(1)PASS(5)  DMESG_WARN(1)PASS(1)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(4)PASS(6)  CRASH(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(19)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Fix modeset state confusion in the load detect code

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5879
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -6  278/278  272/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB -1  380/380  379/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(8)NRUN(1)PASS(8)  CRASH(1)NRUN(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  
FAIL(1)NO_RESULT(1)CRASH(6)PASS(7)  CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_minor-unsync-interruptible  
DMESG_WARN(1)PASS(5)  DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(6)NRUN(1)DMESG_WARN(1)PASS(9)  
FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(9)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(4)PASS(7)  CRASH(2)
*SNB  igt_gem_fence_thrash_bo-write-verify-y  PASS(5)  
DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_secure-dispatch  PASS(3)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(19)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Add module param to test the load detect code

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5880
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  278/278  276/278
ILK  308/308  308/308
SNB  284/284  284/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(8)NRUN(1)PASS(8)  CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  
FAIL(1)NO_RESULT(1)CRASH(6)PASS(7)  CRASH(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(19)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: Don't assume primary & cursor are always on for wm calculation

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5883
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -8  278/278  270/278
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  
NO_RESULT(1)CRASH(8)NRUN(1)PASS(8)  CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  
FAIL(1)NO_RESULT(1)CRASH(6)PASS(7)  CRASH(1)PASS(1)
*PNV  igt_gem_userptr_blits_forbidden-operations  PASS(2)  
NRUN(1)PASS(1)
*PNV  igt_gem_userptr_blits_forked-access  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_userptr_blits_forked-sync-interruptible  PASS(2)  
NRUN(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(6)NRUN(1)DMESG_WARN(1)PASS(9)  
FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(10)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(5)PASS(7)  CRASH(2)
*SNB  igt_gem_flink_bad-flink  PASS(3)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(19)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Setup all page directories for gen8

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5884
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -6  278/278  272/278
ILK -1  308/308  307/308
SNB -1  284/284  283/284
IVB  380/380  380/380
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  NRUN(1)PASS(7)  
FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(8)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  NO_RESULT(1)PASS(7)  
FAIL(1)PASS(1)
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(5)  
DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_mixed_blits  FAIL(10)PASS(9)  FAIL(2)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(2)CRASH(5)PASS(7)  CRASH(2)
 ILK  igt_gem_unfence_active_buffers  DMESG_WARN(1)PASS(3)  
DMESG_WARN(1)PASS(1)
*SNB  igt_gem_exec_params_sol-reset-not-gen7  PASS(2)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(20)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Make WAIT_IOCTL negative timeouts be indefinite again

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5886
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  280/280  278/280
ILK  308/308  308/308
SNB -1  328/328  327/328
IVB  379/379  379/379
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gen3_render_mixed_blits  FAIL(1)PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gen3_render_tiledx_blits  FAIL(1)PASS(4)  CRASH(1)PASS(1)
 SNB  igt_kms_pipe_crc_basic_read-crc-pipe-A-frame-sequence  
DMESG_WARN(1)PASS(4)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(3)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Don't clobber plane state on internal disables

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5887
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  280/280  280/280
ILK  308/308  308/308
SNB -1  328/328  327/328
IVB -1  379/379  378/379
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 SNB  igt_kms_rotation_crc_sprite-rotation  DMESG_WARN(1)PASS(4)  
DMESG_WARN(2)
*IVB  igt_kms_rotation_crc_sprite-rotation  PASS(2)  DMESG_WARN(2)
*BDW  igt_gem_gtt_hog  PASS(3)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Remove wait for for punit to updates freq.

2015-03-04 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5889
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  280/280  279/280
ILK  308/308  308/308
SNB  328/328  328/328
IVB  379/379  379/379
BYT  294/294  294/294
HSW -1  387/387  386/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(2)  
DMESG_WARN(2)
*HSW  igt_gem_storedw_loop_bsd  PASS(2)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(4)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Update PM interrupts before updating the freq

2015-03-05 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5890
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  280/280  279/280
ILK -1  308/308  307/308
SNB -18  328/328  310/328
IVB  379/379  379/379
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-unsync-normal  DMESG_WARN(1)PASS(5)  
DMESG_WARN(1)PASS(1)
*ILK  igt_gem_unfence_active_buffers  PASS(2)  DMESG_WARN(1)PASS(1)
*SNB  igt_kms_rotation_crc_primary-rotation  NSPT(2)DMESG_WARN(1)PASS(3)
  DMESG_FAIL(1)NSPT(1)
 SNB  igt_kms_rotation_crc_sprite-rotation  NSPT(2)DMESG_WARN(1)PASS(4) 
 NSPT(2)
 SNB  igt_pm_rpm_cursor  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_cursor-dpms  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_dpms-mode-unset-non-lpsp  NSPT(2)DMESG_WARN(1)PASS(3)  
NSPT(2)
 SNB  igt_pm_rpm_dpms-non-lpsp  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_drm-resources-equal  NSPT(2)DMESG_WARN(1)PASS(3)  
NSPT(2)
 SNB  igt_pm_rpm_fences  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_fences-dpms  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-execbuf  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-mmap-cpu  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-mmap-gtt  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-pread  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_i2c  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_modeset-non-lpsp  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_modeset-non-lpsp-stress-no-wait  
NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_pci-d3-state  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_rte  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
*BDW  igt_gem_gtt_hog  PASS(6)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/skl: Read sink supported rates from edp panel

2015-03-05 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5892
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  280/280  280/280
ILK  308/308  308/308
SNB -21  328/328  307/328
IVB  379/379  379/379
BYT  294/294  294/294
HSW  387/387  387/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 SNB  igt_kms_cursor_crc_cursor-size-change  NSPT(1)DMESG_WARN(1)PASS(3)
  NSPT(2)
 SNB  igt_kms_mmio_vs_cs_flip_setcrtc_vs_cs_flip  
NSPT(1)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_kms_mmio_vs_cs_flip_setplane_vs_cs_flip  
NSPT(1)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_kms_rotation_crc_primary-rotation  NSPT(2)DMESG_WARN(1)PASS(3)
  NSPT(2)
 SNB  igt_kms_rotation_crc_sprite-rotation  NSPT(2)DMESG_WARN(1)PASS(4) 
 NSPT(2)
 SNB  igt_pm_rpm_cursor  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_cursor-dpms  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_dpms-mode-unset-non-lpsp  NSPT(2)DMESG_WARN(1)PASS(3)  
NSPT(2)
 SNB  igt_pm_rpm_dpms-non-lpsp  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_drm-resources-equal  NSPT(2)DMESG_WARN(1)PASS(3)  
NSPT(2)
 SNB  igt_pm_rpm_fences  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_fences-dpms  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-execbuf  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-mmap-cpu  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-mmap-gtt  NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-pread  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_i2c  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_modeset-non-lpsp  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_modeset-non-lpsp-stress-no-wait  
NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_pci-d3-state  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_rte  NSPT(2)DMESG_WARN(1)PASS(1)  NSPT(2)
*BDW  igt_gem_gtt_hog  PASS(6)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] checkpatch: spell check reudce

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5903
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  275/275  273/275
ILK  307/307  307/307
SNB  284/284  284/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW -1  314/314  313/314
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gen3_render_tiledx_blits  FAIL(1)PASS(3)  FAIL(2)
 PNV  igt_gen3_render_tiledy_blits  FAIL(1)PASS(1)  FAIL(2)
*BDW  igt_gem_gtt_hog  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 7/7] drm/i915/skl: Take 90/270 rotation into account in watermark calculations

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5896
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  275/275  275/275
ILK  307/307  307/307
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW -1  314/314  313/314
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*SNB  igt_gem_flink_bad-open  PASS(1)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 7/7] drm/i915: Deminish contribution of wait-boosting from clients

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5906
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -6  275/275  269/275
ILK  307/307  307/307
SNB  284/284  284/284
IVB  375/375  375/375
BYT -92  294/294  202/294
HSW -2  385/385  383/385
BDW -1  314/314  313/314
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(2)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(2)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(2)  FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_minor-normal-sync  DMESG_WARN(2)PASS(1)  
DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_tiledx_blits  FAIL(1)PASS(4)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_tiledy_blits  FAIL(1)PASS(2)  FAIL(1)PASS(1)
*BYT  igt_drm_read_empty-block  PASS(2)  DMESG_WARN(1)
*BYT  igt_drm_vma_limiter  PASS(2)  DMESG_WARN(1)
*BYT  igt_drm_vma_limiter_cpu  PASS(2)  DMESG_WARN(1)
*BYT  igt_drm_vma_limiter_gtt  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_ctx_basic  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_double_irq_loop  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_dummy_reloc_loop_blt  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_dummy_reloc_loop_bsd  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_dummy_reloc_loop_mixed  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_dummy_reloc_loop_mixed_multi_fd  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fd_exhaustion  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fenced_exec_thrash_2-spare-fences  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fenced_exec_thrash_no-spare-fences  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fenced_exec_thrash_no-spare-fences-interruptible  PASS(2) 
 DMESG_WARN(1)
*BYT  igt_gem_fenced_exec_thrash_too-many-fences  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fence_thrash_bo-copy  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fence_thrash_bo-write-verify-none  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fence_thrash_bo-write-verify-x  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_fence_thrash_bo-write-verify-y  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_flink_race_flink_close  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_gtt_speed  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_largeobject  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_copy  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_fault-concurrent  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_short  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_write  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_write-gtt  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_write-gtt-no-prefault  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_gtt_write-no-prefault  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_mmap_offset_exhaustion  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_persistent_relocs_forked  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_persistent_relocs_forked-faulting-reloc  PASS(2)  
DMESG_WARN(1)
*BYT  igt_gem_persistent_relocs_forked-interruptible  PASS(2)  
DMESG_WARN(1)
*BYT  igt_gem_persistent_relocs_forked-interruptible-faulting-reloc  
PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pread_display  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pread_normal  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pread_snoop  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pread_uncached  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pwrite_display  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pwrite_normal  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pwrite_snoop  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_pwrite_uncached  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_reg_read  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_reloc_vs_gpu_forked-faulting-reloc-thrashing  PASS(2)  
DMESG_WARN(1)
*BYT  igt_gem_reloc_vs_gpu_forked-interruptible-faulting-reloc-thrash-inactive  
PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_reloc_vs_gpu_forked-interruptible-faulting-reloc-thrashing  
PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_set_tiling_vs_gtt  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_threaded_access_tiled  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_tiled_partial_pwrite_pread_reads  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_tiled_partial_pwrite_pread_writes  PASS(2)  DMESG_WARN(1)
*BYT  igt_gem_tiled_partial_pwrite_pread_writes-after-reads  PASS(2)  
DME

Re: [Intel-gfx] [PATCH 11/11] drm/i915/skl: Enable the RPS interrupts programming

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5902
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  280/280  279/280
ILK  308/308  308/308
SNB -21  328/328  307/328
IVB  379/379  379/379
BYT  294/294  294/294
HSW -2  387/387  385/387
BDW -1  316/316  315/316
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-unsync-normal  DMESG_WARN(1)PASS(6)  
DMESG_WARN(1)PASS(1)
 SNB  igt_kms_cursor_crc_cursor-size-change  NSPT(2)DMESG_WARN(1)PASS(3)
  NSPT(2)
 SNB  igt_kms_mmio_vs_cs_flip_setcrtc_vs_cs_flip  
NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_kms_mmio_vs_cs_flip_setplane_vs_cs_flip  
NSPT(2)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_kms_rotation_crc_primary-rotation  NSPT(3)DMESG_WARN(1)PASS(3)
  NSPT(2)
 SNB  igt_kms_rotation_crc_sprite-rotation  NSPT(3)DMESG_WARN(1)PASS(4) 
 NSPT(2)
 SNB  igt_pm_rpm_cursor  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_cursor-dpms  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_dpms-mode-unset-non-lpsp  NSPT(3)DMESG_WARN(1)PASS(3)  
NSPT(2)
 SNB  igt_pm_rpm_dpms-non-lpsp  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_drm-resources-equal  NSPT(3)DMESG_WARN(1)PASS(3)  
NSPT(2)
 SNB  igt_pm_rpm_fences  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_fences-dpms  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-execbuf  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-mmap-cpu  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-mmap-gtt  NSPT(3)DMESG_WARN(1)PASS(3)  NSPT(2)
 SNB  igt_pm_rpm_gem-pread  NSPT(3)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_i2c  NSPT(3)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_modeset-non-lpsp  NSPT(3)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_modeset-non-lpsp-stress-no-wait  
NSPT(3)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_pci-d3-state  NSPT(3)DMESG_WARN(1)PASS(1)  NSPT(2)
 SNB  igt_pm_rpm_rte  NSPT(3)DMESG_WARN(1)PASS(1)  NSPT(2)
*HSW  igt_gem_seqno_wrap  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_blt  PASS(2)  DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(7)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: use in_interrupt() not in_irq() to check context

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5907
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -4  275/275  271/275
ILK  307/307  307/307
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW -1  385/385  384/385
BDW -1  314/314  313/314
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(3)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(3)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(3)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_tiledx_blits  FAIL(1)PASS(5)  FAIL(1)PASS(1)
*SNB  igt_gem_fence_thrash_bo-write-verify-none  PASS(2)  
DMESG_WARN(1)PASS(1)
*HSW  igt_pm_rpm_reg-read-ioctl  PASS(2)  DMESG_FAIL(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(4)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 6/6] drm/i915/skl: Restore the DDI translation tables when enabling PW1

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5908
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -13  275/275  262/275
ILK  307/307  307/307
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW -1  314/314  313/314
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_exec_params_DR1-dirt  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_exec_params_DR4-dirt  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_exec_params_no-bsd  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_exec_params_secure-non-master  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_exec_params_secure-non-root  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_fenced_exec_thrash_2-spare-fences  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_fenced_exec_thrash_no-spare-fences-busy-interruptible  
PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-copy  PASS(2)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(4)  NRUN(1)PASS(1)
*PNV  igt_gem_flink_bad-flink  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_flink_flink-lifetime  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_flink_race_flink_close  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_gtt_cpu_tlb  PASS(2)  NRUN(1)PASS(1)
*SNB  igt_gem_exec_params_rel-constants-invalid-rel-gen5  PASS(2)  
DMESG_WARN(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(5)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/skl: port A fuse straps don't work on early SKL steppings

2015-03-06 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5909
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -5  275/275  270/275
ILK  307/307  307/307
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW -3  314/314  311/314
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gen3_render_tiledx_blits  FAIL(1)PASS(6)  FAIL(1)NRUN(1)
 PNV  igt_gen3_render_tiledy_blits  FAIL(1)PASS(3)  FAIL(1)PASS(1)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  
FAIL(1)CRASH(1)PASS(1)  CRASH(1)PASS(1)
*PNV  igt_gem_partial_pwrite_pread_reads  PASS(2)  NRUN(1)PASS(1)
*PNV  igt_gem_userptr_blits_forked-unsync-multifd-mempressure-normal  
PASS(2)  NRUN(1)
*SNB  igt_gem_fence_thrash_bo-write-verify-x  PASS(2)  
DMESG_WARN(1)PASS(1)
*BDW  igt_drv_debugfs_reader  PASS(4)  DMESG_WARN(1)PASS(1)
*BDW  igt_drv_hangman_error-state-sysfs-entry  PASS(4)  
TIMEOUT(1)PASS(1)
*BDW  igt_gem_gtt_hog  PASS(6)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 5/5] drm/i915: Don't assume primary & cursor are always on for wm calculation (v3)

2015-03-08 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5912
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB -1  375/375  374/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*IVB  igt_gem_userptr_blits_minor-normal-sync  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Ignore pipe B active state when enabling pipe C

2015-03-09 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5915
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  282/282  281/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB -2  375/375  373/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-normal  PASS(2)  
DMESG_WARN(1)PASS(1)
*IVB  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(2)
*IVB  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  TIMEOUT(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 6/6] drm/i915: Include active flag when describing objects in debugfs

2015-03-09 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5916
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  282/282  280/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB -2  375/375  373/375
BYT -2  294/294  292/294
HSW -3  385/385  382/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(1)PASS(1)
*PNV  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  
TIMEOUT(1)PASS(1)
*IVB  igt_gem_flink_race_flink_close  PASS(2)  FAIL(2)
*IVB  igt_prime_self_import_reimport-vs-gem_close-race  PASS(2)  FAIL(2)
*BYT  igt_gem_flink_race_flink_close  PASS(2)  FAIL(2)
*BYT  igt_prime_self_import_reimport-vs-gem_close-race  PASS(2)  FAIL(2)
*HSW  igt_gem_flink_race_flink_close  PASS(2)  FAIL(2)
*HSW  igt_gem_storedw_loop_bsd  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_prime_self_import_reimport-vs-gem_close-race  PASS(2)  FAIL(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm: Only warn about an invalid EDID block prior to rejection

2015-03-09 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5917
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB -1  375/375  374/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*IVB  igt_gem_userptr_blits_minor-normal-sync  PASS(3)  DMESG_WARN(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Exit early from psr_status if PSR is not supported by the device

2015-03-09 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5918
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW -1  385/385  384/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*HSW  igt_gem_storedw_loop_blt  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 3/3] drm/i915: Don't assume primary & cursor are always on for wm calculation (v3)

2015-03-09 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5919
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW -1  385/385  384/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*HSW  igt_gem_storedw_batches_loop_normal  PASS(4)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: Export total subslice and EU counts

2015-03-10 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5922
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Make sure we invalidate frontbuffer on fbcon.

2015-03-10 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5923
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 9/9] drm/i915: Don't re-enable an explicitly disabled primary plane due to sprite coverage changes

2015-03-10 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5924
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  282/282  282/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Simplify the way BC bifurcation state consistency is kept

2015-03-10 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5925
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  282/282  280/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-normal-sync  DMESG_WARN(2)PASS(3)  
DMESG_WARN(2)
*PNV  igt_gem_userptr_blits_minor-unsync-normal  PASS(4)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Optimistically spin for the request completion

2015-03-10 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5928
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  282/282  281/282
ILK  308/308  308/308
SNB  307/307  307/307
IVB  375/375  375/375
BYT  294/294  294/294
HSW  385/385  385/385
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-normal  PASS(4)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Add polish to VLV WM shift+mask operations

2015-03-11 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5926
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -3  281/281  278/281
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB -1  375/375  374/375
BYT  294/294  294/294
HSW  384/384  384/384
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gen3_render_mixed_blits  PASS(1)  FAIL(2)
 PNV  igt_gen3_render_tiledx_blits  FAIL(1)PASS(1)  FAIL(1)
 PNV  igt_gen3_render_tiledy_blits  FAIL(1)PASS(1)  FAIL(1)
*SNB  igt_gem_flink_bad-flink  PASS(1)  DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_normal  PASS(1)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: Add ULL postfix to VGT_MAGIC constant

2015-03-11 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5931
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -7  281/281  274/281
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW -2  384/384  382/384
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(2)PASS(2)  CRASH(2)
*PNV  igt_gem_userptr_blits_coherency-unsync  CRASH(1)PASS(2)  
CRASH(1)NRUN(1)
 PNV  igt_gen3_render_linear_blits  FAIL(1)PASS(1)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(1)PASS(1)  FAIL(2)
 PNV  igt_gen3_render_tiledx_blits  FAIL(2)PASS(1)  FAIL(2)
 PNV  igt_gen3_render_tiledy_blits  FAIL(2)PASS(1)  FAIL(2)
 PNV  igt_gem_tiled_pread_pwrite  FAIL(1)PASS(1)  FAIL(1)PASS(1)
*SNB  igt_gem_largeobject  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  
TIMEOUT(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Simplify the way BC bifurcation state consistency is kept

2015-03-11 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5933
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -3  281/281  278/281
ILK  308/308  308/308
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  384/384  384/384
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(3)PASS(2)  
CRASH(1)PASS(1)
 PNV  igt_gen3_render_tiledy_blits  FAIL(3)PASS(1)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  PASS(4)  
CRASH(1)PASS(1)
*SNB  igt_gem_exec_params_sol-reset-not-gen7  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: Optimistically spin for the request completion

2015-03-11 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5934
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -9  281/281  272/281
ILK -1  308/308  307/308
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  384/384  384/384
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(2)  FAIL(1)NRUN(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(2)  
FAIL(1)NO_RESULT(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(2)  
FAIL(1)NO_RESULT(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(4)PASS(2)  
CRASH(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(2)PASS(1)  FAIL(1)PASS(1)
*PNV  igt_gen3_render_mixed_blits  FAIL(1)PASS(2)  FAIL(1)NO_RESULT(1)
 PNV  igt_gen3_render_tiledx_blits  FAIL(3)PASS(1)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_tiledy_blits  FAIL(4)PASS(1)  FAIL(1)PASS(1)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  CRASH(1)PASS(4)   
   CRASH(1)PASS(1)
*ILK  igt_kms_flip_wf_vblank-ts-check  PASS(2)  DMESG_WARN(1)PASS(1)
*SNB  igt_gem_fenced_exec_thrash_too-many-fences  PASS(4)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Read CHV_PLL_DW8 from the correct offset

2015-03-11 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5936
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -15  281/281  266/281
ILK -1  308/308  307/308
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW -1  384/384  383/384
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(3)  FAIL(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(3)  FAIL(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(3)  FAIL(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(5)PASS(2)  CRASH(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(1)  FAIL(1)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(2)  FAIL(1)
 PNV  igt_gen3_render_tiledx_blits  FAIL(4)PASS(1)  FAIL(1)
 PNV  igt_gem_fence_thrash_bo-write-verify-threaded-none  CRASH(2)PASS(4)   
   CRASH(1)
*PNV  igt_gem_partial_pwrite_pread_reads  PASS(2)  NRUN(1)
*PNV  igt_gem_partial_pwrite_pread_reads-display  PASS(2)  NRUN(1)
*PNV  igt_gem_pwrite_pread_display-pwrite-blt-gtt_mmap-performance  PASS(2) 
 NRUN(1)
*PNV  igt_gem_ringfill_blitter  PASS(2)  NRUN(1)
*PNV  igt_gem_ringfill_blitter-interruptible  PASS(2)  NRUN(1)
*PNV  igt_gem_tiled_pread_pwrite  FAIL(1)PASS(2)  NRUN(1)
*PNV  igt_gem_userptr_blits_forked-sync-mempressure-interruptible  PASS(2)  
NRUN(1)
*ILK  igt_gem_unfence_active_buffers  PASS(3)  DMESG_WARN(1)PASS(1)
*SNB  igt_gem_flink_bad-open  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_pm_rpm_reg-read-ioctl  PASS(2)  DMESG_FAIL(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Remove the preliminary_hw_support shackles from CHV

2015-03-11 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5937
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -4  281/281  277/281
ILK -1  308/308  307/308
SNB -1  284/284  283/284
IVB  375/375  375/375
BYT  294/294  294/294
HSW  384/384  384/384
BDW  315/315  315/315
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(5)PASS(3)  
CRASH(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(2)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_mixed_blits  FAIL(2)PASS(3)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_tiledx_blits  FAIL(4)PASS(2)  FAIL(1)PASS(1)
*ILK  igt_gem_unfence_active_buffers  PASS(3)  DMESG_WARN(1)PASS(1)
*SNB  igt_gem_flink_flink-lifetime  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: redefine WARN_ON_ONCE to include the condition

2015-03-12 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5940
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -6  274/274  268/274
ILK  301/301  301/301
SNB -1  277/277  276/277
IVB  341/341  341/341
BYT  287/287  287/287
HSW  360/360  360/360
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(4)  
DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(3)  FAIL(2)
 PNV  igt_gen3_render_mixed_blits  FAIL(3)PASS(3)  FAIL(2)
 PNV  igt_gen3_render_tiledx_blits  FAIL(5)PASS(2)  FAIL(2)
 PNV  igt_gen3_render_tiledy_blits  FAIL(5)PASS(1)  FAIL(2)
 PNV  igt_gem_tiled_pread_pwrite  FAIL(2)PASS(2)  FAIL(2)
*SNB  igt_gem_mmap_short-mmap  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v3] drm/i915: Optimistically spin for the request completion

2015-03-12 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5941
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -7  274/274  267/274
ILK  301/301  301/301
SNB -1  277/277  276/277
IVB  341/341  341/341
BYT  287/287  287/287
HSW  360/360  360/360
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_fence_thrash_bo-write-verify-none  PASS(4)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-x  PASS(4)  FAIL(1)PASS(1)
*PNV  igt_gem_fence_thrash_bo-write-verify-y  PASS(4)  FAIL(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(5)PASS(4)  
CRASH(1)PASS(1)
 PNV  igt_gem_userptr_blits_coherency-unsync  CRASH(1)PASS(3)  
CRASH(1)PASS(1)
 PNV  igt_gen3_render_linear_blits  FAIL(3)PASS(4)  FAIL(1)PASS(1)
 PNV  igt_gen3_render_mixed_blits  FAIL(3)PASS(4)  FAIL(2)
*SNB  igt_gem_mmap_gtt_write-read  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 13/13] drm/i915: Include the sink/source/supported rates in debug output

2015-03-12 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5942
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  275/275  273/275
ILK  302/302  302/302
SNB  281/281  281/281
IVB  341/341  341/341
BYT  287/287  287/287
HSW -1  361/361  360/361
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(2)  DMESG_WARN(2)
*PNV  igt_gem_userptr_blits_minor-unsync-normal  PASS(4)  DMESG_WARN(2)
*HSW  igt_gem_storedw_loop_blt  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 19/19] drm/i915: Remove usage of encoder->new_crtc from clock computations

2015-03-13 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5946
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  276/276  276/276
ILK -6  303/303  297/303
SNB  279/279  279/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW -1  363/363  362/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*ILK  igt_drv_suspend_debugfs-reader  PASS(2)  DMESG_WARN(2)
*ILK  igt_drv_suspend_fence-restore-tiled2untiled  PASS(2)  
DMESG_WARN(1)
*ILK  igt_drv_suspend_fence-restore-untiled  PASS(2)  DMESG_WARN(2)
*ILK  igt_drv_suspend_forcewake  PASS(2)  DMESG_WARN(2)
*ILK  igt_gem_workarounds_suspend-resume  PASS(2)  DMESG_WARN(2)
*ILK  igt_kms_flip_blocking-absolute-wf_vblank-interruptible  PASS(2)  
DMESG_FAIL(2)
*HSW  igt_gem_pwrite_pread_snooped-copy-performance  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Fix vmap_batch page iterator overrun

2015-03-13 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5947
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  276/276  276/276
ILK  303/303  303/303
SNB  279/279  279/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 5/5] drm/dp: Use I2C_WRITE_STATUS_UPDATE to drain partial I2C_WRITE requests

2015-03-13 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5948
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  276/276  276/276
ILK  303/303  303/303
SNB -1  279/279  278/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*SNB  
igt_gem_persistent_relocs_forked-interruptible-faulting-reloc-thrash-inactive   
   PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Fix sink crc connector iteration

2015-03-14 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5950
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  276/276  276/276
ILK  303/303  303/303
SNB -1  279/279  278/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*SNB  igt_gem_persistent_relocs_forked-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Make for_each_intel_* macros typesafe

2015-03-16 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5954
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  268/268  268/268
ILK -1  303/303  302/303
SNB  283/283  283/283
IVB  342/342  342/342
BYT  287/287  287/287
HSW -1  363/363  362/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*ILK  igt_gem_fenced_exec_thrash_no-spare-fences-busy  PASS(2)  
DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_vebox  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v3] drm/i915: Do not use ggtt_view with (aliasing) PPGTT

2015-03-16 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5957
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  275/275  275/275
ILK  303/303  303/303
SNB -1  279/279  278/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW -1  361/361  360/361
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*SNB  igt_gem_persistent_relocs_forked-interruptible-thrash-inactive  
PASS(2)  DMESG_WARN(1)PASS(1)
 HSW  igt_gem_storedw_loop_bsd  DMESG_WARN(1)PASS(1)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Make for_each_intel_* macros typesafe

2015-03-16 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5958
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  275/275  273/275
ILK -23  303/303  280/303
SNB -2  279/279  277/279
IVB -2  343/343  341/343
BYT -2  287/287  285/287
HSW -1  361/361  360/361
BDW -2  308/308  306/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(2)
*PNV  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  TIMEOUT(2)
*ILK  igt_drv_debugfs_reader  PASS(1)  DMESG_WARN(1)
*ILK  igt_drv_hangman_error-state-sysfs-entry  PASS(1)  TIMEOUT(1)
*ILK  igt_drv_suspend_debugfs-reader  PASS(1)  DMESG_WARN(1)
*ILK  igt_gem_partial_pwrite_pread_write-snoop  PASS(1)  INIT(1)
*ILK  igt_gem_partial_pwrite_pread_write-uncached  PASS(1)  INIT(1)
*ILK  igt_gem_pwrite_pread_display-pwrite-blt-gtt_mmap-performance  PASS(1) 
 INIT(1)
*ILK  igt_gem_pwrite_pread_uncached-pwrite-blt-gtt_mmap-performance  
PASS(1)  INIT(1)
*ILK  igt_gem_ringfill_blitter  PASS(1)  INIT(1)
*ILK  igt_gem_ringfill_blitter-interruptible  PASS(1)  INIT(1)
*ILK  igt_gem_tiled_pread_pwrite  PASS(1)  INIT(1)
*ILK  igt_gem_userptr_blits_forked-sync-mempressure-interruptible  PASS(1)  
INIT(1)
*ILK  igt_gem_userptr_blits_forked-sync-mempressure-normal  PASS(1)  
INIT(1)
*ILK  igt_gem_userptr_blits_forked-sync-multifd-mempressure-interruptible  
PASS(1)  INIT(1)
*ILK  igt_gem_userptr_blits_forked-sync-multifd-mempressure-normal  PASS(1) 
 INIT(1)
*ILK  igt_gem_userptr_blits_forked-unsync-mempressure-interruptible  
PASS(1)  INIT(1)
*ILK  igt_gem_userptr_blits_forked-unsync-mempressure-normal  PASS(1)  
INIT(1)
*ILK  igt_gem_userptr_blits_forked-unsync-multifd-mempressure-interruptible 
 PASS(1)  INIT(1)
*ILK  igt_gem_userptr_blits_forked-unsync-multifd-mempressure-normal  
PASS(1)  INIT(1)
*ILK  igt_kms_flip_flip-vs-dpms-interruptible  PASS(1)  INIT(1)
*ILK  igt_kms_flip_flip-vs-rmfb-interruptible  PASS(1)  INIT(1)
*ILK  igt_kms_flip_rcs-wf_vblank-vs-dpms-interruptible  PASS(1)  INIT(1)
*ILK  igt_kms_flip_vblank-vs-hang  PASS(1)  INIT(1)
*ILK  igt_kms_flip_wf_vblank-vs-modeset-interruptible  PASS(1)  
NO_RESULT(1)
*SNB  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(2)
*SNB  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  TIMEOUT(2)
*IVB  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(2)
*IVB  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  TIMEOUT(2)
*BYT  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(2)
*BYT  igt_gem_bad_length  PASS(2)  TIMEOUT(2)
*HSW  igt_pm_rpm_debugfs-read  PASS(2)  TIMEOUT(2)
*BDW  igt_drv_debugfs_reader  PASS(2)  DMESG_WARN(2)
*BDW  igt_drv_hangman_error-state-sysfs-entry  PASS(2)  TIMEOUT(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 5/5] drm/i915: Initialize all contexts

2015-03-16 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5961
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  275/275  274/275
ILK  303/303  303/303
SNB  279/279  279/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW  361/361  361/361
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: PSR: Fix DP_PSR_NO_TRAIN_ON_EXIT logic

2015-03-16 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5962
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  275/275  275/275
ILK  303/303  303/303
SNB -1  279/279  278/279
IVB  343/343  343/343
BYT  287/287  287/287
HSW  361/361  361/361
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*SNB  igt_gem_persistent_relocs_forked-interruptible-thrash-inactive  
PASS(3)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 5/5] drm/i915: Remove unneeded check on execlist ringbuf alloc

2015-03-16 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5966
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  275/275  273/275
ILK  303/303  303/303
SNB  279/279  279/279
IVB -1  343/343  342/343
BYT -2  287/287  285/287
HSW  361/361  361/361
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_drv_debugfs_reader  PASS(3)  DMESG_WARN(1)PASS(1)
*PNV  igt_drv_hangman_error-state-sysfs-entry  PASS(3)  
TIMEOUT(1)PASS(1)
*IVB  igt_gem_evict_everything_minor-normal  PASS(2)  
DMESG_WARN(1)PASS(1)
*BYT  igt_kms_setmode_clone-exclusive-crtc  PASS(2)  DMESG_WARN(2)
*BYT  igt_kms_setmode_clone-single-crtc  PASS(2)  DMESG_WARN(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 49/49] drm/i915/bxt: Update max level of vswing

2015-03-17 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5978
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  268/268  267/268
ILK -1  303/303  302/303
SNB  283/283  283/283
IVB -1  343/343  342/343
BYT  287/287  287/287
HSW -4  319/319  315/319
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(3)  
DMESG_WARN(1)PASS(1)
*ILK  igt_drv_suspend_fence-restore-untiled  PASS(2)  
DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_normal  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_pm_rpm_cursor  PASS(2)  TIMEOUT(1)PASS(1)
*HSW  igt_pm_rpm_cursor-dpms  PASS(2)  TIMEOUT(2)
*HSW  igt_pm_rpm_debugfs-forcewake-user  PASS(2)  TIMEOUT(1)
*HSW  igt_pm_rpm_debugfs-read  PASS(2)  TIMEOUT(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Compare GGTT view structs instead of types

2015-03-18 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5981
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  268/268  267/268
ILK  303/303  303/303
SNB  283/283  283/283
IVB  343/343  343/343
BYT  287/287  287/287
HSW -1  363/363  362/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-normal-sync  PASS(3)  
DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_blt  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: Log view type when printing warnings

2015-03-18 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5984
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  268/268  267/268
ILK  303/303  303/303
SNB  283/283  283/283
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-sync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/dp: return number of bytes written for short aux/i2c writes

2015-03-18 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5985
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  268/268  266/268
ILK  303/303  303/303
SNB  283/283  283/283
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(1)PASS(3)  
CRASH(1)PASS(1)
 PNV  igt_gem_tiled_pread_pwrite  FAIL(1)PASS(3)  FAIL(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Turn on PIN_GLOBAL in i915_gem_object_ggtt_pin

2015-03-18 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5986
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  268/268  266/268
ILK -1  303/303  302/303
SNB  283/283  283/283
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(1)PASS(3)  
CRASH(1)PASS(1)
 PNV  igt_gem_tiled_pread_pwrite  FAIL(1)PASS(3)  FAIL(1)PASS(1)
*ILK  igt_gem_seqno_wrap  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm: Return current vblank value for drmWaitVBlank queries

2015-03-18 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5987
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  268/268  266/268
ILK -1  303/303  302/303
SNB  283/283  283/283
IVB  343/343  343/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_coherency-sync  CRASH(1)PASS(3)  
CRASH(1)PASS(1)
 PNV  igt_gem_tiled_pread_pwrite  FAIL(1)PASS(3)  FAIL(1)PASS(1)
*ILK  igt_drv_suspend_forcewake  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 4/4] drm/i915: Stop rings before cleaning up on reset

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5989
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  268/268  268/268
ILK  303/303  303/303
SNB  283/283  283/283
IVB -1  343/343  342/343
BYT  287/287  287/287
HSW  363/363  363/363
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*IVB  igt_gem_userptr_blits_minor-unsync-normal  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: kerneldoc for i915_gem_shrinker.c

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5995
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  272/272  271/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_coherency-unsync  PASS(1)  CRASH(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Keep ring->active_list and ring->requests_list consistent

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5996
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  272/272  272/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Move vblank wait determination to 'check' phase

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5999
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  272/272  272/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/dp: move edp init to work queue

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 5997
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  272/272  270/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(1)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gem_userptr_blits_minor-unsync-normal  PASS(1)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Fallback to using unmappable memory for scanout

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6000
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  272/272  271/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB -1  342/342  341/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-sync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_secure-dispatch  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 3/3] drm/radeon: Send out the full AUX address

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6003
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  272/272  270/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gem_userptr_blits_minor-unsync-normal  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Disable WaGsvRC0ResidencyMethod for vlv

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6004
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  272/272  271/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-sync-interruptible  DMESG_WARN(1)PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: Fallback to using unmappable memory for scanout

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6006
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  272/272  271/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB -1  342/342  341/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-unsync-interruptible  PASS(3)  
DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_normal  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2 4/4] drm/i915: Setup static bias for GPU

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6009
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  272/272  271/272
ILK  301/301  301/301
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-sync-interruptible  DMESG_WARN(1)PASS(3)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 4/4] drm/i915: Fix SKL sprite disable double buffer register update

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6010
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  274/274  272/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB -1  342/342  341/342
BYT  287/287  287/287
HSW -1  362/362  361/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-sync-interruptible  PASS(1)  
DMESG_WARN(2)
*PNV  igt_gen3_render_linear_blits  PASS(1)  CRASH(1)PASS(1)
*IVB  igt_gem_pwrite_pread_snooped-copy-performance  PASS(1)  
DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_bsd  PASS(1)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Do not leak objects after capturing error state

2015-03-19 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6011
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  274/274  272/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB -1  342/342  341/342
BYT  287/287  287/287
HSW -1  362/362  361/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-sync-interruptible  PASS(1)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gen3_render_linear_blits  PASS(1)  CRASH(1)PASS(1)
*IVB  igt_gem_pwrite_pread_snooped-copy-performance  PASS(1)  
DMESG_WARN(1)PASS(1)
*HSW  igt_gem_pwrite_pread_snooped-pwrite-blt-cpu_mmap-performance  PASS(1) 
 DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/skl: Enabling PSR2 SU with frame sync

2015-03-20 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6014
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  274/274  273/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB -2  342/342  340/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gen3_render_linear_blits  PASS(2)  CRASH(1)PASS(1)
*IVB  igt_gem_pwrite_pread_snooped-copy-performance  PASS(2)  
DMESG_WARN(2)
*IVB  igt_gem_storedw_batches_loop_secure-dispatch  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/bxt: Add Broxton steppings

2015-03-20 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6015
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  274/274  274/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB -1  342/342  341/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 IVB  igt_gem_pwrite_pread_snooped-copy-performance  DMESG_WARN(1)PASS(3)   
   DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i195/bxt: Add A1 stepping for Broxton

2015-03-20 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6016
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  274/274  272/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB -2  342/342  340/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gem_userptr_blits_minor-sync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gen3_render_linear_blits  PASS(3)  CRASH(1)PASS(1)
 IVB  igt_gem_pwrite_pread_snooped-copy-performance  DMESG_WARN(1)PASS(3)   
   DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_secure-dispatch  PASS(3)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: Do not leak objects after capturing error state

2015-03-20 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6017
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  274/274  272/274
ILK -1  303/303  302/303
SNB  303/303  303/303
IVB -1  342/342  341/342
BYT  287/287  287/287
HSW -1  362/362  361/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-sync-interruptible  DMESG_WARN(1)PASS(2)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gen3_render_linear_blits  PASS(4)  CRASH(1)PASS(1)
*ILK  igt_gem_unfence_active_buffers  PASS(2)  DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_normal  PASS(2)  DMESG_WARN(1)PASS(1)
*HSW  igt_gem_storedw_loop_bsd  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v4] drm/i915: Optimistically spin for the request completion

2015-03-20 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6019
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  274/274  273/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB  342/342  342/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt_gen3_render_linear_blits  PASS(5)  CRASH(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Use usleep_range() in wait_for()

2015-03-20 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6020
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  274/274  272/274
ILK  303/303  303/303
SNB  303/303  303/303
IVB -2  342/342  340/342
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-sync-interruptible  DMESG_WARN(1)PASS(3)  
DMESG_WARN(1)PASS(1)
*PNV  igt_gen3_render_linear_blits  FAIL(1)PASS(6)  CRASH(1)PASS(1)
 IVB  igt_gem_pwrite_pread_snooped-copy-performance  DMESG_WARN(2)PASS(3)   
   DMESG_WARN(1)PASS(1)
*IVB  igt_gem_storedw_batches_loop_secure-dispatch  PASS(4)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: Reduce frequency of unspecific HSW reg debugging

2015-03-22 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6023
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -4  272/272  268/272
ILK  303/303  303/303
SNB  304/304  304/304
IVB  344/344  344/344
BYT  287/287  287/287
HSW  362/362  362/362
BDW  308/308  308/308
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt_gem_userptr_blits_minor-unsync-interruptible  
DMESG_WARN(1)PASS(1)  DMESG_WARN(1)PASS(1)
 PNV  igt_gen3_render_mixed_blits  FAIL(1)PASS(2)  FAIL(2)
*PNV  igt_gen3_render_tiledy_blits  PASS(2)  FAIL(2)
*PNV  igt_gem_tiled_pread_pwrite  PASS(1)  FAIL(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 7/7] drm/i915/skl: Take 90/270 rotation into account in watermark calculations

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6028
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV  275/275  275/275
ILK  303/303  303/303
SNB  304/304  304/304
IVB  339/339  339/339
BYT  287/287  287/287
HSW  361/361  361/361
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915/skl: Fix up positive error code

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6037
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  269/269  267/269
ILK -1  303/303  302/303
SNB  304/304  304/304
IVB  338/338  338/338
BYT  287/287  287/287
HSW  362/362  362/362
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt@gem_userptr_blits@coherency-sync  CRASH(1)PASS(1)  CRASH(2)
 PNV  igt@gem_userptr_blits@minor-unsync-normal  DMESG_WARN(1)PASS(1)  
DMESG_WARN(1)PASS(1)
*ILK  igt@gem_seqno_wrap  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: Compare GGTT view structs instead of types

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6029
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  275/275  274/275
ILK  303/303  303/303
SNB  304/304  304/304
IVB  339/339  339/339
BYT  287/287  287/287
HSW  361/361  361/361
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt@gem_userptr_blits@minor-normal-sync  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 5/5] drm/i915: Add dynamic page trace events

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6040
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -3  269/269  266/269
ILK -1  303/303  302/303
SNB  304/304  304/304
IVB -1  338/338  337/338
BYT  287/287  287/287
HSW  362/362  362/362
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt@gem_userptr_blits@coherency-sync  CRASH(1)PASS(2)  
CRASH(1)PASS(1)
*PNV  igt@gen3_render_linear_blits  PASS(2)  FAIL(1)PASS(1)
 PNV  igt@gem_userptr_blits@minor-unsync-interruptible  
DMESG_WARN(1)PASS(1)  DMESG_WARN(2)
*ILK  igt@gem_seqno_wrap  PASS(3)  DMESG_WARN(1)PASS(1)
*IVB  igt@gem_storedw_batches_loop@secure-dispatch  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: move clearing of RPS interrupt bits from disable to reset time

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6030
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  275/275  274/275
ILK  303/303  303/303
SNB  304/304  304/304
IVB  339/339  339/339
BYT  287/287  287/287
HSW  361/361  361/361
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt@gem_userptr_blits@minor-sync-interruptible  PASS(2)  
DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v3] drm/i915: Fix i915_dma_map_single positive error code

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6041
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  269/269  268/269
ILK  303/303  303/303
SNB  304/304  304/304
IVB -1  338/338  337/338
BYT  287/287  287/287
HSW  362/362  362/362
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt@gen3_render_linear_blits  FAIL(1)PASS(2)  FAIL(2)
*IVB  igt@gem_storedw_batches_loop@normal  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH v2] drm/i915: Fix i915_dma_map_single positive error code

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6041
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -1  269/269  268/269
ILK  303/303  303/303
SNB  304/304  304/304
IVB -1  338/338  337/338
BYT  287/287  287/287
HSW  362/362  362/362
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
 PNV  igt@gen3_render_linear_blits  FAIL(1)PASS(2)  FAIL(2)
*IVB  igt@gem_storedw_batches_loop@normal  PASS(2)  DMESG_WARN(1)PASS(1)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 2/2] drm/i915: eDP DRRS limited to only one panel at a time

2015-03-24 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: 
shuang...@intel.com)
Task id: 6031
-Summary-
Platform  Delta  drm-intel-nightly  Series Applied
PNV -2  275/275  273/275
ILK -1  303/303  302/303
SNB  304/304  304/304
IVB  339/339  339/339
BYT  287/287  287/287
HSW  361/361  361/361
BDW  310/310  310/310
-Detailed-
Platform  Testdrm-intel-nightly  Series 
Applied
*PNV  igt@gem_userptr_blits@minor-sync-interruptible  PASS(3)  
DMESG_WARN(1)PASS(1)
*PNV  igt@gem_userptr_blits@minor-unsync-normal  PASS(2)  DMESG_WARN(2)
*ILK  igt@gem_unfence_active_buffers  PASS(2)  DMESG_WARN(2)
Note: You need to pay more attention to line start with '*'
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


  1   2   3   4   5   6   7   8   9   10   >