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 F285EE9DE43 for ; Thu, 9 Apr 2026 07:02:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A4F6F10E74D; Thu, 9 Apr 2026 07:02:38 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="GxX50MD+"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.12]) by gabe.freedesktop.org (Postfix) with ESMTPS id F3B3F10E746 for ; Thu, 9 Apr 2026 07:01:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1775718095; x=1807254095; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=jng5XWT8g8i19TxLVNapzoSc39Rf7wyf552aeN1bf6Y=; b=GxX50MD+WSDnlrpXOSp7+Q7YK22bGgNZKUcW0bH3JPeyct1C4XIz0oxY y6VCdGT6Rwq6QVI4yWTRd3W7x6WkotUFrHEnqf9/WCHNoAZeAvU0QoOK5 Kt09qbWen5Rg3MS8seE3Alr4AsiL8OrXZKqH1r5oEEXQuyAU3BWWbQk+O FGKUPyJxgA85DS+wZAvVdwTmka81U7+OqvhVRB4eWKts6aewobdqCA0f4 3YW7SbA4w+sC/IJtoyHJZhdDxRUsPgmaVPe4D8CUD2igI5j4Jj+r3zk1/ xHplHEa7ZR7ODl5IClppeFdWNDt02YN3eU4bKGOUprFL9tY9uXs9/9kSm w==; X-CSE-ConnectionGUID: 3EV3FoaJRP+bwzTJMkX1qQ== X-CSE-MsgGUID: irsO3/ieSaK/t2g3MPo7Hg== X-IronPort-AV: E=McAfee;i="6800,10657,11753"; a="88165033" X-IronPort-AV: E=Sophos;i="6.23,169,1770624000"; d="scan'208";a="88165033" Received: from fmviesa010.fm.intel.com ([10.60.135.150]) by orvoesa104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Apr 2026 00:01:35 -0700 X-CSE-ConnectionGUID: iyfM/iU8SieC1Zr6xU+2pw== X-CSE-MsgGUID: Hag65SeJReatAgRNgekFsQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.23,169,1770624000"; d="scan'208";a="224384012" Received: from varungup-desk.iind.intel.com ([10.190.238.71]) by fmviesa010-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Apr 2026 00:01:32 -0700 From: Arvind Yadav To: igt-dev@lists.freedesktop.org Cc: matthew.brost@intel.com, himal.prasad.ghimiray@intel.com, thomas.hellstrom@linux.intel.com, nishit.sharma@intel.com, pravalika.gurram@intel.com Subject: [PATCH i-g-t v7 2/9] lib/xe: Add purgeable memory ioctl support Date: Thu, 9 Apr 2026 12:31:11 +0530 Message-ID: <20260409070118.2211602-3-arvind.yadav@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260409070118.2211602-1-arvind.yadav@intel.com> References: <20260409070118.2211602-1-arvind.yadav@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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" Add xe_vm_madvise_purgeable() helper function to support purgeable memory management through the XE madvise ioctl. This allows applications to hint to the kernel about buffer object usage patterns for better memory management under pressure. The function provides a clean interface to: - Mark buffer objects as DONTNEED (purgeable) - Mark buffer objects as WILLNEED (not purgeable) Returns the retained value directly (1 if backing store exists, 0 if purged). Also update __xe_vm_madvise() to reject purgeable state operations and direct users to the dedicated helper. Here purgeable state requires an output (retained_ptr) field, which does not fit the generic type/op_val model of __xe_vm_madvise(). Add a dedicated helper that populates the purgeable-specific ioctl fields and returns the retained value directly. v2: - retained must be initialized to 0(Thomas) v5: - Rename retained to retained_ptr. (Jose) v7: - Mention this new ioctl instead of __xe_vm_madvise(). (Nishit) Cc: Matthew Brost Cc: Thomas Hellström Cc: Himal Prasad Ghimiray Cc: Pravalika Gurram Reviewed-by: Nishit Sharma Signed-off-by: Arvind Yadav --- lib/xe/xe_ioctl.c | 33 +++++++++++++++++++++++++++++++++ lib/xe/xe_ioctl.h | 2 ++ 2 files changed, 35 insertions(+) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index ea3f2fcaa..955607f93 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -785,6 +785,9 @@ int __xe_vm_madvise(int fd, uint32_t vm, uint64_t addr, uint64_t range, case DRM_XE_MEM_RANGE_ATTR_PAT: madvise.pat_index.val = op_val; break; + case DRM_XE_VMA_ATTR_PURGEABLE_STATE: + /* Purgeable state handled by xe_vm_madvise_purgeable */ + return -EINVAL; default: igt_warn("Unknown attribute\n"); return -EINVAL; @@ -821,6 +824,36 @@ void xe_vm_madvise(int fd, uint32_t vm, uint64_t addr, uint64_t range, instance), 0); } +/** + * xe_vm_madvise_purgeable: + * @fd: xe device fd + * @vm_id: vm_id of the virtual range + * @start: start of the virtual address range + * @range: size of the virtual address range + * @state: purgeable state (DRM_XE_VMA_PURGEABLE_STATE_WILLNEED or DONTNEED) + * + * Sets the purgeable state for a virtual memory range. This allows applications + * to hint to the kernel about buffer object usage patterns for better memory management. + * + * Returns: retained value (1 if backing store exists, 0 if purged) + */ +uint32_t xe_vm_madvise_purgeable(int fd, uint32_t vm_id, uint64_t start, + uint64_t range, uint32_t state) +{ + uint32_t retained_val = 0; + struct drm_xe_madvise madvise = { + .vm_id = vm_id, + .start = start, + .range = range, + .type = DRM_XE_VMA_ATTR_PURGEABLE_STATE, + .purge_state_val.val = state, + .purge_state_val.retained_ptr = (uint64_t)(uintptr_t)&retained_val, + }; + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_MADVISE, &madvise), 0); + return retained_val; +} + #define BIND_SYNC_VAL 0x686868 void xe_vm_bind_lr_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, uint64_t addr, uint64_t size, uint32_t flags) diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index b62d259fd..a02d68cfe 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -108,6 +108,8 @@ int __xe_vm_madvise(int fd, uint32_t vm, uint64_t addr, uint64_t range, uint64_t uint32_t type, uint32_t op_val, uint16_t policy, uint16_t instance); void xe_vm_madvise(int fd, uint32_t vm, uint64_t addr, uint64_t range, uint64_t ext, uint32_t type, uint32_t op_val, uint16_t policy, uint16_t instance); +uint32_t xe_vm_madvise_purgeable(int fd, uint32_t vm_id, uint64_t start, + uint64_t range, uint32_t state); int xe_vm_number_vmas_in_range(int fd, struct drm_xe_vm_query_mem_range_attr *vmas_attr); int xe_vm_vma_attrs(int fd, struct drm_xe_vm_query_mem_range_attr *vmas_attr, struct drm_xe_mem_range_attr *mem_attr); -- 2.43.0