diff options
author | Keith Packard <keithp@keithp.com> | 2011-09-26 14:24:14 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-09-27 11:12:26 -0700 |
commit | abd06860185fc613776adae792772e076d77caf2 (patch) | |
tree | 40dcc4465130ad9df6c0a79d3685853196dca6be /drivers/gpu/drm/i915/i915_drv.h | |
parent | 562396b9e46bcb34cc18f513fea1c4764d8ea06d (diff) |
drv/i915: Pull display_clock_mode out of VBT table
This tells the driver whether a CK505 clock source is available on
pre-PCH hardware. If so, it should be used as the non-SSC source,
leaving the internal clock for use as the SSC source.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Chris Wison <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 7916bd97d5c..18df595b399 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -357,6 +357,7 @@ typedef struct drm_i915_private { unsigned int lvds_vbt:1; unsigned int int_crt_support:1; unsigned int lvds_use_ssc:1; + unsigned int display_clock_mode:1; int lvds_ssc_freq; struct { int rate; |