mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
For debug purposes we might want to view actual VF configuration (including GGTT range, LMEM size, number of GuC contexts IDs or doorbells) and the negotiated ABI versions (with GuC and PF). Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240516110546.2216-7-michal.wajdeczko@intel.com
15 lines
273 B
C
15 lines
273 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023-2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_GT_SRIOV_VF_DEBUGFS_H_
|
|
#define _XE_GT_SRIOV_VF_DEBUGFS_H_
|
|
|
|
struct xe_gt;
|
|
struct dentry;
|
|
|
|
void xe_gt_sriov_vf_debugfs_register(struct xe_gt *gt, struct dentry *root);
|
|
|
|
#endif
|