From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: "Michael J. Ruhl" <michael.j.ruhl@intel.com>
Cc: platform-driver-x86@vger.kernel.org,
intel-xe@lists.freedesktop.org, Hans de Goede <hansg@kernel.org>,
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: Re: [PATCH v3 07/10] drm/xe/vsec: Crescent Island PMT decode
Date: Tue, 25 Aug 2026 13:24:16 +0300 (EEST) [thread overview]
Message-ID: <910a5090-230a-139e-4d7a-60c48ac88031@linux.intel.com> (raw)
In-Reply-To: <20260824162317.2450380-19-michael.j.ruhl@intel.com>
[-- Attachment #1: Type: text/plain, Size: 7750 bytes --]
On Mon, 24 Aug 2026, Michael J. Ruhl wrote:
> Crescent Island (CRI) has different index and offset values for
> accessing the PMT data area.
>
> Update the decode path to support the CRI device.
>
> Update the data read callback so to support the CRI usage.
>
> Define several magic numbers.
>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> ---
> drivers/gpu/drm/xe/xe_device_types.h | 2 +
> drivers/gpu/drm/xe/xe_vsec.c | 135 ++++++++++++++++++++++-----
> 2 files changed, 114 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index 180d450a6deb..3f1a70813a99 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -466,6 +466,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 6345b0b4b26b..dc42b9492428 100644
> --- a/drivers/gpu/drm/xe/xe_vsec.c
> +++ b/drivers/gpu/drm/xe/xe_vsec.c
> @@ -108,23 +108,47 @@ static struct intel_vsec_platform_info xe_vsec_info[] = {
> /*
> * The GUID will have the following bits to decode:
> * [0:3] - {Telemetry space iteration number (0,1,..)}
> - * [4:7] - Segment (SEGMENT_INDEPENDENT-0, Client-1, Server-2)
> + * [4:7] - BMG Segment (SEGMENT_INDEPENDENT-0, Client-1, Server-2)
> + * [4:5] - CRI Segment (SEGMENT_INDEPENDENT-0, Client-1, Server-2)
> + * [6:7] - CRI Instance
> * [8:11] - SOC_SKU
> * [12:27] – Device ID – changes for each down bin SKU’s
> * [28:29] - Capability Type (Crashlog-0, Telemetry Aggregator-1, Watcher-2)
> * [30:31] - Record-ID (0-PUNIT, 1-OOBMSM_0, 2-OOBMSM_1)
> */
> #define GUID_TELEM_ITERATION GENMASK(3, 0)
> -#define GUID_SEGMENT GENMASK(7, 4)
> #define GUID_SOC_SKU GENMASK(11, 8)
> #define GUID_DEVICE_ID GENMASK(27, 12)
> #define GUID_CAP_TYPE GENMASK(29, 28)
> #define GUID_RECORD_ID GENMASK(31, 30)
>
> -#define PUNIT_TELEMETRY_OFFSET 0x0200
> -#define PUNIT_WATCHER_OFFSET 0x14A0
> -#define OOBMSM_0_WATCHER_OFFSET 0x18D8
> -#define OOBMSM_1_TELEMETRY_OFFSET 0x1000
> +#define BMG_GUID_SEGMENT GENMASK(7, 4)
> +
> +#define CRI_GUID_SEGMENT GENMASK(5, 4)
> +#define CRI_GUID_INSTANCE GENMASK(7, 6)
> +
> +#define BMG_IDX_TELEM_PUNIT 0x00
> +#define BMG_IDX_TELEM_OOBMSM 0x01
> +#define BMG_IDX_CRASHLOG_PUNIT 0x02
> +#define BMG_IDX_CRASHLOG_OOBMSM 0x04
> +
> +#define BMG_PUNIT_TELEMETRY_OFFSET 0x0200
> +#define BMG_PUNIT_WATCHER_OFFSET 0x14A0
> +#define BMG_OOBMSM_0_WATCHER_OFFSET 0x18D8
> +#define BMG_OOBMSM_1_TELEMETRY_OFFSET 0x1000
IMO, it would be better to do the plain renames first to get a clean diff
for the new stuff.
--
i.
> +#define CRI_IDX_TELEM_DISCOVERY 0x00
> +#define CRI_IDX_TELEM_PUNIT 0x01
> +#define CRI_IDX_TELEM_OOBMSM 0x02
> +#define CRI_IDX_CRASHLOG_PUNIT 0x03
> +#define CRI_IDX_WATCHER_OOBMSM 0x03 /* PUNIT and OOBMSM share this index */
> +#define CRI_IDX_CRASHLOG_OOBMSM 0x04
> +
> +#define CRI_PUNIT_TELEMETRY_OFFSET 0x0200
> +#define CRI_PUNIT_WATCHER_OFFSET 0x08A0
> +#define CRI_OOBMSM_WATCHER_OFFSET 0x0CF8
> +#define CRI_OOBMSM_GFSP_TELEMETRY_OFFSET 0x1600
> +#define CRI_PUNIT_CRASHLOG_OFFSET 0x0E60
>
> enum record_id {
> PUNIT,
> @@ -138,45 +162,92 @@ enum capability {
> WATCHER,
> };
>
> -static int xe_guid_decode(u32 guid, int *index, u32 *offset)
> +static int bmg_guid_decode(u32 guid, int *index, u32 *offset)
> {
> u32 record_id = FIELD_GET(GUID_RECORD_ID, guid);
> u32 cap_type = FIELD_GET(GUID_CAP_TYPE, guid);
> - u32 device_id = FIELD_GET(GUID_DEVICE_ID, guid);
> -
> - if (device_id != BMG_DEVICE_ID)
> - return -ENODEV;
> -
> - if (cap_type > WATCHER)
> - return -EINVAL;
>
> *offset = 0;
>
> if (cap_type == CRASHLOG) {
> - *index = record_id == PUNIT ? 2 : 4;
> + *index = record_id == PUNIT ? BMG_IDX_CRASHLOG_PUNIT : BMG_IDX_CRASHLOG_OOBMSM;
> return 0;
> }
>
> switch (record_id) {
> case PUNIT:
> - *index = 0;
> + *index = BMG_IDX_TELEM_PUNIT;
> if (cap_type == TELEMETRY)
> - *offset = PUNIT_TELEMETRY_OFFSET;
> + *offset = BMG_PUNIT_TELEMETRY_OFFSET;
> else
> - *offset = PUNIT_WATCHER_OFFSET;
> + *offset = BMG_PUNIT_WATCHER_OFFSET;
> break;
>
> case OOBMSM_0:
> - *index = 1;
> + *index = BMG_IDX_TELEM_OOBMSM;
> if (cap_type == WATCHER)
> - *offset = OOBMSM_0_WATCHER_OFFSET;
> + *offset = BMG_OOBMSM_0_WATCHER_OFFSET;
> break;
>
> case OOBMSM_1:
> - *index = 1;
> + *index = BMG_IDX_TELEM_OOBMSM;
> + if (cap_type == TELEMETRY)
> + *offset = BMG_OOBMSM_1_TELEMETRY_OFFSET;
> + break;
> + default:
> + return -EINVAL;
> + }
> +
> + return 0;
> +}
> +
> +static int cri_guid_decode(u32 guid, int *index, u32 *offset)
> +{
> + u32 record_id = FIELD_GET(GUID_RECORD_ID, guid);
> + u32 cap_type = FIELD_GET(GUID_CAP_TYPE, guid);
> + u32 instance = FIELD_GET(CRI_GUID_INSTANCE, guid);
> +
> + *offset = 0;
> +
> + if (cap_type == CRASHLOG) {
> + if (record_id == PUNIT) {
> + *index = CRI_IDX_CRASHLOG_PUNIT;
> + *offset = CRI_PUNIT_CRASHLOG_OFFSET;
> + } else {
> + *index = CRI_IDX_CRASHLOG_OOBMSM;
> + }
> + return 0;
> + }
> +
> + switch (record_id) {
> + case PUNIT:
> + *index = CRI_IDX_TELEM_PUNIT;
> if (cap_type == TELEMETRY)
> - *offset = OOBMSM_1_TELEMETRY_OFFSET;
> + *offset = CRI_PUNIT_TELEMETRY_OFFSET;
> + else
> + *offset = CRI_PUNIT_WATCHER_OFFSET;
> + break;
> +
> + case OOBMSM_0:
> + *index = CRI_IDX_TELEM_OOBMSM;
> + switch (instance) {
> + case 0:
> + if (cap_type == WATCHER) {
> + *index = CRI_IDX_WATCHER_OOBMSM;
> + *offset = CRI_OOBMSM_WATCHER_OFFSET;
> + }
> + break;
> +
> + case 1:
> + if (cap_type == TELEMETRY)
> + *offset = CRI_OOBMSM_GFSP_TELEMETRY_OFFSET;
> + break;
> +
> + default:
> + return -EINVAL;
> + }
> break;
> +
> default:
> return -EINVAL;
> }
> @@ -184,6 +255,23 @@ static int xe_guid_decode(u32 guid, int *index, u32 *offset)
> return 0;
> }
>
> +static int xe_guid_decode(u32 guid, int *index, u32 *offset)
> +{
> + u32 cap_type = FIELD_GET(GUID_CAP_TYPE, guid);
> + u32 device_id = FIELD_GET(GUID_DEVICE_ID, guid);
> +
> + if (cap_type > WATCHER)
> + return -EINVAL;
> +
> + if (device_id == BMG_DEVICE_ID)
> + return bmg_guid_decode(guid, index, offset);
> +
> + if (device_id == CRI_DEVICE_ID)
> + return cri_guid_decode(guid, index, offset);
> +
> + return -ENODEV;
> +}
> +
> /*
> * xe_pmt_telem_read is a callback API. I.e this can be accessed external to
> * XE driver (PMT driver scope). Because of this, DRM hotplug needs to be
> @@ -193,8 +281,8 @@ int xe_pmt_telem_read(struct device *dev, u32 guid, u64 *data, loff_t user_offse
> 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;
> @@ -286,6 +374,7 @@ void xe_vsec_init(struct xe_device *xe)
> case XE_VSEC_BMG:
> if (!xe->soc_remapper.set_telem_region)
> return;
> + xe->pmt.base_offset = BMG_TELEMETRY_OFFSET;
> info->priv_data = &xe_pmt_cb;
> break;
> default:
>
next prev parent reply other threads:[~2026-08-25 10:24 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 16:23 [PATCH v3 00/10] Crescent Island PMT support Michael J. Ruhl
2026-08-24 16:23 ` [PATCH v3 01/10] platform/x86/intel/pmt: complete pcidev to device update Michael J. Ruhl
2026-08-24 18:56 ` Rodrigo Vivi
2026-08-25 9:40 ` Ilpo Järvinen
2026-08-25 9:25 ` Ilpo Järvinen
2026-08-24 16:23 ` [PATCH v3 02/10] platform/x86/intel/pmt: Add register access callbacks Michael J. Ruhl
2026-08-24 16:36 ` sashiko-bot
2026-08-24 18:39 ` Ruhl, Michael J
2026-08-25 9:34 ` Ilpo Järvinen
2026-08-26 16:13 ` Ruhl, Michael J
2026-08-26 18:30 ` Ilpo Järvinen
2026-08-27 17:05 ` Ruhl, Michael J
2026-08-24 16:23 ` [PATCH v3 03/10] drm/xe/vsec: Protect against missing config Michael J. Ruhl
2026-08-24 16:36 ` sashiko-bot
2026-08-24 18:43 ` Ruhl, Michael J
2026-08-24 19:01 ` Rodrigo Vivi
2026-08-24 16:23 ` [PATCH v3 04/10] drm/xe/vsec: Use correct pm state get Michael J. Ruhl
2026-08-24 19:04 ` Rodrigo Vivi
2026-08-24 16:23 ` [PATCH v3 05/10] drm/xe/vsec: Support possible hotplug exit Michael J. Ruhl
2026-08-24 19:07 ` Rodrigo Vivi
2026-08-24 16:23 ` [PATCH v3 06/10] drm/xe/vsec: Support Crescent Island PMT Michael J. Ruhl
2026-08-24 16:33 ` sashiko-bot
2026-08-24 19:10 ` Rodrigo Vivi
2026-08-25 10:19 ` Ilpo Järvinen
2026-08-24 16:23 ` [PATCH v3 07/10] drm/xe/vsec: Crescent Island PMT decode Michael J. Ruhl
2026-08-24 16:35 ` sashiko-bot
2026-08-25 10:24 ` Ilpo Järvinen [this message]
2026-08-24 16:23 ` [PATCH v3 08/10] drm/xe/vsec: Crescent Island PMT callbacks Michael J. Ruhl
2026-08-24 16:37 ` sashiko-bot
2026-08-24 18:47 ` Ruhl, Michael J
2026-08-24 16:23 ` [PATCH v3 09/10] drm/xe/vsec: Support late bind fw information Michael J. Ruhl
2026-08-24 16:36 ` sashiko-bot
2026-08-24 19:15 ` Rodrigo Vivi
2026-08-26 13:45 ` Ruhl, Michael J
2026-08-25 10:01 ` Ilpo Järvinen
2026-08-24 16:23 ` [PATCH v3 10/10] drm/xe/vsec: Update PMT internal access for CRI Michael J. Ruhl
2026-08-24 19:18 ` Rodrigo Vivi
2026-08-25 10:16 ` Ilpo Järvinen
2026-08-25 6:44 ` ✓ CI.KUnit: success for Crescent Island PMT support (rev5) Patchwork
2026-08-25 7:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-25 10:56 ` ✗ Xe.CI.FULL: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=910a5090-230a-139e-4d7a-60c48ac88031@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=airlied@gmail.com \
--cc=anoop.c.vijay@intel.com \
--cc=badal.nilawar@intel.com \
--cc=david.e.box@linux.intel.com \
--cc=hansg@kernel.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=james.ausmus@intel.com \
--cc=karthik.poosa@intel.com \
--cc=matthew.brost@intel.com \
--cc=matthew.d.roper@intel.com \
--cc=michael.j.ruhl@intel.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rodrigo.vivi@intel.com \
--cc=simona@ffwll.ch \
--cc=thomas.hellstrom@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox