/* * Copyright (c) 2015-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 "hal/fifo/ramin_gv11b.h" void gv11b_ramin_set_gr_ptr(struct gk20a *g, struct nvgpu_mem *inst_block, u64 gpu_va) { u32 addr_lo = u64_lo32(gpu_va) >> ram_in_base_shift_v(); u32 addr_hi = u64_hi32(gpu_va); /* point this address to engine_wfi_ptr */ nvgpu_mem_wr32(g, inst_block, ram_in_engine_wfi_target_w(), ram_in_engine_cs_wfi_v() | ram_in_engine_wfi_mode_f(ram_in_engine_wfi_mode_virtual_v()) | ram_in_engine_wfi_ptr_lo_f(addr_lo)); nvgpu_mem_wr32(g, inst_block, ram_in_engine_wfi_ptr_hi_w(), ram_in_engine_wfi_ptr_hi_f(addr_hi)); } static void gv11b_subctx_commit_valid_mask(struct gk20a *g, struct nvgpu_mem *inst_block) { u32 id; /* Make all subctx pdbs valid */ for (id = 0U; id < ram_in_sc_pdb_valid__size_1_v(); id += 32U) { nvgpu_mem_wr32(g, inst_block, ram_in_sc_pdb_valid_w(id), U32_MAX); } } static void gv11b_subctx_commit_pdb(struct gk20a *g, struct nvgpu_mem *inst_block, struct nvgpu_mem *pdb_mem, bool replayable) { u32 lo, hi; u32 subctx_id = 0; u32 format_word; u32 pdb_addr_lo, pdb_addr_hi; u64 pdb_addr; u32 max_subctx_count = ram_in_sc_page_dir_base_target__size_1_v(); u32 aperture = nvgpu_aperture_mask(g, pdb_mem, ram_in_sc_page_dir_base_target_sys_mem_ncoh_v(), ram_in_sc_page_dir_base_target_sys_mem_coh_v(), ram_in_sc_page_dir_base_target_vid_mem_v()); pdb_addr = nvgpu_mem_get_addr(g, pdb_mem); pdb_addr_lo = u64_lo32(pdb_addr >> ram_in_base_shift_v()); pdb_addr_hi = u64_hi32(pdb_addr); format_word = ram_in_sc_page_dir_base_target_f( aperture, 0) | ram_in_sc_page_dir_base_vol_f( ram_in_sc_page_dir_base_vol_true_v(), 0) | ram_in_sc_use_ver2_pt_format_f(1, 0) | ram_in_sc_big_page_size_f(1, 0) | ram_in_sc_page_dir_base_lo_0_f(pdb_addr_lo); if (replayable) { format_word |= ram_in_sc_page_dir_base_fault_replay_tex_f(1, 0) | ram_in_sc_page_dir_base_fault_replay_gcc_f(1, 0); } nvgpu_log(g, gpu_dbg_info, " pdb info lo %x hi %x", format_word, pdb_addr_hi); for (subctx_id = 0U; subctx_id < max_subctx_count; subctx_id++) { lo = ram_in_sc_page_dir_base_vol_w(subctx_id); hi = ram_in_sc_page_dir_base_hi_w(subctx_id); nvgpu_mem_wr32(g, inst_block, lo, format_word); nvgpu_mem_wr32(g, inst_block, hi, pdb_addr_hi); } } void gv11b_ramin_init_subctx_pdb(struct gk20a *g, struct nvgpu_mem *inst_block, struct nvgpu_mem *pdb_mem, bool replayable) { gv11b_subctx_commit_pdb(g, inst_block, pdb_mem, replayable); gv11b_subctx_commit_valid_mask(g, inst_block); } void gv11b_ramin_set_eng_method_buffer(struct gk20a *g, struct nvgpu_mem *inst_block, u64 gpu_va) { u32 addr_lo = u64_lo32(gpu_va); u32 addr_hi = u64_hi32(gpu_va); nvgpu_mem_wr32(g, inst_block, ram_in_eng_method_buffer_addr_lo_w(), addr_lo); nvgpu_mem_wr32(g, inst_block, ram_in_eng_method_buffer_addr_hi_w(), addr_hi); }