mirror of
https://github.com/torvalds/linux.git
synced 2025-11-02 01:29:02 +02: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
13 lines
242 B
C
13 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__ */
|