Files
linux-nvgpu/userspace/units/gr/nvgpu-gr.c
Alex Waterman 59eb714c48 unit: Disable some unit tests for device work
Fix what unit tests can be easily fixed, but disable some others. It's
not clear why the MM related tests started failing - there's really zero
reason for this. The list of disable tests are primarily engine related
but there are some others that get inflenced by the device and engine
structure.

  test_poweroff.init_poweroff=2
  test_is_stall_and_eng_intr_pending.intr_is_stall_and_eng_intr_pending=2
  test_isr_nonstall.isr_nonstall=2
  test_isr_stall.isr_stall=2
  test_engine_enum_from_type.enum_from_type=2
  test_engine_find_busy_doing_ctxsw.find_busy_doing_ctxsw=2
  test_engine_get_active_eng_info.get_active_eng_info=2
  test_engine_get_fast_ce_runlist_id.get_fast_ce_runlist_id=2
  test_engine_get_gr_runlist_id.get_gr_runlist_id=2
  test_engine_get_mask_on_id.get_mask_on_id=2
  test_engine_get_runlist_busy_engines.get_runlist_busy_engines=2
  test_engine_ids.ids=2
  test_engine_init_info.init_info=2
  test_engine_interrupt_mask.interrupt_mask=2
  test_engine_is_valid_runlist_id.is_valid_runlist_id=2
  test_engine_mmu_fault_id.mmu_fault_id=2
  test_engine_mmu_fault_id_veid.mmu_fault_id_veid=2
  test_engine_setup_sw.setup_sw=2
  test_engine_status.status=2
  test_fifo_init_support.init_support=2
  test_fifo_remove_support.remove_support=2
  test_gp10b_engine_init_ce_info.engine_init_ce_info=2
  test_nvgpu_mem_iommu_translate.mem_iommu_translate=2
  test_nvgpu_mem_phys_ops.nvgpu_mem_phys_ops=2

And delete unit tests for functions that no longer exist:

  test_device_info_parse_enum.top_device_info_parse_enum
  test_get_device_info.top_get_device_info
  test_get_num_engine_type_entries.top_get_num_engine_type_entries
  test_is_engine_ce.top_is_engine_ce
  test_is_engine_gr.top_is_engine_gr

JIRA NVGPU-5421

Change-Id: I343c0b1ea44c472b22356c896672153fc889ffc0
Signed-off-by: Alex Waterman <alexw@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2355300
Reviewed-by: automaticguardword <automaticguardword@nvidia.com>
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: Konsta Holtta <kholtta@nvidia.com>
Reviewed-by: Seshendra Gadagottu <sgadagottu@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
2020-12-15 14:13:28 -06:00

203 lines
4.5 KiB
C

/*
* Copyright (c) 2019-2020, 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.
*/
#include <stdlib.h>
#include <unit/unit.h>
#include <unit/io.h>
#include <nvgpu/posix/io.h>
#include <nvgpu/gk20a.h>
#include <nvgpu/hal_init.h>
#include <nvgpu/device.h>
#include <nvgpu/gr/gr.h>
#include <nvgpu/gr/gr_falcon.h>
#include "common/gr/gr_falcon_priv.h"
#include "hal/init/hal_gv11b.h"
#include "nvgpu-gr.h"
#include "nvgpu-gr-gv11b.h"
int test_gr_init_setup(struct unit_module *m, struct gk20a *g, void *args)
{
int err;
err = test_gr_setup_gv11b_reg_space(m, g);
if (err != 0) {
goto fail;
}
nvgpu_device_init(g);
/*
* Allocate gr unit
*/
err = nvgpu_gr_alloc(g);
if (err != 0) {
unit_err(m, "Gr allocation failed\n");
return -ENOMEM;
}
return UNIT_SUCCESS;
fail:
return UNIT_FAIL;
}
static int test_gr_falcon_load_ctxsw_ucode(struct gk20a *g,
struct nvgpu_gr_falcon *falcon)
{
int err = 0;
err = nvgpu_gr_falcon_init_ctxsw_ucode(g, falcon);
if (err == 0) {
falcon->skip_ucode_init = true;
}
return err;
}
int test_gr_init_prepare(struct unit_module *m, struct gk20a *g, void *args)
{
int err;
err = g->ops.ecc.ecc_init_support(g);
if (err != 0) {
unit_return_fail(m, "ecc init failed\n");
}
err = nvgpu_gr_prepare_sw(g);
if (err != 0) {
unit_return_fail(m, "nvgpu_gr_prepare_sw returned fail\n");
}
err = nvgpu_gr_enable_hw(g);
if (err != 0) {
unit_return_fail(m, "nvgpu_gr_enable_hw returned fail\n");
}
return UNIT_SUCCESS;
}
int test_gr_init_support(struct unit_module *m, struct gk20a *g, void *args)
{
int err;
nvgpu_gr_init(g);
g->ops.ecc.ecc_init_support(g);
g->ops.ltc.init_ltc_support(g);
g->ops.mm.init_mm_support(g);
/* over-ride the falcon load_ctxsw_ucode */
g->ops.gr.falcon.load_ctxsw_ucode = test_gr_falcon_load_ctxsw_ucode;
/* init gpu characteristics */
g->ops.chip_init_gpu_characteristics(g);
err = nvgpu_gr_init_support(g);
if (err != 0) {
unit_return_fail(m, "nvgpu_gr_init_support returned fail\n");
}
g->ops.ecc.ecc_finalize_support(g);
return UNIT_SUCCESS;
}
int test_gr_suspend(struct unit_module *m, struct gk20a *g, void *args)
{
if (nvgpu_gr_suspend(g) != 0) {
unit_return_fail(m, "nvgpu_gr_suspend returned fail\n");
}
return UNIT_SUCCESS;
}
int test_gr_init_setup_ready(struct unit_module *m,
struct gk20a *g, void *args)
{
int err = 0;
/* Allocate and Initialize GR */
err = test_gr_init_setup(m, g, args);
if (err != 0) {
unit_return_fail(m, "gr init setup failed\n");
}
err = test_gr_init_prepare(m, g, args);
if (err != 0) {
unit_return_fail(m, "gr init prepare failed\n");
}
err = test_gr_init_support(m, g, args);
if (err != 0) {
unit_return_fail(m, "gr init support failed\n");
}
nvgpu_ref_init(&g->refcount);
nvgpu_gr_sw_ready(g, true);
return UNIT_SUCCESS;
}
int test_gr_remove_support(struct unit_module *m, struct gk20a *g, void *args)
{
if (g->ops.ecc.ecc_remove_support != NULL) {
g->ops.ecc.ecc_remove_support(g);
}
nvgpu_gr_remove_support(g);
return UNIT_SUCCESS;
}
int test_gr_remove_setup(struct unit_module *m,
struct gk20a *g, void *args)
{
test_gr_cleanup_gv11b_reg_space(m, g);
nvgpu_gr_free(g);
return UNIT_SUCCESS;
}
int test_gr_init_setup_cleanup(struct unit_module *m,
struct gk20a *g, void *args)
{
int err = 0;
/* Cleanup GR */
err = test_gr_remove_support(m, g, args);
if (err != 0) {
unit_return_fail(m, "gr remove support failed\n");
}
err = test_gr_remove_setup(m, g, args);
if (err != 0) {
unit_return_fail(m, "gr remove setup failed\n");
}
return UNIT_SUCCESS;
}