summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/fifo_gv11b.c')
-rw-r--r--drivers/gpu/nvgpu/gv11b/fifo_gv11b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c b/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
index c2792414..48d14e74 100644
--- a/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/fifo_gv11b.c
@@ -24,6 +24,7 @@
24#include <nvgpu/soc.h> 24#include <nvgpu/soc.h>
25#include <nvgpu/debug.h> 25#include <nvgpu/debug.h>
26#include <nvgpu/nvhost_t19x.h> 26#include <nvgpu/nvhost_t19x.h>
27#include <nvgpu/barrier.h>
27 28
28#include "gk20a/gk20a.h" 29#include "gk20a/gk20a.h"
29#include "gk20a/fifo_gk20a.h" 30#include "gk20a/fifo_gk20a.h"
@@ -247,7 +248,7 @@ void gv11b_userd_gp_put(struct gk20a *g, struct channel_gk20a *c)
247 nvgpu_mem_wr32(g, userd_mem, offset + ram_userd_gp_put_w(), 248 nvgpu_mem_wr32(g, userd_mem, offset + ram_userd_gp_put_w(),
248 c->gpfifo.put); 249 c->gpfifo.put);
249 /* commit everything to cpu */ 250 /* commit everything to cpu */
250 smp_mb(); 251 nvgpu_smp_mb();
251 252
252 gv11b_ring_channel_doorbell(c); 253 gv11b_ring_channel_doorbell(c);
253} 254}