This commit is contained in:
Andy Ritger
2022-11-10 08:39:33 -08:00
parent 7c345b838b
commit 758b4ee818
1323 changed files with 262135 additions and 60754 deletions

View File

@@ -45,6 +45,13 @@ typedef struct _object_vgpu OBJVGPU, *POBJVGPU;
#include "g_rpc_hal.h" // For RPC_HAL_IFACES
#include "g_rpc_odb.h" // For RPC_HAL_IFACES
#define RPC_HISTORY_DEPTH 8
typedef struct RpcHistoryEntry
{
NvU32 function;
NvU32 data[3];
} RpcHistoryEntry;
struct OBJRPC{
OBJECT_BASE_DEFINITION(RPC);
@@ -71,6 +78,9 @@ struct OBJRPC{
struct _message_queue_info *pMessageQueueInfo;
RmPhysAddr messageQueuePhysMem;
RpcHistoryEntry rpcHistory[RPC_HISTORY_DEPTH];
NvU32 rpcHistoryCurrent;
};
//