aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorVijay Purushothaman <vijay.a.purushothaman@linux.intel.com>2015-02-16 15:07:59 +0530
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-02-23 17:12:13 +0100
commit9505e01acd2408864ce7e60e460899f9be6ac11b (patch)
tree12c85a15bea75bccf01529e3a668603ad4ac0316 /drivers/gpu/drm
parentdrm/i915: Add new PHY reg definitions for lock threshold (diff)
downloadlinux-dev-9505e01acd2408864ce7e60e460899f9be6ac11b.tar.xz
linux-dev-9505e01acd2408864ce7e60e460899f9be6ac11b.zip
drm/i915: Limit max VCO supported in CHV to 6.48GHz
As per the recommendation from PHY team, limit the max vco supported in CHV to 6.48 GHz Signed-off-by: Vijay Purushothaman <vijay.a.purushothaman@linux.intel.com> Acked-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/i915/intel_display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index c5347e1cbb9b..efff6df8099d 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -390,7 +390,7 @@ static const intel_limit_t intel_limits_chv = {
* them would make no difference.
*/
.dot = { .min = 25000 * 5, .max = 540000 * 5},
- .vco = { .min = 4860000, .max = 6700000 },
+ .vco = { .min = 4860000, .max = 6480000 },
.n = { .min = 1, .max = 1 },
.m1 = { .min = 2, .max = 2 },
.m2 = { .min = 24 << 22, .max = 175 << 22 },