|
@@ -1183,6 +1183,21 @@ static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
|
|
|
return can_switch;
|
|
|
}
|
|
|
|
|
|
+static bool
|
|
|
+intel_enable_ppgtt(struct drm_device *dev)
|
|
|
+{
|
|
|
+ if (i915_enable_ppgtt >= 0)
|
|
|
+ return i915_enable_ppgtt;
|
|
|
+
|
|
|
+#ifdef CONFIG_INTEL_IOMMU
|
|
|
+ /* Disable ppgtt on SNB if VT-d is on. */
|
|
|
+ if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
|
|
|
+ return false;
|
|
|
+#endif
|
|
|
+
|
|
|
+ return true;
|
|
|
+}
|
|
|
+
|
|
|
static int i915_load_gem_init(struct drm_device *dev)
|
|
|
{
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
@@ -1197,7 +1212,7 @@ static int i915_load_gem_init(struct drm_device *dev)
|
|
|
drm_mm_init(&dev_priv->mm.stolen, 0, prealloc_size);
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
- if (i915_enable_ppgtt && HAS_ALIASING_PPGTT(dev)) {
|
|
|
+ if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
|
|
|
/* PPGTT pdes are stolen from global gtt ptes, so shrink the
|
|
|
* aperture accordingly when using aliasing ppgtt. */
|
|
|
gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
|