drm/i915: more virtual south bridge detection
commit 39bfcd5235e07e95ad3e70eab8e0b85db181de9e upstream. Commit "30c964a drm/i915: Detect virtual south bridge" detects and handles the southbridge emulated by vmware esx. Add the ich9 south bridge emulated by 'qemu -M q35'. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f4f0cca3c1
commit
bdfa7f6e53
2 changed files with 3 additions and 1 deletions
|
@ -531,7 +531,8 @@ void intel_detect_pch(struct drm_device *dev)
|
||||||
dev_priv->pch_type = PCH_SPT;
|
dev_priv->pch_type = PCH_SPT;
|
||||||
DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
|
DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
|
||||||
WARN_ON(!IS_SKYLAKE(dev));
|
WARN_ON(!IS_SKYLAKE(dev));
|
||||||
} else if (id == INTEL_PCH_P2X_DEVICE_ID_TYPE) {
|
} else if ((id == INTEL_PCH_P2X_DEVICE_ID_TYPE) ||
|
||||||
|
(id == INTEL_PCH_QEMU_DEVICE_ID_TYPE)) {
|
||||||
dev_priv->pch_type = intel_virt_detect_pch(dev);
|
dev_priv->pch_type = intel_virt_detect_pch(dev);
|
||||||
} else
|
} else
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -2614,6 +2614,7 @@ struct drm_i915_cmd_table {
|
||||||
#define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100
|
#define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100
|
||||||
#define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00
|
#define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00
|
||||||
#define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100
|
#define INTEL_PCH_P2X_DEVICE_ID_TYPE 0x7100
|
||||||
|
#define INTEL_PCH_QEMU_DEVICE_ID_TYPE 0x2900 /* qemu q35 has 2918 */
|
||||||
|
|
||||||
#define INTEL_PCH_TYPE(dev) (__I915__(dev)->pch_type)
|
#define INTEL_PCH_TYPE(dev) (__I915__(dev)->pch_type)
|
||||||
#define HAS_PCH_SPT(dev) (INTEL_PCH_TYPE(dev) == PCH_SPT)
|
#define HAS_PCH_SPT(dev) (INTEL_PCH_TYPE(dev) == PCH_SPT)
|
||||||
|
|
Loading…
Add table
Reference in a new issue