@@ -1091,10 +1091,11 @@ static int gen8_init_indirectctx_bb(struct intel_engine_cs *ring,
index = offset;
- /* FIXME: fill one cacheline with NOOPs.
- * Replace these instructions with WA
- */
- while (index < (offset + 16))
+ /* WaDisableCtxRestoreArbitration:bdw,chv */
+ cmd[index++] = MI_ARB_ON_OFF | MI_ARB_DISABLE;
+
+ /* padding */
+ while (((unsigned long) (cmd + index) % CACHELINE_BYTES) != 0)
cmd[index++] = MI_NOOP;
/*
@@ -1126,13 +1127,10 @@ static int gen8_init_perctx_bb(struct intel_engine_cs *ring,
index = offset;
- /* FIXME: fill one cacheline with NOOPs.
- * Replace these instructions with WA
- */
- while (index < (offset + 16))
- cmd[index++] = MI_NOOP;
+ /* WaDisableCtxRestoreArbitration:bdw,chv */
+ cmd[index++] = MI_ARB_ON_OFF | MI_ARB_ENABLE;
- cmd[index - 1] = MI_BATCH_BUFFER_END;
+ cmd[index++] = MI_BATCH_BUFFER_END;
kunmap_atomic(cmd);