From: Michal Wajdeczko <michal.wajdeczko@intel.com>
To: Nirmoy Das <nirmoy.das@intel.com>, intel-xe@lists.freedesktop.org
Cc: Matthew Brost <matthew.brost@intel.com>,
Rodrigo Vivi <rodrigo.vivi@intel.com>,
Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Subject: Re: [PATCH 2/2] drm/xe: Create debugfs for tlb inval stats
Date: Tue, 23 Jul 2024 14:14:58 +0200 [thread overview]
Message-ID: <95966c2f-45d2-43f4-a744-9b14fe05ba9d@intel.com> (raw)
In-Reply-To: <20240723111610.21564-3-nirmoy.das@intel.com>
On 23.07.2024 13:16, Nirmoy Das wrote:
> Create debugfs file for each GT to dump tlb sent/receive
> stats.
>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_debugfs.c | 9 +++++++++
> drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c | 7 +++++++
> drivers/gpu/drm/xe/xe_gt_tlb_invalidation.h | 2 ++
> 3 files changed, 18 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> index 5e7fd937917a..959d979927dd 100644
> --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
> @@ -17,6 +17,7 @@
> #include "xe_gt_mcr.h"
> #include "xe_gt_sriov_pf_debugfs.h"
> #include "xe_gt_sriov_vf_debugfs.h"
> +#include "xe_gt_tlb_invalidation.h"
> #include "xe_gt_topology.h"
> #include "xe_hw_engine.h"
> #include "xe_lrc.h"
> @@ -269,6 +270,13 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p)
> return 0;
> }
>
> +static int tlb_stats(struct xe_gt *gt, struct drm_printer *p)
> +{
> + xe_gt_tlb_dump(gt, p);
> +
> + return 0;
> +}
> +
> static const struct drm_info_list debugfs_list[] = {
> {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines},
> {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset},
> @@ -286,6 +294,7 @@ static const struct drm_info_list debugfs_list[] = {
> {"default_lrc_bcs", .show = xe_gt_debugfs_simple_show, .data = bcs_default_lrc},
> {"default_lrc_vcs", .show = xe_gt_debugfs_simple_show, .data = vcs_default_lrc},
> {"default_lrc_vecs", .show = xe_gt_debugfs_simple_show, .data = vecs_default_lrc},
> + {"tlb_stats", .show = xe_gt_debugfs_simple_show, .data = tlb_stats},
> };
>
> void xe_gt_debugfs_register(struct xe_gt *gt)
> diff --git a/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c b/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
> index f84717c1aafa..62a6f42b6c60 100644
> --- a/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
> +++ b/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
> @@ -540,3 +540,10 @@ void xe_gt_tlb_invalidation_fence_fini(struct xe_gt_tlb_invalidation_fence *fenc
> {
> xe_pm_runtime_put(gt_to_xe(fence->gt));
> }
> +
> +void xe_gt_tlb_dump(struct xe_gt *gt, struct drm_printer *p)
if you make this function as returning "int" then you will be able to
plug it directly into debugfs_list without the tlb_stats() wrapper
> +{
> + drm_printf(p, "GT%d, TLB Requests sent: %llu, received: %llu\n",
> + gt->info.id, atomic64_read(>->tlb_invalidation.sent_count),
> + atomic64_read(>->tlb_invalidation.received_count));
printing the GT identifier (GT%d) is redundant as path to this debugfs
entry already contains GT identifier:
$ sudo cat /sys/kernel/debug/dri/0/gt1/tlb_stats
^^^
GT1, TLB Requests sent: 212, received: 212
^^^
btw, maybe 'last seqno' and 'default timeout' will be worth to be
included in debugfs ?
> +}
> diff --git a/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.h b/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.h
> index a84065fa324c..f420029ec02d 100644
> --- a/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.h
> +++ b/drivers/gpu/drm/xe/xe_gt_tlb_invalidation.h
> @@ -10,6 +10,7 @@
>
> #include "xe_gt_tlb_invalidation_types.h"
>
> +struct drm_printer;
> struct xe_gt;
> struct xe_guc;
> struct xe_vma;
> @@ -36,4 +37,5 @@ xe_gt_tlb_invalidation_fence_wait(struct xe_gt_tlb_invalidation_fence *fence)
> dma_fence_wait(&fence->base, false);
> }
>
> +void xe_gt_tlb_dump(struct xe_gt *gt, struct drm_printer *p);
missing empty separation line
> #endif /* _XE_GT_TLB_INVALIDATION_ */
next prev parent reply other threads:[~2024-07-23 12:15 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-23 11:16 [PATCH 0/2] Add debugfs file to dump tlb inval stats Nirmoy Das
2024-07-23 11:16 ` [PATCH 1/2] drm/xe: Add sent and recv counters for tlb invalidations Nirmoy Das
2024-07-23 12:22 ` Michal Wajdeczko
2024-07-23 13:07 ` Nirmoy Das
2024-07-23 16:23 ` Matthew Brost
2024-07-24 9:20 ` Nirmoy Das
2024-07-23 11:16 ` [PATCH 2/2] drm/xe: Create debugfs for tlb inval stats Nirmoy Das
2024-07-23 12:14 ` Michal Wajdeczko [this message]
2024-07-23 13:15 ` Nirmoy Das
2024-07-23 14:27 ` Michal Wajdeczko
2024-07-24 9:18 ` Nirmoy Das
2024-07-23 11:38 ` ✓ CI.Patch_applied: success for Add debugfs file to dump " Patchwork
2024-07-23 11:38 ` ✓ CI.checkpatch: " Patchwork
2024-07-23 11:39 ` ✓ CI.KUnit: " Patchwork
2024-07-23 11:51 ` ✓ CI.Build: " Patchwork
2024-07-23 11:54 ` ✓ CI.Hooks: " Patchwork
2024-07-23 11:55 ` ✓ CI.checksparse: " Patchwork
2024-07-23 12:15 ` ✓ CI.BAT: " Patchwork
2024-07-23 13:12 ` ✗ 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=95966c2f-45d2-43f4-a744-9b14fe05ba9d@intel.com \
--to=michal.wajdeczko@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=matthew.brost@intel.com \
--cc=nirmoy.das@intel.com \
--cc=rodrigo.vivi@intel.com \
--cc=sai.gowtham.ch@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