mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-25 11:04:51 +03:00
Add unit test to validate the class, veid and pbdma assignment of the channels. Bug 3677982 Change-Id: I35fda0a35fec2939209d0e4380b0628f65ea774e Signed-off-by: Sagar Kamble <skamble@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2772062 Reviewed-by: Scott Long <scottl@nvidia.com> Reviewed-by: Ankur Kishore <ankkishore@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
466 lines
18 KiB
C
466 lines
18 KiB
C
/*
|
|
* Copyright (c) 2019-2022, 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 UNIT_NVGPU_GR_SETUP_H
|
|
#define UNIT_NVGPU_GR_SETUP_H
|
|
|
|
#include <nvgpu/types.h>
|
|
|
|
struct gk20a;
|
|
struct unit_module;
|
|
|
|
/** @addtogroup SWUTS-gr-setup
|
|
* @{
|
|
*
|
|
* Software Unit Test Specification for common.gr.setup
|
|
*/
|
|
|
|
/**
|
|
* Test specification for: test_gr_setup_alloc_obj_ctx.
|
|
*
|
|
* Description: This test helps to verify common.gr object context creation.
|
|
*
|
|
* Test Type: Feature, Boundary Value
|
|
*
|
|
* Equivalence classes:
|
|
* Variable: class_num
|
|
* - Valid : {0 - U32_MAX}
|
|
* Range of "class_num" variable for nvgpu-rm is
|
|
* 0xC3C0U (VOLTA_COMPUTE_A), 0xC3B5U (VOLTA_DMA_COPY_A),
|
|
* 0xC36FU (VOLTA_CHANNEL_GPFIFO_A).
|
|
* class_num range check is done in common.class unit.
|
|
* Variable: flags
|
|
* - Valid : {0 - U32_MAX}
|
|
*
|
|
* Targets: nvgpu_gr_setup_alloc_obj_ctx,
|
|
* nvgpu_gr_obj_ctx_alloc,
|
|
* nvgpu_gr_ctx_get_ctx_mem,
|
|
* nvgpu_gr_ctx_set_tsgid,
|
|
* nvgpu_gr_ctx_get_tsgid,
|
|
* nvgpu_gr_ctx_mappings_get_global_ctx_va,
|
|
* gops_gr_setup.alloc_obj_ctx,
|
|
* nvgpu_gr_ctx_load_golden_ctx_image,
|
|
* gm20b_ctxsw_prog_set_patch_addr,
|
|
* gv11b_gr_init_commit_global_attrib_cb,
|
|
* gm20b_gr_init_commit_global_attrib_cb,
|
|
* gv11b_gr_init_commit_global_timeslice,
|
|
* gv11b_gr_init_restore_stats_counter_bundle_data,
|
|
* gv11b_gr_init_commit_cbes_reserve,
|
|
* gv11b_gr_init_fe_go_idle_timeout,
|
|
* gm20b_gr_init_override_context_reset,
|
|
* gm20b_gr_init_pipe_mode_override,
|
|
* gp10b_gr_init_commit_global_bundle_cb,
|
|
* gm20b_gr_falcon_set_current_ctx_invalid,
|
|
* gm20b_gr_falcon_get_fecs_current_ctx_data
|
|
*
|
|
* Input: #test_gr_init_setup_ready must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Use stub functions for hals that use timeout and requires register update
|
|
* within timeout loop.
|
|
* - g->ops.mm.cache.l2_flush.
|
|
* - g->ops.gr.init.fe_pwr_mode_force_on.
|
|
* - g->ops.gr.init.wait_idle.
|
|
* - g->ops.gr.falcon.ctrl_ctxsw.
|
|
* - Set default golden image size.
|
|
* - Allocate and bind channel and tsg.
|
|
* - Start BVEC testing for variable class_num.
|
|
* class_num is tested for range in common.class. In common.gr, stub out
|
|
* the common.class HALs to perform independent range testing. Before
|
|
* stubbing, save the valid initialization values for common.class HALs.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx with input class_num at boundary
|
|
* values - min boundary(0), max boundary(U32_MAX) and once with value
|
|
* in valid range. g->ops.gr.setup.alloc_obj_ctx value should return
|
|
* 0 as all class_num values are valid from common.gr perspective.
|
|
* End BVEC testing for variable class_num by restoring the stubbed
|
|
* common.class HALs.
|
|
* - Start BVEC testing for variable flags.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx with input variable flags at boundary
|
|
* values - min boundary(0), max boundary(U32_MAX) and once with value
|
|
* in valid range. g->ops.gr.setup.alloc_obj_ctx value should return
|
|
* 0 as all flags values are valid from common.gr perspective.
|
|
* End BVEC testing for variable flags.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx with valid class_num -
|
|
* VOLTA_DMA_COPY_A and VOLTA_COMPUTE_A.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_setup_alloc_obj_ctx(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_validate_subctx_gr_ctx_buffers.
|
|
*
|
|
* Description: This test helps to verify common.gr ctx buffers and subctx
|
|
* headers setup.
|
|
*
|
|
* Test Type: Feature
|
|
*
|
|
* Targets: nvgpu_gr_setup_alloc_obj_ctx,
|
|
* nvgpu_gr_obj_ctx_alloc,
|
|
* nvgpu_gr_ctx_alloc_or_get_mappings
|
|
* nvgpu_gr_ctx_get_mappings
|
|
* nvgpu_gr_ctx_get_ctx_mapping_flags
|
|
* nvgpu_gr_ctx_init_ctx_buffers_mapping_flags
|
|
* nvgpu_gr_ctx_free_mappings
|
|
* nvgpu_gr_ctx_mappings_create
|
|
* nvgpu_gr_ctx_mappings_free
|
|
* nvgpu_gr_ctx_mappings_map_gr_ctx_buffers
|
|
* nvgpu_gr_ctx_unmap_buffers
|
|
* nvgpu_gr_ctx_mappings_get_ctx_va
|
|
* nvgpu_gr_ctx_get_ctx_mem,
|
|
* nvgpu_gr_ctx_mappings_get_global_ctx_va,
|
|
* gops_gr_setup.alloc_obj_ctx,
|
|
*
|
|
* Input: #test_gr_init_setup_ready must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Allocate a TSG.
|
|
* - Allocate maximum supported subcontext channels.
|
|
* - Allocate shared VM.
|
|
* - Bind the channels to shared VM and TSG.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx for all channels.
|
|
* - Close one of the Async channels. This should not change the gr ctx buffers
|
|
* setup for other channels/subcontexts.
|
|
* - Verify that there is only one entry in gr ctx buffer mappings list.
|
|
* - Get the nvgpu_gr_ctx_mappings struct and subctx header for VEID0.
|
|
* - Verify that global ctx buffers mapped for VEID0.
|
|
* - For each of the ASYNC subcontext channels,
|
|
* - Compare the gr ctx buffer mappings as:
|
|
* - Verify that TSG and global ctx buffer mappings are identical.
|
|
* - Verify that subctx headers are identical.
|
|
* - Free the channels and verify mappings list in TSG is empty.
|
|
* - Free the TSG and address spaces.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_validate_subctx_gr_ctx_buffers(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_validate_multi_as_subctx_gr_ctx_buffers.
|
|
*
|
|
* Description: This test helps to verify common.gr ctx buffers setup when
|
|
* channels are created and closed for multiple address spaces.
|
|
*
|
|
* Test Type: Feature
|
|
*
|
|
* Targets: nvgpu_gr_setup_alloc_obj_ctx,
|
|
* nvgpu_gr_obj_ctx_alloc,
|
|
* nvgpu_gr_ctx_alloc_or_get_mappings
|
|
* nvgpu_gr_ctx_get_mappings
|
|
* nvgpu_gr_ctx_get_ctx_mapping_flags
|
|
* nvgpu_gr_ctx_init_ctx_buffers_mapping_flags
|
|
* nvgpu_gr_ctx_free_mappings
|
|
* nvgpu_gr_ctx_mappings_create
|
|
* nvgpu_gr_ctx_mappings_free
|
|
* nvgpu_gr_ctx_mappings_map_gr_ctx_buffers
|
|
* nvgpu_gr_ctx_unmap_buffers
|
|
* nvgpu_gr_ctx_mappings_get_ctx_va
|
|
* nvgpu_gr_ctx_get_ctx_mem,
|
|
* nvgpu_gr_ctx_mappings_get_global_ctx_va,
|
|
* gops_gr_setup.alloc_obj_ctx,
|
|
* nvgpu_tsg_subctx_bind_channel
|
|
* nvgpu_tsg_subctx_unbind_channel
|
|
* nvgpu_tsg_subctx_alloc_gr_subctx
|
|
* nvgpu_tsg_subctx_setup_subctx_header
|
|
* nvgpu_tsg_subctx_get_gr_subctx
|
|
* nvgpu_tsg_subctx_get_id
|
|
* nvgpu_tsg_subctx_alloc_or_get_mappings
|
|
*
|
|
* Input: #test_gr_init_setup_ready must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Allocate a TSG.
|
|
* - Allocate maximum supported subcontext channels.
|
|
* - Allocate VM per channel.
|
|
* - Bind the channels to respective VM and TSG.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx for all channels.
|
|
* - Close one of the Async channels. This should not change the gr ctx buffers
|
|
* setup for other channels/subcontexts.
|
|
* - Get the nvgpu_gr_ctx_mappings struct for VEID0.
|
|
* - Verify that there are more than one entry in gr ctx buffer mappings list.
|
|
* - Verify that global ctx buffers mapped for VEID0.
|
|
* - For each of the ASYNC subcontext channels,
|
|
* - Compare the gr ctx buffer mappings as:
|
|
* - Verify that TSG ctx and patch buffer phys addr programmed is same.
|
|
* - Verify that global ctx buffers are not mapped.
|
|
* - Verify that global ctx priv access map buffer phys addr programmed is same.
|
|
* - Get the physical address of TSG ctx, patch, priv_access_map buffers
|
|
* from VEID0 mappings.
|
|
* - Close VEID0 channel. This should not change the gr ctx buffers
|
|
* setup for other channels/subcontexts.
|
|
* - For each of the ASYNC subcontext channels,
|
|
* - Compare the gr ctx buffer mappings as:
|
|
* - Verify that TSG ctx and patch buffer phys addr programmed is same.
|
|
* - Verify that global ctx priv access map buffer phys addr programmed is same.
|
|
* - Free the channels and verify mappings list in TSG is empty.
|
|
* - Free the TSG and address spaces.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_validate_multi_as_subctx_gr_ctx_buffers(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_validate_subctx_inst_blocks.
|
|
*
|
|
* Description: This test helps to verify the instance block setup for various
|
|
* channels in the TSG w.r.t subctx programming.
|
|
*
|
|
* Test Type: Feature
|
|
*
|
|
* Targets: nvgpu_gr_setup_alloc_obj_ctx,
|
|
* nvgpu_gr_obj_ctx_alloc,
|
|
* nvgpu_gr_ctx_alloc_or_get_mappings
|
|
* nvgpu_gr_ctx_get_mappings
|
|
* nvgpu_gr_ctx_get_ctx_mapping_flags
|
|
* nvgpu_gr_ctx_init_ctx_buffers_mapping_flags
|
|
* nvgpu_gr_ctx_free_mappings
|
|
* nvgpu_gr_ctx_mappings_create
|
|
* nvgpu_gr_ctx_mappings_free
|
|
* nvgpu_gr_ctx_mappings_map_gr_ctx_buffers
|
|
* nvgpu_gr_ctx_mappings_map_ctx_preemption_buffers
|
|
* nvgpu_gr_ctx_unmap_buffers
|
|
* nvgpu_gr_ctx_mappings_get_ctx_va
|
|
* nvgpu_gr_ctx_get_ctx_mem,
|
|
* nvgpu_gr_ctx_mappings_get_global_ctx_va,
|
|
* gops_gr_setup.alloc_obj_ctx,
|
|
* nvgpu_tsg_subctx_bind_channel
|
|
* nvgpu_tsg_subctx_unbind_channel
|
|
* nvgpu_tsg_subctx_alloc_gr_subctx
|
|
* nvgpu_tsg_subctx_setup_subctx_header
|
|
* nvgpu_tsg_subctx_get_gr_subctx
|
|
* nvgpu_tsg_subctx_get_id
|
|
* nvgpu_tsg_subctx_alloc_or_get_mappings
|
|
*
|
|
* Input: #test_gr_init_setup_ready must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Allocate a TSG.
|
|
* - Allocate maximum supported subcontext channels.
|
|
* - Allocate VM per channel.
|
|
* - Bind the channels to respective VM and TSG.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx for all channels.
|
|
* - Call nvgpu_channel_setup_bind for all channels.
|
|
* - Close random 4 compute channels.
|
|
* - For each of the subcontext channels,
|
|
* - Compare the instance blocks as:
|
|
* - Verify that subctx pdb map matches the expected.
|
|
* - Verify that valid subctx map matches the expected .
|
|
* - Create a channel and reverify the instance blocks.
|
|
* - Free the channels.
|
|
* - Free the TSG and address spaces.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_validate_subctx_inst_blocks(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_validate_ch_class_veid_pbdma.
|
|
*
|
|
* Description: This test helps to verify the class/VEID/PBDMA of the
|
|
* allocated channels.
|
|
*
|
|
* Test Type: Feature
|
|
*
|
|
* Targets: nvgpu_gr_setup_alloc_obj_ctx,
|
|
* nvgpu_gr_obj_ctx_alloc,
|
|
* gops_gr_setup.alloc_obj_ctx,
|
|
* nvgpu_tsg_subctx_bind_channel
|
|
* nvgpu_tsg_subctx_unbind_channel
|
|
* nvgpu_tsg_subctx_alloc_gr_subctx
|
|
* nvgpu_tsg_subctx_setup_subctx_header
|
|
* nvgpu_tsg_subctx_get_gr_subctx
|
|
* nvgpu_tsg_subctx_get_id
|
|
* nvgpu_tsg_validate_class_veid_pbdma
|
|
*
|
|
* Input: #test_gr_init_setup_ready must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Allocate a TSG.
|
|
* - Allocate a VM.
|
|
* - Allocate GFX channel with subcontext id 1.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx for it. It should fail.
|
|
* - Close the GFX channel.
|
|
* - Allocate GFX channel with subcontext id 0.
|
|
* - Call g->ops.gr.setup.alloc_obj_ctx for it. It should pass.
|
|
* - Allocate Compute channel with subcontext id 1.
|
|
* - Verify that runqueue_sel is not equal to 0.
|
|
* - Allocate Compute channel with subcontext id 0.
|
|
* - Verify that runqueue_sel is equal to 0.
|
|
* - Free the channels.
|
|
* - Free the TSG and address spaces.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_validate_ch_class_veid_pbdma(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_setup_set_preemption_mode.
|
|
*
|
|
* Description: This test helps to verify set_preemption_mode.
|
|
*
|
|
* Test Type: Feature, Safety
|
|
*
|
|
* Targets: nvgpu_gr_setup_set_preemption_mode,
|
|
* nvgpu_gr_obj_ctx_set_ctxsw_preemption_mode,
|
|
* nvgpu_gr_ctx_check_valid_preemption_mode,
|
|
* nvgpu_gr_obj_ctx_update_ctxsw_preemption_mode,
|
|
* nvgpu_gr_ctx_get_compute_preemption_mode,
|
|
* nvgpu_gr_ctx_set_preemption_modes,
|
|
* nvgpu_gr_ctx_patch_write_begin,
|
|
* nvgpu_gr_ctx_patch_write_end,
|
|
* gp10b_gr_init_commit_global_cb_manager,
|
|
* nvgpu_gr_ctx_patch_write,
|
|
* gm20b_ctxsw_prog_get_patch_count,
|
|
* gm20b_ctxsw_prog_set_patch_count,
|
|
* gops_gr_init.get_default_preemption_modes,
|
|
* gp10b_gr_init_get_default_preemption_modes,
|
|
* gops_gr_setup.set_preemption_mode,
|
|
* gp10b_ctxsw_prog_set_compute_preemption_mode_cta,
|
|
* gops_gr_init.get_supported__preemption_modes,
|
|
* gp10b_gr_init_get_supported_preemption_modes
|
|
*
|
|
* Input: #test_gr_init_setup_ready and #test_gr_setup_alloc_obj_ctx
|
|
* must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Call g->ops.gr.setup.set_preemption_mode
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_setup_set_preemption_mode(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_setup_free_obj_ctx.
|
|
*
|
|
* Description: Helps to verify common.gr object context cleanup.
|
|
*
|
|
* Test Type: Feature
|
|
*
|
|
* Targets: nvgpu_gr_setup_free_subctx,
|
|
* nvgpu_gr_setup_free_gr_ctx,
|
|
* gops_gr_setup.free_gr_ctx,
|
|
* gops_gr_setup.free_subctx
|
|
*
|
|
* Input: #test_gr_init_setup_ready and #test_gr_setup_alloc_obj_ctx
|
|
* must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Call nvgpu_tsg_unbind_channel.
|
|
* - Call nvgpu_channel_close.
|
|
* - Call nvgpu_tsg_release.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_setup_free_obj_ctx(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_setup_preemption_mode_errors.
|
|
*
|
|
* Description: Helps to verify error paths in
|
|
* gops_gr_setup.set_preemption_mode call.
|
|
*
|
|
* Test Type: Error injection, Boundary value
|
|
*
|
|
* Equivalence classes:
|
|
* Variable : graphics_preempt_mode
|
|
* - Valid : {0}
|
|
* - Invalid : {1 - U32_MAX}
|
|
* Variable : compute_preempt_mode
|
|
* - Valid : {0,2}
|
|
* - Invalid : {3 - U32_MAX}
|
|
*
|
|
*
|
|
* Targets: nvgpu_gr_setup_set_preemption_mode,
|
|
* nvgpu_gr_obj_ctx_set_ctxsw_preemption_mode
|
|
*
|
|
* Input: #test_gr_init_setup_ready and #test_gr_setup_alloc_obj_ctx
|
|
* must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Verify various combinations of compute and graphics modes.
|
|
* - Verify the error path by failing #nvgpu_preempt_channel.
|
|
* - Verify the error path for NVGPU_INVALID_TSG_ID as ch->tsgid.
|
|
* - Verify the error path for invalid ch->obj_class.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_setup_preemption_mode_errors(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
|
|
/**
|
|
* Test specification for: test_gr_setup_alloc_obj_ctx_error_injections.
|
|
*
|
|
* Description: Helps to verify error paths in
|
|
* gops_gr_setup.alloc_obj_ctx call.
|
|
*
|
|
* Test Type: Error injection, Boundary values
|
|
*
|
|
* Targets: nvgpu_gr_setup_alloc_obj_ctx,
|
|
* nvgpu_gr_subctx_alloc, nvgpu_gr_obj_ctx_alloc,
|
|
* nvgpu_gr_obj_ctx_alloc_golden_ctx_image,
|
|
* nvgpu_gr_obj_ctx_get_golden_image_size,
|
|
* nvgpu_gr_obj_ctx_commit_global_ctx_buffers,
|
|
* nvgpu_gr_ctx_set_patch_ctx_data_count,
|
|
* nvgpu_gr_setup_free_subctx, nvgpu_gr_setup_free_gr_ctx,
|
|
* gm20b_ctxsw_prog_hw_get_fecs_header_size
|
|
*
|
|
* Input: #test_gr_init_setup_ready must have been executed successfully.
|
|
*
|
|
* Steps:
|
|
* - Negative Tests for Setup alloc failures
|
|
* - Test-1 using invalid tsg, classobj and classnum.
|
|
* - Test-2 error injection in subctx allocation call.
|
|
* - Test-3 fail nvgpu_gr_obj_ctx_alloc by setting zero image size.
|
|
* - Test-4 and Test-8 fail nvgpu_gr_obj_ctx_alloc_golden_ctx_image
|
|
* by failing ctrl_ctsw.
|
|
* - Test-5 Fail L2 flush for branch coverage.
|
|
* - Test-6 Fake setup_free call for NULL checking.
|
|
*
|
|
* - Positive Tests
|
|
* - Test-7 nvgpu_gr_setup_alloc_obj_ctx pass without TSG subcontexts.
|
|
*
|
|
* Output: Returns PASS if the steps above were executed successfully. FAIL
|
|
* otherwise.
|
|
*/
|
|
int test_gr_setup_alloc_obj_ctx_error_injections(struct unit_module *m,
|
|
struct gk20a *g, void *args);
|
|
#endif /* UNIT_NVGPU_GR_SETUP_H */
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|