* [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests
@ 2019-10-31 0:28 Umesh Nerlige Ramappa
2019-10-31 1:02 ` [igt-dev] ✓ Fi.CI.BAT: success for test/perf: Add support for TGL in perf tests (rev4) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Umesh Nerlige Ramappa @ 2019-10-31 0:28 UTC (permalink / raw)
To: igt-dev, Lionel G Landwerlin
Add following changes to enable perf tests on TGL
- Support only a single OA format
- Add TGL metrics
- Update whitelist test case
- Cleanup mi-rpc test if it fails
- Skip unsupported test - gen8-unprivileged-single-ctx-counters
v2: Remove error cleanup in mi-rpc
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/perf.c | 66 ++++++++++++++++++++++++++++++++++++++--------------
1 file changed, 48 insertions(+), 18 deletions(-)
diff --git a/tests/perf.c b/tests/perf.c
index 5ad8b2db..50a28a21 100644
--- a/tests/perf.c
+++ b/tests/perf.c
@@ -159,6 +159,15 @@ static struct oa_format gen8_oa_formats[I915_OA_FORMAT_MAX] = {
.b_off = 32, .n_b = 8, },
};
+static struct oa_format gen12_oa_formats[I915_OA_FORMAT_MAX] = {
+ [I915_OA_FORMAT_A32u40_A4u32_B8_C8] = {
+ "A32u40_A4u32_B8_C8", .size = 256,
+ .a40_high_off = 160, .a40_low_off = 16, .n_a40 = 32,
+ .a_off = 144, .n_a = 4, .first_a = 32,
+ .b_off = 192, .n_b = 8,
+ .c_off = 224, .n_c = 8, },
+};
+
static bool hsw_undefined_a_counters[45] = {
[4] = true,
[6] = true,
@@ -206,7 +215,10 @@ get_oa_format(enum drm_i915_oa_format format)
{
if (IS_HASWELL(devid))
return hsw_oa_formats[format];
- return gen8_oa_formats[format];
+ else if (IS_GEN12(devid))
+ return gen12_oa_formats[format];
+ else
+ return gen8_oa_formats[format];
}
static void
@@ -945,6 +957,8 @@ init_sys_info(void)
test_set_uuid = "db41edd4-d8e7-4730-ad11-b9a2d6833503";
} else if (IS_ICELAKE(devid)) {
test_set_uuid = "a291665e-244b-4b76-9b9a-01de9d3c8068";
+ } else if (IS_TIGERLAKE(devid)) {
+ test_set_uuid = "80a833f0-2504-4321-8894-e9277844ce7b";
} else {
igt_debug("unsupported GT\n");
return false;
@@ -3846,6 +3860,8 @@ test_whitelisted_registers_userspace_config(void)
uint32_t b_counters_regs[200];
uint32_t flex_regs[200];
uint32_t i;
+ uint32_t oa_start_trig1, oa_start_trig8;
+ uint32_t oa_report_trig1, oa_report_trig8;
uint64_t config_id;
char path[512];
int ret;
@@ -3869,14 +3885,26 @@ test_whitelisted_registers_userspace_config(void)
memset(&config, 0, sizeof(config));
memcpy(config.uuid, uuid, sizeof(config.uuid));
+ if (intel_gen(devid) >= 12) {
+ oa_start_trig1 = 0xd900;
+ oa_start_trig8 = 0xd91c;
+ oa_report_trig1 = 0xd920;
+ oa_report_trig8 = 0xd93c;
+ } else {
+ oa_start_trig1 = 0x2710;
+ oa_start_trig8 = 0x272c;
+ oa_report_trig1 = 0x2740;
+ oa_report_trig8 = 0x275c;
+ }
+
/* OASTARTTRIG[1-8] */
- for (i = 0x2710; i <= 0x272c; i += 4) {
+ for (i = oa_start_trig1; i <= oa_start_trig8; i += 4) {
b_counters_regs[config.n_boolean_regs * 2] = i;
b_counters_regs[config.n_boolean_regs * 2 + 1] = 0;
config.n_boolean_regs++;
}
/* OAREPORTTRIG[1-8] */
- for (i = 0x2740; i <= 0x275c; i += 4) {
+ for (i = oa_report_trig1; i <= oa_report_trig8; i += 4) {
b_counters_regs[config.n_boolean_regs * 2] = i;
b_counters_regs[config.n_boolean_regs * 2 + 1] = 0;
config.n_boolean_regs++;
@@ -3896,10 +3924,6 @@ test_whitelisted_registers_userspace_config(void)
/* Mux registers (too many of them, just checking bounds) */
i = 0;
- /* NOA_WRITE */
- mux_regs[i++] = 0x9800;
- mux_regs[i++] = 0;
-
if (IS_HASWELL(devid)) {
/* Haswell specific. undocumented... */
mux_regs[i++] = 0x9ec0;
@@ -3922,10 +3946,6 @@ test_whitelisted_registers_userspace_config(void)
mux_regs[i++] = 0;
}
- /* HALF_SLICE_CHICKEN2 (shared with kernel workaround) */
- mux_regs[i++] = 0xE180;
- mux_regs[i++] = 0;
-
if (IS_CHERRYVIEW(devid)) {
/* Cherryview specific. undocumented... */
mux_regs[i++] = 0x182300;
@@ -3934,12 +3954,20 @@ test_whitelisted_registers_userspace_config(void)
mux_regs[i++] = 0;
}
- /* PERFCNT[12] */
- mux_regs[i++] = 0x91B8;
- mux_regs[i++] = 0;
- /* PERFMATRIX */
- mux_regs[i++] = 0x91C8;
- mux_regs[i++] = 0;
+ if (intel_gen(devid) <= 11) {
+ /* NOA_WRITE */
+ mux_regs[i++] = 0x9800;
+ mux_regs[i++] = 0;
+ /* HALF_SLICE_CHICKEN2 (shared with kernel workaround) */
+ mux_regs[i++] = 0xE180;
+ mux_regs[i++] = 0;
+ /* PERFCNT[12] */
+ mux_regs[i++] = 0x91B8;
+ mux_regs[i++] = 0;
+ /* PERFMATRIX */
+ mux_regs[i++] = 0x91C8;
+ mux_regs[i++] = 0;
+ }
config.mux_regs_ptr = (uintptr_t) mux_regs;
config.n_mux_regs = i / 2;
@@ -4170,8 +4198,10 @@ igt_main
* functionality to HW filter timer reports for a specific
* context (SKL+) can't stop multiple applications viewing
* system-wide data via MI_REPORT_PERF_COUNT commands.
+ *
+ * For gen12 implement a separate test that uses only OAR
*/
- igt_require(intel_gen(devid) >= 8);
+ igt_require(intel_gen(devid) >= 8 && intel_gen(devid) < 12);
gen8_test_single_ctx_render_target_writes_a_counter();
}
--
2.20.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for test/perf: Add support for TGL in perf tests (rev4) 2019-10-31 0:28 [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Umesh Nerlige Ramappa @ 2019-10-31 1:02 ` Patchwork 2019-11-01 6:19 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2019-11-04 11:14 ` [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Lionel Landwerlin 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-10-31 1:02 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev == Series Details == Series: test/perf: Add support for TGL in perf tests (rev4) URL : https://patchwork.freedesktop.org/series/67988/ State : success == Summary == CI Bug Log - changes from CI_DRM_7228 -> IGTPW_3637 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/index.html Known issues ------------ Here are the changes found in IGTPW_3637 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_gem_contexts: - fi-bsw-n3050: [PASS][1] -> [INCOMPLETE][2] ([fdo# 111542]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/fi-bsw-n3050/igt@i915_selftest@live_gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/fi-bsw-n3050/igt@i915_selftest@live_gem_contexts.html #### Possible fixes #### * igt@gem_ctx_create@basic-files: - fi-icl-u3: [INCOMPLETE][3] ([fdo#107713] / [fdo#109100]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/fi-icl-u3/igt@gem_ctx_create@basic-files.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/fi-icl-u3/igt@gem_ctx_create@basic-files.html * igt@i915_selftest@live_hangcheck: - {fi-icl-u4}: [INCOMPLETE][5] ([fdo#107713] / [fdo#108569]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/fi-icl-u4/igt@i915_selftest@live_hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/fi-icl-u4/igt@i915_selftest@live_hangcheck.html * igt@kms_chamelium@hdmi-edid-read: - fi-kbl-7500u: [FAIL][7] ([fdo#109483]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/fi-kbl-7500u/igt@kms_chamelium@hdmi-edid-read.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/fi-kbl-7500u/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][9] ([fdo#111045] / [fdo#111096]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo# 111542]: https://bugs.freedesktop.org/show_bug.cgi?id= 111542 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 Participating hosts (50 -> 42) ------------------------------ Additional (1): fi-kbl-soraka Missing (9): fi-ilk-m540 fi-tgl-u fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-icl-guc fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5253 -> IGTPW_3637 CI-20190529: 20190529 CI_DRM_7228: 5efc505498d2612451f6230a6347f4e0e1960e50 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3637: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/index.html IGT_5253: d46ccb32cf693e8d8253543e9a4fbe5eaef4aa41 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for test/perf: Add support for TGL in perf tests (rev4) 2019-10-31 0:28 [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Umesh Nerlige Ramappa 2019-10-31 1:02 ` [igt-dev] ✓ Fi.CI.BAT: success for test/perf: Add support for TGL in perf tests (rev4) Patchwork @ 2019-11-01 6:19 ` Patchwork 2019-11-04 11:14 ` [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Lionel Landwerlin 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-11-01 6:19 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: igt-dev == Series Details == Series: test/perf: Add support for TGL in perf tests (rev4) URL : https://patchwork.freedesktop.org/series/67988/ State : success == Summary == CI Bug Log - changes from CI_DRM_7228_full -> IGTPW_3637_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3637_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@perf@gen8-unprivileged-single-ctx-counters: - {shard-tglb}: [SKIP][1] ([fdo#112172]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb1/igt@perf@gen8-unprivileged-single-ctx-counters.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb8/igt@perf@gen8-unprivileged-single-ctx-counters.html Known issues ------------ Here are the changes found in IGTPW_3637_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@rcs0-s3: - shard-kbl: [PASS][3] -> [DMESG-WARN][4] ([fdo#108566]) +9 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-kbl2/igt@gem_ctx_isolation@rcs0-s3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_isolation@vcs1-dirty-create: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276] / [fdo#112080]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb8/igt@gem_ctx_isolation@vcs1-dirty-create.html * igt@gem_exec_parallel@vcs1-fds: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#112080]) +9 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb4/igt@gem_exec_parallel@vcs1-fds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb7/igt@gem_exec_parallel@vcs1-fds.html * igt@gem_exec_schedule@in-order-bsd2: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276]) +7 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb4/igt@gem_exec_schedule@in-order-bsd2.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb7/igt@gem_exec_schedule@in-order-bsd2.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#112146]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [PASS][13] -> [DMESG-WARN][14] ([fdo#111870]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-snb6/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-kbl7/igt@i915_pm_rc6_residency@rc6-accuracy.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-kbl3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-random: - shard-kbl: [PASS][17] -> [FAIL][18] ([fdo#103232]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html - shard-apl: [PASS][19] -> [FAIL][20] ([fdo#103232]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-apl: [PASS][21] -> [FAIL][22] ([fdo#103167]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html - shard-kbl: [PASS][23] -> [FAIL][24] ([fdo#103167]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-glk: [PASS][25] -> [FAIL][26] ([fdo#103167]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][27] -> [FAIL][28] ([fdo#103167]) +6 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109441]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html #### Possible fixes #### * igt@gem_ctx_exec@basic-invalid-context-vcs1: - shard-iclb: [SKIP][31] ([fdo#112080]) -> [PASS][32] +6 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb5/igt@gem_ctx_exec@basic-invalid-context-vcs1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb4/igt@gem_ctx_exec@basic-invalid-context-vcs1.html * igt@gem_ctx_isolation@vcs1-clean: - shard-iclb: [SKIP][33] ([fdo#109276] / [fdo#112080]) -> [PASS][34] +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb6/igt@gem_ctx_isolation@vcs1-clean.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb2/igt@gem_ctx_isolation@vcs1-clean.html * {igt@gem_ctx_persistence@vcs1-queued}: - {shard-tglb}: [FAIL][35] ([fdo#112180]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb8/igt@gem_ctx_persistence@vcs1-queued.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb1/igt@gem_ctx_persistence@vcs1-queued.html * {igt@gem_ctx_persistence@vecs0-queued}: - shard-iclb: [FAIL][37] ([fdo#112180]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb8/igt@gem_ctx_persistence@vecs0-queued.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb2/igt@gem_ctx_persistence@vecs0-queued.html * igt@gem_exec_schedule@reorder-wide-blt: - {shard-tglb}: [INCOMPLETE][39] ([fdo#111747]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb2/igt@gem_exec_schedule@reorder-wide-blt.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb2/igt@gem_exec_schedule@reorder-wide-blt.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][41] ([fdo#112146]) -> [PASS][42] +5 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-snb: [DMESG-WARN][43] ([fdo#111870]) -> [PASS][44] +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-hsw: [DMESG-WARN][45] ([fdo#111870]) -> [PASS][46] +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-hsw8/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][47] ([fdo#108566]) -> [PASS][48] +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-apl4/igt@i915_suspend@sysfs-reader.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-apl8/igt@i915_suspend@sysfs-reader.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen: - shard-hsw: [INCOMPLETE][49] ([fdo#103540]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-hsw7/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-hsw5/igt@kms_cursor_crc@pipe-b-cursor-64x21-onscreen.html * igt@kms_cursor_edge_walk@pipe-b-64x64-bottom-edge: - {shard-tglb}: [INCOMPLETE][51] ([fdo#112035 ]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb8/igt@kms_cursor_edge_walk@pipe-b-64x64-bottom-edge.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb2/igt@kms_cursor_edge_walk@pipe-b-64x64-bottom-edge.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - {shard-tglb}: [TIMEOUT][53] ([fdo#112168]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - {shard-tglb}: [INCOMPLETE][55] ([fdo#111747] / [fdo#111832] / [fdo#111850]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb4/igt@kms_fbcon_fbt@fbc-suspend.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][57] ([fdo#108566]) -> [PASS][58] +4 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [FAIL][59] ([fdo#103167]) -> [PASS][60] +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - {shard-tglb}: [FAIL][61] ([fdo#103167]) -> [PASS][62] +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-suspend: - {shard-tglb}: [INCOMPLETE][63] ([fdo#111832] / [fdo#111850]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb3/igt@kms_frontbuffer_tracking@psr-suspend.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb4/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: - {shard-tglb}: [DMESG-WARN][65] ([fdo#111600]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb2/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][67] ([fdo#109441]) -> [PASS][68] +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb6/igt@kms_psr@psr2_cursor_render.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-apl: [INCOMPLETE][69] ([fdo#103927]) -> [PASS][70] +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-apl1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-apl3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - {shard-tglb}: [INCOMPLETE][71] ([fdo#111850]) -> [PASS][72] +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb8/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@perf@non-sampling-read-error: - {shard-tglb}: [SKIP][73] ([fdo#112172]) -> [PASS][74] +10 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-tglb7/igt@perf@non-sampling-read-error.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-tglb7/igt@perf@non-sampling-read-error.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][75] ([fdo#109276]) -> [PASS][76] +14 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb5/igt@prime_vgem@fence-wait-bsd2.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][77] ([fdo#109276] / [fdo#112080]) -> [FAIL][78] ([fdo#111329]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [FAIL][79] ([fdo#111330]) -> [SKIP][80] ([fdo#109276]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-iclb5/igt@gem_mocs_settings@mocs-isolation-bsd2.html * igt@kms_flip@flip-vs-suspend: - shard-kbl: [INCOMPLETE][81] ([fdo#103665]) -> [DMESG-WARN][82] ([fdo#108566]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7228/shard-kbl7/igt@kms_flip@flip-vs-suspend.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/shard-kbl3/igt@kms_flip@flip-vs-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108838]: https://bugs.freedesktop.org/show_bug.cgi?id=108838 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600 [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646 [fdo#111647]: https://bugs.freedesktop.org/show_bug.cgi?id=111647 [fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671 [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735 [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 [fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781 [fdo#111831]: https://bugs.freedesktop.org/show_bug.cgi?id=111831 [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832 [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884 [fdo#112001]: https://bugs.freedesktop.org/show_bug.cgi?id=112001 [fdo#112035 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112035 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112081]: https://bugs.freedesktop.org/show_bug.cgi?id=112081 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112168]: https://bugs.freedesktop.org/show_bug.cgi?id=112168 [fdo#112172]: https://bugs.freedesktop.org/show_bug.cgi?id=112172 [fdo#112180]: https://bugs.freedesktop.org/show_bug.cgi?id=112180 [fdo#112182]: https://bugs.freedesktop.org/show_bug.cgi?id=112182 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5253 -> IGTPW_3637 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7228: 5efc505498d2612451f6230a6347f4e0e1960e50 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3637: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/index.html IGT_5253: d46ccb32cf693e8d8253543e9a4fbe5eaef4aa41 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3637/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests 2019-10-31 0:28 [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Umesh Nerlige Ramappa 2019-10-31 1:02 ` [igt-dev] ✓ Fi.CI.BAT: success for test/perf: Add support for TGL in perf tests (rev4) Patchwork 2019-11-01 6:19 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2019-11-04 11:14 ` Lionel Landwerlin 2 siblings, 0 replies; 4+ messages in thread From: Lionel Landwerlin @ 2019-11-04 11:14 UTC (permalink / raw) To: Umesh Nerlige Ramappa, igt-dev On 31/10/2019 02:28, Umesh Nerlige Ramappa wrote: > Add following changes to enable perf tests on TGL > - Support only a single OA format > - Add TGL metrics > - Update whitelist test case > - Cleanup mi-rpc test if it fails > - Skip unsupported test - gen8-unprivileged-single-ctx-counters > > v2: Remove error cleanup in mi-rpc > > Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> > --- > tests/perf.c | 66 ++++++++++++++++++++++++++++++++++++++-------------- > 1 file changed, 48 insertions(+), 18 deletions(-) > > diff --git a/tests/perf.c b/tests/perf.c > index 5ad8b2db..50a28a21 100644 > --- a/tests/perf.c > +++ b/tests/perf.c > @@ -159,6 +159,15 @@ static struct oa_format gen8_oa_formats[I915_OA_FORMAT_MAX] = { > .b_off = 32, .n_b = 8, }, > }; > > +static struct oa_format gen12_oa_formats[I915_OA_FORMAT_MAX] = { > + [I915_OA_FORMAT_A32u40_A4u32_B8_C8] = { > + "A32u40_A4u32_B8_C8", .size = 256, > + .a40_high_off = 160, .a40_low_off = 16, .n_a40 = 32, > + .a_off = 144, .n_a = 4, .first_a = 32, > + .b_off = 192, .n_b = 8, > + .c_off = 224, .n_c = 8, }, > +}; > + > static bool hsw_undefined_a_counters[45] = { > [4] = true, > [6] = true, > @@ -206,7 +215,10 @@ get_oa_format(enum drm_i915_oa_format format) > { > if (IS_HASWELL(devid)) > return hsw_oa_formats[format]; > - return gen8_oa_formats[format]; > + else if (IS_GEN12(devid)) > + return gen12_oa_formats[format]; > + else > + return gen8_oa_formats[format]; > } > > static void > @@ -945,6 +957,8 @@ init_sys_info(void) > test_set_uuid = "db41edd4-d8e7-4730-ad11-b9a2d6833503"; > } else if (IS_ICELAKE(devid)) { > test_set_uuid = "a291665e-244b-4b76-9b9a-01de9d3c8068"; > + } else if (IS_TIGERLAKE(devid)) { > + test_set_uuid = "80a833f0-2504-4321-8894-e9277844ce7b"; > } else { > igt_debug("unsupported GT\n"); > return false; > @@ -3846,6 +3860,8 @@ test_whitelisted_registers_userspace_config(void) > uint32_t b_counters_regs[200]; > uint32_t flex_regs[200]; > uint32_t i; > + uint32_t oa_start_trig1, oa_start_trig8; > + uint32_t oa_report_trig1, oa_report_trig8; > uint64_t config_id; > char path[512]; > int ret; > @@ -3869,14 +3885,26 @@ test_whitelisted_registers_userspace_config(void) > memset(&config, 0, sizeof(config)); > memcpy(config.uuid, uuid, sizeof(config.uuid)); > > + if (intel_gen(devid) >= 12) { > + oa_start_trig1 = 0xd900; > + oa_start_trig8 = 0xd91c; > + oa_report_trig1 = 0xd920; > + oa_report_trig8 = 0xd93c; > + } else { > + oa_start_trig1 = 0x2710; > + oa_start_trig8 = 0x272c; > + oa_report_trig1 = 0x2740; > + oa_report_trig8 = 0x275c; > + } > + > /* OASTARTTRIG[1-8] */ > - for (i = 0x2710; i <= 0x272c; i += 4) { > + for (i = oa_start_trig1; i <= oa_start_trig8; i += 4) { > b_counters_regs[config.n_boolean_regs * 2] = i; > b_counters_regs[config.n_boolean_regs * 2 + 1] = 0; > config.n_boolean_regs++; > } > /* OAREPORTTRIG[1-8] */ > - for (i = 0x2740; i <= 0x275c; i += 4) { > + for (i = oa_report_trig1; i <= oa_report_trig8; i += 4) { > b_counters_regs[config.n_boolean_regs * 2] = i; > b_counters_regs[config.n_boolean_regs * 2 + 1] = 0; > config.n_boolean_regs++; > @@ -3896,10 +3924,6 @@ test_whitelisted_registers_userspace_config(void) > /* Mux registers (too many of them, just checking bounds) */ > i = 0; > > - /* NOA_WRITE */ > - mux_regs[i++] = 0x9800; > - mux_regs[i++] = 0; > - Oh dear... There is a mistake in the existing code. NOA_WRITE is 0x9880 and it's supposed to be the same address on Gen12. It should be available on all platforms. 0x9800 is actually MICRO_BP0_0. The rest of this patch looks good. Thanks, -Lionel > if (IS_HASWELL(devid)) { > /* Haswell specific. undocumented... */ > mux_regs[i++] = 0x9ec0; > @@ -3922,10 +3946,6 @@ test_whitelisted_registers_userspace_config(void) > mux_regs[i++] = 0; > } > > - /* HALF_SLICE_CHICKEN2 (shared with kernel workaround) */ > - mux_regs[i++] = 0xE180; > - mux_regs[i++] = 0; > - > if (IS_CHERRYVIEW(devid)) { > /* Cherryview specific. undocumented... */ > mux_regs[i++] = 0x182300; > @@ -3934,12 +3954,20 @@ test_whitelisted_registers_userspace_config(void) > mux_regs[i++] = 0; > } > > - /* PERFCNT[12] */ > - mux_regs[i++] = 0x91B8; > - mux_regs[i++] = 0; > - /* PERFMATRIX */ > - mux_regs[i++] = 0x91C8; > - mux_regs[i++] = 0; > + if (intel_gen(devid) <= 11) { > + /* NOA_WRITE */ > + mux_regs[i++] = 0x9800; > + mux_regs[i++] = 0; > + /* HALF_SLICE_CHICKEN2 (shared with kernel workaround) */ > + mux_regs[i++] = 0xE180; > + mux_regs[i++] = 0; > + /* PERFCNT[12] */ > + mux_regs[i++] = 0x91B8; > + mux_regs[i++] = 0; > + /* PERFMATRIX */ > + mux_regs[i++] = 0x91C8; > + mux_regs[i++] = 0; > + } > > config.mux_regs_ptr = (uintptr_t) mux_regs; > config.n_mux_regs = i / 2; > @@ -4170,8 +4198,10 @@ igt_main > * functionality to HW filter timer reports for a specific > * context (SKL+) can't stop multiple applications viewing > * system-wide data via MI_REPORT_PERF_COUNT commands. > + * > + * For gen12 implement a separate test that uses only OAR > */ > - igt_require(intel_gen(devid) >= 8); > + igt_require(intel_gen(devid) >= 8 && intel_gen(devid) < 12); > gen8_test_single_ctx_render_target_writes_a_counter(); > } > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-11-04 11:22 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-10-31 0:28 [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Umesh Nerlige Ramappa 2019-10-31 1:02 ` [igt-dev] ✓ Fi.CI.BAT: success for test/perf: Add support for TGL in perf tests (rev4) Patchwork 2019-11-01 6:19 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2019-11-04 11:14 ` [igt-dev] [PATCH i-g-t] test/perf: Add support for TGL in perf tests Lionel Landwerlin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox