Files
linux-nvgpu/drivers/gpu/nvgpu/hal/mc/mc_gm20b.c
Sagar Kamble 3f08cf8a48 gpu: nvgpu: rename feature Make and C flags
Name the Make and C flag variables consistently wih syntax:
CONFIG_NVGPU_<feature name>

s/NVGPU_DEBUGGER/CONFIG_NVGPU_DEBUGGER
s/NVGPU_CYCLESTATS/CONFIG_NVGPU_CYCLESTATS
s/NVGPU_USERD/CONFIG_NVGPU_USERD
s/NVGPU_CHANNEL_WDT/CONFIG_NVGPU_CHANNEL_WDT
s/NVGPU_FEATURE_CE/CONFIG_NVGPU_CE
s/NVGPU_GRAPHICS/CONFIG_NVGPU_GRAPHICS
s/NVGPU_ENGINE/CONFIG_NVGPU_FIFO_ENGINE_ACTIVITY
s/NVGPU_FEATURE_CHANNEL_TSG_SCHED/CONFIG_NVGPU_CHANNEL_TSG_SCHED
s/NVGPU_FEATURE_CHANNEL_TSG_CONTROL/CONFIG_NVGPU_CHANNEL_TSG_CONTROL
s/NVGPU_FEATURE_ENGINE_QUEUE/CONFIG_NVGPU_ENGINE_QUEUE
s/GK20A_CTXSW_TRACE/CONFIG_NVGPU_FECS_TRACE
s/IGPU_VIRT_SUPPORT/CONFIG_NVGPU_IGPU_VIRT
s/CONFIG_TEGRA_NVLINK/CONFIG_NVGPU_NVLINK
s/NVGPU_DGPU_SUPPORT/CONFIG_NVGPU_DGPU
s/NVGPU_VPR/CONFIG_NVGPU_VPR
s/NVGPU_REPLAYABLE_FAULT/CONFIG_NVGPU_REPLAYABLE_FAULT
s/NVGPU_FEATURE_LS_PMU/CONFIG_NVGPU_LS_PMU
s/NVGPU_FEATURE_POWER_PG/CONFIG_NVGPU_POWER_PG

JIRA NVGPU-3624

Change-Id: I8b2492b085095fc6ee95926d8f8c3929702a1773
Signed-off-by: Sagar Kamble <skamble@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2130290
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
2019-06-11 09:46:24 -07:00

378 lines
9.1 KiB
C

/*
* GM20B Master Control
*
* 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/timers.h>
#include <nvgpu/atomic.h>
#include <nvgpu/unit.h>
#include <nvgpu/io.h>
#include <nvgpu/mc.h>
#include <nvgpu/ltc.h>
#include <nvgpu/gk20a.h>
#include <nvgpu/bug.h>
#include <nvgpu/engines.h>
#include <nvgpu/power_features/pg.h>
#include "mc_gm20b.h"
#include <nvgpu/hw/gm20b/hw_mc_gm20b.h>
void gm20b_mc_isr_stall(struct gk20a *g)
{
u32 mc_intr_0;
u32 eng_id;
u32 act_eng_id = 0U;
enum nvgpu_fifo_engine engine_enum;
mc_intr_0 = g->ops.mc.intr_stall(g);
nvgpu_log(g, gpu_dbg_intr, "stall intr %08x", mc_intr_0);
for (eng_id = 0U; eng_id < g->fifo.num_engines; eng_id++) {
act_eng_id = g->fifo.active_engines_list[eng_id];
if ((mc_intr_0 &
g->fifo.engine_info[act_eng_id].intr_mask) == 0U) {
continue;
}
engine_enum = g->fifo.engine_info[act_eng_id].engine_enum;
/* GR Engine */
if (engine_enum == NVGPU_ENGINE_GR) {
nvgpu_pg_elpg_protected_call(g,
g->ops.gr.intr.stall_isr(g));
}
/* CE Engine */
if (((engine_enum == NVGPU_ENGINE_GRCE) ||
(engine_enum == NVGPU_ENGINE_ASYNC_CE)) &&
(g->ops.ce.isr_stall != NULL)) {
g->ops.ce.isr_stall(g,
g->fifo.engine_info[act_eng_id].inst_id,
g->fifo.engine_info[act_eng_id].pri_base);
}
}
if ((mc_intr_0 & mc_intr_pfifo_pending_f()) != 0U) {
g->ops.fifo.intr_0_isr(g);
}
#ifdef CONFIG_NVGPU_LS_PMU
if ((mc_intr_0 & mc_intr_pmu_pending_f()) != 0U) {
g->ops.pmu.pmu_isr(g);
}
#endif
if ((mc_intr_0 & mc_intr_priv_ring_pending_f()) != 0U) {
g->ops.priv_ring.isr(g);
}
if ((mc_intr_0 & mc_intr_ltc_pending_f()) != 0U) {
g->ops.mc.ltc_isr(g);
}
if ((mc_intr_0 & mc_intr_pbus_pending_f()) != 0U) {
g->ops.bus.isr(g);
}
}
u32 gm20b_mc_isr_nonstall(struct gk20a *g)
{
u32 ops = 0U;
u32 mc_intr_1;
u32 eng_id;
u32 act_eng_id = 0U;
enum nvgpu_fifo_engine engine_enum;
mc_intr_1 = g->ops.mc.intr_nonstall(g);
if (g->ops.mc.is_intr1_pending(g, NVGPU_UNIT_FIFO, mc_intr_1)) {
ops |= g->ops.fifo.intr_1_isr(g);
}
for (eng_id = 0U; eng_id < g->fifo.num_engines; eng_id++) {
struct nvgpu_engine_info *engine_info;
act_eng_id = g->fifo.active_engines_list[eng_id];
engine_info = &g->fifo.engine_info[act_eng_id];
if ((mc_intr_1 & engine_info->intr_mask) != 0U) {
engine_enum = engine_info->engine_enum;
/* GR Engine */
if (engine_enum == NVGPU_ENGINE_GR) {
ops |= g->ops.gr.intr.nonstall_isr(g);
}
/* CE Engine */
if (((engine_enum == NVGPU_ENGINE_GRCE) ||
(engine_enum == NVGPU_ENGINE_ASYNC_CE)) &&
(g->ops.ce.isr_nonstall != NULL)) {
ops |= g->ops.ce.isr_nonstall(g,
engine_info->inst_id,
engine_info->pri_base);
}
}
}
return ops;
}
void gm20b_mc_intr_mask(struct gk20a *g)
{
nvgpu_writel(g, mc_intr_en_0_r(),
mc_intr_en_0_inta_disabled_f());
nvgpu_writel(g, mc_intr_en_1_r(),
mc_intr_en_1_inta_disabled_f());
}
void gm20b_mc_intr_enable(struct gk20a *g)
{
u32 eng_intr_mask = nvgpu_engine_interrupt_mask(g);
nvgpu_writel(g, mc_intr_mask_1_r(),
mc_intr_pfifo_pending_f()
| eng_intr_mask);
nvgpu_writel(g, mc_intr_en_1_r(),
mc_intr_en_1_inta_hardware_f());
nvgpu_writel(g, mc_intr_mask_0_r(),
mc_intr_pfifo_pending_f()
| mc_intr_priv_ring_pending_f()
| mc_intr_ltc_pending_f()
| mc_intr_pbus_pending_f()
| eng_intr_mask);
nvgpu_writel(g, mc_intr_en_0_r(),
mc_intr_en_0_inta_hardware_f());
}
void gm20b_mc_intr_pmu_unit_config(struct gk20a *g, bool enable)
{
if (enable) {
nvgpu_writel(g, mc_intr_mask_0_r(),
nvgpu_readl(g, mc_intr_mask_0_r()) |
mc_intr_mask_0_pmu_enabled_f());
} else {
nvgpu_writel(g, mc_intr_mask_0_r(),
nvgpu_readl(g, mc_intr_mask_0_r()) &
~mc_intr_mask_0_pmu_enabled_f());
nvgpu_writel(g, mc_intr_mask_1_r(),
nvgpu_readl(g, mc_intr_mask_1_r()) &
~mc_intr_mask_1_pmu_enabled_f());
}
}
void gm20b_mc_intr_stall_pause(struct gk20a *g)
{
nvgpu_writel(g, mc_intr_en_0_r(),
mc_intr_en_0_inta_disabled_f());
/* flush previous write */
(void) nvgpu_readl(g, mc_intr_en_0_r());
}
void gm20b_mc_intr_stall_resume(struct gk20a *g)
{
nvgpu_writel(g, mc_intr_en_0_r(),
mc_intr_en_0_inta_hardware_f());
/* flush previous write */
(void) nvgpu_readl(g, mc_intr_en_0_r());
}
void gm20b_mc_intr_nonstall_pause(struct gk20a *g)
{
nvgpu_writel(g, mc_intr_en_1_r(),
mc_intr_en_0_inta_disabled_f());
/* flush previous write */
(void) nvgpu_readl(g, mc_intr_en_1_r());
}
void gm20b_mc_intr_nonstall_resume(struct gk20a *g)
{
nvgpu_writel(g, mc_intr_en_1_r(),
mc_intr_en_0_inta_hardware_f());
/* flush previous write */
(void) nvgpu_readl(g, mc_intr_en_1_r());
}
u32 gm20b_mc_intr_stall(struct gk20a *g)
{
return nvgpu_readl(g, mc_intr_r(NVGPU_MC_INTR_STALLING));
}
u32 gm20b_mc_intr_nonstall(struct gk20a *g)
{
return nvgpu_readl(g, mc_intr_r(NVGPU_MC_INTR_NONSTALLING));
}
void gm20b_mc_disable(struct gk20a *g, u32 units)
{
u32 pmc;
nvgpu_log(g, gpu_dbg_info, "pmc disable: %08x", units);
nvgpu_spinlock_acquire(&g->mc_enable_lock);
pmc = nvgpu_readl(g, mc_enable_r());
pmc &= ~units;
nvgpu_writel(g, mc_enable_r(), pmc);
nvgpu_spinlock_release(&g->mc_enable_lock);
}
void gm20b_mc_enable(struct gk20a *g, u32 units)
{
u32 pmc;
nvgpu_log(g, gpu_dbg_info, "pmc enable: %08x", units);
nvgpu_spinlock_acquire(&g->mc_enable_lock);
pmc = nvgpu_readl(g, mc_enable_r());
pmc |= units;
nvgpu_writel(g, mc_enable_r(), pmc);
pmc = nvgpu_readl(g, mc_enable_r());
nvgpu_spinlock_release(&g->mc_enable_lock);
nvgpu_udelay(MC_ENABLE_DELAY_US);
}
void gm20b_mc_reset(struct gk20a *g, u32 units)
{
g->ops.mc.disable(g, units);
if ((units & nvgpu_engine_get_all_ce_reset_mask(g)) != 0U) {
nvgpu_udelay(MC_RESET_CE_DELAY_US);
} else {
nvgpu_udelay(MC_RESET_DELAY_US);
}
g->ops.mc.enable(g, units);
}
bool gm20b_mc_is_intr1_pending(struct gk20a *g,
enum nvgpu_unit unit, u32 mc_intr_1)
{
u32 mask;
bool is_pending;
switch (unit) {
case NVGPU_UNIT_FIFO:
mask = mc_intr_pfifo_pending_f();
break;
default:
mask = 0U;
break;
}
if (mask == 0U) {
nvgpu_err(g, "unknown unit %d", unit);
is_pending = false;
} else {
is_pending = ((mc_intr_1 & mask) != 0U);
}
return is_pending;
}
void gm20b_mc_log_pending_intrs(struct gk20a *g)
{
u32 mc_intr_0;
u32 mc_intr_1;
mc_intr_0 = g->ops.mc.intr_stall(g);
if (mc_intr_0 != 0U) {
if ((mc_intr_0 & mc_intr_priv_ring_pending_f()) != 0U) {
/* clear priv ring interrupts */
g->ops.priv_ring.isr(g);
}
mc_intr_0 = g->ops.mc.intr_stall(g);
if (mc_intr_0 != 0U) {
nvgpu_info(g, "Pending stall intr0=0x%08x", mc_intr_0);
}
}
mc_intr_1 = g->ops.mc.intr_nonstall(g);
if (mc_intr_1 != 0U) {
nvgpu_info(g, "Pending nonstall intr1=0x%08x", mc_intr_1);
}
}
u32 gm20b_mc_reset_mask(struct gk20a *g, enum nvgpu_unit unit)
{
u32 mask = 0U;
switch (unit) {
case NVGPU_UNIT_FIFO:
mask = mc_enable_pfifo_enabled_f();
break;
case NVGPU_UNIT_PERFMON:
mask = mc_enable_perfmon_enabled_f();
break;
case NVGPU_UNIT_GRAPH:
mask = mc_enable_pgraph_enabled_f();
break;
case NVGPU_UNIT_BLG:
mask = mc_enable_blg_enabled_f();
break;
case NVGPU_UNIT_PWR:
mask = mc_enable_pwr_enabled_f();
break;
default:
WARN(1, "unknown reset unit %d", unit);
break;
}
return mask;
}
bool gm20b_mc_is_enabled(struct gk20a *g, enum nvgpu_unit unit)
{
u32 mask = g->ops.mc.reset_mask(g, unit);
return (nvgpu_readl(g, mc_enable_r()) & mask) != 0U;
}
void gm20b_mc_fb_reset(struct gk20a *g)
{
u32 val;
nvgpu_log_info(g, "reset gk20a fb");
val = nvgpu_readl(g, mc_elpg_enable_r());
val |= mc_elpg_enable_xbar_enabled_f()
| mc_elpg_enable_pfb_enabled_f()
| mc_elpg_enable_hub_enabled_f();
nvgpu_writel(g, mc_elpg_enable_r(), val);
}
void gm20b_mc_ltc_isr(struct gk20a *g)
{
u32 mc_intr;
u32 ltc;
mc_intr = nvgpu_readl(g, mc_intr_ltc_r());
nvgpu_err(g, "mc_ltc_intr: %08x", mc_intr);
for (ltc = 0; ltc < nvgpu_ltc_get_ltc_count(g); ltc++) {
if ((mc_intr & BIT32(ltc)) == 0U) {
continue;
}
g->ops.ltc.intr.isr(g, ltc);
}
}
bool gm20b_mc_is_mmu_fault_pending(struct gk20a *g)
{
return g->ops.fifo.is_mmu_fault_pending(g);
}