drm/xe/pf: Populate SR-IOV debugfs tree with tiles

Populate new per SR-IOV function debugfs directories with next
level directories that represent tiles. There are no files yet,
but we will continue updating that tree in upcoming patches.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://lore.kernel.org/r/20250928140029.198847-4-michal.wajdeczko@intel.com
This commit is contained in:
Michal Wajdeczko
2025-09-28 16:00:25 +02:00
parent 4d4af0d6cb
commit 5489e7d44a
4 changed files with 129 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_TILE_SRIOV_PF_DEBUGFS_H_
#define _XE_TILE_SRIOV_PF_DEBUGFS_H_
struct dentry;
struct xe_tile;
void xe_tile_sriov_pf_debugfs_populate(struct xe_tile *tile, struct dentry *parent,
unsigned int vfid);
#endif