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 0A67FC79FBD for ; Wed, 9 Sep 2026 15:47:59 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AF00610F1E3; Wed, 9 Sep 2026 15:47:58 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="bLz+jdeM"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.15]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4DBDF10F1D5 for ; Wed, 9 Sep 2026 15:47:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1788968877; x=1820504877; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=GnGoW+R5rpw53GGw0uSyLodY1FUcWGPs08yyaRS24Mg=; b=bLz+jdeMweB+x9/ernWSviNo7fW9Vn8zXQKUqBZc8cgTz7D5J+AguTo1 juPVDGi/Prmalx7l4QA/ClftDi7gvsWWqPwtua6HD1O9/JJ94V+zt1xHY hEh3B7QxxdUbaiLdRV3WVtoViY5tCrps9geiFJOlCcBHRD/5bxvZA7c/E Jdp8CvqZRQz1y8cPa5cUUCD06hk7rmd7msLF1DpKMS/VhveM0iHQZBmP8 vKGDGqieHM+daBsxKM0qYruJsmeNR3cNJ2sNxrA6S8qzLMIMbJ+oKlQiG 63fSn8sUGucE7mSJtvGKc5C2IW0NGPU0xltmcTnlqV3viwFEMKHawqHcM A==; X-CSE-ConnectionGUID: hma9j8duRHq3uI9db0RkzQ== X-CSE-MsgGUID: tZRYJ+qeRWOBoBBq3+ZUTw== X-IronPort-AV: E=McAfee;i="6800,10657,11900"; a="93091789" X-IronPort-AV: E=Sophos;i="6.25,270,1779174000"; d="scan'208";a="93091789" Received: from fmviesa007.fm.intel.com ([10.60.135.147]) by orvoesa107.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Sep 2026 08:47:57 -0700 X-CSE-ConnectionGUID: 2F7XAw1LSPqhlzlekYpdXA== X-CSE-MsgGUID: F1YMbMoSSpa5JJpd1sJOJw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.25,270,1779174000"; d="scan'208";a="268102489" Received: from mjruhl-vm.amr.corp.intel.com ([10.11.186.166]) by fmviesa007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Sep 2026 08:47:56 -0700 From: "Michael J. Ruhl" To: platform-driver-x86@vger.kernel.org, intel-xe@lists.freedesktop.org, hansg@kernel.org, ilpo.jarvinen@linux.intel.com, matthew.brost@intel.com, rodrigo.vivi@intel.com, thomas.hellstrom@linux.intel.com, airlied@gmail.com, simona@ffwll.ch, david.e.box@linux.intel.com, anoop.c.vijay@intel.com, badal.nilawar@intel.com, matthew.d.roper@intel.com, james.ausmus@intel.com, karthik.poosa@intel.com Subject: [PATCH v7 00/20] Crescent Island PMT support Date: Wed, 9 Sep 2026 08:47:39 -0700 Message-ID: <20260909154739.1515514-22-michael.j.ruhl@intel.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" The Crescent Island (CRI) GPU supports PMT via Xe driver registration. The CRI PMT MMIO mapping is shared for each PMT feature and it is necessary to set an index register value to access the correct memory space. The PMT driver has a callback infrastructure to access data areas with driver specific access. It is does not support the PMT control access. CRI discovery/control spaces are part of the access window so a driver callback is necessary to allow for the correct window to be exposed. Add control path callback support to the PMT driver. Add CRI PMT discovery information. Update the Xe driver to support the CRI PMT access. The crashlog access needs to be done with power enabled (telem is only available when the device is powered). Determine which access is requested, and do the appropriate power request. CRI FW is loaded at device power. Support the late-binding API to wait for FW readiness. (pending sysctl patch set implements the API). v2: Address AI feedback: - add missing entry->cb check - address SRIOV VF concerns - use xe_pm_runtime_put instead of _get in error path Address review comments: - redo power/lock sequencing - support device hotplug events v3: - cleanup power manangement flow - fixed an out of order power management locking issue - add a GUID caching mechanism, for GUID read - removed unused parameter (mmio) v4: - address various review comments - refactor crashlog to allow for return values - for callback usage, decouple PMT remap of data areas - use IS_SRIOV_VF() rather than expose soc-remapper internals - separate locking fixes intos distinct steps - refactor define update patches to seperate BMG and CRI updates - separate internal GUID into separate steps v5: - removed callback helpers - do not return error message with sysfs - fix missed return code check in trigger_store - return error value not false - use DEFINE_RES_MEM - document when base is unused - return error on invalid GUID request v6: - fix enabled/disabled inversion - fix missing DOC reference - change memcpy_to/fromio to readl/writel for register read - guid cache comment and update on valid guid v7: - reordered to have BMG updates followed by CRI support - separate base_offset usage for clarity - added EAGAIN usage to block uninitialized use of the API Michael J. Ruhl (18): platform/x86/intel/pmt: complete pcidev to device update platform/x86/intel/pmt: refactor rmw with a return value platform/x86/intel/pmt: refactor rc with a return value platform/x86/intel/pmt: Add register access callbacks platform/x86/intel/pmt: Do not remap when using callbacks drm/xe/vsec: Do not register BMG PMT for VF drm/xe/vsec: Correct locking order drm/xe/vsec: Use correct pm state get drm/xe/vsec: Add DOC text for VSEC drm/xe/vsec: Support possible hotplug exit drm/xe/vsec: Refactor BattleMage PMT defines drm/xe/vsec: Support EAGAIN return value drm/xe/vsec: Add base_offset to allow for more flexibilty drm/xe/vsec: Support Crescent Island PMT drm/xe/vsec: Crescent Island PMT decode drm/xe/vsec: Crescent Island PMT callbacks drm/xe/vsec: Support late bind fw information drm/xe/vsec: Add PMT GUID internal access drm/xe/vsec: Update PMT internal access drm/xe/vsec: Refactor platform check Documentation/gpu/xe/index.rst | 1 + Documentation/gpu/xe/xe_vsec.rst | 14 + drivers/gpu/drm/xe/regs/xe_pmt.h | 12 +- drivers/gpu/drm/xe/xe_debugfs.c | 48 +- drivers/gpu/drm/xe/xe_device.c | 4 +- drivers/gpu/drm/xe/xe_device_types.h | 9 + drivers/gpu/drm/xe/xe_hwmon.c | 14 +- drivers/gpu/drm/xe/xe_pcode.c | 13 +- drivers/gpu/drm/xe/xe_vsec.c | 548 +++++++++++++++++++-- drivers/gpu/drm/xe/xe_vsec.h | 3 +- drivers/platform/x86/intel/pmt/class.c | 26 +- drivers/platform/x86/intel/pmt/class.h | 5 +- drivers/platform/x86/intel/pmt/crashlog.c | 237 ++++++--- drivers/platform/x86/intel/pmt/discovery.c | 2 +- include/linux/intel_vsec.h | 14 +- 15 files changed, 783 insertions(+), 167 deletions(-) create mode 100644 Documentation/gpu/xe/xe_vsec.rst -- 2.43.0