diff --git a/local/recipes/gpu/redox-drm/source/src/drivers/intel/workarounds.rs b/local/recipes/gpu/redox-drm/source/src/drivers/intel/workarounds.rs index 68d5eb9b6a..5d7676539b 100644 --- a/local/recipes/gpu/redox-drm/source/src/drivers/intel/workarounds.rs +++ b/local/recipes/gpu/redox-drm/source/src/drivers/intel/workarounds.rs @@ -376,7 +376,13 @@ pub fn build_ctx_workarounds(device_info: &IntelDeviceInfo) -> WorkaroundList { IntelGeneration::Gen6 => gen6_ctx_workarounds_init(&mut wal), IntelGeneration::Gen7 => gen7_ctx_workarounds_init(&mut wal), IntelGeneration::Gen8 => gen8_ctx_workarounds_init(&mut wal), - IntelGeneration::Gen9 => skl_ctx_workarounds_init(&mut wal), + IntelGeneration::Gen9 => { + skl_ctx_workarounds_init(&mut wal); + bxt_ctx_workarounds_init(&mut wal); + kbl_ctx_workarounds_init(&mut wal); + glk_ctx_workarounds_init(&mut wal); + cfl_ctx_workarounds_init(&mut wal); + } IntelGeneration::Gen9_5 => icl_ctx_workarounds_init(&mut wal), IntelGeneration::Gen12 => gen12_ctx_workarounds_init(&mut wal), IntelGeneration::Gen12_7 => xelpg_ctx_workarounds_init(&mut wal),