mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-28 00:29:57 +00:00

This patch introduces 2 PXP debugfs entries: - info: prints the current PXP status and key instance - terminate: simulate a termination interrupt The first one is useful for debug, while the second one can be used for testing the termination flow. v2: move the info prints inside the lock (John) Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: John Harrison <John.C.Harrison@Intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250129174140.948829-13-daniele.ceraolospurio@intel.com
14 lines
242 B
C
14 lines
242 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __XE_PXP_DEBUGFS_H__
|
|
#define __XE_PXP_DEBUGFS_H__
|
|
|
|
struct xe_pxp;
|
|
|
|
void xe_pxp_debugfs_register(struct xe_pxp *pxp);
|
|
|
|
#endif /* __XE_PXP_DEBUGFS_H__ */
|