diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-07-19 22:53:12 +0200 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-07-26 21:00:43 +0200 |
commit | b690e96cf9e6a6cde6f0393de47bdd6317ddb5de (patch) | |
tree | 8438bf5540d4f71d0fcc8b6acb8bf472780e4579 /drivers/gpu/drm/i915/i915_drv.h | |
parent | drm/i915: Fix panel fitting regression since 734b4157 (diff) | |
download | linux-b690e96cf9e6a6cde6f0393de47bdd6317ddb5de.tar.xz linux-b690e96cf9e6a6cde6f0393de47bdd6317ddb5de.zip |
drm/i915: add pipe A force quirks to i915 driver
Ported over from the old UMS list. Unfortunately they're still
necessary especially on older laptop platforms.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=22126.
Tested-by: Xavier <shiningxc@gmail.com>
Tested-by: Diego Escalante Urrelo <diegoe@gnome.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 1d82de1618ab..2e1744d37ad5 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -223,6 +223,8 @@ enum intel_pch { PCH_CPT, /* Cougarpoint PCH */ }; +#define QUIRK_PIPEA_FORCE (1<<0) + struct intel_fbdev; typedef struct drm_i915_private { @@ -338,6 +340,8 @@ typedef struct drm_i915_private { /* PCH chipset type */ enum intel_pch pch_type; + unsigned long quirks; + /* Register state */ bool modeset_on_lid; u8 saveLBB; |