All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t] i915/gem_exec_fair: Extend icl ctx timestamp w/a to gen11
@ 2021-06-24 12:22 Tejas Upadhyay
  2021-06-25 13:03 ` Tvrtko Ursulin
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Tejas Upadhyay @ 2021-06-24 12:22 UTC (permalink / raw)
  To: igt-dev

80ns timestamp interval identified for icl also applies to
gen11 platforms. igt@gem_exec_fair@basic-deadline is
passing with the change on ehl and jsl.

Signed-off-by: Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>
---
 tests/i915/gem_exec_fair.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/tests/i915/gem_exec_fair.c b/tests/i915/gem_exec_fair.c
index 628f4df2..45237574 100644
--- a/tests/i915/gem_exec_fair.c
+++ b/tests/i915/gem_exec_fair.c
@@ -98,16 +98,11 @@ static uint64_t div64_u64_round_up(uint64_t x, uint64_t y)
 	return (x + y - 1) / y;
 }
 
-static bool is_icelake(int i915)
-{
-	return intel_get_device_info(intel_get_drm_devid(i915))->is_icelake;
-}
-
 static uint64_t ns_to_ctx_ticks(int i915, uint64_t ns)
 {
 	int f = read_timestamp_frequency(i915);
-	if (is_icelake(i915))
-		f = 12500000; /* icl!!! are you feeling alright? CTX vs CS */
+	if (intel_gen(intel_get_drm_devid(i915)) == 11)
+		f = 12500000; /* gen11!!! are you feeling alright? CTX vs CS */
 	return div64_u64_round_up(ns * f, NSEC64);
 }
 
-- 
2.31.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2021-06-28 13:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-24 12:22 [igt-dev] [i-g-t] i915/gem_exec_fair: Extend icl ctx timestamp w/a to gen11 Tejas Upadhyay
2021-06-25 13:03 ` Tvrtko Ursulin
2021-06-25 14:02   ` Tvrtko Ursulin
2021-06-28 11:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-06-28 13:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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.