mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
gpu: nvgpu: gr_priv header include cleanup
Add more apis in gr_utils for accessing variables within gr struct. This helps to avoid including gr_priv.h outside gr files and derefencing gr struct. Jira NVGPU-3218 Change-Id: I6f24cc302f10aa1da14a981d80c400a027c9a115 Signed-off-by: Vinod G <vinodg@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2115930 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
e615e8f0ff
commit
5c60645cfa
@@ -38,6 +38,7 @@
|
||||
#include <nvgpu/gr/zbc.h>
|
||||
#include <nvgpu/gr/zcull.h>
|
||||
#include <nvgpu/gr/gr.h>
|
||||
#include <nvgpu/gr/gr_utils.h>
|
||||
#include <nvgpu/gr/warpstate.h>
|
||||
#include <nvgpu/channel.h>
|
||||
#include <nvgpu/pmu/pmgr.h>
|
||||
@@ -45,8 +46,6 @@
|
||||
#include <nvgpu/fence.h>
|
||||
#include <nvgpu/channel_sync_syncpt.h>
|
||||
|
||||
#include "common/gr/gr_priv.h"
|
||||
|
||||
#include "ioctl_ctrl.h"
|
||||
#include "ioctl_dbg.h"
|
||||
#include "ioctl_as.h"
|
||||
@@ -1667,6 +1666,8 @@ long gk20a_ctrl_dev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg
|
||||
struct nvgpu_gr_zbc_entry *zbc_val;
|
||||
struct nvgpu_gr_zbc_query_params *zbc_tbl;
|
||||
struct nvgpu_gr_config *gr_config = nvgpu_gr_get_config_ptr(g);
|
||||
struct nvgpu_gr_zcull *gr_zcull = nvgpu_gr_get_zcull_ptr(g);
|
||||
struct nvgpu_gr_zbc *gr_zbc = nvgpu_gr_get_zbc_ptr(g);
|
||||
int err = 0;
|
||||
u32 i;
|
||||
|
||||
@@ -1697,7 +1698,7 @@ long gk20a_ctrl_dev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg
|
||||
case NVGPU_GPU_IOCTL_ZCULL_GET_CTX_SIZE:
|
||||
get_ctx_size_args = (struct nvgpu_gpu_zcull_get_ctx_size_args *)buf;
|
||||
|
||||
get_ctx_size_args->size = nvgpu_gr_get_ctxsw_zcull_size(g, g->gr->zcull);
|
||||
get_ctx_size_args->size = nvgpu_gr_get_ctxsw_zcull_size(g, gr_zcull);
|
||||
|
||||
break;
|
||||
case NVGPU_GPU_IOCTL_ZCULL_GET_INFO:
|
||||
@@ -1711,7 +1712,7 @@ long gk20a_ctrl_dev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg
|
||||
return -ENOMEM;
|
||||
|
||||
err = g->ops.gr.zcull.get_zcull_info(g, gr_config,
|
||||
g->gr->zcull, zcull_info);
|
||||
gr_zcull, zcull_info);
|
||||
if (err) {
|
||||
nvgpu_kfree(g, zcull_info);
|
||||
break;
|
||||
@@ -1762,7 +1763,7 @@ long gk20a_ctrl_dev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg
|
||||
if (!err) {
|
||||
err = gk20a_busy(g);
|
||||
if (!err) {
|
||||
err = g->ops.gr.zbc.set_table(g, g->gr->zbc,
|
||||
err = g->ops.gr.zbc.set_table(g, gr_zbc,
|
||||
zbc_val);
|
||||
gk20a_idle(g);
|
||||
}
|
||||
@@ -1781,7 +1782,7 @@ long gk20a_ctrl_dev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg
|
||||
zbc_tbl->type = query_table_args->type;
|
||||
zbc_tbl->index_size = query_table_args->index_size;
|
||||
|
||||
err = g->ops.gr.zbc.query_table(g, g->gr->zbc, zbc_tbl);
|
||||
err = g->ops.gr.zbc.query_table(g, gr_zbc, zbc_tbl);
|
||||
|
||||
if (!err) {
|
||||
switch (zbc_tbl->type) {
|
||||
|
||||
Reference in New Issue
Block a user