All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/2] i915/gem_render_copy: Add support for local memory
@ 2021-09-01 15:48 apoorva1.singh
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region apoorva1.singh
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: apoorva1.singh @ 2021-09-01 15:48 UTC (permalink / raw)
  To: zbigniew.kempczynski, thomas.hellstrom, igt-dev, arjun.melkaveri,
	apoorva1.singh

From: Apoorva Singh <apoorva1.singh@intel.com>

- Add intel_buf_init_in_region in lib/intel_bufops which
  allows memory region to be specified for new BO being created.
  Same as intel_buf_init with the additional region argument.

- Add support for local memory region in gem_render_copy

Apoorva Singh (2):
  lib/intel_bufops: Add intel_buf_init_in_region
  i915/gem_render_copy: Add support for local memory

 lib/intel_bufops.c           | 28 ++++++++++++++---
 lib/intel_bufops.h           |  5 +++
 tests/i915/gem_render_copy.c | 61 +++++++++++++++++++++++++-----------
 3 files changed, 70 insertions(+), 24 deletions(-)

-- 
2.25.1

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region
  2021-09-01 15:48 [igt-dev] [PATCH i-g-t 0/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
@ 2021-09-01 15:48 ` apoorva1.singh
  2021-09-13 17:39   ` Zbigniew Kempczyński
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: apoorva1.singh @ 2021-09-01 15:48 UTC (permalink / raw)
  To: zbigniew.kempczynski, thomas.hellstrom, igt-dev, arjun.melkaveri,
	apoorva1.singh

From: Apoorva Singh <apoorva1.singh@intel.com>

Add intel_buf_init_in_region which allows memory region
to be specified for new BO being created.
Same as intel_buf_init with the additional region argument.

Signed-off-by: Apoorva Singh <apoorva1.singh@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Melkaveri, Arjun <arjun.melkaveri@intel.com>
---
 lib/intel_bufops.c | 28 +++++++++++++++++++++++-----
 lib/intel_bufops.h |  5 +++++
 2 files changed, 28 insertions(+), 5 deletions(-)

diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
index faca4406..f5f67edd 100644
--- a/lib/intel_bufops.c
+++ b/lib/intel_bufops.c
@@ -730,7 +730,8 @@ static void __intel_buf_init(struct buf_ops *bops,
 			     struct intel_buf *buf,
 			     int width, int height, int bpp, int alignment,
 			     uint32_t req_tiling, uint32_t compression,
-			     uint64_t bo_size, int bo_stride)
+			     uint64_t bo_size, int bo_stride,
+			     uint32_t region)
 {
 	uint32_t tiling = req_tiling;
 	uint64_t size;
@@ -818,7 +819,7 @@ static void __intel_buf_init(struct buf_ops *bops,
 	if (handle)
 		buf->handle = handle;
 	else
-		buf->handle = gem_create(bops->fd, size);
+		buf->handle = gem_create_in_memory_regions(bops->fd, size, region);
 
 	set_hw_tiled(bops, buf);
 }
@@ -845,7 +846,24 @@ void intel_buf_init(struct buf_ops *bops,
 		    uint32_t tiling, uint32_t compression)
 {
 	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
-			 tiling, compression, 0, 0);
+			 tiling, compression, 0, 0, I915_SYSTEM_MEMORY);
+
+	intel_buf_set_ownership(buf, true);
+}
+
+/**
+ * intel_buf_init_in_region
+ *
+ * Same as intel_buf_init with the additional region argument
+ */
+void intel_buf_init_in_region(struct buf_ops *bops,
+			      struct intel_buf *buf,
+			      int width, int height, int bpp, int alignment,
+			      uint32_t tiling, uint32_t compression,
+			      uint32_t region)
+{
+	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
+			 tiling, compression, 0, 0, region);
 
 	intel_buf_set_ownership(buf, true);
 }
@@ -904,7 +922,7 @@ void intel_buf_init_using_handle(struct buf_ops *bops,
 				 uint32_t req_tiling, uint32_t compression)
 {
 	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
-			 req_tiling, compression, 0, 0);
+			 req_tiling, compression, 0, 0, -1);
 }
 
 /**
@@ -990,7 +1008,7 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
 	igt_assert(buf);
 
 	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
-			 req_tiling, compression, size, stride);
+			 req_tiling, compression, size, stride, -1);
 
 	return buf;
 }
diff --git a/lib/intel_bufops.h b/lib/intel_bufops.h
index 9e57d53e..54f2ce45 100644
--- a/lib/intel_bufops.h
+++ b/lib/intel_bufops.h
@@ -125,6 +125,11 @@ static inline void intel_buf_set_ownership(struct intel_buf *buf, bool is_owner)
 void intel_buf_init(struct buf_ops *bops, struct intel_buf *buf,
 		    int width, int height, int bpp, int alignment,
 		    uint32_t tiling, uint32_t compression);
+void intel_buf_init_in_region(struct buf_ops *bops,
+			      struct intel_buf *buf,
+			      int width, int height, int bpp, int alignment,
+			      uint32_t tiling, uint32_t compression,
+			      uint32_t region);
 void intel_buf_close(struct buf_ops *bops, struct intel_buf *buf);
 
 void intel_buf_init_using_handle(struct buf_ops *bops,
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [igt-dev] [PATCH i-g-t 2/2] i915/gem_render_copy: Add support for local memory
  2021-09-01 15:48 [igt-dev] [PATCH i-g-t 0/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region apoorva1.singh
@ 2021-09-01 15:48 ` apoorva1.singh
  2021-09-13 17:43   ` Zbigniew Kempczyński
  2021-09-01 16:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2021-09-01 18:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 1 reply; 7+ messages in thread
From: apoorva1.singh @ 2021-09-01 15:48 UTC (permalink / raw)
  To: zbigniew.kempczynski, thomas.hellstrom, igt-dev, arjun.melkaveri,
	apoorva1.singh

From: Apoorva Singh <apoorva1.singh@intel.com>

Add support for local memory region (Device memory)

Signed-off-by: Apoorva Singh <apoorva1.singh@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Melkaveri, Arjun <arjun.melkaveri@intel.com>
---
 tests/i915/gem_render_copy.c | 61 +++++++++++++++++++++++++-----------
 1 file changed, 42 insertions(+), 19 deletions(-)

diff --git a/tests/i915/gem_render_copy.c b/tests/i915/gem_render_copy.c
index e48b5b99..3aac1628 100644
--- a/tests/i915/gem_render_copy.c
+++ b/tests/i915/gem_render_copy.c
@@ -213,12 +213,13 @@ scratch_buf_copy(data_t *data,
 static void scratch_buf_init(data_t *data, struct intel_buf *buf,
 			     int width, int height,
 			     uint32_t req_tiling,
-			     enum i915_compression compression)
+			     enum i915_compression compression,
+			     uint32_t region)
 {
 	int bpp = 32;
 
-	intel_buf_init(data->bops, buf, width, height, bpp, 0,
-		       req_tiling, compression);
+	intel_buf_init_in_region(data->bops, buf, width, height, bpp, 0,
+				 req_tiling, compression, region);
 
 	igt_assert(intel_buf_width(buf) == width);
 	igt_assert(intel_buf_height(buf) == height);
@@ -338,7 +339,8 @@ dump_intel_buf_to_file(data_t *data, struct intel_buf *buf, const char *filename
 static void test(data_t *data, uint32_t src_tiling, uint32_t dst_tiling,
 		 enum i915_compression src_compression,
 		 enum i915_compression dst_compression,
-		 int flags)
+		 int flags,
+		 struct igt_collection *memregion_set)
 {
 	struct intel_bb *ibb;
 	struct intel_buf ref, src_tiled, src_ccs, dst_ccs, dst;
@@ -370,6 +372,7 @@ static void test(data_t *data, uint32_t src_tiling, uint32_t dst_tiling,
 		},
 	};
 	int num_src = ARRAY_SIZE(src);
+	uint32_t region = igt_collection_get_value(memregion_set, 0);
 	const bool src_mixed_tiled = flags & SOURCE_MIXED_TILED;
 	const bool src_compressed = src_compression != I915_COMPRESSION_NONE;
 	const bool dst_compressed = dst_compression != I915_COMPRESSION_NONE;
@@ -401,21 +404,21 @@ static void test(data_t *data, uint32_t src_tiling, uint32_t dst_tiling,
 
 	for (int i = 0; i < num_src; i++)
 		scratch_buf_init(data, &src[i].buf, WIDTH, HEIGHT, src[i].tiling,
-				 I915_COMPRESSION_NONE);
+				 I915_COMPRESSION_NONE, region);
 	if (!src_mixed_tiled)
 		scratch_buf_init(data, &src_tiled, WIDTH, HEIGHT, src_tiling,
-				 I915_COMPRESSION_NONE);
+				 I915_COMPRESSION_NONE, region);
 	scratch_buf_init(data, &dst, WIDTH, HEIGHT, dst_tiling,
-			 I915_COMPRESSION_NONE);
+			 I915_COMPRESSION_NONE, region);
 
 	if (src_compressed)
 		scratch_buf_init(data, &src_ccs, WIDTH, HEIGHT,
-				 src_tiling, src_compression);
+				 src_tiling, src_compression, region);
 	if (dst_compressed)
 		scratch_buf_init(data, &dst_ccs, WIDTH, HEIGHT,
-				 dst_tiling, dst_compression);
+				 dst_tiling, dst_compression, region);
 	scratch_buf_init(data, &ref, WIDTH, HEIGHT, I915_TILING_NONE,
-			 I915_COMPRESSION_NONE);
+			 I915_COMPRESSION_NONE, region);
 
 	for (int i = 0; i < num_src; i++)
 		scratch_buf_draw_pattern(data, &src[i].buf,
@@ -782,6 +785,8 @@ igt_main_args("dac", NULL, help_str, opt_handler, NULL)
 		  0, },
 	};
 	int i;
+	struct drm_i915_query_memory_regions *regions;
+	struct igt_collection *set, *region_set;
 
 	data_t data = {0, };
 
@@ -798,11 +803,19 @@ igt_main_args("dac", NULL, help_str, opt_handler, NULL)
 
 		data.bops = buf_ops_create(data.drm_fd);
 
+		regions = gem_get_query_memory_regions(data.drm_fd);
+		igt_assert(regions);
+
+		set = get_memory_region_set(regions,
+					    I915_SYSTEM_MEMORY,
+					    I915_DEVICE_MEMORY);
+
 		igt_fork_hang_detector(data.drm_fd);
 	}
 
 	for (i = 0; i < ARRAY_SIZE(tests); i++) {
 		const struct test_desc *t = &tests[i];
+		char name[128];
 		char src_mode[32];
 		char dst_mode[32];
 		const bool src_mixed_tiled = t->flags & SOURCE_MIXED_TILED;
@@ -832,23 +845,33 @@ igt_main_args("dac", NULL, help_str, opt_handler, NULL)
 		    t->dst_compression == I915_COMPRESSION_NONE)
 			src_mode[0] = '\0';
 
-		igt_subtest_f("%s%s%s%s",
-			      src_mode,
-			      src_mode[0] ? "-to-" : "",
-			      force_vebox_dst_copy ? "vebox-" : "",
-			      dst_mode) {
+		snprintf(name, sizeof(name),
+			 "%s%s%s%s",
+			 src_mode,
+			 src_mode[0] ? "-to-" : "",
+			 force_vebox_dst_copy ? "vebox-" : "",
+			 dst_mode);
+		igt_subtest_with_dynamic(name) {
 			igt_require_f(data.vebox_copy || !vebox_copy_used,
 				      "no vebox-copy function\n");
+			for_each_combination(region_set, 1, set) {
+				char *sub_name = memregion_dynamic_subtest_name(region_set);
 
-			test(&data,
-			     t->src_tiling, t->dst_tiling,
-			     t->src_compression, t->dst_compression,
-			     t->flags);
+				igt_dynamic_f("%s", sub_name)
+					test(&data,
+					     t->src_tiling, t->dst_tiling,
+					     t->src_compression, t->dst_compression,
+					     t->flags,
+					     region_set);
+
+				free(sub_name);
+			}
 		}
 	}
 
 	igt_fixture {
 		igt_stop_hang_detector();
 		buf_ops_destroy(data.bops);
+		igt_collection_destroy(set);
 	}
 }
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_render_copy: Add support for local memory
  2021-09-01 15:48 [igt-dev] [PATCH i-g-t 0/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region apoorva1.singh
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
@ 2021-09-01 16:14 ` Patchwork
  2021-09-01 18:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2021-09-01 16:14 UTC (permalink / raw)
  To: apoorva1.singh; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 4155 bytes --]

== Series Details ==

Series: i915/gem_render_copy: Add support for local memory
URL   : https://patchwork.freedesktop.org/series/94250/
State : success

== Summary ==

CI Bug Log - changes from IGT_6194 -> IGTPW_6185
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/index.html

Known issues
------------

  Here are the changes found in IGTPW_6185 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][1] ([fdo#109271]) +6 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-kbl-soraka/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][2] ([fdo#109271]) +17 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-1115g4:      [FAIL][3] ([i915#1888]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][5] ([i915#2940]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_heartbeat:
    - {fi-tgl-dsi}:       [DMESG-FAIL][7] ([i915#541]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/fi-tgl-dsi/igt@i915_selftest@live@gt_heartbeat.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-tgl-dsi/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@gt_lrc:
    - fi-rkl-guc:         [DMESG-WARN][9] ([i915#3958]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@hangcheck:
    - {fi-hsw-gt1}:       [DMESG-WARN][11] ([i915#3303]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@requests:
    - fi-kbl-soraka:      [INCOMPLETE][13] -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/fi-kbl-soraka/igt@i915_selftest@live@requests.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/fi-kbl-soraka/igt@i915_selftest@live@requests.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3958]: https://gitlab.freedesktop.org/drm/intel/issues/3958
  [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541


Participating hosts (39 -> 35)
------------------------------

  Missing    (4): fi-ctg-p8600 fi-ilk-m540 fi-bsw-cyan fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6194 -> IGTPW_6185

  CI-20190529: 20190529
  CI_DRM_10544: 078e7300cf0130241e5d472d8e2f7eef4ef11b65 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6185: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/index.html
  IGT_6194: 6457f6e63525b84740784102ab3c769a58c16168 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/index.html

[-- Attachment #2: Type: text/html, Size: 5025 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_render_copy: Add support for local memory
  2021-09-01 15:48 [igt-dev] [PATCH i-g-t 0/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
                   ` (2 preceding siblings ...)
  2021-09-01 16:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-09-01 18:07 ` Patchwork
  3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2021-09-01 18:07 UTC (permalink / raw)
  To: apoorva1.singh; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 30267 bytes --]

== Series Details ==

Series: i915/gem_render_copy: Add support for local memory
URL   : https://patchwork.freedesktop.org/series/94250/
State : success

== Summary ==

CI Bug Log - changes from IGT_6194_full -> IGTPW_6185_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/index.html

New tests
---------

  New tests have been introduced between IGT_6194_full and IGTPW_6185_full:

### New IGT tests (35) ###

  * igt@gem_render_copy@linear-to-vebox-y-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.11] s

  * igt@gem_render_copy@linear-to-vebox-yf-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@gem_render_copy@linear@smem:
    - Statuses : 4 pass(s)
    - Exec time: [0.07, 0.19] s

  * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs@smem:
    - Statuses : 4 pass(s)
    - Exec time: [0.12, 0.34] s

  * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.45] s

  * igt@gem_render_copy@x-tiled-to-vebox-y-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.11] s

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@gem_render_copy@y-tiled-ccs-to-linear@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.29] s

  * igt@gem_render_copy@y-tiled-ccs-to-x-tiled@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.33] s

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled@smem:
    - Statuses : 3 pass(s)
    - Exec time: [0.08, 0.16] s

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs@smem:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.36] s

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.08] s

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.41] s

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.08] s

  * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.13] s

  * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.09] s

  * igt@gem_render_copy@y-tiled-to-vebox-linear@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@gem_render_copy@y-tiled-to-vebox-x-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.10] s

  * igt@gem_render_copy@y-tiled-to-vebox-y-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.11] s

  * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@gem_render_copy@y-tiled@smem:
    - Statuses : 6 pass(s)
    - Exec time: [0.07, 0.30] s

  * igt@gem_render_copy@yf-tiled-ccs-to-linear@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.31] s

  * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.34] s

  * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.35] s

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs@smem:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.41] s

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled@smem:
    - Statuses : 5 pass(s)
    - Exec time: [0.07, 0.43] s

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.11] s

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.08] s

  * igt@gem_render_copy@yf-tiled-to-vebox-linear@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.11] s

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled@smem:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@gem_render_copy@yf-tiled@smem:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.41] s

  

Known issues
------------

  Here are the changes found in IGTPW_6185_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-massive:
    - shard-glk:          NOTRUN -> [DMESG-WARN][1] ([i915#3002])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk5/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1099]) +3 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

  * igt@gem_eio@kms:
    - shard-glk:          [PASS][3] -> [FAIL][4] ([i915#3115])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk8/igt@gem_eio@kms.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk8/igt@gem_eio@kms.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][5] -> [TIMEOUT][6] ([i915#2369] / [i915#3063] / [i915#3648])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-tglb3/igt@gem_eio@unwedge-stress.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb3/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][7] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][8] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb1/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#2842]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk5/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_whisper@basic-normal-all:
    - shard-glk:          [PASS][13] -> [DMESG-WARN][14] ([i915#118] / [i915#95])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk9/igt@gem_exec_whisper@basic-normal-all.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk9/igt@gem_exec_whisper@basic-normal-all.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#2190])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl3/igt@gem_huc_copy@huc-copy.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][16] ([i915#2658])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-snb6/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-kbl:          NOTRUN -> [SKIP][17] ([fdo#109271]) +123 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#768]) +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb5/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-tglb:         NOTRUN -> [SKIP][19] ([fdo#110542])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb1/igt@gem_userptr_blits@coherency-sync.html
    - shard-iclb:         NOTRUN -> [SKIP][20] ([fdo#109290])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb6/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#3323])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][22] ([i915#3002])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl3/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@oacontrol-tracking:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([fdo#109289])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb6/igt@gen7_exec_parse@oacontrol-tracking.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#2856])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb7/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#2856])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb1/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-apl:          NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#1937])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#1902])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb3/igt@i915_pm_lpsp@screens-disabled.html
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#1902])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb2/igt@i915_pm_lpsp@screens-disabled.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-glk:          [PASS][29] -> [DMESG-WARN][30] ([i915#118] / [i915#1982] / [i915#95])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk9/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#111614]) +2 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#110725] / [fdo#111614]) +2 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3777])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111615]) +3 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb8/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#110723])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3777]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][37] ([fdo#109271]) +262 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#3689]) +5 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3689] / [i915#3886]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb1/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109278] / [i915#3886]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb4/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-snb:          NOTRUN -> [SKIP][41] ([fdo#109271]) +379 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-snb7/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3886]) +8 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +19 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3886]) +4 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +26 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl8/igt@kms_chamelium@dp-mode-timings.html
    - shard-glk:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +6 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk7/igt@kms_chamelium@dp-mode-timings.html
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb4/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_chamelium@hdmi-edid-read:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb8/igt@kms_chamelium@hdmi-edid-read.html

  * igt@kms_chamelium@hdmi-hpd-enable-disable-mode:
    - shard-snb:          NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +19 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-snb2/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html

  * igt@kms_color_chamelium@pipe-a-ctm-0-75:
    - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl4/igt@kms_color_chamelium@pipe-a-ctm-0-75.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][51] ([i915#1319])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl3/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#3116])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([i915#3116])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb3/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-size-change:
    - shard-iclb:         [PASS][54] -> [FAIL][55] ([i915#3444])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
    - shard-glk:          [PASS][56] -> [FAIL][57] ([i915#3444])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk1/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
    - shard-kbl:          [PASS][58] -> [FAIL][59] ([i915#3444])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
    - shard-tglb:         [PASS][60] -> [FAIL][61] ([i915#2124] / [i915#4024])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-size-change.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#109279] / [i915#3359])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109278] / [fdo#109279])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb2/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([i915#3319])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-32x32-onscreen.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109274]) +2 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb3/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][66] ([i915#180]) +2 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([i915#2587])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
    - shard-kbl:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#2672])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271]) +63 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109280]) +9 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([fdo#111825]) +13 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_hdr@static-swap:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#1187])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb6/igt@kms_hdr@static-swap.html
    - shard-iclb:         NOTRUN -> [SKIP][73] ([i915#1187])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb4/igt@kms_hdr@static-swap.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#533]) +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl6/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
    - shard-apl:          NOTRUN -> [FAIL][75] ([fdo#108145] / [i915#265]) +2 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][76] ([fdo#108145] / [i915#265]) +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][77] ([i915#265]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109278]) +12 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb3/igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant.html

  * igt@kms_plane_lowres@pipe-a-tiling-none:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3536])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-none.html
    - shard-iclb:         NOTRUN -> [SKIP][80] ([i915#3536])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-none.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2733])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#658]) +5 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-glk:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#658])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#658]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([i915#2920]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-kbl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#658]) +3 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [PASS][87] -> [SKIP][88] ([fdo#109441]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb4/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [PASS][89] -> [DMESG-WARN][90] ([i915#180] / [i915#295])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-apl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2437]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl3/igt@kms_writeback@writeback-fb-id.html
    - shard-kbl:          NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2437]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl4/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2437])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb5/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#2437])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb6/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-glk:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2437]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk9/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][96] ([i915#2530])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb2/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-iclb:         NOTRUN -> [SKIP][97] ([fdo#109278] / [i915#2530])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb5/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@sysfs_clients@create:
    - shard-apl:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2994]) +1 similar issue
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-apl3/igt@sysfs_clients@create.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#2994]) +2 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb6/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#2994]) +2 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb2/igt@sysfs_clients@recycle-many.html
    - shard-glk:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#2994]) +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk1/igt@sysfs_clients@recycle-many.html
    - shard-kbl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2994]) +3 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-kbl6/igt@sysfs_clients@recycle-many.html

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][103] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-glk:          [FAIL][105] ([i915#2842]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk7/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [FAIL][107] ([i915#2842]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         [FAIL][109] ([i915#2842]) -> [PASS][110] +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][111] ([i915#2849]) -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_workarounds@basic-read-fd:
    - shard-snb:          [TIMEOUT][113] -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-snb6/igt@gem_workarounds@basic-read-fd.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-snb2/igt@gem_workarounds@basic-read-fd.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [DMESG-WARN][115] ([i915#1436] / [i915#716]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk5/igt@gen9_exec_parse@allowed-all.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/shard-glk6/igt@gen9_exec_parse@allowed-all.html

  * igt@kms_big_fb@linear-32bpp-rotate-180:
    - shard-glk:          [DMESG-WARN][117] ([i915#118] / [i915#95]) -> [PASS][118] +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6194/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-180.html
   [118]:

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6185/index.html

[-- Attachment #2: Type: text/html, Size: 34529 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region apoorva1.singh
@ 2021-09-13 17:39   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2021-09-13 17:39 UTC (permalink / raw)
  To: apoorva1.singh; +Cc: thomas.hellstrom, igt-dev, arjun.melkaveri

On Wed, Sep 01, 2021 at 09:18:45PM +0530, apoorva1.singh@intel.com wrote:
> From: Apoorva Singh <apoorva1.singh@intel.com>
> 
> Add intel_buf_init_in_region which allows memory region
> to be specified for new BO being created.
> Same as intel_buf_init with the additional region argument.
> 
> Signed-off-by: Apoorva Singh <apoorva1.singh@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: Melkaveri, Arjun <arjun.melkaveri@intel.com>
> ---
>  lib/intel_bufops.c | 28 +++++++++++++++++++++++-----
>  lib/intel_bufops.h |  5 +++++
>  2 files changed, 28 insertions(+), 5 deletions(-)
> 
> diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
> index faca4406..f5f67edd 100644
> --- a/lib/intel_bufops.c
> +++ b/lib/intel_bufops.c
> @@ -730,7 +730,8 @@ static void __intel_buf_init(struct buf_ops *bops,
>  			     struct intel_buf *buf,
>  			     int width, int height, int bpp, int alignment,
>  			     uint32_t req_tiling, uint32_t compression,
> -			     uint64_t bo_size, int bo_stride)
> +			     uint64_t bo_size, int bo_stride,
> +			     uint32_t region)
>  {
>  	uint32_t tiling = req_tiling;
>  	uint64_t size;
> @@ -818,7 +819,7 @@ static void __intel_buf_init(struct buf_ops *bops,
>  	if (handle)
>  		buf->handle = handle;
>  	else
> -		buf->handle = gem_create(bops->fd, size);
> +		buf->handle = gem_create_in_memory_regions(bops->fd, size, region);
>  
>  	set_hw_tiled(bops, buf);
>  }
> @@ -845,7 +846,24 @@ void intel_buf_init(struct buf_ops *bops,
>  		    uint32_t tiling, uint32_t compression)
>  {
>  	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
> -			 tiling, compression, 0, 0);
> +			 tiling, compression, 0, 0, I915_SYSTEM_MEMORY);
> +
> +	intel_buf_set_ownership(buf, true);
> +}
> +
> +/**
> + * intel_buf_init_in_region
> + *
> + * Same as intel_buf_init with the additional region argument
> + */
> +void intel_buf_init_in_region(struct buf_ops *bops,
> +			      struct intel_buf *buf,
> +			      int width, int height, int bpp, int alignment,
> +			      uint32_t tiling, uint32_t compression,
> +			      uint32_t region)
> +{
> +	__intel_buf_init(bops, 0, buf, width, height, bpp, alignment,
> +			 tiling, compression, 0, 0, region);
>  
>  	intel_buf_set_ownership(buf, true);
>  }
> @@ -904,7 +922,7 @@ void intel_buf_init_using_handle(struct buf_ops *bops,
>  				 uint32_t req_tiling, uint32_t compression)
>  {
>  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> -			 req_tiling, compression, 0, 0);
> +			 req_tiling, compression, 0, 0, -1);
>  }
>  
>  /**
> @@ -990,7 +1008,7 @@ struct intel_buf *intel_buf_create_using_handle_and_size(struct buf_ops *bops,
>  	igt_assert(buf);
>  
>  	__intel_buf_init(bops, handle, buf, width, height, bpp, alignment,
> -			 req_tiling, compression, size, stride);
> +			 req_tiling, compression, size, stride, -1);
>  
>  	return buf;
>  }
> diff --git a/lib/intel_bufops.h b/lib/intel_bufops.h
> index 9e57d53e..54f2ce45 100644
> --- a/lib/intel_bufops.h
> +++ b/lib/intel_bufops.h
> @@ -125,6 +125,11 @@ static inline void intel_buf_set_ownership(struct intel_buf *buf, bool is_owner)
>  void intel_buf_init(struct buf_ops *bops, struct intel_buf *buf,
>  		    int width, int height, int bpp, int alignment,
>  		    uint32_t tiling, uint32_t compression);
> +void intel_buf_init_in_region(struct buf_ops *bops,
> +			      struct intel_buf *buf,
> +			      int width, int height, int bpp, int alignment,
> +			      uint32_t tiling, uint32_t compression,
> +			      uint32_t region);
>  void intel_buf_close(struct buf_ops *bops, struct intel_buf *buf);
>  
>  void intel_buf_init_using_handle(struct buf_ops *bops,
> -- 
> 2.25.1
>

Looks ok, 

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/2] i915/gem_render_copy: Add support for local memory
  2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
@ 2021-09-13 17:43   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2021-09-13 17:43 UTC (permalink / raw)
  To: apoorva1.singh; +Cc: thomas.hellstrom, igt-dev, arjun.melkaveri

On Wed, Sep 01, 2021 at 09:18:46PM +0530, apoorva1.singh@intel.com wrote:
> From: Apoorva Singh <apoorva1.singh@intel.com>
> 
> Add support for local memory region (Device memory)
> 
> Signed-off-by: Apoorva Singh <apoorva1.singh@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Cc: Melkaveri, Arjun <arjun.melkaveri@intel.com>
> ---
>  tests/i915/gem_render_copy.c | 61 +++++++++++++++++++++++++-----------
>  1 file changed, 42 insertions(+), 19 deletions(-)
> 
> diff --git a/tests/i915/gem_render_copy.c b/tests/i915/gem_render_copy.c
> index e48b5b99..3aac1628 100644
> --- a/tests/i915/gem_render_copy.c
> +++ b/tests/i915/gem_render_copy.c
> @@ -213,12 +213,13 @@ scratch_buf_copy(data_t *data,
>  static void scratch_buf_init(data_t *data, struct intel_buf *buf,
>  			     int width, int height,
>  			     uint32_t req_tiling,
> -			     enum i915_compression compression)
> +			     enum i915_compression compression,
> +			     uint32_t region)
>  {
>  	int bpp = 32;
>  
> -	intel_buf_init(data->bops, buf, width, height, bpp, 0,
> -		       req_tiling, compression);
> +	intel_buf_init_in_region(data->bops, buf, width, height, bpp, 0,
> +				 req_tiling, compression, region);
>  
>  	igt_assert(intel_buf_width(buf) == width);
>  	igt_assert(intel_buf_height(buf) == height);
> @@ -338,7 +339,8 @@ dump_intel_buf_to_file(data_t *data, struct intel_buf *buf, const char *filename
>  static void test(data_t *data, uint32_t src_tiling, uint32_t dst_tiling,
>  		 enum i915_compression src_compression,
>  		 enum i915_compression dst_compression,
> -		 int flags)
> +		 int flags,
> +		 struct igt_collection *memregion_set)
>  {
>  	struct intel_bb *ibb;
>  	struct intel_buf ref, src_tiled, src_ccs, dst_ccs, dst;
> @@ -370,6 +372,7 @@ static void test(data_t *data, uint32_t src_tiling, uint32_t dst_tiling,
>  		},
>  	};
>  	int num_src = ARRAY_SIZE(src);
> +	uint32_t region = igt_collection_get_value(memregion_set, 0);
>  	const bool src_mixed_tiled = flags & SOURCE_MIXED_TILED;
>  	const bool src_compressed = src_compression != I915_COMPRESSION_NONE;
>  	const bool dst_compressed = dst_compression != I915_COMPRESSION_NONE;
> @@ -401,21 +404,21 @@ static void test(data_t *data, uint32_t src_tiling, uint32_t dst_tiling,
>  
>  	for (int i = 0; i < num_src; i++)
>  		scratch_buf_init(data, &src[i].buf, WIDTH, HEIGHT, src[i].tiling,
> -				 I915_COMPRESSION_NONE);
> +				 I915_COMPRESSION_NONE, region);
>  	if (!src_mixed_tiled)
>  		scratch_buf_init(data, &src_tiled, WIDTH, HEIGHT, src_tiling,
> -				 I915_COMPRESSION_NONE);
> +				 I915_COMPRESSION_NONE, region);
>  	scratch_buf_init(data, &dst, WIDTH, HEIGHT, dst_tiling,
> -			 I915_COMPRESSION_NONE);
> +			 I915_COMPRESSION_NONE, region);
>  
>  	if (src_compressed)
>  		scratch_buf_init(data, &src_ccs, WIDTH, HEIGHT,
> -				 src_tiling, src_compression);
> +				 src_tiling, src_compression, region);
>  	if (dst_compressed)
>  		scratch_buf_init(data, &dst_ccs, WIDTH, HEIGHT,
> -				 dst_tiling, dst_compression);
> +				 dst_tiling, dst_compression, region);
>  	scratch_buf_init(data, &ref, WIDTH, HEIGHT, I915_TILING_NONE,
> -			 I915_COMPRESSION_NONE);
> +			 I915_COMPRESSION_NONE, region);
>  
>  	for (int i = 0; i < num_src; i++)
>  		scratch_buf_draw_pattern(data, &src[i].buf,
> @@ -782,6 +785,8 @@ igt_main_args("dac", NULL, help_str, opt_handler, NULL)
>  		  0, },
>  	};
>  	int i;
> +	struct drm_i915_query_memory_regions *regions;
> +	struct igt_collection *set, *region_set;
>  
>  	data_t data = {0, };
>  
> @@ -798,11 +803,19 @@ igt_main_args("dac", NULL, help_str, opt_handler, NULL)
>  
>  		data.bops = buf_ops_create(data.drm_fd);
>  
> +		regions = gem_get_query_memory_regions(data.drm_fd);
> +		igt_assert(regions);
> +
> +		set = get_memory_region_set(regions,
> +					    I915_SYSTEM_MEMORY,
> +					    I915_DEVICE_MEMORY);
> +
>  		igt_fork_hang_detector(data.drm_fd);
>  	}
>  
>  	for (i = 0; i < ARRAY_SIZE(tests); i++) {
>  		const struct test_desc *t = &tests[i];
> +		char name[128];
>  		char src_mode[32];
>  		char dst_mode[32];
>  		const bool src_mixed_tiled = t->flags & SOURCE_MIXED_TILED;
> @@ -832,23 +845,33 @@ igt_main_args("dac", NULL, help_str, opt_handler, NULL)
>  		    t->dst_compression == I915_COMPRESSION_NONE)
>  			src_mode[0] = '\0';
>  
> -		igt_subtest_f("%s%s%s%s",
> -			      src_mode,
> -			      src_mode[0] ? "-to-" : "",
> -			      force_vebox_dst_copy ? "vebox-" : "",
> -			      dst_mode) {
> +		snprintf(name, sizeof(name),
> +			 "%s%s%s%s",
> +			 src_mode,
> +			 src_mode[0] ? "-to-" : "",
> +			 force_vebox_dst_copy ? "vebox-" : "",
> +			 dst_mode);
> +		igt_subtest_with_dynamic(name) {
>  			igt_require_f(data.vebox_copy || !vebox_copy_used,
>  				      "no vebox-copy function\n");
> +			for_each_combination(region_set, 1, set) {
> +				char *sub_name = memregion_dynamic_subtest_name(region_set);
>  
> -			test(&data,
> -			     t->src_tiling, t->dst_tiling,
> -			     t->src_compression, t->dst_compression,
> -			     t->flags);
> +				igt_dynamic_f("%s", sub_name)
> +					test(&data,
> +					     t->src_tiling, t->dst_tiling,
> +					     t->src_compression, t->dst_compression,
> +					     t->flags,
> +					     region_set);
> +
> +				free(sub_name);
> +			}
>  		}
>  	}
>  
>  	igt_fixture {
>  		igt_stop_hang_detector();
>  		buf_ops_destroy(data.bops);
> +		igt_collection_destroy(set);
>  	}
>  }
> -- 
> 2.25.1
>

Looks ok,

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-09-13 17:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-01 15:48 [igt-dev] [PATCH i-g-t 0/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_bufops: Add intel_buf_init_in_region apoorva1.singh
2021-09-13 17:39   ` Zbigniew Kempczyński
2021-09-01 15:48 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_render_copy: Add support for local memory apoorva1.singh
2021-09-13 17:43   ` Zbigniew Kempczyński
2021-09-01 16:14 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-09-01 18:07 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.