Skip to content

Commit

Permalink
drm/i915/vlv: Workaround a punit issue in DDR data rate for 1333.
Browse files Browse the repository at this point in the history
For DDR data rate reporting by Punit in PUNIT_GPU_FREQ_STS, the actual
data encoding is 00b=800, 01b=1066, 10b=1333, 11b=1333.

Some premium VLV sku will get the DDR_DATA_RATE set as 11.  As a result,
the turbo frequency reporting will be incorrect without this workaround.

Signed-off-by: Chon Ming Lee <chon.ming.lee@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Chon Ming Lee authored and Daniel Vetter committed Nov 7, 2013
1 parent 8245be3 commit 2325991
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions drivers/gpu/drm/i915/intel_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -5322,12 +5322,7 @@ static void valleyview_init_clock_gating(struct drm_device *dev)
dev_priv->mem_freq = 1333;
break;
case 3:
/*
* Probably a BIOS/Punit bug, or a new platform we don't
* support yet.
*/
WARN(1, "invalid DDR freq detected, assuming 800MHz\n");
dev_priv->mem_freq = 800;
dev_priv->mem_freq = 1333;
break;
}
DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq);
Expand Down

0 comments on commit 2325991

Please sign in to comment.