mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2026-02-02 06:29:47 +00:00
535.104.05
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
123
src/nvidia/generated/g_crashcat_engine_nvoc.c
Normal file
123
src/nvidia/generated/g_crashcat_engine_nvoc.c
Normal file
@@ -0,0 +1,123 @@
|
||||
#define NVOC_CRASHCAT_ENGINE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#include "nvoc/runtime.h"
|
||||
#include "nvoc/rtti.h"
|
||||
#include "nvtypes.h"
|
||||
#include "nvport/nvport.h"
|
||||
#include "nvport/inline/util_valist.h"
|
||||
#include "utils/nvassert.h"
|
||||
#include "g_crashcat_engine_nvoc.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
char __nvoc_class_id_uniqueness_check_0x654166 = 1;
|
||||
#endif
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
void __nvoc_init_CrashCatEngine(CrashCatEngine*);
|
||||
void __nvoc_init_funcTable_CrashCatEngine(CrashCatEngine*);
|
||||
NV_STATUS __nvoc_ctor_CrashCatEngine(CrashCatEngine*);
|
||||
void __nvoc_init_dataField_CrashCatEngine(CrashCatEngine*);
|
||||
void __nvoc_dtor_CrashCatEngine(CrashCatEngine*);
|
||||
extern const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatEngine;
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatEngine_CrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatEngine,
|
||||
/*dtor=*/ (NVOC_DYNAMIC_DTOR) &__nvoc_dtor_CrashCatEngine,
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_CrashCatEngine = {
|
||||
/*numRelatives=*/ 1,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_CrashCatEngine_CrashCatEngine,
|
||||
},
|
||||
};
|
||||
|
||||
// Not instantiable because it's not derived from class "Object"
|
||||
// Not instantiable because it's an abstract class with following pure virtual functions:
|
||||
// crashcatEngineConfigured
|
||||
// crashcatEngineVprintf
|
||||
// crashcatEnginePriRead
|
||||
// crashcatEnginePriWrite
|
||||
// crashcatEngineMapBufferDescriptor
|
||||
// crashcatEngineUnmapBufferDescriptor
|
||||
// crashcatEngineSyncBufferDescriptor
|
||||
// crashcatEngineGetScratchOffsets
|
||||
// crashcatEngineGetWFL0Offset
|
||||
const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine =
|
||||
{
|
||||
/*classInfo=*/ {
|
||||
/*size=*/ sizeof(CrashCatEngine),
|
||||
/*classId=*/ classId(CrashCatEngine),
|
||||
/*providerId=*/ &__nvoc_rtti_provider,
|
||||
#if NV_PRINTF_STRINGS_ALLOWED
|
||||
/*name=*/ "CrashCatEngine",
|
||||
#endif
|
||||
},
|
||||
/*objCreatefn=*/ (NVOC_DYNAMIC_OBJ_CREATE) NULL,
|
||||
/*pCastInfo=*/ &__nvoc_castinfo_CrashCatEngine,
|
||||
/*pExportInfo=*/ &__nvoc_export_info_CrashCatEngine
|
||||
};
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatEngine =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
/*pExportEntries=*/ 0
|
||||
};
|
||||
|
||||
void __nvoc_dtor_CrashCatEngine(CrashCatEngine *pThis) {
|
||||
__nvoc_crashcatEngineDestruct(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_dataField_CrashCatEngine(CrashCatEngine *pThis) {
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_ctor_CrashCatEngine(CrashCatEngine *pThis) {
|
||||
NV_STATUS status = NV_OK;
|
||||
__nvoc_init_dataField_CrashCatEngine(pThis);
|
||||
|
||||
status = __nvoc_crashcatEngineConstruct(pThis);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatEngine_fail__init;
|
||||
goto __nvoc_ctor_CrashCatEngine_exit; // Success
|
||||
|
||||
__nvoc_ctor_CrashCatEngine_fail__init:
|
||||
__nvoc_ctor_CrashCatEngine_exit:
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
static void __nvoc_init_funcTable_CrashCatEngine_1(CrashCatEngine *pThis) {
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
|
||||
pThis->__crashcatEngineUnload__ = &crashcatEngineUnload_IMPL;
|
||||
|
||||
pThis->__crashcatEngineConfigured__ = NULL;
|
||||
|
||||
pThis->__crashcatEngineVprintf__ = NULL;
|
||||
|
||||
pThis->__crashcatEnginePriRead__ = NULL;
|
||||
|
||||
pThis->__crashcatEnginePriWrite__ = NULL;
|
||||
|
||||
pThis->__crashcatEngineMapBufferDescriptor__ = NULL;
|
||||
|
||||
pThis->__crashcatEngineUnmapBufferDescriptor__ = NULL;
|
||||
|
||||
pThis->__crashcatEngineSyncBufferDescriptor__ = NULL;
|
||||
|
||||
pThis->__crashcatEngineGetScratchOffsets__ = NULL;
|
||||
|
||||
pThis->__crashcatEngineGetWFL0Offset__ = NULL;
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_CrashCatEngine(CrashCatEngine *pThis) {
|
||||
__nvoc_init_funcTable_CrashCatEngine_1(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_CrashCatEngine(CrashCatEngine *pThis) {
|
||||
pThis->__nvoc_pbase_CrashCatEngine = pThis;
|
||||
__nvoc_init_funcTable_CrashCatEngine(pThis);
|
||||
}
|
||||
|
||||
287
src/nvidia/generated/g_crashcat_engine_nvoc.h
Normal file
287
src/nvidia/generated/g_crashcat_engine_nvoc.h
Normal file
@@ -0,0 +1,287 @@
|
||||
#ifndef _G_CRASHCAT_ENGINE_NVOC_H_
|
||||
#define _G_CRASHCAT_ENGINE_NVOC_H_
|
||||
#include "nvoc/runtime.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "g_crashcat_engine_nvoc.h"
|
||||
|
||||
#ifndef CRASHCAT_ENGINE_H
|
||||
#define CRASHCAT_ENGINE_H
|
||||
|
||||
#include "containers/map.h"
|
||||
#include "nvoc/object.h"
|
||||
#include "nvport/inline/util_valist.h"
|
||||
#include "nv-crashcat.h"
|
||||
|
||||
struct CrashCatReport;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
typedef struct CrashCatReport CrashCatReport;
|
||||
#endif /* __NVOC_CLASS_CrashCatReport_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatReport
|
||||
#define __nvoc_class_id_CrashCatReport 0xde4777
|
||||
#endif /* __nvoc_class_id_CrashCatReport */
|
||||
|
||||
|
||||
struct CrashCatWayfinder;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatWayfinder_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatWayfinder_TYPEDEF__
|
||||
typedef struct CrashCatWayfinder CrashCatWayfinder;
|
||||
#endif /* __NVOC_CLASS_CrashCatWayfinder_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatWayfinder
|
||||
#define __nvoc_class_id_CrashCatWayfinder 0x085e32
|
||||
#endif /* __nvoc_class_id_CrashCatWayfinder */
|
||||
|
||||
|
||||
|
||||
typedef struct {
|
||||
void *pEngPriv;
|
||||
void *pMapping;
|
||||
NvBool bRegistered;
|
||||
NV_CRASHCAT_MEM_APERTURE aperture;
|
||||
NvU64 physOffset;
|
||||
NvLength size;
|
||||
MapNode registeredBufferMapNode;
|
||||
MapNode mappedBufferMapNode;
|
||||
} CrashCatBufferDescriptor;
|
||||
|
||||
MAKE_INTRUSIVE_MAP(CrashCatRegisteredBufferMap, CrashCatBufferDescriptor, registeredBufferMapNode);
|
||||
MAKE_INTRUSIVE_MAP(CrashCatMappedBufferMap, CrashCatBufferDescriptor, mappedBufferMapNode);
|
||||
|
||||
// Base class for engine-specific accessors - must be implemented by the host codebase.
|
||||
#ifdef NVOC_CRASHCAT_ENGINE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#define PRIVATE_FIELD(x) x
|
||||
#else
|
||||
#define PRIVATE_FIELD(x) NVOC_PRIVATE_FIELD(x)
|
||||
#endif
|
||||
struct CrashCatEngine {
|
||||
const struct NVOC_RTTI *__nvoc_rtti;
|
||||
struct CrashCatEngine *__nvoc_pbase_CrashCatEngine;
|
||||
void (*__crashcatEngineUnload__)(struct CrashCatEngine *);
|
||||
NvBool (*__crashcatEngineConfigured__)(struct CrashCatEngine *);
|
||||
void (*__crashcatEngineVprintf__)(struct CrashCatEngine *, NvBool, const char *, va_list);
|
||||
NvU32 (*__crashcatEnginePriRead__)(struct CrashCatEngine *, NvU32);
|
||||
void (*__crashcatEnginePriWrite__)(struct CrashCatEngine *, NvU32, NvU32);
|
||||
void *(*__crashcatEngineMapBufferDescriptor__)(struct CrashCatEngine *, CrashCatBufferDescriptor *);
|
||||
void (*__crashcatEngineUnmapBufferDescriptor__)(struct CrashCatEngine *, CrashCatBufferDescriptor *);
|
||||
void (*__crashcatEngineSyncBufferDescriptor__)(struct CrashCatEngine *, CrashCatBufferDescriptor *, NvU32, NvU32);
|
||||
const NvU32 *(*__crashcatEngineGetScratchOffsets__)(struct CrashCatEngine *, NV_CRASHCAT_SCRATCH_GROUP_ID);
|
||||
NvU32 (*__crashcatEngineGetWFL0Offset__)(struct CrashCatEngine *);
|
||||
NvBool PRIVATE_FIELD(bEnabled);
|
||||
struct CrashCatWayfinder *PRIVATE_FIELD(pWayfinder);
|
||||
CrashCatRegisteredBufferMap PRIVATE_FIELD(registeredCrashBuffers);
|
||||
CrashCatMappedBufferMap PRIVATE_FIELD(mappedCrashBuffers);
|
||||
};
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatEngine_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatEngine_TYPEDEF__
|
||||
typedef struct CrashCatEngine CrashCatEngine;
|
||||
#endif /* __NVOC_CLASS_CrashCatEngine_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatEngine
|
||||
#define __nvoc_class_id_CrashCatEngine 0x654166
|
||||
#endif /* __nvoc_class_id_CrashCatEngine */
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
#define __staticCast_CrashCatEngine(pThis) \
|
||||
((pThis)->__nvoc_pbase_CrashCatEngine)
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
#define __dynamicCast_CrashCatEngine(pThis) ((CrashCatEngine*)NULL)
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define __dynamicCast_CrashCatEngine(pThis) \
|
||||
((CrashCatEngine*)__nvoc_dynamicCast(staticCast((pThis), Dynamic), classInfo(CrashCatEngine)))
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatEngine(CrashCatEngine**, Dynamic*, NvU32, va_list);
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatEngine(CrashCatEngine**, Dynamic*, NvU32);
|
||||
#define __objCreate_CrashCatEngine(ppNewObj, pParent, createFlags) \
|
||||
__nvoc_objCreate_CrashCatEngine((ppNewObj), staticCast((pParent), Dynamic), (createFlags))
|
||||
|
||||
#define crashcatEngineUnload(arg0) crashcatEngineUnload_DISPATCH(arg0)
|
||||
#define crashcatEngineConfigured(arg0) crashcatEngineConfigured_DISPATCH(arg0)
|
||||
#define crashcatEngineVprintf(arg0, bReportStart, fmt, args) crashcatEngineVprintf_DISPATCH(arg0, bReportStart, fmt, args)
|
||||
#define crashcatEnginePriRead(arg0, offset) crashcatEnginePriRead_DISPATCH(arg0, offset)
|
||||
#define crashcatEnginePriWrite(arg0, offset, data) crashcatEnginePriWrite_DISPATCH(arg0, offset, data)
|
||||
#define crashcatEngineMapBufferDescriptor(arg0, pBufDesc) crashcatEngineMapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define crashcatEngineUnmapBufferDescriptor(arg0, pBufDesc) crashcatEngineUnmapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define crashcatEngineSyncBufferDescriptor(arg0, pBufDesc, offset, size) crashcatEngineSyncBufferDescriptor_DISPATCH(arg0, pBufDesc, offset, size)
|
||||
#define crashcatEngineGetScratchOffsets(arg0, scratchId) crashcatEngineGetScratchOffsets_DISPATCH(arg0, scratchId)
|
||||
#define crashcatEngineGetWFL0Offset(arg0) crashcatEngineGetWFL0Offset_DISPATCH(arg0)
|
||||
void crashcatEngineUnload_IMPL(struct CrashCatEngine *arg0);
|
||||
|
||||
static inline void crashcatEngineUnload_DISPATCH(struct CrashCatEngine *arg0) {
|
||||
arg0->__crashcatEngineUnload__(arg0);
|
||||
}
|
||||
|
||||
static inline NvBool crashcatEngineConfigured_DISPATCH(struct CrashCatEngine *arg0) {
|
||||
return arg0->__crashcatEngineConfigured__(arg0);
|
||||
}
|
||||
|
||||
static inline void crashcatEngineVprintf_DISPATCH(struct CrashCatEngine *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
arg0->__crashcatEngineVprintf__(arg0, bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static inline NvU32 crashcatEnginePriRead_DISPATCH(struct CrashCatEngine *arg0, NvU32 offset) {
|
||||
return arg0->__crashcatEnginePriRead__(arg0, offset);
|
||||
}
|
||||
|
||||
static inline void crashcatEnginePriWrite_DISPATCH(struct CrashCatEngine *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__crashcatEnginePriWrite__(arg0, offset, data);
|
||||
}
|
||||
|
||||
static inline void *crashcatEngineMapBufferDescriptor_DISPATCH(struct CrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return arg0->__crashcatEngineMapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void crashcatEngineUnmapBufferDescriptor_DISPATCH(struct CrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
arg0->__crashcatEngineUnmapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void crashcatEngineSyncBufferDescriptor_DISPATCH(struct CrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
arg0->__crashcatEngineSyncBufferDescriptor__(arg0, pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static inline const NvU32 *crashcatEngineGetScratchOffsets_DISPATCH(struct CrashCatEngine *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchId) {
|
||||
return arg0->__crashcatEngineGetScratchOffsets__(arg0, scratchId);
|
||||
}
|
||||
|
||||
static inline NvU32 crashcatEngineGetWFL0Offset_DISPATCH(struct CrashCatEngine *arg0) {
|
||||
return arg0->__crashcatEngineGetWFL0Offset__(arg0);
|
||||
}
|
||||
|
||||
NV_STATUS crashcatEngineConstruct_IMPL(struct CrashCatEngine *arg_);
|
||||
|
||||
#define __nvoc_crashcatEngineConstruct(arg_) crashcatEngineConstruct_IMPL(arg_)
|
||||
void crashcatEngineDestruct_IMPL(struct CrashCatEngine *arg0);
|
||||
|
||||
#define __nvoc_crashcatEngineDestruct(arg0) crashcatEngineDestruct_IMPL(arg0)
|
||||
struct CrashCatReport *crashcatEngineGetNextCrashReport_IMPL(struct CrashCatEngine *arg0);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline struct CrashCatReport *crashcatEngineGetNextCrashReport(struct CrashCatEngine *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineGetNextCrashReport(arg0) crashcatEngineGetNextCrashReport_IMPL(arg0)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
NV_STATUS crashcatEngineRegisterCrashBuffer_IMPL(struct CrashCatEngine *arg0, NV_CRASHCAT_MEM_APERTURE aperture, NvU64 offset, NvU64 size, void *pEngPriv);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline NV_STATUS crashcatEngineRegisterCrashBuffer(struct CrashCatEngine *arg0, NV_CRASHCAT_MEM_APERTURE aperture, NvU64 offset, NvU64 size, void *pEngPriv) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
return NV_ERR_NOT_SUPPORTED;
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineRegisterCrashBuffer(arg0, aperture, offset, size, pEngPriv) crashcatEngineRegisterCrashBuffer_IMPL(arg0, aperture, offset, size, pEngPriv)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
void crashcatEngineUnregisterCrashBuffer_IMPL(struct CrashCatEngine *arg0, NV_CRASHCAT_MEM_APERTURE aperture, NvU64 offset, NvU64 size);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline void crashcatEngineUnregisterCrashBuffer(struct CrashCatEngine *arg0, NV_CRASHCAT_MEM_APERTURE aperture, NvU64 offset, NvU64 size) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineUnregisterCrashBuffer(arg0, aperture, offset, size) crashcatEngineUnregisterCrashBuffer_IMPL(arg0, aperture, offset, size)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
void *crashcatEngineMapCrashBuffer_IMPL(struct CrashCatEngine *arg0, NV_CRASHCAT_MEM_APERTURE aperture, NvU64 offset, NvU64 size);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline void *crashcatEngineMapCrashBuffer(struct CrashCatEngine *arg0, NV_CRASHCAT_MEM_APERTURE aperture, NvU64 offset, NvU64 size) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineMapCrashBuffer(arg0, aperture, offset, size) crashcatEngineMapCrashBuffer_IMPL(arg0, aperture, offset, size)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
void crashcatEngineUnmapCrashBuffer_IMPL(struct CrashCatEngine *arg0, void *ptr);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline void crashcatEngineUnmapCrashBuffer(struct CrashCatEngine *arg0, void *ptr) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineUnmapCrashBuffer(arg0, ptr) crashcatEngineUnmapCrashBuffer_IMPL(arg0, ptr)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
void crashcatEngineSyncCrashBuffer_IMPL(struct CrashCatEngine *arg0, void *ptr, NvU32 offset, NvU32 size);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline void crashcatEngineSyncCrashBuffer(struct CrashCatEngine *arg0, void *ptr, NvU32 offset, NvU32 size) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineSyncCrashBuffer(arg0, ptr, offset, size) crashcatEngineSyncCrashBuffer_IMPL(arg0, ptr, offset, size)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
NV_STATUS crashcatEngineLoadWayfinder_IMPL(struct CrashCatEngine *arg0);
|
||||
|
||||
#ifdef __nvoc_crashcat_engine_h_disabled
|
||||
static inline NV_STATUS crashcatEngineLoadWayfinder(struct CrashCatEngine *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatEngine was disabled!");
|
||||
return NV_ERR_NOT_SUPPORTED;
|
||||
}
|
||||
#else //__nvoc_crashcat_engine_h_disabled
|
||||
#define crashcatEngineLoadWayfinder(arg0) crashcatEngineLoadWayfinder_IMPL(arg0)
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
#undef PRIVATE_FIELD
|
||||
|
||||
#ifndef NVOC_CRASHCAT_ENGINE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#ifndef __nvoc_crashcat_engine_h_disabled
|
||||
#undef crashcatEngineLoadWayfinder
|
||||
NV_STATUS NVOC_PRIVATE_FUNCTION(crashcatEngineLoadWayfinder)(struct CrashCatEngine *arg0);
|
||||
#endif //__nvoc_crashcat_engine_h_disabled
|
||||
|
||||
#endif // NVOC_CRASHCAT_ENGINE_H_PRIVATE_ACCESS_ALLOWED
|
||||
|
||||
|
||||
#define CRASHCAT_GET_ENGINE(pCrashCatObj) objFindAncestorOfType(CrashCatEngine, pCrashCatObj)
|
||||
|
||||
// Non-NVOC wrapper for handling variadic arguments
|
||||
void crashcatEnginePrintf(struct CrashCatEngine *, NvBool, const char *, ...);
|
||||
|
||||
#endif // CRASHCAT_ENGINE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
#endif // _G_CRASHCAT_ENGINE_NVOC_H_
|
||||
179
src/nvidia/generated/g_crashcat_queue_nvoc.c
Normal file
179
src/nvidia/generated/g_crashcat_queue_nvoc.c
Normal file
@@ -0,0 +1,179 @@
|
||||
#define NVOC_CRASHCAT_QUEUE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#include "nvoc/runtime.h"
|
||||
#include "nvoc/rtti.h"
|
||||
#include "nvtypes.h"
|
||||
#include "nvport/nvport.h"
|
||||
#include "nvport/inline/util_valist.h"
|
||||
#include "utils/nvassert.h"
|
||||
#include "g_crashcat_queue_nvoc.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
char __nvoc_class_id_uniqueness_check_0xbaa900 = 1;
|
||||
#endif
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatQueue;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_Object;
|
||||
|
||||
void __nvoc_init_CrashCatQueue(CrashCatQueue*, CrashCatWayfinder* );
|
||||
void __nvoc_init_funcTable_CrashCatQueue(CrashCatQueue*, CrashCatWayfinder* );
|
||||
NV_STATUS __nvoc_ctor_CrashCatQueue(CrashCatQueue*, CrashCatWayfinder* , CrashCatQueueConfig * arg_pQueueConfig);
|
||||
void __nvoc_init_dataField_CrashCatQueue(CrashCatQueue*, CrashCatWayfinder* );
|
||||
void __nvoc_dtor_CrashCatQueue(CrashCatQueue*);
|
||||
extern const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatQueue;
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatQueue_CrashCatQueue = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatQueue,
|
||||
/*dtor=*/ (NVOC_DYNAMIC_DTOR) &__nvoc_dtor_CrashCatQueue,
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatQueue_Object = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_Object,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(CrashCatQueue, __nvoc_base_Object),
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_CrashCatQueue = {
|
||||
/*numRelatives=*/ 2,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_CrashCatQueue_CrashCatQueue,
|
||||
&__nvoc_rtti_CrashCatQueue_Object,
|
||||
},
|
||||
};
|
||||
|
||||
const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatQueue =
|
||||
{
|
||||
/*classInfo=*/ {
|
||||
/*size=*/ sizeof(CrashCatQueue),
|
||||
/*classId=*/ classId(CrashCatQueue),
|
||||
/*providerId=*/ &__nvoc_rtti_provider,
|
||||
#if NV_PRINTF_STRINGS_ALLOWED
|
||||
/*name=*/ "CrashCatQueue",
|
||||
#endif
|
||||
},
|
||||
/*objCreatefn=*/ (NVOC_DYNAMIC_OBJ_CREATE) &__nvoc_objCreateDynamic_CrashCatQueue,
|
||||
/*pCastInfo=*/ &__nvoc_castinfo_CrashCatQueue,
|
||||
/*pExportInfo=*/ &__nvoc_export_info_CrashCatQueue
|
||||
};
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatQueue =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
/*pExportEntries=*/ 0
|
||||
};
|
||||
|
||||
void __nvoc_dtor_Object(Object*);
|
||||
void __nvoc_dtor_CrashCatQueue(CrashCatQueue *pThis) {
|
||||
__nvoc_crashcatQueueDestruct(pThis);
|
||||
__nvoc_dtor_Object(&pThis->__nvoc_base_Object);
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_dataField_CrashCatQueue(CrashCatQueue *pThis, CrashCatWayfinder *pCrashcatWayfinder) {
|
||||
CrashCatWayfinderHal *wayfinderHal = &pCrashcatWayfinder->wayfinderHal;
|
||||
const unsigned long wayfinderHal_HalVarIdx = (unsigned long)wayfinderHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(pCrashcatWayfinder);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal_HalVarIdx);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_ctor_Object(Object* );
|
||||
NV_STATUS __nvoc_ctor_CrashCatQueue(CrashCatQueue *pThis, CrashCatWayfinder *pCrashcatWayfinder, CrashCatQueueConfig * arg_pQueueConfig) {
|
||||
NV_STATUS status = NV_OK;
|
||||
status = __nvoc_ctor_Object(&pThis->__nvoc_base_Object);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatQueue_fail_Object;
|
||||
__nvoc_init_dataField_CrashCatQueue(pThis, pCrashcatWayfinder);
|
||||
|
||||
status = __nvoc_crashcatQueueConstruct(pThis, arg_pQueueConfig);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatQueue_fail__init;
|
||||
goto __nvoc_ctor_CrashCatQueue_exit; // Success
|
||||
|
||||
__nvoc_ctor_CrashCatQueue_fail__init:
|
||||
__nvoc_dtor_Object(&pThis->__nvoc_base_Object);
|
||||
__nvoc_ctor_CrashCatQueue_fail_Object:
|
||||
__nvoc_ctor_CrashCatQueue_exit:
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
static void __nvoc_init_funcTable_CrashCatQueue_1(CrashCatQueue *pThis, CrashCatWayfinder *pCrashcatWayfinder) {
|
||||
CrashCatWayfinderHal *wayfinderHal = &pCrashcatWayfinder->wayfinderHal;
|
||||
const unsigned long wayfinderHal_HalVarIdx = (unsigned long)wayfinderHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(pCrashcatWayfinder);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal_HalVarIdx);
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_CrashCatQueue(CrashCatQueue *pThis, CrashCatWayfinder *pCrashcatWayfinder) {
|
||||
__nvoc_init_funcTable_CrashCatQueue_1(pThis, pCrashcatWayfinder);
|
||||
}
|
||||
|
||||
void __nvoc_init_Object(Object*);
|
||||
void __nvoc_init_CrashCatQueue(CrashCatQueue *pThis, CrashCatWayfinder *pCrashcatWayfinder) {
|
||||
pThis->__nvoc_pbase_CrashCatQueue = pThis;
|
||||
pThis->__nvoc_pbase_Object = &pThis->__nvoc_base_Object;
|
||||
__nvoc_init_Object(&pThis->__nvoc_base_Object);
|
||||
__nvoc_init_funcTable_CrashCatQueue(pThis, pCrashcatWayfinder);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatQueue(CrashCatQueue **ppThis, Dynamic *pParent, NvU32 createFlags, CrashCatQueueConfig * arg_pQueueConfig) {
|
||||
NV_STATUS status;
|
||||
Object *pParentObj;
|
||||
CrashCatQueue *pThis;
|
||||
CrashCatWayfinder *pCrashcatWayfinder;
|
||||
|
||||
status = __nvoc_handleObjCreateMemAlloc(createFlags, sizeof(CrashCatQueue), (void**)&pThis, (void**)ppThis);
|
||||
if (status != NV_OK)
|
||||
return status;
|
||||
|
||||
portMemSet(pThis, 0, sizeof(CrashCatQueue));
|
||||
|
||||
__nvoc_initRtti(staticCast(pThis, Dynamic), &__nvoc_class_def_CrashCatQueue);
|
||||
|
||||
pThis->__nvoc_base_Object.createFlags = createFlags;
|
||||
|
||||
if (pParent != NULL && !(createFlags & NVOC_OBJ_CREATE_FLAGS_PARENT_HALSPEC_ONLY))
|
||||
{
|
||||
pParentObj = dynamicCast(pParent, Object);
|
||||
objAddChild(pParentObj, &pThis->__nvoc_base_Object);
|
||||
}
|
||||
else
|
||||
{
|
||||
pThis->__nvoc_base_Object.pParent = NULL;
|
||||
}
|
||||
|
||||
if ((pCrashcatWayfinder = dynamicCast(pParent, CrashCatWayfinder)) == NULL)
|
||||
pCrashcatWayfinder = objFindAncestorOfType(CrashCatWayfinder, pParent);
|
||||
NV_ASSERT_OR_RETURN(pCrashcatWayfinder != NULL, NV_ERR_INVALID_ARGUMENT);
|
||||
|
||||
__nvoc_init_CrashCatQueue(pThis, pCrashcatWayfinder);
|
||||
status = __nvoc_ctor_CrashCatQueue(pThis, pCrashcatWayfinder, arg_pQueueConfig);
|
||||
if (status != NV_OK) goto __nvoc_objCreate_CrashCatQueue_cleanup;
|
||||
|
||||
*ppThis = pThis;
|
||||
|
||||
return NV_OK;
|
||||
|
||||
__nvoc_objCreate_CrashCatQueue_cleanup:
|
||||
// do not call destructors here since the constructor already called them
|
||||
if (createFlags & NVOC_OBJ_CREATE_FLAGS_IN_PLACE_CONSTRUCT)
|
||||
portMemSet(pThis, 0, sizeof(CrashCatQueue));
|
||||
else
|
||||
portMemFree(pThis);
|
||||
|
||||
// coverity[leaked_storage:FALSE]
|
||||
return status;
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatQueue(CrashCatQueue **ppThis, Dynamic *pParent, NvU32 createFlags, va_list args) {
|
||||
NV_STATUS status;
|
||||
CrashCatQueueConfig * arg_pQueueConfig = va_arg(args, CrashCatQueueConfig *);
|
||||
|
||||
status = __nvoc_objCreate_CrashCatQueue(ppThis, pParent, createFlags, arg_pQueueConfig);
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
147
src/nvidia/generated/g_crashcat_queue_nvoc.h
Normal file
147
src/nvidia/generated/g_crashcat_queue_nvoc.h
Normal file
@@ -0,0 +1,147 @@
|
||||
#ifndef _G_CRASHCAT_QUEUE_NVOC_H_
|
||||
#define _G_CRASHCAT_QUEUE_NVOC_H_
|
||||
#include "nvoc/runtime.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "g_crashcat_queue_nvoc.h"
|
||||
|
||||
#ifndef CRASHCAT_QUEUE_H
|
||||
#define CRASHCAT_QUEUE_H
|
||||
|
||||
#include "nvoc/object.h"
|
||||
#include "nv-crashcat.h"
|
||||
#include "crashcat/crashcat_wayfinder.h" // for CrashCatWayfinderHal spec
|
||||
|
||||
struct CrashCatEngine;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatEngine_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatEngine_TYPEDEF__
|
||||
typedef struct CrashCatEngine CrashCatEngine;
|
||||
#endif /* __NVOC_CLASS_CrashCatEngine_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatEngine
|
||||
#define __nvoc_class_id_CrashCatEngine 0x654166
|
||||
#endif /* __nvoc_class_id_CrashCatEngine */
|
||||
|
||||
|
||||
struct CrashCatReport;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
typedef struct CrashCatReport CrashCatReport;
|
||||
#endif /* __NVOC_CLASS_CrashCatReport_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatReport
|
||||
#define __nvoc_class_id_CrashCatReport 0xde4777
|
||||
#endif /* __nvoc_class_id_CrashCatReport */
|
||||
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
NV_CRASHCAT_MEM_APERTURE aperture;
|
||||
NvU32 size;
|
||||
NvU64 offset;
|
||||
|
||||
NvU32 putRegOffset;
|
||||
NvU32 getRegOffset;
|
||||
} CrashCatQueueConfig;
|
||||
|
||||
#ifdef NVOC_CRASHCAT_QUEUE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#define PRIVATE_FIELD(x) x
|
||||
#else
|
||||
#define PRIVATE_FIELD(x) NVOC_PRIVATE_FIELD(x)
|
||||
#endif
|
||||
struct CrashCatQueue {
|
||||
const struct NVOC_RTTI *__nvoc_rtti;
|
||||
struct Object __nvoc_base_Object;
|
||||
struct Object *__nvoc_pbase_Object;
|
||||
struct CrashCatQueue *__nvoc_pbase_CrashCatQueue;
|
||||
CrashCatQueueConfig PRIVATE_FIELD(config);
|
||||
struct CrashCatEngine *PRIVATE_FIELD(pEngine);
|
||||
void *PRIVATE_FIELD(pMapping);
|
||||
};
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatQueue_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatQueue_TYPEDEF__
|
||||
typedef struct CrashCatQueue CrashCatQueue;
|
||||
#endif /* __NVOC_CLASS_CrashCatQueue_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatQueue
|
||||
#define __nvoc_class_id_CrashCatQueue 0xbaa900
|
||||
#endif /* __nvoc_class_id_CrashCatQueue */
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatQueue;
|
||||
|
||||
#define __staticCast_CrashCatQueue(pThis) \
|
||||
((pThis)->__nvoc_pbase_CrashCatQueue)
|
||||
|
||||
#ifdef __nvoc_crashcat_queue_h_disabled
|
||||
#define __dynamicCast_CrashCatQueue(pThis) ((CrashCatQueue*)NULL)
|
||||
#else //__nvoc_crashcat_queue_h_disabled
|
||||
#define __dynamicCast_CrashCatQueue(pThis) \
|
||||
((CrashCatQueue*)__nvoc_dynamicCast(staticCast((pThis), Dynamic), classInfo(CrashCatQueue)))
|
||||
#endif //__nvoc_crashcat_queue_h_disabled
|
||||
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatQueue(CrashCatQueue**, Dynamic*, NvU32, va_list);
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatQueue(CrashCatQueue**, Dynamic*, NvU32, CrashCatQueueConfig * arg_pQueueConfig);
|
||||
#define __objCreate_CrashCatQueue(ppNewObj, pParent, createFlags, arg_pQueueConfig) \
|
||||
__nvoc_objCreate_CrashCatQueue((ppNewObj), staticCast((pParent), Dynamic), (createFlags), arg_pQueueConfig)
|
||||
|
||||
struct CrashCatReport *crashcatQueueConsumeNextReport_V1(struct CrashCatQueue *arg0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_queue_h_disabled
|
||||
static inline struct CrashCatReport *crashcatQueueConsumeNextReport(struct CrashCatQueue *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatQueue was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_queue_h_disabled
|
||||
#define crashcatQueueConsumeNextReport(arg0) crashcatQueueConsumeNextReport_V1(arg0)
|
||||
#endif //__nvoc_crashcat_queue_h_disabled
|
||||
|
||||
#define crashcatQueueConsumeNextReport_HAL(arg0) crashcatQueueConsumeNextReport(arg0)
|
||||
|
||||
NV_STATUS crashcatQueueConstruct_IMPL(struct CrashCatQueue *arg_, CrashCatQueueConfig *arg_pQueueConfig);
|
||||
|
||||
#define __nvoc_crashcatQueueConstruct(arg_, arg_pQueueConfig) crashcatQueueConstruct_IMPL(arg_, arg_pQueueConfig)
|
||||
void crashcatQueueDestruct_IMPL(struct CrashCatQueue *arg0);
|
||||
|
||||
#define __nvoc_crashcatQueueDestruct(arg0) crashcatQueueDestruct_IMPL(arg0)
|
||||
#undef PRIVATE_FIELD
|
||||
|
||||
|
||||
#endif // CRASHCAT_QUEUE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
#endif // _G_CRASHCAT_QUEUE_NVOC_H_
|
||||
218
src/nvidia/generated/g_crashcat_report_nvoc.c
Normal file
218
src/nvidia/generated/g_crashcat_report_nvoc.c
Normal file
@@ -0,0 +1,218 @@
|
||||
#define NVOC_CRASHCAT_REPORT_H_PRIVATE_ACCESS_ALLOWED
|
||||
#include "nvoc/runtime.h"
|
||||
#include "nvoc/rtti.h"
|
||||
#include "nvtypes.h"
|
||||
#include "nvport/nvport.h"
|
||||
#include "nvport/inline/util_valist.h"
|
||||
#include "utils/nvassert.h"
|
||||
#include "g_crashcat_report_nvoc.h"
|
||||
|
||||
void __nvoc_init_halspec_CrashCatReportHal(CrashCatReportHal *pCrashCatReportHal, NV_CRASHCAT_PACKET_FORMAT_VERSION version, CrashCatImplementer implementer)
|
||||
{
|
||||
// V1_GENERIC
|
||||
if(version == 0x1 && implementer == 0x0)
|
||||
{
|
||||
pCrashCatReportHal->__nvoc_HalVarIdx = 0;
|
||||
}
|
||||
// V1_LIBOS2
|
||||
else if(version == 0x1 && implementer == 0x4C49424F53322E30)
|
||||
{
|
||||
pCrashCatReportHal->__nvoc_HalVarIdx = 1;
|
||||
}
|
||||
// V1_LIBOS3
|
||||
else if(version == 0x1 && implementer == 0x4C49424F53332E31)
|
||||
{
|
||||
pCrashCatReportHal->__nvoc_HalVarIdx = 2;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
char __nvoc_class_id_uniqueness_check_0xde4777 = 1;
|
||||
#endif
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatReport;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_Object;
|
||||
|
||||
void __nvoc_init_CrashCatReport(CrashCatReport*,
|
||||
NV_CRASHCAT_PACKET_FORMAT_VERSION CrashCatReportHal_version, CrashCatImplementer CrashCatReportHal_implementer);
|
||||
void __nvoc_init_funcTable_CrashCatReport(CrashCatReport*);
|
||||
NV_STATUS __nvoc_ctor_CrashCatReport(CrashCatReport*, void ** arg_ppReportBytes, NvLength arg_bytesRemaining);
|
||||
void __nvoc_init_dataField_CrashCatReport(CrashCatReport*);
|
||||
void __nvoc_dtor_CrashCatReport(CrashCatReport*);
|
||||
extern const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatReport;
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatReport_CrashCatReport = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatReport,
|
||||
/*dtor=*/ (NVOC_DYNAMIC_DTOR) &__nvoc_dtor_CrashCatReport,
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatReport_Object = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_Object,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(CrashCatReport, __nvoc_base_Object),
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_CrashCatReport = {
|
||||
/*numRelatives=*/ 2,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_CrashCatReport_CrashCatReport,
|
||||
&__nvoc_rtti_CrashCatReport_Object,
|
||||
},
|
||||
};
|
||||
|
||||
const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatReport =
|
||||
{
|
||||
/*classInfo=*/ {
|
||||
/*size=*/ sizeof(CrashCatReport),
|
||||
/*classId=*/ classId(CrashCatReport),
|
||||
/*providerId=*/ &__nvoc_rtti_provider,
|
||||
#if NV_PRINTF_STRINGS_ALLOWED
|
||||
/*name=*/ "CrashCatReport",
|
||||
#endif
|
||||
},
|
||||
/*objCreatefn=*/ (NVOC_DYNAMIC_OBJ_CREATE) &__nvoc_objCreateDynamic_CrashCatReport,
|
||||
/*pCastInfo=*/ &__nvoc_castinfo_CrashCatReport,
|
||||
/*pExportInfo=*/ &__nvoc_export_info_CrashCatReport
|
||||
};
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatReport =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
/*pExportEntries=*/ 0
|
||||
};
|
||||
|
||||
void __nvoc_dtor_Object(Object*);
|
||||
void __nvoc_dtor_CrashCatReport(CrashCatReport *pThis) {
|
||||
__nvoc_crashcatReportDestruct(pThis);
|
||||
__nvoc_dtor_Object(&pThis->__nvoc_base_Object);
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_dataField_CrashCatReport(CrashCatReport *pThis) {
|
||||
CrashCatReportHal *reportHal = &pThis->reportHal;
|
||||
const unsigned long reportHal_HalVarIdx = (unsigned long)reportHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(reportHal);
|
||||
PORT_UNREFERENCED_VARIABLE(reportHal_HalVarIdx);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_ctor_Object(Object* );
|
||||
NV_STATUS __nvoc_ctor_CrashCatReport(CrashCatReport *pThis, void ** arg_ppReportBytes, NvLength arg_bytesRemaining) {
|
||||
NV_STATUS status = NV_OK;
|
||||
status = __nvoc_ctor_Object(&pThis->__nvoc_base_Object);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatReport_fail_Object;
|
||||
__nvoc_init_dataField_CrashCatReport(pThis);
|
||||
|
||||
status = __nvoc_crashcatReportConstruct(pThis, arg_ppReportBytes, arg_bytesRemaining);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatReport_fail__init;
|
||||
goto __nvoc_ctor_CrashCatReport_exit; // Success
|
||||
|
||||
__nvoc_ctor_CrashCatReport_fail__init:
|
||||
__nvoc_dtor_Object(&pThis->__nvoc_base_Object);
|
||||
__nvoc_ctor_CrashCatReport_fail_Object:
|
||||
__nvoc_ctor_CrashCatReport_exit:
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
static void __nvoc_init_funcTable_CrashCatReport_1(CrashCatReport *pThis) {
|
||||
CrashCatReportHal *reportHal = &pThis->reportHal;
|
||||
const unsigned long reportHal_HalVarIdx = (unsigned long)reportHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(reportHal);
|
||||
PORT_UNREFERENCED_VARIABLE(reportHal_HalVarIdx);
|
||||
|
||||
// Hal function -- crashcatReportLogReporter
|
||||
if (( ((reportHal_HalVarIdx >> 5) == 0UL) && ((1UL << (reportHal_HalVarIdx & 0x1f)) & 0x00000001UL) )) /* CrashCatReportHal: V1_GENERIC */
|
||||
{
|
||||
pThis->__crashcatReportLogReporter__ = &crashcatReportLogReporter_V1_GENERIC;
|
||||
}
|
||||
else
|
||||
{
|
||||
pThis->__crashcatReportLogReporter__ = &crashcatReportLogReporter_V1_LIBOS2;
|
||||
}
|
||||
|
||||
// Hal function -- crashcatReportLogSource
|
||||
if (( ((reportHal_HalVarIdx >> 5) == 0UL) && ((1UL << (reportHal_HalVarIdx & 0x1f)) & 0x00000001UL) )) /* CrashCatReportHal: V1_GENERIC */
|
||||
{
|
||||
pThis->__crashcatReportLogSource__ = &crashcatReportLogSource_V1_GENERIC;
|
||||
}
|
||||
else
|
||||
{
|
||||
pThis->__crashcatReportLogSource__ = &crashcatReportLogSource_V1_LIBOS2;
|
||||
}
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_CrashCatReport(CrashCatReport *pThis) {
|
||||
__nvoc_init_funcTable_CrashCatReport_1(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_Object(Object*);
|
||||
void __nvoc_init_CrashCatReport(CrashCatReport *pThis,
|
||||
NV_CRASHCAT_PACKET_FORMAT_VERSION CrashCatReportHal_version, CrashCatImplementer CrashCatReportHal_implementer) {
|
||||
pThis->__nvoc_pbase_CrashCatReport = pThis;
|
||||
pThis->__nvoc_pbase_Object = &pThis->__nvoc_base_Object;
|
||||
__nvoc_init_Object(&pThis->__nvoc_base_Object);
|
||||
__nvoc_init_halspec_CrashCatReportHal(&pThis->reportHal, CrashCatReportHal_version, CrashCatReportHal_implementer);
|
||||
__nvoc_init_funcTable_CrashCatReport(pThis);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatReport(CrashCatReport **ppThis, Dynamic *pParent, NvU32 createFlags,
|
||||
NV_CRASHCAT_PACKET_FORMAT_VERSION CrashCatReportHal_version, CrashCatImplementer CrashCatReportHal_implementer, void ** arg_ppReportBytes, NvLength arg_bytesRemaining) {
|
||||
NV_STATUS status;
|
||||
Object *pParentObj;
|
||||
CrashCatReport *pThis;
|
||||
|
||||
status = __nvoc_handleObjCreateMemAlloc(createFlags, sizeof(CrashCatReport), (void**)&pThis, (void**)ppThis);
|
||||
if (status != NV_OK)
|
||||
return status;
|
||||
|
||||
portMemSet(pThis, 0, sizeof(CrashCatReport));
|
||||
|
||||
__nvoc_initRtti(staticCast(pThis, Dynamic), &__nvoc_class_def_CrashCatReport);
|
||||
|
||||
pThis->__nvoc_base_Object.createFlags = createFlags;
|
||||
|
||||
if (pParent != NULL && !(createFlags & NVOC_OBJ_CREATE_FLAGS_PARENT_HALSPEC_ONLY))
|
||||
{
|
||||
pParentObj = dynamicCast(pParent, Object);
|
||||
objAddChild(pParentObj, &pThis->__nvoc_base_Object);
|
||||
}
|
||||
else
|
||||
{
|
||||
pThis->__nvoc_base_Object.pParent = NULL;
|
||||
}
|
||||
|
||||
__nvoc_init_CrashCatReport(pThis, CrashCatReportHal_version, CrashCatReportHal_implementer);
|
||||
status = __nvoc_ctor_CrashCatReport(pThis, arg_ppReportBytes, arg_bytesRemaining);
|
||||
if (status != NV_OK) goto __nvoc_objCreate_CrashCatReport_cleanup;
|
||||
|
||||
*ppThis = pThis;
|
||||
|
||||
return NV_OK;
|
||||
|
||||
__nvoc_objCreate_CrashCatReport_cleanup:
|
||||
// do not call destructors here since the constructor already called them
|
||||
if (createFlags & NVOC_OBJ_CREATE_FLAGS_IN_PLACE_CONSTRUCT)
|
||||
portMemSet(pThis, 0, sizeof(CrashCatReport));
|
||||
else
|
||||
portMemFree(pThis);
|
||||
|
||||
// coverity[leaked_storage:FALSE]
|
||||
return status;
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatReport(CrashCatReport **ppThis, Dynamic *pParent, NvU32 createFlags, va_list args) {
|
||||
NV_STATUS status;
|
||||
NV_CRASHCAT_PACKET_FORMAT_VERSION CrashCatReportHal_version = va_arg(args, NV_CRASHCAT_PACKET_FORMAT_VERSION);
|
||||
CrashCatImplementer CrashCatReportHal_implementer = va_arg(args, CrashCatImplementer);
|
||||
void ** arg_ppReportBytes = va_arg(args, void **);
|
||||
NvLength arg_bytesRemaining = va_arg(args, NvLength);
|
||||
|
||||
status = __nvoc_objCreate_CrashCatReport(ppThis, pParent, createFlags, CrashCatReportHal_version, CrashCatReportHal_implementer, arg_ppReportBytes, arg_bytesRemaining);
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
388
src/nvidia/generated/g_crashcat_report_nvoc.h
Normal file
388
src/nvidia/generated/g_crashcat_report_nvoc.h
Normal file
@@ -0,0 +1,388 @@
|
||||
#ifndef _G_CRASHCAT_REPORT_NVOC_H_
|
||||
#define _G_CRASHCAT_REPORT_NVOC_H_
|
||||
#include "nvoc/runtime.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "g_crashcat_report_nvoc.h"
|
||||
|
||||
#ifndef CRASHCAT_REPORT_H
|
||||
#define CRASHCAT_REPORT_H
|
||||
|
||||
#include "nv-crashcat.h"
|
||||
#include "nvoc/object.h"
|
||||
|
||||
struct CrashCatEngine;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatEngine_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatEngine_TYPEDEF__
|
||||
typedef struct CrashCatEngine CrashCatEngine;
|
||||
#endif /* __NVOC_CLASS_CrashCatEngine_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatEngine
|
||||
#define __nvoc_class_id_CrashCatEngine 0x654166
|
||||
#endif /* __nvoc_class_id_CrashCatEngine */
|
||||
|
||||
|
||||
|
||||
typedef NvU64 CrashCatImplementer;
|
||||
|
||||
#define CRASHCAT_IMPLEMENTER_UNSPECIFIED 0ull
|
||||
#define CRASHCAT_IMPLEMENTER_LIBOS2 0x4C49424F53322E30ull // "LIBOS2.0"
|
||||
#define CRASHCAT_IMPLEMENTER_LIBOS3 0x4C49424F53332E31ull // "LIBOS3.1"
|
||||
|
||||
struct CrashCatReportHal {
|
||||
unsigned short __nvoc_HalVarIdx;
|
||||
};
|
||||
typedef struct CrashCatReportHal CrashCatReportHal;
|
||||
void __nvoc_init_halspec_CrashCatReportHal(CrashCatReportHal*, NV_CRASHCAT_PACKET_FORMAT_VERSION, CrashCatImplementer);
|
||||
|
||||
#ifdef NVOC_CRASHCAT_REPORT_H_PRIVATE_ACCESS_ALLOWED
|
||||
#define PRIVATE_FIELD(x) x
|
||||
#else
|
||||
#define PRIVATE_FIELD(x) NVOC_PRIVATE_FIELD(x)
|
||||
#endif
|
||||
struct __nvoc_inner_struc_CrashCatReport_1__ {
|
||||
NvCrashCatReport_V1 report;
|
||||
NvCrashCatRiscv64CsrState_V1 riscv64CsrState;
|
||||
NvCrashCatRiscv64GprState_V1 riscv64GprState;
|
||||
NvCrashCatRiscv64Trace_V1 *pRiscv64Trace;
|
||||
NvCrashCatIo32State_V1 *pIo32State;
|
||||
};
|
||||
|
||||
|
||||
struct CrashCatReport {
|
||||
const struct NVOC_RTTI *__nvoc_rtti;
|
||||
struct Object __nvoc_base_Object;
|
||||
struct Object *__nvoc_pbase_Object;
|
||||
struct CrashCatReport *__nvoc_pbase_CrashCatReport;
|
||||
void (*__crashcatReportLogReporter__)(struct CrashCatReport *);
|
||||
void (*__crashcatReportLogSource__)(struct CrashCatReport *);
|
||||
struct CrashCatReportHal reportHal;
|
||||
struct CrashCatEngine *PRIVATE_FIELD(pEngine);
|
||||
NvU32 PRIVATE_FIELD(validTags);
|
||||
struct __nvoc_inner_struc_CrashCatReport_1__ PRIVATE_FIELD(v1);
|
||||
};
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
typedef struct CrashCatReport CrashCatReport;
|
||||
#endif /* __NVOC_CLASS_CrashCatReport_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatReport
|
||||
#define __nvoc_class_id_CrashCatReport 0xde4777
|
||||
#endif /* __nvoc_class_id_CrashCatReport */
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatReport;
|
||||
|
||||
#define __staticCast_CrashCatReport(pThis) \
|
||||
((pThis)->__nvoc_pbase_CrashCatReport)
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
#define __dynamicCast_CrashCatReport(pThis) ((CrashCatReport*)NULL)
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define __dynamicCast_CrashCatReport(pThis) \
|
||||
((CrashCatReport*)__nvoc_dynamicCast(staticCast((pThis), Dynamic), classInfo(CrashCatReport)))
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatReport(CrashCatReport**, Dynamic*, NvU32, va_list);
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatReport(CrashCatReport**, Dynamic*, NvU32,
|
||||
NV_CRASHCAT_PACKET_FORMAT_VERSION CrashCatReportHal_version, CrashCatImplementer CrashCatReportHal_implementer, void ** arg_ppReportBytes, NvLength arg_bytesRemaining);
|
||||
#define __objCreate_CrashCatReport(ppNewObj, pParent, createFlags, CrashCatReportHal_version, CrashCatReportHal_implementer, arg_ppReportBytes, arg_bytesRemaining) \
|
||||
__nvoc_objCreate_CrashCatReport((ppNewObj), staticCast((pParent), Dynamic), (createFlags), CrashCatReportHal_version, CrashCatReportHal_implementer, arg_ppReportBytes, arg_bytesRemaining)
|
||||
|
||||
#define crashcatReportLogReporter(arg0) crashcatReportLogReporter_DISPATCH(arg0)
|
||||
#define crashcatReportLogReporter_HAL(arg0) crashcatReportLogReporter_DISPATCH(arg0)
|
||||
#define crashcatReportLogSource(arg0) crashcatReportLogSource_DISPATCH(arg0)
|
||||
#define crashcatReportLogSource_HAL(arg0) crashcatReportLogSource_DISPATCH(arg0)
|
||||
void crashcatReportDestruct_V1(struct CrashCatReport *arg0);
|
||||
|
||||
|
||||
#define __nvoc_crashcatReportDestruct(arg0) crashcatReportDestruct_V1(arg0)
|
||||
void *crashcatReportExtract_V1(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void *crashcatReportExtract(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportExtract(arg0, pReportBytes, bytesRemaining) crashcatReportExtract_V1(arg0, pReportBytes, bytesRemaining)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportExtract_HAL(arg0, pReportBytes, bytesRemaining) crashcatReportExtract(arg0, pReportBytes, bytesRemaining)
|
||||
|
||||
void *crashcatReportExtractReport_V1(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void *crashcatReportExtractReport(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportExtractReport(arg0, pReportBytes, bytesRemaining) crashcatReportExtractReport_V1(arg0, pReportBytes, bytesRemaining)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportExtractReport_HAL(arg0, pReportBytes, bytesRemaining) crashcatReportExtractReport(arg0, pReportBytes, bytesRemaining)
|
||||
|
||||
void *crashcatReportExtractRiscv64CsrState_V1(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void *crashcatReportExtractRiscv64CsrState(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportExtractRiscv64CsrState(arg0, pReportBytes, bytesRemaining) crashcatReportExtractRiscv64CsrState_V1(arg0, pReportBytes, bytesRemaining)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportExtractRiscv64CsrState_HAL(arg0, pReportBytes, bytesRemaining) crashcatReportExtractRiscv64CsrState(arg0, pReportBytes, bytesRemaining)
|
||||
|
||||
void *crashcatReportExtractRiscv64GprState_V1(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void *crashcatReportExtractRiscv64GprState(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportExtractRiscv64GprState(arg0, pReportBytes, bytesRemaining) crashcatReportExtractRiscv64GprState_V1(arg0, pReportBytes, bytesRemaining)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportExtractRiscv64GprState_HAL(arg0, pReportBytes, bytesRemaining) crashcatReportExtractRiscv64GprState(arg0, pReportBytes, bytesRemaining)
|
||||
|
||||
void *crashcatReportExtractRiscv64Trace_V1(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void *crashcatReportExtractRiscv64Trace(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportExtractRiscv64Trace(arg0, pReportBytes, bytesRemaining) crashcatReportExtractRiscv64Trace_V1(arg0, pReportBytes, bytesRemaining)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportExtractRiscv64Trace_HAL(arg0, pReportBytes, bytesRemaining) crashcatReportExtractRiscv64Trace(arg0, pReportBytes, bytesRemaining)
|
||||
|
||||
void *crashcatReportExtractIo32State_V1(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void *crashcatReportExtractIo32State(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportExtractIo32State(arg0, pReportBytes, bytesRemaining) crashcatReportExtractIo32State_V1(arg0, pReportBytes, bytesRemaining)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportExtractIo32State_HAL(arg0, pReportBytes, bytesRemaining) crashcatReportExtractIo32State(arg0, pReportBytes, bytesRemaining)
|
||||
|
||||
void crashcatReportLogRiscv64CsrState_V1(struct CrashCatReport *arg0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void crashcatReportLogRiscv64CsrState(struct CrashCatReport *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportLogRiscv64CsrState(arg0) crashcatReportLogRiscv64CsrState_V1(arg0)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportLogRiscv64CsrState_HAL(arg0) crashcatReportLogRiscv64CsrState(arg0)
|
||||
|
||||
void crashcatReportLogRiscv64GprState_V1(struct CrashCatReport *arg0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void crashcatReportLogRiscv64GprState(struct CrashCatReport *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportLogRiscv64GprState(arg0) crashcatReportLogRiscv64GprState_V1(arg0)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportLogRiscv64GprState_HAL(arg0) crashcatReportLogRiscv64GprState(arg0)
|
||||
|
||||
void crashcatReportLogRiscv64Trace_V1(struct CrashCatReport *arg0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void crashcatReportLogRiscv64Trace(struct CrashCatReport *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportLogRiscv64Trace(arg0) crashcatReportLogRiscv64Trace_V1(arg0)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportLogRiscv64Trace_HAL(arg0) crashcatReportLogRiscv64Trace(arg0)
|
||||
|
||||
void crashcatReportLogIo32State_V1(struct CrashCatReport *arg0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void crashcatReportLogIo32State(struct CrashCatReport *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportLogIo32State(arg0) crashcatReportLogIo32State_V1(arg0)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#define crashcatReportLogIo32State_HAL(arg0) crashcatReportLogIo32State(arg0)
|
||||
|
||||
void crashcatReportLogReporter_V1_GENERIC(struct CrashCatReport *arg0);
|
||||
|
||||
void crashcatReportLogReporter_V1_LIBOS2(struct CrashCatReport *arg0);
|
||||
|
||||
static inline void crashcatReportLogReporter_DISPATCH(struct CrashCatReport *arg0) {
|
||||
arg0->__crashcatReportLogReporter__(arg0);
|
||||
}
|
||||
|
||||
void crashcatReportLogSource_V1_GENERIC(struct CrashCatReport *arg0);
|
||||
|
||||
void crashcatReportLogSource_V1_LIBOS2(struct CrashCatReport *arg0);
|
||||
|
||||
static inline void crashcatReportLogSource_DISPATCH(struct CrashCatReport *arg0) {
|
||||
arg0->__crashcatReportLogSource__(arg0);
|
||||
}
|
||||
|
||||
NV_STATUS crashcatReportConstruct_IMPL(struct CrashCatReport *arg_, void **arg_ppReportBytes, NvLength arg_bytesRemaining);
|
||||
|
||||
#define __nvoc_crashcatReportConstruct(arg_, arg_ppReportBytes, arg_bytesRemaining) crashcatReportConstruct_IMPL(arg_, arg_ppReportBytes, arg_bytesRemaining)
|
||||
void crashcatReportLog_IMPL(struct CrashCatReport *arg0);
|
||||
|
||||
#ifdef __nvoc_crashcat_report_h_disabled
|
||||
static inline void crashcatReportLog(struct CrashCatReport *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatReport was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_report_h_disabled
|
||||
#define crashcatReportLog(arg0) crashcatReportLog_IMPL(arg0)
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#undef PRIVATE_FIELD
|
||||
|
||||
#ifndef NVOC_CRASHCAT_REPORT_H_PRIVATE_ACCESS_ALLOWED
|
||||
#undef crashcatReportLogReporter
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogReporter)(struct CrashCatReport *arg0);
|
||||
|
||||
#undef crashcatReportLogReporter_HAL
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogReporter_HAL)(struct CrashCatReport *arg0);
|
||||
|
||||
#undef crashcatReportLogSource
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogSource)(struct CrashCatReport *arg0);
|
||||
|
||||
#undef crashcatReportLogSource_HAL
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogSource_HAL)(struct CrashCatReport *arg0);
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportExtract
|
||||
void *NVOC_PRIVATE_FUNCTION(crashcatReportExtract)(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportExtractReport
|
||||
void *NVOC_PRIVATE_FUNCTION(crashcatReportExtractReport)(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportExtractRiscv64CsrState
|
||||
void *NVOC_PRIVATE_FUNCTION(crashcatReportExtractRiscv64CsrState)(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportExtractRiscv64GprState
|
||||
void *NVOC_PRIVATE_FUNCTION(crashcatReportExtractRiscv64GprState)(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportExtractRiscv64Trace
|
||||
void *NVOC_PRIVATE_FUNCTION(crashcatReportExtractRiscv64Trace)(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportExtractIo32State
|
||||
void *NVOC_PRIVATE_FUNCTION(crashcatReportExtractIo32State)(struct CrashCatReport *arg0, void *pReportBytes, NvLength bytesRemaining);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportLogRiscv64CsrState
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogRiscv64CsrState)(struct CrashCatReport *arg0);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportLogRiscv64GprState
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogRiscv64GprState)(struct CrashCatReport *arg0);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportLogRiscv64Trace
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogRiscv64Trace)(struct CrashCatReport *arg0);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#ifndef __nvoc_crashcat_report_h_disabled
|
||||
#undef crashcatReportLogIo32State
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatReportLogIo32State)(struct CrashCatReport *arg0);
|
||||
#endif //__nvoc_crashcat_report_h_disabled
|
||||
|
||||
#endif // NVOC_CRASHCAT_REPORT_H_PRIVATE_ACCESS_ALLOWED
|
||||
|
||||
|
||||
// Utility to convert a cause code to a user-friendly string
|
||||
const char *crashcatReportRiscvCauseToString(NvU64 xcause);
|
||||
|
||||
// Log indentation used for multi-line reports
|
||||
#define CRASHCAT_LOG_INDENT " "
|
||||
|
||||
// Prefix used for multi-line reports
|
||||
#if defined(NVRM)
|
||||
#define CRASHCAT_LOG_PREFIX "NVRM: "
|
||||
#else
|
||||
#define CRASHCAT_LOG_PREFIX
|
||||
#endif
|
||||
|
||||
#define CRASHCAT_REPORT_LOG_PACKET_TYPE(pReport, fmt, ...) \
|
||||
crashcatEnginePrintf(pReport->pEngine, NV_FALSE, \
|
||||
CRASHCAT_LOG_PREFIX CRASHCAT_LOG_INDENT fmt, ##__VA_ARGS__)
|
||||
#define CRASHCAT_REPORT_LOG_DATA(pReport, fmt, ...) \
|
||||
crashcatEnginePrintf(pReport->pEngine, NV_FALSE, \
|
||||
CRASHCAT_LOG_PREFIX CRASHCAT_LOG_INDENT CRASHCAT_LOG_INDENT fmt, \
|
||||
##__VA_ARGS__)
|
||||
|
||||
#endif // CRASHCAT_REPORT_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
#endif // _G_CRASHCAT_REPORT_NVOC_H_
|
||||
186
src/nvidia/generated/g_crashcat_wayfinder_nvoc.c
Normal file
186
src/nvidia/generated/g_crashcat_wayfinder_nvoc.c
Normal file
@@ -0,0 +1,186 @@
|
||||
#define NVOC_CRASHCAT_WAYFINDER_H_PRIVATE_ACCESS_ALLOWED
|
||||
#include "nvoc/runtime.h"
|
||||
#include "nvoc/rtti.h"
|
||||
#include "nvtypes.h"
|
||||
#include "nvport/nvport.h"
|
||||
#include "nvport/inline/util_valist.h"
|
||||
#include "utils/nvassert.h"
|
||||
#include "g_crashcat_wayfinder_nvoc.h"
|
||||
|
||||
void __nvoc_init_halspec_CrashCatWayfinderHal(CrashCatWayfinderHal *pCrashCatWayfinderHal, NV_CRASHCAT_WAYFINDER_VERSION version)
|
||||
{
|
||||
// V1
|
||||
if(version == 0x1)
|
||||
{
|
||||
pCrashCatWayfinderHal->__nvoc_HalVarIdx = 0;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
char __nvoc_class_id_uniqueness_check_0x085e32 = 1;
|
||||
#endif
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatWayfinder;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_Object;
|
||||
|
||||
void __nvoc_init_CrashCatWayfinder(CrashCatWayfinder*,
|
||||
NV_CRASHCAT_WAYFINDER_VERSION CrashCatWayfinderHal_version);
|
||||
void __nvoc_init_funcTable_CrashCatWayfinder(CrashCatWayfinder*);
|
||||
NV_STATUS __nvoc_ctor_CrashCatWayfinder(CrashCatWayfinder*, NvU32 arg_wfl0);
|
||||
void __nvoc_init_dataField_CrashCatWayfinder(CrashCatWayfinder*);
|
||||
void __nvoc_dtor_CrashCatWayfinder(CrashCatWayfinder*);
|
||||
extern const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatWayfinder;
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatWayfinder_CrashCatWayfinder = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatWayfinder,
|
||||
/*dtor=*/ (NVOC_DYNAMIC_DTOR) &__nvoc_dtor_CrashCatWayfinder,
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_CrashCatWayfinder_Object = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_Object,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(CrashCatWayfinder, __nvoc_base_Object),
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_CrashCatWayfinder = {
|
||||
/*numRelatives=*/ 2,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_CrashCatWayfinder_CrashCatWayfinder,
|
||||
&__nvoc_rtti_CrashCatWayfinder_Object,
|
||||
},
|
||||
};
|
||||
|
||||
const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatWayfinder =
|
||||
{
|
||||
/*classInfo=*/ {
|
||||
/*size=*/ sizeof(CrashCatWayfinder),
|
||||
/*classId=*/ classId(CrashCatWayfinder),
|
||||
/*providerId=*/ &__nvoc_rtti_provider,
|
||||
#if NV_PRINTF_STRINGS_ALLOWED
|
||||
/*name=*/ "CrashCatWayfinder",
|
||||
#endif
|
||||
},
|
||||
/*objCreatefn=*/ (NVOC_DYNAMIC_OBJ_CREATE) &__nvoc_objCreateDynamic_CrashCatWayfinder,
|
||||
/*pCastInfo=*/ &__nvoc_castinfo_CrashCatWayfinder,
|
||||
/*pExportInfo=*/ &__nvoc_export_info_CrashCatWayfinder
|
||||
};
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_CrashCatWayfinder =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
/*pExportEntries=*/ 0
|
||||
};
|
||||
|
||||
void __nvoc_dtor_Object(Object*);
|
||||
void __nvoc_dtor_CrashCatWayfinder(CrashCatWayfinder *pThis) {
|
||||
__nvoc_crashcatWayfinderDestruct(pThis);
|
||||
__nvoc_dtor_Object(&pThis->__nvoc_base_Object);
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_dataField_CrashCatWayfinder(CrashCatWayfinder *pThis) {
|
||||
CrashCatWayfinderHal *wayfinderHal = &pThis->wayfinderHal;
|
||||
const unsigned long wayfinderHal_HalVarIdx = (unsigned long)wayfinderHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal_HalVarIdx);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_ctor_Object(Object* );
|
||||
NV_STATUS __nvoc_ctor_CrashCatWayfinder(CrashCatWayfinder *pThis, NvU32 arg_wfl0) {
|
||||
NV_STATUS status = NV_OK;
|
||||
status = __nvoc_ctor_Object(&pThis->__nvoc_base_Object);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatWayfinder_fail_Object;
|
||||
__nvoc_init_dataField_CrashCatWayfinder(pThis);
|
||||
|
||||
status = __nvoc_crashcatWayfinderConstruct(pThis, arg_wfl0);
|
||||
if (status != NV_OK) goto __nvoc_ctor_CrashCatWayfinder_fail__init;
|
||||
goto __nvoc_ctor_CrashCatWayfinder_exit; // Success
|
||||
|
||||
__nvoc_ctor_CrashCatWayfinder_fail__init:
|
||||
__nvoc_dtor_Object(&pThis->__nvoc_base_Object);
|
||||
__nvoc_ctor_CrashCatWayfinder_fail_Object:
|
||||
__nvoc_ctor_CrashCatWayfinder_exit:
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
static void __nvoc_init_funcTable_CrashCatWayfinder_1(CrashCatWayfinder *pThis) {
|
||||
CrashCatWayfinderHal *wayfinderHal = &pThis->wayfinderHal;
|
||||
const unsigned long wayfinderHal_HalVarIdx = (unsigned long)wayfinderHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal);
|
||||
PORT_UNREFERENCED_VARIABLE(wayfinderHal_HalVarIdx);
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_CrashCatWayfinder(CrashCatWayfinder *pThis) {
|
||||
__nvoc_init_funcTable_CrashCatWayfinder_1(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_Object(Object*);
|
||||
void __nvoc_init_CrashCatWayfinder(CrashCatWayfinder *pThis,
|
||||
NV_CRASHCAT_WAYFINDER_VERSION CrashCatWayfinderHal_version) {
|
||||
pThis->__nvoc_pbase_CrashCatWayfinder = pThis;
|
||||
pThis->__nvoc_pbase_Object = &pThis->__nvoc_base_Object;
|
||||
__nvoc_init_Object(&pThis->__nvoc_base_Object);
|
||||
__nvoc_init_halspec_CrashCatWayfinderHal(&pThis->wayfinderHal, CrashCatWayfinderHal_version);
|
||||
__nvoc_init_funcTable_CrashCatWayfinder(pThis);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatWayfinder(CrashCatWayfinder **ppThis, Dynamic *pParent, NvU32 createFlags,
|
||||
NV_CRASHCAT_WAYFINDER_VERSION CrashCatWayfinderHal_version, NvU32 arg_wfl0) {
|
||||
NV_STATUS status;
|
||||
Object *pParentObj;
|
||||
CrashCatWayfinder *pThis;
|
||||
|
||||
status = __nvoc_handleObjCreateMemAlloc(createFlags, sizeof(CrashCatWayfinder), (void**)&pThis, (void**)ppThis);
|
||||
if (status != NV_OK)
|
||||
return status;
|
||||
|
||||
portMemSet(pThis, 0, sizeof(CrashCatWayfinder));
|
||||
|
||||
__nvoc_initRtti(staticCast(pThis, Dynamic), &__nvoc_class_def_CrashCatWayfinder);
|
||||
|
||||
pThis->__nvoc_base_Object.createFlags = createFlags;
|
||||
|
||||
if (pParent != NULL && !(createFlags & NVOC_OBJ_CREATE_FLAGS_PARENT_HALSPEC_ONLY))
|
||||
{
|
||||
pParentObj = dynamicCast(pParent, Object);
|
||||
objAddChild(pParentObj, &pThis->__nvoc_base_Object);
|
||||
}
|
||||
else
|
||||
{
|
||||
pThis->__nvoc_base_Object.pParent = NULL;
|
||||
}
|
||||
|
||||
__nvoc_init_CrashCatWayfinder(pThis, CrashCatWayfinderHal_version);
|
||||
status = __nvoc_ctor_CrashCatWayfinder(pThis, arg_wfl0);
|
||||
if (status != NV_OK) goto __nvoc_objCreate_CrashCatWayfinder_cleanup;
|
||||
|
||||
*ppThis = pThis;
|
||||
|
||||
return NV_OK;
|
||||
|
||||
__nvoc_objCreate_CrashCatWayfinder_cleanup:
|
||||
// do not call destructors here since the constructor already called them
|
||||
if (createFlags & NVOC_OBJ_CREATE_FLAGS_IN_PLACE_CONSTRUCT)
|
||||
portMemSet(pThis, 0, sizeof(CrashCatWayfinder));
|
||||
else
|
||||
portMemFree(pThis);
|
||||
|
||||
// coverity[leaked_storage:FALSE]
|
||||
return status;
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatWayfinder(CrashCatWayfinder **ppThis, Dynamic *pParent, NvU32 createFlags, va_list args) {
|
||||
NV_STATUS status;
|
||||
NV_CRASHCAT_WAYFINDER_VERSION CrashCatWayfinderHal_version = va_arg(args, NV_CRASHCAT_WAYFINDER_VERSION);
|
||||
NvU32 arg_wfl0 = va_arg(args, NvU32);
|
||||
|
||||
status = __nvoc_objCreate_CrashCatWayfinder(ppThis, pParent, createFlags, CrashCatWayfinderHal_version, arg_wfl0);
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
170
src/nvidia/generated/g_crashcat_wayfinder_nvoc.h
Normal file
170
src/nvidia/generated/g_crashcat_wayfinder_nvoc.h
Normal file
@@ -0,0 +1,170 @@
|
||||
#ifndef _G_CRASHCAT_WAYFINDER_NVOC_H_
|
||||
#define _G_CRASHCAT_WAYFINDER_NVOC_H_
|
||||
#include "nvoc/runtime.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "g_crashcat_wayfinder_nvoc.h"
|
||||
|
||||
#ifndef CRASHCAT_WAYFINDER_H
|
||||
#define CRASHCAT_WAYFINDER_H
|
||||
|
||||
#include "nvoc/object.h"
|
||||
#include "nv-crashcat.h"
|
||||
|
||||
struct CrashCatQueue;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatQueue_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatQueue_TYPEDEF__
|
||||
typedef struct CrashCatQueue CrashCatQueue;
|
||||
#endif /* __NVOC_CLASS_CrashCatQueue_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatQueue
|
||||
#define __nvoc_class_id_CrashCatQueue 0xbaa900
|
||||
#endif /* __nvoc_class_id_CrashCatQueue */
|
||||
|
||||
|
||||
struct CrashCatReport;
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatReport_TYPEDEF__
|
||||
typedef struct CrashCatReport CrashCatReport;
|
||||
#endif /* __NVOC_CLASS_CrashCatReport_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatReport
|
||||
#define __nvoc_class_id_CrashCatReport 0xde4777
|
||||
#endif /* __nvoc_class_id_CrashCatReport */
|
||||
|
||||
|
||||
|
||||
struct CrashCatWayfinderHal {
|
||||
unsigned short __nvoc_HalVarIdx;
|
||||
};
|
||||
typedef struct CrashCatWayfinderHal CrashCatWayfinderHal;
|
||||
void __nvoc_init_halspec_CrashCatWayfinderHal(CrashCatWayfinderHal*, NV_CRASHCAT_WAYFINDER_VERSION);
|
||||
|
||||
#ifdef NVOC_CRASHCAT_WAYFINDER_H_PRIVATE_ACCESS_ALLOWED
|
||||
#define PRIVATE_FIELD(x) x
|
||||
#else
|
||||
#define PRIVATE_FIELD(x) NVOC_PRIVATE_FIELD(x)
|
||||
#endif
|
||||
struct __nvoc_inner_struc_CrashCatWayfinder_1__ {
|
||||
NvCrashCatWayfinderL0_V1 wfl0;
|
||||
NvCrashCatWayfinderL1_V1 wfl1;
|
||||
};
|
||||
|
||||
|
||||
struct CrashCatWayfinder {
|
||||
const struct NVOC_RTTI *__nvoc_rtti;
|
||||
struct Object __nvoc_base_Object;
|
||||
struct Object *__nvoc_pbase_Object;
|
||||
struct CrashCatWayfinder *__nvoc_pbase_CrashCatWayfinder;
|
||||
struct CrashCatWayfinderHal wayfinderHal;
|
||||
struct CrashCatQueue *PRIVATE_FIELD(pQueue);
|
||||
struct __nvoc_inner_struc_CrashCatWayfinder_1__ PRIVATE_FIELD(v1);
|
||||
};
|
||||
|
||||
#ifndef __NVOC_CLASS_CrashCatWayfinder_TYPEDEF__
|
||||
#define __NVOC_CLASS_CrashCatWayfinder_TYPEDEF__
|
||||
typedef struct CrashCatWayfinder CrashCatWayfinder;
|
||||
#endif /* __NVOC_CLASS_CrashCatWayfinder_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_CrashCatWayfinder
|
||||
#define __nvoc_class_id_CrashCatWayfinder 0x085e32
|
||||
#endif /* __nvoc_class_id_CrashCatWayfinder */
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatWayfinder;
|
||||
|
||||
#define __staticCast_CrashCatWayfinder(pThis) \
|
||||
((pThis)->__nvoc_pbase_CrashCatWayfinder)
|
||||
|
||||
#ifdef __nvoc_crashcat_wayfinder_h_disabled
|
||||
#define __dynamicCast_CrashCatWayfinder(pThis) ((CrashCatWayfinder*)NULL)
|
||||
#else //__nvoc_crashcat_wayfinder_h_disabled
|
||||
#define __dynamicCast_CrashCatWayfinder(pThis) \
|
||||
((CrashCatWayfinder*)__nvoc_dynamicCast(staticCast((pThis), Dynamic), classInfo(CrashCatWayfinder)))
|
||||
#endif //__nvoc_crashcat_wayfinder_h_disabled
|
||||
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_CrashCatWayfinder(CrashCatWayfinder**, Dynamic*, NvU32, va_list);
|
||||
|
||||
NV_STATUS __nvoc_objCreate_CrashCatWayfinder(CrashCatWayfinder**, Dynamic*, NvU32,
|
||||
NV_CRASHCAT_WAYFINDER_VERSION CrashCatWayfinderHal_version, NvU32 arg_wfl0);
|
||||
#define __objCreate_CrashCatWayfinder(ppNewObj, pParent, createFlags, CrashCatWayfinderHal_version, arg_wfl0) \
|
||||
__nvoc_objCreate_CrashCatWayfinder((ppNewObj), staticCast((pParent), Dynamic), (createFlags), CrashCatWayfinderHal_version, arg_wfl0)
|
||||
|
||||
struct CrashCatQueue *crashcatWayfinderGetReportQueue_V1(struct CrashCatWayfinder *arg0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_wayfinder_h_disabled
|
||||
static inline struct CrashCatQueue *crashcatWayfinderGetReportQueue(struct CrashCatWayfinder *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatWayfinder was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_crashcat_wayfinder_h_disabled
|
||||
#define crashcatWayfinderGetReportQueue(arg0) crashcatWayfinderGetReportQueue_V1(arg0)
|
||||
#endif //__nvoc_crashcat_wayfinder_h_disabled
|
||||
|
||||
#define crashcatWayfinderGetReportQueue_HAL(arg0) crashcatWayfinderGetReportQueue(arg0)
|
||||
|
||||
void crashcatWayfinderSetWFL0_V1(struct CrashCatWayfinder *arg0, NvU32 wfl0);
|
||||
|
||||
|
||||
#ifdef __nvoc_crashcat_wayfinder_h_disabled
|
||||
static inline void crashcatWayfinderSetWFL0(struct CrashCatWayfinder *arg0, NvU32 wfl0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("CrashCatWayfinder was disabled!");
|
||||
}
|
||||
#else //__nvoc_crashcat_wayfinder_h_disabled
|
||||
#define crashcatWayfinderSetWFL0(arg0, wfl0) crashcatWayfinderSetWFL0_V1(arg0, wfl0)
|
||||
#endif //__nvoc_crashcat_wayfinder_h_disabled
|
||||
|
||||
#define crashcatWayfinderSetWFL0_HAL(arg0, wfl0) crashcatWayfinderSetWFL0(arg0, wfl0)
|
||||
|
||||
NV_STATUS crashcatWayfinderConstruct_IMPL(struct CrashCatWayfinder *arg_, NvU32 arg_wfl0);
|
||||
|
||||
#define __nvoc_crashcatWayfinderConstruct(arg_, arg_wfl0) crashcatWayfinderConstruct_IMPL(arg_, arg_wfl0)
|
||||
void crashcatWayfinderDestruct_IMPL(struct CrashCatWayfinder *arg0);
|
||||
|
||||
#define __nvoc_crashcatWayfinderDestruct(arg0) crashcatWayfinderDestruct_IMPL(arg0)
|
||||
#undef PRIVATE_FIELD
|
||||
|
||||
#ifndef NVOC_CRASHCAT_WAYFINDER_H_PRIVATE_ACCESS_ALLOWED
|
||||
#ifndef __nvoc_crashcat_wayfinder_h_disabled
|
||||
#undef crashcatWayfinderSetWFL0
|
||||
void NVOC_PRIVATE_FUNCTION(crashcatWayfinderSetWFL0)(struct CrashCatWayfinder *arg0, NvU32 wfl0);
|
||||
#endif //__nvoc_crashcat_wayfinder_h_disabled
|
||||
|
||||
#endif // NVOC_CRASHCAT_WAYFINDER_H_PRIVATE_ACCESS_ALLOWED
|
||||
|
||||
|
||||
#endif // CRASHCAT_VECTOR_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
#endif // _G_CRASHCAT_WAYFINDER_NVOC_H_
|
||||
@@ -266,6 +266,7 @@ void __nvoc_init_dataField_OBJGPU(OBJGPU *pThis) {
|
||||
{
|
||||
pThis->setProperty(pThis, PDB_PROP_GPU_CHIP_SUPPORTS_RTD3_DEF, ((NvBool)(0 == 0)));
|
||||
}
|
||||
pThis->setProperty(pThis, PDB_PROP_GPU_FASTPATH_SEQ_ENABLED, ((NvBool)(0 != 0)));
|
||||
|
||||
pThis->boardId = ~0;
|
||||
|
||||
|
||||
@@ -992,6 +992,7 @@ struct OBJGPU {
|
||||
NvBool PDB_PROP_GPU_SKIP_TABLE_CE_MAP;
|
||||
NvBool PDB_PROP_GPU_CHIP_SUPPORTS_RTD3_DEF;
|
||||
NvBool PDB_PROP_GPU_FORCE_PERF_BIOS_LEVEL;
|
||||
NvBool PDB_PROP_GPU_FASTPATH_SEQ_ENABLED;
|
||||
OS_GPU_INFO *pOsGpuInfo;
|
||||
OS_RM_CAPS *pOsRmCaps;
|
||||
NvU32 halImpl;
|
||||
@@ -1268,6 +1269,8 @@ extern const struct NVOC_CLASS_DEF __nvoc_class_def_OBJGPU;
|
||||
#define PDB_PROP_GPU_RM_UNLINKED_SLI_BASE_NAME PDB_PROP_GPU_RM_UNLINKED_SLI
|
||||
#define PDB_PROP_GPU_FORCE_PERF_BIOS_LEVEL_BASE_CAST
|
||||
#define PDB_PROP_GPU_FORCE_PERF_BIOS_LEVEL_BASE_NAME PDB_PROP_GPU_FORCE_PERF_BIOS_LEVEL
|
||||
#define PDB_PROP_GPU_FASTPATH_SEQ_ENABLED_BASE_CAST
|
||||
#define PDB_PROP_GPU_FASTPATH_SEQ_ENABLED_BASE_NAME PDB_PROP_GPU_FASTPATH_SEQ_ENABLED
|
||||
#define PDB_PROP_GPU_IS_UEFI_BASE_CAST
|
||||
#define PDB_PROP_GPU_IS_UEFI_BASE_NAME PDB_PROP_GPU_IS_UEFI
|
||||
#define PDB_PROP_GPU_SKIP_TABLE_CE_MAP_BASE_CAST
|
||||
|
||||
@@ -625,40 +625,6 @@ static inline void intrClearLeafVector(OBJGPU *pGpu, struct Intr *pIntr, NvU32 v
|
||||
|
||||
#define intrClearLeafVector_HAL(pGpu, pIntr, vector, pThreadState) intrClearLeafVector(pGpu, pIntr, vector, pThreadState)
|
||||
|
||||
static inline void intrClearCpuLeafVector_b3696a(OBJGPU *pGpu, struct Intr *pIntr, NvU32 vector, struct THREAD_STATE_NODE *pThreadState) {
|
||||
return;
|
||||
}
|
||||
|
||||
void intrClearCpuLeafVector_GH100(OBJGPU *pGpu, struct Intr *pIntr, NvU32 vector, struct THREAD_STATE_NODE *pThreadState);
|
||||
|
||||
|
||||
#ifdef __nvoc_intr_h_disabled
|
||||
static inline void intrClearCpuLeafVector(OBJGPU *pGpu, struct Intr *pIntr, NvU32 vector, struct THREAD_STATE_NODE *pThreadState) {
|
||||
NV_ASSERT_FAILED_PRECOMP("Intr was disabled!");
|
||||
}
|
||||
#else //__nvoc_intr_h_disabled
|
||||
#define intrClearCpuLeafVector(pGpu, pIntr, vector, pThreadState) intrClearCpuLeafVector_b3696a(pGpu, pIntr, vector, pThreadState)
|
||||
#endif //__nvoc_intr_h_disabled
|
||||
|
||||
#define intrClearCpuLeafVector_HAL(pGpu, pIntr, vector, pThreadState) intrClearCpuLeafVector(pGpu, pIntr, vector, pThreadState)
|
||||
|
||||
static inline void intrWriteCpuRegLeaf_b3696a(OBJGPU *pGpu, struct Intr *pIntr, NvU32 arg0, NvU32 arg1, struct THREAD_STATE_NODE *arg2) {
|
||||
return;
|
||||
}
|
||||
|
||||
void intrWriteCpuRegLeaf_GH100(OBJGPU *pGpu, struct Intr *pIntr, NvU32 arg0, NvU32 arg1, struct THREAD_STATE_NODE *arg2);
|
||||
|
||||
|
||||
#ifdef __nvoc_intr_h_disabled
|
||||
static inline void intrWriteCpuRegLeaf(OBJGPU *pGpu, struct Intr *pIntr, NvU32 arg0, NvU32 arg1, struct THREAD_STATE_NODE *arg2) {
|
||||
NV_ASSERT_FAILED_PRECOMP("Intr was disabled!");
|
||||
}
|
||||
#else //__nvoc_intr_h_disabled
|
||||
#define intrWriteCpuRegLeaf(pGpu, pIntr, arg0, arg1, arg2) intrWriteCpuRegLeaf_b3696a(pGpu, pIntr, arg0, arg1, arg2)
|
||||
#endif //__nvoc_intr_h_disabled
|
||||
|
||||
#define intrWriteCpuRegLeaf_HAL(pGpu, pIntr, arg0, arg1, arg2) intrWriteCpuRegLeaf(pGpu, pIntr, arg0, arg1, arg2)
|
||||
|
||||
NvBool intrIsVectorPending_TU102(OBJGPU *pGpu, struct Intr *pIntr, NvU32 vector, struct THREAD_STATE_NODE *pThreadState);
|
||||
|
||||
|
||||
|
||||
213
src/nvidia/generated/g_kernel_crashcat_engine_nvoc.c
Normal file
213
src/nvidia/generated/g_kernel_crashcat_engine_nvoc.c
Normal file
@@ -0,0 +1,213 @@
|
||||
#define NVOC_KERNEL_CRASHCAT_ENGINE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#include "nvoc/runtime.h"
|
||||
#include "nvoc/rtti.h"
|
||||
#include "nvtypes.h"
|
||||
#include "nvport/nvport.h"
|
||||
#include "nvport/inline/util_valist.h"
|
||||
#include "utils/nvassert.h"
|
||||
#include "g_kernel_crashcat_engine_nvoc.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
char __nvoc_class_id_uniqueness_check_0xc37aef = 1;
|
||||
#endif
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
void __nvoc_init_KernelCrashCatEngine(KernelCrashCatEngine*, RmHalspecOwner* );
|
||||
void __nvoc_init_funcTable_KernelCrashCatEngine(KernelCrashCatEngine*, RmHalspecOwner* );
|
||||
NV_STATUS __nvoc_ctor_KernelCrashCatEngine(KernelCrashCatEngine*, RmHalspecOwner* );
|
||||
void __nvoc_init_dataField_KernelCrashCatEngine(KernelCrashCatEngine*, RmHalspecOwner* );
|
||||
void __nvoc_dtor_KernelCrashCatEngine(KernelCrashCatEngine*);
|
||||
extern const struct NVOC_EXPORT_INFO __nvoc_export_info_KernelCrashCatEngine;
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelCrashCatEngine_KernelCrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelCrashCatEngine,
|
||||
/*dtor=*/ (NVOC_DYNAMIC_DTOR) &__nvoc_dtor_KernelCrashCatEngine,
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelCrashCatEngine, __nvoc_base_CrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_KernelCrashCatEngine = {
|
||||
/*numRelatives=*/ 2,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_KernelCrashCatEngine_KernelCrashCatEngine,
|
||||
&__nvoc_rtti_KernelCrashCatEngine_CrashCatEngine,
|
||||
},
|
||||
};
|
||||
|
||||
// Not instantiable because it's not derived from class "Object"
|
||||
// Not instantiable because it's an abstract class with following pure virtual functions:
|
||||
// kcrashcatEngineRegRead
|
||||
// kcrashcatEngineRegWrite
|
||||
// kcrashcatEngineMaskDmemAddr
|
||||
const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine =
|
||||
{
|
||||
/*classInfo=*/ {
|
||||
/*size=*/ sizeof(KernelCrashCatEngine),
|
||||
/*classId=*/ classId(KernelCrashCatEngine),
|
||||
/*providerId=*/ &__nvoc_rtti_provider,
|
||||
#if NV_PRINTF_STRINGS_ALLOWED
|
||||
/*name=*/ "KernelCrashCatEngine",
|
||||
#endif
|
||||
},
|
||||
/*objCreatefn=*/ (NVOC_DYNAMIC_OBJ_CREATE) NULL,
|
||||
/*pCastInfo=*/ &__nvoc_castinfo_KernelCrashCatEngine,
|
||||
/*pExportInfo=*/ &__nvoc_export_info_KernelCrashCatEngine
|
||||
};
|
||||
|
||||
static NvBool __nvoc_thunk_KernelCrashCatEngine_crashcatEngineConfigured(struct CrashCatEngine *arg0) {
|
||||
return kcrashcatEngineConfigured((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_crashcatEngineUnload(struct CrashCatEngine *arg0) {
|
||||
kcrashcatEngineUnload((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_crashcatEngineVprintf(struct CrashCatEngine *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
kcrashcatEngineVprintf((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_crashcatEnginePriRead(struct CrashCatEngine *arg0, NvU32 offset) {
|
||||
return kcrashcatEnginePriRead((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), offset);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_crashcatEnginePriWrite(struct CrashCatEngine *arg0, NvU32 offset, NvU32 data) {
|
||||
kcrashcatEnginePriWrite((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), offset, data);
|
||||
}
|
||||
|
||||
static void *__nvoc_thunk_KernelCrashCatEngine_crashcatEngineMapBufferDescriptor(struct CrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return kcrashcatEngineMapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_crashcatEngineUnmapBufferDescriptor(struct CrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
kcrashcatEngineUnmapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_crashcatEngineSyncBufferDescriptor(struct CrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
kcrashcatEngineSyncBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static const NvU32 *__nvoc_thunk_KernelCrashCatEngine_crashcatEngineGetScratchOffsets(struct CrashCatEngine *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return kcrashcatEngineGetScratchOffsets((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset), scratchGroupId);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_crashcatEngineGetWFL0Offset(struct CrashCatEngine *arg0) {
|
||||
return kcrashcatEngineGetWFL0Offset((struct KernelCrashCatEngine *)(((unsigned char *)arg0) - __nvoc_rtti_KernelCrashCatEngine_CrashCatEngine.offset));
|
||||
}
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_KernelCrashCatEngine =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
/*pExportEntries=*/ 0
|
||||
};
|
||||
|
||||
void __nvoc_dtor_CrashCatEngine(CrashCatEngine*);
|
||||
void __nvoc_dtor_KernelCrashCatEngine(KernelCrashCatEngine *pThis) {
|
||||
__nvoc_dtor_CrashCatEngine(&pThis->__nvoc_base_CrashCatEngine);
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
void __nvoc_init_dataField_KernelCrashCatEngine(KernelCrashCatEngine *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
ChipHal *chipHal = &pRmhalspecowner->chipHal;
|
||||
const unsigned long chipHal_HalVarIdx = (unsigned long)chipHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(pRmhalspecowner);
|
||||
PORT_UNREFERENCED_VARIABLE(chipHal);
|
||||
PORT_UNREFERENCED_VARIABLE(chipHal_HalVarIdx);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_ctor_CrashCatEngine(CrashCatEngine* );
|
||||
NV_STATUS __nvoc_ctor_KernelCrashCatEngine(KernelCrashCatEngine *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
NV_STATUS status = NV_OK;
|
||||
status = __nvoc_ctor_CrashCatEngine(&pThis->__nvoc_base_CrashCatEngine);
|
||||
if (status != NV_OK) goto __nvoc_ctor_KernelCrashCatEngine_fail_CrashCatEngine;
|
||||
__nvoc_init_dataField_KernelCrashCatEngine(pThis, pRmhalspecowner);
|
||||
goto __nvoc_ctor_KernelCrashCatEngine_exit; // Success
|
||||
|
||||
__nvoc_ctor_KernelCrashCatEngine_fail_CrashCatEngine:
|
||||
__nvoc_ctor_KernelCrashCatEngine_exit:
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
static void __nvoc_init_funcTable_KernelCrashCatEngine_1(KernelCrashCatEngine *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
ChipHal *chipHal = &pRmhalspecowner->chipHal;
|
||||
const unsigned long chipHal_HalVarIdx = (unsigned long)chipHal->__nvoc_HalVarIdx;
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
PORT_UNREFERENCED_VARIABLE(pRmhalspecowner);
|
||||
PORT_UNREFERENCED_VARIABLE(chipHal);
|
||||
PORT_UNREFERENCED_VARIABLE(chipHal_HalVarIdx);
|
||||
|
||||
pThis->__kcrashcatEngineConfigured__ = &kcrashcatEngineConfigured_IMPL;
|
||||
|
||||
pThis->__kcrashcatEngineUnload__ = &kcrashcatEngineUnload_IMPL;
|
||||
|
||||
pThis->__kcrashcatEngineVprintf__ = &kcrashcatEngineVprintf_IMPL;
|
||||
|
||||
pThis->__kcrashcatEngineRegRead__ = NULL;
|
||||
|
||||
pThis->__kcrashcatEngineRegWrite__ = NULL;
|
||||
|
||||
pThis->__kcrashcatEngineMaskDmemAddr__ = NULL;
|
||||
|
||||
pThis->__kcrashcatEnginePriRead__ = &kcrashcatEnginePriRead_IMPL;
|
||||
|
||||
pThis->__kcrashcatEnginePriWrite__ = &kcrashcatEnginePriWrite_IMPL;
|
||||
|
||||
pThis->__kcrashcatEngineMapBufferDescriptor__ = &kcrashcatEngineMapBufferDescriptor_IMPL;
|
||||
|
||||
pThis->__kcrashcatEngineUnmapBufferDescriptor__ = &kcrashcatEngineUnmapBufferDescriptor_IMPL;
|
||||
|
||||
pThis->__kcrashcatEngineSyncBufferDescriptor__ = &kcrashcatEngineSyncBufferDescriptor_IMPL;
|
||||
|
||||
// Hal function -- kcrashcatEngineReadDmem
|
||||
pThis->__kcrashcatEngineReadDmem__ = &kcrashcatEngineReadDmem_TU102;
|
||||
|
||||
pThis->__kcrashcatEngineReadEmem__ = &kcrashcatEngineReadEmem_2fced3;
|
||||
|
||||
// Hal function -- kcrashcatEngineGetScratchOffsets
|
||||
pThis->__kcrashcatEngineGetScratchOffsets__ = &kcrashcatEngineGetScratchOffsets_TU102;
|
||||
|
||||
// Hal function -- kcrashcatEngineGetWFL0Offset
|
||||
pThis->__kcrashcatEngineGetWFL0Offset__ = &kcrashcatEngineGetWFL0Offset_TU102;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineConfigured__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineConfigured;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineUnload__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineUnload;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineVprintf__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineVprintf;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEnginePriRead__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEnginePriRead;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEnginePriWrite__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEnginePriWrite;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineMapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineMapBufferDescriptor;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineUnmapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineUnmapBufferDescriptor;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineSyncBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineSyncBufferDescriptor;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineGetScratchOffsets__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineGetScratchOffsets;
|
||||
|
||||
pThis->__nvoc_base_CrashCatEngine.__crashcatEngineGetWFL0Offset__ = &__nvoc_thunk_KernelCrashCatEngine_crashcatEngineGetWFL0Offset;
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_KernelCrashCatEngine(KernelCrashCatEngine *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
__nvoc_init_funcTable_KernelCrashCatEngine_1(pThis, pRmhalspecowner);
|
||||
}
|
||||
|
||||
void __nvoc_init_CrashCatEngine(CrashCatEngine*);
|
||||
void __nvoc_init_KernelCrashCatEngine(KernelCrashCatEngine *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
pThis->__nvoc_pbase_KernelCrashCatEngine = pThis;
|
||||
pThis->__nvoc_pbase_CrashCatEngine = &pThis->__nvoc_base_CrashCatEngine;
|
||||
__nvoc_init_CrashCatEngine(&pThis->__nvoc_base_CrashCatEngine);
|
||||
__nvoc_init_funcTable_KernelCrashCatEngine(pThis, pRmhalspecowner);
|
||||
}
|
||||
|
||||
274
src/nvidia/generated/g_kernel_crashcat_engine_nvoc.h
Normal file
274
src/nvidia/generated/g_kernel_crashcat_engine_nvoc.h
Normal file
@@ -0,0 +1,274 @@
|
||||
#ifndef _G_KERNEL_CRASHCAT_ENGINE_NVOC_H_
|
||||
#define _G_KERNEL_CRASHCAT_ENGINE_NVOC_H_
|
||||
#include "nvoc/runtime.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "g_kernel_crashcat_engine_nvoc.h"
|
||||
|
||||
#ifndef KERNEL_CRASHCAT_ENGINE_H
|
||||
#define KERNEL_CRASHCAT_ENGINE_H
|
||||
|
||||
#include "containers/map.h"
|
||||
#include "core/core.h"
|
||||
#include "crashcat/crashcat_engine.h"
|
||||
#include "gpu/gpu_halspec.h"
|
||||
#include "gpu/mem_mgr/mem_desc.h"
|
||||
|
||||
typedef struct KernelCrashCatEngineConfig
|
||||
{
|
||||
const char *pName; // Engine name passed to nvErrorLog_va() for crash reports
|
||||
NvU32 allocQueueSize; // Size of the system memory buffer to allocate for the CrashCat queue
|
||||
NvU32 errorId; // Error ID passed to nvErrorLog_va() for crash reports
|
||||
NvU8 dmemPort; // DMEM port allocated for CrashCat usage
|
||||
NvBool bEnable; // Enable CrashCat monitoring for the engine
|
||||
} KernelCrashCatEngineConfig;
|
||||
|
||||
/*!
|
||||
* Base implementation of CrashCatEngine in RM.
|
||||
*/
|
||||
#ifdef NVOC_KERNEL_CRASHCAT_ENGINE_H_PRIVATE_ACCESS_ALLOWED
|
||||
#define PRIVATE_FIELD(x) x
|
||||
#else
|
||||
#define PRIVATE_FIELD(x) NVOC_PRIVATE_FIELD(x)
|
||||
#endif
|
||||
struct KernelCrashCatEngine {
|
||||
const struct NVOC_RTTI *__nvoc_rtti;
|
||||
struct CrashCatEngine __nvoc_base_CrashCatEngine;
|
||||
struct CrashCatEngine *__nvoc_pbase_CrashCatEngine;
|
||||
struct KernelCrashCatEngine *__nvoc_pbase_KernelCrashCatEngine;
|
||||
NvBool (*__kcrashcatEngineConfigured__)(struct KernelCrashCatEngine *);
|
||||
void (*__kcrashcatEngineUnload__)(struct KernelCrashCatEngine *);
|
||||
void (*__kcrashcatEngineVprintf__)(struct KernelCrashCatEngine *, NvBool, const char *, va_list);
|
||||
NvU32 (*__kcrashcatEngineRegRead__)(struct OBJGPU *, struct KernelCrashCatEngine *, NvU32);
|
||||
void (*__kcrashcatEngineRegWrite__)(struct OBJGPU *, struct KernelCrashCatEngine *, NvU32, NvU32);
|
||||
NvU32 (*__kcrashcatEngineMaskDmemAddr__)(struct OBJGPU *, struct KernelCrashCatEngine *, NvU32);
|
||||
NvU32 (*__kcrashcatEnginePriRead__)(struct KernelCrashCatEngine *, NvU32);
|
||||
void (*__kcrashcatEnginePriWrite__)(struct KernelCrashCatEngine *, NvU32, NvU32);
|
||||
void *(*__kcrashcatEngineMapBufferDescriptor__)(struct KernelCrashCatEngine *, CrashCatBufferDescriptor *);
|
||||
void (*__kcrashcatEngineUnmapBufferDescriptor__)(struct KernelCrashCatEngine *, CrashCatBufferDescriptor *);
|
||||
void (*__kcrashcatEngineSyncBufferDescriptor__)(struct KernelCrashCatEngine *, CrashCatBufferDescriptor *, NvU32, NvU32);
|
||||
void (*__kcrashcatEngineReadDmem__)(struct KernelCrashCatEngine *, NvU32, NvU32, void *);
|
||||
void (*__kcrashcatEngineReadEmem__)(struct KernelCrashCatEngine *, NvU64, NvU64, void *);
|
||||
const NvU32 *(*__kcrashcatEngineGetScratchOffsets__)(struct KernelCrashCatEngine *, NV_CRASHCAT_SCRATCH_GROUP_ID);
|
||||
NvU32 (*__kcrashcatEngineGetWFL0Offset__)(struct KernelCrashCatEngine *);
|
||||
NvBool PRIVATE_FIELD(bConfigured);
|
||||
MEMORY_DESCRIPTOR *PRIVATE_FIELD(pQueueMemDesc);
|
||||
const char *PRIVATE_FIELD(pName);
|
||||
NvU32 PRIVATE_FIELD(errorId);
|
||||
struct OBJGPU *PRIVATE_FIELD(pGpu);
|
||||
NvU32 PRIVATE_FIELD(dmemPort);
|
||||
char PRIVATE_FIELD(printBuffer)[512];
|
||||
char PRIVATE_FIELD(fmtBuffer)[512];
|
||||
};
|
||||
|
||||
#ifndef __NVOC_CLASS_KernelCrashCatEngine_TYPEDEF__
|
||||
#define __NVOC_CLASS_KernelCrashCatEngine_TYPEDEF__
|
||||
typedef struct KernelCrashCatEngine KernelCrashCatEngine;
|
||||
#endif /* __NVOC_CLASS_KernelCrashCatEngine_TYPEDEF__ */
|
||||
|
||||
#ifndef __nvoc_class_id_KernelCrashCatEngine
|
||||
#define __nvoc_class_id_KernelCrashCatEngine 0xc37aef
|
||||
#endif /* __nvoc_class_id_KernelCrashCatEngine */
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine;
|
||||
|
||||
#define __staticCast_KernelCrashCatEngine(pThis) \
|
||||
((pThis)->__nvoc_pbase_KernelCrashCatEngine)
|
||||
|
||||
#ifdef __nvoc_kernel_crashcat_engine_h_disabled
|
||||
#define __dynamicCast_KernelCrashCatEngine(pThis) ((KernelCrashCatEngine*)NULL)
|
||||
#else //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
#define __dynamicCast_KernelCrashCatEngine(pThis) \
|
||||
((KernelCrashCatEngine*)__nvoc_dynamicCast(staticCast((pThis), Dynamic), classInfo(KernelCrashCatEngine)))
|
||||
#endif //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
|
||||
|
||||
NV_STATUS __nvoc_objCreateDynamic_KernelCrashCatEngine(KernelCrashCatEngine**, Dynamic*, NvU32, va_list);
|
||||
|
||||
NV_STATUS __nvoc_objCreate_KernelCrashCatEngine(KernelCrashCatEngine**, Dynamic*, NvU32);
|
||||
#define __objCreate_KernelCrashCatEngine(ppNewObj, pParent, createFlags) \
|
||||
__nvoc_objCreate_KernelCrashCatEngine((ppNewObj), staticCast((pParent), Dynamic), (createFlags))
|
||||
|
||||
#define kcrashcatEngineConfigured(arg0) kcrashcatEngineConfigured_DISPATCH(arg0)
|
||||
#define kcrashcatEngineUnload(arg0) kcrashcatEngineUnload_DISPATCH(arg0)
|
||||
#define kcrashcatEngineVprintf(arg0, bReportStart, fmt, args) kcrashcatEngineVprintf_DISPATCH(arg0, bReportStart, fmt, args)
|
||||
#define kcrashcatEngineRegRead(pGpu, arg0, offset) kcrashcatEngineRegRead_DISPATCH(pGpu, arg0, offset)
|
||||
#define kcrashcatEngineRegWrite(pGpu, arg0, offset, data) kcrashcatEngineRegWrite_DISPATCH(pGpu, arg0, offset, data)
|
||||
#define kcrashcatEngineMaskDmemAddr(pGpu, arg0, addr) kcrashcatEngineMaskDmemAddr_DISPATCH(pGpu, arg0, addr)
|
||||
#define kcrashcatEnginePriRead(arg0, offset) kcrashcatEnginePriRead_DISPATCH(arg0, offset)
|
||||
#define kcrashcatEnginePriWrite(arg0, offset, data) kcrashcatEnginePriWrite_DISPATCH(arg0, offset, data)
|
||||
#define kcrashcatEngineMapBufferDescriptor(arg0, pBufDesc) kcrashcatEngineMapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define kcrashcatEngineUnmapBufferDescriptor(arg0, pBufDesc) kcrashcatEngineUnmapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define kcrashcatEngineSyncBufferDescriptor(arg0, pBufDesc, offset, size) kcrashcatEngineSyncBufferDescriptor_DISPATCH(arg0, pBufDesc, offset, size)
|
||||
#define kcrashcatEngineReadDmem(arg0, offset, size, pBuf) kcrashcatEngineReadDmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define kcrashcatEngineReadDmem_HAL(arg0, offset, size, pBuf) kcrashcatEngineReadDmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define kcrashcatEngineReadEmem(arg0, offset, size, pBuf) kcrashcatEngineReadEmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define kcrashcatEngineReadEmem_HAL(arg0, offset, size, pBuf) kcrashcatEngineReadEmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define kcrashcatEngineGetScratchOffsets(arg0, scratchGroupId) kcrashcatEngineGetScratchOffsets_DISPATCH(arg0, scratchGroupId)
|
||||
#define kcrashcatEngineGetScratchOffsets_HAL(arg0, scratchGroupId) kcrashcatEngineGetScratchOffsets_DISPATCH(arg0, scratchGroupId)
|
||||
#define kcrashcatEngineGetWFL0Offset(arg0) kcrashcatEngineGetWFL0Offset_DISPATCH(arg0)
|
||||
#define kcrashcatEngineGetWFL0Offset_HAL(arg0) kcrashcatEngineGetWFL0Offset_DISPATCH(arg0)
|
||||
NvBool kcrashcatEngineConfigured_IMPL(struct KernelCrashCatEngine *arg0);
|
||||
|
||||
static inline NvBool kcrashcatEngineConfigured_DISPATCH(struct KernelCrashCatEngine *arg0) {
|
||||
return arg0->__kcrashcatEngineConfigured__(arg0);
|
||||
}
|
||||
|
||||
void kcrashcatEngineUnload_IMPL(struct KernelCrashCatEngine *arg0);
|
||||
|
||||
static inline void kcrashcatEngineUnload_DISPATCH(struct KernelCrashCatEngine *arg0) {
|
||||
arg0->__kcrashcatEngineUnload__(arg0);
|
||||
}
|
||||
|
||||
void kcrashcatEngineVprintf_IMPL(struct KernelCrashCatEngine *arg0, NvBool bReportStart, const char *fmt, va_list args);
|
||||
|
||||
static inline void kcrashcatEngineVprintf_DISPATCH(struct KernelCrashCatEngine *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
arg0->__kcrashcatEngineVprintf__(arg0, bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static inline NvU32 kcrashcatEngineRegRead_DISPATCH(struct OBJGPU *pGpu, struct KernelCrashCatEngine *arg0, NvU32 offset) {
|
||||
return arg0->__kcrashcatEngineRegRead__(pGpu, arg0, offset);
|
||||
}
|
||||
|
||||
static inline void kcrashcatEngineRegWrite_DISPATCH(struct OBJGPU *pGpu, struct KernelCrashCatEngine *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__kcrashcatEngineRegWrite__(pGpu, arg0, offset, data);
|
||||
}
|
||||
|
||||
static inline NvU32 kcrashcatEngineMaskDmemAddr_DISPATCH(struct OBJGPU *pGpu, struct KernelCrashCatEngine *arg0, NvU32 addr) {
|
||||
return arg0->__kcrashcatEngineMaskDmemAddr__(pGpu, arg0, addr);
|
||||
}
|
||||
|
||||
NvU32 kcrashcatEnginePriRead_IMPL(struct KernelCrashCatEngine *arg0, NvU32 offset);
|
||||
|
||||
static inline NvU32 kcrashcatEnginePriRead_DISPATCH(struct KernelCrashCatEngine *arg0, NvU32 offset) {
|
||||
return arg0->__kcrashcatEnginePriRead__(arg0, offset);
|
||||
}
|
||||
|
||||
void kcrashcatEnginePriWrite_IMPL(struct KernelCrashCatEngine *arg0, NvU32 offset, NvU32 data);
|
||||
|
||||
static inline void kcrashcatEnginePriWrite_DISPATCH(struct KernelCrashCatEngine *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__kcrashcatEnginePriWrite__(arg0, offset, data);
|
||||
}
|
||||
|
||||
void *kcrashcatEngineMapBufferDescriptor_IMPL(struct KernelCrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc);
|
||||
|
||||
static inline void *kcrashcatEngineMapBufferDescriptor_DISPATCH(struct KernelCrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return arg0->__kcrashcatEngineMapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
void kcrashcatEngineUnmapBufferDescriptor_IMPL(struct KernelCrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc);
|
||||
|
||||
static inline void kcrashcatEngineUnmapBufferDescriptor_DISPATCH(struct KernelCrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
arg0->__kcrashcatEngineUnmapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
void kcrashcatEngineSyncBufferDescriptor_IMPL(struct KernelCrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size);
|
||||
|
||||
static inline void kcrashcatEngineSyncBufferDescriptor_DISPATCH(struct KernelCrashCatEngine *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
arg0->__kcrashcatEngineSyncBufferDescriptor__(arg0, pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
void kcrashcatEngineReadDmem_TU102(struct KernelCrashCatEngine *arg0, NvU32 offset, NvU32 size, void *pBuf);
|
||||
|
||||
static inline void kcrashcatEngineReadDmem_DISPATCH(struct KernelCrashCatEngine *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
arg0->__kcrashcatEngineReadDmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
static inline void kcrashcatEngineReadEmem_2fced3(struct KernelCrashCatEngine *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
NV_ASSERT_PRECOMP(0);
|
||||
}
|
||||
|
||||
static inline void kcrashcatEngineReadEmem_DISPATCH(struct KernelCrashCatEngine *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
arg0->__kcrashcatEngineReadEmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
const NvU32 *kcrashcatEngineGetScratchOffsets_TU102(struct KernelCrashCatEngine *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId);
|
||||
|
||||
static inline const NvU32 *kcrashcatEngineGetScratchOffsets_DISPATCH(struct KernelCrashCatEngine *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return arg0->__kcrashcatEngineGetScratchOffsets__(arg0, scratchGroupId);
|
||||
}
|
||||
|
||||
NvU32 kcrashcatEngineGetWFL0Offset_TU102(struct KernelCrashCatEngine *arg0);
|
||||
|
||||
static inline NvU32 kcrashcatEngineGetWFL0Offset_DISPATCH(struct KernelCrashCatEngine *arg0) {
|
||||
return arg0->__kcrashcatEngineGetWFL0Offset__(arg0);
|
||||
}
|
||||
|
||||
NV_STATUS kcrashcatEngineConfigure_IMPL(struct KernelCrashCatEngine *arg0, KernelCrashCatEngineConfig *pEngConfig);
|
||||
|
||||
#ifdef __nvoc_kernel_crashcat_engine_h_disabled
|
||||
static inline NV_STATUS kcrashcatEngineConfigure(struct KernelCrashCatEngine *arg0, KernelCrashCatEngineConfig *pEngConfig) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelCrashCatEngine was disabled!");
|
||||
return NV_ERR_NOT_SUPPORTED;
|
||||
}
|
||||
#else //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
#define kcrashcatEngineConfigure(arg0, pEngConfig) kcrashcatEngineConfigure_IMPL(arg0, pEngConfig)
|
||||
#endif //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
|
||||
MEMORY_DESCRIPTOR *kcrashcatEngineGetQueueMemDesc_IMPL(struct KernelCrashCatEngine *arg0);
|
||||
|
||||
#ifdef __nvoc_kernel_crashcat_engine_h_disabled
|
||||
static inline MEMORY_DESCRIPTOR *kcrashcatEngineGetQueueMemDesc(struct KernelCrashCatEngine *arg0) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelCrashCatEngine was disabled!");
|
||||
return NULL;
|
||||
}
|
||||
#else //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
#define kcrashcatEngineGetQueueMemDesc(arg0) kcrashcatEngineGetQueueMemDesc_IMPL(arg0)
|
||||
#endif //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
|
||||
NV_STATUS kcrashcatEngineRegisterCrashBuffer_IMPL(struct KernelCrashCatEngine *arg0, MEMORY_DESCRIPTOR *arg1);
|
||||
|
||||
#ifdef __nvoc_kernel_crashcat_engine_h_disabled
|
||||
static inline NV_STATUS kcrashcatEngineRegisterCrashBuffer(struct KernelCrashCatEngine *arg0, MEMORY_DESCRIPTOR *arg1) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelCrashCatEngine was disabled!");
|
||||
return NV_ERR_NOT_SUPPORTED;
|
||||
}
|
||||
#else //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
#define kcrashcatEngineRegisterCrashBuffer(arg0, arg1) kcrashcatEngineRegisterCrashBuffer_IMPL(arg0, arg1)
|
||||
#endif //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
|
||||
void kcrashcatEngineUnregisterCrashBuffer_IMPL(struct KernelCrashCatEngine *arg0, MEMORY_DESCRIPTOR *arg1);
|
||||
|
||||
#ifdef __nvoc_kernel_crashcat_engine_h_disabled
|
||||
static inline void kcrashcatEngineUnregisterCrashBuffer(struct KernelCrashCatEngine *arg0, MEMORY_DESCRIPTOR *arg1) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelCrashCatEngine was disabled!");
|
||||
}
|
||||
#else //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
#define kcrashcatEngineUnregisterCrashBuffer(arg0, arg1) kcrashcatEngineUnregisterCrashBuffer_IMPL(arg0, arg1)
|
||||
#endif //__nvoc_kernel_crashcat_engine_h_disabled
|
||||
|
||||
#undef PRIVATE_FIELD
|
||||
|
||||
|
||||
#endif // KERNEL_CRASHCAT_ENGINE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
#endif // _G_KERNEL_CRASHCAT_ENGINE_NVOC_H_
|
||||
@@ -13,6 +13,10 @@ char __nvoc_class_id_uniqueness_check_0xb6b1af = 1;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelFalcon;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine;
|
||||
|
||||
void __nvoc_init_KernelFalcon(KernelFalcon*, RmHalspecOwner* );
|
||||
void __nvoc_init_funcTable_KernelFalcon(KernelFalcon*, RmHalspecOwner* );
|
||||
NV_STATUS __nvoc_ctor_KernelFalcon(KernelFalcon*, RmHalspecOwner* );
|
||||
@@ -26,10 +30,24 @@ static const struct NVOC_RTTI __nvoc_rtti_KernelFalcon_KernelFalcon = {
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelFalcon_CrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelFalcon, __nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelFalcon_KernelCrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelCrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelFalcon, __nvoc_base_KernelCrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_KernelFalcon = {
|
||||
/*numRelatives=*/ 1,
|
||||
/*numRelatives=*/ 3,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_KernelFalcon_KernelFalcon,
|
||||
&__nvoc_rtti_KernelFalcon_KernelCrashCatEngine,
|
||||
&__nvoc_rtti_KernelFalcon_CrashCatEngine,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -51,13 +69,75 @@ const struct NVOC_CLASS_DEF __nvoc_class_def_KernelFalcon =
|
||||
/*pExportInfo=*/ &__nvoc_export_info_KernelFalcon
|
||||
};
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_kcrashcatEngineRegRead(struct OBJGPU *pGpu, struct KernelCrashCatEngine *pKernelFlcn, NvU32 offset) {
|
||||
return kflcnRegRead(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) - __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), offset);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelFalcon_kcrashcatEngineRegWrite(struct OBJGPU *pGpu, struct KernelCrashCatEngine *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
kflcnRegWrite(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) - __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), offset, data);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_kcrashcatEngineMaskDmemAddr(struct OBJGPU *pGpu, struct KernelCrashCatEngine *pKernelFlcn, NvU32 addr) {
|
||||
return kflcnMaskDmemAddr(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) - __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), addr);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnReadEmem(struct KernelFalcon *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
kcrashcatEngineReadEmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_kflcnGetWFL0Offset(struct KernelFalcon *arg0) {
|
||||
return kcrashcatEngineGetWFL0Offset((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static const NvU32 *__nvoc_thunk_KernelCrashCatEngine_kflcnGetScratchOffsets(struct KernelFalcon *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return kcrashcatEngineGetScratchOffsets((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), scratchGroupId);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnUnload(struct KernelFalcon *arg0) {
|
||||
kcrashcatEngineUnload((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_KernelCrashCatEngine_kflcnConfigured(struct KernelFalcon *arg0) {
|
||||
return kcrashcatEngineConfigured((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_kflcnPriRead(struct KernelFalcon *arg0, NvU32 offset) {
|
||||
return kcrashcatEnginePriRead((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), offset);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnVprintf(struct KernelFalcon *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
kcrashcatEngineVprintf((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnPriWrite(struct KernelFalcon *arg0, NvU32 offset, NvU32 data) {
|
||||
kcrashcatEnginePriWrite((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), offset, data);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnSyncBufferDescriptor(struct KernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
kcrashcatEngineSyncBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static void *__nvoc_thunk_KernelCrashCatEngine_kflcnMapBufferDescriptor(struct KernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return kcrashcatEngineMapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnUnmapBufferDescriptor(struct KernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
kcrashcatEngineUnmapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kflcnReadDmem(struct KernelFalcon *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
kcrashcatEngineReadDmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelFalcon_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_KernelFalcon =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
/*pExportEntries=*/ 0
|
||||
};
|
||||
|
||||
void __nvoc_dtor_KernelCrashCatEngine(KernelCrashCatEngine*);
|
||||
void __nvoc_dtor_KernelFalcon(KernelFalcon *pThis) {
|
||||
__nvoc_dtor_KernelCrashCatEngine(&pThis->__nvoc_base_KernelCrashCatEngine);
|
||||
PORT_UNREFERENCED_VARIABLE(pThis);
|
||||
}
|
||||
|
||||
@@ -74,11 +154,15 @@ void __nvoc_init_dataField_KernelFalcon(KernelFalcon *pThis, RmHalspecOwner *pRm
|
||||
PORT_UNREFERENCED_VARIABLE(rmVariantHal_HalVarIdx);
|
||||
}
|
||||
|
||||
NV_STATUS __nvoc_ctor_KernelCrashCatEngine(KernelCrashCatEngine* , RmHalspecOwner* );
|
||||
NV_STATUS __nvoc_ctor_KernelFalcon(KernelFalcon *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
NV_STATUS status = NV_OK;
|
||||
status = __nvoc_ctor_KernelCrashCatEngine(&pThis->__nvoc_base_KernelCrashCatEngine, pRmhalspecowner);
|
||||
if (status != NV_OK) goto __nvoc_ctor_KernelFalcon_fail_KernelCrashCatEngine;
|
||||
__nvoc_init_dataField_KernelFalcon(pThis, pRmhalspecowner);
|
||||
goto __nvoc_ctor_KernelFalcon_exit; // Success
|
||||
|
||||
__nvoc_ctor_KernelFalcon_fail_KernelCrashCatEngine:
|
||||
__nvoc_ctor_KernelFalcon_exit:
|
||||
|
||||
return status;
|
||||
@@ -96,6 +180,12 @@ static void __nvoc_init_funcTable_KernelFalcon_1(KernelFalcon *pThis, RmHalspecO
|
||||
PORT_UNREFERENCED_VARIABLE(rmVariantHal);
|
||||
PORT_UNREFERENCED_VARIABLE(rmVariantHal_HalVarIdx);
|
||||
|
||||
// Hal function -- kflcnRegRead
|
||||
pThis->__kflcnRegRead__ = &kflcnRegRead_TU102;
|
||||
|
||||
// Hal function -- kflcnRegWrite
|
||||
pThis->__kflcnRegWrite__ = &kflcnRegWrite_TU102;
|
||||
|
||||
// Hal function -- kflcnIsRiscvActive
|
||||
if (( ((chipHal_HalVarIdx >> 5) == 1UL) && ((1UL << (chipHal_HalVarIdx & 0x1f)) & 0x000007e0UL) )) /* ChipHal: TU102 | TU104 | TU106 | TU116 | TU117 | GA100 */
|
||||
{
|
||||
@@ -188,14 +278,48 @@ static void __nvoc_init_funcTable_KernelFalcon_1(KernelFalcon *pThis, RmHalspecO
|
||||
{
|
||||
pThis->__kflcnMaskDmemAddr__ = &kflcnMaskDmemAddr_GA100;
|
||||
}
|
||||
|
||||
pThis->__nvoc_base_KernelCrashCatEngine.__kcrashcatEngineRegRead__ = &__nvoc_thunk_KernelFalcon_kcrashcatEngineRegRead;
|
||||
|
||||
pThis->__nvoc_base_KernelCrashCatEngine.__kcrashcatEngineRegWrite__ = &__nvoc_thunk_KernelFalcon_kcrashcatEngineRegWrite;
|
||||
|
||||
pThis->__nvoc_base_KernelCrashCatEngine.__kcrashcatEngineMaskDmemAddr__ = &__nvoc_thunk_KernelFalcon_kcrashcatEngineMaskDmemAddr;
|
||||
|
||||
pThis->__kflcnReadEmem__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnReadEmem;
|
||||
|
||||
pThis->__kflcnGetWFL0Offset__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnGetWFL0Offset;
|
||||
|
||||
pThis->__kflcnGetScratchOffsets__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnGetScratchOffsets;
|
||||
|
||||
pThis->__kflcnUnload__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnUnload;
|
||||
|
||||
pThis->__kflcnConfigured__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnConfigured;
|
||||
|
||||
pThis->__kflcnPriRead__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnPriRead;
|
||||
|
||||
pThis->__kflcnVprintf__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnVprintf;
|
||||
|
||||
pThis->__kflcnPriWrite__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnPriWrite;
|
||||
|
||||
pThis->__kflcnSyncBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnSyncBufferDescriptor;
|
||||
|
||||
pThis->__kflcnMapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnMapBufferDescriptor;
|
||||
|
||||
pThis->__kflcnUnmapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnUnmapBufferDescriptor;
|
||||
|
||||
pThis->__kflcnReadDmem__ = &__nvoc_thunk_KernelCrashCatEngine_kflcnReadDmem;
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_KernelFalcon(KernelFalcon *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
__nvoc_init_funcTable_KernelFalcon_1(pThis, pRmhalspecowner);
|
||||
}
|
||||
|
||||
void __nvoc_init_KernelCrashCatEngine(KernelCrashCatEngine*, RmHalspecOwner* );
|
||||
void __nvoc_init_KernelFalcon(KernelFalcon *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
pThis->__nvoc_pbase_KernelFalcon = pThis;
|
||||
pThis->__nvoc_pbase_CrashCatEngine = &pThis->__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelCrashCatEngine = &pThis->__nvoc_base_KernelCrashCatEngine;
|
||||
__nvoc_init_KernelCrashCatEngine(&pThis->__nvoc_base_KernelCrashCatEngine, pRmhalspecowner);
|
||||
__nvoc_init_funcTable_KernelFalcon(pThis, pRmhalspecowner);
|
||||
}
|
||||
|
||||
@@ -205,6 +329,10 @@ char __nvoc_class_id_uniqueness_check_0xabcf08 = 1;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_GenericKernelFalcon;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelFalcon;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_IntrService;
|
||||
@@ -224,6 +352,18 @@ static const struct NVOC_RTTI __nvoc_rtti_GenericKernelFalcon_GenericKernelFalco
|
||||
/*offset=*/ 0,
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_GenericKernelFalcon_CrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(GenericKernelFalcon, __nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelCrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(GenericKernelFalcon, __nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_GenericKernelFalcon_KernelFalcon = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelFalcon,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
@@ -243,12 +383,14 @@ static const struct NVOC_RTTI __nvoc_rtti_GenericKernelFalcon_Object = {
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_GenericKernelFalcon = {
|
||||
/*numRelatives=*/ 4,
|
||||
/*numRelatives=*/ 6,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_GenericKernelFalcon_GenericKernelFalcon,
|
||||
&__nvoc_rtti_GenericKernelFalcon_Object,
|
||||
&__nvoc_rtti_GenericKernelFalcon_IntrService,
|
||||
&__nvoc_rtti_GenericKernelFalcon_KernelFalcon,
|
||||
&__nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine,
|
||||
&__nvoc_rtti_GenericKernelFalcon_CrashCatEngine,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -279,14 +421,74 @@ static NV_STATUS __nvoc_thunk_GenericKernelFalcon_intrservServiceNotificationInt
|
||||
return gkflcnServiceNotificationInterrupt(arg0, (struct GenericKernelFalcon *)(((unsigned char *)arg1) - __nvoc_rtti_GenericKernelFalcon_IntrService.offset), arg2);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnReadEmem(struct GenericKernelFalcon *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
kcrashcatEngineReadEmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_gkflcnGetWFL0Offset(struct GenericKernelFalcon *arg0) {
|
||||
return kcrashcatEngineGetWFL0Offset((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnUnload(struct GenericKernelFalcon *arg0) {
|
||||
kcrashcatEngineUnload((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_KernelCrashCatEngine_gkflcnConfigured(struct GenericKernelFalcon *arg0) {
|
||||
return kcrashcatEngineConfigured((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_gkflcnPriRead(struct GenericKernelFalcon *arg0, NvU32 offset) {
|
||||
return kcrashcatEnginePriRead((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), offset);
|
||||
}
|
||||
|
||||
static const NvU32 *__nvoc_thunk_KernelCrashCatEngine_gkflcnGetScratchOffsets(struct GenericKernelFalcon *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return kcrashcatEngineGetScratchOffsets((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), scratchGroupId);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelFalcon_gkflcnRegWrite(struct OBJGPU *pGpu, struct GenericKernelFalcon *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
kflcnRegWrite(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_GenericKernelFalcon_KernelFalcon.offset), offset, data);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_gkflcnMaskDmemAddr(struct OBJGPU *pGpu, struct GenericKernelFalcon *pKernelFlcn, NvU32 addr) {
|
||||
return kflcnMaskDmemAddr(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_GenericKernelFalcon_KernelFalcon.offset), addr);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnVprintf(struct GenericKernelFalcon *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
kcrashcatEngineVprintf((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_IntrService_gkflcnClearInterrupt(struct OBJGPU *pGpu, struct GenericKernelFalcon *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return intrservClearInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_GenericKernelFalcon_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnPriWrite(struct GenericKernelFalcon *arg0, NvU32 offset, NvU32 data) {
|
||||
kcrashcatEnginePriWrite((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), offset, data);
|
||||
}
|
||||
|
||||
static void *__nvoc_thunk_KernelCrashCatEngine_gkflcnMapBufferDescriptor(struct GenericKernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return kcrashcatEngineMapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnSyncBufferDescriptor(struct GenericKernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
kcrashcatEngineSyncBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_gkflcnRegRead(struct OBJGPU *pGpu, struct GenericKernelFalcon *pKernelFlcn, NvU32 offset) {
|
||||
return kflcnRegRead(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_GenericKernelFalcon_KernelFalcon.offset), offset);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnUnmapBufferDescriptor(struct GenericKernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
kcrashcatEngineUnmapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_IntrService_gkflcnServiceInterrupt(struct OBJGPU *pGpu, struct GenericKernelFalcon *pIntrService, IntrServiceServiceInterruptArguments *pParams) {
|
||||
return intrservServiceInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_GenericKernelFalcon_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_gkflcnReadDmem(struct GenericKernelFalcon *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
kcrashcatEngineReadDmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_GenericKernelFalcon_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_GenericKernelFalcon =
|
||||
{
|
||||
/*numEntries=*/ 0,
|
||||
@@ -351,9 +553,39 @@ static void __nvoc_init_funcTable_GenericKernelFalcon_1(GenericKernelFalcon *pTh
|
||||
|
||||
pThis->__nvoc_base_IntrService.__intrservServiceNotificationInterrupt__ = &__nvoc_thunk_GenericKernelFalcon_intrservServiceNotificationInterrupt;
|
||||
|
||||
pThis->__gkflcnReadEmem__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnReadEmem;
|
||||
|
||||
pThis->__gkflcnGetWFL0Offset__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnGetWFL0Offset;
|
||||
|
||||
pThis->__gkflcnUnload__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnUnload;
|
||||
|
||||
pThis->__gkflcnConfigured__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnConfigured;
|
||||
|
||||
pThis->__gkflcnPriRead__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnPriRead;
|
||||
|
||||
pThis->__gkflcnGetScratchOffsets__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnGetScratchOffsets;
|
||||
|
||||
pThis->__gkflcnRegWrite__ = &__nvoc_thunk_KernelFalcon_gkflcnRegWrite;
|
||||
|
||||
pThis->__gkflcnMaskDmemAddr__ = &__nvoc_thunk_KernelFalcon_gkflcnMaskDmemAddr;
|
||||
|
||||
pThis->__gkflcnVprintf__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnVprintf;
|
||||
|
||||
pThis->__gkflcnClearInterrupt__ = &__nvoc_thunk_IntrService_gkflcnClearInterrupt;
|
||||
|
||||
pThis->__gkflcnPriWrite__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnPriWrite;
|
||||
|
||||
pThis->__gkflcnMapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnMapBufferDescriptor;
|
||||
|
||||
pThis->__gkflcnSyncBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnSyncBufferDescriptor;
|
||||
|
||||
pThis->__gkflcnRegRead__ = &__nvoc_thunk_KernelFalcon_gkflcnRegRead;
|
||||
|
||||
pThis->__gkflcnUnmapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnUnmapBufferDescriptor;
|
||||
|
||||
pThis->__gkflcnServiceInterrupt__ = &__nvoc_thunk_IntrService_gkflcnServiceInterrupt;
|
||||
|
||||
pThis->__gkflcnReadDmem__ = &__nvoc_thunk_KernelCrashCatEngine_gkflcnReadDmem;
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_GenericKernelFalcon(GenericKernelFalcon *pThis) {
|
||||
@@ -365,6 +597,8 @@ void __nvoc_init_IntrService(IntrService*);
|
||||
void __nvoc_init_Object(Object*);
|
||||
void __nvoc_init_GenericKernelFalcon(GenericKernelFalcon *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
pThis->__nvoc_pbase_GenericKernelFalcon = pThis;
|
||||
pThis->__nvoc_pbase_CrashCatEngine = &pThis->__nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelCrashCatEngine = &pThis->__nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelFalcon = &pThis->__nvoc_base_KernelFalcon;
|
||||
pThis->__nvoc_pbase_IntrService = &pThis->__nvoc_base_IntrService;
|
||||
pThis->__nvoc_pbase_Object = &pThis->__nvoc_base_Object;
|
||||
|
||||
@@ -41,6 +41,7 @@ extern "C" {
|
||||
|
||||
#include "core/core.h"
|
||||
#include "gpu/falcon/falcon_common.h"
|
||||
#include "gpu/falcon/kernel_crashcat_engine.h"
|
||||
#include "gpu/intr/intr_service.h"
|
||||
|
||||
struct KernelChannel;
|
||||
@@ -67,6 +68,8 @@ typedef struct KernelFalconEngineConfig {
|
||||
NvU32 ctxAttr; // Memory attributes used for context buffers
|
||||
NvU32 ctxBufferSize; // Context buffer size in bytes
|
||||
NvU32 addrSpaceList; // index into ADDRLIST array in mem_desc.h
|
||||
|
||||
KernelCrashCatEngineConfig crashcatEngConfig;
|
||||
} KernelFalconEngineConfig;
|
||||
|
||||
/*!
|
||||
@@ -79,7 +82,12 @@ typedef struct KernelFalconEngineConfig {
|
||||
#endif
|
||||
struct KernelFalcon {
|
||||
const struct NVOC_RTTI *__nvoc_rtti;
|
||||
struct KernelCrashCatEngine __nvoc_base_KernelCrashCatEngine;
|
||||
struct CrashCatEngine *__nvoc_pbase_CrashCatEngine;
|
||||
struct KernelCrashCatEngine *__nvoc_pbase_KernelCrashCatEngine;
|
||||
struct KernelFalcon *__nvoc_pbase_KernelFalcon;
|
||||
NvU32 (*__kflcnRegRead__)(struct OBJGPU *, struct KernelFalcon *, NvU32);
|
||||
void (*__kflcnRegWrite__)(struct OBJGPU *, struct KernelFalcon *, NvU32, NvU32);
|
||||
NvBool (*__kflcnIsRiscvActive__)(struct OBJGPU *, struct KernelFalcon *);
|
||||
void (*__kflcnRiscvProgramBcr__)(struct OBJGPU *, struct KernelFalcon *, NvBool);
|
||||
void (*__kflcnSwitchToFalcon__)(struct OBJGPU *, struct KernelFalcon *);
|
||||
@@ -90,6 +98,18 @@ struct KernelFalcon {
|
||||
void (*__kflcnIntrRetrigger__)(struct OBJGPU *, struct KernelFalcon *);
|
||||
NvU32 (*__kflcnMaskImemAddr__)(struct OBJGPU *, struct KernelFalcon *, NvU32);
|
||||
NvU32 (*__kflcnMaskDmemAddr__)(struct OBJGPU *, struct KernelFalcon *, NvU32);
|
||||
void (*__kflcnReadEmem__)(struct KernelFalcon *, NvU64, NvU64, void *);
|
||||
NvU32 (*__kflcnGetWFL0Offset__)(struct KernelFalcon *);
|
||||
const NvU32 *(*__kflcnGetScratchOffsets__)(struct KernelFalcon *, NV_CRASHCAT_SCRATCH_GROUP_ID);
|
||||
void (*__kflcnUnload__)(struct KernelFalcon *);
|
||||
NvBool (*__kflcnConfigured__)(struct KernelFalcon *);
|
||||
NvU32 (*__kflcnPriRead__)(struct KernelFalcon *, NvU32);
|
||||
void (*__kflcnVprintf__)(struct KernelFalcon *, NvBool, const char *, va_list);
|
||||
void (*__kflcnPriWrite__)(struct KernelFalcon *, NvU32, NvU32);
|
||||
void (*__kflcnSyncBufferDescriptor__)(struct KernelFalcon *, CrashCatBufferDescriptor *, NvU32, NvU32);
|
||||
void *(*__kflcnMapBufferDescriptor__)(struct KernelFalcon *, CrashCatBufferDescriptor *);
|
||||
void (*__kflcnUnmapBufferDescriptor__)(struct KernelFalcon *, CrashCatBufferDescriptor *);
|
||||
void (*__kflcnReadDmem__)(struct KernelFalcon *, NvU32, NvU32, void *);
|
||||
NvU32 registerBase;
|
||||
NvU32 riscvRegisterBase;
|
||||
NvU32 fbifBase;
|
||||
@@ -130,6 +150,10 @@ NV_STATUS __nvoc_objCreate_KernelFalcon(KernelFalcon**, Dynamic*, NvU32);
|
||||
#define __objCreate_KernelFalcon(ppNewObj, pParent, createFlags) \
|
||||
__nvoc_objCreate_KernelFalcon((ppNewObj), staticCast((pParent), Dynamic), (createFlags))
|
||||
|
||||
#define kflcnRegRead(pGpu, pKernelFlcn, offset) kflcnRegRead_DISPATCH(pGpu, pKernelFlcn, offset)
|
||||
#define kflcnRegRead_HAL(pGpu, pKernelFlcn, offset) kflcnRegRead_DISPATCH(pGpu, pKernelFlcn, offset)
|
||||
#define kflcnRegWrite(pGpu, pKernelFlcn, offset, data) kflcnRegWrite_DISPATCH(pGpu, pKernelFlcn, offset, data)
|
||||
#define kflcnRegWrite_HAL(pGpu, pKernelFlcn, offset, data) kflcnRegWrite_DISPATCH(pGpu, pKernelFlcn, offset, data)
|
||||
#define kflcnIsRiscvActive(pGpu, pKernelFlcn) kflcnIsRiscvActive_DISPATCH(pGpu, pKernelFlcn)
|
||||
#define kflcnIsRiscvActive_HAL(pGpu, pKernelFlcn) kflcnIsRiscvActive_DISPATCH(pGpu, pKernelFlcn)
|
||||
#define kflcnRiscvProgramBcr(pGpu, pKernelFlcn, bBRFetch) kflcnRiscvProgramBcr_DISPATCH(pGpu, pKernelFlcn, bBRFetch)
|
||||
@@ -149,33 +173,18 @@ NV_STATUS __nvoc_objCreate_KernelFalcon(KernelFalcon**, Dynamic*, NvU32);
|
||||
#define kflcnMaskImemAddr_HAL(pGpu, pKernelFlcn, addr) kflcnMaskImemAddr_DISPATCH(pGpu, pKernelFlcn, addr)
|
||||
#define kflcnMaskDmemAddr(pGpu, pKernelFlcn, addr) kflcnMaskDmemAddr_DISPATCH(pGpu, pKernelFlcn, addr)
|
||||
#define kflcnMaskDmemAddr_HAL(pGpu, pKernelFlcn, addr) kflcnMaskDmemAddr_DISPATCH(pGpu, pKernelFlcn, addr)
|
||||
NvU32 kflcnRegRead_TU102(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset);
|
||||
|
||||
|
||||
#ifdef __nvoc_kernel_falcon_h_disabled
|
||||
static inline NvU32 kflcnRegRead(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelFalcon was disabled!");
|
||||
return 0;
|
||||
}
|
||||
#else //__nvoc_kernel_falcon_h_disabled
|
||||
#define kflcnRegRead(pGpu, pKernelFlcn, offset) kflcnRegRead_TU102(pGpu, pKernelFlcn, offset)
|
||||
#endif //__nvoc_kernel_falcon_h_disabled
|
||||
|
||||
#define kflcnRegRead_HAL(pGpu, pKernelFlcn, offset) kflcnRegRead(pGpu, pKernelFlcn, offset)
|
||||
|
||||
void kflcnRegWrite_TU102(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset, NvU32 data);
|
||||
|
||||
|
||||
#ifdef __nvoc_kernel_falcon_h_disabled
|
||||
static inline void kflcnRegWrite(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelFalcon was disabled!");
|
||||
}
|
||||
#else //__nvoc_kernel_falcon_h_disabled
|
||||
#define kflcnRegWrite(pGpu, pKernelFlcn, offset, data) kflcnRegWrite_TU102(pGpu, pKernelFlcn, offset, data)
|
||||
#endif //__nvoc_kernel_falcon_h_disabled
|
||||
|
||||
#define kflcnRegWrite_HAL(pGpu, pKernelFlcn, offset, data) kflcnRegWrite(pGpu, pKernelFlcn, offset, data)
|
||||
|
||||
#define kflcnReadEmem(arg0, offset, size, pBuf) kflcnReadEmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define kflcnGetWFL0Offset(arg0) kflcnGetWFL0Offset_DISPATCH(arg0)
|
||||
#define kflcnGetScratchOffsets(arg0, scratchGroupId) kflcnGetScratchOffsets_DISPATCH(arg0, scratchGroupId)
|
||||
#define kflcnUnload(arg0) kflcnUnload_DISPATCH(arg0)
|
||||
#define kflcnConfigured(arg0) kflcnConfigured_DISPATCH(arg0)
|
||||
#define kflcnPriRead(arg0, offset) kflcnPriRead_DISPATCH(arg0, offset)
|
||||
#define kflcnVprintf(arg0, bReportStart, fmt, args) kflcnVprintf_DISPATCH(arg0, bReportStart, fmt, args)
|
||||
#define kflcnPriWrite(arg0, offset, data) kflcnPriWrite_DISPATCH(arg0, offset, data)
|
||||
#define kflcnSyncBufferDescriptor(arg0, pBufDesc, offset, size) kflcnSyncBufferDescriptor_DISPATCH(arg0, pBufDesc, offset, size)
|
||||
#define kflcnMapBufferDescriptor(arg0, pBufDesc) kflcnMapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define kflcnUnmapBufferDescriptor(arg0, pBufDesc) kflcnUnmapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define kflcnReadDmem(arg0, offset, size, pBuf) kflcnReadDmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
NvU32 kflcnRiscvRegRead_TU102(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset);
|
||||
|
||||
|
||||
@@ -296,6 +305,18 @@ static inline NV_STATUS kflcnWaitForHalt(struct OBJGPU *pGpu, struct KernelFalco
|
||||
|
||||
#define kflcnWaitForHalt_HAL(pGpu, pKernelFlcn, timeoutUs, flags) kflcnWaitForHalt(pGpu, pKernelFlcn, timeoutUs, flags)
|
||||
|
||||
NvU32 kflcnRegRead_TU102(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset);
|
||||
|
||||
static inline NvU32 kflcnRegRead_DISPATCH(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset) {
|
||||
return pKernelFlcn->__kflcnRegRead__(pGpu, pKernelFlcn, offset);
|
||||
}
|
||||
|
||||
void kflcnRegWrite_TU102(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset, NvU32 data);
|
||||
|
||||
static inline void kflcnRegWrite_DISPATCH(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
pKernelFlcn->__kflcnRegWrite__(pGpu, pKernelFlcn, offset, data);
|
||||
}
|
||||
|
||||
NvBool kflcnIsRiscvActive_TU102(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn);
|
||||
|
||||
NvBool kflcnIsRiscvActive_GA10X(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFlcn);
|
||||
@@ -380,6 +401,54 @@ static inline NvU32 kflcnMaskDmemAddr_DISPATCH(struct OBJGPU *pGpu, struct Kerne
|
||||
return pKernelFlcn->__kflcnMaskDmemAddr__(pGpu, pKernelFlcn, addr);
|
||||
}
|
||||
|
||||
static inline void kflcnReadEmem_DISPATCH(struct KernelFalcon *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
arg0->__kflcnReadEmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
static inline NvU32 kflcnGetWFL0Offset_DISPATCH(struct KernelFalcon *arg0) {
|
||||
return arg0->__kflcnGetWFL0Offset__(arg0);
|
||||
}
|
||||
|
||||
static inline const NvU32 *kflcnGetScratchOffsets_DISPATCH(struct KernelFalcon *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return arg0->__kflcnGetScratchOffsets__(arg0, scratchGroupId);
|
||||
}
|
||||
|
||||
static inline void kflcnUnload_DISPATCH(struct KernelFalcon *arg0) {
|
||||
arg0->__kflcnUnload__(arg0);
|
||||
}
|
||||
|
||||
static inline NvBool kflcnConfigured_DISPATCH(struct KernelFalcon *arg0) {
|
||||
return arg0->__kflcnConfigured__(arg0);
|
||||
}
|
||||
|
||||
static inline NvU32 kflcnPriRead_DISPATCH(struct KernelFalcon *arg0, NvU32 offset) {
|
||||
return arg0->__kflcnPriRead__(arg0, offset);
|
||||
}
|
||||
|
||||
static inline void kflcnVprintf_DISPATCH(struct KernelFalcon *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
arg0->__kflcnVprintf__(arg0, bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static inline void kflcnPriWrite_DISPATCH(struct KernelFalcon *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__kflcnPriWrite__(arg0, offset, data);
|
||||
}
|
||||
|
||||
static inline void kflcnSyncBufferDescriptor_DISPATCH(struct KernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
arg0->__kflcnSyncBufferDescriptor__(arg0, pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static inline void *kflcnMapBufferDescriptor_DISPATCH(struct KernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return arg0->__kflcnMapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void kflcnUnmapBufferDescriptor_DISPATCH(struct KernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
arg0->__kflcnUnmapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void kflcnReadDmem_DISPATCH(struct KernelFalcon *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
arg0->__kflcnReadDmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
void kflcnConfigureEngine_IMPL(struct OBJGPU *pGpu, struct KernelFalcon *pKernelFalcon, KernelFalconEngineConfig *pFalconConfig);
|
||||
|
||||
#ifdef __nvoc_kernel_falcon_h_disabled
|
||||
@@ -429,6 +498,8 @@ struct GenericKernelFalcon {
|
||||
struct KernelFalcon __nvoc_base_KernelFalcon;
|
||||
struct IntrService __nvoc_base_IntrService;
|
||||
struct Object __nvoc_base_Object;
|
||||
struct CrashCatEngine *__nvoc_pbase_CrashCatEngine;
|
||||
struct KernelCrashCatEngine *__nvoc_pbase_KernelCrashCatEngine;
|
||||
struct KernelFalcon *__nvoc_pbase_KernelFalcon;
|
||||
struct IntrService *__nvoc_pbase_IntrService;
|
||||
struct Object *__nvoc_pbase_Object;
|
||||
@@ -436,8 +507,23 @@ struct GenericKernelFalcon {
|
||||
NV_STATUS (*__gkflcnResetHw__)(struct OBJGPU *, struct GenericKernelFalcon *);
|
||||
void (*__gkflcnRegisterIntrService__)(struct OBJGPU *, struct GenericKernelFalcon *, IntrServiceRecord *);
|
||||
NV_STATUS (*__gkflcnServiceNotificationInterrupt__)(struct OBJGPU *, struct GenericKernelFalcon *, IntrServiceServiceNotificationInterruptArguments *);
|
||||
void (*__gkflcnReadEmem__)(struct GenericKernelFalcon *, NvU64, NvU64, void *);
|
||||
NvU32 (*__gkflcnGetWFL0Offset__)(struct GenericKernelFalcon *);
|
||||
void (*__gkflcnUnload__)(struct GenericKernelFalcon *);
|
||||
NvBool (*__gkflcnConfigured__)(struct GenericKernelFalcon *);
|
||||
NvU32 (*__gkflcnPriRead__)(struct GenericKernelFalcon *, NvU32);
|
||||
const NvU32 *(*__gkflcnGetScratchOffsets__)(struct GenericKernelFalcon *, NV_CRASHCAT_SCRATCH_GROUP_ID);
|
||||
void (*__gkflcnRegWrite__)(struct OBJGPU *, struct GenericKernelFalcon *, NvU32, NvU32);
|
||||
NvU32 (*__gkflcnMaskDmemAddr__)(struct OBJGPU *, struct GenericKernelFalcon *, NvU32);
|
||||
void (*__gkflcnVprintf__)(struct GenericKernelFalcon *, NvBool, const char *, va_list);
|
||||
NvBool (*__gkflcnClearInterrupt__)(struct OBJGPU *, struct GenericKernelFalcon *, IntrServiceClearInterruptArguments *);
|
||||
void (*__gkflcnPriWrite__)(struct GenericKernelFalcon *, NvU32, NvU32);
|
||||
void *(*__gkflcnMapBufferDescriptor__)(struct GenericKernelFalcon *, CrashCatBufferDescriptor *);
|
||||
void (*__gkflcnSyncBufferDescriptor__)(struct GenericKernelFalcon *, CrashCatBufferDescriptor *, NvU32, NvU32);
|
||||
NvU32 (*__gkflcnRegRead__)(struct OBJGPU *, struct GenericKernelFalcon *, NvU32);
|
||||
void (*__gkflcnUnmapBufferDescriptor__)(struct GenericKernelFalcon *, CrashCatBufferDescriptor *);
|
||||
NvU32 (*__gkflcnServiceInterrupt__)(struct OBJGPU *, struct GenericKernelFalcon *, IntrServiceServiceInterruptArguments *);
|
||||
void (*__gkflcnReadDmem__)(struct GenericKernelFalcon *, NvU32, NvU32, void *);
|
||||
};
|
||||
|
||||
#ifndef __NVOC_CLASS_GenericKernelFalcon_TYPEDEF__
|
||||
@@ -471,8 +557,23 @@ NV_STATUS __nvoc_objCreate_GenericKernelFalcon(GenericKernelFalcon**, Dynamic*,
|
||||
#define gkflcnResetHw(pGpu, pGenKernFlcn) gkflcnResetHw_DISPATCH(pGpu, pGenKernFlcn)
|
||||
#define gkflcnRegisterIntrService(arg0, arg1, arg2) gkflcnRegisterIntrService_DISPATCH(arg0, arg1, arg2)
|
||||
#define gkflcnServiceNotificationInterrupt(arg0, arg1, arg2) gkflcnServiceNotificationInterrupt_DISPATCH(arg0, arg1, arg2)
|
||||
#define gkflcnReadEmem(arg0, offset, size, pBuf) gkflcnReadEmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define gkflcnGetWFL0Offset(arg0) gkflcnGetWFL0Offset_DISPATCH(arg0)
|
||||
#define gkflcnUnload(arg0) gkflcnUnload_DISPATCH(arg0)
|
||||
#define gkflcnConfigured(arg0) gkflcnConfigured_DISPATCH(arg0)
|
||||
#define gkflcnPriRead(arg0, offset) gkflcnPriRead_DISPATCH(arg0, offset)
|
||||
#define gkflcnGetScratchOffsets(arg0, scratchGroupId) gkflcnGetScratchOffsets_DISPATCH(arg0, scratchGroupId)
|
||||
#define gkflcnRegWrite(pGpu, pKernelFlcn, offset, data) gkflcnRegWrite_DISPATCH(pGpu, pKernelFlcn, offset, data)
|
||||
#define gkflcnMaskDmemAddr(pGpu, pKernelFlcn, addr) gkflcnMaskDmemAddr_DISPATCH(pGpu, pKernelFlcn, addr)
|
||||
#define gkflcnVprintf(arg0, bReportStart, fmt, args) gkflcnVprintf_DISPATCH(arg0, bReportStart, fmt, args)
|
||||
#define gkflcnClearInterrupt(pGpu, pIntrService, pParams) gkflcnClearInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define gkflcnPriWrite(arg0, offset, data) gkflcnPriWrite_DISPATCH(arg0, offset, data)
|
||||
#define gkflcnMapBufferDescriptor(arg0, pBufDesc) gkflcnMapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define gkflcnSyncBufferDescriptor(arg0, pBufDesc, offset, size) gkflcnSyncBufferDescriptor_DISPATCH(arg0, pBufDesc, offset, size)
|
||||
#define gkflcnRegRead(pGpu, pKernelFlcn, offset) gkflcnRegRead_DISPATCH(pGpu, pKernelFlcn, offset)
|
||||
#define gkflcnUnmapBufferDescriptor(arg0, pBufDesc) gkflcnUnmapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define gkflcnServiceInterrupt(pGpu, pIntrService, pParams) gkflcnServiceInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define gkflcnReadDmem(arg0, offset, size, pBuf) gkflcnReadDmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
NV_STATUS gkflcnResetHw_IMPL(struct OBJGPU *pGpu, struct GenericKernelFalcon *pGenKernFlcn);
|
||||
|
||||
static inline NV_STATUS gkflcnResetHw_DISPATCH(struct OBJGPU *pGpu, struct GenericKernelFalcon *pGenKernFlcn) {
|
||||
@@ -491,14 +592,74 @@ static inline NV_STATUS gkflcnServiceNotificationInterrupt_DISPATCH(struct OBJGP
|
||||
return arg1->__gkflcnServiceNotificationInterrupt__(arg0, arg1, arg2);
|
||||
}
|
||||
|
||||
static inline void gkflcnReadEmem_DISPATCH(struct GenericKernelFalcon *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
arg0->__gkflcnReadEmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
static inline NvU32 gkflcnGetWFL0Offset_DISPATCH(struct GenericKernelFalcon *arg0) {
|
||||
return arg0->__gkflcnGetWFL0Offset__(arg0);
|
||||
}
|
||||
|
||||
static inline void gkflcnUnload_DISPATCH(struct GenericKernelFalcon *arg0) {
|
||||
arg0->__gkflcnUnload__(arg0);
|
||||
}
|
||||
|
||||
static inline NvBool gkflcnConfigured_DISPATCH(struct GenericKernelFalcon *arg0) {
|
||||
return arg0->__gkflcnConfigured__(arg0);
|
||||
}
|
||||
|
||||
static inline NvU32 gkflcnPriRead_DISPATCH(struct GenericKernelFalcon *arg0, NvU32 offset) {
|
||||
return arg0->__gkflcnPriRead__(arg0, offset);
|
||||
}
|
||||
|
||||
static inline const NvU32 *gkflcnGetScratchOffsets_DISPATCH(struct GenericKernelFalcon *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return arg0->__gkflcnGetScratchOffsets__(arg0, scratchGroupId);
|
||||
}
|
||||
|
||||
static inline void gkflcnRegWrite_DISPATCH(struct OBJGPU *pGpu, struct GenericKernelFalcon *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
pKernelFlcn->__gkflcnRegWrite__(pGpu, pKernelFlcn, offset, data);
|
||||
}
|
||||
|
||||
static inline NvU32 gkflcnMaskDmemAddr_DISPATCH(struct OBJGPU *pGpu, struct GenericKernelFalcon *pKernelFlcn, NvU32 addr) {
|
||||
return pKernelFlcn->__gkflcnMaskDmemAddr__(pGpu, pKernelFlcn, addr);
|
||||
}
|
||||
|
||||
static inline void gkflcnVprintf_DISPATCH(struct GenericKernelFalcon *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
arg0->__gkflcnVprintf__(arg0, bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static inline NvBool gkflcnClearInterrupt_DISPATCH(struct OBJGPU *pGpu, struct GenericKernelFalcon *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return pIntrService->__gkflcnClearInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline void gkflcnPriWrite_DISPATCH(struct GenericKernelFalcon *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__gkflcnPriWrite__(arg0, offset, data);
|
||||
}
|
||||
|
||||
static inline void *gkflcnMapBufferDescriptor_DISPATCH(struct GenericKernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return arg0->__gkflcnMapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void gkflcnSyncBufferDescriptor_DISPATCH(struct GenericKernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
arg0->__gkflcnSyncBufferDescriptor__(arg0, pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static inline NvU32 gkflcnRegRead_DISPATCH(struct OBJGPU *pGpu, struct GenericKernelFalcon *pKernelFlcn, NvU32 offset) {
|
||||
return pKernelFlcn->__gkflcnRegRead__(pGpu, pKernelFlcn, offset);
|
||||
}
|
||||
|
||||
static inline void gkflcnUnmapBufferDescriptor_DISPATCH(struct GenericKernelFalcon *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
arg0->__gkflcnUnmapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline NvU32 gkflcnServiceInterrupt_DISPATCH(struct OBJGPU *pGpu, struct GenericKernelFalcon *pIntrService, IntrServiceServiceInterruptArguments *pParams) {
|
||||
return pIntrService->__gkflcnServiceInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline void gkflcnReadDmem_DISPATCH(struct GenericKernelFalcon *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
arg0->__gkflcnReadDmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
NV_STATUS gkflcnConstruct_IMPL(struct GenericKernelFalcon *arg_pGenKernFlcn, struct OBJGPU *arg_pGpu, KernelFalconEngineConfig *arg_pFalconConfig);
|
||||
|
||||
#define __nvoc_gkflcnConstruct(arg_pGenKernFlcn, arg_pGpu, arg_pFalconConfig) gkflcnConstruct_IMPL(arg_pGenKernFlcn, arg_pGpu, arg_pFalconConfig)
|
||||
|
||||
@@ -19,6 +19,10 @@ extern const struct NVOC_CLASS_DEF __nvoc_class_def_OBJENGSTATE;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_IntrService;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelFalcon;
|
||||
|
||||
void __nvoc_init_KernelGsp(KernelGsp*, RmHalspecOwner* );
|
||||
@@ -52,6 +56,18 @@ static const struct NVOC_RTTI __nvoc_rtti_KernelGsp_IntrService = {
|
||||
/*offset=*/ NV_OFFSETOF(KernelGsp, __nvoc_base_IntrService),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelGsp_CrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelGsp, __nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelGsp_KernelCrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelCrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelGsp, __nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelGsp_KernelFalcon = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelFalcon,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
@@ -59,10 +75,12 @@ static const struct NVOC_RTTI __nvoc_rtti_KernelGsp_KernelFalcon = {
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_KernelGsp = {
|
||||
/*numRelatives=*/ 5,
|
||||
/*numRelatives=*/ 7,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_KernelGsp_KernelGsp,
|
||||
&__nvoc_rtti_KernelGsp_KernelFalcon,
|
||||
&__nvoc_rtti_KernelGsp_KernelCrashCatEngine,
|
||||
&__nvoc_rtti_KernelGsp_CrashCatEngine,
|
||||
&__nvoc_rtti_KernelGsp_IntrService,
|
||||
&__nvoc_rtti_KernelGsp_OBJENGSTATE,
|
||||
&__nvoc_rtti_KernelGsp_Object,
|
||||
@@ -100,10 +118,70 @@ static NV_STATUS __nvoc_thunk_KernelGsp_kflcnResetHw(struct OBJGPU *pGpu, struct
|
||||
return kgspResetHw(pGpu, (struct KernelGsp *)(((unsigned char *)pKernelGsp) - __nvoc_rtti_KernelGsp_KernelFalcon.offset));
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_KernelCrashCatEngine_kgspConfigured(struct KernelGsp *arg0) {
|
||||
return kcrashcatEngineConfigured((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_kgspPriRead(struct KernelGsp *arg0, NvU32 offset) {
|
||||
return kcrashcatEnginePriRead((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), offset);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelFalcon_kgspRegWrite(struct OBJGPU *pGpu, struct KernelGsp *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
kflcnRegWrite(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_KernelGsp_KernelFalcon.offset), offset, data);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_kgspMaskDmemAddr(struct OBJGPU *pGpu, struct KernelGsp *pKernelFlcn, NvU32 addr) {
|
||||
return kflcnMaskDmemAddr(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_KernelGsp_KernelFalcon.offset), addr);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_OBJENGSTATE_kgspStateDestroy(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
engstateStateDestroy(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspVprintf(struct KernelGsp *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
kcrashcatEngineVprintf((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_IntrService_kgspClearInterrupt(struct OBJGPU *pGpu, struct KernelGsp *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return intrservClearInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelGsp_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspPriWrite(struct KernelGsp *arg0, NvU32 offset, NvU32 data) {
|
||||
kcrashcatEnginePriWrite((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), offset, data);
|
||||
}
|
||||
|
||||
static void *__nvoc_thunk_KernelCrashCatEngine_kgspMapBufferDescriptor(struct KernelGsp *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return kcrashcatEngineMapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspSyncBufferDescriptor(struct KernelGsp *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
kcrashcatEngineSyncBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_kgspRegRead(struct OBJGPU *pGpu, struct KernelGsp *pKernelFlcn, NvU32 offset) {
|
||||
return kflcnRegRead(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_KernelGsp_KernelFalcon.offset), offset);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_OBJENGSTATE_kgspIsPresent(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
return engstateIsPresent(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspReadEmem(struct KernelGsp *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
kcrashcatEngineReadEmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStateLoad(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return engstateStateLoad(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static const NvU32 *__nvoc_thunk_KernelCrashCatEngine_kgspGetScratchOffsets(struct KernelGsp *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return kcrashcatEngineGetScratchOffsets((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), scratchGroupId);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspUnload(struct KernelGsp *arg0) {
|
||||
kcrashcatEngineUnload((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStateUnload(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return engstateStateUnload(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
@@ -112,6 +190,10 @@ static NV_STATUS __nvoc_thunk_IntrService_kgspServiceNotificationInterrupt(struc
|
||||
return intrservServiceNotificationInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelGsp_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_kgspGetWFL0Offset(struct KernelGsp *arg0) {
|
||||
return kcrashcatEngineGetWFL0Offset((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStateInitLocked(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
return engstateStateInitLocked(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset));
|
||||
}
|
||||
@@ -124,10 +206,6 @@ static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStatePostUnload(POBJGPU pGpu, stru
|
||||
return engstateStatePostUnload(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_OBJENGSTATE_kgspStateDestroy(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
engstateStateDestroy(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStatePreUnload(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return engstateStatePreUnload(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
@@ -148,16 +226,16 @@ static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStatePreInitUnlocked(POBJGPU pGpu,
|
||||
return engstateStatePreInitUnlocked(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_IntrService_kgspClearInterrupt(struct OBJGPU *pGpu, struct KernelGsp *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return intrservClearInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelGsp_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_kgspStatePostLoad(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return engstateStatePostLoad(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_OBJENGSTATE_kgspIsPresent(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
return engstateIsPresent(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelGsp_OBJENGSTATE.offset));
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspUnmapBufferDescriptor(struct KernelGsp *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
kcrashcatEngineUnmapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_kgspReadDmem(struct KernelGsp *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
kcrashcatEngineReadDmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelGsp_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_KernelGsp =
|
||||
@@ -709,20 +787,50 @@ static void __nvoc_init_funcTable_KernelGsp_1(KernelGsp *pThis, RmHalspecOwner *
|
||||
|
||||
pThis->__nvoc_base_KernelFalcon.__kflcnResetHw__ = &__nvoc_thunk_KernelGsp_kflcnResetHw;
|
||||
|
||||
pThis->__kgspConfigured__ = &__nvoc_thunk_KernelCrashCatEngine_kgspConfigured;
|
||||
|
||||
pThis->__kgspPriRead__ = &__nvoc_thunk_KernelCrashCatEngine_kgspPriRead;
|
||||
|
||||
pThis->__kgspRegWrite__ = &__nvoc_thunk_KernelFalcon_kgspRegWrite;
|
||||
|
||||
pThis->__kgspMaskDmemAddr__ = &__nvoc_thunk_KernelFalcon_kgspMaskDmemAddr;
|
||||
|
||||
pThis->__kgspStateDestroy__ = &__nvoc_thunk_OBJENGSTATE_kgspStateDestroy;
|
||||
|
||||
pThis->__kgspVprintf__ = &__nvoc_thunk_KernelCrashCatEngine_kgspVprintf;
|
||||
|
||||
pThis->__kgspClearInterrupt__ = &__nvoc_thunk_IntrService_kgspClearInterrupt;
|
||||
|
||||
pThis->__kgspPriWrite__ = &__nvoc_thunk_KernelCrashCatEngine_kgspPriWrite;
|
||||
|
||||
pThis->__kgspMapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_kgspMapBufferDescriptor;
|
||||
|
||||
pThis->__kgspSyncBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_kgspSyncBufferDescriptor;
|
||||
|
||||
pThis->__kgspRegRead__ = &__nvoc_thunk_KernelFalcon_kgspRegRead;
|
||||
|
||||
pThis->__kgspIsPresent__ = &__nvoc_thunk_OBJENGSTATE_kgspIsPresent;
|
||||
|
||||
pThis->__kgspReadEmem__ = &__nvoc_thunk_KernelCrashCatEngine_kgspReadEmem;
|
||||
|
||||
pThis->__kgspStateLoad__ = &__nvoc_thunk_OBJENGSTATE_kgspStateLoad;
|
||||
|
||||
pThis->__kgspGetScratchOffsets__ = &__nvoc_thunk_KernelCrashCatEngine_kgspGetScratchOffsets;
|
||||
|
||||
pThis->__kgspUnload__ = &__nvoc_thunk_KernelCrashCatEngine_kgspUnload;
|
||||
|
||||
pThis->__kgspStateUnload__ = &__nvoc_thunk_OBJENGSTATE_kgspStateUnload;
|
||||
|
||||
pThis->__kgspServiceNotificationInterrupt__ = &__nvoc_thunk_IntrService_kgspServiceNotificationInterrupt;
|
||||
|
||||
pThis->__kgspGetWFL0Offset__ = &__nvoc_thunk_KernelCrashCatEngine_kgspGetWFL0Offset;
|
||||
|
||||
pThis->__kgspStateInitLocked__ = &__nvoc_thunk_OBJENGSTATE_kgspStateInitLocked;
|
||||
|
||||
pThis->__kgspStatePreLoad__ = &__nvoc_thunk_OBJENGSTATE_kgspStatePreLoad;
|
||||
|
||||
pThis->__kgspStatePostUnload__ = &__nvoc_thunk_OBJENGSTATE_kgspStatePostUnload;
|
||||
|
||||
pThis->__kgspStateDestroy__ = &__nvoc_thunk_OBJENGSTATE_kgspStateDestroy;
|
||||
|
||||
pThis->__kgspStatePreUnload__ = &__nvoc_thunk_OBJENGSTATE_kgspStatePreUnload;
|
||||
|
||||
pThis->__kgspStateInitUnlocked__ = &__nvoc_thunk_OBJENGSTATE_kgspStateInitUnlocked;
|
||||
@@ -733,11 +841,11 @@ static void __nvoc_init_funcTable_KernelGsp_1(KernelGsp *pThis, RmHalspecOwner *
|
||||
|
||||
pThis->__kgspStatePreInitUnlocked__ = &__nvoc_thunk_OBJENGSTATE_kgspStatePreInitUnlocked;
|
||||
|
||||
pThis->__kgspClearInterrupt__ = &__nvoc_thunk_IntrService_kgspClearInterrupt;
|
||||
|
||||
pThis->__kgspStatePostLoad__ = &__nvoc_thunk_OBJENGSTATE_kgspStatePostLoad;
|
||||
|
||||
pThis->__kgspIsPresent__ = &__nvoc_thunk_OBJENGSTATE_kgspIsPresent;
|
||||
pThis->__kgspUnmapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_kgspUnmapBufferDescriptor;
|
||||
|
||||
pThis->__kgspReadDmem__ = &__nvoc_thunk_KernelCrashCatEngine_kgspReadDmem;
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_KernelGsp(KernelGsp *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
@@ -752,6 +860,8 @@ void __nvoc_init_KernelGsp(KernelGsp *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
pThis->__nvoc_pbase_Object = &pThis->__nvoc_base_OBJENGSTATE.__nvoc_base_Object;
|
||||
pThis->__nvoc_pbase_OBJENGSTATE = &pThis->__nvoc_base_OBJENGSTATE;
|
||||
pThis->__nvoc_pbase_IntrService = &pThis->__nvoc_base_IntrService;
|
||||
pThis->__nvoc_pbase_CrashCatEngine = &pThis->__nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelCrashCatEngine = &pThis->__nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelFalcon = &pThis->__nvoc_base_KernelFalcon;
|
||||
__nvoc_init_OBJENGSTATE(&pThis->__nvoc_base_OBJENGSTATE);
|
||||
__nvoc_init_IntrService(&pThis->__nvoc_base_IntrService);
|
||||
|
||||
@@ -253,6 +253,8 @@ struct KernelGsp {
|
||||
struct Object *__nvoc_pbase_Object;
|
||||
struct OBJENGSTATE *__nvoc_pbase_OBJENGSTATE;
|
||||
struct IntrService *__nvoc_pbase_IntrService;
|
||||
struct CrashCatEngine *__nvoc_pbase_CrashCatEngine;
|
||||
struct KernelCrashCatEngine *__nvoc_pbase_KernelCrashCatEngine;
|
||||
struct KernelFalcon *__nvoc_pbase_KernelFalcon;
|
||||
struct KernelGsp *__nvoc_pbase_KernelGsp;
|
||||
NV_STATUS (*__kgspConstructEngine__)(struct OBJGPU *, struct KernelGsp *, ENGDESCRIPTOR);
|
||||
@@ -294,21 +296,36 @@ struct KernelGsp {
|
||||
NV_STATUS (*__kgspFreeVgpuPartitionLogging__)(struct OBJGPU *, struct KernelGsp *, NvU32);
|
||||
const char *(*__kgspGetSignatureSectionNamePrefix__)(struct OBJGPU *, struct KernelGsp *);
|
||||
NV_STATUS (*__kgspSetupGspFmcArgs__)(struct OBJGPU *, struct KernelGsp *, GSP_FIRMWARE *);
|
||||
NvBool (*__kgspConfigured__)(struct KernelGsp *);
|
||||
NvU32 (*__kgspPriRead__)(struct KernelGsp *, NvU32);
|
||||
void (*__kgspRegWrite__)(struct OBJGPU *, struct KernelGsp *, NvU32, NvU32);
|
||||
NvU32 (*__kgspMaskDmemAddr__)(struct OBJGPU *, struct KernelGsp *, NvU32);
|
||||
void (*__kgspStateDestroy__)(POBJGPU, struct KernelGsp *);
|
||||
void (*__kgspVprintf__)(struct KernelGsp *, NvBool, const char *, va_list);
|
||||
NvBool (*__kgspClearInterrupt__)(struct OBJGPU *, struct KernelGsp *, IntrServiceClearInterruptArguments *);
|
||||
void (*__kgspPriWrite__)(struct KernelGsp *, NvU32, NvU32);
|
||||
void *(*__kgspMapBufferDescriptor__)(struct KernelGsp *, CrashCatBufferDescriptor *);
|
||||
void (*__kgspSyncBufferDescriptor__)(struct KernelGsp *, CrashCatBufferDescriptor *, NvU32, NvU32);
|
||||
NvU32 (*__kgspRegRead__)(struct OBJGPU *, struct KernelGsp *, NvU32);
|
||||
NvBool (*__kgspIsPresent__)(POBJGPU, struct KernelGsp *);
|
||||
void (*__kgspReadEmem__)(struct KernelGsp *, NvU64, NvU64, void *);
|
||||
NV_STATUS (*__kgspStateLoad__)(POBJGPU, struct KernelGsp *, NvU32);
|
||||
const NvU32 *(*__kgspGetScratchOffsets__)(struct KernelGsp *, NV_CRASHCAT_SCRATCH_GROUP_ID);
|
||||
void (*__kgspUnload__)(struct KernelGsp *);
|
||||
NV_STATUS (*__kgspStateUnload__)(POBJGPU, struct KernelGsp *, NvU32);
|
||||
NV_STATUS (*__kgspServiceNotificationInterrupt__)(struct OBJGPU *, struct KernelGsp *, IntrServiceServiceNotificationInterruptArguments *);
|
||||
NvU32 (*__kgspGetWFL0Offset__)(struct KernelGsp *);
|
||||
NV_STATUS (*__kgspStateInitLocked__)(POBJGPU, struct KernelGsp *);
|
||||
NV_STATUS (*__kgspStatePreLoad__)(POBJGPU, struct KernelGsp *, NvU32);
|
||||
NV_STATUS (*__kgspStatePostUnload__)(POBJGPU, struct KernelGsp *, NvU32);
|
||||
void (*__kgspStateDestroy__)(POBJGPU, struct KernelGsp *);
|
||||
NV_STATUS (*__kgspStatePreUnload__)(POBJGPU, struct KernelGsp *, NvU32);
|
||||
NV_STATUS (*__kgspStateInitUnlocked__)(POBJGPU, struct KernelGsp *);
|
||||
void (*__kgspInitMissing__)(POBJGPU, struct KernelGsp *);
|
||||
NV_STATUS (*__kgspStatePreInitLocked__)(POBJGPU, struct KernelGsp *);
|
||||
NV_STATUS (*__kgspStatePreInitUnlocked__)(POBJGPU, struct KernelGsp *);
|
||||
NvBool (*__kgspClearInterrupt__)(struct OBJGPU *, struct KernelGsp *, IntrServiceClearInterruptArguments *);
|
||||
NV_STATUS (*__kgspStatePostLoad__)(POBJGPU, struct KernelGsp *, NvU32);
|
||||
NvBool (*__kgspIsPresent__)(POBJGPU, struct KernelGsp *);
|
||||
void (*__kgspUnmapBufferDescriptor__)(struct KernelGsp *, CrashCatBufferDescriptor *);
|
||||
void (*__kgspReadDmem__)(struct KernelGsp *, NvU32, NvU32, void *);
|
||||
struct MESSAGE_QUEUE_COLLECTION *pMQCollection;
|
||||
struct OBJRPC *pRpc;
|
||||
struct OBJRPC *pLocklessRpc;
|
||||
@@ -351,6 +368,7 @@ struct KernelGsp {
|
||||
NvBool bInInit;
|
||||
NvBool bInLockdown;
|
||||
NvBool bPollingForRpcResponse;
|
||||
NvBool bFatalError;
|
||||
MEMORY_DESCRIPTOR *pMemDesc_simAccessBuf;
|
||||
SimAccessBuffer *pSimAccessBuf;
|
||||
NvP64 pSimAccessBufPriv;
|
||||
@@ -470,21 +488,36 @@ NV_STATUS __nvoc_objCreate_KernelGsp(KernelGsp**, Dynamic*, NvU32);
|
||||
#define kgspGetSignatureSectionNamePrefix_HAL(pGpu, pKernelGsp) kgspGetSignatureSectionNamePrefix_DISPATCH(pGpu, pKernelGsp)
|
||||
#define kgspSetupGspFmcArgs(pGpu, pKernelGsp, pGspFw) kgspSetupGspFmcArgs_DISPATCH(pGpu, pKernelGsp, pGspFw)
|
||||
#define kgspSetupGspFmcArgs_HAL(pGpu, pKernelGsp, pGspFw) kgspSetupGspFmcArgs_DISPATCH(pGpu, pKernelGsp, pGspFw)
|
||||
#define kgspConfigured(arg0) kgspConfigured_DISPATCH(arg0)
|
||||
#define kgspPriRead(arg0, offset) kgspPriRead_DISPATCH(arg0, offset)
|
||||
#define kgspRegWrite(pGpu, pKernelFlcn, offset, data) kgspRegWrite_DISPATCH(pGpu, pKernelFlcn, offset, data)
|
||||
#define kgspMaskDmemAddr(pGpu, pKernelFlcn, addr) kgspMaskDmemAddr_DISPATCH(pGpu, pKernelFlcn, addr)
|
||||
#define kgspStateDestroy(pGpu, pEngstate) kgspStateDestroy_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspVprintf(arg0, bReportStart, fmt, args) kgspVprintf_DISPATCH(arg0, bReportStart, fmt, args)
|
||||
#define kgspClearInterrupt(pGpu, pIntrService, pParams) kgspClearInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define kgspPriWrite(arg0, offset, data) kgspPriWrite_DISPATCH(arg0, offset, data)
|
||||
#define kgspMapBufferDescriptor(arg0, pBufDesc) kgspMapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define kgspSyncBufferDescriptor(arg0, pBufDesc, offset, size) kgspSyncBufferDescriptor_DISPATCH(arg0, pBufDesc, offset, size)
|
||||
#define kgspRegRead(pGpu, pKernelFlcn, offset) kgspRegRead_DISPATCH(pGpu, pKernelFlcn, offset)
|
||||
#define kgspIsPresent(pGpu, pEngstate) kgspIsPresent_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspReadEmem(arg0, offset, size, pBuf) kgspReadEmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define kgspStateLoad(pGpu, pEngstate, arg0) kgspStateLoad_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define kgspGetScratchOffsets(arg0, scratchGroupId) kgspGetScratchOffsets_DISPATCH(arg0, scratchGroupId)
|
||||
#define kgspUnload(arg0) kgspUnload_DISPATCH(arg0)
|
||||
#define kgspStateUnload(pGpu, pEngstate, arg0) kgspStateUnload_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define kgspServiceNotificationInterrupt(pGpu, pIntrService, pParams) kgspServiceNotificationInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define kgspGetWFL0Offset(arg0) kgspGetWFL0Offset_DISPATCH(arg0)
|
||||
#define kgspStateInitLocked(pGpu, pEngstate) kgspStateInitLocked_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspStatePreLoad(pGpu, pEngstate, arg0) kgspStatePreLoad_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define kgspStatePostUnload(pGpu, pEngstate, arg0) kgspStatePostUnload_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define kgspStateDestroy(pGpu, pEngstate) kgspStateDestroy_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspStatePreUnload(pGpu, pEngstate, arg0) kgspStatePreUnload_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define kgspStateInitUnlocked(pGpu, pEngstate) kgspStateInitUnlocked_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspInitMissing(pGpu, pEngstate) kgspInitMissing_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspStatePreInitLocked(pGpu, pEngstate) kgspStatePreInitLocked_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspStatePreInitUnlocked(pGpu, pEngstate) kgspStatePreInitUnlocked_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspClearInterrupt(pGpu, pIntrService, pParams) kgspClearInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define kgspStatePostLoad(pGpu, pEngstate, arg0) kgspStatePostLoad_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define kgspIsPresent(pGpu, pEngstate) kgspIsPresent_DISPATCH(pGpu, pEngstate)
|
||||
#define kgspUnmapBufferDescriptor(arg0, pBufDesc) kgspUnmapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define kgspReadDmem(arg0, offset, size, pBuf) kgspReadDmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
void kgspProgramLibosBootArgsAddr_TU102(struct OBJGPU *pGpu, struct KernelGsp *pKernelGsp);
|
||||
|
||||
|
||||
@@ -512,12 +545,13 @@ static inline NV_STATUS kgspSetCmdQueueHead(struct OBJGPU *pGpu, struct KernelGs
|
||||
|
||||
#define kgspSetCmdQueueHead_HAL(pGpu, pKernelGsp, queueIdx, value) kgspSetCmdQueueHead(pGpu, pKernelGsp, queueIdx, value)
|
||||
|
||||
void kgspHealthCheck_TU102(struct OBJGPU *pGpu, struct KernelGsp *pKernelGsp);
|
||||
NvBool kgspHealthCheck_TU102(struct OBJGPU *pGpu, struct KernelGsp *pKernelGsp);
|
||||
|
||||
|
||||
#ifdef __nvoc_kernel_gsp_h_disabled
|
||||
static inline void kgspHealthCheck(struct OBJGPU *pGpu, struct KernelGsp *pKernelGsp) {
|
||||
static inline NvBool kgspHealthCheck(struct OBJGPU *pGpu, struct KernelGsp *pKernelGsp) {
|
||||
NV_ASSERT_FAILED_PRECOMP("KernelGsp was disabled!");
|
||||
return NV_FALSE;
|
||||
}
|
||||
#else //__nvoc_kernel_gsp_h_disabled
|
||||
#define kgspHealthCheck(pGpu, pKernelGsp) kgspHealthCheck_TU102(pGpu, pKernelGsp)
|
||||
@@ -984,10 +1018,70 @@ static inline NV_STATUS kgspSetupGspFmcArgs_DISPATCH(struct OBJGPU *pGpu, struct
|
||||
return pKernelGsp->__kgspSetupGspFmcArgs__(pGpu, pKernelGsp, pGspFw);
|
||||
}
|
||||
|
||||
static inline NvBool kgspConfigured_DISPATCH(struct KernelGsp *arg0) {
|
||||
return arg0->__kgspConfigured__(arg0);
|
||||
}
|
||||
|
||||
static inline NvU32 kgspPriRead_DISPATCH(struct KernelGsp *arg0, NvU32 offset) {
|
||||
return arg0->__kgspPriRead__(arg0, offset);
|
||||
}
|
||||
|
||||
static inline void kgspRegWrite_DISPATCH(struct OBJGPU *pGpu, struct KernelGsp *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
pKernelFlcn->__kgspRegWrite__(pGpu, pKernelFlcn, offset, data);
|
||||
}
|
||||
|
||||
static inline NvU32 kgspMaskDmemAddr_DISPATCH(struct OBJGPU *pGpu, struct KernelGsp *pKernelFlcn, NvU32 addr) {
|
||||
return pKernelFlcn->__kgspMaskDmemAddr__(pGpu, pKernelFlcn, addr);
|
||||
}
|
||||
|
||||
static inline void kgspStateDestroy_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
pEngstate->__kgspStateDestroy__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline void kgspVprintf_DISPATCH(struct KernelGsp *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
arg0->__kgspVprintf__(arg0, bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static inline NvBool kgspClearInterrupt_DISPATCH(struct OBJGPU *pGpu, struct KernelGsp *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return pIntrService->__kgspClearInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline void kgspPriWrite_DISPATCH(struct KernelGsp *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__kgspPriWrite__(arg0, offset, data);
|
||||
}
|
||||
|
||||
static inline void *kgspMapBufferDescriptor_DISPATCH(struct KernelGsp *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return arg0->__kgspMapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void kgspSyncBufferDescriptor_DISPATCH(struct KernelGsp *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
arg0->__kgspSyncBufferDescriptor__(arg0, pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static inline NvU32 kgspRegRead_DISPATCH(struct OBJGPU *pGpu, struct KernelGsp *pKernelFlcn, NvU32 offset) {
|
||||
return pKernelFlcn->__kgspRegRead__(pGpu, pKernelFlcn, offset);
|
||||
}
|
||||
|
||||
static inline NvBool kgspIsPresent_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
return pEngstate->__kgspIsPresent__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline void kgspReadEmem_DISPATCH(struct KernelGsp *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
arg0->__kgspReadEmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
static inline NV_STATUS kgspStateLoad_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__kgspStateLoad__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
|
||||
static inline const NvU32 *kgspGetScratchOffsets_DISPATCH(struct KernelGsp *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return arg0->__kgspGetScratchOffsets__(arg0, scratchGroupId);
|
||||
}
|
||||
|
||||
static inline void kgspUnload_DISPATCH(struct KernelGsp *arg0) {
|
||||
arg0->__kgspUnload__(arg0);
|
||||
}
|
||||
|
||||
static inline NV_STATUS kgspStateUnload_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__kgspStateUnload__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
@@ -996,6 +1090,10 @@ static inline NV_STATUS kgspServiceNotificationInterrupt_DISPATCH(struct OBJGPU
|
||||
return pIntrService->__kgspServiceNotificationInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline NvU32 kgspGetWFL0Offset_DISPATCH(struct KernelGsp *arg0) {
|
||||
return arg0->__kgspGetWFL0Offset__(arg0);
|
||||
}
|
||||
|
||||
static inline NV_STATUS kgspStateInitLocked_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
return pEngstate->__kgspStateInitLocked__(pGpu, pEngstate);
|
||||
}
|
||||
@@ -1008,10 +1106,6 @@ static inline NV_STATUS kgspStatePostUnload_DISPATCH(POBJGPU pGpu, struct Kernel
|
||||
return pEngstate->__kgspStatePostUnload__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
|
||||
static inline void kgspStateDestroy_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
pEngstate->__kgspStateDestroy__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline NV_STATUS kgspStatePreUnload_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__kgspStatePreUnload__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
@@ -1032,16 +1126,16 @@ static inline NV_STATUS kgspStatePreInitUnlocked_DISPATCH(POBJGPU pGpu, struct K
|
||||
return pEngstate->__kgspStatePreInitUnlocked__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline NvBool kgspClearInterrupt_DISPATCH(struct OBJGPU *pGpu, struct KernelGsp *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return pIntrService->__kgspClearInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline NV_STATUS kgspStatePostLoad_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__kgspStatePostLoad__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
|
||||
static inline NvBool kgspIsPresent_DISPATCH(POBJGPU pGpu, struct KernelGsp *pEngstate) {
|
||||
return pEngstate->__kgspIsPresent__(pGpu, pEngstate);
|
||||
static inline void kgspUnmapBufferDescriptor_DISPATCH(struct KernelGsp *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
arg0->__kgspUnmapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void kgspReadDmem_DISPATCH(struct KernelGsp *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
arg0->__kgspReadDmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
void kgspDestruct_IMPL(struct KernelGsp *pKernelGsp);
|
||||
|
||||
@@ -19,6 +19,10 @@ extern const struct NVOC_CLASS_DEF __nvoc_class_def_OBJENGSTATE;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_IntrService;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_CrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelCrashCatEngine;
|
||||
|
||||
extern const struct NVOC_CLASS_DEF __nvoc_class_def_KernelFalcon;
|
||||
|
||||
void __nvoc_init_KernelSec2(KernelSec2*, RmHalspecOwner* );
|
||||
@@ -52,6 +56,18 @@ static const struct NVOC_RTTI __nvoc_rtti_KernelSec2_IntrService = {
|
||||
/*offset=*/ NV_OFFSETOF(KernelSec2, __nvoc_base_IntrService),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelSec2_CrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_CrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelSec2, __nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelSec2_KernelCrashCatEngine = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelCrashCatEngine,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
/*offset=*/ NV_OFFSETOF(KernelSec2, __nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine),
|
||||
};
|
||||
|
||||
static const struct NVOC_RTTI __nvoc_rtti_KernelSec2_KernelFalcon = {
|
||||
/*pClassDef=*/ &__nvoc_class_def_KernelFalcon,
|
||||
/*dtor=*/ &__nvoc_destructFromBase,
|
||||
@@ -59,10 +75,12 @@ static const struct NVOC_RTTI __nvoc_rtti_KernelSec2_KernelFalcon = {
|
||||
};
|
||||
|
||||
static const struct NVOC_CASTINFO __nvoc_castinfo_KernelSec2 = {
|
||||
/*numRelatives=*/ 5,
|
||||
/*numRelatives=*/ 7,
|
||||
/*relatives=*/ {
|
||||
&__nvoc_rtti_KernelSec2_KernelSec2,
|
||||
&__nvoc_rtti_KernelSec2_KernelFalcon,
|
||||
&__nvoc_rtti_KernelSec2_KernelCrashCatEngine,
|
||||
&__nvoc_rtti_KernelSec2_CrashCatEngine,
|
||||
&__nvoc_rtti_KernelSec2_IntrService,
|
||||
&__nvoc_rtti_KernelSec2_OBJENGSTATE,
|
||||
&__nvoc_rtti_KernelSec2_Object,
|
||||
@@ -104,10 +122,78 @@ static NV_STATUS __nvoc_thunk_KernelSec2_engstateStateLoad(struct OBJGPU *pGpu,
|
||||
return ksec2StateLoad(pGpu, (struct KernelSec2 *)(((unsigned char *)pKernelSec2) - __nvoc_rtti_KernelSec2_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_KernelCrashCatEngine_ksec2Configured(struct KernelSec2 *arg0) {
|
||||
return kcrashcatEngineConfigured((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_ksec2PriRead(struct KernelSec2 *arg0, NvU32 offset) {
|
||||
return kcrashcatEnginePriRead((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), offset);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelFalcon_ksec2RegWrite(struct OBJGPU *pGpu, struct KernelSec2 *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
kflcnRegWrite(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_KernelSec2_KernelFalcon.offset), offset, data);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_ksec2MaskDmemAddr(struct OBJGPU *pGpu, struct KernelSec2 *pKernelFlcn, NvU32 addr) {
|
||||
return kflcnMaskDmemAddr(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_KernelSec2_KernelFalcon.offset), addr);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_OBJENGSTATE_ksec2StateDestroy(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
engstateStateDestroy(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2Vprintf(struct KernelSec2 *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
kcrashcatEngineVprintf((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_IntrService_ksec2ClearInterrupt(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return intrservClearInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelSec2_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2PriWrite(struct KernelSec2 *arg0, NvU32 offset, NvU32 data) {
|
||||
kcrashcatEnginePriWrite((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), offset, data);
|
||||
}
|
||||
|
||||
static void *__nvoc_thunk_KernelCrashCatEngine_ksec2MapBufferDescriptor(struct KernelSec2 *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return kcrashcatEngineMapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2SyncBufferDescriptor(struct KernelSec2 *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
kcrashcatEngineSyncBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelFalcon_ksec2RegRead(struct OBJGPU *pGpu, struct KernelSec2 *pKernelFlcn, NvU32 offset) {
|
||||
return kflcnRegRead(pGpu, (struct KernelFalcon *)(((unsigned char *)pKernelFlcn) + __nvoc_rtti_KernelSec2_KernelFalcon.offset), offset);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_OBJENGSTATE_ksec2IsPresent(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
return engstateIsPresent(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_IntrService_ksec2ServiceInterrupt(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceServiceInterruptArguments *pParams) {
|
||||
return intrservServiceInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelSec2_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2ReadEmem(struct KernelSec2 *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
kcrashcatEngineReadEmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
static const NvU32 *__nvoc_thunk_KernelCrashCatEngine_ksec2GetScratchOffsets(struct KernelSec2 *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return kcrashcatEngineGetScratchOffsets((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), scratchGroupId);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2Unload(struct KernelSec2 *arg0) {
|
||||
kcrashcatEngineUnload((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_ksec2StateUnload(POBJGPU pGpu, struct KernelSec2 *pEngstate, NvU32 arg0) {
|
||||
return engstateStateUnload(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_KernelCrashCatEngine_ksec2GetWFL0Offset(struct KernelSec2 *arg0) {
|
||||
return kcrashcatEngineGetWFL0Offset((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset));
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_ksec2StateInitLocked(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
return engstateStateInitLocked(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset));
|
||||
}
|
||||
@@ -120,10 +206,6 @@ static NV_STATUS __nvoc_thunk_OBJENGSTATE_ksec2StatePostUnload(POBJGPU pGpu, str
|
||||
return engstateStatePostUnload(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static void __nvoc_thunk_OBJENGSTATE_ksec2StateDestroy(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
engstateStateDestroy(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_ksec2StatePreUnload(POBJGPU pGpu, struct KernelSec2 *pEngstate, NvU32 arg0) {
|
||||
return engstateStatePreUnload(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
@@ -144,20 +226,16 @@ static NV_STATUS __nvoc_thunk_OBJENGSTATE_ksec2StatePreInitUnlocked(POBJGPU pGpu
|
||||
return engstateStatePreInitUnlocked(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset));
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_IntrService_ksec2ClearInterrupt(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return intrservClearInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelSec2_IntrService.offset), pParams);
|
||||
}
|
||||
|
||||
static NV_STATUS __nvoc_thunk_OBJENGSTATE_ksec2StatePostLoad(POBJGPU pGpu, struct KernelSec2 *pEngstate, NvU32 arg0) {
|
||||
return engstateStatePostLoad(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset), arg0);
|
||||
}
|
||||
|
||||
static NvBool __nvoc_thunk_OBJENGSTATE_ksec2IsPresent(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
return engstateIsPresent(pGpu, (struct OBJENGSTATE *)(((unsigned char *)pEngstate) + __nvoc_rtti_KernelSec2_OBJENGSTATE.offset));
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2UnmapBufferDescriptor(struct KernelSec2 *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
kcrashcatEngineUnmapBufferDescriptor((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), pBufDesc);
|
||||
}
|
||||
|
||||
static NvU32 __nvoc_thunk_IntrService_ksec2ServiceInterrupt(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceServiceInterruptArguments *pParams) {
|
||||
return intrservServiceInterrupt(pGpu, (struct IntrService *)(((unsigned char *)pIntrService) + __nvoc_rtti_KernelSec2_IntrService.offset), pParams);
|
||||
static void __nvoc_thunk_KernelCrashCatEngine_ksec2ReadDmem(struct KernelSec2 *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
kcrashcatEngineReadDmem((struct KernelCrashCatEngine *)(((unsigned char *)arg0) + __nvoc_rtti_KernelSec2_KernelCrashCatEngine.offset), offset, size, pBuf);
|
||||
}
|
||||
|
||||
const struct NVOC_EXPORT_INFO __nvoc_export_info_KernelSec2 =
|
||||
@@ -313,16 +391,48 @@ static void __nvoc_init_funcTable_KernelSec2_1(KernelSec2 *pThis, RmHalspecOwner
|
||||
|
||||
pThis->__nvoc_base_OBJENGSTATE.__engstateStateLoad__ = &__nvoc_thunk_KernelSec2_engstateStateLoad;
|
||||
|
||||
pThis->__ksec2Configured__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2Configured;
|
||||
|
||||
pThis->__ksec2PriRead__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2PriRead;
|
||||
|
||||
pThis->__ksec2RegWrite__ = &__nvoc_thunk_KernelFalcon_ksec2RegWrite;
|
||||
|
||||
pThis->__ksec2MaskDmemAddr__ = &__nvoc_thunk_KernelFalcon_ksec2MaskDmemAddr;
|
||||
|
||||
pThis->__ksec2StateDestroy__ = &__nvoc_thunk_OBJENGSTATE_ksec2StateDestroy;
|
||||
|
||||
pThis->__ksec2Vprintf__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2Vprintf;
|
||||
|
||||
pThis->__ksec2ClearInterrupt__ = &__nvoc_thunk_IntrService_ksec2ClearInterrupt;
|
||||
|
||||
pThis->__ksec2PriWrite__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2PriWrite;
|
||||
|
||||
pThis->__ksec2MapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2MapBufferDescriptor;
|
||||
|
||||
pThis->__ksec2SyncBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2SyncBufferDescriptor;
|
||||
|
||||
pThis->__ksec2RegRead__ = &__nvoc_thunk_KernelFalcon_ksec2RegRead;
|
||||
|
||||
pThis->__ksec2IsPresent__ = &__nvoc_thunk_OBJENGSTATE_ksec2IsPresent;
|
||||
|
||||
pThis->__ksec2ServiceInterrupt__ = &__nvoc_thunk_IntrService_ksec2ServiceInterrupt;
|
||||
|
||||
pThis->__ksec2ReadEmem__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2ReadEmem;
|
||||
|
||||
pThis->__ksec2GetScratchOffsets__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2GetScratchOffsets;
|
||||
|
||||
pThis->__ksec2Unload__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2Unload;
|
||||
|
||||
pThis->__ksec2StateUnload__ = &__nvoc_thunk_OBJENGSTATE_ksec2StateUnload;
|
||||
|
||||
pThis->__ksec2GetWFL0Offset__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2GetWFL0Offset;
|
||||
|
||||
pThis->__ksec2StateInitLocked__ = &__nvoc_thunk_OBJENGSTATE_ksec2StateInitLocked;
|
||||
|
||||
pThis->__ksec2StatePreLoad__ = &__nvoc_thunk_OBJENGSTATE_ksec2StatePreLoad;
|
||||
|
||||
pThis->__ksec2StatePostUnload__ = &__nvoc_thunk_OBJENGSTATE_ksec2StatePostUnload;
|
||||
|
||||
pThis->__ksec2StateDestroy__ = &__nvoc_thunk_OBJENGSTATE_ksec2StateDestroy;
|
||||
|
||||
pThis->__ksec2StatePreUnload__ = &__nvoc_thunk_OBJENGSTATE_ksec2StatePreUnload;
|
||||
|
||||
pThis->__ksec2StateInitUnlocked__ = &__nvoc_thunk_OBJENGSTATE_ksec2StateInitUnlocked;
|
||||
@@ -333,13 +443,11 @@ static void __nvoc_init_funcTable_KernelSec2_1(KernelSec2 *pThis, RmHalspecOwner
|
||||
|
||||
pThis->__ksec2StatePreInitUnlocked__ = &__nvoc_thunk_OBJENGSTATE_ksec2StatePreInitUnlocked;
|
||||
|
||||
pThis->__ksec2ClearInterrupt__ = &__nvoc_thunk_IntrService_ksec2ClearInterrupt;
|
||||
|
||||
pThis->__ksec2StatePostLoad__ = &__nvoc_thunk_OBJENGSTATE_ksec2StatePostLoad;
|
||||
|
||||
pThis->__ksec2IsPresent__ = &__nvoc_thunk_OBJENGSTATE_ksec2IsPresent;
|
||||
pThis->__ksec2UnmapBufferDescriptor__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2UnmapBufferDescriptor;
|
||||
|
||||
pThis->__ksec2ServiceInterrupt__ = &__nvoc_thunk_IntrService_ksec2ServiceInterrupt;
|
||||
pThis->__ksec2ReadDmem__ = &__nvoc_thunk_KernelCrashCatEngine_ksec2ReadDmem;
|
||||
}
|
||||
|
||||
void __nvoc_init_funcTable_KernelSec2(KernelSec2 *pThis, RmHalspecOwner *pRmhalspecowner) {
|
||||
@@ -354,6 +462,8 @@ void __nvoc_init_KernelSec2(KernelSec2 *pThis, RmHalspecOwner *pRmhalspecowner)
|
||||
pThis->__nvoc_pbase_Object = &pThis->__nvoc_base_OBJENGSTATE.__nvoc_base_Object;
|
||||
pThis->__nvoc_pbase_OBJENGSTATE = &pThis->__nvoc_base_OBJENGSTATE;
|
||||
pThis->__nvoc_pbase_IntrService = &pThis->__nvoc_base_IntrService;
|
||||
pThis->__nvoc_pbase_CrashCatEngine = &pThis->__nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine.__nvoc_base_CrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelCrashCatEngine = &pThis->__nvoc_base_KernelFalcon.__nvoc_base_KernelCrashCatEngine;
|
||||
pThis->__nvoc_pbase_KernelFalcon = &pThis->__nvoc_base_KernelFalcon;
|
||||
__nvoc_init_OBJENGSTATE(&pThis->__nvoc_base_OBJENGSTATE);
|
||||
__nvoc_init_IntrService(&pThis->__nvoc_base_IntrService);
|
||||
|
||||
@@ -57,6 +57,8 @@ struct KernelSec2 {
|
||||
struct Object *__nvoc_pbase_Object;
|
||||
struct OBJENGSTATE *__nvoc_pbase_OBJENGSTATE;
|
||||
struct IntrService *__nvoc_pbase_IntrService;
|
||||
struct CrashCatEngine *__nvoc_pbase_CrashCatEngine;
|
||||
struct KernelCrashCatEngine *__nvoc_pbase_KernelCrashCatEngine;
|
||||
struct KernelFalcon *__nvoc_pbase_KernelFalcon;
|
||||
struct KernelSec2 *__nvoc_pbase_KernelSec2;
|
||||
NV_STATUS (*__ksec2ConstructEngine__)(struct OBJGPU *, struct KernelSec2 *, ENGDESCRIPTOR);
|
||||
@@ -69,20 +71,35 @@ struct KernelSec2 {
|
||||
const BINDATA_ARCHIVE *(*__ksec2GetBinArchiveBlUcode__)(struct OBJGPU *, struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2GetGenericBlUcode__)(struct OBJGPU *, struct KernelSec2 *, const RM_FLCN_BL_DESC **, const NvU8 **);
|
||||
const BINDATA_ARCHIVE *(*__ksec2GetBinArchiveSecurescrubUcode__)(struct OBJGPU *, struct KernelSec2 *);
|
||||
NvBool (*__ksec2Configured__)(struct KernelSec2 *);
|
||||
NvU32 (*__ksec2PriRead__)(struct KernelSec2 *, NvU32);
|
||||
void (*__ksec2RegWrite__)(struct OBJGPU *, struct KernelSec2 *, NvU32, NvU32);
|
||||
NvU32 (*__ksec2MaskDmemAddr__)(struct OBJGPU *, struct KernelSec2 *, NvU32);
|
||||
void (*__ksec2StateDestroy__)(POBJGPU, struct KernelSec2 *);
|
||||
void (*__ksec2Vprintf__)(struct KernelSec2 *, NvBool, const char *, va_list);
|
||||
NvBool (*__ksec2ClearInterrupt__)(struct OBJGPU *, struct KernelSec2 *, IntrServiceClearInterruptArguments *);
|
||||
void (*__ksec2PriWrite__)(struct KernelSec2 *, NvU32, NvU32);
|
||||
void *(*__ksec2MapBufferDescriptor__)(struct KernelSec2 *, CrashCatBufferDescriptor *);
|
||||
void (*__ksec2SyncBufferDescriptor__)(struct KernelSec2 *, CrashCatBufferDescriptor *, NvU32, NvU32);
|
||||
NvU32 (*__ksec2RegRead__)(struct OBJGPU *, struct KernelSec2 *, NvU32);
|
||||
NvBool (*__ksec2IsPresent__)(POBJGPU, struct KernelSec2 *);
|
||||
NvU32 (*__ksec2ServiceInterrupt__)(struct OBJGPU *, struct KernelSec2 *, IntrServiceServiceInterruptArguments *);
|
||||
void (*__ksec2ReadEmem__)(struct KernelSec2 *, NvU64, NvU64, void *);
|
||||
const NvU32 *(*__ksec2GetScratchOffsets__)(struct KernelSec2 *, NV_CRASHCAT_SCRATCH_GROUP_ID);
|
||||
void (*__ksec2Unload__)(struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2StateUnload__)(POBJGPU, struct KernelSec2 *, NvU32);
|
||||
NvU32 (*__ksec2GetWFL0Offset__)(struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2StateInitLocked__)(POBJGPU, struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2StatePreLoad__)(POBJGPU, struct KernelSec2 *, NvU32);
|
||||
NV_STATUS (*__ksec2StatePostUnload__)(POBJGPU, struct KernelSec2 *, NvU32);
|
||||
void (*__ksec2StateDestroy__)(POBJGPU, struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2StatePreUnload__)(POBJGPU, struct KernelSec2 *, NvU32);
|
||||
NV_STATUS (*__ksec2StateInitUnlocked__)(POBJGPU, struct KernelSec2 *);
|
||||
void (*__ksec2InitMissing__)(POBJGPU, struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2StatePreInitLocked__)(POBJGPU, struct KernelSec2 *);
|
||||
NV_STATUS (*__ksec2StatePreInitUnlocked__)(POBJGPU, struct KernelSec2 *);
|
||||
NvBool (*__ksec2ClearInterrupt__)(struct OBJGPU *, struct KernelSec2 *, IntrServiceClearInterruptArguments *);
|
||||
NV_STATUS (*__ksec2StatePostLoad__)(POBJGPU, struct KernelSec2 *, NvU32);
|
||||
NvBool (*__ksec2IsPresent__)(POBJGPU, struct KernelSec2 *);
|
||||
NvU32 (*__ksec2ServiceInterrupt__)(struct OBJGPU *, struct KernelSec2 *, IntrServiceServiceInterruptArguments *);
|
||||
void (*__ksec2UnmapBufferDescriptor__)(struct KernelSec2 *, CrashCatBufferDescriptor *);
|
||||
void (*__ksec2ReadDmem__)(struct KernelSec2 *, NvU32, NvU32, void *);
|
||||
const RM_FLCN_BL_DESC *pGenericBlUcodeDesc;
|
||||
const NvU8 *pGenericBlUcodeImg;
|
||||
};
|
||||
@@ -137,20 +154,35 @@ NV_STATUS __nvoc_objCreate_KernelSec2(KernelSec2**, Dynamic*, NvU32);
|
||||
#define ksec2GetGenericBlUcode_HAL(pGpu, pKernelSec2, ppDesc, ppImg) ksec2GetGenericBlUcode_DISPATCH(pGpu, pKernelSec2, ppDesc, ppImg)
|
||||
#define ksec2GetBinArchiveSecurescrubUcode(pGpu, pKernelSec2) ksec2GetBinArchiveSecurescrubUcode_DISPATCH(pGpu, pKernelSec2)
|
||||
#define ksec2GetBinArchiveSecurescrubUcode_HAL(pGpu, pKernelSec2) ksec2GetBinArchiveSecurescrubUcode_DISPATCH(pGpu, pKernelSec2)
|
||||
#define ksec2Configured(arg0) ksec2Configured_DISPATCH(arg0)
|
||||
#define ksec2PriRead(arg0, offset) ksec2PriRead_DISPATCH(arg0, offset)
|
||||
#define ksec2RegWrite(pGpu, pKernelFlcn, offset, data) ksec2RegWrite_DISPATCH(pGpu, pKernelFlcn, offset, data)
|
||||
#define ksec2MaskDmemAddr(pGpu, pKernelFlcn, addr) ksec2MaskDmemAddr_DISPATCH(pGpu, pKernelFlcn, addr)
|
||||
#define ksec2StateDestroy(pGpu, pEngstate) ksec2StateDestroy_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2Vprintf(arg0, bReportStart, fmt, args) ksec2Vprintf_DISPATCH(arg0, bReportStart, fmt, args)
|
||||
#define ksec2ClearInterrupt(pGpu, pIntrService, pParams) ksec2ClearInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define ksec2PriWrite(arg0, offset, data) ksec2PriWrite_DISPATCH(arg0, offset, data)
|
||||
#define ksec2MapBufferDescriptor(arg0, pBufDesc) ksec2MapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define ksec2SyncBufferDescriptor(arg0, pBufDesc, offset, size) ksec2SyncBufferDescriptor_DISPATCH(arg0, pBufDesc, offset, size)
|
||||
#define ksec2RegRead(pGpu, pKernelFlcn, offset) ksec2RegRead_DISPATCH(pGpu, pKernelFlcn, offset)
|
||||
#define ksec2IsPresent(pGpu, pEngstate) ksec2IsPresent_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2ServiceInterrupt(pGpu, pIntrService, pParams) ksec2ServiceInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define ksec2ReadEmem(arg0, offset, size, pBuf) ksec2ReadEmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
#define ksec2GetScratchOffsets(arg0, scratchGroupId) ksec2GetScratchOffsets_DISPATCH(arg0, scratchGroupId)
|
||||
#define ksec2Unload(arg0) ksec2Unload_DISPATCH(arg0)
|
||||
#define ksec2StateUnload(pGpu, pEngstate, arg0) ksec2StateUnload_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define ksec2GetWFL0Offset(arg0) ksec2GetWFL0Offset_DISPATCH(arg0)
|
||||
#define ksec2StateInitLocked(pGpu, pEngstate) ksec2StateInitLocked_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2StatePreLoad(pGpu, pEngstate, arg0) ksec2StatePreLoad_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define ksec2StatePostUnload(pGpu, pEngstate, arg0) ksec2StatePostUnload_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define ksec2StateDestroy(pGpu, pEngstate) ksec2StateDestroy_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2StatePreUnload(pGpu, pEngstate, arg0) ksec2StatePreUnload_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define ksec2StateInitUnlocked(pGpu, pEngstate) ksec2StateInitUnlocked_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2InitMissing(pGpu, pEngstate) ksec2InitMissing_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2StatePreInitLocked(pGpu, pEngstate) ksec2StatePreInitLocked_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2StatePreInitUnlocked(pGpu, pEngstate) ksec2StatePreInitUnlocked_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2ClearInterrupt(pGpu, pIntrService, pParams) ksec2ClearInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define ksec2StatePostLoad(pGpu, pEngstate, arg0) ksec2StatePostLoad_DISPATCH(pGpu, pEngstate, arg0)
|
||||
#define ksec2IsPresent(pGpu, pEngstate) ksec2IsPresent_DISPATCH(pGpu, pEngstate)
|
||||
#define ksec2ServiceInterrupt(pGpu, pIntrService, pParams) ksec2ServiceInterrupt_DISPATCH(pGpu, pIntrService, pParams)
|
||||
#define ksec2UnmapBufferDescriptor(arg0, pBufDesc) ksec2UnmapBufferDescriptor_DISPATCH(arg0, pBufDesc)
|
||||
#define ksec2ReadDmem(arg0, offset, size, pBuf) ksec2ReadDmem_DISPATCH(arg0, offset, size, pBuf)
|
||||
NV_STATUS ksec2ConstructEngine_IMPL(struct OBJGPU *pGpu, struct KernelSec2 *pKernelSec2, ENGDESCRIPTOR arg0);
|
||||
|
||||
static inline NV_STATUS ksec2ConstructEngine_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pKernelSec2, ENGDESCRIPTOR arg0) {
|
||||
@@ -235,10 +267,78 @@ static inline const BINDATA_ARCHIVE *ksec2GetBinArchiveSecurescrubUcode_DISPATCH
|
||||
return pKernelSec2->__ksec2GetBinArchiveSecurescrubUcode__(pGpu, pKernelSec2);
|
||||
}
|
||||
|
||||
static inline NvBool ksec2Configured_DISPATCH(struct KernelSec2 *arg0) {
|
||||
return arg0->__ksec2Configured__(arg0);
|
||||
}
|
||||
|
||||
static inline NvU32 ksec2PriRead_DISPATCH(struct KernelSec2 *arg0, NvU32 offset) {
|
||||
return arg0->__ksec2PriRead__(arg0, offset);
|
||||
}
|
||||
|
||||
static inline void ksec2RegWrite_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pKernelFlcn, NvU32 offset, NvU32 data) {
|
||||
pKernelFlcn->__ksec2RegWrite__(pGpu, pKernelFlcn, offset, data);
|
||||
}
|
||||
|
||||
static inline NvU32 ksec2MaskDmemAddr_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pKernelFlcn, NvU32 addr) {
|
||||
return pKernelFlcn->__ksec2MaskDmemAddr__(pGpu, pKernelFlcn, addr);
|
||||
}
|
||||
|
||||
static inline void ksec2StateDestroy_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
pEngstate->__ksec2StateDestroy__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline void ksec2Vprintf_DISPATCH(struct KernelSec2 *arg0, NvBool bReportStart, const char *fmt, va_list args) {
|
||||
arg0->__ksec2Vprintf__(arg0, bReportStart, fmt, args);
|
||||
}
|
||||
|
||||
static inline NvBool ksec2ClearInterrupt_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return pIntrService->__ksec2ClearInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline void ksec2PriWrite_DISPATCH(struct KernelSec2 *arg0, NvU32 offset, NvU32 data) {
|
||||
arg0->__ksec2PriWrite__(arg0, offset, data);
|
||||
}
|
||||
|
||||
static inline void *ksec2MapBufferDescriptor_DISPATCH(struct KernelSec2 *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
return arg0->__ksec2MapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline void ksec2SyncBufferDescriptor_DISPATCH(struct KernelSec2 *arg0, CrashCatBufferDescriptor *pBufDesc, NvU32 offset, NvU32 size) {
|
||||
arg0->__ksec2SyncBufferDescriptor__(arg0, pBufDesc, offset, size);
|
||||
}
|
||||
|
||||
static inline NvU32 ksec2RegRead_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pKernelFlcn, NvU32 offset) {
|
||||
return pKernelFlcn->__ksec2RegRead__(pGpu, pKernelFlcn, offset);
|
||||
}
|
||||
|
||||
static inline NvBool ksec2IsPresent_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
return pEngstate->__ksec2IsPresent__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline NvU32 ksec2ServiceInterrupt_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceServiceInterruptArguments *pParams) {
|
||||
return pIntrService->__ksec2ServiceInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline void ksec2ReadEmem_DISPATCH(struct KernelSec2 *arg0, NvU64 offset, NvU64 size, void *pBuf) {
|
||||
arg0->__ksec2ReadEmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
static inline const NvU32 *ksec2GetScratchOffsets_DISPATCH(struct KernelSec2 *arg0, NV_CRASHCAT_SCRATCH_GROUP_ID scratchGroupId) {
|
||||
return arg0->__ksec2GetScratchOffsets__(arg0, scratchGroupId);
|
||||
}
|
||||
|
||||
static inline void ksec2Unload_DISPATCH(struct KernelSec2 *arg0) {
|
||||
arg0->__ksec2Unload__(arg0);
|
||||
}
|
||||
|
||||
static inline NV_STATUS ksec2StateUnload_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__ksec2StateUnload__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
|
||||
static inline NvU32 ksec2GetWFL0Offset_DISPATCH(struct KernelSec2 *arg0) {
|
||||
return arg0->__ksec2GetWFL0Offset__(arg0);
|
||||
}
|
||||
|
||||
static inline NV_STATUS ksec2StateInitLocked_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
return pEngstate->__ksec2StateInitLocked__(pGpu, pEngstate);
|
||||
}
|
||||
@@ -251,10 +351,6 @@ static inline NV_STATUS ksec2StatePostUnload_DISPATCH(POBJGPU pGpu, struct Kerne
|
||||
return pEngstate->__ksec2StatePostUnload__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
|
||||
static inline void ksec2StateDestroy_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
pEngstate->__ksec2StateDestroy__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline NV_STATUS ksec2StatePreUnload_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__ksec2StatePreUnload__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
@@ -275,20 +371,16 @@ static inline NV_STATUS ksec2StatePreInitUnlocked_DISPATCH(POBJGPU pGpu, struct
|
||||
return pEngstate->__ksec2StatePreInitUnlocked__(pGpu, pEngstate);
|
||||
}
|
||||
|
||||
static inline NvBool ksec2ClearInterrupt_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceClearInterruptArguments *pParams) {
|
||||
return pIntrService->__ksec2ClearInterrupt__(pGpu, pIntrService, pParams);
|
||||
}
|
||||
|
||||
static inline NV_STATUS ksec2StatePostLoad_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate, NvU32 arg0) {
|
||||
return pEngstate->__ksec2StatePostLoad__(pGpu, pEngstate, arg0);
|
||||
}
|
||||
|
||||
static inline NvBool ksec2IsPresent_DISPATCH(POBJGPU pGpu, struct KernelSec2 *pEngstate) {
|
||||
return pEngstate->__ksec2IsPresent__(pGpu, pEngstate);
|
||||
static inline void ksec2UnmapBufferDescriptor_DISPATCH(struct KernelSec2 *arg0, CrashCatBufferDescriptor *pBufDesc) {
|
||||
arg0->__ksec2UnmapBufferDescriptor__(arg0, pBufDesc);
|
||||
}
|
||||
|
||||
static inline NvU32 ksec2ServiceInterrupt_DISPATCH(struct OBJGPU *pGpu, struct KernelSec2 *pIntrService, IntrServiceServiceInterruptArguments *pParams) {
|
||||
return pIntrService->__ksec2ServiceInterrupt__(pGpu, pIntrService, pParams);
|
||||
static inline void ksec2ReadDmem_DISPATCH(struct KernelSec2 *arg0, NvU32 offset, NvU32 size, void *pBuf) {
|
||||
arg0->__ksec2ReadDmem__(arg0, offset, size, pBuf);
|
||||
}
|
||||
|
||||
void ksec2Destruct_IMPL(struct KernelSec2 *pKernelSec2);
|
||||
|
||||
@@ -815,6 +815,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x20B6, 0x1492, 0x10de, "NVIDIA PG506-232" },
|
||||
{ 0x20B7, 0x1532, 0x10de, "NVIDIA A30" },
|
||||
{ 0x20B7, 0x1804, 0x10de, "NVIDIA A30" },
|
||||
{ 0x20BD, 0x17f4, 0x10de, "NVIDIA A800-SXM4-40GB" },
|
||||
{ 0x20F1, 0x145f, 0x10de, "NVIDIA A100-PCIE-40GB" },
|
||||
{ 0x20F3, 0x179b, 0x10de, "NVIDIA A800-SXM4-80GB" },
|
||||
{ 0x20F3, 0x179c, 0x10de, "NVIDIA A800-SXM4-80GB" },
|
||||
@@ -826,6 +827,10 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x20F3, 0x17a2, 0x10de, "NVIDIA A800-SXM4-80GB" },
|
||||
{ 0x20F5, 0x1799, 0x10de, "NVIDIA A800 80GB PCIe" },
|
||||
{ 0x20F5, 0x179a, 0x10de, "NVIDIA A800 80GB PCIe LC" },
|
||||
{ 0x20F6, 0x180a, 0x1028, "NVIDIA A800 40GB Active" },
|
||||
{ 0x20F6, 0x180a, 0x103c, "NVIDIA A800 40GB Active" },
|
||||
{ 0x20F6, 0x180a, 0x10de, "NVIDIA A800 40GB Active" },
|
||||
{ 0x20F6, 0x180a, 0x17aa, "NVIDIA A800 40GB Active" },
|
||||
{ 0x2182, 0x0000, 0x0000, "NVIDIA GeForce GTX 1660 Ti" },
|
||||
{ 0x2184, 0x0000, 0x0000, "NVIDIA GeForce GTX 1660" },
|
||||
{ 0x2187, 0x0000, 0x0000, "NVIDIA GeForce GTX 1650 SUPER" },
|
||||
@@ -885,6 +890,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x2236, 0x1482, 0x10de, "NVIDIA A10" },
|
||||
{ 0x2237, 0x152f, 0x10de, "NVIDIA A10G" },
|
||||
{ 0x2238, 0x1677, 0x10de, "NVIDIA A10M" },
|
||||
{ 0x2321, 0x1839, 0x10de, "NVIDIA H100 NVL" },
|
||||
{ 0x2322, 0x17a4, 0x10de, "NVIDIA H800 PCIe" },
|
||||
{ 0x2324, 0x17a6, 0x10de, "NVIDIA H800" },
|
||||
{ 0x2324, 0x17a8, 0x10de, "NVIDIA H800" },
|
||||
@@ -892,6 +898,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x2330, 0x16c1, 0x10de, "NVIDIA H100 80GB HBM3" },
|
||||
{ 0x2331, 0x1626, 0x10de, "NVIDIA H100 PCIe" },
|
||||
{ 0x2339, 0x17fc, 0x10de, "NVIDIA H100" },
|
||||
{ 0x233A, 0x183a, 0x10de, "NVIDIA H800 NVL" },
|
||||
{ 0x2414, 0x0000, 0x0000, "NVIDIA GeForce RTX 3060 Ti" },
|
||||
{ 0x2420, 0x0000, 0x0000, "NVIDIA GeForce RTX 3080 Ti Laptop GPU" },
|
||||
{ 0x2438, 0x0000, 0x0000, "NVIDIA RTX A5500 Laptop GPU" },
|
||||
@@ -986,10 +993,13 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x26B2, 0x17fa, 0x17aa, "NVIDIA RTX 5000 Ada Generation" },
|
||||
{ 0x26B5, 0x169d, 0x10de, "NVIDIA L40" },
|
||||
{ 0x26B5, 0x17da, 0x10de, "NVIDIA L40" },
|
||||
{ 0x26B9, 0x1851, 0x10de, "NVIDIA L40S" },
|
||||
{ 0x26B9, 0x18cf, 0x10de, "NVIDIA L40S" },
|
||||
{ 0x2704, 0x0000, 0x0000, "NVIDIA GeForce RTX 4080" },
|
||||
{ 0x2717, 0x0000, 0x0000, "NVIDIA GeForce RTX 4090 Laptop GPU" },
|
||||
{ 0x2730, 0x0000, 0x0000, "NVIDIA RTX 5000 Ada Generation Laptop GPU" },
|
||||
{ 0x2757, 0x0000, 0x0000, "NVIDIA GeForce RTX 4090 Laptop GPU" },
|
||||
{ 0x2770, 0x0000, 0x0000, "NVIDIA RTX 5000 Ada Generation Embedded GPU" },
|
||||
{ 0x2782, 0x0000, 0x0000, "NVIDIA GeForce RTX 4070 Ti" },
|
||||
{ 0x2786, 0x0000, 0x0000, "NVIDIA GeForce RTX 4070" },
|
||||
{ 0x27A0, 0x0000, 0x0000, "NVIDIA GeForce RTX 4080 Laptop GPU" },
|
||||
@@ -1006,6 +1016,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x27BA, 0x0000, 0x0000, "NVIDIA RTX 4000 Ada Generation Laptop GPU" },
|
||||
{ 0x27BB, 0x0000, 0x0000, "NVIDIA RTX 3500 Ada Generation Laptop GPU" },
|
||||
{ 0x27E0, 0x0000, 0x0000, "NVIDIA GeForce RTX 4080 Laptop GPU" },
|
||||
{ 0x27FB, 0x0000, 0x0000, "NVIDIA RTX 3500 Ada Generation Embedded GPU" },
|
||||
{ 0x2803, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060 Ti" },
|
||||
{ 0x2805, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060 Ti" },
|
||||
{ 0x2820, 0x0000, 0x0000, "NVIDIA GeForce RTX 4070 Laptop GPU" },
|
||||
@@ -1017,6 +1028,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x28B8, 0x0000, 0x0000, "NVIDIA RTX 2000 Ada Generation Laptop GPU" },
|
||||
{ 0x28E0, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060 Laptop GPU" },
|
||||
{ 0x28E1, 0x0000, 0x0000, "NVIDIA GeForce RTX 4050 Laptop GPU" },
|
||||
{ 0x28F8, 0x0000, 0x0000, "NVIDIA RTX 2000 Ada Generation Embedded GPU" },
|
||||
{ 0x13BD, 0x11cc, 0x10DE, "GRID M10-0B" },
|
||||
{ 0x13BD, 0x11cd, 0x10DE, "GRID M10-1B" },
|
||||
{ 0x13BD, 0x11ce, 0x10DE, "GRID M10-0Q" },
|
||||
@@ -1534,6 +1546,19 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x20F5, 0x17ca, 0x10DE, "GRID A800D-40C" },
|
||||
{ 0x20F5, 0x17cb, 0x10DE, "GRID A800D-80C" },
|
||||
{ 0x20F5, 0x183f, 0x10DE, "GRID A800D-1-20C" },
|
||||
{ 0x20F6, 0x17cc, 0x10DE, "GRID A800-1-5CME" },
|
||||
{ 0x20F6, 0x17cd, 0x10DE, "GRID A800-1-5C" },
|
||||
{ 0x20F6, 0x17ce, 0x10DE, "GRID A800-2-10C" },
|
||||
{ 0x20F6, 0x17cf, 0x10DE, "GRID A800-3-20C" },
|
||||
{ 0x20F6, 0x17d0, 0x10DE, "GRID A800-4-20C" },
|
||||
{ 0x20F6, 0x17d1, 0x10DE, "GRID A800-7-40C" },
|
||||
{ 0x20F6, 0x17d2, 0x10DE, "GRID A800-4C" },
|
||||
{ 0x20F6, 0x17d3, 0x10DE, "GRID A800-5C" },
|
||||
{ 0x20F6, 0x17d4, 0x10DE, "GRID A800-8C" },
|
||||
{ 0x20F6, 0x17d5, 0x10DE, "GRID A800-10C" },
|
||||
{ 0x20F6, 0x17d6, 0x10DE, "GRID A800-20C" },
|
||||
{ 0x20F6, 0x17d7, 0x10DE, "GRID A800-40C" },
|
||||
{ 0x20F6, 0x1843, 0x10DE, "GRID A800-1-10C" },
|
||||
{ 0x2230, 0x14fa, 0x10DE, "NVIDIA RTXA6000-1B" },
|
||||
{ 0x2230, 0x14fb, 0x10DE, "NVIDIA RTXA6000-2B" },
|
||||
{ 0x2230, 0x14fc, 0x10DE, "NVIDIA RTXA6000-1Q" },
|
||||
@@ -1772,21 +1797,6 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x2322, 0x17ee, 0x10DE, "NVIDIA H800-40C" },
|
||||
{ 0x2322, 0x17ef, 0x10DE, "NVIDIA H800-80C" },
|
||||
{ 0x2322, 0x1845, 0x10DE, "NVIDIA H800-1-20C" },
|
||||
{ 0x2330, 0x187a, 0x10DE, "NVIDIA H100XM-1-10CME" },
|
||||
{ 0x2330, 0x187b, 0x10DE, "NVIDIA H100XM-1-10C" },
|
||||
{ 0x2330, 0x187c, 0x10DE, "NVIDIA H100XM-1-20C" },
|
||||
{ 0x2330, 0x187d, 0x10DE, "NVIDIA H100XM-2-20C" },
|
||||
{ 0x2330, 0x187e, 0x10DE, "NVIDIA H100XM-3-40C" },
|
||||
{ 0x2330, 0x187f, 0x10DE, "NVIDIA H100XM-4-40C" },
|
||||
{ 0x2330, 0x1880, 0x10DE, "NVIDIA H100XM-7-80C" },
|
||||
{ 0x2330, 0x1881, 0x10DE, "NVIDIA H100XM-4C" },
|
||||
{ 0x2330, 0x1882, 0x10DE, "NVIDIA H100XM-5C" },
|
||||
{ 0x2330, 0x1883, 0x10DE, "NVIDIA H100XM-8C" },
|
||||
{ 0x2330, 0x1884, 0x10DE, "NVIDIA H100XM-10C" },
|
||||
{ 0x2330, 0x1885, 0x10DE, "NVIDIA H100XM-16C" },
|
||||
{ 0x2330, 0x1886, 0x10DE, "NVIDIA H100XM-20C" },
|
||||
{ 0x2330, 0x1887, 0x10DE, "NVIDIA H100XM-40C" },
|
||||
{ 0x2330, 0x1888, 0x10DE, "NVIDIA H100XM-80C" },
|
||||
{ 0x2331, 0x16d3, 0x10DE, "NVIDIA H100-1-10C" },
|
||||
{ 0x2331, 0x16d4, 0x10DE, "NVIDIA H100-2-20C" },
|
||||
{ 0x2331, 0x16d5, 0x10DE, "NVIDIA H100-3-40C" },
|
||||
@@ -1888,6 +1898,30 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x26B1, 0x172c, 0x10DE, "NVIDIA RTX6000-Ada-16C" },
|
||||
{ 0x26B1, 0x172d, 0x10DE, "NVIDIA RTX6000-Ada-24C" },
|
||||
{ 0x26B1, 0x172e, 0x10DE, "NVIDIA RTX6000-Ada-48C" },
|
||||
{ 0x26B2, 0x1821, 0x10DE, "NVIDIA RTX5000-Ada-1B" },
|
||||
{ 0x26B2, 0x1822, 0x10DE, "NVIDIA RTX5000-Ada-2B" },
|
||||
{ 0x26B2, 0x1823, 0x10DE, "NVIDIA RTX5000-Ada-1Q" },
|
||||
{ 0x26B2, 0x1824, 0x10DE, "NVIDIA RTX5000-Ada-2Q" },
|
||||
{ 0x26B2, 0x1825, 0x10DE, "NVIDIA RTX5000-Ada-4Q" },
|
||||
{ 0x26B2, 0x1826, 0x10DE, "NVIDIA RTX5000-Ada-8Q" },
|
||||
{ 0x26B2, 0x1827, 0x10DE, "NVIDIA RTX5000-Ada-16Q" },
|
||||
{ 0x26B2, 0x1828, 0x10DE, "NVIDIA RTX5000-Ada-32Q" },
|
||||
{ 0x26B2, 0x1829, 0x10DE, "NVIDIA RTX5000-Ada-1A" },
|
||||
{ 0x26B2, 0x182a, 0x10DE, "NVIDIA RTX5000-Ada-2A" },
|
||||
{ 0x26B2, 0x182b, 0x10DE, "NVIDIA RTX5000-Ada-4A" },
|
||||
{ 0x26B2, 0x182c, 0x10DE, "NVIDIA RTX5000-Ada-8A" },
|
||||
{ 0x26B2, 0x182d, 0x10DE, "NVIDIA RTX5000-Ada-16A" },
|
||||
{ 0x26B2, 0x182e, 0x10DE, "NVIDIA RTX5000-Ada-32A" },
|
||||
{ 0x26B2, 0x182f, 0x10DE, "NVIDIA RTX5000-Ada-1" },
|
||||
{ 0x26B2, 0x1830, 0x10DE, "NVIDIA RTX5000-Ada-2" },
|
||||
{ 0x26B2, 0x1831, 0x10DE, "NVIDIA RTX5000-Ada-4" },
|
||||
{ 0x26B2, 0x1832, 0x10DE, "NVIDIA RTX5000-Ada-8" },
|
||||
{ 0x26B2, 0x1833, 0x10DE, "NVIDIA RTX5000-Ada-16" },
|
||||
{ 0x26B2, 0x1834, 0x10DE, "NVIDIA RTX5000-Ada-32" },
|
||||
{ 0x26B2, 0x1835, 0x10DE, "NVIDIA RTX5000-Ada-4C" },
|
||||
{ 0x26B2, 0x1836, 0x10DE, "NVIDIA RTX5000-Ada-8C" },
|
||||
{ 0x26B2, 0x1837, 0x10DE, "NVIDIA RTX5000-Ada-16C" },
|
||||
{ 0x26B2, 0x1838, 0x10DE, "NVIDIA RTX5000-Ada-32C" },
|
||||
{ 0x26B5, 0x176d, 0x10DE, "NVIDIA L40-1B" },
|
||||
{ 0x26B5, 0x176e, 0x10DE, "NVIDIA L40-2B" },
|
||||
{ 0x26B5, 0x176f, 0x10DE, "NVIDIA L40-1Q" },
|
||||
@@ -1962,6 +1996,47 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x26B8, 0x176c, 0x10DE, "NVIDIA L40G-24C" },
|
||||
{ 0x26B8, 0x181c, 0x10DE, "NVIDIA GeForce RTX 3060" },
|
||||
{ 0x26B8, 0x181e, 0x10DE, "NVIDIA GeForce RTX 3050" },
|
||||
{ 0x26B9, 0x1889, 0x10DE, "NVIDIA L40S-1B" },
|
||||
{ 0x26B9, 0x188a, 0x10DE, "NVIDIA L40S-2B" },
|
||||
{ 0x26B9, 0x188b, 0x10DE, "NVIDIA L40S-1Q" },
|
||||
{ 0x26B9, 0x188c, 0x10DE, "NVIDIA L40S-2Q" },
|
||||
{ 0x26B9, 0x188d, 0x10DE, "NVIDIA L40S-3Q" },
|
||||
{ 0x26B9, 0x188e, 0x10DE, "NVIDIA L40S-4Q" },
|
||||
{ 0x26B9, 0x188f, 0x10DE, "NVIDIA L40S-6Q" },
|
||||
{ 0x26B9, 0x1890, 0x10DE, "NVIDIA L40S-8Q" },
|
||||
{ 0x26B9, 0x1891, 0x10DE, "NVIDIA L40S-12Q" },
|
||||
{ 0x26B9, 0x1892, 0x10DE, "NVIDIA L40S-16Q" },
|
||||
{ 0x26B9, 0x1893, 0x10DE, "NVIDIA L40S-24Q" },
|
||||
{ 0x26B9, 0x1894, 0x10DE, "NVIDIA L40S-48Q" },
|
||||
{ 0x26B9, 0x1895, 0x10DE, "NVIDIA L40S-1A" },
|
||||
{ 0x26B9, 0x1896, 0x10DE, "NVIDIA L40S-2A" },
|
||||
{ 0x26B9, 0x1897, 0x10DE, "NVIDIA L40S-3A" },
|
||||
{ 0x26B9, 0x1898, 0x10DE, "NVIDIA L40S-4A" },
|
||||
{ 0x26B9, 0x1899, 0x10DE, "NVIDIA L40S-6A" },
|
||||
{ 0x26B9, 0x189a, 0x10DE, "NVIDIA L40S-8A" },
|
||||
{ 0x26B9, 0x189b, 0x10DE, "NVIDIA L40S-12A" },
|
||||
{ 0x26B9, 0x189c, 0x10DE, "NVIDIA L40S-16A" },
|
||||
{ 0x26B9, 0x189d, 0x10DE, "NVIDIA L40S-24A" },
|
||||
{ 0x26B9, 0x189e, 0x10DE, "NVIDIA L40S-48A" },
|
||||
{ 0x26B9, 0x189f, 0x10DE, "GeForce RTX 3050" },
|
||||
{ 0x26B9, 0x18a0, 0x10DE, "GeForce RTX 3060" },
|
||||
{ 0x26B9, 0x18a1, 0x10DE, "NVIDIA L40S-1" },
|
||||
{ 0x26B9, 0x18a2, 0x10DE, "NVIDIA L40S-2" },
|
||||
{ 0x26B9, 0x18a3, 0x10DE, "NVIDIA L40S-3" },
|
||||
{ 0x26B9, 0x18a4, 0x10DE, "NVIDIA L40S-4" },
|
||||
{ 0x26B9, 0x18a5, 0x10DE, "NVIDIA L40S-6" },
|
||||
{ 0x26B9, 0x18a6, 0x10DE, "NVIDIA L40S-8" },
|
||||
{ 0x26B9, 0x18a7, 0x10DE, "NVIDIA L40S-12" },
|
||||
{ 0x26B9, 0x18a8, 0x10DE, "NVIDIA L40S-16" },
|
||||
{ 0x26B9, 0x18a9, 0x10DE, "NVIDIA L40S-24" },
|
||||
{ 0x26B9, 0x18aa, 0x10DE, "NVIDIA L40S-48" },
|
||||
{ 0x26B9, 0x18ab, 0x10DE, "NVIDIA L40S-4C" },
|
||||
{ 0x26B9, 0x18ac, 0x10DE, "NVIDIA L40S-6C" },
|
||||
{ 0x26B9, 0x18ad, 0x10DE, "NVIDIA L40S-8C" },
|
||||
{ 0x26B9, 0x18ae, 0x10DE, "NVIDIA L40S-12C" },
|
||||
{ 0x26B9, 0x18af, 0x10DE, "NVIDIA L40S-16C" },
|
||||
{ 0x26B9, 0x18b0, 0x10DE, "NVIDIA L40S-24C" },
|
||||
{ 0x26B9, 0x18b1, 0x10DE, "NVIDIA L40S-48C" },
|
||||
{ 0x27B8, 0x172f, 0x10DE, "NVIDIA L4-1B" },
|
||||
{ 0x27B8, 0x1730, 0x10DE, "NVIDIA L4-2B" },
|
||||
{ 0x27B8, 0x1731, 0x10DE, "NVIDIA L4-1Q" },
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -489,6 +489,7 @@ struct Subdevice {
|
||||
NV_STATUS (*__subdeviceCtrlCmdInternalStaticKMIGmgrGetComputeInstanceProfiles__)(struct Subdevice *, NV2080_CTRL_INTERNAL_STATIC_MIGMGR_GET_COMPUTE_PROFILES_PARAMS *);
|
||||
NV_STATUS (*__subdeviceCtrlCmdInternalKMIGmgrExportGPUInstance__)(struct Subdevice *, NV2080_CTRL_INTERNAL_KMIGMGR_IMPORT_EXPORT_GPU_INSTANCE_PARAMS *);
|
||||
NV_STATUS (*__subdeviceCtrlCmdInternalKMIGmgrImportGPUInstance__)(struct Subdevice *, NV2080_CTRL_INTERNAL_KMIGMGR_IMPORT_EXPORT_GPU_INSTANCE_PARAMS *);
|
||||
NV_STATUS (*__subdeviceCtrlCmdInternalKMIGmgrPromoteGpuInstanceMemRange__)(struct Subdevice *, NV2080_CTRL_INTERNAL_KMIGMGR_PROMOTE_GPU_INSTANCE_MEM_RANGE_PARAMS *);
|
||||
NV_STATUS (*__subdeviceCtrlCmdOsUnixGc6BlockerRefCnt__)(struct Subdevice *, NV2080_CTRL_OS_UNIX_GC6_BLOCKER_REFCNT_PARAMS *);
|
||||
NV_STATUS (*__subdeviceCtrlCmdOsUnixAllowDisallowGcoff__)(struct Subdevice *, NV2080_CTRL_OS_UNIX_ALLOW_DISALLOW_GCOFF_PARAMS *);
|
||||
NV_STATUS (*__subdeviceCtrlCmdOsUnixAudioDynamicPower__)(struct Subdevice *, NV2080_CTRL_OS_UNIX_AUDIO_DYNAMIC_POWER_PARAMS *);
|
||||
@@ -1082,6 +1083,7 @@ NV_STATUS __nvoc_objCreate_Subdevice(Subdevice**, Dynamic*, NvU32, struct CALL_C
|
||||
#define subdeviceCtrlCmdInternalStaticKMIGmgrGetComputeInstanceProfiles(pSubdevice, pParams) subdeviceCtrlCmdInternalStaticKMIGmgrGetComputeInstanceProfiles_DISPATCH(pSubdevice, pParams)
|
||||
#define subdeviceCtrlCmdInternalKMIGmgrExportGPUInstance(pSubdevice, pParams) subdeviceCtrlCmdInternalKMIGmgrExportGPUInstance_DISPATCH(pSubdevice, pParams)
|
||||
#define subdeviceCtrlCmdInternalKMIGmgrImportGPUInstance(pSubdevice, pParams) subdeviceCtrlCmdInternalKMIGmgrImportGPUInstance_DISPATCH(pSubdevice, pParams)
|
||||
#define subdeviceCtrlCmdInternalKMIGmgrPromoteGpuInstanceMemRange(pSubdevice, pParams) subdeviceCtrlCmdInternalKMIGmgrPromoteGpuInstanceMemRange_DISPATCH(pSubdevice, pParams)
|
||||
#define subdeviceCtrlCmdOsUnixGc6BlockerRefCnt(pSubdevice, pParams) subdeviceCtrlCmdOsUnixGc6BlockerRefCnt_DISPATCH(pSubdevice, pParams)
|
||||
#define subdeviceCtrlCmdOsUnixAllowDisallowGcoff(pSubdevice, pParams) subdeviceCtrlCmdOsUnixAllowDisallowGcoff_DISPATCH(pSubdevice, pParams)
|
||||
#define subdeviceCtrlCmdOsUnixAudioDynamicPower(pSubdevice, pParams) subdeviceCtrlCmdOsUnixAudioDynamicPower_DISPATCH(pSubdevice, pParams)
|
||||
@@ -3481,6 +3483,12 @@ static inline NV_STATUS subdeviceCtrlCmdInternalKMIGmgrImportGPUInstance_DISPATC
|
||||
return pSubdevice->__subdeviceCtrlCmdInternalKMIGmgrImportGPUInstance__(pSubdevice, pParams);
|
||||
}
|
||||
|
||||
NV_STATUS subdeviceCtrlCmdInternalKMIGmgrPromoteGpuInstanceMemRange_IMPL(struct Subdevice *pSubdevice, NV2080_CTRL_INTERNAL_KMIGMGR_PROMOTE_GPU_INSTANCE_MEM_RANGE_PARAMS *pParams);
|
||||
|
||||
static inline NV_STATUS subdeviceCtrlCmdInternalKMIGmgrPromoteGpuInstanceMemRange_DISPATCH(struct Subdevice *pSubdevice, NV2080_CTRL_INTERNAL_KMIGMGR_PROMOTE_GPU_INSTANCE_MEM_RANGE_PARAMS *pParams) {
|
||||
return pSubdevice->__subdeviceCtrlCmdInternalKMIGmgrPromoteGpuInstanceMemRange__(pSubdevice, pParams);
|
||||
}
|
||||
|
||||
NV_STATUS subdeviceCtrlCmdOsUnixGc6BlockerRefCnt_IMPL(struct Subdevice *pSubdevice, NV2080_CTRL_OS_UNIX_GC6_BLOCKER_REFCNT_PARAMS *pParams);
|
||||
|
||||
static inline NV_STATUS subdeviceCtrlCmdOsUnixGc6BlockerRefCnt_DISPATCH(struct Subdevice *pSubdevice, NV2080_CTRL_OS_UNIX_GC6_BLOCKER_REFCNT_PARAMS *pParams) {
|
||||
|
||||
Reference in New Issue
Block a user