mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
Delete the struct nvgpu_engine_info as it's essentially identical to
struct nvgpu_device. Duplicating data structures is not ideal as it's
terribly confusing what does what.
Update all uses of nvgpu_engine_info to use struct nvgpu_device. This
is often a fairly straight forward replacement. Couple of places though
where things got interesting:
- The enum_type that engine_info uses is defined in engines.h and
has a bit of SW abstraction - in particular the GRCE type. The only
place this seemed to be actually relevant (the IOCTL providing device
info to userspace) the GRCE engines can be worked out by comparing
runlist ID.
- Addition of masks based on intr_id and reset_id; those can be
computed easily enough using BIT32() but this is an area that
could be improved on.
This reaches into a lot of extraneous code that traverses the fifo
active engines list and dramtically simplifies this. Now, instead of
having to go through a table of engine IDs that point to the list of
all host engines, the active engine list is just a list of pointers to
valid engines. It's now trivial to do a for-all-active-engines type
loop. This could even be turned into a generic macro or otherwise
abstracted in the future.
JIRA NVGPU-5421
Change-Id: I3a810deb55a7dd8c09836fd2dae85d3e28eb23cf
Signed-off-by: Alex Waterman <alexw@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2319895
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
296 lines
7.3 KiB
C
296 lines
7.3 KiB
C
/*
|
|
* GP10B master
|
|
*
|
|
* Copyright (c) 2014-2020, 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/gk20a.h>
|
|
#include <nvgpu/io.h>
|
|
#include <nvgpu/mc.h>
|
|
#include <nvgpu/engines.h>
|
|
#include <nvgpu/device.h>
|
|
#include <nvgpu/power_features/pg.h>
|
|
|
|
#include "mc_gp10b.h"
|
|
|
|
#include <nvgpu/hw/gp10b/hw_mc_gp10b.h>
|
|
|
|
void mc_gp10b_intr_mask(struct gk20a *g)
|
|
{
|
|
nvgpu_writel(g, mc_intr_en_clear_r(NVGPU_MC_INTR_STALLING),
|
|
U32_MAX);
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_STALLING] = 0;
|
|
|
|
nvgpu_writel(g, mc_intr_en_clear_r(NVGPU_MC_INTR_NONSTALLING),
|
|
U32_MAX);
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_NONSTALLING] = 0;
|
|
}
|
|
|
|
static u32 mc_gp10b_intr_pending_f(struct gk20a *g, u32 unit)
|
|
{
|
|
u32 intr_pending_f = 0;
|
|
|
|
switch (unit) {
|
|
case MC_INTR_UNIT_BUS:
|
|
intr_pending_f = mc_intr_pbus_pending_f();
|
|
break;
|
|
case MC_INTR_UNIT_PRIV_RING:
|
|
intr_pending_f = mc_intr_priv_ring_pending_f();
|
|
break;
|
|
case MC_INTR_UNIT_FIFO:
|
|
intr_pending_f = mc_intr_pfifo_pending_f();
|
|
break;
|
|
case MC_INTR_UNIT_LTC:
|
|
intr_pending_f = mc_intr_ltc_pending_f();
|
|
break;
|
|
case MC_INTR_UNIT_GR:
|
|
intr_pending_f = nvgpu_gr_engine_interrupt_mask(g);
|
|
break;
|
|
case MC_INTR_UNIT_PMU:
|
|
intr_pending_f = mc_intr_pmu_pending_f();
|
|
break;
|
|
case MC_INTR_UNIT_HUB:
|
|
intr_pending_f = mc_intr_replayable_fault_pending_f();
|
|
break;
|
|
case MC_INTR_UNIT_CE:
|
|
intr_pending_f = nvgpu_ce_engine_interrupt_mask(g);
|
|
break;
|
|
default:
|
|
nvgpu_err(g, "Invalid MC interrupt unit specified !!!");
|
|
break;
|
|
}
|
|
|
|
return intr_pending_f;
|
|
}
|
|
|
|
static void mc_gp10b_isr_stall_primary(struct gk20a *g, u32 mc_intr_0)
|
|
{
|
|
if ((mc_intr_0 & mc_intr_priv_ring_pending_f()) != 0U) {
|
|
g->ops.priv_ring.isr(g);
|
|
}
|
|
}
|
|
|
|
void mc_gp10b_isr_stall_secondary_1(struct gk20a *g, u32 mc_intr_0)
|
|
{
|
|
if ((mc_intr_0 & mc_intr_ltc_pending_f()) != 0U) {
|
|
g->ops.mc.ltc_isr(g);
|
|
}
|
|
#ifdef CONFIG_NVGPU_DGPU
|
|
if ((g->ops.mc.is_intr_nvlink_pending != NULL) &&
|
|
g->ops.mc.is_intr_nvlink_pending(g, mc_intr_0)) {
|
|
g->ops.nvlink.intr.isr(g);
|
|
}
|
|
if ((mc_intr_0 & mc_intr_pfb_pending_f()) != 0U &&
|
|
(g->ops.mc.fbpa_isr != NULL)) {
|
|
g->ops.mc.fbpa_isr(g);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void mc_gp10b_isr_stall_secondary_0(struct gk20a *g, u32 mc_intr_0)
|
|
{
|
|
if ((g->ops.mc.is_intr_hub_pending != NULL) &&
|
|
g->ops.mc.is_intr_hub_pending(g, mc_intr_0)) {
|
|
g->ops.fb.intr.isr(g, 0U);
|
|
}
|
|
if ((mc_intr_0 & mc_intr_pfifo_pending_f()) != 0U) {
|
|
g->ops.fifo.intr_0_isr(g);
|
|
}
|
|
if ((mc_intr_0 & mc_intr_pmu_pending_f()) != 0U) {
|
|
g->ops.pmu.pmu_isr(g);
|
|
}
|
|
}
|
|
|
|
void mc_gp10b_isr_stall_engine(struct gk20a *g,
|
|
const struct nvgpu_device *dev)
|
|
{
|
|
int err;
|
|
|
|
/* GR Engine */
|
|
if (nvgpu_device_is_graphics(g, dev)) {
|
|
err = nvgpu_pg_elpg_protected_call(g,
|
|
g->ops.gr.intr.stall_isr(g));
|
|
if (err != 0) {
|
|
nvgpu_err(g, "Unable to handle gr interrupt");
|
|
}
|
|
}
|
|
|
|
/* CE Engine */
|
|
if (nvgpu_device_is_ce(g, dev) &&
|
|
(g->ops.ce.isr_stall != NULL)) {
|
|
g->ops.ce.isr_stall(g, dev->inst_id, dev->pri_base);
|
|
}
|
|
}
|
|
|
|
void mc_gp10b_intr_stall_unit_config(struct gk20a *g, u32 unit, bool enable)
|
|
{
|
|
u32 unit_pending_f = mc_gp10b_intr_pending_f(g, unit);
|
|
u32 reg = 0U;
|
|
|
|
if (enable) {
|
|
reg = mc_intr_en_set_r(NVGPU_MC_INTR_STALLING);
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_STALLING] |=
|
|
unit_pending_f;
|
|
nvgpu_writel(g, reg, unit_pending_f);
|
|
} else {
|
|
reg = mc_intr_en_clear_r(NVGPU_MC_INTR_STALLING);
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_STALLING] &=
|
|
~unit_pending_f;
|
|
nvgpu_writel(g, reg, unit_pending_f);
|
|
}
|
|
}
|
|
|
|
void mc_gp10b_intr_nonstall_unit_config(struct gk20a *g, u32 unit, bool enable)
|
|
{
|
|
u32 unit_pending_f = mc_gp10b_intr_pending_f(g, unit);
|
|
u32 reg = 0U;
|
|
|
|
if (enable) {
|
|
reg = mc_intr_en_set_r(NVGPU_MC_INTR_NONSTALLING);
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_NONSTALLING] |=
|
|
unit_pending_f;
|
|
nvgpu_writel(g, reg, unit_pending_f);
|
|
} else {
|
|
reg = mc_intr_en_clear_r(NVGPU_MC_INTR_NONSTALLING);
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_NONSTALLING] &=
|
|
~unit_pending_f;
|
|
nvgpu_writel(g, reg, unit_pending_f);
|
|
}
|
|
}
|
|
|
|
void mc_gp10b_isr_stall(struct gk20a *g)
|
|
{
|
|
u32 mc_intr_0;
|
|
u32 i;
|
|
const struct nvgpu_device *dev;
|
|
|
|
mc_intr_0 = nvgpu_readl(g, mc_intr_r(NVGPU_MC_INTR_STALLING));
|
|
|
|
nvgpu_log(g, gpu_dbg_intr, "stall intr 0x%08x", mc_intr_0);
|
|
|
|
mc_gp10b_isr_stall_primary(g, mc_intr_0);
|
|
|
|
for (i = 0U; i < g->fifo.num_engines; i++) {
|
|
dev = g->fifo.active_engines[i];
|
|
|
|
if ((mc_intr_0 & BIT32(dev->intr_id)) == 0U) {
|
|
continue;
|
|
}
|
|
|
|
|
|
mc_gp10b_isr_stall_engine(g, dev);
|
|
}
|
|
|
|
mc_gp10b_isr_stall_secondary_0(g, mc_intr_0);
|
|
mc_gp10b_isr_stall_secondary_1(g, mc_intr_0);
|
|
nvgpu_log(g, gpu_dbg_intr, "stall intr done 0x%08x", mc_intr_0);
|
|
|
|
}
|
|
|
|
u32 mc_gp10b_intr_stall(struct gk20a *g)
|
|
{
|
|
return nvgpu_readl(g, mc_intr_r(NVGPU_MC_INTR_STALLING));
|
|
}
|
|
|
|
void mc_gp10b_intr_stall_pause(struct gk20a *g)
|
|
{
|
|
nvgpu_writel(g, mc_intr_en_clear_r(NVGPU_MC_INTR_STALLING), U32_MAX);
|
|
}
|
|
|
|
void mc_gp10b_intr_stall_resume(struct gk20a *g)
|
|
{
|
|
nvgpu_writel(g, mc_intr_en_set_r(NVGPU_MC_INTR_STALLING),
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_STALLING]);
|
|
}
|
|
|
|
u32 mc_gp10b_intr_nonstall(struct gk20a *g)
|
|
{
|
|
return nvgpu_readl(g, mc_intr_r(NVGPU_MC_INTR_NONSTALLING));
|
|
}
|
|
|
|
void mc_gp10b_intr_nonstall_pause(struct gk20a *g)
|
|
{
|
|
nvgpu_writel(g, mc_intr_en_clear_r(NVGPU_MC_INTR_NONSTALLING),
|
|
U32_MAX);
|
|
}
|
|
|
|
void mc_gp10b_intr_nonstall_resume(struct gk20a *g)
|
|
{
|
|
nvgpu_writel(g, mc_intr_en_set_r(NVGPU_MC_INTR_NONSTALLING),
|
|
g->mc.intr_mask_restore[NVGPU_MC_INTR_NONSTALLING]);
|
|
}
|
|
|
|
bool mc_gp10b_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;
|
|
}
|
|
|
|
#ifdef CONFIG_NVGPU_NON_FUSA
|
|
void mc_gp10b_log_pending_intrs(struct gk20a *g)
|
|
{
|
|
u32 i, intr;
|
|
|
|
for (i = 0U; i < MAX_MC_INTR_REGS; i++) {
|
|
intr = nvgpu_readl(g, mc_intr_r(i));
|
|
if (intr == 0U) {
|
|
continue;
|
|
}
|
|
nvgpu_info(g, "Pending intr%d=0x%08x", i, intr);
|
|
}
|
|
|
|
}
|
|
#endif
|
|
|
|
void mc_gp10b_ltc_isr(struct gk20a *g)
|
|
{
|
|
u32 mc_intr;
|
|
u32 ltc;
|
|
|
|
mc_intr = nvgpu_readl(g, mc_intr_ltc_r());
|
|
nvgpu_log(g, gpu_dbg_intr, "mc_ltc_intr: %08x", mc_intr);
|
|
for (ltc = 0U; ltc < nvgpu_ltc_get_ltc_count(g); ltc++) {
|
|
if ((mc_intr & BIT32(ltc)) == 0U) {
|
|
continue;
|
|
}
|
|
g->ops.ltc.intr.isr(g, ltc);
|
|
}
|
|
}
|