mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2026-03-02 19:59:51 +00:00
545.23.06
This commit is contained in:
@@ -2440,6 +2440,91 @@ static void rpc_iGrp_ipVersions_Install_v23_05(IGRP_IP_VERSIONS_TABLE_INFO *pInf
|
||||
#endif //
|
||||
}
|
||||
|
||||
// No enabled chips use this variant provider
|
||||
static void rpc_iGrp_ipVersions_Install_v24_00(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
{
|
||||
#if 0
|
||||
|
||||
POBJGPU pGpu = pInfo->pGpu;
|
||||
OBJRPC *pRpc = (OBJRPC *) pInfo->pDynamic;
|
||||
RPC_HAL_IFACES *pRpcHal = &pRpc->_hal;
|
||||
|
||||
// avoid possible unused warnings
|
||||
pGpu += 0;
|
||||
pRpcHal += 0;
|
||||
|
||||
|
||||
#endif //
|
||||
}
|
||||
|
||||
// No enabled chips use this variant provider
|
||||
static void rpc_iGrp_ipVersions_Install_v24_01(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
{
|
||||
#if 0
|
||||
|
||||
POBJGPU pGpu = pInfo->pGpu;
|
||||
OBJRPC *pRpc = (OBJRPC *) pInfo->pDynamic;
|
||||
RPC_HAL_IFACES *pRpcHal = &pRpc->_hal;
|
||||
|
||||
// avoid possible unused warnings
|
||||
pGpu += 0;
|
||||
pRpcHal += 0;
|
||||
|
||||
|
||||
#endif //
|
||||
}
|
||||
|
||||
// No enabled chips use this variant provider
|
||||
static void rpc_iGrp_ipVersions_Install_v24_05(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
{
|
||||
#if 0
|
||||
|
||||
POBJGPU pGpu = pInfo->pGpu;
|
||||
OBJRPC *pRpc = (OBJRPC *) pInfo->pDynamic;
|
||||
RPC_HAL_IFACES *pRpcHal = &pRpc->_hal;
|
||||
|
||||
// avoid possible unused warnings
|
||||
pGpu += 0;
|
||||
pRpcHal += 0;
|
||||
|
||||
|
||||
#endif //
|
||||
}
|
||||
|
||||
// No enabled chips use this variant provider
|
||||
static void rpc_iGrp_ipVersions_Install_v24_06(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
{
|
||||
#if 0
|
||||
|
||||
POBJGPU pGpu = pInfo->pGpu;
|
||||
OBJRPC *pRpc = (OBJRPC *) pInfo->pDynamic;
|
||||
RPC_HAL_IFACES *pRpcHal = &pRpc->_hal;
|
||||
|
||||
// avoid possible unused warnings
|
||||
pGpu += 0;
|
||||
pRpcHal += 0;
|
||||
|
||||
|
||||
#endif //
|
||||
}
|
||||
|
||||
// No enabled chips use this variant provider
|
||||
static void rpc_iGrp_ipVersions_Install_v24_0A(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
{
|
||||
#if 0
|
||||
|
||||
POBJGPU pGpu = pInfo->pGpu;
|
||||
OBJRPC *pRpc = (OBJRPC *) pInfo->pDynamic;
|
||||
RPC_HAL_IFACES *pRpcHal = &pRpc->_hal;
|
||||
|
||||
// avoid possible unused warnings
|
||||
pGpu += 0;
|
||||
pRpcHal += 0;
|
||||
|
||||
|
||||
#endif //
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -2967,6 +3052,21 @@ static NV_STATUS rpc_iGrp_ipVersions_getInfo(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
static const IGRP_IP_VERSION_RANGE RPC_IGRP_IP_VERSIONS_RANGES_v23_05[] = {
|
||||
{ 0x23050000, 0xFFFFFFFF, }, //
|
||||
};
|
||||
static const IGRP_IP_VERSION_RANGE RPC_IGRP_IP_VERSIONS_RANGES_v24_00[] = {
|
||||
{ 0x24000000, 0xFFFFFFFF, }, //
|
||||
};
|
||||
static const IGRP_IP_VERSION_RANGE RPC_IGRP_IP_VERSIONS_RANGES_v24_01[] = {
|
||||
{ 0x24010000, 0xFFFFFFFF, }, //
|
||||
};
|
||||
static const IGRP_IP_VERSION_RANGE RPC_IGRP_IP_VERSIONS_RANGES_v24_05[] = {
|
||||
{ 0x24050000, 0xFFFFFFFF, }, //
|
||||
};
|
||||
static const IGRP_IP_VERSION_RANGE RPC_IGRP_IP_VERSIONS_RANGES_v24_06[] = {
|
||||
{ 0x24060000, 0xFFFFFFFF, }, //
|
||||
};
|
||||
static const IGRP_IP_VERSION_RANGE RPC_IGRP_IP_VERSIONS_RANGES_v24_0A[] = {
|
||||
{ 0x240A0000, 0xFFFFFFFF, }, //
|
||||
};
|
||||
|
||||
#define _RPC_HAL_IGRP_ENTRY_INIT(v) \
|
||||
{ RPC_IGRP_IP_VERSIONS_RANGES_##v, NV_ARRAY_ELEMENTS(RPC_IGRP_IP_VERSIONS_RANGES_##v), rpc_iGrp_ipVersions_Install_##v, }
|
||||
@@ -3108,6 +3208,11 @@ static NV_STATUS rpc_iGrp_ipVersions_getInfo(IGRP_IP_VERSIONS_TABLE_INFO *pInfo)
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v23_03), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v23_04), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v23_05), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v24_00), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v24_01), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v24_05), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v24_06), //
|
||||
_RPC_HAL_IGRP_ENTRY_INIT(v24_0A), //
|
||||
};
|
||||
|
||||
#undef _RPC_HAL_IGRP_ENTRY_INIT
|
||||
|
||||
Reference in New Issue
Block a user