515.43.04

This commit is contained in:
Andy Ritger
2022-05-09 13:18:59 -07:00
commit 1739a20efc
2519 changed files with 1060036 additions and 0 deletions

View File

@@ -0,0 +1,295 @@
/*
* SPDX-FileCopyrightText: Copyright (c) 2019-2022 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.
*/
#pragma once
#include <nvtypes.h>
//
// This file was generated with FINN, an NVIDIA coding tool.
// Source file: ctrl/ctrlc637.finn
//
#include "ctrl/ctrlxxxx.h"
/* AMPERE_SMC_PARTITION_REF commands and parameters */
#define NVC637_CTRL_CMD(cat,idx) NVXXXX_CTRL_CMD(0xC637, NVC637_CTRL_##cat, idx)
/* Command categories (6bits) */
#define NVC637_CTRL_RESERVED (0x00)
#define NVC637_CTRL_EXEC_PARTITIONS (0x01)
/*!
* NVC637_CTRL_CMD_NULL
*
* This command does nothing.
* This command does not take any parameters.
*
* Possible status values returned are:
* NV_OK
*/
#define NVC637_CTRL_CMD_NULL (0xc6370000) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_RESERVED_INTERFACE_ID << 8) | 0x0" */
/*!
* NVC637_CTRL_EXEC_PARTITIONS_INFO
*
* This structure specifies resources in an execution partition
*
* GpcCount[IN/OUT]
* - Number of GPCs in this partition
*
* VeidCount[OUT]
* - Number of VEIDs available in this partition.
*
* ceCount[IN/OUT]
* - Copy Engines in this partition
*
* nvEncCount[IN/OUT]
* - Encoder Engines in this partition
*
* nvDecCount[IN/OUT]
* - Decoder Engines in this partition
*
* nvJpgCount[IN/OUT]
* - Jpg Engines in this partition
*
* nvOfaCount[IN/OUT]
* - Ofa engines in this partition
*
* sharedEngFlags[IN/OUT]
* - Flags determining whether above engines are shared with other execution partitions
*
* veidStartOffset[OUT]
* - VEID start offset within GPU partition
*/
typedef struct NVC637_CTRL_EXEC_PARTITIONS_INFO {
NvU32 gpcCount;
NvU32 veidCount;
NvU32 ceCount;
NvU32 nvEncCount;
NvU32 nvDecCount;
NvU32 nvJpgCount;
NvU32 ofaCount;
NvU32 sharedEngFlag;
NvU32 veidStartOffset;
} NVC637_CTRL_EXEC_PARTITIONS_INFO;
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG 31:0
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG_NONE 0x0
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG_CE NVBIT(0)
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG_NVDEC NVBIT(1)
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG_NVENC NVBIT(2)
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG_OFA NVBIT(3)
#define NVC637_CTRL_EXEC_PARTITIONS_SHARED_FLAG_NVJPG NVBIT(4)
#define NVC637_CTRL_MAX_EXEC_PARTITIONS 8
#define NVC637_CTRL_EXEC_PARTITIONS_ID_INVALID 0xFFFFFFFF
/*!
* NVC637_CTRL_EXEC_PARTITIONS_CREATE_PARAMS
*
* This command will create requested execution partitions under the subscribed
* memory partition. The memory partition is expected to be configured before
* execution partition creation.
*
* bQuery[IN]
* - If NV_TRUE, execution partitions will not be created, but return
* status of NV_OK will indicate that the request is valid and can
* currently be fulfilled
* flag [IN]
* REQUEST_WITH_PART_ID
* - If set, RM will try to assign execution partition id requested by clients.
* This flag is only supported on vGPU enabled RM build and will be removed
* when vgpu plugin implements virtualized execution partition ID support.
* (bug 2938187)
*
* execPartCount[IN]
* - Number of execution partitions requested
*
* execPartInfo[IN]
* - Requested execution partition resources for each requested partition
*
* execPartId[OUT]
* - ID of each requested execution partition
*
* Possible status values returned are:
* NV_OK
* NV_ERR_NOT_SUPPORTED
*/
#define NVC637_CTRL_DMA_EXEC_PARTITIONS_CREATE_REQUEST_WITH_PART_ID 0:0
#define NVC637_CTRL_DMA_EXEC_PARTITIONS_CREATE_REQUEST_WITH_PART_ID_FALSE (0x00000000)
#define NVC637_CTRL_DMA_EXEC_PARTITIONS_CREATE_REQUEST_WITH_PART_ID_TRUE (0x00000001)
#define NVC637_CTRL_CMD_EXEC_PARTITIONS_CREATE (0xc6370101) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_EXEC_PARTITIONS_INTERFACE_ID << 8) | NVC637_CTRL_EXEC_PARTITIONS_CREATE_PARAMS_MESSAGE_ID" */
/*!
* NVC637_CTRL_EXEC_PARTITIONS_DELETE_PARAMS
*
* This command will delete requested execution partitions.
*
* execPartCount[IN]
* - Number of execution partitions to delete.
*
* execPartId[IN]
* - Execution partition IDs to delete
*
* Possible status values returned are:
* NV_OK
* NV_ERR_NOT_SUPPORTED
* NV_ERR_OBJECT_NOT_FOUND
*/
#define NVC637_CTRL_EXEC_PARTITIONS_CREATE_PARAMS_MESSAGE_ID (0x1U)
typedef struct NVC637_CTRL_EXEC_PARTITIONS_CREATE_PARAMS {
NvBool bQuery;
NvU32 flags;
NvU32 execPartCount;
// C form: NVC637_CTRL_EXEC_PARTITIONS_INFO execPartInfo[NVC637_CTRL_MAX_EXEC_PARTITIONS];
NVC637_CTRL_EXEC_PARTITIONS_INFO execPartInfo[NVC637_CTRL_MAX_EXEC_PARTITIONS];
// C form: NvU32 execPartId[NVC637_CTRL_MAX_EXECUTION_PARTITIONS];
NvU32 execPartId[NVC637_CTRL_MAX_EXEC_PARTITIONS];
} NVC637_CTRL_EXEC_PARTITIONS_CREATE_PARAMS;
#define NVC637_CTRL_EXEC_PARTITIONS_DELETE_PARAMS_MESSAGE_ID (0x2U)
typedef struct NVC637_CTRL_EXEC_PARTITIONS_DELETE_PARAMS {
NvU32 execPartCount;
NvU32 execPartId[NVC637_CTRL_MAX_EXEC_PARTITIONS];
} NVC637_CTRL_EXEC_PARTITIONS_DELETE_PARAMS;
#define NVC637_CTRL_CMD_EXEC_PARTITIONS_DELETE (0xc6370102) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_EXEC_PARTITIONS_INTERFACE_ID << 8) | NVC637_CTRL_EXEC_PARTITIONS_DELETE_PARAMS_MESSAGE_ID" */
/*!
* NVC637_CTRL_EXEC_PARTITIONS_GET_PARAMS
*
* This command will return information about execution partitions which
* currently exist within the subscribed memory partition.
*
* execPartCount[OUT]
* - Number of existing execution partitions
*
* execPartId[OUT]
* - ID of existing execution partitions
*
* execPartInfo[OUT]
* - Resources within each existing execution partition
*
* Possible status values returned are:
* NV_OK
* NV_ERR_NOT_SUPPORTED
*/
#define NVC637_CTRL_EXEC_PARTITIONS_GET_PARAMS_MESSAGE_ID (0x3U)
typedef struct NVC637_CTRL_EXEC_PARTITIONS_GET_PARAMS {
NvU32 execPartCount;
// C form: NvU32 execPartId[NVC637_CTRL_MAX_EXECUTION_PARTITIONS];
NvU32 execPartId[NVC637_CTRL_MAX_EXEC_PARTITIONS];
// C form: NVC637_CTRL_EXEC_PARTITIONS_INFO execPartInfo[NVC637_CTRL_MAX_EXEC_PARTITIONS];
NVC637_CTRL_EXEC_PARTITIONS_INFO execPartInfo[NVC637_CTRL_MAX_EXEC_PARTITIONS];
} NVC637_CTRL_EXEC_PARTITIONS_GET_PARAMS;
#define NVC637_CTRL_CMD_EXEC_PARTITIONS_GET (0xc6370103) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_EXEC_PARTITIONS_INTERFACE_ID << 8) | NVC637_CTRL_EXEC_PARTITIONS_GET_PARAMS_MESSAGE_ID" */
/*!
* NVC637_CTRL_EXEC_PARTITIONS_GET_ACTIVE_IDS
*
* This command will return IDs of all active execution partitions in a memory
* partition
*
* execPartCount[OUT]
* - Number of existing execution partitions
*
* execPartId[OUT]
* - ID of existing execution partitions
*
* execPartUuid[OUT]
* - ASCII UUID string of existing execution partitions
*
* Possible status values returned are:
* NV_OK
* NV_ERR_NOT_SUPPORTED
*/
/* 'M' 'I' 'G' '-'(x5), '\0x0', extra = 9 */
#define NVC637_UUID_LEN 16
#define NVC637_UUID_STR_LEN (0x29) /* finn: Evaluated from "((NVC637_UUID_LEN << 1) + 9)" */
typedef struct NVC637_EXEC_PARTITION_UUID {
// C form: char str[NVC638_UUID_STR_LEN];
char str[NVC637_UUID_STR_LEN];
} NVC637_EXEC_PARTITION_UUID;
#define NVC637_CTRL_EXEC_PARTITIONS_GET_ACTIVE_IDS_PARAMS_MESSAGE_ID (0x4U)
typedef struct NVC637_CTRL_EXEC_PARTITIONS_GET_ACTIVE_IDS_PARAMS {
NvU32 execPartCount;
// C form: NvU32 execPartId[NVC637_CTRL_MAX_EXECUTION_PARTITIONS];
NvU32 execPartId[NVC637_CTRL_MAX_EXEC_PARTITIONS];
// C form: NVC637_EXEC_PARTITION_UUID execPartUuid[NVC637_CTRL_MAX_EXEC_PARTITIONS];
NVC637_EXEC_PARTITION_UUID execPartUuid[NVC637_CTRL_MAX_EXEC_PARTITIONS];
} NVC637_CTRL_EXEC_PARTITIONS_GET_ACTIVE_IDS_PARAMS;
#define NVC637_CTRL_EXEC_PARTITIONS_GET_ACTIVE_IDS (0xc6370104) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_EXEC_PARTITIONS_INTERFACE_ID << 8) | NVC637_CTRL_EXEC_PARTITIONS_GET_ACTIVE_IDS_PARAMS_MESSAGE_ID" */
/*
* NVC637_CTRL_CMD_EXEC_PARTITIONS_EXPORT
*
* Export the resource and placement information about an exec partition such
* that a similar partition can be recreated from scratch in the same position.
*/
#define NVC637_CTRL_CMD_EXEC_PARTITIONS_EXPORT (0xc6370105) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_EXEC_PARTITIONS_INTERFACE_ID << 8) | 0x5" */
/*
* NVC637_CTRL_CMD_EXEC_PARTITIONS_IMPORT
*
* Create an exec partition resembling the exported partition info. The imported
* partition should behave identically with respect to fragmentation.
*/
#define NVC637_CTRL_CMD_EXEC_PARTITIONS_IMPORT (0xc6370106) /* finn: Evaluated from "(FINN_AMPERE_SMC_PARTITION_REF_EXEC_PARTITIONS_INTERFACE_ID << 8) | 0x6" */
#define NVC637_CTRL_EXEC_PARTITIONS_EXPORT_MAX_ENGINES_MASK_SIZE 4
typedef struct NVC637_CTRL_EXEC_PARTITIONS_EXPORTED_INFO {
NV_DECLARE_ALIGNED(NvU64 enginesMask[NVC637_CTRL_EXEC_PARTITIONS_EXPORT_MAX_ENGINES_MASK_SIZE], 8);
NvU8 uuid[NVC637_UUID_LEN];
NvU32 sharedEngFlags;
NvU32 gpcMask;
NvU32 veidOffset;
NvU32 veidCount;
} NVC637_CTRL_EXEC_PARTITIONS_EXPORTED_INFO;
typedef struct NVC637_CTRL_EXEC_PARTITIONS_IMPORT_EXPORT_PARAMS {
NvU32 id;
NV_DECLARE_ALIGNED(NVC637_CTRL_EXEC_PARTITIONS_EXPORTED_INFO info, 8);
} NVC637_CTRL_EXEC_PARTITIONS_IMPORT_EXPORT_PARAMS;
// _ctrlc637_h_