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 858BEC88E48 for ; Wed, 9 Sep 2026 15:48:05 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3CAB910F1F1; Wed, 9 Sep 2026 15:48:05 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="J6u+pTMX"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.15]) by gabe.freedesktop.org (Postfix) with ESMTPS id 017FE10F1E2 for ; Wed, 9 Sep 2026 15:47:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1788968879; x=1820504879; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=jAuRfG7f+tXzori0499A2Pjdiea+MVvia5MkJ0BIdBM=; b=J6u+pTMXStUBo444RAQabOvnlUkIoIn7W8IT5kruSsmba01eooje1RyU JANjPYjrgOLMbwL+2m1LJiCa0dbaKAU8/Ys9duD2FtaBMzi28AdCIQhGI iyD9iVrHHLvAiSjsWGjoAVbz1AHlzJBdlkAqQtJbQmdhJueQYdihIQ9NK yhFbi6qTfCGdKOTpJmHOt3Aahomx9LpC1HJ9+eoyWHufDwOOgbl3Z4g3e vv/RqH8myJh1vR79InwXS3fv40S8unD1KLhpXTGB7UxggymqR/PrgSA3F +Osw+jpSMPai++Kpq/QfGsfAs71NXbFIVoJMs9lGlPIPNaO9HIOUulFNS g==; X-CSE-ConnectionGUID: qQGngNH+RuW05q4YGzblNA== X-CSE-MsgGUID: K8seYYwIT9ao8VsynHRjDg== X-IronPort-AV: E=McAfee;i="6800,10657,11900"; a="93091851" X-IronPort-AV: E=Sophos;i="6.25,270,1779174000"; d="scan'208";a="93091851" 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:58 -0700 X-CSE-ConnectionGUID: sC7/81mCSx+VR9NeoH2PIA== X-CSE-MsgGUID: 0RCGJfk9QMueTqsofoHn7w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.25,270,1779174000"; d="scan'208";a="268102529" 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:57 -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 13/20] drm/xe/vsec: Add base_offset to allow for more flexibilty Date: Wed, 9 Sep 2026 08:47:52 -0700 Message-ID: <20260909154739.1515514-35-michael.j.ruhl@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260909154739.1515514-22-michael.j.ruhl@intel.com> References: <20260909154739.1515514-22-michael.j.ruhl@intel.com> 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" Current pmt_telem_read() usage is a fixed (for BMG) offset. In order to support other devices this must be settable. Add a base offset for more flexibility. Add a check to verify that it has been set before allowing device access. Signed-off-by: Michael J. Ruhl --- drivers/gpu/drm/xe/xe_device_types.h | 2 ++ drivers/gpu/drm/xe/xe_vsec.c | 9 ++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index f88bacf63c83..b50af84350fb 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -467,6 +467,8 @@ struct xe_device { struct { /** @pmt.lock: protect access for telemetry data */ struct mutex lock; + /** @pmt.base_offset: device specific base offset */ + u64 base_offset; } pmt; /** @soc_remapper: SoC remapper object */ diff --git a/drivers/gpu/drm/xe/xe_vsec.c b/drivers/gpu/drm/xe/xe_vsec.c index ca8414441a69..856973473fd7 100644 --- a/drivers/gpu/drm/xe/xe_vsec.c +++ b/drivers/gpu/drm/xe/xe_vsec.c @@ -173,14 +173,15 @@ static int xe_guid_decode(u32 guid, int *index, u32 *offset) * Return: * * -ENODEV device is not available (hotplug) * * -EINVAL for VF and PMT WATCHER requests + * * -EAGAIN base_offset has not been set, so init path has not yet been done. * * count number of bytes read on success */ int xe_pmt_telem_read(struct device *dev, u32 guid, u64 *data, loff_t user_offset, u32 count) { struct xe_device *xe = kdev_to_xe_device(dev); - void __iomem *telem_addr = xe->mmio.regs + BMG_TELEMETRY_OFFSET; u32 cap_type = FIELD_GET(GUID_CAP_TYPE, guid); + void __iomem *telem_addr = xe->mmio.regs + xe->pmt.base_offset; u32 mem_region; u32 offset; int ret = 0; @@ -194,6 +195,11 @@ int xe_pmt_telem_read(struct device *dev, u32 guid, u64 *data, loff_t user_offse goto dev_exit; } + if (!xe->pmt.base_offset) { + ret = -EAGAIN; + goto dev_exit; + } + ret = xe_guid_decode(guid, &mem_region, &offset); if (ret) goto dev_exit; @@ -272,6 +278,7 @@ void xe_vsec_init(struct xe_device *xe) case XE_VSEC_BMG: if (IS_SRIOV_VF(xe)) return; + xe->pmt.base_offset = BMG_TELEMETRY_OFFSET; info->priv_data = &xe_pmt_cb; break; default: -- 2.43.0