mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
gpu: nvgpu: add gops.fifo.ch_abort_clean_up
Channel abort clean up is only needed by native and vgpu driver but not RM server. RM server expects guest will clean up itself. RM server should not set the callback. Jira VQRM-3058 Change-Id: I11b49b6f2d51c871e31de16955d487dca82609cb Signed-off-by: Richard Zhao <rizhao@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1679705 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
5c27ac91fd
commit
c5f03db98a
@@ -220,7 +220,8 @@ void gk20a_channel_abort(struct channel_gk20a *ch, bool channel_preempt)
|
||||
if (channel_preempt && gk20a_is_channel_marked_as_tsg(ch))
|
||||
ch->g->ops.fifo.preempt_channel(ch->g, ch->chid);
|
||||
|
||||
gk20a_channel_abort_clean_up(ch);
|
||||
if (ch->g->ops.fifo.ch_abort_clean_up)
|
||||
ch->g->ops.fifo.ch_abort_clean_up(ch);
|
||||
}
|
||||
|
||||
int gk20a_wait_channel_idle(struct channel_gk20a *ch)
|
||||
|
||||
@@ -1432,7 +1432,8 @@ void gk20a_fifo_abort_tsg(struct gk20a *g, u32 tsgid, bool preempt)
|
||||
nvgpu_list_for_each_entry(ch, &tsg->ch_list, channel_gk20a, ch_entry) {
|
||||
if (gk20a_channel_get(ch)) {
|
||||
ch->has_timedout = true;
|
||||
gk20a_channel_abort_clean_up(ch);
|
||||
if (ch->g->ops.fifo.ch_abort_clean_up)
|
||||
ch->g->ops.fifo.ch_abort_clean_up(ch);
|
||||
gk20a_channel_put(ch);
|
||||
}
|
||||
}
|
||||
@@ -2016,7 +2017,8 @@ int gk20a_fifo_tsg_unbind_channel(struct channel_gk20a *ch)
|
||||
if (!tsg_timedout)
|
||||
g->ops.fifo.enable_tsg(tsg);
|
||||
|
||||
gk20a_channel_abort_clean_up(ch);
|
||||
if (ch->g->ops.fifo.ch_abort_clean_up)
|
||||
ch->g->ops.fifo.ch_abort_clean_up(ch);
|
||||
|
||||
return 0;
|
||||
|
||||
|
||||
@@ -628,6 +628,7 @@ struct gpu_ops {
|
||||
struct tsg_gk20a *tsg);
|
||||
u32 (*get_preempt_timeout)(struct gk20a *g);
|
||||
void (*post_event_id)(struct tsg_gk20a *tsg, int event_id);
|
||||
void (*ch_abort_clean_up)(struct channel_gk20a *ch);
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
int (*alloc_syncpt_buf)(struct channel_gk20a *c,
|
||||
u32 syncpt_id, struct nvgpu_mem *syncpt_buf);
|
||||
|
||||
@@ -438,6 +438,7 @@ static const struct gpu_ops gm20b_ops = {
|
||||
.tsg_bind_channel = gk20a_tsg_bind_channel,
|
||||
.tsg_unbind_channel = gk20a_fifo_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = gk20a_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gk20a_fifo_free_syncpt_buf,
|
||||
|
||||
@@ -499,6 +499,7 @@ static const struct gpu_ops gp106_ops = {
|
||||
.tsg_bind_channel = gk20a_tsg_bind_channel,
|
||||
.tsg_unbind_channel = gk20a_fifo_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = gk20a_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gk20a_fifo_free_syncpt_buf,
|
||||
|
||||
@@ -470,6 +470,7 @@ static const struct gpu_ops gp10b_ops = {
|
||||
.tsg_bind_channel = gk20a_tsg_bind_channel,
|
||||
.tsg_unbind_channel = gk20a_fifo_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = gk20a_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gk20a_fifo_free_syncpt_buf,
|
||||
|
||||
@@ -511,6 +511,7 @@ static const struct gpu_ops gv100_ops = {
|
||||
.tsg_bind_channel = gk20a_tsg_bind_channel,
|
||||
.tsg_unbind_channel = gk20a_fifo_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = gv11b_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gv11b_fifo_free_syncpt_buf,
|
||||
|
||||
@@ -528,6 +528,7 @@ static const struct gpu_ops gv11b_ops = {
|
||||
.tsg_bind_channel = gk20a_tsg_bind_channel,
|
||||
.tsg_unbind_channel = gk20a_fifo_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = gv11b_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gv11b_fifo_free_syncpt_buf,
|
||||
|
||||
@@ -344,6 +344,7 @@ static const struct gpu_ops vgpu_gp10b_ops = {
|
||||
.tsg_bind_channel = vgpu_tsg_bind_channel,
|
||||
.tsg_unbind_channel = vgpu_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = gk20a_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gk20a_fifo_free_syncpt_buf,
|
||||
|
||||
@@ -387,6 +387,7 @@ static const struct gpu_ops vgpu_gv11b_ops = {
|
||||
.tsg_bind_channel = vgpu_gv11b_tsg_bind_channel,
|
||||
.tsg_unbind_channel = vgpu_tsg_unbind_channel,
|
||||
.post_event_id = gk20a_tsg_event_id_post_event,
|
||||
.ch_abort_clean_up = gk20a_channel_abort_clean_up,
|
||||
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
||||
.alloc_syncpt_buf = vgpu_gv11b_fifo_alloc_syncpt_buf,
|
||||
.free_syncpt_buf = gv11b_fifo_free_syncpt_buf,
|
||||
|
||||
Reference in New Issue
Block a user