/* * 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. */ #include #include #include #include #include #include #include #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; } gv11b_init_hal(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 = 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.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"); } /* gr ecc init */ if (g->ops.gr.ecc.ecc_init_support != NULL) { err = g->ops.gr.ecc.ecc_init_support(g); if (err != 0) { unit_return_fail(m, "gr_ecc_init failed\n"); } } 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_remove_support(struct unit_module *m, struct gk20a *g, void *args) { 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; }