mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
css_vgpu.c: fix warnings found by sparse tool Bug 200088648 Change-Id: I4d9d33c6438be8fa8f2ba9cb0b2f786c46b7c9ce Signed-off-by: Peter Daifuku <pdaifuku@nvidia.com> Reviewed-on: http://git-master/r/1234605 Reviewed-by: Aingara Paramakuru <aparamakuru@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Amit Sharma (SW-TEGRA) <amisharma@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
219 lines
5.8 KiB
C
219 lines
5.8 KiB
C
/*
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#if defined(CONFIG_GK20A_CYCLE_STATS)
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/nvhost.h>
|
|
#include <linux/tegra-ivc.h>
|
|
#include <linux/tegra_vgpu.h>
|
|
|
|
#include "gk20a/gk20a.h"
|
|
#include "gk20a/channel_gk20a.h"
|
|
#include "gk20a/platform_gk20a.h"
|
|
#include "gk20a/css_gr_gk20a.h"
|
|
#include "vgpu.h"
|
|
|
|
static struct tegra_hv_ivm_cookie *css_cookie;
|
|
|
|
static int vgpu_css_init_snapshot_buffer(struct gr_gk20a *gr)
|
|
{
|
|
struct gk20a *g = gr->g;
|
|
struct device *dev = g->dev;
|
|
struct gk20a_cs_snapshot *data = gr->cs_data;
|
|
struct device_node *np = dev->of_node;
|
|
struct of_phandle_args args;
|
|
struct device_node *hv_np;
|
|
void *buf = NULL;
|
|
u32 mempool;
|
|
int err;
|
|
|
|
gk20a_dbg_fn("");
|
|
|
|
if (data->hw_snapshot)
|
|
return 0;
|
|
|
|
err = of_parse_phandle_with_fixed_args(np,
|
|
"mempool-css", 1, 0, &args);
|
|
if (err) {
|
|
dev_info(dev_from_gk20a(g), "dt missing mempool-css\n");
|
|
goto fail;
|
|
}
|
|
|
|
hv_np = args.np;
|
|
mempool = args.args[0];
|
|
css_cookie = tegra_hv_mempool_reserve(hv_np, mempool);
|
|
if (IS_ERR(css_cookie)) {
|
|
dev_info(dev_from_gk20a(g),
|
|
"mempool %u reserve failed\n", mempool);
|
|
err = -EINVAL;
|
|
goto fail;
|
|
}
|
|
|
|
/* Make sure buffer size is large enough */
|
|
if (css_cookie->size < CSS_MIN_HW_SNAPSHOT_SIZE) {
|
|
dev_info(dev_from_gk20a(g), "mempool size %lld too small\n",
|
|
css_cookie->size);
|
|
err = -ENOMEM;
|
|
goto fail;
|
|
}
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 18, 0)
|
|
buf = ioremap_cached(css_cookie->ipa, css_cookie->size);
|
|
#else
|
|
buf = ioremap_cache(css_cookie->ipa, css_cookie->size);
|
|
#endif
|
|
if (!buf) {
|
|
dev_info(dev_from_gk20a(g), "ioremap_cache failed\n");
|
|
err = -EINVAL;
|
|
goto fail;
|
|
}
|
|
|
|
data->hw_snapshot = buf;
|
|
data->hw_end = data->hw_snapshot +
|
|
css_cookie->size / sizeof(struct gk20a_cs_snapshot_fifo_entry);
|
|
data->hw_get = data->hw_snapshot;
|
|
memset(data->hw_snapshot, 0xff, css_cookie->size);
|
|
return 0;
|
|
fail:
|
|
if (!IS_ERR_OR_NULL(css_cookie))
|
|
tegra_hv_mempool_unreserve(css_cookie);
|
|
return err;
|
|
}
|
|
|
|
static void vgpu_css_release_snapshot_buffer(struct gr_gk20a *gr)
|
|
{
|
|
struct gk20a_cs_snapshot *data = gr->cs_data;
|
|
|
|
if (!data->hw_snapshot)
|
|
return;
|
|
|
|
iounmap(data->hw_snapshot);
|
|
data->hw_snapshot = NULL;
|
|
|
|
tegra_hv_mempool_unreserve(css_cookie);
|
|
|
|
gk20a_dbg_info("cyclestats(vgpu): buffer for snapshots released\n");
|
|
}
|
|
|
|
static int vgpu_css_flush_snapshots(struct channel_gk20a *ch,
|
|
u32 *pending, bool *hw_overflow)
|
|
{
|
|
struct gk20a *g = ch->g;
|
|
struct tegra_vgpu_cmd_msg msg = {};
|
|
struct tegra_vgpu_channel_cyclestats_snapshot_params *p;
|
|
struct gr_gk20a *gr = &g->gr;
|
|
struct gk20a_cs_snapshot *data = gr->cs_data;
|
|
int err;
|
|
|
|
gk20a_dbg_fn("");
|
|
|
|
msg.cmd = TEGRA_VGPU_CMD_CHANNEL_CYCLESTATS_SNAPSHOT;
|
|
msg.handle = vgpu_get_handle(g);
|
|
p = &msg.params.cyclestats_snapshot;
|
|
p->handle = ch->virt_ctx;
|
|
p->subcmd = NVGPU_IOCTL_CHANNEL_CYCLE_STATS_SNAPSHOT_CMD_FLUSH;
|
|
p->buf_info = (uintptr_t)data->hw_get - (uintptr_t)data->hw_snapshot;
|
|
|
|
err = vgpu_comm_sendrecv(&msg, sizeof(msg), sizeof(msg));
|
|
|
|
err = (err || msg.ret) ? -1 : 0;
|
|
|
|
*pending = p->buf_info;
|
|
*hw_overflow = p->hw_overflow;
|
|
|
|
return err;
|
|
}
|
|
|
|
static int vgpu_css_attach(struct channel_gk20a *ch,
|
|
struct gk20a_cs_snapshot_client *cs_client)
|
|
{
|
|
struct gk20a *g = ch->g;
|
|
struct tegra_vgpu_cmd_msg msg = {};
|
|
struct tegra_vgpu_channel_cyclestats_snapshot_params *p =
|
|
&msg.params.cyclestats_snapshot;
|
|
int err;
|
|
|
|
gk20a_dbg_fn("");
|
|
|
|
msg.cmd = TEGRA_VGPU_CMD_CHANNEL_CYCLESTATS_SNAPSHOT;
|
|
msg.handle = vgpu_get_handle(g);
|
|
p->handle = ch->virt_ctx;
|
|
p->subcmd = NVGPU_IOCTL_CHANNEL_CYCLE_STATS_SNAPSHOT_CMD_ATTACH;
|
|
p->perfmon_count = cs_client->perfmon_count;
|
|
|
|
err = vgpu_comm_sendrecv(&msg, sizeof(msg), sizeof(msg));
|
|
err = err ? err : msg.ret;
|
|
if (err)
|
|
gk20a_err(dev_from_gk20a(g), "%s failed", __func__);
|
|
else
|
|
cs_client->perfmon_start = p->perfmon_start;
|
|
|
|
return err;
|
|
}
|
|
|
|
static int vgpu_css_detach(struct channel_gk20a *ch,
|
|
struct gk20a_cs_snapshot_client *cs_client)
|
|
{
|
|
struct gk20a *g = ch->g;
|
|
struct tegra_vgpu_cmd_msg msg = {};
|
|
struct tegra_vgpu_channel_cyclestats_snapshot_params *p =
|
|
&msg.params.cyclestats_snapshot;
|
|
int err;
|
|
|
|
gk20a_dbg_fn("");
|
|
|
|
msg.cmd = TEGRA_VGPU_CMD_CHANNEL_CYCLESTATS_SNAPSHOT;
|
|
msg.handle = vgpu_get_handle(g);
|
|
p->handle = ch->virt_ctx;
|
|
p->subcmd = NVGPU_IOCTL_CHANNEL_CYCLE_STATS_SNAPSHOT_CMD_DETACH;
|
|
p->perfmon_start = cs_client->perfmon_start;
|
|
p->perfmon_count = cs_client->perfmon_count;
|
|
|
|
err = vgpu_comm_sendrecv(&msg, sizeof(msg), sizeof(msg));
|
|
err = err ? err : msg.ret;
|
|
if (err)
|
|
gk20a_err(dev_from_gk20a(g), "%s failed", __func__);
|
|
|
|
return err;
|
|
}
|
|
|
|
static int vgpu_css_enable_snapshot_buffer(struct channel_gk20a *ch,
|
|
struct gk20a_cs_snapshot_client *cs_client)
|
|
{
|
|
int ret;
|
|
|
|
ret = vgpu_css_attach(ch, cs_client);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = vgpu_css_init_snapshot_buffer(&ch->g->gr);
|
|
return ret;
|
|
}
|
|
|
|
void vgpu_init_css_ops(struct gpu_ops *gops)
|
|
{
|
|
gops->css.enable_snapshot = vgpu_css_enable_snapshot_buffer;
|
|
gops->css.disable_snapshot = vgpu_css_release_snapshot_buffer;
|
|
gops->css.check_data_available = vgpu_css_flush_snapshots;
|
|
gops->css.detach_snapshot = vgpu_css_detach;
|
|
|
|
/* Following entries are not used when virtual, NULL them */
|
|
gops->css.set_handled_snapshots = NULL;
|
|
gops->css.allocate_perfmon_ids = NULL;
|
|
gops->css.release_perfmon_ids = NULL;
|
|
}
|
|
#endif /* CONFIG_GK20A_CYCLE_STATS */
|