mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-27 03:49:57 -04:00
The VF CCS handling is per-device so its debugfs file should not be exposed on per-GT basis. Move it up to the device level. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com> Reviewed-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com> Link: https://lore.kernel.org/r/20250908123025.747-8-michal.wajdeczko@intel.com
21 lines
507 B
C
21 lines
507 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023-2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_SRIOV_VF_H_
|
|
#define _XE_SRIOV_VF_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct dentry;
|
|
struct xe_device;
|
|
|
|
void xe_sriov_vf_init_early(struct xe_device *xe);
|
|
int xe_sriov_vf_init_late(struct xe_device *xe);
|
|
void xe_sriov_vf_start_migration_recovery(struct xe_device *xe);
|
|
bool xe_sriov_vf_migration_supported(struct xe_device *xe);
|
|
void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
|
|
|
|
#endif
|