From: "Piotr Piórkowski" <piotr.piorkowski@intel.com>
To: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: <intel-xe@lists.freedesktop.org>
Subject: Re: [PATCH 2/4] drm/xe: Add tile-based SRIOV printk macros
Date: Mon, 6 Oct 2025 15:27:30 +0200 [thread overview]
Message-ID: <20251006132730.ektsa6zyio2cguuv@intel.com> (raw)
In-Reply-To: <20251005133641.2651-3-michal.wajdeczko@intel.com>
Michal Wajdeczko <michal.wajdeczko@intel.com> wrote on nie [2025-paź-05 15:36:38 +0200]:
> We already have device and GT level SR-IOV specific macros, but
> unlike native case, we don't have yet tile-based ones.
>
> Add macros to match native use case and also update GT-based
> macros to rely on those new tile-based SR-IOV macros. This will
> slightly rearrange the output of the GT logs and instead:
>
> [...] Tile0: GT0: PF: pushed VF1 config with 2 KLVs...
>
> we might see:
>
> [...] PF: Tile0: GT0: pushed VF1 config with 2 KLVs...
>
> but that's even better.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_printk.h | 7 +++--
> drivers/gpu/drm/xe/xe_tile_sriov_printk.h | 33 +++++++++++++++++++++++
> 2 files changed, 38 insertions(+), 2 deletions(-)
> create mode 100644 drivers/gpu/drm/xe/xe_tile_sriov_printk.h
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_printk.h b/drivers/gpu/drm/xe/xe_gt_sriov_printk.h
> index 17624b16300a..d3457d608db8 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_printk.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_printk.h
> @@ -7,10 +7,13 @@
> #define _XE_GT_SRIOV_PRINTK_H_
>
> #include "xe_gt_printk.h"
> -#include "xe_sriov_printk.h"
> +#include "xe_tile_sriov_printk.h"
> +
> +#define __XE_GT_SRIOV_PRINTK_FMT(_gt, _fmt, ...) \
> + __XE_TILE_SRIOV_PRINTK_FMT((_gt)->tile, __XE_GT_PRINTK_FMT((_gt), _fmt, ##__VA_ARGS__))
>
> #define __xe_gt_sriov_printk(gt, _level, fmt, ...) \
> - xe_gt_printk((gt), _level, "%s" fmt, xe_sriov_printk_prefix(gt_to_xe(gt)), ##__VA_ARGS__)
> + xe_sriov_##_level(gt_to_xe(gt), __XE_GT_SRIOV_PRINTK_FMT((gt), fmt, ##__VA_ARGS__))
>
> #define xe_gt_sriov_err(_gt, _fmt, ...) \
> __xe_gt_sriov_printk(_gt, err, _fmt, ##__VA_ARGS__)
> diff --git a/drivers/gpu/drm/xe/xe_tile_sriov_printk.h b/drivers/gpu/drm/xe/xe_tile_sriov_printk.h
> new file mode 100644
> index 000000000000..68323512872c
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/xe_tile_sriov_printk.h
> @@ -0,0 +1,33 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#ifndef _XE_TILE_SRIOV_PRINTK_H_
> +#define _XE_TILE_SRIOV_PRINTK_H_
> +
> +#include "xe_tile_printk.h"
> +#include "xe_sriov_printk.h"
> +
> +#define __XE_TILE_SRIOV_PRINTK_FMT(_tile, _fmt, ...) \
> + __XE_TILE_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_sriov_printk(_tile, _level, _fmt, ...) \
> + xe_sriov_##_level((_tile)->xe, __XE_TILE_SRIOV_PRINTK_FMT((_tile), _fmt, ##__VA_ARGS__))
> +
> +#define xe_tile_sriov_err(_tile, _fmt, ...) \
> + xe_tile_sriov_printk(_tile, err, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_sriov_notice(_tile, _fmt, ...) \
> + xe_tile_sriov_printk(_tile, notice, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_sriov_info(_tile, _fmt, ...) \
> + xe_tile_sriov_printk(_tile, info, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_sriov_dbg(_tile, _fmt, ...) \
> + xe_tile_sriov_printk(_tile, dbg, _fmt, ##__VA_ARGS__)
> +
> +#define xe_tile_sriov_dbg_verbose(_tile, _fmt, ...) \
> + xe_tile_sriov_printk(_tile, dbg_verbose, _fmt, ##__VA_ARGS__)
> +
> +#endif
LGTM:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
> --
> 2.47.1
>
--
next prev parent reply other threads:[~2025-10-06 13:27 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-05 13:36 [PATCH 0/4] Update tile-based messages Michal Wajdeczko
2025-10-05 13:36 ` [PATCH 1/4] drm/xe: Update SRIOV printk macros Michal Wajdeczko
2025-10-06 13:03 ` Piotr Piórkowski
2025-10-05 13:36 ` [PATCH 2/4] drm/xe: Add tile-based " Michal Wajdeczko
2025-10-06 13:27 ` Piotr Piórkowski [this message]
2025-10-05 13:36 ` [PATCH 3/4] drm/xe/pf: Update LMTT to use tile-based messages Michal Wajdeczko
2025-10-06 13:30 ` Piotr Piórkowski
2025-10-05 13:36 ` [PATCH 4/4] drm/xe: Update MEMIRQ to use tile-based printk macros Michal Wajdeczko
2025-10-06 13:32 ` Piotr Piórkowski
2025-10-05 13:42 ` ✗ CI.checkpatch: warning for Update tile-based messages Patchwork
2025-10-05 13:43 ` ✓ CI.KUnit: success " Patchwork
2025-10-05 14:24 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-05 15:33 ` ✓ Xe.CI.Full: " 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=20251006132730.ektsa6zyio2cguuv@intel.com \
--to=piotr.piorkowski@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=michal.wajdeczko@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