mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
Change following ltc hal prototype from: int (*determine_L2_size_bytes)(struct gk20a *gk20a); to u64 (*determine_L2_size_bytes)(struct gk20a *gk20a); JIRA NVGPU-3422 Change-Id: I53cbd7f37cad3c6851e3c5b46af6cdc04013d690 Signed-off-by: Seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2119996 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
79 lines
2.3 KiB
C
79 lines
2.3 KiB
C
/*
|
|
* GP10B L2
|
|
*
|
|
* Copyright (c) 2014-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/ltc.h>
|
|
#include <nvgpu/log.h>
|
|
#include <nvgpu/io.h>
|
|
#include <nvgpu/gk20a.h>
|
|
|
|
#include <nvgpu/hw/gp10b/hw_ltc_gp10b.h>
|
|
|
|
#include "ltc_gm20b.h"
|
|
#include "ltc_gp10b.h"
|
|
|
|
u64 gp10b_determine_L2_size_bytes(struct gk20a *g)
|
|
{
|
|
u32 tmp;
|
|
u64 ret;
|
|
|
|
nvgpu_log_fn(g, " ");
|
|
|
|
tmp = gk20a_readl(g, ltc_ltc0_lts0_tstg_info_1_r());
|
|
|
|
ret = (u64)g->ltc->ltc_count *
|
|
ltc_ltc0_lts0_tstg_info_1_slice_size_in_kb_v(tmp) * 1024U *
|
|
(u64)ltc_ltc0_lts0_tstg_info_1_slices_per_l2_v(tmp);
|
|
|
|
nvgpu_log(g, gpu_dbg_info, "L2 size: %llu\n", ret);
|
|
|
|
nvgpu_log_fn(g, "done");
|
|
|
|
return ret;
|
|
}
|
|
|
|
void gp10b_ltc_init_fs_state(struct gk20a *g)
|
|
{
|
|
gm20b_ltc_init_fs_state(g);
|
|
|
|
gk20a_writel(g, ltc_ltca_g_axi_pctrl_r(),
|
|
ltc_ltca_g_axi_pctrl_user_sid_f(g->ltc_streamid));
|
|
|
|
}
|
|
|
|
void gp10b_ltc_set_enabled(struct gk20a *g, bool enabled)
|
|
{
|
|
u32 reg_f = ltc_ltcs_ltss_tstg_set_mgmt_2_l2_bypass_mode_enabled_f();
|
|
u32 reg = gk20a_readl(g, ltc_ltcs_ltss_tstg_set_mgmt_2_r());
|
|
|
|
if (enabled) {
|
|
/* bypass disabled (normal caching ops) */
|
|
reg &= ~reg_f;
|
|
} else {
|
|
/* bypass enabled (no caching) */
|
|
reg |= reg_f;
|
|
}
|
|
|
|
nvgpu_writel_check(g, ltc_ltcs_ltss_tstg_set_mgmt_2_r(), reg);
|
|
}
|