From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 623BAD41C3A for ; Thu, 14 Nov 2024 04:58:49 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1FF4810E16D; Thu, 14 Nov 2024 04:58:49 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="CI9Zfaj1"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.12]) by gabe.freedesktop.org (Postfix) with ESMTPS id 466E010E0E4; Thu, 14 Nov 2024 04:58:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1731560327; x=1763096327; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=z3pUKaMZ6GavDPc9LBLziKD/UdHvlihey3Lok3Y7CLw=; b=CI9Zfaj1RV1DHhZLMQkgrfn8UcNXW2wYlZ4x+Mk5772qPOUiKV6Ljc8Q fQrY1OH1MCyAF3qvF6F8k5BPpHrPK+EqZE372Z5dri6Oktmj4ovhRKUHb tX+/pDlJtP+fMUyoLN6Ppyq/YGJlY6fbqxA5gCvuKeLxMn/ykYCqGi19+ SVk5hP2JiyTA8nHnh+hhLfRtmUj5lFITce6P52Q8MCGcmMrzZrueqWDij UDbFxvRkqJUHt4o2jHwlSYI24KBzWD7AW3ZUDwuT2ZduPyed+cQOOoFgh i/FbgTiyxXYRYZ1to9EvHCnpUuwDE42lvaJkFzLaYzN4fZBZCc2ekcyzt g==; X-CSE-ConnectionGUID: POxWvwo/SCWCMmJgRFGTUw== X-CSE-MsgGUID: TvDAsprJTAmEcWiUjixrqA== X-IronPort-AV: E=McAfee;i="6700,10204,11255"; a="35409528" X-IronPort-AV: E=Sophos;i="6.12,153,1728975600"; d="scan'208";a="35409528" Received: from fmviesa003.fm.intel.com ([10.60.135.143]) by fmvoesa106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Nov 2024 20:58:47 -0800 X-CSE-ConnectionGUID: ksXG85XyTtWz7qIKF9rASQ== X-CSE-MsgGUID: 1snU90b/TUCT/zDkOxjmpw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.12,153,1728975600"; d="scan'208";a="92139105" Received: from tejas-super-server.iind.intel.com ([10.145.169.166]) by fmviesa003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Nov 2024 20:58:45 -0800 From: Tejas Upadhyay To: igt-dev@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Tejas Upadhyay Subject: [i-g-t 0/4] Add pci_membarrier test in xe_mmap Date: Thu, 14 Nov 2024 10:31:25 +0530 Message-Id: <20241114050129.1381711-1-tejas.upadhyay@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: igt-dev@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development mailing list for IGT GPU Tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" Series adds, 1. Remove all local defines which are landed from upstream kernel include 2. New flag in mmap_offset ioctl to provide query support for special offset. 3. Adds pci_membarrier subtests xe_mmap test Note: Similar drm-uapi change made here is under review in KMD as well Tejas Upadhyay (4): lib/i915_drm_local: Remove macros added via merged kernel include/drm-uapi-experimental: Move i915_drm_local.h to drm-uapi-experimental include/intel_drm_local.h: Add DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER tests/xe/mmap: add tests for pci mem barrier .../drm-uapi-experimental/intel_drm_local.h | 29 ++++++ lib/i915/gem_scheduler.c | 2 +- lib/i915/i915_drm_local.h | 6 -- lib/i915/intel_memory_region.h | 2 +- lib/igt_gt.h | 2 +- tests/intel/xe_mmap.c | 96 +++++++++++++++++++ tools/i915-perf/i915_perf_recorder.c | 2 +- 7 files changed, 129 insertions(+), 10 deletions(-) create mode 100644 include/drm-uapi-experimental/intel_drm_local.h -- 2.34.1