1
0
Fork 0

drm/i915: Enable gfx virtualization for Coffeelake platform

Enable gfx virtualization for CFL.

Reviewed-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Signed-off-by: fred gao <fred.gao@intel.com>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
hifive-unleashed-5.1
fred gao 2019-01-09 09:21:23 +08:00 committed by Zhenyu Wang
parent 5807bb4d8d
commit 6c46c2e8c5
1 changed files with 3 additions and 0 deletions

View File

@ -49,6 +49,9 @@ static bool is_supported_device(struct drm_i915_private *dev_priv)
return true;
if (IS_BROXTON(dev_priv))
return true;
if (IS_COFFEELAKE(dev_priv))
return true;
return false;
}