mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
This increases the line and branch coverage for nvgpu.common.ltc unit test. Add testing for nvgpu.common.hal.ltc for gv11b. Also, add Targets tag for SWUTS/traceability. JIRA NVGPU-2219 Change-Id: Ic0e3772b6348ba7ce43fd869567467bc13b8943c Signed-off-by: Philip Elcan <pelcan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2248093 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
81 lines
2.3 KiB
C
81 lines
2.3 KiB
C
/*
|
|
* GV11B LTC
|
|
*
|
|
* Copyright (c) 2016-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 <nvgpu/io.h>
|
|
#include <nvgpu/gk20a.h>
|
|
#include <nvgpu/nvgpu_err.h>
|
|
#include <nvgpu/static_analysis.h>
|
|
#include <nvgpu/mc.h>
|
|
|
|
#include "ltc_gv11b.h"
|
|
|
|
#include <nvgpu/hw/gv11b/hw_ltc_gv11b.h>
|
|
|
|
#include <nvgpu/utils.h>
|
|
|
|
/*
|
|
* Sets the ZBC stencil for the passed index.
|
|
*/
|
|
|
|
void gv11b_ltc_init_fs_state(struct gk20a *g)
|
|
{
|
|
u32 reg;
|
|
u32 line_size = 512U;
|
|
|
|
nvgpu_log_info(g, "initialize gv11b l2");
|
|
|
|
g->ltc->max_ltc_count = g->ops.top.get_num_ltcs(g);
|
|
g->ltc->ltc_count = g->ops.priv_ring.enum_ltc(g);
|
|
nvgpu_log_info(g, "%u ltcs out of %u", g->ltc->ltc_count,
|
|
g->ltc->max_ltc_count);
|
|
|
|
reg = nvgpu_readl(g, ltc_ltcs_ltss_cbc_param_r());
|
|
g->ltc->slices_per_ltc = ltc_ltcs_ltss_cbc_param_slices_per_ltc_v(reg);;
|
|
g->ltc->cacheline_size =
|
|
line_size << ltc_ltcs_ltss_cbc_param_cache_line_size_v(reg);
|
|
}
|
|
|
|
int gv11b_lts_ecc_init(struct gk20a *g)
|
|
{
|
|
int err = 0;
|
|
|
|
err = NVGPU_ECC_COUNTER_INIT_PER_LTS(ecc_sec_count);
|
|
if (err != 0) {
|
|
goto done;
|
|
}
|
|
|
|
err = NVGPU_ECC_COUNTER_INIT_PER_LTS(ecc_ded_count);
|
|
if (err != 0) {
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
if (err != 0) {
|
|
nvgpu_err(g, "ecc counter allocate failed, err=%d", err);
|
|
nvgpu_ecc_free(g);
|
|
}
|
|
|
|
return err;
|
|
}
|