mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 01:50:07 +03:00
Add doxygen documentation for private GR structures defined in: gr/ctx_priv.h gr/global_ctx_priv.h gr/obj_ctx_priv.h gr/subctx_priv.h Compile out struct zcull_ctx_desc with flag CONFIG_NVGPU_GRAPHICS. Compile out struct pm_ctx_desc with flag CONFIG_NVGPU_DEBUGGER. Compile out field golden_img_loaded with flag CONFIG_NVGPU_NON_FUSA since it is only used for VSERVER. Jira NVGPU-4028 Change-Id: Ic63e751ee28c6b645cc13993b16f701a9dbcf3e0 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2201372 GVS: Gerrit_Virtual_Submit Reviewed-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com> Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
/*
|
|
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef NVGPU_GR_GLOBAL_CTX_PRIV_H
|
|
#define NVGPU_GR_GLOBAL_CTX_PRIV_H
|
|
|
|
/**
|
|
* Global context buffer descriptor structure.
|
|
*
|
|
* This structure stores properties applicable to each global
|
|
* context buffer.
|
|
*/
|
|
struct nvgpu_gr_global_ctx_buffer_desc {
|
|
/**
|
|
* Memory to hold global context buffer.
|
|
*/
|
|
struct nvgpu_mem mem;
|
|
|
|
/**
|
|
* Size of global context buffer.
|
|
*/
|
|
size_t size;
|
|
|
|
/**
|
|
* Function pointer to free global context buffer.
|
|
*/
|
|
global_ctx_mem_destroy_fn destroy;
|
|
};
|
|
|
|
/**
|
|
* Local Golden context image descriptor structure.
|
|
*
|
|
* This structure stores details of a local Golden context image.
|
|
* Pointer to this struct is maintained in
|
|
* #nvgpu_gr_obj_ctx_golden_image structure.
|
|
*/
|
|
struct nvgpu_gr_global_ctx_local_golden_image {
|
|
/**
|
|
* Pointer to local Golden context image memory.
|
|
*/
|
|
u32 *context;
|
|
|
|
/**
|
|
* Size of local Golden context image.
|
|
*/
|
|
size_t size;
|
|
};
|
|
|
|
#endif /* NVGPU_GR_GLOBAL_CTX_PRIV_H */
|