gpu: nvgpu: add g->func_regs

rework nvgpu_func_* io accessors to use g->func_regs rather than use
g->regs. g->regs is invalid for VF.

Jira GVSCI-15732

Change-Id: I71e788ff135c5a286b273c151e1bd0a88e9d61e2
Signed-off-by: Richard Zhao <rizhao@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2863429
Reviewed-by: svcacv <svcacv@nvidia.com>
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: Dinesh T <dt@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
Richard Zhao
2023-01-11 22:35:48 -08:00
committed by mobile promotions
parent d50889585e
commit de0e1be1ed
4 changed files with 33 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved.
* Copyright (c) 2018-2023, 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"),
@@ -147,18 +147,28 @@ void nvgpu_writel_check(struct gk20a *g, u32 r, u32 v)
void nvgpu_func_writel(struct gk20a *g, u32 r, u32 v)
{
if (g->ops.func.get_full_phys_offset == NULL) {
BUG_ON(1);
if (unlikely(!g->func_regs)) {
nvgpu_warn_on_no_regs(g, r);
nvgpu_log(g, gpu_dbg_reg, "f=0x%x v=0x%x (failed)", r, v);
} else {
nvgpu_os_writel(v, g->func_regs + r);
nvgpu_wmb();
nvgpu_log(g, gpu_dbg_reg, "f=0x%x v=0x%x", r, v);
}
nvgpu_writel(g,
nvgpu_safe_add_u32(r, g->ops.func.get_full_phys_offset(g)), v);
}
u32 nvgpu_func_readl(struct gk20a *g, u32 r)
{
if (g->ops.func.get_full_phys_offset == NULL) {
BUG_ON(1);
u32 v = 0xffffffff;
if (unlikely(!g->func_regs)) {
nvgpu_warn_on_no_regs(g, r);
nvgpu_log(g, gpu_dbg_reg, "f=0x%x v=0x%x (failed)", r, v);
nvgpu_check_gpu_state(g);
} else {
v = nvgpu_os_readl(g->func_regs + r);
nvgpu_log(g, gpu_dbg_reg, "f=0x%x v=0x%x", r, v);
}
return nvgpu_readl(g,
nvgpu_safe_add_u32(r, g->ops.func.get_full_phys_offset(g)));
return v;
}

View File

@@ -1,7 +1,7 @@
/*
* NVIDIA GPU HAL interface.
*
* Copyright (c) 2014-2022, NVIDIA CORPORATION. All rights reserved.
* Copyright (c) 2014-2023, 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"),
@@ -143,5 +143,12 @@ int nvgpu_detect_chip(struct gk20a *g)
return err;
}
if (g->func_regs == 0U &&
g->ops.func.get_full_phys_offset != NULL) {
g->func_regs = nvgpu_safe_add_u64(g->regs,
g->ops.func.get_full_phys_offset(g));
g->func_regs_saved = g->func_regs;
}
return 0;
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011-2022, NVIDIA CORPORATION. All rights reserved.
* Copyright (c) 2011-2023, NVIDIA CORPORATION. All rights reserved.
*
* GK20A Graphics
*
@@ -401,9 +401,13 @@ struct gk20a {
uintptr_t usermode_regs;
u64 usermode_regs_bus_addr;
/** Starting virtual address of mapped func io region. */
uintptr_t func_regs;
uintptr_t regs_saved;
uintptr_t bar1_saved;
uintptr_t usermode_regs_saved;
uintptr_t func_regs_saved;
/**
* Handle to access nvhost APIs.

View File

@@ -264,6 +264,7 @@ static int gk20a_restore_registers(struct gk20a *g)
{
g->regs = g->regs_saved;
g->bar1 = g->bar1_saved;
g->func_regs = g->func_regs_saved;
nvgpu_restore_usermode_registers(g);