aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/sgi-gru/grumain.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/misc/sgi-gru/grumain.c')
-rw-r--r--drivers/misc/sgi-gru/grumain.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/misc/sgi-gru/grumain.c b/drivers/misc/sgi-gru/grumain.c
index 944028871884..a383271d3912 100644
--- a/drivers/misc/sgi-gru/grumain.c
+++ b/drivers/misc/sgi-gru/grumain.c
@@ -499,6 +499,9 @@ static void gru_load_context_data(void *save, void *grubase, int ctxnum,
499 memset(cbe + i * GRU_HANDLE_STRIDE, 0, 499 memset(cbe + i * GRU_HANDLE_STRIDE, 0,
500 GRU_CACHE_LINE_BYTES); 500 GRU_CACHE_LINE_BYTES);
501 } 501 }
502 /* Flush CBE to hide race in context restart */
503 mb();
504 gru_flush_cache(cbe + i * GRU_HANDLE_STRIDE);
502 cb += GRU_HANDLE_STRIDE; 505 cb += GRU_HANDLE_STRIDE;
503 } 506 }
504 507
@@ -519,6 +522,12 @@ static void gru_unload_context_data(void *save, void *grubase, int ctxnum,
519 cb = gseg + GRU_CB_BASE; 522 cb = gseg + GRU_CB_BASE;
520 cbe = grubase + GRU_CBE_BASE; 523 cbe = grubase + GRU_CBE_BASE;
521 length = hweight64(dsrmap) * GRU_DSR_AU_BYTES; 524 length = hweight64(dsrmap) * GRU_DSR_AU_BYTES;
525
526 /* CBEs may not be coherent. Flush them from cache */
527 for_each_cbr_in_allocation_map(i, &cbrmap, scr)
528 gru_flush_cache(cbe + i * GRU_HANDLE_STRIDE);
529 mb(); /* Let the CL flush complete */
530
522 gru_prefetch_context(gseg, cb, cbe, cbrmap, length); 531 gru_prefetch_context(gseg, cb, cbe, cbrmap, length);
523 532
524 for_each_cbr_in_allocation_map(i, &cbrmap, scr) { 533 for_each_cbr_in_allocation_map(i, &cbrmap, scr) {