1 /* SPDX-License-Identifier: MIT */ 2 3 /* Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved. */ 4 5 #ifndef __NVRM_NVJPG_H__ 6 #define __NVRM_NVJPG_H__ 7 #include <nvrm/nvtypes.h> 8 9 /* Excerpt of RM headers from https://github.com/NVIDIA/open-gpu-kernel-modules/tree/535.113.01 */ 10 11 typedef struct 12 { 13 NvU32 size; 14 NvU32 prohibitMultipleInstances; // Prohibit multiple allocations of NVJPG? 15 NvU32 engineInstance; 16 } NV_NVJPG_ALLOCATION_PARAMETERS; 17 #endif 18