Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 637a9c63 authored by Sonika Jindal's avatar Sonika Jindal Committed by Daniel Vetter
Browse files

drm/i915: Rename dp rates array as per platform



Renaming gen9_rates to skl_rates because other platforms may have different
supported rates.

Signed-off-by: default avatarSonika Jindal <sonika.jindal@intel.com>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 550acefd
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -90,8 +90,8 @@ static const struct dp_link_dpll chv_dpll[] = {
	{ DP_LINK_BW_5_4,	/* m2_int = 27, m2_fraction = 0 */
		{ .p1 = 2, .p2 = 1, .n = 1, .m1 = 2, .m2 = 0x6c00000 } }
};
/* Skylake supports following rates */
static const int gen9_rates[] = { 162000, 216000, 270000,

static const int skl_rates[] = { 162000, 216000, 270000,
				  324000, 432000, 540000 };
static const int chv_rates[] = { 162000, 202500, 210000, 216000,
				 243000, 270000, 324000, 405000,
@@ -1167,9 +1167,9 @@ intel_dp_sink_rates(struct intel_dp *intel_dp, const int **sink_rates)
static int
intel_dp_source_rates(struct drm_device *dev, const int **source_rates)
{
	if (INTEL_INFO(dev)->gen >= 9) {
		*source_rates = gen9_rates;
		return ARRAY_SIZE(gen9_rates);
	if (IS_SKYLAKE(dev)) {
		*source_rates = skl_rates;
		return ARRAY_SIZE(skl_rates);
	} else if (IS_CHERRYVIEW(dev)) {
		*source_rates = chv_rates;
		return ARRAY_SIZE(chv_rates);